/* CSS Document */


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


#nav a {
	display: block;
	margin-top:4px;	margin-left:10px;
	
	
}

#nav li { /* all list items */
	float:left;
	margin:0;
margin-right:15px;

	 /* width needed or else Opera goes nuts */
}
#nav li:hover {
		background:#6d2e00;
		
	}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #ba8431;
	width:200px;
	top:25px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav li ul li {
	width:200px;
	}
#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

#nav a {
	padding: 2px 2px;
	margin-right: 2px;
	margin-bottom: 0px;
	font-weight: bold;
	font-size: 11px;
	color:#fff;
	height:17px;
	
}

#nav ul li ul a {
	
	margin-right: 2px;
	margin-bottom: 0px;
	font-weight: bold;
	font-size: 11px;
	color:#fff;
	height:15px;
	
}




#nav a:link, #nav a:visited {
	text-decoration: none;
	
}

#nav a:hover {
	text-decoration: none;
}
