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

.mattblackmenu ul{
margin: 0;
padding: 0;
font:  13px Tahoma ;
font-weight:bold;
list-style-type: none;
overflow: hidden;
width: 80%;
}

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

.mattblackmenu li a{
float: left;
display: block;
text-decoration: none;
margin: 0;
padding: 6px 10px; /*padding inside each tab*/
border-right: 1px solid   #E1E1E1 ;   /*right divider between tabs*/
color: black;

}



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

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

