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

.tabs{
width: 100%;
overflow: hidden;
border-bottom: 1px solid black; /*bottom horizontal line that runs beneath tabs*/
background-color:#6e512f;
position:relative;
float:left;
}

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

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

.tabs li a{
float: left;
display: block;
text-decoration: none;
margin: 0;
padding: 7px 10px; /*padding inside each tab*/
border-right: 1px solid white; /*right divider between tabs*/
color: white;
background: #6e512f; /*background of tabs (default state)*/
}

.tabs li a:visited{
color: white;
}

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



