#nav_holder {
	margin-top: 5px;
	position: absolute;
	top: 127px;
	z-index: 1000;
}
#nav {
	clear: both;
	margin-top: 15px;
	/*overflow: auto;*/
	z-index: 1002;
}
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	z-index: 998;
}

#nav a {
	display: block;
	/*width: 10em;*/
	text-decoration: none;
	text-align: center;
	width: 100%;
	color: white;
	margin-top: -1px;
	padding-bottom: 1px;
}

#nav li { /* all list items */
	float: left;
	background: #3CA314;
	/*width: 10em; /* width needed or else Opera goes nuts */
	width: 165px;
	/*overflow: hidden;*/
	padding: 2px;
}

#nav ul li a {
	text-align: left;
}

#nav li.level1 {
	margin: 0px 2px 0px 2px;
	padding-top: 5px;
	padding-bottom: 6px;
	*padding-top: 6px;
	*padding-bottom: 5px;
	background: url(../images/menu_bg.png) repeat-x center;
}
#nav li.selected {
	background: url(../images/menu_bg_on.png) repeat-x center;
}
#nav li.level1:hover {
	background: url(../images/menu_bg_on.png) repeat-x center;
}

#nav li ul { /* second-level lists */
	position: absolute;
	/*width: 10em;*/
	width: 100%;
	background: white;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	margin-left: -2px;
	margin-top: 3px;
	*margin-left: 0;
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1.2em 0 0 12.8em;
}

#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;
}

#nav ul li {
	border-top: 1px dotted #7ac85d;
}

#nav ul li ul li {
	border-left: 1px dotted #7ac85d;
}

#nav ul li:hover {
	background: #008706;
}

#nav ul li ul {
	left: -1em;
	*left: 0em;
}
