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

.shadetabs{
display: block;
height: 100%;
overflow: hidden;
padding: 0;
margin:1px 0 0 0;
font: bold 12px Arial;
list-style-type: none;
text-align: left; /*set to left, center, or right to align the menu as desired*/
}

.shadetabs li{
display: inline;
height: 100%;
overflow: hidden;
margin: 0;
padding:0;
float: left;
}

.shadetabs li a{
display: block;
height: 100%;
overflow: hidden;
text-decoration: none;
position: relative;
z-index: 1;
padding: 7px 11px;
margin: 0px;
border: 0;
color: #FFF;
background: #818286;
float: left;
text-transform:uppercase;
}

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

.shadetabs li a:hover{
background-color: #d2232a;
color: #FFF;
}

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

.shadetabs li a.selected{ /*selected main tab style */
background-color: #d2232a;

}

.shadetabs li a.current{ /*selected main tab style */
background-color: #d2232a;
color:#FFF;

}

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

.tabcontent{
display:none;
}

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

