#nav
{
	position: relative;
	width: 100%;
}

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

#nav a {
	display: block;
	color: white;
}

#nav li { /* all list items */
	float: left;
	padding: 5px 20px 5px 0;
	margin: 0px;
	/*width: 10em;  width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute; width: 10em; left: -999em; bottom: 20px; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

html>body #nav li ul { /* second-level lists */
bottom: 0;
}

#nav li ul li {
background: white; 
text-align:left;
	width: 10em;
	padding: 5px 2px;
	margin: 0;

}

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