/* ######### Strip Main Menu Bar CSS ######### */

.mattblackmenu ul{
margin: 0;
padding: 0;
font: 12px Tahoma, Verdana, Arial, Helvetica, Geneva;
list-style-type: none;
overflow: hidden;
width: 100%;
height: 40px;
}

.mattblackmenu li{
display: inline;
margin: 0;
background-image: url(../images/nav_filler.gif);
}

.mattblackmenu li a{
background-image: url(../images/nav_filler.gif); /*bkgd natural state*/
float: left;
display: block;
text-decoration: none;
margin: 0;
padding: 6px 20px; /*padding inside each tab*/
 /*border-right: 1px solid #1C5959;right divider between tabs*/
color: white;
background-color: #D93C34;
}

.mattblackmenu li a:visited{
color: white;
background-image: url(../images/nav_filler.gif);
}

.mattblackmenu li a:hover{
color: white;
background-color: #D93C34; /*background of tabs for hover state */
background-image: none;
}

.mattblackmenu a.selected{
color: white;
background-image: url(../images/nav_filler.gif);
background-color: #D93C34; /*background of tab with "selected" class assigned to its LI */
}