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

.shadetabs{
	text-align: left; /* set to left, right or center */
	margin: 0 0 0 0; /* set margins as desired */
	font-weight: bold;
	width:700px;
	font-size: 12px;
	font-family:Verdana, Geneva, sans-serif; /* set font as desired */
	border-bottom: 1px solid #316e92; /* set border COLOR as desired */
	list-style-type: none;
	padding: 6px 10px 6px 10px; /* THIRD number must change with respect to padding-top (X) below */
}

.shadetabs li{
display: inline;
}

.shadetabs li a{
-webkit-border-top-left-radius: 8px;
-webkit-border-top-right-radius: 8px;
-moz-border-radius-topleft: 8px;
-moz-border-radius-topright: 8px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
padding: 6px 7px; /* set padding (tab size) as desired; FIRST number must change with respect to padding-top (X) above */
border: 0px solid #288de0; /* set border COLOR as desired; usually matches border color specified in #tabnav */
background-color: #9ed3f2; /* set unselected tab background color as desired */
color: #316e92; /* set unselected tab link color as desired */
margin-right: 0px; /* set additional spacing between tabs as desired */
text-decoration: none;
border-bottom: none;
}

.shadetabs li a:visited{
color: #316e92;
}

.shadetabs li a:hover{
text-decoration: none;
color: #316e92;
}

.shadetabs li a.selected{ /*selected main tab style */
-webkit-border-top-left-radius: 8px;
-webkit-border-top-right-radius: 8px;
-moz-border-radius-topleft: 8px;
-moz-border-radius-topright: 8px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
padding: 6px 7px; /* set padding (tab size) as desired; FIRST number must change with respect to padding-top (X) above */
border: 0px solid #288de0; /* set border COLOR as desired; usually matches border color specified in #tabnav */
background-color: #9ed3f2; /* set unselected tab background color as desired */
color: #316e92; /* set unselected tab link color as desired */
margin-right: 0px; /* set additional spacing between tabs as desired */
text-decoration: none;
border-bottom: none;
}

.shadetabs li a.selected{ /*selected main tab style */
background-color: #FFF; /* set selected tab background color as desired */
background-image:none;
color:#000;
border-left: 1px solid #316e92;
border-top: 1px solid #316e92;
border-right: 1px solid #316e92;
text-shadow:none;
position: relative;
top: 1px;
padding-top: 6px; /* must change with respect to padding (X) above and below */
}

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

