
#menu { 
	position: absolute; top: 200px; left:50%; margin-left:-494px; z-index: 100;
	width: 990px; height: 33px;
	background: black;
	color: white;
}

#nav a { 
	display: block;
	font-family: Helvetica, sans-serif;
	font-size: 10pt;
	padding: 10px;
	text-decoration: none;
	background-color: black;
	color: white;
	text-transform: uppercase;
}

#nav a:hover { 
	color: #9bbb29;
}

#nav li { 
	float: left;
	margin: 0;
}

#nav li ul { 
	position: absolute;
	left: -999em; 
	width: 120px; 
}

#nav li ul a {
	color: #8bbeff;
	width: 120px;
}

#nav li ul ul { 
	/* this is the offset/positioning of third-level menus
	   the first argument should be the height of each list item *-1
	   the last argument should be the width of the dropdown lists */
	margin: -35px 0 0 140px;
}
#nav li ul ul ul { margin-top: -33px; }

/* you shouldn't need to change any of the below */

#nav, #nav ul { 
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	width: 100%;
}

#nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}

#nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { 
	left: auto;
}

