/* ######### CSS for Shade Tabs. ######### */

.shadetabs{
padding: 3px 0;
margin-left: 45px;
margin-top: 1px;
margin-bottom: 0;
/*font: bold 14px Arial;*/
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{
text-align: center;
	width: 180px;
	background-color:#85B2C9;
	
	background-image: -webkit-gradient(linear, left top, left bottom, from(#0078AC), to(#005377));
	background: -webkit-linear-gradient(top, #0078AC, #005377);
	background: -moz-linear-gradient(top, #0078AC, #005377);
	background: -o-linear-gradient(top, #0078AC, #005377);
	background: -ms-linear-gradient(top, #0078AC, #005377);
	background: linear-gradient(top, #0078AC, #005377);
	
	
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	text-shadow: black 0.1em 0.1em 0.2em;
	font-size: 18px;
position: relative;
z-index: 1;
padding-bottom: 3px;
padding-left:  20px;
padding-right:  20px;
padding-top: 10px;
margin-right: 3px;
/*border: #CCCCCC solid 1px;*/
-moz-border-top-right-radius-: 8px;
-moz-border-top-left-radius: 8px;
    border-top-right-radius: 8px;
	border-top-left-radius: 8px;
	
	-moz-box-shadow: -5px -5px 5px #888;
    -webkit-box-shadow: -5px -5px 5px #888;
    box-shadow: -5px -5px 5px #888;
}

.shadetabs li a:visited{
text-decoration: none;
}

.shadetabs li a:hover{
text-decoration: none;
background-color:#85B2C9;
	
	background-image: -webkit-gradient(linear, left top, left bottom, from(#85B2C9), to(#0078AC));
	background: -webkit-linear-gradient(top, #85B2C9, #0078AC);
	background: -moz-linear-gradient(top, #85B2C9, #0078AC);
	background: -o-linear-gradient(top, #85B2C9, #0078AC);
	background: -ms-linear-gradient(top, #85B2C9, #0078AC);
	background: linear-gradient(top, #85B2C9, #0078AC);
}

.shadetabs li a.selected{ /*selected main tab style */
position: relative;
text-decoration: none;
top: 1px;
background-color:#0078AC;
	
	background-image: -webkit-gradient(linear, left top, left bottom, from(#0095D5), to(#0078AC));
	background: -webkit-linear-gradient(top, #0095D5, #0078AC);
	background: -moz-linear-gradient(top, #0095D5, #0078AC);
	background: -o-linear-gradient(top, #0095D5, #0078AC);
	background: -ms-linear-gradient(top, #0095D5, #0078AC);
	background: linear-gradient(top, #0095D5, #0078AC);
}

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

.tabcontent{
/*display:none;*/
}

.tabframe{
	border-top: #0078AC solid 4px;
	border-left:#CCCCCC solid 1px;
	border-right:#CCCCCC solid 1px; 
	border-bottom:#CCCCCC solid 1px; 
	margin-bottom: 1em; 
	margin-left: 30px;
	padding: 10px;
	
	-moz-box-shadow: -5px -5px 5px #888;
    -webkit-box-shadow: -5px -5px 5px #888;
    box-shadow: -5px -5px 5px #888;
	
	-moz-border-radius-: 8px;
	border-radius: 8px;
}

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