/* Caution! Ensure accessibility in print and other media types... */
@media projection, screen { /* 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 */
.tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0 0 0 4px;
}
.tabs-nav li {
	float: left;
	width: 30%;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 5px;
}
.tabs-nav a, .tabs-nav a span {
	display: block;
}
.tabs-nav a {
	top: 1px;
	z-index: 2;
	padding-left: 0;
	color: #27537a;
	font-size: 12px;
	font-weight: bold;
	line-height: 1.2;
	text-decoration: none;
	background-color: #EBF4FA;
	border: 1px solid #97A5B0;
	margin-bottom: -1px;
	background-image: url(../Images/tabGradient.gif);
	background-repeat: repeat-x;
	background-position: bottom;
}
.tabs-nav .tabs-selected a {
	color: #000;
	background-color: #FFFFFF;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
	background-image: none;
}
.tabs-nav a span {
	display: block;
	padding-top: 2px;
	padding-right: 1em;
	padding-bottom: 2px;
	padding-left: 1em;
}
.tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active { /* @ Opera, we need to be explicit again here now... */
	cursor: pointer;
	background-image: none;
	color: #000000;
}
.tabs-nav .tabs-disabled {
    opacity: .4;
}
.tabs-container {
	background: #fff; 
	border: 1px solid #97a5b0;
	padding: 1em;
}
*html .tabs-container {
	height: 1%;
	margin-top: -1px;
}
.tabs-loading em {
    padding: 0 0 0 20px;
    background: url(../Images/loadingAnimation.gif) no-repeat 0 50%;
}
.tabs-container h3 { /* Hides second H3, wich will get displayed wjen printing */
	display: none;
}
.tabs-container dl{
	margin: 0px;
	padding: 0px;
}
.tabs-container dt{
	font-weight: bold;
}
.tabs-container dd{
	margin: 0px;
	padding: 0px 0px 15px;
}
.clear {
	display: block;
	clear: both;
}

