/* ######### Wire Frame Menu CSS ######### */
    
.wireframemenu{
	font-weight: bold;
	width: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif, "Trebuchet MS";
	font-size: 11px;
	position: absolute;
	top: 500px;
	left: 0px;
	z-index: 5;
}

.wireframemenu ul{
padding: 6px 0 6px 0; /*1st and 3rd value should equal 1st and 3rd values of "padding" for link itself (see ul li a)*/
margin: 0;
text-align: center; //set value to "left", "center", or "right"*/
}

.wireframemenu ul li{
display: inline;
}

.wireframemenu ul li a{
	color: #FFFFCC;
	padding: 6px 6px 6px 10px;
	margin: 0;
	text-decoration: none;
	background-color: #339900;
}

.wireframemenu ul li a:hover, .wireframemenu ul li a.selected{
	color: #339900;
	background-color: #FFFFCC;
}

