/* 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... */
@media projection, screen {
	.ui-tabs-hide {
		display: none!important;
	}
}

/* Hide useless elements in print layouts... */
@media print {
	.ui-tabs-nav {
		display: none!important;
	}
}

/* Skin */

/* the whole container with all elements of the tabbed section */
#container-4 {
	margin: 20px 0 16px 0!important;
	height: 260px!important;
}

/* the main content-section of the tabbed area NOT the tabs themselfes */
.ui-tabs-panel {																				/* ===== CVFS AMENDS ===== */
	width:570px!important;
	height: 200px!important;
	padding: 16px!important;
	border-top: 1px solid #ccc!important;
	border-left: 1px solid #ccc!important;
	border-right: 2px solid #999!important;
	border-bottom: 2px solid #999!important;
	/* declare background color for container to avoid distorted fonts in IE while fading */
	/* background: url(../images/backgrounds/bg_leadarticle.jpg) repeat-x #E6E3D3!important; */
	background: url(../images/backgrounds/bg_leadarticleCVFS.gif) repeat-x bottom left #FFF!important;
}

.ui-tabs-panel .title {																		/* ===== CVFS AMENDS ===== */
	/* for the headlines in the tabbed section */
	/* font: 1.8em Georgia, "Times New Roman", Times, serif!important; */
	font: 1.8em Arial, Helvetica, sans-serif!important;
	line-height: 110%!important;
	display: block!important;
	padding-bottom: 18px!important;
	/* color: #840000!important; */
	color: #09C000!important;
	text-transform: none!important;
	letter-spacing: normal!important;
}

/* the whole area of the tabs navigation above the tabbed-content */
.ui-tabs-nav {
	list-style:none!important;
	margin:0px!important;
	padding:0px!important;
}

/* clearing without presentational markup, IE gets extra treatment */
.ui-tabs-nav:after {
	display: block!important;
	clear: both!important;
	content: " "!important;
}

.ui-tabs-nav li {
	float: left!important;
	margin:0 1px 0 0!important;
	/* be nice to Opera */
	min-width: 85px!important;
}

.ui-tabs-nav .ui-tabs {
	display:block!important;
	padding:5px!important;
	/* background:#E6E3D3!important; */													/* ===== CVFS AMENDS ===== */
	background: #EEE!important;
	/* position: relative makes opacity fail for disabled tab in IE */
	margin:1px 0 0 0!important;
	position: relative!important;
	top:1px!important;
	z-index:2!important;
	font: 11px Arial, Helvetica, sans-serif;
	color: #444!important;
	font-weight:bold!important;
	line-height:1.2!important;
	text-align:center!important;
	text-decoration:none!important;
	border:1px solid #ccc!important;
	/* required in IE 6 */
	white-space:nowrap!important;
	/* prevent dotted border in Firefox */
	outline:0!important;
}

/* here´s to define the hover effect of the tabs */
.ui-tabs-nav .ui-tabs:hover {
	/* background:#333!important; */
	background: #F7F7F7!important;														/* ===== CVFS AMENDS ===== */
	/* color:#fff!important; */
}

/* the effects of the currently selected tab */
.ui-tabs-selected .ui-tabs,
.ui-tabs-selected .ui-tabs:hover {														/* ===== CVFS ADDED ===== */
	background-color:#fff!important;
	color:#333!important;
	border-bottom:1px solid #fff!important;
}

.ui-tabs-nav .ui-tabs-selected .ui-tabs,
.ui-tabs-nav .ui-tabs a:hover,
.ui-tabs-nav .ui-tabs a:active {
	background-position: 100% -150px!important;
}

.ui-tabs-nav .ui-tabs,
.ui-tabs-nav .ui-tabs-disabled .ui-tabs a:hover,
.ui-tabs-nav .ui-tabs-disabled .ui-tabs a:active {
	background-position: 100% -100px!important;
}

.ui-tabs-nav .ui-tabs-selected .ui-tabs a:link,
.ui-tabs-nav .ui-tabs-selected .ui-tabs a:visited,
.ui-tabs-nav .ui-tabs-disabled .ui-tabs a:link,
.ui-tabs-nav .ui-tabs-disabled .ui-tabs a:visited {
/* @ Opera, use pseudo classes otherwise it confuses cursor... */
	cursor: text!important;
}

.ui-tabs-nav .ui-tabs a:hover,
.ui-tabs-nav .ui-tabs a:active,
.ui-tabs-nav .ui-tabs-unselect .ui-tabs a:hover,
.ui-tabs-nav .ui-tabs-unselect .ui-tabs a:active {
/* @ Opera, we need to be explicit again here now... */
	cursor: pointer!important;
	background-color:#333!important;
	color:#fff!important;
}

.ui-tabs-disabled {
	opacity: .4!important;
	filter: alpha(opacity=40)!important;
}

/* Additional IE specific bug fixes... */
/* auto clear, @ IE 6 & IE 7 Quirks Mode */
* html .ui-tabs-nav {
	display: inline-block!important;
}

/* @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete 
	rule (because of the unknown + combinator)... */
*:first-child+html .ui-tabs-nav {
	display: inline-block!important;
}
