body {
	font-family: arial, helvetica, serif;
}

.navtopli {
background: white; border: 0px; width: 110px
}

li.navlilast {
border-bottom: 1px solid #a89c91;
}

li.navlimain {
background: white;
border: 0px;
}



#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 12px;
	font-size: 11px;
	text-align: left;
}

#nav a {
	display: block;
	width: 10em;
}

#nav li { /* all list items */
	float: left;
	width: 13em; /* width needed or else Opera goes nuts */
	padding: 6px;
	letter-spacing: 0.08em;
	border-top: 1px solid #a89c91;
	border-left: 1px solid #a89c91;
	border-right: 1px solid #a89c91;
	background: #e3ddd7;
}

#nav li ul { /* second-level lists */
	position: absolute;
	width: 13em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */

}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
		
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
	color: #eaa129;
	text-decoration: none;
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	color: #eaa129;
	text-decoration: none;
}

#content {
	clear: left;
	color: #ccc;
}

