/* 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;
	padding:0;
	margin:0; 
}
.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: 24px; /* be nice to Opera */
}
.tabs-nav li.disab {
	display:none;
}

.tabs-nav li a { 
	display:inline-block;
	min-width:29px;
	height:27px;
	margin:1px;	
	
	text-decoration:none;
	background:url(../images/nav/tab-inactive-bg.gif) top left no-repeat;
}
.tabs-nav a span {
	display:inline-block;
	padding:0px 6px 0px 8px;
	font-size:13px;
	font-weight:bold;
	line-height:26px;
	color:#000;
}
.tabs-nav a span em {
	display:none;
	font-style:normal;
}

.tabs-nav .tabs-selected a {
	margin-bottom:0;
	cursor:default;
	background:none;
}
.tabs-nav .tabs-selected a span {
	padding:0px 0 0 10px;
	font-size:12px;
	font-weight:bold;
	color:#0098e4;
	background:url(../images/nav/tab-active-left.gif) top left no-repeat;
}
.tabs-nav .tabs-selected a em {
	display:inline-block;
	padding:0 10px 0 0;
	background:url(../images/nav/tab-active-right.gif) top right no-repeat;
}

.tabs-nav .tabs-selected #stap1tab {
	
}


.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 {
    color:#000;
	padding:10px 3px 20px 10px;
    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.gif) no-repeat 0 50%;
}

