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

#nav a {
	display: block;
	margin-right:8px;
}

#nav li ul li a {
	margin-right:2px;
}

#nav li { /* all list items */
	float: left;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background:#f0ad38;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	padding:4px 1px 1px 4px;
	filter: alpha(opacity=90); opacity: .9;
	height:15px;
}

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