#nav { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	width: 100%;
	display: block;
	height:38px;
	border-top: 1px solid #FFFFFF;
	border-bottom: 1px solid #FFFFFF;
	background-image: url(/uploads/70804/images/navbg.jpg);
	background-position: top right;
	background-repeat: repeat-y;
}

#nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	
}


#nav a {
	display: block;
	height: 38px;
	line-height: 38px;
	width: 10em;
	text-align: center;
	background-color: #CDC8BC;
	text-decoration: none;
}

#nav a:hover {
	Background-color: #AD9F99;
}

#nav li { /* all list items */
	float: left;
	width: 10em; /* width needed or else Opera goes nuts */
	border-right: 1px solid #FFFFFF;
}

#nav li ul { /* second-level lists */
	position: absolute;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav li li a {
	line-height: 20px;
	height: 20px;
	text-align: left;
	text-indent: 4px;
	width: 10em;
	border-top: 1px solid #FFFFFF;
	border-left: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}