@charset "utf-8";
/* CSS Document */

.mattblacktabs{
width: 960px;
margin:auto;
overflow: hidden;
border-bottom: 0px solid black; /*bottom horizontal line that runs beneath tabs*/
}

.mattblacktabs ul{
margin: 0;
padding: 0;
padding-left: 10px; /*offset of tabs relative to browser left edge*/
font: normal 12px Verdana;
list-style-type: none;
}

.mattblacktabs li{
display: inline;
margin: 0;
}

.mattblacktabs li a{
float: left;
display: block;
text-decoration: none;
margin: 0;
padding: 5px 11px; /*padding inside each tab*/
border-right: 1px solid #015979; /*right divider between tabs*/
color: #fff;
/*background: #1a4863;*/ /*background of tabs (default state)*/
}

.mattblacktabs li a:visited{
color: #fff;
}

.mattblacktabs li a:hover, .mattblacktabs li.selected a{
background: #1a4863; /*background of tabs for hover state, plus tab with "selected" class assigned to its LI */
}