/* ######### Matt Black Strip Main Menu Bar CSS ######### */

.mattblackmenu ul {
    margin: 0;
    padding: 0;
    font: 15px tahoma, arial, verdana, Helvetica, sans-serif;
    font-weight: 500;
    list-style-type: none;
    border-bottom: 0px solid gray;
    background: transparent;
    overflow: hidden;
    width: 100%;
}

.mattblackmenu li {
    display: inline;
    margin: 0;
}

.mattblackmenu li a {
    float: left;
    display: block;
    text-decoration: none;
    margin: 0;
    padding: 6px 10px; /*padding inside each tab*/
    /*border-right: 1px solid white;*/
    /*right divider between tabs*/
    color: #6E7A7A;
    background: transparent;
    font-size: 17px;

}

.mattblackmenu li a:visited {
    color: #6E7A7A;
}

.mattblackmenu li a:hover {
    background: transparent; /*background of tabs for hover state */
    color: #FF5001;
}

.mattblackmenu a.selected {
    background: transparent; /*background of tab with "selected" class assigned to its LI */
}
