/* ######### Matt Black Strip Main Menu Bar CSS ######### */

.mattblackmenu ul{
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 30px;
	
	
	padding: 0;
	font: 11px/16px Verdana, Arial, Helvetica, sans-serif;
	list-style-type: none;
	border-bottom: 1px none gray;
	overflow: hidden;
	width: 900px;



}

.mattblackmenu li{
	display: inline;
	margin: 0;

}

.mattblackmenu li a{
float: left;
display: block;
text-decoration: none;
margin: 0;

padding: 6px 8px; /*padding inside each tab*/
border-right: 1px solid white; /*right divider between tabs*/
color: #FFFFFF;
background: #800000;
}

.mattblackmenu li a:visited{
color: #FFFFFF;
}

.mattblackmenu li a:hover{
background: #E09292; /*background of tabs for hover state */

}

.mattblackmenu a.selected{
background: #480000; /*background of tab with "selected" class assigned to its LI */
}

