/* 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 */
ul.tabs-nav {
	list-style:none;
	z-index:1;
	font-size:1.3em;
	font-weight:normal;
	border-bottom:1px solid #9e9fa3;
	float:left;
	width:100%;
	}
.tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
	}
	.tabs-nav li {display:block; float:left; padding:0; margin:0 5px -1px 0;}
		.tabs-nav li span{display:block; padding:3px 8px; border:1px solid #9fa0a4; border-bottom:1px solid #9e9fa3; background:#9e9fa3; color:#cfd2d4;}

	.tabs-nav li.tabs-selected {}
		.tabs-nav li.tabs-selected span{display:block; padding:3px 8px; border:1px solid #9e9fa3; border-bottom:1px solid #cfd2d4; background:#cfd2d4; color:#9e9fa3;}

	.tabs-nav a:link,
	.tabs-nav a:visited {
		display:block;
		padding:0 0 0 8px;
		text-decoration:none;
		font-size:0.85em;
		color:#333333;
		}
	.tabs-nav .tabs-selected a:link,
	.tabs-nav .tabs-selected a:visited {color:#9e9fa3; font-weight:bold;}
	

.tabs-nav .tabs-selected a, .tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active {outline: 0; /* @ Firefox, switch off dotted border */}
.tabs-nav .tabs-disabled a:hover, .tabs-nav .tabs-disabled a:focus, .tabs-nav .tabs-disabled a:active {}
.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-container {
	clear:both;
	position:relative;
    padding: 15px;
	z-index:2;
    background: #cfd2d4 url(../../../../../img/layout/tabContent2.fundo.gif) no-repeat left top; /* declare background color for container to avoid distorted fonts in IE while fading */
	}



/* hack para carregar o sifr no conteudo das tabs */
/*#sector1.tabs-hide,
#sector2.tabs-hide, 
#sector3.tabs-hide {display:block; position:absolute; left:-9999px;}
#sector1,
#sector2,
#sector3 {position:relative; left:0; clear:both; border:1px solid #ff0000;}*/


/* Uncomment this if you want a little spinner to be shown next to the tab title while an Ajax tab gets loaded
.tabs-loading span {
    padding: 0 0 0 20px;
    background: url(loading.gif) no-repeat 0 50%;
}*/