/* MATTBLACK TABS MENU */
/* Credits: Dynamic Drive CSS Library URL: http://www.dynamicdrive.com/style/ */

.mattblacktabs{
width: 100%;
overflow: hidden;
border-bottom: 0px solid black; /*bottom horizontal line, runs beneath tabs*/
}

.mattblacktabs ul{
margin: 0;
padding: 0;
padding-left: 10px; /*offset of tabs relative to browser left edge*/
font: 9pt Verdana;
list-style-type: none;
}

.mattblacktabs li{
display: inline;
margin: 0;
}

.mattblacktabs li a{
text-decoration: none;
text-align: center;
float: left;
height: 33px;
width: 120px;
display: block;
margin: 0;
padding: 2px 3px; /*padding inside each tab*/
border: 1px solid gray; /*right divider between tabs*/
color: black;
background: #f3f3f3; /*background of tabs (default state)*/
}

.mattblacktabs li a:visited{
color: black;
}

.mattblacktabs li a:hover, .mattblacktabs li.selected a{
background: gray; color: white; /*background of tabs for hover state, 
plus tab with "selected" class assigned to its LI */
}

