

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.mattblacktabs{
float: left;
padding-top:0px;
width: 185px;
overflow: hidden;
background-color:#98271e;
border-bottom: 0px solid black; /*bottom horizontal line that runs beneath tabs*/
border-top:0px solid #80af25;
}

.mattblacktabs ul{
margin: 0;
padding: 0;
padding-left: 0px; /*offset of tabs relative to browser left edge*/
font: normal 7px arial;
list-style-type: none;
text-align: left;
}

.mattblacktabs li{

display: inline;
margin: 0;
}

.mattblacktabs li a{
width: 185px;
float: left;
display: block;
height: 30px;
text-decoration: none;
margin: 0;
padding: 8px 0 0 10px; /*padding inside each tab*/
border-bottom: 1px solid white; /*right divider between tabs*/
color: white;
background: #2d2d2e; /*background of tabs (default state)*/
}

.mattblacktabs li a:visited{
color: white;
}

.mattblacktabs li a:hover, .mattblacktabs li.selected a{
background: #245bbc;
color: #ffffff; /*background of tabs for hover state, plus tab with "selected" class assigned to its LI */
}


