div#nav, #nav ul { /* all lists */
	font: 13px Arial, Verdana, sans-serif;
	float:right;
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 30px;
}

#nav li { /* all list items */
	float: left;
	margin-right:6px;
	/*min-width: 6em;  width needed or else Opera goes nuts */
}

	#nav li a {
		color:#fff;
		display: block;
		font-weight:bold;
		letter-spacing: -1px;
		padding:0 5px 0 5px;
		text-align:center;
		text-decoration: none;
		/*width: 10em;*/
		-webkit-border-radius-top-left: 5px; -moz-border-radius-topleft: 5px; -webkit-border-radius-top-right: 5px; -moz-border-radius-topright: 5px; -webkit-border-radius-bottom-right: 5px; -moz-border-radius-bottomright: 5px; }
		
	#nav li a:hover {
		background:#f38e24;
		color:#fff;
		display: block;
		padding:0 5px 0 5px;
		text-decoration:none;
		/*width: 10em;*/
		-webkit-border-radius-top-left: 5px; -moz-border-radius-topleft: 5px; -webkit-border-radius-top-right: 5px; -moz-border-radius-topright: 5px; -webkit-border-radius-bottom-right: 5px; -moz-border-radius-bottomright: 5px; }

#nav li ul { /* second-level lists #f38e24 */
	background:#f38e24;
	font: 12px Arial, Verdana, sans-serif; /* third-and-above-level inherits this */
	font-weight:normal; /* third-and-above-level inherits this */
	line-height:25px;
	margin:0 0 0 0;
	padding-bottom:10px;
	position: absolute;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */ 
	-webkit-border-bottom-right-radius: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-left-radius: 5px; -moz-border-radius-bottomleft: 5px; -webkit-border-top-right-radius: 5px; -moz-border-radius-topright: 5px;
}
	#nav li ul a{ border-bottom:solid 1px #EDEDED; color:#fff; font-weight:bold; letter-spacing: 0px; text-transform:none; text-align:left; } /* second-level lists */
	#nav li ul a:hover{ background:transparent; border-bottom:solid 1px #EDEDED; color:#fff; text-decoration:underline; } /* second-level lists */


#nav li ul ul { /* third-and-above-level lists Andy was #f38e24 then #b3c1cb now #f38e24, margin: top,right,bottom,left was -26px 0 0 0px; now 0px 0px 0px 120px; */
	background:#f38e24;
	margin: 0px 0px 0px 120px; }

	#nav li ul ul a{ color:#fff; } /* third-and-above-level lists */
	#nav li ul ul a:hover{ background: url(../images/background-menu-blue.png) repeat-x; color:#fff; } /* third-and-above-level lists */


#nav ul li.current { background: #f38e24; -webkit-border-radius-top-left: 5px; -moz-border-radius-topleft: 5px; -webkit-border-radius-top-right: 5px; -moz-border-radius-topright: 5px; -webkit-border-radius-bottom-right: 5px; -moz-border-radius-bottomright: 5px;}
	#nav ul li.current  a{ color:#fff; }



#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;
}
