/* CSS Document */
/** Style sheet developed from "Styling Web Pages With CSS"  */	
/* Button Bar Styles */	

/* Use Suckerfish styling - and augment with my stuff */

body { }

#nav, #nav ul {  /* all lists */
	font-family: arial, helvetica, sans-serif;
	font-weight:normal;
	/* display: block; */
	padding: 0;
	margin: 0;
	height:1.9em;
	list-style: none;
	background-color:#CCCCCC; /* gray  EBE2E2 F2ECED*/
	/* color:#003300; */
	font-size:12px;
	/*overflow:hidden; */
}
 
#nav a {
	
	color:#003300;
	/*background-color: #CCCCCC; */
	text-decoration:none;
}
 
#nav li { /* all list items */
	float: left;
	width: 12m; /* width needed or else Opera goes nuts  */
	
	/*color:#003300; */
	background-color: #CCC;
	white-space:nowrap;
	padding: 3px 8px 4px 8px;
	border-right: 1px #003300 solid;
	position:relative;
}

#nav li:hover {
	color:#F2ECED;
	background-color: #003300;
	/* border-right: 1px #003300 solid; */
	} 
	
#nav li:hover > a {
	color:#F2ECED;
	background-color: #003300;
	}	

#nav li li {
	float:none;
	padding-right: 10em;
	border-right: 0;
	}
 
#nav li ul { /* second-level lists */
	position:absolute;
	/* background: orange;*/
	/* background-color: #CCCCCC; */
	width: 12em;
	
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	top:21px;  /* changed from 23 */
	z-index:2000;
}
 
#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	/*color:#CCCCCC;
	background-color: #003300; */
	/* border-right: 1px #003300 solid; */
	left: 0;
}
 
*/

