#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}
#nav a {
	display: block;
}
#nav li ul li a {
	display: block;
	color: #FFF;
	font: bold 11px/16px arial, helvetica, sans-serif;
	background: #064271;
	padding: 2px 3px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	height: 28px;
	text-decoration: none;
}
#nav li ul li a:hover {
color: #000000;
background: #cdbf9c;
}

#nav li { /* all list items */
	float: left;
	width: 100%;
}

#nav li ul { /* second-level lists */
	position: absolute;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */

}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
