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

.shadetabs{
margin:0 auto;
width: 570px;
font: bold 12px Verdana;
list-style-type: none;
text-align: left; /*set to left, center, or right to align the menu as desired*/
}

.shadetabs ul {
	display: inline;
}	

.shadetabs li{
display: inline;
margin: 0;
}

.shadetabs li a {
text-decoration: none;
position: relative;
z-index: 1;
width:110px;
height:30px;
display: block;
float: left;
margin-right: 3px;
color: #FFF;
text-align: center;
background: url(../../images/tabs.jpg) bottom left no-repeat;
line-height:30px;
}

.shadetabs li a:hover{
text-decoration: none;
color: #FFF;
background: url(../../images/tabs.jpg) top left no-repeat;
}

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

.shadetabs li a.selected{ /*selected main tab style */
text-decoration: none;
color: #CCC49D;
background: url(../../images/tabs.jpg) top left no-repeat;
}

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

.tabcontent{
display:none;
padding-top:10px;
width:470px;
margin-left:50px;
}

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

