/* ######### CSS for Shade Tabs. Remove if not using ######### */

.shadetabs{
list-style-type: none;
text-align: center; /*set to left, center, or right to align the menu as desired*/
width:500px;
height:30px;
padding:0;
margin:0;
}

.shadetabs li{
float:left;
width:100px;
height:30px;
margin:0;
}

.shadetabs li div{
cursor:pointer;
width:100px;
height:30px;
text-decoration: none;
color: #000000;
background: white url(/skin1/images/images/tab-inactive2.png) no-repeat;
}

.shadetabs li div:visited{
color: #000000;
}

.shadetabs li div:hover{
text-decoration: underline;
color: #000000;
}


.shadetabs li div.selected{ /*selected main tab style */
cursor:pointer;
width:100px;
height:30px;
background-image: url(/skin1/images/images/tab-active2.png);
}

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

.tabcontent{
display:none;
min-height:250px;
padding-left:15px;
padding-right:15px;
padding-bottom:15px;
}

@media print {
.tabcontent {
display:block !important;
min-height:250px;
padding-left:15px;
padding-right:15px;
padding-bottom:15px;
}
}


