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

.mattblackmenu ul{
margin: 0;
/*padding-top: 2px;
padding-bottom:2px;*/
padding-top:0px;
padding-bottom:0px;
padding-left:0px;
padding-right:0px;
font: bold 12px Tahoma, Helvetica, sans-serif;
list-style-type: none;
border-top: 1px solid white;
border-bottom: 1px solid white;
background: #D42F27;
overflow: hidden;
width: 100%;
}

.mattblackmenu li{
display: inline;
margin: 0;
list-style-type: none;

}

.mattblackmenu li a{
float: left;
display: block;
text-decoration: none;
margin: 0;
list-style-type: none;
padding: 6px 24px; /*padding inside each tab*/
border-right: 0px solid white; /*right divider between tabs*/
color: white;
background-color: #D42F27;

}

.mattblackmenu li a:visited{
color: white;
}

.mattblackmenu li a:hover{
background: #D42F27; /*background of tabs for hover state */
color:#C4C2C2;
}

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