@charset "utf-8";
/* CSS Document */

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.mattblacktabs{
margin:0 auto;
width: 100%;
overflow: hidden;
border-bottom: 0px solid black; /*bottom horizontal line that runs beneath tabs*/
}

.mattblacktabs ul{
margin: 0;
padding: 0;
padding-left: 60px; /*offset of tabs relative to browser left edge*/
font: bold 14px Georgia;
list-style-type: none;
}

.mattblacktabs li{
display: inline;
margin: 0;
}

.mattblacktabs li a{
float: left;
display: block;
text-decoration: none;
margin: 0;
padding: 15px 30px; /*padding inside each tab*/
border-right: 3px solid #999999; /*right divider between tabs*/
color: white;
background: #3C3C3C; /*background of tabs (default state)*/
}

.mattblacktabs li a:visited{
color: white;
}

.mattblacktabs li a:hover, .mattblacktabs li.selected a{
background: #1693A5; /*background of tabs for hover state, plus tab with "selected" class assigned to its LI */
}

