﻿/* ######### CSS for Shade Tabs. Remove if not using ######### */

.shadetabs{
	padding: 3px 3px;
	margin-left: 0;
	margin-right: 0;
	margin-top: 1px;
	margin-bottom: 0;
	font: bold 10px Arial, Helvetica, sans-serif, Verdana;
	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{
	text-decoration: none;
	position: relative;
	z-index: 1;
	padding-left:20px;
	padding: 3px 7px;
	margin-right: 3px;
	margin-left:10px;
	color: #2d2b2b;
	background: url("../images/tabs/tab_b.jpg") top;
}

.shadetabs li a:visited{
color: #2d2b2b;
}

.shadetabs li a:hover{
text-decoration: underline;
color: #2d2b2b;
}

.shadetabs li a.selected{ /*selected main tab style */
position: relative;
top: 1px;
}

.shadetabs li a.selected{ /*selected main tab style */
background: url("../images/tabs/tab_a.jpg");
border-bottom-color: #808080;
}

.shadetabs li a.selected:hover{ /*selected main tab style */
text-decoration: none;
}

.tabcontent{
	text-align: left;
	display: none;
	float: left;
	list-style: circle;
	font-family: Verdana, Arial, Geneva, Helvetica, "Lucida Sans", "Trebuchet MS";
	font-size: 12px;
}

@media print {
.tabcontent {
display:block !important;
}
}




