/* ######### Matt Tabs Main Menu Bar CSS ######### */

.matttabs ul{
margin: 0;
padding: 0;
font: 11px Verdana;
list-style-type: none;
/*border-bottom: 1px solid gray;*/
background: #efefef;
overflow: hidden;
width: 100%;
}

.matttabs li{
display: inline;
margin: 0;
}

.matttabs li a{
float: left;
display: block;
text-decoration: none;
margin: 0;
padding: 6px 6px; /*padding inside each tab*/
border-right: 1px solid white; /*right divider between tabs*/
color: #333333;
background: #efefef;
}

.matttabs li a:visited{
color: #333333;
}

.matttabs li a:hover{
text-decoration: none;
background: #ffffff; /*background of tabs for hover state */
}

.matttabs a.selected{
background: #ffffff; /*background of tab with "selected" class assigned to its LI */
}
