

#nav, #nav ul { /* all lists */
	padding: 0px;
	margin: 0px;
	list-style: none;
	#line-height: 1px;
	
}

#nav a {
	display: block;
}


#nav li { /* all list items */
	float: left;
	margin-left:2px;
	margin-right:2px;
	border-right:1px solid white;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: brown;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	width:10em;
	border-right:0px solid white;
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 3em;
	border-right:0px solid white;
	width:8em;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

#content {
	clear: left;
	color: #ccc;
}

