/* the drop down menu stuff */
/*
**
**
*/
#nav, #nav ul { /* all lists */
	padding: 0px;
	margin: 0;
	list-style: none;
	display: block;
	line-height: 1;
	text-align: left;
}

#nav a {
	display: block;
	color: #333333;
}

#nav li { /* all list items */
	float: bottom;
	display: block;
	# background: #eeeeee;
	width: 160px; /* width needed or else Opera goes nuts */
}

#nav ul li {
	position: relative;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #eeeeee;
	margin-left : 150px;
	width: 170px;
	z-index:4000;
	margin-top : -1.9em;
	border: 1px solid #999999; 
	/* border-top: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-left: 1px solid #ccc; */
    left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; }
* html ul li a { height: 1%; }
/* End */

#nav li ul li a {
	text-decoration : none;
	font-size:12px;
	border-bottom: 1px;
	display: block;
	padding: 3px;
	width: 160px;
	text-align:left;
}


#nav li a:hover {
		color : white;
		background-color : black;
}

#nav li a {
	display: block;
	padding: 4px;
	text-decoration: none;
	border-bottom: 1px solid #eee;	
}

#nav li ul li a:hover {
	color : white;
	background-color : #FF6600;
	width: 164px;
}

#nav li:hover ul {
	left: auto;
	background: #eeeeee;
}

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

