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

.shadetabs
{
padding: 0px;
float: left;
margin: 0px;
font: bold 13px arial;
list-style-type: none;
text-align: left; /*set to left, center, or right to align the menu as desired*/
}

.shadetabs li :hover {
	color: yellow; 
}

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

.shadetabs li a{
border-right: 2px solid #F9FBE3;
float: left;
text-decoration: none;
position: relative;
top: 0px;
z-index: 1;
/*padding: 7px 35px 7px 35px;*/
padding: 7px 20px 7px 20px;
color: #fff;
/*background-color: #3BAA06*/

}

.shadetabs li a.selected{ /*selected main tab style */
position: relative;
top: 0px;
color: #000;
}

.shadetabs li a.selected:hover {
	color: gray; 
}

.shadetabs li a.selected{ /*selected main tab style */
/*background-image: url(shadeactive.gif);
border-bottom-color: white;*/
/*background-color: #88D464;*/
background: rgba(255,255,255, 0.5);
}


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

.tabcontent{
display:none;
}

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