@charset "utf-8";
/* Nav Clearing */

ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

#Nav li { /* all list items */
	float: left;
	
	
}

#Nav li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
	color:#000;
	width:auto;
}

#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;*/
	left: 0;
	top:21px;

}

#Nav li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}

#Nav li:hover, li.over {
	color:#afcb36;	
} 



