/* ######### CSS for Shade Tabs. Remove if not using ######### */

.shadetabs{
padding: 3px 0px;
margin-right: 10px;
margin-left: 2px;
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;
height: 20px;
}

.shadetabs li a{
text-decoration: none;
position: relative;
z-index: 1;
padding: 3px 7px;
margin-right: 1px;
border: 2px solid #EEEEEE;
color: #ffffff;
background: #2D2D2D;
font-weight: bold;
}

.shadetabs li a:visited{
color: #1AB8DB;
font-weight: bold;
}

.shadetabs li a:hover{
text-decoration: none;
color: #ffffff;
font-weight: bold;
}

.shadetabs li a.selected{ /*selected main tab style */
position: relative;
top: 1px;
color: #FFD533;
}

.shadetabs li a.selected{ /*selected main tab style */
background: #ffffff;
border-bottom-color: white;
border-top: 2px solid #EEEEEE;
border-right: 2px solid #EEEEEE;
border-left: 2px solid #EEEEEE;
color: #000000;
font-weight: bold;
}

.shadetabs li a.selected:hover{ /*selected main tab style */
text-decoration: none;
color: #1AB8DB;
font-weight: bold;
}

.tabcontent{
display:none;
width: 565px;
}

@media print {
.tabcontent {
display:block !important;
}
}


