/* CSS Document */

.shadetabs{
padding: 3px 0;
margin-left: 0;
margin-top: 1px;
margin-bottom: 0;
font: bold 11px Verdana;
list-style-type: none;
text-align: left; /*set to left, center, or right to align the menu as desired*/
}

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

.shadetabs li a{
text-decoration: none;
padding: 3px 5px;
margin-right: 0;
border-right: 1px solid #778;
color: #ccc;
background: url(../images/tabshade_bg.gif) white top left repeat-x;
}

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

.shadetabs li a:hover{
color:#72c167;
}

.shadetabs li.selected{
position: relative;
}

.shadetabs li.selected a{ /*selected main tab style */
background-image: url(../images/tabactive_bg.gif);
border: 1px solid #778;
border-bottom:none;
padding: 4px 5px;
color: #6ab460;
}
.shadetabs li.selected a:visited{
color: #6ab460;
}
.shadetabs li.selected a:hover{ /*selected main tab style */
text-decoration: none;
color:#72c167;
}

.tabcontentstyle{ /*style of tab content oontainer*/
border: 1px solid gray;
width: 448px;
margin-bottom: 1em;
padding: 0;
}

.tabcontent{
display:none;
padding:10px;
}

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

.tabcontent ul {
padding:0;
margin:5px 10px;
}

.tabcontent ul li {
padding:0;
margin:4px 10px;
}

.tabcontent tr {
background:#e3e3e3;
padding:2px;
margin:2px;
}
.tabcontent tr.alt {
background:#f3f3f3;
}

.tabcontent th {
border-top:5px solid #fff;
border-bottom:1px solid #999;
padding:2px;
margin:2px;
background:#BFE3BA;
}