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

.shadetabs{
padding: 3px 0;
margin-left: 0;
margin-top: 1px;
margin-bottom: 0;
font: bold 10px Verdana;
list-style-type: none;
text-align: left; /*set to left, center, or right to align the menu as desired*/
border-bottom: 5px solid #FF9900; /*Orange color theme*/

}

.shadetabs li{
display: inline;
margin: 0;
}

.shadetabs li a{
	text-decoration: none;
	position: relative;
	z-index: 1;
	padding: 3px 7px;
	margin-right: 0px;
	border: 1px solid #76ABE4;
	color: White;
	background-color: #76ABE4;
	background-image: url(../images/tabblue.png);
	background-repeat: repeat-x;
}

.shadetabs li a:visited{
	color: White;
}

.shadetabs li a:hover{
	text-decoration: underline;
	color: White;
}

.shadetabs li a.selected{ /*selected main tab style */
position: relative;
top: 1px;
background-color: #FF9900; /*Brown color theme*/
color: #660000;
border-color: #FF9900; /*Brown color theme*/
background-image: url(../images/taborange.png);

}

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

.tabcontent{
display:none;
}

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

.tabcontentstyle{ /*style of tab content oontainer*/
border: 1px solid #FF9900;
/*width: 450px;*/
margin-bottom: 1em;
padding: 10px;
min-height: 300px;

}


