#nav {
	position:relative;
	z-index:1000;
}

#nav ul { 
	margin:0px;
	padding:0px;
	list-style: none;
	background-color:#fc3;
}

#nav a {
	display: block;
	color:#000;
	text-decoration:none;
	width:auto;
	border-right:solid 10px #fc3;
}

#nav a:hover {
	color:#fff;
}

#nav a.noLink {
	text-decoration:none;
	color:#000;
}

/* all list items */
#nav li { 
	border:solid 5px #fc3;
	float:left;
	width:auto; /* width needed or else Opera goes nuts */
	background-color:#fc3;
}

/* second-level lists */
#nav li ul { 
	position: absolute;
	width: 160px;
	margin-left:-15px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	border-top:solid 5px #fc3;
	border-bottom:solid 10px #fc3;
	border-left:solid 10px #fc3;
	border-right:solid 20px #fc3;
}


/* second-level list items */
#nav li ul li { 
	border-top:solid 3px #fc3;
	border-bottom:solid 3px #fc3;	
}

/* links in second-level lists */
#nav li ul a { 
	width: 160px;
	border-right:0px;
}

#nav li ul span.active_node {
	color:#fff;
	display: block;
	border-right:solid 10px #fc3;
	width: 160px;
}

/* lists nested under hovered list items */
#nav li:hover ul, #nav li.sfhover ul { 
	left: auto;
}

