/* CSS Document */

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

.shadetabs {
padding: 0;
margin-left: 0;
margin-top: 1px;
margin-bottom: 10px;
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 {
	margin-right: 21px;
	color: #2d2b2b;
	border-bottom-width: 5px;
	border-bottom-style: solid;
	border-bottom-color: #191919;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
}

.shadetabs li a:visited {
	color: #2d2b2b;
}

.shadetabs li a:hover {
	border-bottom-width: 5px;
	border-bottom-style: solid;
	border-bottom-color: #EEFF00;
}

.shadetabs li a.selected { /*selected main tab style */
	border-bottom-width: 5px;
	border-bottom-style: solid;
	border-bottom-color: #EEFF00;
}

.tabcontent{
display:none;
}

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

