body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	color: #333; 
}
h3, h4, h5 {
	margin-top:0;
	margin-bottom:10px;
	padding: 8px 20px;
    font-weight: bold;
}
a {
	text-decoration: none;
	color: #008BD1; 
}
a:hover {
	text-decoration: underline; 
}
a.tooltip {
	color: #c53fda; 
}
li {
	margin-right: 15px; 
}
img {
	image-rendering: -webkit-optimize-contrast;
}

/*Caixa*/
[class*="caixa"] {
	height: auto;
	padding: 2%;
    margin: 5px 0 10px 0;
	position: relative;
	border-left: 3px solid #934f9e;
	background: #ECECEC;
	word-spacing: normal; 
}

/*Caixa conversa*/
.caixa-conversa {
	border: 1px solid #ececec;
    box-shadow: 1px 1px 4px #AFAFAF;
    padding: 7px;
    border-radius: 4px;
    background: #ffffff;
}

/*Caixa anime*/
.caixa-anime {
    border: none;
    border-right: 1px solid #954f9b;
    border-bottom: 1px solid #954f9b;
    background: #F3F3F3;
    border-radius: 3px;
    box-shadow: 1px 1px 3px #999; 
}

/*Caixa tracejada*/
.caixa-tracejada {
    border: 2px dashed #934f9e;
    background: #FFFFFF;
}

/*Caixa de texto com imagem*/
.caixa-texto-imagem {
	height: auto;
	padding: 2%;
	margin: 5px 0;
	position: relative;
	background: #FFFFFF;
	word-spacing: -4px;
	border: 1px solid #eee;
}
.caixa-texto-imagem p{
	word-spacing: normal;
}
.exe {
	margin-top: -5px;
}
.exe > img {
	width: 100%; 
}

/*Caixa colorida*/
.caixa-colorida {
	border: none;
	color: #fff;
	background: #b175b1;
}

/*Caixa icone*/
.caixa-icone {
    border: solid 2px #934f9e;
    background: #FFF;
    padding: 10px 10px 10px 55px;
}
.caixa-icone > span {
	position: absolute;
	left: 0;
	top: 0;
    color: #934f9e;
}
.caixa-icone > span:before {
	font-size: 3.3em;
}

/*Botao*/
.botao {
	color: #fff;
	border-radius: none;
	font-size: 0.8em;
	letter-spacing: 0.05em;
	word-spacing: 0.01em;
	background-color: #934f9e;
    padding: 10px 10px 10px 5px;
    cursor: pointer;
    position: relative;
    top: 15px;
}
.botao:hover { 
	background-color: #6e3877; 
	text-decoration: none;
}
.botao span {
	display: inline-block; 
	vertical-align: middle;
    margin-top: -5px;
}
.botao span:before {
	font-size: 1.8em;
}

/*Botao animado*/
.botao-animado {
    overflow: hidden;
    background-color: #934f9e;
    word-spacing: normal;
    border-radius: 4px;
    box-shadow: 1px 1px 5px #a0a0a0;
    color: #FFF;
    position: relative;
    -webkit-transition: border-color 0.3s, background-color 0.3s;
    transition: border-color 0.3s, background-color 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    cursor: pointer;
    margin-bottom: 5px;
}
.botao-animado > span {
	display: block;
	text-align: center;
	font-size: 0.8em;
}
.botao-animado:hover {
    background-color: #6e3877;
}
.botao-animado:hover > span {
	opacity: 0;
	-webkit-transform: translate3d(0, -25%, 0);
	transform: translate3d(0, -25%, 0);
}
.botao-animado::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center !important;
    opacity: 0;
    color: #3f51b5;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
}
.botao-animado::after,
.botao-animado > span {
	padding: 10px 0 10px 3px;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.botao-animado.inverted {
	color: #9598A6;
}
.botao-animado.inverted:hover {
	border-color: #21333C;
	background-color: #21333C;
}
.botao-animado:hover::after {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	color: #fff;
	font-size: 0.8em;
}

/*Botao animado 2*/
.botao-animado2-container {
	background-color: #ffffff;
	border-radius: 50%;
	cursor: pointer;
}
.botao-animado2-container:hover {
	background-color: #ffffff;
	border: solid 3px #CCC;
}
.botao-animado2 {
	display: block;
	border-radius: 50%;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;

}
.botao-animado2:hover {
	-webkit-transform: scale(0.9,0.9);
	-moz-transform: scale(0.7,0.7);
	-o-transform: scale(0.7,0.7);
	-ms-transform: scale(0.7,0.7);
	transform: scale(0.9,0.9);
}

/*Painel de texto animado*/
.caixa-titulo {
	text-align: center;
	background-color: #934f9e;
	border-left: none;
	border-radius: 2px;
	padding: 2px;
    margin-bottom: 5px;
}
.caixa-titulo p {
	text-align: center !important; 
	color: #fff; 
}
.caixa-box {
	border: 1px dashed #979797;
	padding: 2px;
    margin: -3px 0 0 0;
    border: 1px dashed #979797;
    padding: 5px;
    margin-bottom: 7px;
}

/*Zoom*/
.zoom_container {
	position:relative;
	cursor:pointer;
}
.zoom_container > .icon-zoom-in {
	position: absolute;
	color: #9B9B9B;
	z-index: 3;
	top: 46%;
	left: 43%;
	font-size: 23px;
	opacity: 0.6;
	display:none;
}
.modal-fade {
	display: none;
	z-index: 1;
	background-color: black;
	opacity: 0.6;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}
img.zoomable {
	cursor: pointer;
}
img.zoomable.zoomed {
	z-index: 2;
}

/*Tabs e accordion*/
.ui-tabs {
position: relative;
padding: .2em;
display: inline-block;
}

.horizontal_tabs > ul.tabs_menu {
	list-style: none;
	text-align: center;
	padding: 0;
	margin: 0;
}
.ui-tabs-horizontal {
	display: block;
	margin-bottom: 10px;
}
.ui-tabs-horizontal ul.ui-tabs-nav {
	text-align: center;
}
.vertical_tabs > ul.tabs_menu {
	list-style: none;
	margin: 0;
	padding: 0;
	float: left;
	width: 20%;
}
.ui-tabs-vertical .ui-tabs-nav {
	float: left;
	width: 20%;
	padding: 0 !important;
}
.horizontal_tabs > ul.tabs_cont {
	list-style: none;
	text-align: justify;
	padding: 5px 15px 15px 15px;
	border-style: solid;
	border-width: 1px 0 0 0;
	border-color: black;
	margin: 0;
}
.ui-tabs-horizontal .ui-tabs-panel {
	border-style: solid;
	border-width: 1px !important;
	border-color: #DBDBDB;
	border-top-color: #969696;
}
.vertical_tabs > ul.tabs_cont {
	list-style: none;
	margin: 0;
	padding: 0;
	float: right;
	width: 80%;
	clear: none;
}
.horizontal_tabs > ul.tabs_menu > li {
	display: inline-block;
	height: 25px;
	line-height: 25px;
	margin: 10px 0 5px 10px;
	padding: 5px 10px;
	cursor: pointer;
}
.ui-tabs-horizontal ul.ui-tabs-nav > li {
	display: inline-block;
	float: none;
}
.vertical_tabs > ul.tabs_menu > li {
	margin-bottom: 10px;
	width: 70%;
}
.ui-tabs-vertical .ui-tabs-nav > li {
	width: 70%;
	margin-bottom: 4px !important;
}
.ui-tabs-vertical .ui-tabs-nav > li > a {
	width: 100%;
}
.horizontal_tabs > ul.tabs_cont > li,
.vertical_tabs > ul.tabs_cont > li {
	display: none;
	padding: 10px;
}
.ui-tabs-vertical .ui-tabs-panel {
	float: right;
	padding: 3% !important;
	width: 72%;
}

/*Table*/
table.tableAnime {
	width: 100%;
}
table.tableAnime tr th {
    background: #934f9e;
    color: #fff;
    font-weight: normal;
    padding: 5px;
}
table.tableAnime tr td {
	padding: 5px;
    background: #ececec;
}

/*Animation obj/txt Select*/
.objSelect {
	cursor: pointer;
}
.txtSelect {
	word-spacing: normal;
}

/*Efeito new*/
.efeito-new {
	list-style: none;
	position: relative;
	margin: 5% auto;
}
.efeito-new li {
	width: 20%;
	float: left;
	margin: 3px;
	background: #fff;
	padding: 1%;
	position: relative;

}
.efeito-new li a,
.efeito-new li a img {
	width: 100%;
	display: block;
	position: relative;
}
.efeito-new li a {
	overflow: hidden;
}
.efeito-new li a div {
	position: absolute;
	background: #000;
	background: rgba(75, 75, 75, 0.85);
	width: 100%;
	height: 100%;
	border-radius: 10px;
    word-spacing: normal;
}
.efeito-new li a div span {
    text-align: center;
    display: block;
    padding: 5px;
    margin: 15% 0 0 0;
    height: 100%;
    font-weight: normal;
    color: rgba(255,255,255,0.9);
}

/*Caixa conteúdo*/
.animconteudo {
	word-spacing: -4px !important;
	background: #934f9e;
	color: #fff;
	padding: 20px;
	margin-top: 11px;
	border-radius: 4px;
	position: relative;
	z-index: 1;
	transition: all .2s ease-in-out;
}
.animconteudo:hover {
	box-shadow: 0px 0px 21px 0.00px rgba(0,0,0,0.13);
	transform: scale(1.05); 
	z-index: 2;
}
.animconteudo img {
	border-radius: 60%;
	margin: 0;
}

/*Caixa tracejada com botões*/
.boxDashed {
	border: 1px dashed #908f8f;
	padding: 5px 0;
}
.boxDashed p{
	word-spacing: normal;
}
.boxDashed .objSelect {
    cursor: pointer;
    margin: 0 0 5px 5px;
}

/*Caixas Conjuntos*/
.conjuntos {
	width: 100%;
	height: 200px;
	position: relative;
}
.conjuntos span {
	position: absolute;
}
.conjuntos span#obj1 {
    top: 0;
    left: 40%;	
}
.conjuntos span#obj2 {
    top: 35%;
    left: 31%;	
}
.conjuntos span#obj3 {
    top: 35%;
    left: 49%;	
}
.conjuntos span img {
	width: 120px;
}

/*Specific Points*/
.specificPoints {
	position: relative;
}
.specificPoints span {
	position: absolute;
}
.specificPoints span#obj1 {
	top: 10%;
    left: 40%;
    background: #95f508;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    cursor: pointer;
}
.specificPoints span#obj2 {
	top: 20%;
    left: 50%;
    background: #95f508;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    cursor: pointer;
}
.specificPoints span#obj3 {
	top: 25%;
    left: 58%;
    background: #95f508;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    cursor: pointer;
}
.specificPoints span#obj4 {
	top: 10%;
    left: 70%;
    background: #95f508;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    cursor: pointer;
}

/*Caixa de diálogo*/
.dialog {
	position: relative;
}
.dialog > ul.dialog_cont {
	list-style: none;
	padding: 10px;
	margin: 0;
}
.dialog > ul.dialog_cont > li{
	display: none;
	margin: 0;
}
.dialog_cont > li .caixa-anime p {
	word-spacing: normal;
}


.setas-dialog {
	position: absolute;
	width: 100%;
	top: 50%;
	margin-top: -20px;
}
.setas-dialog a {
	border: 1px solid #8A8A8A;
	box-shadow: 1px 1px 2px #313131;
	width: 40px;
	height: 40px;
}
.setas-dialog a.prev {
	left: -20px;
	line-height: 30px;
	text-align: center;
}
.setas-dialog a.next {
	right: -20px;
	line-height: 30px;
	text-align: center;
}
.setas-dialog a:hover {
	opacity: 1;
	text-decoration: none;
}
.setas-dialog a.disabled {
	cursor: default;
	opacity: 0.1;
}
.setas-dialog a.next > img {
	width: 10px;
}
.setas-dialog a.prev > img {
	width: 10px;
}
.contador {
	top: 100% !important;
	text-align: center;
	margin-top: -4px;
}

.contador a {
	padding: 5px 8px 5px 8px;
	border-radius: 3px;
}

.dialog > ul.dialog_cont >li > img{
	width: 100%;
}

.dialog > ul.dialog_cont >li.current{
	display: list-item;
}

/*Slider*/
.slider_container {
	overflow: hidden;
}
.slider_conteudo, .slider_menu {
	padding: 0;
	margin: 0;
	word-spacing: -1px;
}
.slider_conteudo > li, .slider_menu > li {
	display: inline-block;
	list-style: none;
	padding: 0;
	margin: 0;	
}
.slider_conteudo > li {
	vertical-align: top;
}
.slider_menu {
	text-align: center;
}
.slider_menu > li {
	margin: 0 3px;
	width: 23px;
	height: 23px;
	border-radius: 50%;
	cursor: pointer;
	-webkit-transition:all 1s;
	transition:all 1s;
}
.slider_menu > li > p {
	text-align: center;
}

/*Lista animada*/
.cor { 
	padding: 0; margin: 0;
    word-spacing: normal;
}
.cor * {
	margin: 0 !important;
}
.cor > li { 
	padding: 1% 3% 1% 3%; 
	margin: 1px 0 0 0; 
	list-style: none; 
}
.cor > li > p { 
	color: #000; 
}
.cor1 { 
	background: rgba(147, 79, 158, 0.3); 
}
.cor2 { 
	background: #ECECEC;
}

/*Árvore de decisão*/
.flow-vermelho {
	background: #FFA1A1;
}
.flow-azul {
	background: #A1C0FF;  
}
.flow-amarelo {
	background: #FDFFA1;
}
.flow-verde {
	background: #A1FFC2;
}

/*Scenes*/
.scenes {
	position: relative;
	border:5px solid #000;
	border-radius: 5px;
	overflow: hidden;
	background:#000;
}
.scenes > .scene {
	display: inline-block;
	position: absolute;
	width: 100%;
	left: 100%;
	top:0;
}
.scene > img {
	width: 100%;
	position: absolute;
}
.nav-scene {
	position: absolute;
	bottom: 5px;
	right: 5px;
	z-index: 2;
}
.btn-scene {
	width: 40px;
	display: inline-block;
	cursor: pointer;
}
.btn-scene > img {
	width: 100%;
}
.btn-prev-scene {
	opacity: 0.3;
}

/*Marcação de imagem*/
.img-mark select {
	width: 100%;
    background: #fdefff;
    border: solid 1px #c3a4c7;
    height: 30px;
    margin-top: 10px;
    font-size: 0.9em;
    font-weight: bold;
}
.img-mark .img-container > img {
	position: absolute;
	left: 0;
}
.img-mark .img-container {
	position: relative;
	padding-right: 0;
	margin: 12px 0 2px 0;
	height: 285px !important;
}
.img-mark .box-animation {
	margin-top: 10px;
    padding: 5px 10px;
    background: #fdefff;
    margin-right: 0 !important;
    border-radius: 4px;
    color: #696666;
    border: solid 1px #c3a4c7;
    max-height: 400px;
    overflow: auto;
}

/*Timeline*/
#timeline a {
	color: #888;
	text-decoration: none;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}
#timeline a:hover,
#timeline a.selected {
	color: #004677;
	font-weight:bold;
}
#timeline h1,
#timeline h2,
#timeline h4,
#timeline h5,
#timeline h6 {
	text-align: center;
	color: #ccc;
	margin-bottom: 10px;
}
#timeline h1 {
	font-size: 16px;
	font-weight:bold;
}
#timeline h2 {
	font-size: 12px;
}
#timeline h3 {
	font-size: 15px;
    padding: 18px 0 0px 0;
    text-align: center;
}
#timeline {
	width: 100%;
    overflow: hidden;
    position: relative;
    border: 1px solid #ddd;
	background:url(../../und1/media/imagens/pontilhado.png) left 45px repeat-x;
}
#dates li {
	list-style: none;
	width: 100px;
	margin-right: 0;
    float: left;
   	height: 33px;
   	text-align: center;
    background: url(../../und1/media/imagens/ponto.png) center bottom no-repeat;
}
#dates a {
	font-size: 20px;
	line-height: 30px;
	padding-bottom: 10px;
}
#dates a:hover {
	text-decoration: none !important;
}
#dates .selected {
	font-size: 25px;
	margin-left:-20px;					
}
#issues {
	overflow: hidden;
	float: left;
	margin: 3px;
	margin-top: 0;
	padding: 4px 32px 4px;
}	
#issues li {
	height: 350px;
	list-style: none;
	float: left;
	opacity:0 !important;
	margin-right: 0px !important;
}			
#issues li.selected {
	opacity:1 !important ;
	width: 18.2% !important;
	float: left;
}									
				
#issues li img {
	float: left;
	width: 34%;
	height: 36%;
	margin: 32px 7px 0px 0px;  
}
#issues li h1 {
	color: #004677;
	font-size: 33px;
	margin: 30px 0 20px;
}
#issues li p {
	font-size: 14px;
	text-align: justify;
	width: 96%;
	font-weight: normal;
	line-height: 22px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: rgb(10, 10, 10);
}
#issues li.selected img {
	-webkit-transform: scale(1.1,1.1);
	-moz-transform: scale(1.1,1.1);
	-o-transform: scale(1.1,1.1);
	-ms-transform: scale(1.1,1.1);
	transform: scale(1.1,1.1);
}
#issues li img {
	float: left;
	margin: 4px 18px 0 0;
	background: transparent;
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)";
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
	zoom: 1;
	-webkit-transition: all 2s ease-in-out;
	-moz-transition: all 2s ease-in-out;
	-o-transition: all 2s ease-in-out;
	-ms-transition: all 2s ease-in-out;
	transition: all 2s ease-in-out;
	-webkit-transform: scale(0.7,0.7);
	-moz-transform: scale(0.7,0.7);
	-o-transform: scale(0.7,0.7);
	-ms-transform: scale(0.7,0.7);
	transform: scale(0.7,0.7);
	margin-left: 10px;
	margin-top: 43px;
}
#grad_left,
#grad_right {
	width: 100px;
	height: 400px;
	position: absolute;
	top: 0;
}
#next,
#prev {
	position: absolute;
	top: 150px;
	width: 25px;
	height: 44px;
	background-position: 0 0;
	background-repeat: no-repeat;
	text-indent: -77777px;
	overflow: hidden;
}
#next:hover,
#prev:hover {
	background-position: 0 -44px;
}
#next {
	left: 95%;
	background-image: url('../../und1/media/imagens/seta1.png');
	position: absolute;
}
#prev {
	left: 0px;
	background-image: url('../../und1/media/imagens/seta.png');
}
#next.disabled,
#prev.disabled {
	opacity: 0;
}
@media only all and (max-width:542px) {
	#next,
	#prev {
		display: none!important;
	}
}

/*Accordion vertical*/	
.accordion-vertical {
	width: 100%;
	max-width: 1080px;
	min-height: 250px;
	overflow: hidden;
	margin: auto;
}
.accordion-vertical ul {
	width: 100%;
	display: table;
	table-layout: fixed;
	margin: 0;
	padding: 0;
}
.accordion-vertical ul li {
	display: table-cell;
	vertical-align: bottom;
	position: relative;
	width: 16.666%;
	height: 250px;
	background-repeat: no-repeat;
	background-position: center center;
	transition: all 500ms ease;
}
.accordion-vertical ul li div {
	display: block;
	overflow: hidden;
	width: 100%;
}
.accordion-vertical ul li div a {
	display: block;
	height: 250px;
	width: 100%;
	position: relative;
	z-index: 3;
	vertical-align: bottom;
	padding: 15px 20px;
	box-sizing: border-box;
	color: #fff;
	text-decoration: none;
	font-family: Open Sans, sans-serif;
	transition: all 200ms ease;
}
.accordion-vertical ul li div a * {
	opacity: 0;
	margin: 0;
	width: 100%;
	text-overflow: ellipsis;
	position: relative;
	z-index: 5;
	white-space: nowrap;
	overflow: hidden;
	-webkit-transform: translateX(-20px);
	transform: translateX(-20px);
	-webkit-transition: all 400ms ease;
	transition: all 400ms ease;
}
.accordion-vertical ul li div a h2 {
	font-family: Montserrat, sans-serif;
	text-overflow: clip;
	font-size: 24px;
	text-transform: uppercase;
	margin-bottom: 2px;
	top: 160px;
}
.accordion-vertical ul li div a p {
	top: 160px;
	font-size: 13.5px;
}
.accordion-vertical ul:hover li { width: 8%; }
.accordion-vertical ul:hover li:hover { width: 60%; }
.accordion-vertical ul:hover li:hover a { background: rgba(0, 0, 0, 0.4); }
.accordion-vertical ul:hover li:hover a * {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.about {
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	color: #666;
}
.about a {
	color: blue;
	text-decoration: none;
}
.about a:hover { text-decoration: underline; }
.fundo {
	background-color: #000;
}

/*Accordion com imagens*/
.slidorion {
	position: relative;
	width: auto;			
	height: 400px;			
	background: #CBCBCB;
	border: 1px solid rgba(228, 228, 228, 0.16);
    box-shadow: 0 0 8px rgb(187, 187, 187);
}
.slider {
	width: 60%;
	height: 100%;
	position: relative;
	float: left;
	overflow: hidden;		
}
.slider img {
	width: 100%;
	height: 100%;
}
.slider .slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.accordion {
	width: 40%;
	height: 100%;
	font-family: Verdana;
	background: #eee;
	box-shadow: -3px 0px 3px -1px rgba(51,51,51,0.3);
	position: relative;
	z-index:999;
	overflow: hidden;
	float: left;
}
.accordion .header {
	margin-top: 0 !important;
	padding: 20px 14px;
	font-size: 12px;
	font-weight: bold;
	color: #333;
	background: #ededed;
	background: -moz-linear-gradient(top, #ededed 59%, #dcdcdc 100%);
	background: -webkit-linear-gradient(top, #ededed 59%,#dcdcdc 100%);
	background: -o-linear-gradient(top, #ededed 59%,#dcdcdc 100%);
	background: -ms-linear-gradient(top, #ededed 59%,#dcdcdc 100%);
	background: linear-gradient(top, #ededed 59%,#dcdcdc 100%);
	border-top: 1px solid #ccc;
}
.accordion .header:first-child {
	border-top: none;
}
.accordion .header:hover {
	background: #EDEDED;
	cursor: pointer;
}
.accordion .header.active {
	border-bottom: none;
	background: #676767 !important;
	color: #FFF;
}
.accordion .content {
	height: 202px;
	font-weight: normal;
	font-size: 12px;
	line-height: 20px;
	margin: 0;
	padding: 16px;
	border: none;
	background: #d6d6d6;
	background: -moz-linear-gradient(top, #d6d6d6 0%, #ffffff 10%);
	background: -webkit-linear-gradient(top, #d6d6d6 0%,#ffffff 10%);
	background: -o-linear-gradient(top, #d6d6d6 0%,#ffffff 10%);
	background: -ms-linear-gradient(top, #d6d6d6 0%,#ffffff 10%);
	background: linear-gradient(top, #d6d6d6 0%,#ffffff 10%);
	overflow:auto;
}
.accordion .content p {
	margin-bottom: 10px;
}
.slidorion .slidorion-nav {
    position: absolute;
    top: 200px;
    width: 16px;
    height: 27px;
    z-index: 9999;
    background: url('../img/arrows.png') 0 0 no-repeat;
    cursor: pointer;
}
.slidorion .slidorion-nav-left {
	left: 30px;
}
.slidorion .slidorion-nav-right {
	right: 310px;
	background-position: -16px 0;
}

/*Caixa comparação*/
.comparacao {
	text-align: center;
	color: #fff;
	font-weight: normal;
}
.lado-a, .lado-b {
	display: inline-block;
	position: relative;
	overflow: hidden;
	width: 49.9%;
	height: 250px;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;

}
.lado-default {
	position: absolute;
	word-spacing: normal;
	width: 100%;
	top: 50%;
	left: 50%;
	cursor: pointer;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.lado-default > img {
	width: 55%;
	border-radius: 50%;
}
.lado-default > p {
	text-align: center;
}
.lado-a {
	background-color: #934f9e;
}
.lado-b {
	background-color: #602969;
}
.lado-desc {
	width: 0;
	overflow: hidden;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.lado-desc > p {
	padding: 10px;
}
.comparacao .btn-close {
	display: none;
}
.comparacao .ativado {
	width: 99.9%;
}
.lado-a.ativado > .lado-desc {
	position: absolute;
    word-spacing: normal;
	left: 25%;
	height: 100%;
	width: 75%;
	background-color: #934f9e;
	overflow: auto;
}
.lado-a.ativado > .lado-default {
	width: 25%;
	top: 50%;
	left: 14%;
}
.lado-a.ativado > .btn-close {
	display: inline-block;
	position: absolute;
	left: 12%;
	top: 10%;
	border: 1px solid #fff;
	padding: 2px 5px;
	border-radius: 50%;
	color: #fff;
	line-height: 17px;
	cursor: pointer;
}
.lado-b.ativado > .btn-close {
	display: inline-block;
	position: absolute;
	right: 10%;
	top: 10%;
	border: 1px solid #fff;
	padding: 2px 5px;
	border-radius: 50%;
	color: #fff;
	line-height: 17px;
	cursor: pointer;
}
.lado-b.ativado > .lado-desc {
	position: absolute;
    word-spacing: normal;
	height: 100%;
	width: 75%;
	background-color: #602969;
	left: auto;
}
.lado-b.ativado > .lado-default {
	width: 25%;
	top: 50%;
	right: -13%;
	left: auto;
}
.comparacao .desativado {
	width: 0;
}

/*Múltipla escolha*/
.quest_multi > ul {
  background: #F4FAFF;
  border: 1px solid #E2E2E2;
  padding: 2% 0 2% 3%;
  word-spacing: normal;
}
.quest_multi > ul > li {
  list-style: none;
  background: rgba(193, 91, 178, 0.29);
  border-bottom: 4px solid #F4FAFF;
}
.quest_multi > ul > li > input[type="radio"] {
  display: inline-block;
  width: 5%;
  vertical-align: middle;
  border-radius: 100%;
  font-size: 10px;
  text-shadow: 0 0 1px #1A1C1D;
  line-height: 15px;
  height: 17px;
  min-width: 17px;
  cursor: pointer;
}
.quest_multi > ul > li > p {
  vertical-align: middle;
  display: inline-block;
  width: 90%;
}
input[type=checkbox],
input[type=radio   ] {
  width     : 2em;
  margin    : 0;
  padding   : 0;
  font-size : 1em;
  opacity   : 0;
}
input[type=checkbox] + label,
input[type=radio   ] + label {
  margin-left  : -2em;
  line-height  : 1.2em;
}
input[type=checkbox] + label > span,
input[type=radio   ] + label > span {
  display          : inline-block;
  width            : 0.875em;
  height           : 0.875em;
  margin           : 0.25em 0.5em 0.25em 0.5em;
  border           : 0.0625em solid rgb(192,192,192);
  border-radius    : 50%;
  background       : #F2F2F2;;
  vertical-align   : middle;
}
input[type=checkbox]:checked + label > span,
input[type=radio   ]:checked + label > span {
}
input[type=checkbox]:checked + label > span:before {
  content     : '✓';
  display     : block;
  width       : 1em;
  color       : #21A2CA;
  font-size   : 0.875em;
  line-height : 1em;
  text-align  : center;
 
  font-weight : bold;
}
input[type=radio]:checked + label > span > span {
  display          : block;
  width            : 0.5em;
  height           : 0.5em;
  margin           : 0.125em;
  border           : 0.0625em solid #187C9B;
  border-radius    : 50%;
  background       : #21A2CA;
}
.textQuest {
  width: 92%;
  display: inline-block;
  vertical-align: middle;
  margin: 4px 0 !important;
  font-size: 14px !important;
}
.sombraQuest { margin-top: -3%; }
.sombraQuest > img { width: 100%; }
.btnQuest { width: 15%; position: relative; left: 40%; margin-top: 10px; }
.btnQuest i { color: #A3A3A3; }
.feedbackQuest > li { list-style: none; }
.feedbackQuest .correta { color: #50A253; }
.feedbackQuest .correta i { color: #50A253; }
.feedbackQuest .errada { color: #E96767; }
.feedbackQuest .errada i { color: #E96767; }
@media only all and (max-width:718px){
	input[type=checkbox] + label > span,
	input[type=radio   ] + label > span{
		border: 0.1em solid #333;
	}
}

/*Verdadeiro e Falso*/
.quest_vf > ul {
  background: #F4FAFF;
  border: 1px solid #E2E2E2;
  margin: 0;
  padding: 10px 10px;
}
.quest_vf > ul > li{
  list-style: none;
  background: rgba(193, 91, 178, 0.29);
  border-bottom: 4px solid #F4FAFF;
  padding: 1% 2%;
  width: 77%;
  display: inline-block;
}
.quest_vf > ul > li > input[type="radio"]{
  display: inline-block;
  width: 5%;
  vertical-align: middle;
  border-radius: 100%;
  font-size: 10px;
  text-shadow: 0 0 1px #1A1C1D;
  line-height: 15px;
  height: 17px;
  min-width: 17px;
  cursor: pointer;
}
.quest_vf > ul > li > p{
  vertical-align: middle;
  display: inline-block;
  width: 100%;
}
.quest_vf input[type=checkbox]:not(old),
.quest_vf input[type=radio   ]:not(old){
  width     : 2em;
  margin    : 0;
  padding   : 0;
  font-size : 1em;
  opacity   : 0;
  cursor: pointer;
}
.quest_vf input[type=checkbox]:not(old) + label,
.quest_vf input[type=radio   ]:not(old) + label{
  /*display      : inline-block;*/
  margin-left  : -2em;
  line-height  : 1.2em;
}
.quest_vf input[type=checkbox]:not(old) + label > span,
.quest_vf input[type=radio   ]:not(old) + label > span{
  display          : inline-block;
  width            : 0.875em;
  height           : 0.875em;
  margin           : 0.25em 0.5em 0.25em 0.5em;
  border           : 0.0625em solid rgb(192,192,192);
  border-radius    : 50%;
  background       : #F2F2F2;;
  vertical-align   : middle;
}
.quest_vf input[type=checkbox]:not(old):checked + label > span,
.quest_vf input[type=radio   ]:not(old):checked + label > span{
}
.quest_vf input[type=checkbox]:not(old):checked + label > span:before{
  content     : '✓';
  display     : block;
  width       : 1em;
  color       : #21A2CA;
  font-size   : 0.875em;
  line-height : 1em;
  text-align  : center;
  /*text-shadow : 0 0 0.0714em rgb(115,153,77);*/
  font-weight : bold;
}
.quest_vf input[type=radio]:not(old):checked + label > span > span{
  display          : block;
  width            : 0.5em;
  height           : 0.5em;
  margin           : 0.125em;
  border           : 0.0625em solid #187C9B;
  border-radius    : 50%;
  background       : #21A2CA;
}
.quest_vf .textQuest {
  display: inline-block;
  vertical-align: middle;
  margin: 4px 0 !important;
  font-size: 14px !important;
}
.quest_vf .sombraQuest > img { width: 100%; }
.quest_vf .btnQuest { width: 20%; position: relative; margin-top: 10px; }
.quest_vf .btnQuest i { color: #A3A3A3; }
.quest_vf .boxVF {
  display: inline-block;
  width: 15%;
}
.quest_vf .headerQuest {
  text-align: center;
  word-spacing: 27px;
}
.quest_vf .afirm { text-align: center !important; }
.quest_vf .feedbackQuest > li { list-style: none; }
.quest_vf .feedbackQuest .correta { color: #50A253; }
.quest_vf .feedbackQuest .correta i { color: #50A253; }
.quest_vf .feedbackQuest .errada { color: #E96767; }
.quest_vf .feedbackQuest .errada i { color: #E96767; }

/*Frases incompletas*/
 .inp { border: none; border-bottom: 1px solid #CECECE; outline: none; }

.esquerda{ text-align: left !important; }
.centro { text-align:center !important; }
.direita{ text-align: right !important; }
.cima { vertical-align: top; }
.meio { vertical-align: middle; }
.baixo { vertical-align: bottom; }
.page {
	width: 640px;
	margin: 0 auto;
	overflow: hidden; 
}
.page .header { 
	position: relative;
	margin-top: 10px; 
}
.header > .top {
	line-height: 1.4em;
    font-size: 0.8em;
    text-align: right;
    font-weight: 300;
    padding: 5px 10px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px; 
}
.breadcrumbs {
	height: 50px;
	border-width: 0 0 1px 0;
	border-color: white;
	border-style: solid; 
}
.breadcrumbs > h1,h2 {
	line-height: 3.5em;
    margin: 0;
    padding: 0 15px;
	font-size: 1em;
	font-weight: 300;
}
.breadcrumbs > .arrow {
	border-color: transparent transparent transparent white;
	border-width: 25px;
	border-style: solid;
	display: inline-block;
	float: left; 
}
.header > ul.navbar {
	height: 40px;
	margin: 0;
	padding: 0 0 0 10px;
	list-style: none; 
}
.header > ul.navbar > li {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-top: 5px;
	margin-right: 15px;
	cursor: pointer;
	background-repeat: no-repeat;
	background-size: 100%;
	position: relative;
	font-size: 20px;
}
.header > ul.navbar > li > a {
	color: #525252;
	text-decoration: none;
	margin-left: 3px;
}
/*NavbarMenu*/
.header > ul.navbar > li.btnMenu {
	width: auto;
    margin: 7px 0 0 0;
    height: auto;
    font-size: 0.9em;
    border-radius: 3px;
}
.header > ul.navbar > li.btnMenu p {
	display: inline-block;
	vertical-align: middle;
}
.header > ul.navbar > li.btnMenu span {
	display: inline-block;
	vertical-align: middle;
}

.navbarMenu {
	display: none;
	position: absolute;
	top: 119px;
	left: 5px;
	z-index: 1;
	list-style: none;
	padding: 0;
	margin: 0;
	width: 135px;
	box-shadow: 0px 1px 4px #AFAFAF;
}
.navbarMenu > li {
	padding: 10px;
    font-size: 0.8em;
    cursor: pointer;
    margin: 0; 
}
.navbarMenu > li > a {
	color: #525252;
	text-decoration: none;
}
.navbarMenu > li > a > span {
	display: inline-block;
    vertical-align: middle;
    line-height: 1.5em;
    font-size: 1.3em;
    margin: 0 10px 0 0;
}

#tamanho_fonte_menu {
	display: none;
	position: absolute;
	top: 159px;
  	left: 141px;
	z-index: 1;
	list-style: none;
	padding: 0;
	margin: 0;
	width: 135px;
}
#tamanho_fonte_menu > li {
	padding: 10px 10px 5px 10px;
	font-size: 0.7em;
	cursor: pointer;
	height: 20px;
	margin: 0; 
}
#tamanho_fonte_menu > li > img {
	width: 20px;
	float: left;
	margin: 0 10px 5px 0; }

#tamanho_fonte_menu li.arrow-top {
	padding: 0;
	margin: 0;
	position: absolute;
	border-width: 9px;
	border-color: transparent transparent #9C9C9C transparent;
	border-style: solid;
	top: -18px;
	left: 6px;
	height: auto; }

#navigator {
	float: right;
	width: auto;
	height: auto;
	margin-top: 0;
	position: relative; }

#navigator a {
	float: left;
	display: inline-block; }

#navigator a:hover {
	text-decoration: underline; }

#navigator a.disabled {
	opacity: 0.4;
	cursor: default; }

#navigator a.voltar {
	text-decoration: none;
    font-size: 1.4em;
	margin: 6px 10px 0 0;
}

#navigator a.atual {
	width: 28px;
	height: 28px;
	margin-top: 3px;
	margin-right: 5px;
	border-radius: 50%;
	border: 3px solid #fff;
	text-align: center;
	line-height: 28px;
	text-decoration: none;
	font-size: 15px; 
	color: #fff;
}

#navigator a.total {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid #BDBDBD;
	background: white;
	text-align: center;
	line-height: 20px;
	font-size: 14px;
	right: 30px;
	bottom: 22px;
	color: #525252; 
	text-decoration: none;
}

#navigator a.avancar {
	text-decoration: none;
    font-size: 1.4em;
	margin: 6px 0 0 10px;
}

#navigator_menu {
	margin: 0;
	padding: 0;
	display: inline-block;
	position: absolute;
	right: -400px;
	border: 1px solid #CCC;
	border-right: none;
	padding: 2px 3px 2px 7px;
	box-shadow: 0px 0px 10px #999;
	border-bottom-left-radius: 18px;
	background: #F2F8FA;
	max-width: 242px;
	z-index: 1;
	list-style: none; }

#navigator_menu li {
	display: inline-block;
	width: 20px;
	margin: 2px;
	text-align: center; }

#navigator_menu li a {
	color: #084783;
	display: inline-block; }

#navigator_menu li:hover {
	background-color: white; }

.modal {
	width: 100%;
	display: none;
	position: absolute;
	z-index: 2;
	overflow: hidden; }

.modal-bottom {
	top: initial;
	bottom: 0; }

.modal .header {
      border-top-left-radius: 7px;
      border-top-right-radius: 7px;
      text-align: center;
      font-size: 17px;
      background-color: #F1F1F1;
      font-weight: bold;
      color: #FFF;
      position: relative;
      margin: 0 2%; }

/*Modal para as unidades*/
.modal-unidades {
	width: 100%;
	display: none;
	position: absolute;
	top: 0;
	z-index: 2; }

.modal-unidades .header {
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      text-align: center;
      font-size: 17px;

      font-weight: bold;
      color: #FFF;
      position: relative; }

.header p {
      text-align: center;
      padding: 5px;
      margin: 0; }

.modal .header p {
      text-align: left;
      color:#333;
      margin: 0 10px;
      border-bottom:1px solid #ccc;
      padding-top: 4px; }

 .modal .header .btn-close {
  width: 18px;
      height: 18px;
      border-radius: 50%;
      display: inline-block;
      border: solid 2px #BEBEBE;
	  color: #B8B8B8;
      font-weight: bold;
      background-color: #FFF;
      line-height: 17px;
      cursor: pointer;
      position: absolute;
      top: 5px;
      right: 10px; }

.modal-unidades .header .btn-close {
  	  width: 18px;
      height: 18px;
      border-radius: 50%;
      display: inline-block;
      border: solid 2px #8D8D8D;
      color: #8D8D8D;
      font-weight: bold;
      line-height: 17px;
      cursor: pointer;
      position: absolute;
      top: 8px;
      right: 10px; }

.modal .content {
	background-color: #F1F1F1;
	padding: 10px;
	border-bottom-right-radius: 7px;
	border-bottom-left-radius: 7px;
	margin: 0 2%; }

.modal-unidades .content {
	background-color: white;
	padding: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px; }

#unidades-modal {
	width:100%;
	position: absolute;
	z-index:2;
	/*opacity: 0;*/ }

#unidades-modal > .page{
	padding-bottom: 10px;
	border-radius: 7px;
	border: 1px solid #CCC;
	box-shadow: 0 0 5px #5E5E5E;
	background: #ccc;
}

#unidades-modal > .page > h2{
	border-bottom: 1px solid #CECACA;
	padding: 0 10px;
	font-size: 1.1em;
	color: #757575;
	float: none;
	display: block;
	margin-right: 10px;
	margin-left: 10px;
	line-height: 40px;
}

#unidades-modal ul{
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
	position: relative;
	display: block;
}

#unidades-modal ul > li{
	display: inline-block;
	width: 20%;
	vertical-align: text-top;
	margin-top: 20px;
	margin-right: 0;
	margin-left: 24px;
}

#unidades-modal ul > li > a{
	text-align: center;

}

#unidades-modal ul > li > a > p{
	text-align: center;
	font-size: 1em;
	color: #757575;
}

#unidades-modal ul > li > a:hover{
	color: #333;
	text-decoration: none !important;
}

#unidades-modal ul > li > a > img{
	width: 100%;
	border-radius: 5%;
}

#referencias-modal .header{
	background-color: white;
	color: #333;
	border-bottom: 1px solid #333;
}

#modal-fade{
	display: none;
	z-index: 1;
	background-color: black;
	opacity: 0.8;
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
}



.font-12{
	font-size: 12px !important;
}

/*----------------Conteúdo Página----------------*/
.conteudo{
	height: 545px;
    background: #fff;
    color: #333;
    padding: 25px 45px 45px;
    text-align: left;
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 11px;
    overflow: hidden;
    position: relative;
    margin: 0;
}

.conteudo h2 {
    padding: 0px;
    font-size: 22px;
    font-weight: bold;
    margin: 0px 0px 20px 0px;
    border-bottom: 1px dotted gray;
    font-family: "Trebuchet MS",Arial,Helvetica,sans-serif;
    text-align: left;
    width: 100%;
    float: none;
    line-height: 28px;
}

.bloco-centro{
	width: 100%;
	margin-top: 70px;
	margin-bottom: 15px;
	position: relative;
}

.bloco-conteudo{
	padding: 7px;
	border: 1px solid rgb(170, 170, 170);

}

.refCx {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	position: absolute;
	bottom: 1%;
	right: 1%;
	border-radius: 3px;
	border-radius: 50%;
}

.refCx a { text-decoration: none; color: #934f9e; }

.referencia{
	position: absolute;
	/*bottom: 3px;
	right: 10px;*/
	margin: 2px 0 0 3px;
}

.referencia a{
	display: inline-block;
}

.referencia img{
	width:40px;
	opacity: 0.5;
}

.referencia img{
	width:40px;
	opacity: 0.5;
}

.referencia img:hover{
	opacity: 1;
}

/* deprecated */
.bloco-1{
	width: 65%;
	margin-left: 2%;
	box-shadow: 0px 0px 10px #AFAFAF;
	border: 1px solid transparent;
	padding: 7px;
	border-radius: 7px;
	position: relative;
	display: inline-block;
}

/* deprecated */
.bloco-2{
	width: 20%;
	margin-left: 2%;
	vertical-align: bottom;
	display: inline-block;
}

.bloco-2 img{
	width: 100%;
}

.page p{
	text-align: justify;
	font-family: "Trebuchet MS",Arial,Helvetica,sans-serif;
	margin: 5px 0 10px 0;
}

.page ul{
	clear:both;

}

.grid-row > ul.cor { padding: 0; }

.grid-row > ul.cor > li {
padding: 1% 3% 1% 3%;
margin: 1px 0 0 0;
list-style: none; }

* > p:last-child { margin: 0 0 0 0; }

.box-video{
	padding: 5px;
	width: 95%;
	margin: 0 auto;
}

.bloco-video {
	width: 100%;
	margin-top: 15px;
	margin-bottom: 15px;
	position: relative;
	padding-bottom: 56.25%;
}

.bloco-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*-- Blocos --*/

.medidor-container{
	text-align: center;
}

.medidor-mid{
	width: 200px;
	height: 160px;
	display: inline-block;
	margin: 10px 0 10px 10px;
}

.medidor-mid:first-child{
	margin: 10px 10px 10px 0;
}

.medidor-small{
	width: 170px;
	height: 80px;
	display: inline-block;
	margin: 5px 0 5px 5px;
}

.medidor-small:first-child{
	margin: 5px 0 0 0;
}

.medidor-big{
	width: 300px;
	height: 210px;
	display: block;
	margin: 0 auto;
}

.grafico-container{
	text-align: center;
	margin-bottom: 30px;
}

.grafico-full{
	width: 550px;
	height: 250px;
	display: block;
	margin: 0 auto auto;
}

.grafico-half{
	width: 240px;
	height: 150px;
	display: inline-block;
	margin: 5px 0 5px 5px;
}

.grafico-half:first-child{
	margin: 5px 5px 5px 0;
}

.xchart-tooltip {
	position: absolute;
	background: #EEE;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
	padding: 5px;
	-webkit-box-shadow: 0 1px 3px #000;
	-moz-box-shadow: 0 1px 3px #000;
	-ms-box-shadow: 0 1px 3px #000;
	-o-box-shadow: 0 1px 3px #000;
	box-shadow: 0 1px 3px #000;
	border-collapse: separate;
	display: none;
	font-size: 13px;
	color: #444;
}

.retratil{
	display: none;
	margin-top: 5px;
}

.center{
	margin:0 auto;
}
/*-- Fim Blocos --*/

/*------------- Links -------------*/
.link-e{
	color:#555;
	font-size: 13px;
	background: url(img/link-e.png) no-repeat right;
	padding-right: 18px;

}
.link-e:hover {
	color:#0059B2;
	background: url(img/link-e2.png) no-repeat right;
	padding-right: 18px;
 }

 .link-d{
	color:#555;
	font-size: 13px;
	background: url(img/link-d.png) no-repeat right;
	padding-right: 18px;

}
.link-d:hover {
	color:#0059B2;
	background: url(img/link-d2.png) no-repeat right;
	padding-right: 18px;
 }

 .link-f{
	color:#555;
	font-size: 13px;
	background: url(img/link-f.png) no-repeat right;
	padding-right: 17px;

}
.link-f:hover {
	color:#0059B2;
	background: url(img/link-f2.png) no-repeat right;
	padding-right: 17px;
 }
/*------------- Fim Links --------------*/

/*CAIXAS*/




.caixa-retratil {border: 1px dashed #CCC; margin-top: 4px;}


.caixa-cinza {
    height: auto;
    padding: 2%;
    margin: 5px 0;
    position: relative;
    /* border-left: 3px solid #0197d2; */
    background: #F3F3F3;
    word-spacing: normal;
    border-left: none !important;
}





.caixa-borda{
	border: 1px solid #934f9e;
	padding: 5px;
	height: auto;
	position: relative;
	word-spacing: normal;
}

.iconeTE {
    top: 0;
    left: 0;
}

.iconeTE > span {
    position: absolute;
    color: #19a5dd;
    left: 0;
    top: 0;
}

.iconeTE > span:before {
    font-size: 67px !important;
}

.super_icone{
   	overflow: hidden;
   	margin: 0 !important;
 }

.super_icone > img{
   	width:auto;
}

.imgZoom {
	display: inline-block;
	position: absolute;
	top: 43%;
	left: 43%;
}

/** Botões (baseado em bootstrap) */
.btn {
  color: #000;
  background-color: #f5f5f5;
  *background-color: #e6e6e6;
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border: 1px solid #cccccc;
  *border: 0;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border-bottom-color: #b3b3b3;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  *zoom: 1;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
     -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn:active,
.btn.active {
  background-color: #cccccc \9;
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
     -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn.big{
  font-size: 16px;
  padding: 8px !important;
}
.btn.small{
  font-size: 12px;
  padding: 2px !important;
}

/* accordion */
.ui-helper-reset {
margin: 0;
padding: 0;
border: 0;
outline: 0;
line-height: 1.3;
text-decoration: none;
/*font-size: 100%;*/
list-style: none;
}
.ui-accordion .ui-accordion-content {
padding: 1em 2.2em;
border-top: 0;
overflow: auto;
}
.ui-accordion {
	margin-bottom: 10px !important;
}
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
border-bottom-right-radius: 4px;
}
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
border-bottom-left-radius: 4px;
}
.ui-accordion-content {
border: 1px solid #DDD !important;
border-top: none !important;
background: #fff; /* Old browsers */

}
.ui-accordion .ui-accordion-icons {
padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header {
border: 1px solid #E9E9E9;
display: block;
cursor: pointer;
position: relative;
margin-top: 2px;
padding: .5em .5em .5em 2.4em;
min-height: 0;
support: IE7;
}
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
border-top-right-radius: 4px;
}
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
border-top-left-radius: 4px;
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
position: absolute;
left: .5em;
top: 50%;
margin-top: -8px;
}
.ui-icon {
display: block;
text-indent: -99999px;
overflow: hidden;
background-repeat: no-repeat;
width: 16px;
height: 16px;
}
.ui-state-default .ui-icon {
background-image: url(accordion/images/ui-icons_222222_256x240.png);
}
.ui-state-active .ui-icon,
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {
background-image: url(accordion/images/ui-icons_ffffff_256x240.png);
}
.ui-icon-triangle-1-s {
background-position: -64px -16px;
}
.ui-icon-triangle-1-e {
background-position: -32px -16px;
}

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.clearfix {
	display: inline-block;
}

html[xmlns] .clearfix {
	display: block;
}

* html .clearfix {
	height: 1%;
}

/*CORES FONT*/
.font-white { color: #fff; }
.font-black { color: #333; }
.font-dark-purple{ color:#993199; }
.font-dark-gray{ color: #707070; }
.font-green { color: #63B130; }
.font-green-gray { color: #7F9C7D; }
.font-blue { color: #2C7B9B; }

/* CORES */
.black { background:#1b2a34; }

.very-very-cinza { background:#F3F3F3; }
.very-cinza { background: #DDDDDD; }

.very-very-purple { background: #fae9fd; }

.very-very-green { background:#F6FFF4; }
.green-pt { background: #ECF1B1; }
.bright-green { background:#4b974a; }
.green { background:#287f4c; }
.dark-green { background:#27462c; }
.sand-green { background:#789081; }
.medium-green { background:#79DA75; }
.light-green { background:#C6FFAE; }
.verde-musgo { background: #cbdb2a; }

.lime { background:#a4bd46; }
.medium-lime { background:#c7d23c; }
.light-lime { background:#d9e4a7; }

.dark-bluish-gray { background:#635f61; }
.light-bluish-gray { background:#a3a2a4; }
.very-light-bluish-gray { background:#e5e4de; }
.dark-gray { background:#6d6e6c; }
.light-gray { background:#a1a5a2; }
.very-light-gray { background:#c7c1b7; }

.white{ background:#ffffff; }

.red{ background:#c4281b; }
.dark-red { background:#7b2e2f; }
.sand-red { background:#957976; }

.salmon { background:#da8679; }
.light-salmon { background:#eec4b6; }

.flesh { background:#cc8e68; }
.dark-flesh { background:#7c5c45; }

.reddish-brown { background:#694027; }
.brown { background:#624732; }

.dark-tan { background:#958a73; }
.tan { background:#d7c599; }

.dark-orange { background:#a05f34; }
.earth-orange { background:#cb8442; }
.orange { background:#da8540; }
.medium-orange { background:#e29b3f; }
.bright-light-orange { background:#e8ab2d; }
.light-orange { background: #FFE6D2; }

.yellow { background:#f4cd2f; }
.bright-light-yellow { background:#fdea8c; }
.light-yellow { background:#f9e999; }

.light-turquoise { background:#55a5af; }
.dark-turquoise { background:#008f9b; }

.dark-blue { background:#3E6C9E; }
.blue { background:#0d69ab; }
.sand-blue { background:#74869c; }
.medium-blue { background:#6e99c9; }
.sky-blue { background:#7dbbdd; }
.bright-light-blue { background:#9fc3e9; }
.light-blue { background:#b4d2e3; }
.quase-azul { background:#F2FFF8; }
.azul-verde { background:#C4E7EC; }
.azul-celeste { background:#B8D7DB; }
.azul-coiso { background:#A2C0C4; }
.azul-fraco { background:#ECF7F6; }
.azul-cinza{ background:#84ACAF; }
.very-very-azul { background: #EFF9FD; }

.aqua { background:#b7d7d5; }

.blue-violet { background:#4667a4; }
.violet { background:#6874ac; }
.light-violet { background:#c1cade; }

.dark-purple { background:#342b75; }
.purple { background:#934f9e; }
.light-purple { background:#D69AD5; }
.sand-purple { background:#877c90; }

.magenta { background:#923978; }

.dark-pink { background:#c470a0; }
.light-pink { background:#dc9095; }
.bright-pink { background:#e4adc8; }
.pink { background:#ffd3ec; }
.very-pink { background: #F0E1E9; }

/*DEGRADÊ*/
.dgd-azul {
	background: #2cb1e6; /* Old browsers */
	background: -moz-linear-gradient(top,  #2cb1e6 0%, #0197d2 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2cb1e6), color-stop(100%,#0197d2)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #2cb1e6 0%,#0197d2 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #2cb1e6 0%,#0197d2 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #2cb1e6 0%,#0197d2 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #2cb1e6 0%,#0197d2 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2cb1e6', endColorstr='#0197d2',GradientType=0 ); /* IE6-9 */
}

.dgd-verd {
	color: #1C471C;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	background: #AFD390;
	background: -moz-linear-gradient(top, #e7fdd4 0%, #AFD390 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e7fdd4), color-stop(100%,#AFD390));
	background: -webkit-linear-gradient(top, #e7fdd4 0%,#AFD390 100%);
	background: -o-linear-gradient(top, #e7fdd4 0%,#AFD390 100%);
	background: -ms-linear-gradient(top, #e7fdd4 0%,#AFD390 100%);
	background: linear-gradient(to bottom, #e7fdd4 0%,#AFD390 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e7fdd4', endColorstr='#AFD390',GradientType=0 );
}

.dgd-black{
	color: white;
	background: #314f5e; /* Old browsers */
	background: -moz-linear-gradient(top,  #314f5e 27%, #1b2a34 99%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(27%,#314f5e), color-stop(99%,#1b2a34)); /* 	Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #314f5e 27%,#1b2a34 99%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #314f5e 27%,#1b2a34 99%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #314f5e 27%,#1b2a34 99%); /* IE10+ */
	background: linear-gradient(to bottom,  #314f5e 27%,#1b2a34 99%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#314f5e', endColorstr='#1b2a34',GradientType=0 ); /* IE6-9 */
}

.dgd-dark-gray{
	color: white;
	background: #878184; /* Old browsers */
	background: -moz-linear-gradient(top,  #878184 34%, #635f61 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(34%,#878184), color-stop(100%,#635f61)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #878184 34%,#635f61 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #878184 34%,#635f61 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #878184 34%,#635f61 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #878184 34%,#635f61 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#878184', endColorstr='#635f61',GradientType=0 ); /* IE6-9 */
}

.dgd-gray{
	background: #d5d4d6; /* Old browsers */
	background: -moz-linear-gradient(top,  #d5d4d6 34%, #a3a2a4 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(34%,#d5d4d6), color-stop(100%,#a3a2a4)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #d5d4d6 34%,#a3a2a4 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #d5d4d6 34%,#a3a2a4 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #d5d4d6 34%,#a3a2a4 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #d5d4d6 34%,#a3a2a4 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d5d4d6', endColorstr='#a3a2a4',GradientType=0 ); /* IE6-9 */

}

.dgd-white{
	background: rgb(255,255,255); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(237,243,244,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(237,243,244,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(237,243,244,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(237,243,244,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(237,243,244,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(237,243,244,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#edf3f4',GradientType=0 ); /* IE6-9 */
}

.dgd-dark-red{
	color: white;
	background: #c94c4c; /* Old browsers */
	background: -moz-linear-gradient(top,  #c94c4c 34%, #7b2e2f 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(34%,#c94c4c), color-stop(100%,#7b2e2f)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #c94c4c 34%,#7b2e2f 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #c94c4c 34%,#7b2e2f 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #c94c4c 34%,#7b2e2f 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #c94c4c 34%,#7b2e2f 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c94c4c', endColorstr='#7b2e2f',GradientType=0 ); /* IE6-9 */
}

.dgd-red{
	color: white;
	background: #ff2323; /* Old browsers */
	background: -moz-linear-gradient(top,  #ff2323 34%, #891313 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(34%,#ff2323), color-stop(100%,#891313)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ff2323 34%,#891313 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ff2323 34%,#891313 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ff2323 34%,#891313 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ff2323 34%,#891313 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff2323', endColorstr='#891313',GradientType=0 ); /* IE6-9 */

}

.dgd-ligth-red{
	color: white;
	background: #ff928e; /* Old browsers */
	background: -moz-linear-gradient(top,  #ff928e 34%, #bc7069 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(34%,#ff928e), color-stop(100%,#bc7069)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ff928e 34%,#bc7069 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ff928e 34%,#bc7069 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ff928e 34%,#bc7069 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ff928e 34%,#bc7069 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff928e', endColorstr='#bc7069',GradientType=0 ); /* IE6-9 */
}

.dgd-orange{
	color: white;
	background: #ff872b; /* Old browsers */
	background: -moz-linear-gradient(top,  #ff872b 35%, #c16320 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(35%,#ff872b), color-stop(100%,#c16320)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ff872b 35%,#c16320 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ff872b 35%,#c16320 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ff872b 35%,#c16320 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ff872b 35%,#c16320 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff872b', endColorstr='#c16320',GradientType=0 ); /* IE6-9 */
}

.dgd-yellow{
	background: #ffff32; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffff32 34%, #ddcc2c 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(34%,#ffff32), color-stop(100%,#ddcc2c)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffff32 34%,#ddcc2c 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ffff32 34%,#ddcc2c 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ffff32 34%,#ddcc2c 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ffff32 34%,#ddcc2c 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffff32', endColorstr='#ddcc2c',GradientType=0 ); /* IE6-9 */
}

.dgd-ligth-yellow{
	background: #ffff70; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffff70 42%, #e3e564 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(42%,#ffff70), color-stop(100%,#e3e564)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffff70 42%,#e3e564 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ffff70 42%,#e3e564 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ffff70 42%,#e3e564 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ffff70 42%,#e3e564 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffff70', endColorstr='#e3e564',GradientType=0 ); /* IE6-9 */
}

.dgd-dark-green{
	color: white;
	background: #75d66b; /* Old browsers */
	background: -moz-linear-gradient(top,  #75d66b 34%, #4b974a 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(34%,#75d66b), color-stop(100%,#4b974a)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #75d66b 34%,#4b974a 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #75d66b 34%,#4b974a 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #75d66b 34%,#4b974a 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #75d66b 34%,#4b974a 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#75d66b', endColorstr='#4b974a',GradientType=0 ); /* IE6-9 */
}

.dgd-green{
	background: #8BDA48;
	background: -moz-linear-gradient(top, #8bda48 0%, #63b130 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8BDA48), color-stop(100%,#63B130));
	background: -webkit-linear-gradient(top, #8BDA48 0%,#63B130 100%);
	background: -o-linear-gradient(top, #8bda48 0%,#63b130 100%);
	background: -ms-linear-gradient(top, #8bda48 0%,#63b130 100%);
	background: linear-gradient(to bottom, #8BDA48 0%,#63B130 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8bda48', endColorstr='#63b130',GradientType=0 );
}

.dgd-ligth-green{
	background: #c4ff93; /* Old browsers */
	background: -moz-linear-gradient(top,  #c4ff93 34%, #9df754 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(34%,#c4ff93), color-stop(100%,#9df754)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #c4ff93 34%,#9df754 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #c4ff93 34%,#9df754 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #c4ff93 34%,#9df754 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #c4ff93 34%,#9df754 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c4ff93', endColorstr='#9df754',GradientType=0 ); /* IE6-9 */
}

.dgd-dark-blue{
	color: white;
	background: #376a91; /* Old browsers */
	background: -moz-linear-gradient(top,  #376a91 35%, #203a56 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(35%,#376a91), color-stop(100%,#203a56)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #376a91 35%,#203a56 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #376a91 35%,#203a56 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #376a91 35%,#203a56 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #376a91 35%,#203a56 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#376a91', endColorstr='#203a56',GradientType=0 ); /* IE6-9 */
}

.dgd-blue{
	color: white;
	background: #0065bf;
	background: -moz-linear-gradient(top, #0065bf 0%, #084783 98%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0065bf), color-stop(98%,#084783));
	background: -webkit-linear-gradient(top, #0065bf 0%,#084783 98%);
	background: -o-linear-gradient(top, #0065bf 0%,#084783 98%);
	background: -ms-linear-gradient(top, #0065bf 0%,#084783 98%);
	background: linear-gradient(to bottom, #0065bf 0%,#084783 98%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0065bf', endColorstr='#084783',GradientType=0 );
}

.dgd-ligth-blue{
	background: #8beaf4; /* Old browsers */
	background: -moz-linear-gradient(top,  #8beaf4 34%, #7dbbdd 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(34%,#8beaf4), color-stop(100%,#7dbbdd)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #8beaf4 34%,#7dbbdd 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #8beaf4 34%,#7dbbdd 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #8beaf4 34%,#7dbbdd 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #8beaf4 34%,#7dbbdd 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8beaf4', endColorstr='#7dbbdd',GradientType=0 ); /* IE6-9 */
}

.dgd-dark-purple{
	color: white;
	background: #a069a9; /* Old browsers */
	background: -moz-linear-gradient(top,  #a069a9 34%, #72367b 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(34%,#a069a9), color-stop(100%,#72367b)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #a069a9 34%,#72367b 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #a069a9 34%,#72367b 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #a069a9 34%,#72367b 100%); /* IE10+ */
	    background: linear-gradient(to bottom, #a069a9 36%,#72367b 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a069a9', endColorstr='#72367b',GradientType=0 ); /* IE6-9 */
}

.dgd-purple{
	color: white;
	background: #c15bb2; /* Old browsers */
	background: -moz-linear-gradient(top,  #c15bb2 34%, #8e4285 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(34%,#c15bb2), color-stop(100%,#8e4285)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #c15bb2 34%,#8e4285 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #c15bb2 34%,#8e4285 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #c15bb2 34%,#8e4285 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #c15bb2 34%,#8e4285 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c15bb2', endColorstr='#8e4285',GradientType=0 ); /* IE6-9 */
}

.dgd-pink{
	background: #ffd3ec; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffd3ec 34%, #e4adc8 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(34%,#ffd3ec), color-stop(100%,#e4adc8)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffd3ec 34%,#e4adc8 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ffd3ec 34%,#e4adc8 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ffd3ec 34%,#e4adc8 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ffd3ec 34%,#e4adc8 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffd3ec', endColorstr='#e4adc8',GradientType=0 ); /* IE6-9 */
}

.dgd-btn{
	background-color: #f2f5f6;
	background-image: -moz-linear-gradient(top, #f2f5f6, #e0e0e0);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f5f6), to(#e0e0e0));
	background-image: -webkit-linear-gradient(top, #f2f5f6, #e0e0e0);
	background-image: -o-linear-gradient(top, #f2f5f6, #e0e0e0);
	background-image: linear-gradient(to bottom, #f2f5f6, #e0e0e0);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f5f6', endColorstr='#e0e0e0', GradientType=0);
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.dgd-verde-escuro{
	background: #3e9b5d; /* Old browsers */
	background: -moz-linear-gradient(top,  #3e9b5d 1%, #06554e 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#3e9b5d), color-stop(100%,#06554e)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #3e9b5d 1%,#06554e 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #3e9b5d 1%,#06554e 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #3e9b5d 1%,#06554e 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #3e9b5d 1%,#06554e 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3e9b5d', endColorstr='#06554e',GradientType=0 ); /* IE6-9 */
}

.dgd-dark-turquoise{
	background: #5caebc; /* Old browsers */
	background: -moz-linear-gradient(top,  #5caebc 1%, #008f9b 99%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#5caebc), color-stop(99%,#008f9b)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #5caebc 1%,#008f9b 99%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #5caebc 1%,#008f9b 99%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #5caebc 1%,#008f9b 99%); /* IE10+ */
	background: linear-gradient(to bottom,  #5caebc 1%,#008f9b 99%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5caebc', endColorstr='#008f9b',GradientType=0 ); /* IE6-9 */
}



/* GRIDS */

[class*="tamanho"]{
	display:inline-block;
	margin: 0 0 10px 0px;
}

[class*="tamanho"] > *{
	margin-right: 10px !important;
}

/*[class*="tamanho"]:last-child > *{
	margin-right: 0px !important;
}*/

[class*="tamanho"] img{width:100%;}

.tamanho1{width:9.9%;}

.tamanho2{width:19.9%;}

.tamanho3{width:29.9%;}

.tamanho4{width:39.9%;}

.tamanho5{width:49.9%;}

.tamanho6{width:59.9%;}

.tamanho7{width:69.9%;}

.tamanho8{width:79.9%;}

.tamanho9{width:89.9%;}

.tamanho10{width:99.9%;}

.grid-row {
word-spacing: -4px;
position: relative;
display: inline-block;
width: 100%;
}

/*.grid-row>*{word-spacing:normal;}*/


/*Posicionamento*/

.image-right{
	display: inline-block;
	float: right;
	margin: 5px 0 5px 10px;
}

.image-left{
	display: inline-block;
	float: left;
	margin: 5px 10px 5px 0;
}

.image-center{
	display: block;
	margin: 5px auto;
}

.zerar{margin:0 !important;}

.btn-link {
    padding: 5px;
    color: #9B9B9B;
    border-radius: 3px;
    box-shadow: 1px 1px 3px #838383;
    background-color: #EBEBEB;
    border: 3px solid #EBEBEB;
    cursor: pointer;
    font-size: 14px;
    margin: 10px 0;
}

.btn-link:hover {
	border: 3px solid #EBEBEB;
	background-color: rgba(0, 0, 0, 0.19);
}



.retratil-btn {
cursor: pointer;
background-color: #6799A0;
border: 3px solid #6799A0;
}

.retratil-btn:hover {
background-color: #497379;
}

.btn-retratil-active{
	border-bottom: none;
	padding-bottom: 6px !important;
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

.passos_container { position:relative; }
.passosE, .passosD { position: absolute;
	cursor: pointer;
	display: inline-block;
	width: 75%;
	margin-right: 0 !important; }
.passosD { top:35%; left:23%; }
.passosBtn{ position:relative; }
.passosE:hover, .passosD:hover{ width:80%; }

/*Ícones animados*/

.super_icone{
   	overflow: hidden;
   	margin: 0 !important;
}

.super_icone > img{
   	width:auto;
}

/*Flip*/

 .super_flip{
    display:inline-block;
    position: relative;
 }

.flip_info > .caixa-anime{
    margin: 0;
    border-radius: 0;
}

.flip_img, .flip_info{
    position: absolute;
    width:100%;
    margin: 0;
}

.flip_img{
    z-index: 2;
    background: #CBD5CB;
}

.flip_info{
    z-index: 1;
}

.flip_info > .caixa-anime > p{
	font-size: 12px;
}

.flip_info > .caixa-anime{
	padding-bottom: 0;
	padding-top: 0;
}

/*Prancheta*/

.prancheta_pai{
          position: relative;
          text-align: center;
}

.prancheta{
   position: absolute;
   left: 0;
       top: 0;
}

.prancheta_btns{
       margin-top: 25%;
       margin-right: 0 !important;
}

.prancheta_btns > .btn-link{
       position: relative;
   z-index: 1;

}



/*caixa-conteudo*/

	
	


/** responsividade \o/ **/
@media only all and (max-width:699px){

	h4,h3, li{
		font-size:12px;
	}

	.page {
		width: 100%;
		overflow-x: hidden;
	}

	.modal-unidades > .page {

		width: 100%;
		overflow-x: hidden;
	}

	.page p{
		font-size: 12px;
	}

	.conteudo h2{
		font-size: 13px;
		line-height: 24px;
	}

	.header > .top {
		font-size: 11px;
		white-space: nowrap;
	}

	.bloco-centro .bloco-1{
		width: auto;
		margin: 0;
	}



	.bloco-centro .bloco-2{
		width: 20%;
		margin: 20px auto;
		display: block;
	}

	.breadcrumbs h1, .breadcrumbs .arrow{
		display: none;
	}

	.breadcrumbs > h2 {
		font-size: 13px;
		font-weight: 700;
		white-space: nowrap;
		display: block;
		text-align: center;
		float: none;
	}

	.header > ul.navbar {
		min-width: 240px;
		height: 40px;
	}

	.header > ul.navbar > li {
		width: 20px;
		height: 20px;
		margin-top: 8px;
	}

	#navigator a.atual {
		width: 20px;
		height: 20px;
		font-size: 11px;
		line-height: 20px;
		margin-top: 8px;
	}

	#navigator a.total {
		font-size: 10px;
		width: 15px;
		height: 15px;
		line-height: 15px;
	}

	#navigator a.voltar, #navigator a.avancar {
		margin-top: 7px;
	}

	.conteudo{



height: 100%;
min-height: 545px;

		padding: 5px 7px 40px 8px;
	}

	.medidor-mid{
		margin: 60px auto 10px auto;
		display: block;
	}

	.medidor-mid:first-child{
		margin: 10px auto;
	}

	.grafico-full{
		width: 100%;
	}

	.tamanho-responsivo0{display:none;}

	.tamanho-responsivo1{width:9.9%;}

	.tamanho-responsivo2{width:19.9%;}

	.tamanho-responsivo3{width:29.9%;}

	.tamanho-responsivo4{width:39.9%;}

	.tamanho-responsivo5{width:49.9%;}

	.tamanho-responsivo6{width:59.9%;}

	.tamanho-responsivo7{width:69.9%;}

	.tamanho-responsivo8{width:79.9%;}

	.tamanho-responsivo9{width:89.9%;}

	.tamanho-responsivo10{width:99.9%;}

	.iconeTE {
    top: 0;
    left: 0;
		}

		.iconeTE > span {
		    position: absolute;
		    color: #934f9e;
		    left: 0;
		    top: 0;
		}

		.iconeTE > span:before {
		    font-size: 67px !important;
		}

		.super_icone{
		   	overflow: hidden;
		   	margin: 0 !important;
		 }

		.super_icone > img{
		   	width:auto;
		}

	li .navigator { font-size: 21px; }

	.header > .top {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}

	.conteudo {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}

	.btn{
		font-size: 12px;
	}

	.ui-helper-reset {
		font-size: 85% !important;
	}

	.header p {
		padding: 5px 30px 5px 5px !important;
	}

	.modal .header .btn-close {
		width: 15px;
		height: 15px;
		line-height: 15px;
		font-size: 10px;
	}

	.modal-unidades .header .btn-close {
		width: 15px;
		height: 15px;
		line-height: 15px;
		font-size: 10px;
	}

	.vertical_tabs > ul.tabs_menu
	{
		list-style: none;
		margin: 0;
		padding: 0;
		float: left;
		width: 20%;
	}

	.ui-tabs-vertical .ui-tabs-nav{
		float: none;
		width: 100%;
		padding: 0 !important;
		text-align: center;
	}

	.vertical_tabs > ul.tabs_cont{
		list-style: none;
		margin: 0;
		padding: 0;
		float: right;
		width: 80%;
		clear: none;
	}
	.vertical_tabs > ul.tabs_menu > li{

		width: auto;
		display: inline-block;
		height: 25px;
		line-height: 25px;
		margin: 10px 0 5px 10px;
		padding: 5px 10px;
		cursor: pointer;
	}

	.ui-tabs-vertical .ui-tabs-nav > li{
		width: auto;
		display: inline-block;
		float: none;
	}

	.ui-tabs .ui-tabs-nav li {
		float: none !important;
	}

	.ui-tabs-vertical .ui-tabs-nav > li > a{
		width: auto;
	}
	.ui-tabs-vertical .ui-tabs-panel{
		float: none;
		padding: 3% !important;
		width: auto;

	}

	.ui-tabs-vertical .ui-tabs-panel{
		border-style: solid;
		border-width: 1px !important;
		border-color: #DBDBDB;
		border-top-color: #969696;
	}

	.image-right-tablet{
		display: inline-block;
		float: right;
		margin: 5px 0 5px 10px;
	}

	.image-left-tablet{
		display: inline-block;
		float: left;
		margin: 5px 10px 5px 0;
	}

	.image-center-tablet{
		display: block;
		margin: 5px auto;
	}
}

@media only all and (max-width:480px){
	.tamanho-phone-0{display:none;}

	.tamanho-phone-1{width:9.9%;}

	.tamanho-phone-2{width:19.9%;}

	.tamanho-phone-3{width:29.9%;}

	.tamanho-phone-4{width:39.9%;}

	.tamanho-phone-5{width:49.9%;}

	.tamanho-phone-6{width:59.9%;}

	.tamanho-phone-7{width:69.9%;}

	.tamanho-phone-8{width:79.9%;}

	.tamanho-phone-9{width:89.9%;}

	.tamanho-phone-10{width:99.9%;}

	.overflow-hidden-phone{
		overflow:hidden;
	}

	.image-right-phone{
		display: inline-block;
		float: right;
		margin: 5px 0 5px 10px;
	}

	.image-left-phone{
		display: inline-block;
		float: left;
		margin: 5px 10px 5px 0;
	}

	.image-center-phone{
		display: block;
		margin: 5px auto;
	}

}
@media only all and (max-width:320px){
	#navigator a.atual {
		margin-right: 15px;
		margin-left: 10px;
	}
	#navigator a.total {
		margin-right: 10px;
	}
}




/*Efeitos Novos - Diego*/

.button {

	padding: 2px 0px 0px 4px;
    color: #9B9B9B;
	margin: -2px -3px 4px 5px;
    font-size: 14px;
    word-spacing: normal;
}
.caixa1 {
	border: 1px solid;
	border-radius: 5px;
	background: #ECEFF1;
}
.caixa2 {
	border: 2px solid #F1DFDF;
	border-radius: 10px;
	background: #7986cb;
	color: #fff;
}
.caixa3 {
	border: 1px solid;
	border-radius: 1px;
	background: #37474f;	
}
/*Linha do Tempo - Diego*/

/* ========================================= */
/* ! Layout para Desktop menor que 1200px   */
/* ======================================== */


/* MEMORY GAME*/

.memory-cards{
	word-spacing: -4px;
}
.card{
	width: 23.9%;
    display: inline-block;
    background: #22ABE1;
    margin: 1px;
    vertical-align: top;
    color: #fff;
}

.card *{
	word-spacing: normal;
}

.card > img{
	width: 100%;
	display: none;
}

.card > label{
	display: block;
    padding: 7px;
    text-align: center;
    position: relative;
}

/*Númeração com efeito*/



/*Comparacao*/

/* box 3D - Diego */
.stage {
	list-style: none;
	padding: 0;
}

/*************************************
Build the scene and rotate on hover
**************************************/

.scene {
	width: 260px;
	height: 400px;
	
	-webkit-perspective: 1000px;
	-moz-perspective: 1000px;
	perspective: 1000px;
}

.movie {
	width: 260px;
	height: 400px;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(-130px);
	-moz-transform: translateZ(-130px);
	transform: translateZ(-130px);
	-webkit-transition: -webkit-transform 350ms;
	-moz-transition: -moz-transform 350ms;
	transition: transform 350ms;
}

.movie:hover {
	-webkit-transform: rotateY(-78deg) translateZ(20px);
	-moz-transform: rotateY(-78deg) translateZ(20px);
	transform: rotateY(-78deg) translateZ(20px);
}

/*************************************
Transform and style the two planes
**************************************/

.movie .poster, 
.movie .info {
	position: absolute;
	width: 260px;
	height: 400px;
	background-color: #fff;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

.movie .poster  {
	-webkit-transform: translateZ(130px);
	-moz-transform: translateZ(130px);
	transform: translateZ(130px);
	background-size: cover;
	background-repeat: no-repeat;
}

.movie .info {
	-webkit-transform: rotateY(90deg) translateZ(130px);
	-moz-transform: rotateY(90deg) translateZ(130px);
	transform: rotateY(90deg) translateZ(130px);
	border: 1px solid #B8B5B5;
	font-size: 0.75em;
}

/*************************************
Shadow beneath the 3D object
**************************************/

.csstransforms3d .movie::after {
	content: '';
	width: 260px;
	height: 260px;
	position: absolute;
	bottom: 0;
	box-shadow: 0 30px 50px rgba(0,0,0,0.3);
	-webkit-transform-origin: 100% 100%;
	-moz-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
	-webkit-transform: rotateX(90deg) translateY(130px);
	-moz-transform: rotateX(90deg) translateY(130px);
	transform: rotateX(90deg) translateY(130px);
	-webkit-transition: box-shadow 350ms;
	-moz-transition: box-shadow 350ms;
	transition: box-shadow 350ms;
}

.csstransforms3d .movie:hover::after {
	box-shadow: 20px -5px 50px rgba(0,0,0,0.3);
}

/*************************************
Movie information
**************************************/

.info header {
	color: #FFF;
	padding: 7px 10px;
	font-weight: bold;
	height: 195px;
	background-size: contain;
	background-repeat: no-repeat;
	text-shadow: 0px 1px 1px rgba(0,0,0,1);
}



.info p {
	padding: 1.2em 1.4em;
	margin: 2px 0 0;
	font-weight: 700;
	color: #666;
	line-height: 1.4em;
	border-top: 10px solid #555;

