/* ######### Matt Black Strip Main Menu Bar CSS ######### */
.menustyle ul{
	margin-top:250px;
	margin-bottom:0px;
	margin-right:0px;
	padding: 0;
	position: absolute;
	left: 50%;
	margin-left: -450px;
	font-weight: bold;
	font-size: 13px;
	font-family: Arial, Helvetica, sans-serif;
	list-style-type: none;
	background-color: #333;
	overflow: hidden;
	width: 898px;
	border: 1px solid white;
}

.menustyle li{
display: inline;
margin: auto;
}

.menustyle li a{
float: left;
display: block;
text-decoration: none;
margin: 0;
padding: 9px 34px; /*padding inside each tab*/
border-left: 1px solid white; /*right divider between tabs*/
color: white;
background-color: #333;
}

.menustyle li a:visited{
color: white;
}

.menustyle li a:hover{
background-color: #666; /*background of tabs for hover state */
}

.menustyle a.selected{
background-color: #666; /*background of tab with "selected" class assigned to its LI */
}
