/* A slight derivative of Suckerfish Dropdowns (www.alistapart.com/articles/dropdowns) */

.clearNav { clear:both; margin-bottom: 5px; }	

#nav {
	list-style: none;
	margin: 0px;
	padding: 5px 0px;
	position: relative;
	z-index: 22;
	}
#nav li {
	margin-right: 8px;
	float: left;
	position: relative;
	}
#nav a {
	text-decoration: none;
	color: #fff;
	}
#nav a:hover { color: #cc9933; }

 .menu {
	display: none;
	position: absolute;
	z-index: 10;
	list-style: none;
	background: #333300;
	border: 1px solid #999966;
	color: #333;
	padding: 4px 6px;
	margin-left: -5px;
	top: 14px;
	left: 0px;
	width: 140px;
	}

#nav .menu a, #nav .menu a:hover { 
	border: none;
	padding: 0px;
	margin: 0px;
	}

#nav li li:hover { border: none; }
#nav li .menu li a:hover { color: #cc9933; }
#nav li:hover .menu, li.over .menu { /* lists nested under hovered list items */
	display: block;
}

#nav .menu li {
	float: none;
	margin: 0px;
	padding: 2px 0px 3px 0px;
	_height: 18px;
	border: none;
	background: transparent url('/images/divider_dotted_green.gif') no-repeat left bottom;
	}
#nav .menu li a {
	padding: 0px;
	margin: 0px;
	background: none;
	line-height: 16px;
	}

#noline {
	background: transparent url('/images/blank.gif');
	padding: 2px 0px 3px 0px;
	}
	
#nav li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}