/*Caution! Ensure accessibility in print and other media types...
Use class for showing/hiding tab content, so that visibility can be better controlled in different media types...*/
.tabs-hide
{
	display: none;
}
/*Hide useless elements in print layouts...*/
@media print
{
	.tabs-nav
	{
		display: none;
	}
}
/*Skin*/
UL.tabs-nav
{
	list-style: none;
	margin: 0 0 -1px 8px;
	padding: 0 0 0 4px;
	z-index: 40;
}
.tabs-nav:after
{
/*clearing without presentational markup, IE gets extra treatment*/
	display: block;
	clear: both;
	content: " ";
}
.tabs-nav LI
{
	float: left;
	margin: 0 0 0 1px;
	min-width: 84px;
/*be nice to Opera*/
}
.tabs-nav A, .tabs-nav A SPAN
{
	display: block;
	padding: 0 15px 0px 13px;
	background: url(../images/tab.jpg) no-repeat;
	background: none;
	/*[empty]margin-right:;*/
}
.tabs-nav A
{
	position: relative;
	top: 1px;
	z-index: 2;
	padding-left: 0;
	color: #3A7FBE;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
/*required in IE 6*/
	margin-right: 4px;
}
.tabs-nav .tabs-selected A
{
	/*[disabled]color:#000;*/
	color: #3A7FBE;
	margin-bottom: -1px;
}
.tabs-nav .tabs-selected A, .tabs-nav A:hover, .tabs-nav A:focus, .tabs-nav A:active
{
	background: url(../images/tab.jpg) no-repeat;
	background-position: 100% -150px;
	outline: 0;
/*prevent dotted border in Firefox*/
}
.tabs-nav A, .tabs-nav .tabs-disabled A:hover, .tabs-nav .tabs-disabled A:focus, .tabs-nav .tabs-disabled A:active
{
	background-position: 100% -100px;
}
.tabs-nav A SPAN
{
	width: 64px;
/*IE 6 treats width as min-width*/
	min-width: 64px;
	height: 23px;
/*IE 6 treats height as min-height*/
	min-height: 18px;
	padding-top: 6px;
	padding-right: 0;
	padding-bottom: 9px;
}
*>.tabs-nav A SPAN
{
/*hide from IE 6*/
	width: auto;
	height: auto;
}
.tabs-nav .tabs-selected A SPAN
{
	padding-top: 7px;
}
.tabs-nav .tabs-selected A SPAN, .tabs-nav A:hover SPAN, .tabs-nav A:focus SPAN, .tabs-nav A:active SPAN
{
	background: url(../images/tab.jpg) no-repeat;
	background-position: 0 -50px;
}
.tabs-nav A SPAN, .tabs-nav .tabs-disabled A:hover SPAN, .tabs-nav .tabs-disabled A:focus SPAN, .tabs-nav .tabs-disabled A:active SPAN
{
	background-position: 0 0;
}
.tabs-nav .tabs-selected A:link, .tabs-nav .tabs-selected A:visited, .tabs-nav .tabs-disabled A:link, .tabs-nav .tabs-disabled A:visited
{
/*@ Opera, use pseudo classes otherwise it confuses cursor...*/
	cursor: text;
}
.tabs-nav A:hover, .tabs-nav A:focus, .tabs-nav A:active
{
/*@ Opera, we need to be explicit again here now...*/
	cursor: pointer;
}
.tabs-nav .tabs-disabled
{
	opacity: .4;
}
.tabs-container
{
	/*[disabled]border-top:1px solid #97A5B0;*/
	padding: 0;
	background: url(../images/tab-content-middle.jpg) repeat-y 0px 0px;
	width: 498px;
/*declare background color for container to avoid distorted fonts in IE while fading*/
}
.tabs-loading EM
{
	padding: 0 0 0 20px;
	background: url(../images/loading.gif) no-repeat 0 50%;
}
#tabs DIV.top
{
	width: 498px;
	height: 13px;
	background: url(../images/tab-content-top.jpg) no-repeat 0px 0px;
	margin-top: -1px;
}
#tabs DIV.bottom
{
	width: 498px;
	height: 34px;
	background: url(../images/tab-content-bottom.jpg) no-repeat 0px 0px;
}
#tabs DIV.middle
{
	padding-left: 27px;
	padding-right: 27px;
	padding-top: 20px;
	/*[empty]padding-bottom:;*/
}

