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

#nav a {
	display: block;
	width: 10em;
}

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

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

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

ul#nav li ul li {
	width: 124px;
	padding: 2px 3px;
	border-bottom: 1px solid #e1e1e1;
}


ul#nav li ul li a {
	padding: 4px 3px;
	display: block;
	width: 95%;
	color: #531712;
}

ul#nav li ul li a:hover {
	background: #ededed;
	color: #531712;
	text-decoration: none;
}
