#nav, #nav ul { /* all lists */

	padding: 0;

	margin: 0;

	list-style: none;

border-left-width: 0;

font: normal 12px Tahoma;

letter-spacing:normal;

z-index: 11;
}



#nav a {

	display: block;

	color: white;

	text-decoration: none;

}



#nav li { /* all list items */

	float: left;

	background-color: #5F2E15;

	border: 2px solid #FFF;

	border-left-width: 0;

}



#nav li ul { /* second-level lists */

	position: absolute;

	width: 200px;

	border-top: 1px solid #666;

	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */

}



#nav li ul li { /* second-level lists */

	border: 0px;

	text-align:left;

	width: 200px;

}



#nav li ul li.arrow {

	background: #5F2E15 url(/images/arrowright.gif) no-repeat center right ;

}



#nav li ul ul { /* third-and-above-level lists */

	margin: -24px 0 0 200px;

}



#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {

	left: -999em;

}



#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */

	left: auto;

}









#nav li a { /* all list items */

	padding: 4px 44px;

}



#nav li ul li a {

	padding: 4px 8px;

	display: block;

	height: auto;

	text-decoration: none;

	border: solid 1px #666;

	border-top: none;

	z-index: 999;

	}



#nav li ul a:hover {

	background: #666;

	}





/* hack required to make drop-down menus disappear in ie7 */
#nav li:hover, #nav li.hover {
    position: static;  
} 
