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

	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;

}

#nav a {
	display: block;
	width: 72px;
	font: bold 11px arial, helvetica, sans-serif;
	color: #FFFFFF;
	text-decoration: none;
	padding: 2px 3px;
	/*border-width: 1px;
	border-style: solid;
	border-color: #DACA5F;
	border-left-width:1;
	border-right-width:0;
	border-top-width:0;
	border-bottom-width:0;*/
}


#nav a:hover {
	color: #000000;
	background: #F2F2F2;
	text-decoration: underline;
	/*border-width: 1px;
	border-style: solid;
	border-color: #DACA5F;
	border-left-width:1;
	border-right-width:0;
	border-top-width:0;
	border-bottom-width:0;*/

}

#nav a.sub {
text-align:left;
font: Normal 11px arial, helvetica, sans-serif;
color: #000000;
background: #F2F2F2;
width:150px;
vertical-align:top;
padding:3px;
}

#nav a.sub:hover {
font: Normal 11px arial, helvetica, sans-serif;
color: #CC0000;
width:150px;
vertical-align:top;
text-decoration: underline;
background: #F2F2F2;
padding:3px;
}



#nav li { /* all list items */
	float: left;

 /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	color: #CC0000;
	width: 200px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
}

#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;
}