/*** Importante ***/
/* A página de Css Base foi separada do geral para evitar erros. Apartir de agora o CSS contido aqui poderá ser para duas finalidades:

	1) 	Definir as estruturas e bases do website/portal;
	2) 	Configurações de visualizações importantes do topo e rodapé que permanecerão imutáveis. Alterações
		nestas seções que sofrerão mudanças constantes serão inseridas no geral.css;. */

/*-------------------------------------------------------------------------------------------*/


/*** Imports ***/
	@import url(reset.css);
/*** Fim Imports ***/

/*-------------------------------------------------------------------------------------------*/

/*** Fonts Import ***/

@font-face {
    font-family: 'bauhaus_93regular';
    src: url('../includes/fonts/bauhs93-webfont.woff2') format('woff2'),
         url('../includes/fonts/bauhs93-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
/*** Fim Fonts Import ***/

/*** Classes ***/
	.zoomIN{
		cursor: -webkit-zoom-in;
		cursor: -moz-zoom-in;
		cursor: zoom-in;
	}
	.zoomOUT{
		cursor: -webkit-zoom-out;
		cursor: -moz-zoom-out;
		cursor: zoom-out;
	}

	.loader, .loader .fundo_loader, .loader .img{
		top:0px;
		left:0px;
		width:100%;
		height:100%;
		z-index: 1000;
		position: absolute;
	}

	.fundo_loader{
		z-index: 1001;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
		filter: alpha(opacity=80);
		-moz-opacity: 0.8;
		-khtml-opacity: 0.8;
		opacity: 0.8;
		background: #fff;
	}

	.loader .img{
		z-index: 1010;
		display: block;
		width: 66px;
		height: 66px;

		background: transparent url("../img/site/ajax-loader.gif") center center no-repeat;

		left:50%;
		margin-left: -33px;
		top: 50%;
		margin-top: -33px;
	}


	.cB{clear: both;}

	.pR{ position: relative;}
	.pA{ position: absolute;}
	.pF{ position: fixed;}

	.fL{float: left;}
	.fR{float: right;}
	.dB{display: block !important;}
	.dIB{display: inline !important;}
	.dN{display: none;}
	.ofH{overflow: hidden;}
	.ofV{overflow: visible;}
	.Ghost{
		font-size:0;
		width:1px;
		height:1px;
	}
	h1, h2, h3{
		font-weight: normal;
		color: #000000;
		margin: 0 0 5px 0;
		letter-spacing: 1px;
		font-family: sans-serif;
	}
	h1{
		font-size: 32pt;
		line-height: 38pt;
	}
	h2{
		font-size: 30pt;
		line-height: 28pt;
	}
	h3{
		font-size: 24pt;
		line-height: 24pt;
	}
	h4, h5{
		color: #fff;
		margin: 0 0 5px 0;
	}
	p{
		font-size: 12pt;
		line-height: 16pt;
	}
	ul.lista li{
		font-size: 12pt;
		line-height: 16pt;
		list-style: circle;
		margin-left: 20px;
	}
	.txI{text-indent: 5px !important; padding-right: 5px !important;}
	.txaL{text-align: left;}
	.txaR{text-align: right;}
	.txaC{text-align: center;}
	.fS10{font-size: 10pt;}

	.pd5{padding:5px;}
	.pd10{padding:10px;}
	.mg0{margin: 0 !important; padding: 0 !important;}
	.mBottom10{margin-bottom:10px;}
	.mBottom15{margin-bottom:15px;}
	.mBottom20{margin-bottom:20px;}

	i{font-style: italic;}
	b{font-weight: bold;}

	ul.Lista{}
	ul.Lista li{
		margin:0 0 5px 20px;
		list-style: square;
	}
	ul.Lista li a{
		color: #ff8000 ;
		text-decoration: none ;
	}
	ul.Lista li a:hover{
		font-weight: bold ;
	}

	a{
		color: #3b619b;
		text-decoration: none ;
	}
	a:hover{
		font-weight: normal;
	}
	.texto{
		line-height: 14pt;
	}
/* Fonts */
@font-face {
    font-family: 'kg_ten_thousand_reasonsRg';
    src: url('../includes/fonts/kgtenthousandreasons-webfont.eot');
    src: url('../includes/fonts/kgtenthousandreasons-webfont.eot?#iefix') format('embedded-opentype'),
         url('../includes/fonts/kgtenthousandreasons-webfont.woff2') format('woff2'),
         url('../includes/fonts/kgtenthousandreasons-webfont.woff') format('woff'),
         url('../includes/fonts/kgtenthousandreasons-webfont.ttf') format('truetype'),
         url('../includes/fonts/kgtenthousandreasons-webfont.svg#kg_ten_thousand_reasonsRg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'kg_ten_thousand_reasons_altRg';
    src: url('../includes/fonts/kgtenthousandreasonsalt-webfont.eot');
    src: url('../includes/fonts/kgtenthousandreasonsalt-webfont.eot?#iefix') format('embedded-opentype'),
         url('../includes/fonts/kgtenthousandreasonsalt-webfont.woff2') format('woff2'),
         url('../includes/fonts/kgtenthousandreasonsalt-webfont.woff') format('woff'),
         url('../includes/fonts/kgtenthousandreasonsalt-webfont.ttf') format('truetype'),
         url('../includes/fonts/kgtenthousandreasonsalt-webfont.svg#kg_ten_thousand_reasons_altRg') format('svg');
    font-weight: normal;
    font-style: normal;
}
/* Fim Fonts */

/*** Fim Classes ***/

/*-------------------------------------------------------------------------------------------*/

/*** Config Estrutrura HTML ***/
	html{
		width: 100%;
		height:100%;
	}
	body{
		position: absolute;
		width: 100%;
		height:100%;
		display: block;
		overflow: auto;
		min-height: 80% !important;
		top: 0 !important;
		overflow-x: hidden;
		font-family: Verdana, Geneva, sans-serif !important;
		background: #fff;
	}

	.CS-Global{
		height: auto  !important;
		margin-left: 50%  !important;
		-webkit-transform: translateX(-50%) !important;
		-ms-transform: translateX(-50%) !important;
		-moz-transform: translateX(-50%) !important;
		-o-transform: translateX(-50%) !important;
		transform: translateX(-50%) !important;
		transition: 0.2s;
		-webkit-transition: 0.2s;
		-moz-transition: 0.2s;
		-o-transition: 0.2s;
		-ms-transition: 0.2s;
		min-width: 890px;
	}
/*** Fim Config Estrutrura HTML***/

/*-------------------------------------------------------------------------------------------*/

/*** Topo ***/
	header#topo_site{
		width: 100%;
		min-height: 100px;
		top: 0;
		left: 0;
		background: none;
		background-size: auto 100%;
		}
	#top_head{
		height: auto;
		border-bottom: solid #000 1px;
	}

/*** Fim Topo ***/

/*-------------------------------------------------------------------------------------------*/

/*** Content ***/

#gutts{
	min-height: 100%;
	margin-top: 0px;
}
#contmainer{
	height: auto;
	z-index: 2;
}

#conteudo{
	font-size: 11pt;
	line-height: 14pt;
}
/**Páginas Internas config Geral**/
.theme-light.slider-wrapper{background: #efefef!important;}
.faixaCont{
	width: 100%;
	margin: 10px 0;
	font-size: 10pt;
	padding: 10px 0;
}
.MLfixo{
	position: absolute;
	float: left;
}
.MLmovel{
	position: fixed;
	top: 105px;
	left: 0;
}
a.anchor { position: absolute; top: -120px; visibility: hidden; }


.white-popup h2{
	color: #900;
}
.white-popup fieldset{
	font-size: 10pt;
	padding: 5px 0;
	border-top: 1px dashed #333;
}

.white-popup fieldset legend{
	margin-left: 10px;
}

.CS-Global article{
	width: 79%;
	margin-left: 1%;
	padding: 0px 0;
	color: #fff;
	font-size: 11pt;
	line-height: 15pt;
	text-align: justify;
}

/**FIM Páginas Internas config Geral**/
/*** Fim Content ***/

/*-------------------------------------------------------------------------------------------*/

/*** Rodape ***/
#clientes-carrossel{
	margin-top: 20px;
}

footer#rodape_site{
	width: 100%;
	clear: both;
	height: auto;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.cols{
	width: 30%;
	margin-left: 5%;
	color: #fff;
	font-size: 10pt;
	line-height: 18pt;
}
.cols:first-child{
	margin-left: 0%;
}


/* **Sigs** */
#faixa_assi{
	width: 100% !important;
	height: 36px;
	bottom: 0px;
	right: 0;
	padding: 5px 0;
	background: #333;
	color: #FFF;
}
#faixa_assi p{
	line-height: 36px;
	font-size: 9pt;
	margin: 0;
	margin-left: 5px;
}
#assi{
	width: 180px;
	height: 30px;
	right: 0;
	top: 3;
	padding-right: 75px;
	margin-right: 5px;
	color: #FFF;
	text-decoration: none;
	background: url(../img/site/sig_integrarmkt.png) no-repeat right center;
}
#assi p{
	margin-top: 3px;
	color: #FFF;
	text-align: right;
	font-size: 8pt;
	line-height: 12px;
}
#contmainer{
/* mbotom = tamanho FOOTER + 20px ta dando pau em páginas pequenas... não sei o que fazer ainda*/
	margin-bottom: 260px !important;
}
/* **Fim Sigs** */

/*** Fim Rodape ***/

/*-------------------------------------------------------------------------------------------*/

/*** Sizes Screens ***/
@media only screen and (max-width: 1920px) /* FullHD */
{
	.CS-Global{
		width: 1440px !important;
	}
	header#topo_site{
		height: auto;
	}
	.CS-Global{
		width: 980px !important;
	}
	#contmainer{
	/* mbotom = tamanho FOOTER + 20px ta dando pau em páginas pequenas... não sei o que fazer ainda*/
		margin-bottom: 404px;
	}
}

/*----------------------------------------------------*/

@media only screen and (max-width: 1440px) /* HD */
{
	.CS-Global{
		width: 1280px !important;
	}

}

/*----------------------------------------------------*/

@media only screen and (max-width: 1280px) /* Regular Size */
{
	.CS-Global{
		width: 980px !important;
	}#contmainer{
		height: auto;
		/* mbotom = tamanho FOOTER + 20px ta dando pau em páginas pequenas... não sei o que fazer ainda*/
		margin-bottom: 230px;
		z-index: 2;
	}
}

/*----------------------------------------------------*/

@media only screen and (max-width: 980px) /* Monitores antigos */
{

	body{
		width: 980px !important;
		min-height: 80% !important;
		overflow-x: auto !important;
	}
	}

	.CS-Global{
		width: 90% !important;
		margin-left: 5% !important;
		-webkit-transform: translateX(0%) !important;
		-ms-transform: translateX(0%) !important;
		-moz-transform: translateX(0%) !important;
		-o-transform: translateX(0%) !important;
		transform: translateX(0%) !important;
	}

}
