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

.mattblackmenu ul{
	margin: 0;
	padding: 0;
	font: normal 12px Georgia, "Times New Roman", Times, serif;
	list-style-type: none;
	border-bottom: 2px solid #333333;
	background: url(../images/menu.gif) repeat-x;
	overflow: hidden;
	width: 100%;
	color: #000033;
}

.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*/
color: #000000;
}

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

.mattblackmenu li a:hover{
background: #B5BCA7; /*background of tabs for hover state */
color: #003399;
}

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

