ul#menu {
    list-style:none;
	top:0px;
	line-height:30px;
}
ul#menu li{
    position:relative; /* allows us to set the z-index */	
    z-index:5; /* raises the z-index of the line item 5 levels all other elements */
	padding:0px;
    float:left; /* floats list items to the left, creating a horizontal menu */
	text-transform:uppercase;
	width:240px;
	height:40px;
	text-align:center;
}
ul#menu li a{
	float:left;
	width:240px;
	height:20px;
	margin-top:14px;
	/*color:#FDF059;*/
	text-decoration:none;
	color:#CEC476;
	text-align:center;
	font-weight:bold;
	font-size:14px;
}
ul#menu li:hover a{
	color:#CEC476;
	/*text-shadow: 2px 2px 2px #fff;*/
}
ul#menu li.backLava {
    /*border:1px solid #420200;
	-webkit-border-radius:3px;    
	-moz-border-radius:3px;    
	border-radius:3px;*/
	background:url(../Images/menu_hover.png) no-repeat;
	/*opacity:0.6;
	filter:alpha(opacity=60);*/
}
.selectedLava{
	background:url(../Images/menu_current.png) no-repeat;
}
.selectedLava a{
	color:#CEC476;
}

