@charset "utf-8";

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 20px;
	position:relative;
	z-index:150;
	width:auto;
}

#nav a {
	display: block;
	width: 143px;
	color: #858579;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .65em;
	font-weight: bold;
	text-decoration: none;
	text-align: left;
}

#nav a:hover {
	background-color:#858579;
	color: #FFFFFF;
}

#nav li { /* all list items */
	float: left;
	width: 143px; /* width needed or else Opera goes nuts */
	margin: 0 1px 0 0;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background-image: url(../images/transp.png);
	background-repeat: repeat;
	width: 143px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	border-top: 0px;
	text-indent: 3px;
	
}

#nav li ul li { 
	border-bottom:1px solid #c1bfb7;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	
	/*background-color:#FF0000;*/
	/*z-index:500;
	border:1px solid #000000;*/
}
