/* CSS Document */

.shadetabs{
padding: 2px 0;
margin-left: 0;
margin-top: 1px;
margin-bottom: 0;
font: bold 10px Verdana;
list-style-type: none;
text-align: left; /*set to left, center, or right to align the menu as desired*/
text-transform:uppercase;
border-bottom: #666 1px solid;
}

.shadetabs li{
display: inline;
margin: 0px;
padding: 0 0 0 0;
}

.shadetabs li a{
text-decoration: none;
position: relative;
z-index: 1;
margin-right: 3px;
color: #333;
background: #CCC;
padding: 2px;
border-top: #666 1px solid;
border-left: #666  1px solid;
border-right: #666  1px solid;
}

.shadetabs li a:visited{
color: #FF9902;
}

.shadetabs li a:hover{
text-decoration: none;
background: #DDD;
color: #FF9902;
}

.shadetabs li a.selected{ /*selected main tab style */
top: 0px;
color: #FF9902;
background: #FFF;
border-bottom: #FFF 1px solid;
}

.shadetabs li a.selected:hover{ /*selected main tab style */
text-decoration: none;
}

.tabcontent{
display:none;
}

@media print {
.tabcontent {
display:block !important;
}
}
