@charset "utf-8";
/* CSS Document */


#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 30px;
	font-family:  Times New Roman, Times, serif;
	font-size:14px;
	display: block;
	z-index:10;
	color:#7E7E80;
font-weight:bold;
	
}
#nav ul li { padding-left: 15px; padding-right:15px;}
#nav ul ul li{padding: auto;}


#nav a {
	font-family:  Times New Roman, Times, serif;
	font-size:14px;
        display: block;
	text-decoration:none;
	color:#7E7E80;
	text-align:left;
        line-height: 30px;
	text-transform:uppercase;
font-weight:bold;
}
#nav a:hover {
	color:#FFF;
}

#nav li { /* all list items */
	width: auto;/* width needed or else Opera goes nuts */

}
#nav li ul { /* second-level lists */
	position: absolute;
	background-color:#F97C18;
	color:#000;
	height:23px;
	line-height:23px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav li li:hover, #nav li li.sfhover  { /* second-level lists */
	background-color:#FFF;
	color:#F97C18;


}
#nav li ul li {
	width:14em;
    float: none;
	border-top: #FFF 1px solid;
	background-color:#F97C18;
	color:#FFF;
		
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 14em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul ul li:hover, #nav li ul ul li.sfhover{ /* third-and-above-level lists */
	border-top: #FFF 1px solid;
	background-color:#FFF;
	color:#F97C18;
	background-image:none;
}

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


