#mainMenu {
	
	background-image:url('../img/nav-bg.jpg');
	background-position:bottom left;
	background-repeat:repeat-x;
	width: 708px;
	height:40px;
	border-right: 1px solid #d1d1d1;	/* Height of main menu */
	position:relative;	/* Don't change this position attribute */
	margin: 0px;
	padding: 0px;
	

}

#mainMenu a {
	
	padding: 0px 40px 0px 10px;
	margin: 0px; 
	font-weight:bold;
	position:absolute;
	text-decoration: none;
	line-height:40px;
	border-left: 1px solid #d1d1d1;
	border-right: 1px solid #d1d1d1;

}

#submenu {		
	
	width:100%;	/* Don't change this option */
	height: 40px;
	margin: 0px;
	padding: 0px;
		
}	

#submenu div {

	white-space:nowrap;	/* Don't change this option */
	margin: 12px 0px 15px 10px;
	display: inline;
	
}

#mainMenu .activeMenuItem {

	color: #e92d48;
	background-color: #fff;
	cursor:pointer;	
}

#mainMenu .activeMenuItem img {

	position:absolute;
	bottom:0px;
	right:0px;

}

#mainMenu .inactiveMenuItem {		
	
	color: #000;	/* Text color */
	cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */

}

#submenu a {	

	text-decoration:none;	/* No underline on sub menu items - use text-decoration:underline; if you want the links to be underlined */
	padding:0px 35px 0px 0px;	/* Space at the right of each sub menu item */
	color: #000;	/* Text color */
	font-size:11px; 
	margin: 0px;

}

#submenu a:hover {

	color: #e92d48;	/* Red color when the user moves the mouse over sub menu items */

}