/* ######### CSS for Shade Tabs. Remove if not using ######### */

.shadetabs {
	width: 300px;
	padding: 3px 0;
	margin-left: 0;
	margin-top: 1px;
	margin-bottom: 2px;
	font: bold 0.9em Verdana;
	list-style-type: none;
	text-align: left; /*set to left, center, or right to align the menu as desired*/
}

.shadetabs ul {
	color: #FFF;
}

.shadetabs li{
	display: inline;
	margin: 0;
	
}

.shadetabs li a{
	text-decoration: none;
	position: relative;
	z-index: 1;
	padding: 3px 3px 0 3px;
	margin-right: 2px;
	margin-bottom: 5px;
	border: 1px solid #1785BA;
	color: #FFF;
	background: #1785BA;
}

.shadetabs li a:visited{
	color: #FFF;
}

.shadetabs li a:hover{
	text-decoration: none;
	color: #FFF;
}

.shadetabs li a.selected{ /*selected main tab style */
	position: relative;
	top: 0;
}

.shadetabs li a.selected{ /*selected main tab style */
	background-image: url(shadeactive.gif);
	border-bottom-color: 0px solid transparent;
}

.shadetabs li a.selected:hover{ /*selected main tab style */
	text-decoration: none;
}

.tabcontent{
	display:none;
}

@media print {
.tabcontent {
	display:block !important;
}
}

