#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
/*	margin-left: 11px; */
	float:left;
	list-style: none;
	line-height: 2em;
}
#navigation {
	z-index: 50;
	float: left;
	background-color: #cccc99;
	border: thin solid #000;
	border-spacing:0;
}



#nav a {
	display: block;
}

#nav li { /* all list items */
	float: left;
	width: 10em; /* width needed or else Opera goes nuts */
	line-height : 1.7em;
	/* margin-bottom : -2px; */
	text-align: center;	
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: white;
	width: 10.7em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	margin-top: -2px;  /* needed to display second level in IE without gap below first level */
	margin-left : 0em;
	text-align: left;	
}


#nav li ul ul { /* third-and-above-level lists */
	margin: -1.5em 0 0 19em;
	text-align: left;
	margin-left : 17em;
}

#nav li a {
		width : 10em;
		display : block;
		color : black;
		font-weight : bold;
		text-decoration : none;
		background-color:#CCCC99;
		/*border : 1px solid #000000; */
		padding : 0 0em;
}
#nav li ul a, #nav li ul ul a{
	width : 18em;
	display : block;
	color : black;
	font-weight : bold;
	text-decoration : none;
	background-color:#CCCC99;
	border : 1px solid #000000;
	padding : 0 0.5em;
	text-align: left;
}
#nav li a:hover {
		color : #CCCC99;
		background-color : #493326;
}
#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;
	background: black;
	color: white;
}
* html ul li { float: left; }
* html ul li a { height: 1%; }

