﻿/*BASED UPON CONTENT from Dynamic Drive CSS Library*/
/*URL: http://www.dynamicdrive.com/style/ */

.cyantabs{
width: 100%;
overflow: hidden;
border-bottom: 1px solid #1B9EC1; /*bottom horizontal line that runs beneath tabs*/
}

.cyantabs ul{
margin: 0;
padding: 0;
padding-left: 1px; /*offset of tabs relative to browser left edge*/
font: small Verdana;
list-style-type: none;
}

.cyantabs li{
display: inline;
margin: 0;
}

.cyantabs li a{
float: left;
display: block;
text-decoration: none;
margin: 0;
padding: 7px 8px; /*padding inside each tab*/
border-right: 1px solid white; /*right divider between tabs*/
color: white;
background: #1B9EC1; /*background of tabs (default state)*/
}

.cyantabs li a:visited{
color: white;
}

.cyantabs li a:visited:hover{
color: #1B9EC1;
text-decoration: none;
}

.cyantabs li a:hover, .cyantabs li.selected a{
background: white; /*background of tabs for hover state, plus tab with "selected" class assigned to its LI */
color: #1B9EC1;
}

