/* ######### Matt Black Strip Main Menu Bar CSS ######### */

.mattblackmenu ul{
text-align:center;
	background-color: black;
	opacity: 0.85;
	position: fixed;
	top: 0px;
	left: 305px;
	width: 740px;
	height: 50px;
	margin: 0 0 15px; /* Top right bottom left */
	-moz-border-radius-bottomright: 25px 25px;
	border-bottom-right-radius: 25px 25px;
	-moz-border-radius-bottomleft: 25px 25px;
	border-bottom-left-radius: 25px 25px;
	z-index:10;
}

.mattblackmenu li{
display: inline;
margin: 0;
}

.mattblackmenu li a{
float: left;
display: block;
text-decoration: none;
margin: 0;
font-size: 20px;
font-family: Arial;
font-weight: normal;
padding: 6px 18px; /*padding inside each tab*/
border-right: 1px solid white; /*right divider between tabs*/
color: white;
background: black;
}

.mattblackmenu li a:visited{
color: white;
}

.mattblackmenu li a:hover{
background: black; /*background of tabs for hover state */
}

.mattblackmenu a.selected{
background: black; /*background of tab with "selected" class assigned to its LI */
}