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

.mattblackmenu ul{
margin: 0;
padding: 0;
font: normal 14px Arial, Helvetica, sans-serif;
list-style-type: none;
border-bottom: 0px solid #999;
/*background: #7F98B3;*/ /* main css styles this */
overflow: hidden;
width: 100%;
}

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

.mattblackmenu li a{
float: left;
display: block;
text-decoration: none;
margin: 0;
padding: 9px 15px; /*padding inside each tab*/
border-right: 1px solid #7F98B3; /*right divider between tabs*/
color: #FFF;
/*background: #7F98B3;*/ /*allows bg from main css to shine through */
}

.mattblackmenu li a:visited{
color: #FFF;
}

.mattblackmenu li a:hover{
background: #7F98B3; 
color: #FFF; /*background of tabs for hover state */
}

.mattblackmenu li a.home:hover{
border-top-left-radius: 4px;
}

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