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

#nav a {
	display: block;
	width: 80px;
	line-height: 36px;
	text-decoration: none;
	color: #fff;
	padding: 0 10px 0 10px;
	text-align: center;
}

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

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

	
#nav li ul li a {
	width: 110px;
	padding-left: 20px;
	text-align: left;
}

#nav li a:hover {
	background: #367c2b;
	}

#nav li ul li a:hover {
	background: #367c2b;
	padding-left: 16px;
	border-left: solid 4px #6db43f;
}

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