
 
 ul#menu {
	height: 		auto;
	list-style:		none;
	list-style-type:none;
	margin:		0px;
	padding:		0px;
	overflow:		auto; /* makes sure the container fits the floated list-items below */
	/*background-color:#93B707; /* moved and lightened the background color from ul#menu li */

}
ul#menu li{
	margin:			0px 0px;
	padding:		0; /* padding moved to the a element below*/ 
	float:			right;
	font-family:	Arial, Helvetica, sans-serif;
	font-size:		24px;
	font-weight:	normal;	
	line-height: 	65px;
}
ul#menu li a {
	display:		block;  /*allows us to add top and bottom padding to the element */
	height: 		65px; 
	text-align:		center;
	width:          180px;
	position: 		relative;
	z-index: 		5;
    color:			#A8A8A8;
	text-decoration:none;
}

ul#menu li a:hover {
	color:			#000;
}

ul#menu li a:link#current, ul#menu li a:visited#current {
	color:			#000;	}

