
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	line-height : 23px;
}



#nav li { /* all list items */
   position : relative;
	float : left;
	margin-bottom : 0px;
	margin-right : 0px;
	width: 175px; /* width needed or else Opera goes nuts */
    /*background: transparent;*/
    /*border: 1px solid black;*/
   
}


#nav li ul { /* second-level lists */
	position : absolute;
	left: -999em;
	background: top left url(/img/ddmenu1.gif);
	line-height : 23px;
}

#nav li ul ul { /* third-and-above-level lists */
	left: -999em;
	margin-left : 175px;
	margin-top : -23px;
}

#nav li a, span.nolink {
	width: 164px;
	w\idth : 175px; /* not a typo, browser hack */
	display : block;
	color : #fff;
	font-weight : bold;
	text-decoration : none;
	/*background-color : white;*/
	/*border : 1px solid black;*/
	padding : 0 0.5em;	
	text-align:center;
}

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

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

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


