/* ######### CSS for Shade Tabs. Remove if not using ######### */

.cat-tabs{
padding: 3px 0;
margin-left: 20px;
margin-top: 10px;
margin-bottom: 0;
font: bold 12px Verdana;
list-style-type: none;
text-align: left; /*set to left, center, or right to align the menu as desired*/
}

.cat-tabs li{
display: inline;
margin: 0;
}

.cat-tabs li a{
text-decoration: none;
position: relative;
z-index: 1;
padding: 3px 7px;
margin-right: 3px;
border: 1px solid #778;
color: #ffffff;
background: url(../images/tabs/off.png) top left repeat-x;
}

.cat-tabs li a:visited{
color: #ffffff;
}

.cat-tabs li a:hover{
text-decoration: underline;
color: #cc0000;
}

.cat-tabs li a.selected{ /*selected main tab style */
position: relative;
top: 0px;
color: #cc0000;
}

.cat-tabs li a.selected{ /*selected main tab style */
background-image: url(../images/tabs/on.png);
border-bottom-color: white;
}

.cat-tabs li a.selected:hover{ /*selected main tab style */
text-decoration: none;
}

.ctabcontent{
	display:none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 10px;
}

@media print {
.ctabcontent {
display:block !important;
}
}

