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

.mattblackmenu ul{
	margin: 0 auto;
	text-align: center;
	/*margin: 4px 0 0 26px;*/ /*last figure used to center menu*/
	padding-left: 17px;
	padding-right: 0px;
	font: normal 12px/18px Verdana, Arial, Helvetica, sans-serif;
	list-style-type: none;
	border-bottom: 1px none black;
	border-top: 1px none black;
	overflow: hidden;
	width: 925px;
}

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

.mattblackmenu li a{
float: left;
display: block;
text-decoration: none;
margin: 0px;
padding: 6px 8px; /*padding inside each tab*/
border-right: 1px solid white; /*right divider between tabs*/
border-left: 1px solid white; /*right divider between tabs*/
color: white;
background: #46285B;
}

.mattblackmenu li a:visited{
color: white;
}

.mattblackmenu li a:hover{
background: black; /*background of tabs for hover state */
color: white;
}

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

