/* ######### Matt Black Strip Main Menu Bar CSS ######### */

.mattblackmenu ul{
margin: 0;
padding: 0;
font: bold 12px Verdana;
list-style-type: none;
border-bottom: 1px solid gray;
background: #01924D;
overflow: hidden;
width: 100%;
}

.mattblackmenu li{
display: inline;
margin: 0;
}

.mattblackmenu li a{
float: left;
display: block;
text-decoration: none;
height:27px;
margin: 0;
padding: 7px 5px 3px 5px; /*padding inside each tab*/
border-right: 1px solid #4F4E3A; /*right divider between tabs*/
color: white;
background: #01924D;
}

/*.mattblackmenu li a:visited{
color: black;
}*/

.mattblackmenu li a:hover{
background: #ABA98C; /*background of tabs for hover state */
color: #323218;
}

.mattblackmenu a.selected{
background: #ABA98C; background of tab with "selected" class assigned to its LI 
}