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

.shadetabs{
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 32px; /*--Set height of tabs--*/
	border-bottom: 1px solid #999;
	border-left: 1px solid #999;
	width: 100%;
}

.shadetabs li{
	float: left;
	margin: 0;
	padding: 0;
	height: 31px; /*--Subtract 1px from the height of the unordered list--*/
	line-height: 31px; /*--Vertically aligns the text within the tab--*/
	border: 1px solid #999;
	border-left: none;
	margin-bottom: -1px; /*--Pull the list item down 1px--*/
	overflow: hidden;
	position: relative;
	background: #e0e0e0;
}

.shadetabs li a{
	text-decoration: none;
	color: #000;
	display: block;
	font-size: 14px;
	padding: 0 10px;
	border: 1px solid #fff; /*--Gives the bevel look with a 1px white border inside the list item--*/
	outline: none;
}

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

.shadetabs li a:hover{
	background: #ccc;
}

.shadetabs li a.selected{ /*selected main tab style */
	background: #fff;
	border-bottom: 1px solid #000000; /*--Makes the active tab look like it's connected with its content--*/
}

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

.tabcontainer {
	margin: 0 auto 15px 0;
	border: 1px solid #999;
	border-top: none;
	overflow: hidden;
	clear: both;
	float: left; width: 100%;
	background: #fff;
}
.tabcontent {
	padding: 20px;
	font-size: 12px;
}

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

.tabcontent{
display:none;
}

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