/*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*/
#container-1 UL.tabs-nav
{
	list-style: none;
	margin: 0;
	padding: 0 0 0 4px;
}
.tabs-nav:after
{
/*clearing without presentational markup, IE gets extra treatment*/
	display: block;
	clear: both;
	content: " ";
}
#container-1 UL.tabs-nav LI
{
	list-style: none;
	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 10px;
	background: url(../layout_images/jtab/tab.png) no-repeat;
}
.tabs-nav A
{
	position: relative;
	top: 1px;
	z-index: 2;
	padding-left: 0;
	color: #27537A;
	font-size: 12px;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
/*required in IE 6*/
}
.tabs-nav .tabs-selected A
{
	color: #000;
}
.tabs-nav .tabs-selected A, .tabs-nav A:hover, .tabs-nav A:focus, .tabs-nav A:active
{
	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: 18px;
/*IE 6 treats height as min-height*/
	min-height: 18px;
	padding-top: 6px;
	padding-right: 0;
}
*>.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-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
{
	border-top: 1px solid #97A5B0;
	/*[disabled]padding:1em 8px;*/
	background: #FFF;
/*declare background color for container to avoid distorted fonts in IE while fading*/
}
.tabs-loading EM
{
	padding: 0 0 0 20px;
	background: url(loading.html) no-repeat 0 50%;
}
