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

.matttabs ul{
margin: 0;
padding: 0;
font: bold 12px Verdana;
list-style-type: none;
border-bottom: 0px solid gray;
background: #01078f;
overflow: hidden;
width: 100%;
}

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

.matttabs li a{
float: right;
display: block;
text-decoration: none;
margin: 0;
padding: 10px 20px; /*padding inside each tab*/
border-right: 1px #510000; /*right divider between tabs*/
color: #ffffff;
background: #01078f;
}

.matttabs li a:visited{
color: #ffffff;
}

.matttabs li a:hover{
background: #018e26; /*background of tabs for hover state */
}

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