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

.mattblackmenu ul{
margin: 0;
padding: 0;
font: 15px Verdana;
list-style-type: none;
overflow: hidden;
white-space: nowrap;
}

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

.mattblackmenu li a{
float: right;
display: block;
text-decoration: none;
margin-right: 7px;
margin-top: 7px;
width: 160px;
text-align: center;
border-radius: 7px 7px 0 0;
border-bottom: 1px solid black;
padding: 4px 0 4px 0; /*padding inside each tab*/
color: black;
background: #E6E6E6;
}

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

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