/* ######### Matt Tabs Main Menu Bar CSS ######### */

.matttabs ul{
margin: 0;
padding: 0;
font-family: Helvetica, Verdana, Arial, sans-serif;
font-size: 12px;
font-weight: 500;
list-style-type: none;
border-bottom: 1px solid gray;
background: white;
overflow: hidden;
width: 99.9%%;
}

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

.matttabs li a{
float: left;
display: block;
text-decoration: none;
margin: 0;
/*padding-left:10px;
padding-right:10px;*/
padding-top:10px;
padding-bottom:6px;
border-right: 1px solid white; /*right divider between tabs*/
margin-bottom: 1px;
color: white;
background-color: rgb(51,51,51);
text-align:center;
}

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

.matttabs li a:hover{
background-color: rgb(210,142,0); /*background of tabs for hover state */
}

.matttabs a.selected{
background-color: rgb(210,142,0); /*background of tab with "selected" class assigned to its LI */
}