/* ######### Matt Tabs Main Menu Bar CSS ######### */

.matttabs ul
{
    margin: 0;
    padding: 0;
    font: bold 14px Arial;
    list-style-type: none;
    border-bottom: 0px solid black;
    border-top: 0px solid black;
    background: white;
    overflow: hidden;
    width: 496px;
    height: 35px;
}

.matttabs li
{
    display: inline;
    margin: 0;
}

.matttabs li a
{
    float: left;
    display: block;
    text-decoration: none;
    margin: 0;
    padding: 6px 8px; /*padding inside each tab*/
    border-right: 0px solid white; /*right divider between tabs*/
    color: #1F217C;
    background: yellow;
    width: 70px;
    text-align: center;
    height: 35px;
}

.matttabs li a:visited
{
    color: #1F217C;
}

.matttabs li a:hover
{
    background: #1F217C; /*background of tabs for hover state */
    color: yellow;
}

.matttabs a.selected
{
    background: #1F217C; /*background of tab with "selected" class assigned to its LI */
    color: yellow;
}

