/* ######### Matt Black Strip Main Menu Bar CSS ######### */

/* 
color grid: 
#999966 = green/beige color
#999966 = black
#006600 = dark green

*/
.mattblackmenu ul{
margin: 0;
padding: 0;
font: bold 13px Verdana;
list-style-type: none;
border-bottom: 1px solid #735A42;
background: #999966;
overflow: hidden;
width: 100%;
color: #000000 ;
}

.mattblackmenu li{
display: inline;
margin: 0;
background: #999966;
color: #000000;
}

.mattblackmenu li a{
float: left;
display: block;
text-decoration: none;
margin: 0;
padding: 6px 8px; /*padding inside each tab*/
border-right: 1px solid #735A42; /*right divider between tabs*/
background: #999966;
color: #000000;
}

.mattblackmenu li a:visited{
color: #000000; /*main menu word color after visited */
}

.mattblackmenu li a:hover{
background: #999966; /*background of tabs for hover state */
color: #006600;  /*text color when hover in main menus*/
}

.mattblackmenu a.selected{
background: #999966; /*background of tab with "selected" class assigned to its LI */
color: #006600;  /*text color when item is selected in main menus*/
}