/* ######### Matt Black Strip Main Menu Bar CSS ######### */
#divMenuContainer
{
    height: 28px;
    text-align: center;
    vertical-align:top;
    margin: 0 auto 0 auto;
    width: 750px;
}
.mattblackmenu ul
{
    margin: 0;
    padding: 0;
    font-family: Myriad Pro Tahoma;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    list-style-type: none;
    overflow: hidden;
    width: 100%;
}

.mattblackmenu li
{
    display: inline;
    border-bottom: 1px solid gray;
    margin: 0;
}

.mattblackmenu li a
{
    width: 120px;
    float: left;
    display: block;
    text-decoration: none;
    margin: 0;
    padding: 4px 2px 2px 2px; /*padding inside each tab*/
    border-right: 0px none Transparent; /*right divider between tabs*/
    color: white;
}

.mattblackmenu li a:visited
{
    color: white;
}

.mattblackmenu li a:hover
{
    background: #171717; /*background of tabs for hover state */
}

.mattblackmenu a.selected
{
    background: #171717; /*background of tab with "selected" class assigned to its LI */
}
