/* ************* HEADER MENU ************* */

#header #mainMenu {
	z-index:10;
	font-size:0.750em;
	position:relative;
}

#header #mainMenu ul {
	padding: 0;
	margin: 0;
	list-style: none;
	z-index:10;
}

#header #mainMenu a {
	display: block;
	width: 179px;
}


#header #mainMenu li ul { /* second-level lists */
	position: absolute;
	width: 185px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#header #mainMenu li ul li {
	z-index:10;
	float: left;
	width: 185px; /* width needed or else Opera goes nuts */
}

#header #mainMenu li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 185px;
	
}

#header #mainMenu li:hover ul ul, #header #mainMenu li:hover ul ul ul, #header #mainMenu li.sfhover ul ul, #header #mainMenu li.sfhover ul ul ul {
	left: -999em;
}

#header #mainMenu li:hover ul,
#header #mainMenu li.sfhover ul
{ /* lists nested under hovered list items */
	left: auto;
	top:22px;
}

#header #mainMenu li li:hover ul,
#header #mainMenu li li.sfhover ul
{ /* lists nested under hovered list items */
	left: auto;
	top:auto;
	margin-top:-26px !important;
}


/* ****** EXCEPTIONS ****** */


#header #mainMenu li.top:hover,#header #mainMenu li.sfhover  {background-position:0 -30px;}

#header #mainMenu ul { /* all lists under first*/
	background-color:#5ABBEA;
	text-align:left;
}
#header #mainMenu ul li { /* all lists under first*/
	border-bottom:1px solid #8AD3E8;
	min-height:18px;
}

#header #mainMenu a {

	display:block;
	text-decoration:none;
	padding:0px 3px;
}
#header #mainMenu a:hover {
	text-decoration:none;
}

#header #mainMenu li.menuTop ul li a {
	color:#FFF;
	line-height:1.2em;
	min-height:16px;
	padding-top:4px;
	background-image:none !important;
}
#header #mainMenu li.menuTop ul li a:hover {
	background-color:#5476D0;
}