/*########################
        TABS
 ########################*/

.shadetabs{
font: bold 11px Arial;
width: 100%; /*leave this value as is in most cases*/
margin: 0;
padding: 0;
float: left;
border-left:1px solid #D6D6D6;
}

.shadetabs li{
display: inline;
}

.shadetabs li a{
float: left;
color: #0774B1; /*text color*/
padding: 3px 11px;
text-decoration: none;
border-right: 1px solid #D6D6D6;
border-top: 1px solid #D6D6D6;
background: white url(shade.gif) repeat-x;
}

.shadetabs li a:hover{ color:#FFA200; }

.shadetabs li.selected a{
color: #FFA200 !important;
padding-top: 4px; /*shift text down 1px*/
padding-bottom: 2px;
background: white url(shadeactive.gif) repeat-x;
}

.tabcontentstyle{ /*style of tab content oontainer*/
border: 1px solid #D6D6D6;
width: 97%;
min-height:100px;
margin-bottom: 1em;
padding: 5px;
}

.tabcontent{
display:none;
}

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

