/* ######### Matt Black Strip Main Menu Bar CSS ######### */

.mattblackmenu ul{
margin: 0px;
padding: 0px;
list-style-type: none;
border-bottom: 0px solid gray;
background: #009e61;
color: #f3f3f3;
overflow: hidden;
width: auto;
height: 25px;
}

.mattblackmenu li{
display: inline;
margin: 0;
}


.mattblackmenu li a,.mattblackmenu li a:visited,.mattblackmenu li a:active{
float: left;
display: block;
text-decoration: none;
margin: 0;
border-right: 1px solid white; /*right divider between tabs*/
padding: 6px 8px; /*padding inside each tab*/
color: #b3d801;
background: #009e61;
height: 25px;
font-weight: bold;
}

.mattblackmenu li a:hover{
background: #009e61; /*background of tabs for hover state */
color: #f3f3f3;
}

.mattblackmenu li.current a,.mattblackmenu li.current a:visited,.mattblackmenu li.current a:active{
background: #b3d801;
color: #333;
}

.mattblackmenu a.selected{
background: #b3d801; /*background of tab with "selected" class assigned to its LI */
color: #f3f3f3;
}

