/* ######### CSS for Shade Tabs. Remove if not using ######### */

.shadetabs{
padding: 2px ;
margin: 0px;
font: 8px Verdana;
list-style-type: none;
text-align: center; /*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;
z-index: 1;
border: 1px solid #f4f4f4;
color: #2d2b2b;
}

.shadetabs li a:visited{
color: #2d2b2b;
background: #ffffff;
}

.shadetabs li a:hover{
text-decoration: underline;
color: #2d2b2b;
}

.shadetabs li a.selected{ /*selected main tab style */
position: relative;
top: 1px;
font-weight:bold;
}

.shadetabs li a.selected{ /*selected main tab style */
background: #ffffff;
}

.shadetabs li a.selected:hover{ /*selected main tab style */
text-decoration: none;
}

.tabcontent{
display:none;
}

@media print {
.tabcontent {
display:block !important;
}
}

