/* ######### Matt Black Strip Main Menu Bar CSS ######### */

.mattblackmenu ul{
margin: 0;
padding: 0;
font: bold 10px Arial;
list-style-type: none;
border-bottom: 1px solid lightblue;
overflow: hidden;
width: 100%;
background-image:url(images/grad_nav.gif);
border-right: 1px solid #CFD0D1;
border-left: 1px solid #CFD0D1;
}

.mattblackmenu li{
display: inline;
margin: 0;

}

.mattblackmenu li a{
float: left;
display: block;
text-decoration: none;
font-weight: bold;
font-size: 8pt;
margin: 0;
padding: 6px 8px; /*padding inside each tab*/
border-right: 1px solid lightblue; /*right divider between tabs*/
color: white;
background-image:url(images/grad_nav.gif);
}

.mattblackmenu li a:visited{
color: white;
}

.mattblackmenu li a:hover{
background: powderblue; /*background of tabs for hover state */
color:black;
}

.mattblackmenu a.selected{
background: powderblue; /*background of tab with "selected" class assigned to its LI */
}