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

.shadetabs{
padding: 3px 0;
margin-left: 0;
margin-top: 1px;
margin-bottom: 0;
font: 12px 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;
position: relative;
bottom: 0px;
z-index: 1;
padding: 3px 10px;
margin-right: 0px;
color: #999999;
background: #444444;
}

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

.shadetabs li a:hover{
text-decoration: none;
color: #3d87b6;
background: #666666;
}

.shadetabs li a.selected{ /*selected main tab style */
color: #ffffff;
background: #666666;
position: relative;
top: 1px;
border-bottom-color: red;
}

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

.tabcontent{
display:none;
}

@media print {
.tabcontent {
	display:block !important;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #999999;
}
}

