/* CSS Document */


#menubar	{
	position: absolute;
	top: 20px;
	left: 0;
	width: 100%;
	height: 30px;
	background-color: #660066;
	color: #FFFFFF;
	}

#nav	{
	position: absolute;
	top: 7px;
	left: 250px;
	}

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

#nav a {
	display: block;
	width: 100px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 14px;
	color: #ffffff;
	text-decoration: none;
	z-index: 10;
}

#nav a:hover	{
	background-color: #cc66cc;
	}

#nav li { /* all list items */
	float: left;
	text-align: center;
	width: 100px; /* width needed or else Opera goes nuts */
	z-index: 10;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #660066;
	width: 100px;
	z-index: 10;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers
	 */
	 padding-bottom: 5px;
}

#nav li ul li	{ /*items in second-level lists*/
	padding: 5px 0px 0px 0px;
	margin: 0;
	z-index: 10;
	}
	
#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}




