#mainMenu{
	position:relative;	/* Don't change this position attribute */	
	color: #cc6666;	
}
#mainMenu a{
	text-decoration:none;	/* No underline on sub menu items - use text-decoration:underline; if you want the links to be underlined */	
	padding: 4px 10px 3px 10px;
	margin: 0px 0px 1px 0px;
	border: none;
	/* Don't change these two options */
	position:absolute;	
	color: #420001;
	bottom:-1px;	/* Change this value to -2px if you're not using a strict doctype */
}
#mainMenu a #sel{	
	font-weight:bold;
}

#submenu{		
	width:100%;	/* Don't change this option */	
}	
#submenu div{
	white-space:nowrap;	/* Don't change this option */	
}
/*
Style attributes of active menu item 
*/
#mainMenu .activeMenuItem{
	background-color: white;	
	cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */	
}

#mainMenu .activeMenuItem img{
	position:absolute;
	bottom:0px;
	right:0px;
}
	
/*
Style attributes of inactive menu items
*/
#mainMenu .inactiveMenuItem{		
	background-color: #cc6666;
	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 10px 0px 10px;	
	color: #420001;
	border: none;
}
#submenu a:hover{	
	text-decoration:none;	/* No underline on sub menu items - use text-decoration:underline; if you want the links to be underlined */
	padding: 0px 10px 0px 10px;	
	color: black;
	border: none;
}

#submenu a #sel{	
	text-decoration:none;	/* No underline on sub menu items - use text-decoration:underline; if you want the links to be underlined */
	padding: 0px 10px 0px 10px;	
	color: #be0000;
	font-weight:bold;
}
