/* ######### CSS for Shade Tabs. Remove if not using ######### */
.tabcontainer {
float: left;

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

.shadetabs li{
display: block;
float:left;
padding: 4px;
}

.shadetabs li a{
display:block;
text-decoration: none;
position: relative;
z-index: 1;
padding-left: 5px;
padding-right:5px;
margin-top: 5px;
margin-bottom:5px;
border: 1px solid #2d6ba5;
color: white;
background: url(../images/shade.jpg) top left repeat-x;
line-height: 32px;
font-size: 12px;
font-weight: normal;
text-align: right;
}

.shadetabs li a:visited{
color: white;
}

.shadetabs li a:hover{
text-decoration: underline;
color: white;
}

.shadetabs li a.selected{ /*selected main tab style */
position: relative;
top: 1px;
}

.shadetabs li a.selected{ /*selected main tab style */
text-align: left;
font-weight: bold;
padding-left: 5px;
font-size: 14px;
background-image: url(../images/shadeactive.jpg);
}

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

.tabcontent{
display:none;
}

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

