/* ######### CSS for Shade Tabs.  ######### */

.shadetabs{
padding: 3px 0;
margin-left: 110px;
margin-top: 0px;
margin-bottom: 0;
font: bold 12px "Trebuchet MS",Tahoma, Helvetica Neue, Arial, Verdana,Helvetica, sans-serif;
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;
z-index: 1;
padding: 3px 7px;
margin-right: 3px;
border: 1px solid #ccc;
border-bottom-color: #ccc;
color: #666;
background: #e7eace;
}

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

.shadetabs li a:hover{
text-decoration: none;
color: #222;
background:#d4d7bf;
}

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

.shadetabs li a.selected{ /*selected main tab style */
background-image: url(shadeactive.gif);
border: 1px solid #ddd;
border-bottom-color: white;
}

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

.tabcontent{
display:none;
padding-top:10px;
}

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

