/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
.shadetabs{
	width: 100%;
	z-index: 10;
	position: absolute;
	left: -1px;
	top: -32px;
}

.shadetabs ul{
	list-style-type: none;
	margin:0 0 0 0px; /*Left offset of entire tab menu relative to page*/
	padding:0;
}

.shadetabs li{
display:inline;
margin:0;
padding:0;
}

.shadetabs a{
	float:left;
	background:url(../graphics/glowtab-left.gif) no-repeat left top;
	margin:0 3px 0 0; /*spacing between each tab*/
	padding:0 0 0 9px;
	text-decoration:none;
}

.shadetabs a span{
	float:left;
	display:block;
	background:url(../graphics/glowtab.gif) no-repeat right top;
	padding: 7px 12px 7px 3px;
	font-weight:bold;
	color:#FFFFFF;
}

/* Commented Backslash Hack hides rule from IE5-Mac \*/
.shadetabs a span {float:none;}
/* End IE5-Mac hack */

.shadetabs a:hover span {
color: black;
}

.shadetabs .selected { /*Selected Tab style*/
background-position:0 -82px; /*Shift background image up to start of 2nd tab image*/
}

.shadetabs .selected span{ /*Selected Tab style*/
background-position:100% -82px; /*Shift background image up to start of 2nd tab image*/
color: black;
}

.shadetabs a:hover{ /*onMouseover style*/
background-position:0% -82px; /*Shift background image up to start of 2nd tab image*/
}

.shadetabs a:hover span{ /*onMouseover style*/
background-position:100% -82px; /*Shift background image up to start of 2nd tab image*/
}

.tabcontent{
display:none;
}

@media print {
.tabcontent {
display:block !important;
}
