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

.shadetabs { margin-top:20px; margin-bottom:5px;}

.shadetabs ul {margin:0; padding:0; list-style:none; }

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

.shadetabs a{
	width:120px;
	text-align:center;
	text-decoration: none;
	padding: 5px 10px;
	margin-right: 2px;
	color: #fff;
	border:1px solid #8b842a;
	border-bottom:0px;
	background:#8b842a;
	-moz-border-radius:5px 5px 0px 0px; /* Firefox */
	-webkit-border-radius:5px 5px 0px 0px; /* Safari and Chrome */
	border-radius:5px 5px 0px 0px; /* Opera 10.5+, future browsers, and now also Internet Explorer 6+ using IE-CSS3 */	
}

.shadetabs a:hover{
	 background:#f9f8f1;
	 color:#594432;
	 text-decoration:none;
}

.shadetabs a.selected{ /*selected main tab style */
	background:#f9f8f1;
	color:#594432;
	text-decoration:none;
}

.tabcontent{
	display:none; 
	padding: 10px;
	border-top:1px solid #8b842a;
	line-height:20px;
	color:#594432;
}

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

