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

/* bumps it down below the baseline */
#nav li a {
	padding:0 0 2px 0;
	margin: 0 0 0 0;

}

#nav li {
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	list-style: none;		
}

#nav a {
	display: block;
	color: #fff;
	font-family: Arial, Helvetica;
	font-weight: bold;
	font-size: 10px;
	text-decoration: none;
	padding: 0 7px 0 0;
	margin: 0 0 0 0;
}
#nav a:hover {

	color: #d7662a;

}

/* for submenus only -- not top level*/
ul#nav li ul li a {
	padding: 3px 5px 5px 5px;
	color: #FFF;
	border-bottom: 0px solid #FFF;
	margin-left:0px;
	margin-right:0px;

}

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

}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #000000;
	width: 99px;
	list-style: none;	
	text-align: left;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */

}

#nav li ul li { /* lower list items */
	float: left;
	width: 99px;
	list-style: none;	
	
}



#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 100px;
	list-style: 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;
}
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.iehover ul ul, #nav li.iehover ul ul ul {
	left: -999em;
	
}

#nav li.iehover ul, #nav li li.iehover ul, #nav li li li.iehover ul { /* lists nested under hovered list items */
	left:auto;	
	margin-left:-102px;
	margin-top: 32px;
}
#nav li.iehover ul li {
	width:99px;
	}
