#nav {
	height: 39px;
	border-bottom: 1px solid #4F78B0;
}
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 39px;
	font-size: 11px;
}

#nav a {
	display: block;
	width: 125px;
	text-decoration: none;
	text-align: center;
	color: #5C85B1;
} 
#nav a:hover {
	background-color: #EF4A4A;
	color: #ffffff;
}

#nav li { /* all list items */
	float: left;
	width: 125px; /* width needed or else Opera goes nuts */

}

#nav li ul {
	/* second-level lists */
	position: absolute;
	font-size: 9px;
	width: 125px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	background-color: #f8f8ff;
	border-top: 1px solid #EF4A4A;	
}

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