/* 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 10px;
	background: url(../../../../../img/components/jquery.tabs/tabs-nav.fundo.gif) no-repeat left bottom;
	float:none;
	width:428px;
	z-index:2;
	}
.tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
	}
	.tabs-nav li {
		display:block;
		float: left;
		margin:0 4px 0 0;
		padding:0 0 0 5px;
		background: #cc061b;
		border-top:1px solid #ec2338;
		border-right:1px solid #ec2338;
		border-left:1px solid #ec2338;
		}
		.tabs-nav li span{
			display:block;
			padding:8px 15px 5px 8px;
			}
	.tabs-nav li.tabs-selected {
		float: left;
		margin:0 2px -1px 0;
		padding:0 0 0 15px;
		background: #e71128;
		border-bottom:1px solid #cc061b;
		border-top:1px solid #ec2338;
		border-right:1px solid #ec2338;
		border-left:1px solid #ec2338;
		}
		.tabs-nav li.tabs-selected span{
			display:block;
			padding:8px 15px 5px 0;
			}

	.tabs-nav a:link,
	.tabs-nav a:visited {text-decoration:none; color:#fff;}
	.tabs-nav .tabs-selected a:link,
	.tabs-nav .tabs-selected a:visited {color:#ffffff; 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 {
	position:relative;
	z-index:1;
	margin:-1px 0 0 0;
	width:200px;
	clear:both;
    padding: 0;
    background: #cc061b; /* declare background color for container to avoid distorted fonts in IE while fading */	
	}
	.tabs-container div.wraper{
		border-top:1px solid #ec2338;
		border-left:1px solid #ec2338;
		/*background: url(../../../../../img/components/jquery.tabs/tabs-container.sector.fundo.gif) no-repeat left bottom;*/
		padding:0 25px 20px 25px;
		width:560px;
		}


/* 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%;
}*/