/* ######### CSS for Shade Tabs. Remove if not using ######### */

.shadetabs{
padding: 3px;
margin-left: 0px;
margin-top: 0px;
margin-bottom: 25px;
font-family: Helvetica, sans-serif;
font-weight:bold;
font-size: 9pt;
list-style-type: none;
text-align: left; /*set to left, center, or right to align the menu as desired*/
}

.shadetabs ul{
padding: 5px 0;
list-style-type: none;
}

.shadetabs li{
display: inline;
margin: 0;
}

.shadetabs li a{
padding: 7px;
text-decoration: none;
padding-right: 5px; /*extra right padding to account for curved right edge of tab image*/
color:#9f1c2b;
background: #ffa900 url(../images/righttabdefault.png)  50% 0 no-repeat; /*give illusion of shifting 1px down vertically*/
border-left: 1px solid #ff7000;
border-right: 1px solid #ff7000;
border-bottom: 1px solid #ff7000;
position: relative;
display:block;
float: left;
margin-left: 3px; /*shift tabs 20px to the left so they overlap*/
left: 0px;
top: -1px;
}

.shadetabs li a:visited{
color: #2d2b2b;
}

.shadetabs li a:hover{
text-decoration:none;
color: #222;
}

.shadetabs li a.selected{ /*selected main tab style */
position: relative;
top: 1px;
}

.shadetabs li a.selected{ /*selected main tab style */
color: black;
border-left: 1px solid #ff7000;
border-right: 1px solid #ff7000;
border-bottom: 0px solid #e1e1e1;
z-index: 100; /*higher z-index so selected tab is topmost*/
top: 0px; /*Shift tab 1px down so the border beneath it is covered*/
background: #ffa900 url(../images/righttabdefault.png) 50% 0 no-repeat;
}

.shadetabs li a.selected:hover{ /*selected main tab style */
text-decoration: none;
}

.tabcontent{
display:none;
}


@media print {
.tabcontent {
display:block !important;
}
}

