#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
	text-decoration: none;
}

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

#nav li ul { /* second-level lists */
	position: absolute;
	background: #ffffff;
	font-size: 12px;
	border: 1px solid #d5d5d5;
	font-weight: bold;
	width: 200px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	z-index: 100;
}

#nav li ul li {
width: 200px;
}


#nav li ul a {
background-color: #ffffff;
	color: #002D45;
	padding: 5px 10px;
}

#nav li ul a:hover {
color: #bc8a15;
	background-color: #eeeeee;
}

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