﻿/* ######### CSS for Shade Tabs. Remove if not using ######### */

.shadetabs{
padding: 3px 0;
margin-left: 0;
margin-top: 1px;
margin-bottom: 0px;
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
{
border: solid 1px #DEDEDE;
position: relative;
z-index: 1;
padding: 3px 7px;
color: #999999;
background-color: #FFFFFF;
text-decoration: none;
background-image: url('/Images/tabs/offback.gif');
background-position: center top;
background-repeat: repeat-x;        
}
.shadetabs li a:hover{
background-image: url('/Images/tabs/hoverback.gif');
background-position: center top;
background-repeat: repeat-x;
color: #227db9;
}
.shadetabs li a.selected
{
/*selected main tab style */
background-image: url('/Images/tabs/selback.gif');
background-position: center top;
position: relative;
border: solid 1px #227db9;
background-color: #50a7d4;
color: #FFFFFF;
padding: 5px 7px 5px 7px;
background-repeat: repeat-x;
font-weight: bold;
}
.shadetabs li a.selected:hover
{
background-image: url('/Images/tabs/selback.gif');
color: #FFFFFF;
}    
.tabcontent
{
display: none;
padding: 10px 10px 3px 10px;
border: solid 1px #DEDEDE;
margin-bottom: 5px;
}
.tabholder
{
border-bottom: solid 4px #227db9;
padding-bottom: 1px;
} 
@media print {
.tabcontent {
display:block !important;
}     