#menubar{
position: absolute;
top: 96px;
left: 0;
width: 100%;
background-color: #08416C;
z-index: 90;
}
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
	/*width: 114px;*/
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	padding: 3px;
}

#nav a:hover, #nav a:sfhover {
	background:#E6E4E0;
	color:#08416C;
	}
#nav li { /* all list items */
	float: left;
	width: 136px; /* width needed or else Opera goes nuts */
}
#nav li ul { /* second-level lists */
	position: absolute;
	width: 136px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	background-color: #D6E0E7;
	z-index: 99;
	text-align: left;
	}

#nav li ul a {
	color: #08416C;
	font-size: 11px;
	}

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