/* ######### Matt Black Strip Main Menu Bar CSS ######### */

.mattblackmenu ul{
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
list-style-type: none;
border-top: 1px solid grey;
border-bottom: 1px solid grey;
background: #CC0000;
overflow: hidden;
width: 1000px;
}

.mattblackmenu li{
display: inline;
margin: 0;
}

.mattblackmenu li a{
float: left;
display: block;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
text-decoration: none;
margin: 0;
padding: 6px 8px; /*padding inside each tab*/
border-centre: 1px solid gray; /*right divider between tabs*/
color: white;
background: #CC0000;
}

.mattblackmenu li a:visited{
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: white;
}

.mattblackmenu li a:hover{
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: white;
background: #990000; /*background of tabs for hover state */
}

.mattblackmenu a.selected{
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
background: #CC0000; /*background of tab with "selected" class assigned to its LI */
}
