/* ######### Matt Black Strip Main Menu Bar CSS ######### */

.mattblackmenu ul {
   margin: 0;
   padding: 0;
   font: bold 12px Arial;
   list-style-type: none;
   /*border-bottom: 1px solid gray;*/
   background: #DEDEDE;            /* Background color */
   overflow: hidden;
   width: 100%;
}

.mattblackmenu li {
   display: inline;
   margin: 0;
   line-height: 16px;
}

.mattblackmenu li a {
   float: left;
   display: block;
   text-decoration: none;
   margin: 0;
   padding: 4px 8px;                /* Padding inside each tab */
   border-right: 1px solid #00549E; /* Right divider between tabs */
   color: #00549E;                  /* Font color */
   background: #DEDEDE;
}

.mattblackmenu li a:visited {
   color: #00549E;                  /* Font color */
}

.mattblackmenu li a:hover {
   color: black;
   background: #C8C8C8;          /* Background color for selected item */
}

.mattblackmenu a.selected {
   color: black;
   background: #C8C8C8;         /* background of tab with "selected" class assigned to its LI */
}