#nav, #nav ul { /* all lists */
	color: #333; font-size: 12px; font-family: Verdana, Arial, Helvetica, sans-serif; margin: 0; padding: 0; list-style: none; }

#nav a { color: #333; text-decoration: none; padding: 8px 20px; display: block; /* width: 130px; was this a mac fix? */}

#nav li { /* all list items */
	text-align: left; float: left; /* width: 120px; was this a mac fix? */
}

#nav li a:hover { color: #fff; background-color: #781300
 }

#nav li ul { /* second-level lists */
	background-color: #f09e00 !important; background-image: none; background-repeat: repeat; background-attachment: scroll; background-position: 0 0; position: absolute; width: 165px; left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul a:hover { color: #fff; background-color: #781300
 }
 
#nav li ul ul { /* third-and-above-level lists */
	margin: -30px 0 0 165px;
} 

#nav li ul li { /* display of each list item in nested lists */
	width: 100%;
	clear: left;
	/* text-align: center; */
}

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

#nav li:hover ul ul, #nav li.sfhover ul ul {     left: -999em; } 

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul {     left: auto; } 