/* ######### Matt Black Strip Main Menu Bar CSS ######### */

.mattblackmenu ul {
    margin: 0;
    padding: 0px 0px 0px 0px;
    font: bold 13px arial;
    list-style-type: none;
    border-bottom: 0px solid gray;
    /* background: url(../images/tab3.gif) repeat-x; */
    background-color: #ff0000;
    overflow: hidden;
    width: 100%;
    line-height: 43px;
    border-radius: 5px;
}

.mattblackmenu li {
    display: inline;
    margin: 0;
    padding: 0px 0px 0px 0px;
}

.mattblackmenu li a {
    float: left;
    display: block;
    text-decoration: none;
    margin: 0;
    padding: 0px 25px;
    /*padding inside each tab*/
    border-right: 1px dotted #f96c7f;
    /*right divider between tabs*/
    color: white;
    text-align: center;
    /* background: url(../images/tab3.gif) repeat-x; */
    background-color: #ff0000;
}

.mattblackmenu li a:visited {
    color: white;
}

.mattblackmenu li a:hover {
    background: #2895b4;
    /*background of tabs for hover state */
}

.mattblackmenu a.selected {
    background: #2895b4;
    /*background of tab with "selected" class assigned to its LI */
}