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



.shadetabs{

list-style-type: none;
height:30px;
text-align: center; /*set to left, center, or right to align the menu as desired*/
width:700px;
background-image:url(images/bg-tab_none.jpg);
background-repeat:repeat-x;
}
.shadetabs ul {
list-style-type: none; list-style-image: none;
margin-bottom:10px;
width:700px;

}

.shadetabs li{
display: inline;  

}

.shadetabs li a{
display:inline;  
overflow: hidden;  
cursor: pointer;  
float:left;
width:100px;
height:29px;
background-image:url(images/bg-tab.jpg);
background-repeat:no-repeat; 
padding-top:8px;
margin-right:0px;
text-decoration:none;
font-size:13px;
color:#fff;
}

.shadetabs li a:visited{


}

.shadetabs li a:hover{

text-decoration:underline;
}

.shadetabs li a.selected{ /*selected main tab style */
position: relative;
color:#fff;
}

.shadetabs li a.selected{ /*selected main tab style */
background-image:url(images/bg-tab_select.jpg);
}

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

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

}

.tabcontent{
display:none;

}

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


