#nav ul { /* all lists */
	padding: 3px;
	margin: 0;
	list-style: none;
	line-height: 1;
	border:1px solid #BD9878;
	z-index:100000;
}

#nav li ul a {
	display: block;
	width: 200px;
}

#nav li ul li { /* all list items */
	float: left;
	width:200px;
	padding:3px;margin:0;
	border-bottom:1px DOTTED #BD9878;; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	background:#563F20;
	width: 206px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: 400px;
}

#nav ul a{color:#EFD7AD;}
#nav ul a:hover{color:#fff;}

