/***
*       INÍCIO STYLE.CSS ===============================================================================================
***/

/***
* FONTES
***/

@font-face {
	font-family: "Open Sans";
	src: url('../fonts/opensans-bold-webfont.woff2') format('woff2'),
	url('../fonts/opensans-bold-webfont.woff') format('woff');
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: "Open Sans";
	src: url('../fonts/opensans-extrabold-webfont.woff2') format('woff2'),
	url('../fonts/opensans-extrabold-webfont.woff') format('woff');
	font-weight: 800;
	font-style: normal;
}
@font-face {
	font-family: "Open Sans";
	src: url('../fonts/opensans-regular-webfont.woff2') format('woff2'),
	url('../fonts/opensans-regular-webfont.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: "Open Sans";
	src: url('../fonts/opensans-semibold-webfont.woff2') format('woff2'),
	url('../fonts/opensans-semibold-webfont.woff') format('woff');
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: "Open Sans Condensed";
	src: url('../fonts/opensans-condbold-webfont.woff2') format('woff2'),
	url('../fonts/opensans-condbold-webfont.woff') format('woff');
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: "Roboto Condensed";
	src: url('../fonts/robotocondensed-bold-webfont.woff2') format('woff2'),
	url('../fonts/robotocondensed-bold-webfont.woff') format('woff');
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: "Roboto Condensed";
	src: url('../fonts/robotocondensed-regular-webfont.woff2') format('woff2'),
	url('../fonts/robotocondensed-regular-webfont.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}

/***
* REGRAS GERAIS
***/

body {
	color: #000;
	font-family: "Open Sans",sans-serif;
	font-size:	14px;
}
.container { position: relative; }
.container--tipo-b { position: static; }
table caption {
	position: absolute;
	left: -99999px;
}
::-webkit-scrollbar { -webkit-appearance: none; }
::-webkit-scrollbar:vertical { width: 12px; }
::-webkit-scrollbar:horizontal { height: 12px; }
::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, .5);
	border-radius: 10px;
	border: 2px solid #ffffff;
}
::-webkit-scrollbar-track {
	border-radius: 10px;
	background-color: #ffffff;
}

h3 {
	color: #2369b3;
	font-weight: 600;
}

.margin-bottom-30 { margin-bottom: 30px; }
.margin-top-10 { margin-top: 10px; }
.margin-top-20 { margin-top: 20px; }
.align-center {text-align: center !important;}
.pull-center {
	margin: 0 auto;
	display: block;
	float: none;
}
.container-personalizado {
	padding-right: 20px;
	padding-left: 20px;
}
.row-personalizada {
	margin-right: -20px;
	margin-left: -20px;
}
.row-personalizada:before,
.row-personalizada:after {
	content: " ";
	display: table;
}
.row-personalizada:after { clear: both; }

.col-personalizada-full,
.col-personalizada-tripla,
.col-personalizada-1,
.col-personalizada-1b,
.col-personalizada-2,
.col-personalizada-3,
.col-personalizada-4,
.col-personalizada-4b,
.col-personalizada-5,
.col-personalizada-6 {
	padding-left: 20px;
	padding-right: 20px;
	min-height: 1px;
	position: relative;
}
.col-personalizada-full { width: 100%; }
.col-personalizada-tripla { width: 33.33%; }
.col-personalizada-1 { width: 19%; }
.col-personalizada-1b { width: 20.5%; }
.col-personalizada-2 { width: 81%; }
.col-personalizada-3 { width: 26%; }
.col-personalizada-4 { width: 50%; }
.col-personalizada-4b { width: 59%; }
.col-personalizada-5 { width: 60%; }
.col-personalizada-6 { width: 79.5%; }

@media screen and (min-width: 992px) {
	.col-personalizada-full,
	.col-personalizada-tripla,
	.col-personalizada-1,
	.col-personalizada-1b,
	.col-personalizada-2,
	.col-personalizada-3,
	.col-personalizada-4,
	.col-personalizada-4b,
	.col-personalizada-5,
	.col-personalizada-6 { float: left; }
}
@media screen and (max-width: 991px) {
	.col-personalizada-full,
	.col-personalizada-tripla,
	.col-personalizada-1,
	.col-personalizada-1b,
	.col-personalizada-2,
	.col-personalizada-3,
	.col-personalizada-4,
	.col-personalizada-4b,
	.col-personalizada-5,
	.col-personalizada-6 { width: 100%; }
}

/***
* FORMULÃRIO PADRÃƒO
***/

fieldset { border: none; }
legend { display: none; }
label {
	margin: 0;
	padding-bottom: 5px;
	font-weight: 400;
	font-size: 1em;
	color: #6d6e70;
	line-height: 1.1;
	text-align: left;
	word-break: normal;
	vertical-align: baseline;
	display: inline-block;
	border-radius: .25em;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="submit"],
button[type="submit"],
input[type="tel"],
select,
textarea {
	width: 100%;
	height: 34px;
	padding: 0 12px;
	font-size: 1em;
	color: #555;
	line-height: 34px;
	display: block;
	box-shadow: inset 1px 2px 2px rgba(0,0,0,0.08);
	border-radius: 2px;
	border: 1px solid #bfbfbf;
	background-color: #fff;
	background-image: none;
	transition: background-color .2s ease-in-out;
	-webkit-appearance: none;
}
select {
	height: 34px;
	padding: 0 20px 0 10px;
	background-image: url(../img/ico/seta_baixo.png?v=1.11.0);
	background-position: right 50%;
	background-repeat: no-repeat;
}
select.form-control { background-image: url(../img/ico/seta_baixo.png?v=1.11.0); }

input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
select::-webkit-input-placeholder {
	padding-top: 0;
	padding-bottom: 0;
	line-height: 34px;
}
input[type="text"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
select:-moz-placeholder {
	padding-top: 0;
	padding-bottom: 0;
	line-height: 34px;
}
input[type="text"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
select::-moz-placeholder {
	padding-top: 0;
	padding-bottom: 0;
	line-height: 34px;
}
input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
select:-ms-input-placeholder {
	padding-top: 0;
	padding-bottom: 0;
	line-height: 34px;
}

textarea {
	height: auto;
	min-height: 34px;
	padding: 6px 12px;
	line-height: 1.4;
}
textarea::-webkit-input-placeholder { color: #555 !important; }
textarea:-moz-placeholder { color: #555 !important; }
textarea::-moz-placeholder { color: #555 !important; }
textarea:-ms-input-placeholder { color: #555 !important; }
.checkbox input[type=checkbox] {
	margin: 0;
	position: absolute;
	top: 3px;
	left: 0;
}
.radio input[type=radio] {
	margin: 0;
	position: absolute;
	top: 3px;
	left: 0;
}

/* HOVER */

input[type="text"]:hover,
input[type="password"]:hover,
input[type="submit"]:hover,
button[type="submit"]:hover,
select:hover,
textarea:hover,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="submit"]:focus,
button[type="submit"]:focus,
select:focus,
textarea:focus {
	color: #2369b3 !important;
	border: 1px solid #00b4f5 !important;
	box-shadow: 0 0 2px 4px rgba(0,180,245,0.2) !important;
}



/***
* CABEÃ‡ALHO
***/

#barra-brasil {
	position: relative;
	z-index: 12;
}

div#wrapper-barra-brasil {
	max-width: 1150px !important;
}

header {
	padding: 10px 0 0;
	position: relative;
	z-index: 10;
	box-shadow: 0 4px 6px 0 rgba(0,0,0,0.25);
	border-bottom: 1px solid #fff;
	background-color: #2369b3;
}

/* LISTA HORIZONTAL DO CABEÃ‡ALHO */

header ul {
	width: 50%;
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	top: 0;
}
@media screen and (max-width: 992px) {
	header ul {
		width: 100%;
		display: table;
		position: static;
		top: auto;
		left: auto;
	}
}
header ul > li {
	padding-top: 2px;
	display: inline-block;
	vertical-align: top;
}
@media screen and (max-width: 992px) {
	header ul > li {
		display: table-cell;
	}
}
header ul > li + li { margin-left: 11px; }
header ul a {
	padding: 0 2px;
	font-family: arial,sans-serif;
	font-size: .8em;
	color: #fff;
	display: inline-block;
	transition: background-color .2s ease-in-out, color .2s ease-in-out;
}
@media screen and (max-width: 992px) {
	header ul a {
		padding: 0 5px;
		text-align: center;
		display: block;
	}
}
header ul span {
	width: 12px;
	height: 12px;
	margin-left: 5px;
	font-weight: 700;
	color: #2369b3;
	line-height: 11px;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	background-color: #fff;
}

/* HOVER */

header ul a:hover,
header ul a:focus,
header ul a.ativo {
	color: #2369b3;
	background-color: #e8ebed;
}

/* ALTERAÃ‡ÃƒO: LISTA COM BORDA */

header ul.menu-borda {
	width: auto;
	position: absolute;
	left: auto;
	right: 30px;
	border-bottom: 1px dashed #8ea6d1;
}
@media screen and (max-width: 992px) {
	header ul.menu-borda {
		width: 100%;
		margin-top: 30px;
		text-align: right;
		position: static;
		top: auto;
		left: auto;
		right: auto;
	}
}



/***
* LOGO DO SITE
***/

.logo {
	width: 50%;
	margin-top: 22px;
	position: relative;
	top: 0;
}
@media screen and (max-width: 992px) {
	.logo {
		width: 100%;
		margin-top: 10px;
		position: static;
		top: auto;
		left: auto;
	}
}
.logo h1 {
	margin: -6px 0 10px;
	font-weight: 800;
	color: #fff;
	font-size: 2.9em;
	line-height: 1;
}
@media screen and (max-width: 390px) {
	.logo h1 {
		font-size: 2.6em;
	}
}
.logo h1 a {
	color: #fff;
	text-decoration: none;
	display: inline-block;
	transition: background-color .2s ease-in-out, color .2s ease-in-out;
}
.logo span {
	font-weight: 400;
	color: #fff;
	font-size: .9em;
	display: block;
	position: relative;
	z-index: 2;
}

/* HOVER */

.logo h1 a:hover,
.logo h1 a:focus {
	color: #2369b3;
	background-color: #e8ebed;
}



/***
* FORMULÃRIO DE BUSCA DO TOPO
***/

.box-busca-form,
.form-busca-topo {
	width: 30.5%;
	position: absolute;
	top: 52px;
	right: 30px;
	border: 1px solid #a9a9a9;
	border-radius: 4px;
	background-color: #fff;
}
.box-busca-form:before,
.form-busca-topo:before,
.box-busca-form:after,
.form-busca-topo:after {
	content: " ";
	display: table;
}
.box-busca-form:after,
.form-busca-topo:after { clear: both; }
@media screen and (max-width: 992px) {
	.box-busca-form,
	.form-busca-topo {
		width: 100%;
		margin-top: 10px;
		position: static;
		top: auto;
		right: auto;
	}
}
.form-busca-topo.form-home {
	width: 80%;
	margin: 20px auto 20px;
	position: relative;
	top: auto;
	right: auto;
}
.form-busca-topo.form-home fieldset { width: 100%; }

.form-busca-topo.form-home input[type="text"]::-webkit-input-placeholder { color: #454545 !important; }
.form-busca-topo.form-home input[type="text"]:-moz-placeholder { color: #454545 !important; }
.form-busca-topo.form-home input[type="text"]::-moz-placeholder { color: #454545 !important; }
.form-busca-topo.form-home input[type="text"]:-ms-input-placeholder { color: #454545 !important; }
.box-busca-form select,
.form-busca-topo select {
	width: 23.97%;
	height: 32px;
	padding: 0 20px 0 1%;
	font-weight: 700;
	font-size: 1.1em;
	line-height: 32px;
	cursor: pointer;
	float: left;
	border: 1px solid #dbdbdb;
	background-color: #dcdcdc;
	box-shadow: none;
	transition: background-color .2s ease-in-out, color .2s ease-in-out;
}
.box-busca-form input[type="text"],
.form-busca-topo input[type="text"] {
	width: 66.83%;
	height: 32px;
	font-size: .9em;
	color: #454545;
	line-height: 32px;
	float: left;
	border: none;
	box-shadow: none;
	transition: background-color .2s ease-in-out, color .2s ease-in-out;
}
.box-busca-form button[type="submit"],
.form-busca-topo button[type="submit"],
#form-busca-pagina-erro button[type="submit"]
{
	width: 9.18%;
	height: 32px;
	padding: 0;
	float: left;
	border: none;
	box-shadow: none;
	background: none;
	transition: background-color .2s ease-in-out;
}
.box-busca-form button[type="submit"],
#form-busca-pagina-erro button[type="submit"],
.form-busca-topo button[type="submit"] i {
	font-weight: 400;
	font-size: 20px;
	color: #0bf;
	line-height: 32px;
	transition: color .2s ease-in-out;
}

/* HOVER */

.box-busca-form select:hover,
.form-busca-topo select:hover,
.box-busca-form select:focus,
.form-busca-topo select:focus {
	position: relative;
	z-index: 2;
}
.box-busca-form button[type="submit"]:hover,
.form-busca-topo button[type="submit"]:hover {
	background-color: #00bbff;
}
.box-busca-form button[type="submit"]:hover i,
.form-busca-topo button[type="submit"]:hover i {
	color: #fff;
}

@media screen and (max-width: 480px) {
	.box-busca-form select,
	.form-busca-topo select,
	.box-busca-form input[type="text"],
	.form-busca-topo input[type="text"],
	.box-busca-form button[type="submit"],
	.form-busca-topo button[type="submit"] { width: 100%; }
	.box-busca-form input[type="text"],
	.form-busca-topo input[type="text"] { border: 1px solid #bfbfbf; }
}

.box-busca-form{
	width: 100%;
	position: static;
}

.form-home__opcao-busca {
	width: 80%;
	margin: 10px auto 0;
	text-align: right;
}

/***
* FORMULÃRIO DE BUSCA
***/

.form-busca-autocomplete {
	padding: 18px 25px 15px;
	position: relative;
	border-radius: 2px;
	background-color: #3c6db2;
}
@media screen and (max-width: 767px) {
	.form-busca-autocomplete .row > div + div {
		margin-top: 20px;
	}
}
.form-busca-autocomplete label {
	margin-bottom: 7px;
	font-weight: 700;
	font-family: "Open Sans",sans-serif;
	font-size: 1.1em;
	color: #fff;
	text-transform: uppercase;
	display: block;
}
.form-busca-autocomplete label.label-contador {
	padding-right: 100px;
	position: relative;
}
.form-busca-autocomplete label.label-contador span {
	position: absolute;
	top: 0;
	right: 0;
}
.form-busca-autocomplete input[type=text] {
	width: 100%;
	padding-right: 42px;
}
.form-busca-autocomplete .wrapper-busca,
#form-busca-localidade .wrapper-busca{
	width: 100%;
	position: relative;
}
.form-busca-autocomplete button[type=submit],
.form-busca-autocomplete input[type=submit] {
	width: 34px;
	height: 34px;
	margin-left: -4px;
	padding: 0;
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	vertical-align: top;
	border: none;
	box-shadow: none;
	background: none;
	transition: background-color .2s ease-in-out;
}
.form-busca-autocomplete button[type=submit] i,
.form-busca-autocomplete input[type=submit] i,
#form-busca-localidade button[type=submit] i{
	font-weight: 400;
	font-size: 20px;
	color: #0bf;
	line-height: 34px;
	transition: color .2s ease-in-out;
}

/***
* LISTA DE REDES SOCIAIS DO TOPO
***/

.lista-midias {
	width: auto;
	margin: 0;
	padding: 3px 0 0;
	list-style-type: none;
	display: block;
	position: absolute;
	top: 91px;
	left: auto;
	right: 30px;
}
@media screen and (max-width: 992px) {
	.lista-midias {
		width: 100%;
		margin-top: 20px;
		text-align: right;
		position: static;
		top: auto;
		right: auto;
	}
}
.lista-midias li {
	margin: 0;
	padding: 0;
	display: inline-block;
	vertical-align: top;
}
.lista-midias li + li { margin-left: 4px; }
.lista-midias a {
	margin: 0 -2px -4px -3px;
	padding: 0 2px 4px 3px;
	font-size: 1em;
	text-decoration: none;
	display: block;
	border-radius: 4px;
	transition: background-color .2s ease-in-out, color .2s ease-in-out;
}
.lista-midias a i {
	width: 24px;
	height: 24px;
	font-size: 2em;
	color: #fff;
	display: block;
	transition: background-color .2s ease-in-out, color .2s ease-in-out;
}

/* HOVER */

.lista-midias a:hover,
.lista-midias a:focus { background-color: #fff; }
.lista-midias a:hover i,
.lista-midias a:focus i { color: #0e4097; }



/***
* MENU DE NAVEGAÃ‡ÃƒO
***/

.menu-navegacao {
	width: 100%;
	margin-top: 10px;
	text-align: right;
	background-color: #0e4097;
}
@media screen and (max-width: 1200px) {
	.menu-navegacao { height: 53px; }
	.menu-navegacao .container {
		padding-top: 10px;
		padding-bottom: 10px;
		position: static;
	}
}
.menu-navegacao button {
	height: 33px;
	font-size: 25px;
	line-height: 33px;
	padding: 2px 5px;
	color: #fff;
	display: none;
	float: right;
	border: none;
	background: none;
	transition: color .2s ease-in-out, background-color .2s ease-in-out;
}
.menu-navegacao button:hover,
.menu-navegacao button:focus,
.menu-navegacao button.ativo {
	color: #0e4097;
	background-color: #fff;
}
@media screen and (max-width: 1200px) {
	.menu-navegacao button { display: block; }
}
.menu-navegacao ul[role="menubar"] {
	width: auto;
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: static;
	top: auto;
	left: auto;
}
@media screen and (max-width: 1200px) {
	.menu-ativo{
		overflow: hidden;
	}
	.menu-wrapper{
		width: 500px;
		height: 100%;
		margin: 0;
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		z-index: 12;
		background-color: #0e4097;
		overflow-y: auto;
		-webkit-transform: translate(-100%,0);
		-ms-transform: translate(-100%,0);
		transform: translate(-100%,0);
		-webkit-transition: transform .1s ease-in-out;
		-ms-transition: transform .1s ease-in-out;
		transition: transform .1s ease-in-out;
	}
	.menu-navegacao.ativo .menu-wrapper{
		-webkit-transform: translate(0,0);
		-ms-transform: translate(0,0);
		transform: translate(0,0);
	}
	.menu-navegacao ul[role="menubar"] {
		height: 100%;
		padding: 20px 0;
	}
	.menu-ativo header{
		z-index: inherit;
	}
	.menu-ativo:before{
		content: '';
		position: fixed;
		width: 100%;
		height: 100%;
		background-color: rgba(0,0,0,0.7);
		-webkit-transition: opacity 0.3s linear 0s;
		transition: opacity 0.3s linear 0s;
		z-index: 11;
		bottom: 0;
		left: 0;
		right: 0;
		top: 0;
	}
}
@media screen and (max-width: 768px) {
	.menu-wrapper{
		max-width: 420px;
	}
}
@media screen and (max-width: 480px) {
	.menu-wrapper{
		max-width: 360px;
	}
}
@media screen and (max-width: 360px) {
	.menu-wrapper{
		max-width: 85%;
	}
}
.menu-navegacao ul[role="menubar"] li {
	margin: 0;
	padding: 0;
	position: relative;
}
.menu-navegacao ul[role="menubar"] > li + li:before {
	content: '';
	display: block;
	width: 1px;
	height: 70%;
	position: absolute;
	top: 50%;
	left: 0;
	background-color: #fff;
	-webkit-transform: translate(0,-50%);
	transform: translate(0,-50%);
}
.menu-navegacao ul[role="menubar"] > li > a {
	padding: 5px 7px;
	font-family: "Open Sans",sans-serif;
	font-size: 1em;
	font-weight: 700;
	color: #fff;
	display: block;
	text-decoration: none;
	transition: background-color .2s ease-in-out, color .2s ease-in-out;
}
.menu-navegacao ul[role="menubar"] > li.has-submenu > a { padding-right: 25px; }
.menu-navegacao ul[role="menubar"] > li.has-submenu:after{
	font: normal normal normal 14px/1 FontAwesome;
	content: "\f0d7";
	position: absolute;
	top: 50%;
	right: 8px;
	-webkit-transform: translate(0,-50%);
	transform: translate(0,-50%);
	color: #fff;
}
.menu-navegacao ul[role="menubar"] > li ul a,
.menu-navegacao ul[role="menubar"] > li span {
	width: 100%;
	padding: 5px 20px;
	font-size: 1em;
	display: block;
}
.menu-navegacao ul[role="menubar"] > li ul a { display: inline-block; }
.menu-navegacao ul[role="menubar"] > li span {
	width: 100%;
	height: auto;
	margin: 0;
	text-align: left;
	line-height: normal;
	display: block;
}
@media screen and (max-width: 1200px) {
	.menu-navegacao ul[role="menubar"] > li {
		display: block;
		text-align: left;
		margin: 0 15px;
	}
	.menu-navegacao ul[role="menubar"] > li > a {
		padding: 15px;
		border-bottom: 1px solid #2369b3;
		text-align: left;
	}
	.menu-navegacao ul[role="menubar"] > li + li:before{
		display: none;
	}
	.menu-navegacao ul[role="menubar"] > li ul a{
		padding: 7.5px 30px;
		text-align: left;
	}
}
/* Hover */

.menu-navegacao ul[role="menubar"] > li.active > a,
.menu-navegacao ul[role="menubar"] > li:hover > a,
.menu-navegacao ul[role="menubar"] > li > a:focus {
	font-weight: 700;
	color: #fff;
	background-color: #082c69;
    outline: none;
}

/* Submenu */

.menu-navegacao ul[role="menubar"] > li .menu-background {
	width: 100%;
	max-height: 0;
	position: absolute;
	left: 0;
	overflow: hidden;
	background-color: #dce0e0;
	-webkit-transition: max-height 0.5s ease-in-out;
	transition: max-height 0.5s ease-in-out;
}

.menu-navegacao ul[role="menubar"] > li ul {
	width: auto;
	height: 0;
	padding: 0;
	position: absolute;
	top: auto;
	left: auto;
	opacity: 0;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
	background-color: #082c69;
	overflow: hidden;
}
.menu-navegacao ul[role="menubar"] > li.submenu--right ul {
	left: inherit;
	right: 0;
}
/*.menu-navegacao ul[role="menubar"] > li:hover ul,*/
.menu-navegacao ul[role="menubar"] > li.active ul { opacity: 1; height: auto; overflow: visible; }
.menu-navegacao ul[role="menubar"] > li ul li {
	min-width: 400px;
	margin: 0;
	padding: 0;
	text-align: left;
}
.menu-navegacao ul[role="menubar"] > li ul li:first-of-type {
	margin-top: 10px;
}
.menu-navegacao ul[role="menubar"] > li ul li:last-of-type {
	margin-bottom: 10px;
}
.menu-navegacao ul[role="menubar"] > li ul li.has-submenu:hover a,
.menu-navegacao ul[role="menubar"] > li ul li:hover a {
	color: #fff;
	text-decoration: none;
	background-color: #0e4097;
}
.menu-navegacao ul[role="menubar"] > li ul li.has-submenu:hover > a,
.menu-navegacao ul[role="menubar"] > li ul li:hover > a {
	font-weight: 700;
}

.menu-navegacao ul[role="menubar"] > li ul li.has-submenu > a{
	position: relative;
    color: #fff;
    text-decoration: none;
    background-color: #082c69;
    outline: none;
}
.menu-navegacao ul[role="menubar"] > li ul li.has-submenu > a:after{
	font: normal normal normal 14px/1 FontAwesome;
	content: "\f0d7";
	position: absolute;
	top: 50%;
	right: 15px;
	-webkit-transform: translate(0,-50%);
	transform: translate(0,-50%);
	color: #fff;
}
.menu-navegacao ul[role="menubar"] > li ul li.has-submenu.active > a:after{
	content: "\f0d8";
}
@media screen and (max-width: 1200px) {
	.menu-navegacao ul[role="menubar"] > li.has-submenu:after{
		top: 25px;
		right: 15px;
	}
	.menu-navegacao ul[role="menubar"] > li.active.has-submenu:after{
		content: "\f0d8";
	}
	.menu-navegacao ul[role="menubar"] > li ul{
		position: static;
	}
	.menu-navegacao ul[role="menubar"] > li ul li{
		min-width: inherit;
	}
}
@media screen and (max-width: 992px) {
	.menu-navegacao ul[role="menubar"] > li ul{
		display: inherit;
	}
}

/* Subsubmenu */

.menu-navegacao ul[role="menubar"] > li ul > li {
	position: relative;
}
.menu-navegacao ul[role="menubar"] > li ul > li > ul {
	width: 100%;
	padding: 0;
	display: none;
	position: absolute;
	left: 100%;
	top: 0;
}
.menu-navegacao ul[role="menubar"] > li.submenu--right ul > li > ul {
	left: inherit;
	right: 100%;
}

.menu-navegacao ul[role="menubar"] > li ul > li.submenu--right > ul {
	left: inherit;
	right: 100%;
}

.menu-navegacao ul[role="menubar"] > li > ul > li.active,
.menu-navegacao ul[role="menubar"] > li > ul > li.active > a,
.menu-navegacao ul[role="menubar"] > li > ul > li.active > a:focus,
.menu-navegacao ul[role="menubar"] > li > ul > li.active > a:active,
.menu-navegacao ul[role="menubar"] > li > ul > li:hover{
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	background-color: #0e4097;
}
.menu-navegacao ul[role="menubar"] > li > ul > li ul li a{
	font-weight: normal;
}
.menu-navegacao ul[role="menubar"] > li ul > li.active > ul {
	display: block;
	background-color: #0e4097;
}
.menu-navegacao ul[role="menubar"] > li ul > li > span {
	display: none;
}
@media screen and (max-width: 1200px) {
	.menu-navegacao ul[role="menubar"] > li ul > li,
	.menu-navegacao ul[role="menubar"] > li ul > li a{
		display: block;
	}
	.menu-navegacao ul[role="menubar"] > li > ul > li.active:after {
		top: 15px;
	}
	.menu-navegacao ul[role="menubar"] > li ul li:first-of-type{
		margin-top: 0;
	}
	.menu-navegacao ul[role="menubar"] > li ul > li.active > ul{
		position: static;
	}
	.menu-navegacao ul[role="menubar"] > li ul > li.active > ul,
	.menu-navegacao ul[role="menubar"] > li > ul > li.active,
	.menu-navegacao ul[role="menubar"] > li > ul > li.active > a,
	.menu-navegacao ul[role="menubar"] > li > ul > li.active > a:focus,
	.menu-navegacao ul[role="menubar"] > li > ul > li.active > a:active,
	.menu-navegacao ul[role="menubar"] > li > ul > li:hover ul li a{
		background-color: #2369b3;
	}
	.menu-navegacao ul[role="menubar"] > li > ul > li ul li a{
		padding: 7.5px 45px;
	}
	.menu-navegacao ul[role="menubar"] > li > ul > li:hover ul li a:hover{
		background-color: #0e4097;
	}
	/*.menu-navegacao ul[role="menubar"] > li ul li.has-submenu:after{
		content: "\f0d7";
		right: 15px;
		}*/
}

/***
* BOXES
***/

/* BOX DE LISTA SIMPLES COM BULLETS DE SETA */

.box-lista-setas {
	margin-bottom: 20px;
	overflow: hidden;
}
.box-lista-setas.no-margin-bottom {
	margin-bottom: 0;
}
.box-lista-setas__box-titulo {
	padding: 12px 15px 17px 50px;
	position: relative;
	border-top: 4px solid #2369b3;
	background-color: #e8ebed;
}
.box-lista-setas__box-titulo i {
	font-size: 26px;
	color: #00b7f7;
	position: absolute;
	top: 50%;
	left: 10px;
	-webkit-transform: translate(0,-50%);
	transform: translate(0,-50%);
}
.box-lista-setas.no-height
@media screen and (max-width: 1200px) {
	.box-lista-setas__box-titulo {
		padding: 12px 15px 17px;
	}
	.box-lista-setas__box-titulo i {
		display: none;
	}
}
.box-titulo__titulo {
	margin: 0;
	font-weight: 600;
	font-size: 1.2em;
	color: #2369b3;
}
.box-lista-setas__acesso_rapido {
	min-height: 152px;
	margin: 0;
	padding: 5px 0px;
	list-style-type: none;
}
.box-lista-setas__acesso_rapido.alt-height{
	min-height: 300px;
}
.box-lista-setas__acesso_rapido.altura-livre {
	min-height: 0;
	padding: 15px;
}
.box-lista-setas__acesso_rapido.altura-livre .titulo-3--menor2 { margin-bottom: 10px; }
.box-lista-setas__acesso_rapido.altura-livre textarea { height: 100px; }
@media screen and (max-width: 1200px) {
	.box-lista-setas__acesso_rapido { min-height: 0; }
}
@media screen and (max-width: 992px) {
	.box-lista-setas__acesso_rapido.alt-height{
		min-height: 0;
		margin-bottom: 40px;
	}
}
.box-lista-setas__acesso_rapido li { position: relative; }
.box-lista-setas__acesso_rapido li + li { margin-top: 5px; }
.box-lista-setas__acesso_rapido i {
	font-size: 13px;
	color: #00b7f7;
	position: absolute;
	top: 3px;
	left: 0;
}
.box-lista-setas__acesso_rapido a {
	padding-left: 15px;
	font-size: .9em;
	color: #454545;
	display: block;
}

.box-lista-setas__acesso_rapido span {
	padding-left: 15px;
	font-size: .9em;
	color: #454545;
	display: block;
}

.box-lista-setas__acesso_rapido_interno {
	margin: 0;
	padding: 5px 0px;
	list-style-type: none;
}

.box-lista-setas__acesso_rapido_interno a {
	padding-left: 30px;
	font-size: .9em;
	color: #454545;
	display: block;
}

/*box-panel*/

.box-panel {
	border-top:4px solid #2369b3;
	border-left: 1px solid #e5e7e8;
	border-right:1px solid #e5e7e8;
	border-bottom: 1px solid #e5e7e8;
	padding: 15px;
	border-radius: 0 0 4px 4px;
	margin-bottom: 10px;
}

.box-panel .box-titulo__titulo{
	margin-bottom: 10px;
}

/*box-list*/
.box-list {
	margin:0;
	padding:5px 0px;
	list-style-type: none;
}

.box-list li { position: relative; }
.box-list li + li { margin-top: 5px; }
.box-list i {
	font-size: 13px;
	color: #00b7f7;
	position: absolute;
	top: 3px;
	left: 0;
}

.box-list a {
	padding-left: 15px;
	font-size: .9em;
	color: #454545;
	display: block;
}

.box-list li span {
	padding-left: 15px;
	font-size: .9em;
	color: #454545;
	display: block;
	font-weight: normal;
}

.box-list-inner {
	padding-left: 15px;
	color: #454545;
	display: block;
	list-style-type: none;
}

.box-list-inner span {
	padding-left: 30px;
	color: #454545;
	display: block;
}

.box-lista-acesso-rapido {
	min-height: 220px;
	margin-bottom: 20px;
	padding: 15px;
	border-top: 4px solid #2369b3;
	border-left: 1px solid #e5e7e8;
	border-right: 1px solid #e5e7e8;
	border-bottom: 1px solid #e5e7e8;
	border-radius: 0 0 4px 4px;
}

@media screen and (max-width: 1200px) {
	.box-lista-acesso-rapido { min-height: 0; }
}
.box-lista-acesso-rapido .box-titulo__titulo { margin-bottom: 10px; }
.box-lista-acesso-rapido__lista {
	margin: 10px 0 0;
	padding: 0;
	list-style-type: none;
}
.box-lista-acesso-rapido__lista li + li { margin-top: 10px; }
.box-lista-acesso-rapido__lista i {
	font-size: 14px;
	color: #00b7f7;
	position: absolute;
	top: 3px;
	left: 0;
}
.box-lista-acesso-rapido__lista a {
	margin: 0;
	padding: 0 0 0 20px;
	font-weight: 600;
	font-size: 1em;
	color: #2369b3;
	list-style-type: none;
	display: block;
	position: relative;
}



.box-lista-setas__lista {
	min-height: 180px;
	margin: 0;
	padding: 10px 1px;
	list-style-type: none;
	border-left: 1px solid #f2f2f2;
	border-right: 1px solid #f2f2f2;
	border-bottom: 1px solid #f2f2f2;
	border-radius: 0 0 4px 4px;
	background-color: #fafafa;
}
.box-lista-setas__lista.alt-height{
	min-height: 300px;
}
.box-lista-setas__lista.altura-livre {
	min-height: 0;
	padding: 15px;
}
.box-lista-setas__lista.altura-livre .titulo-3--menor2 { margin-bottom: 10px; }
.box-lista-setas__lista.altura-livre textarea { height: 100px; }
@media screen and (max-width: 1200px) {
	.box-lista-setas__lista { min-height: 0; }
}
@media screen and (max-width: 992px) {
	.box-lista-setas__lista.alt-height{
		min-height: 0;
		margin-bottom: 40px;
	}
}
.box-lista-setas__lista li { position: relative; }
.box-lista-setas__lista li + li { margin-top: 10px; }
.box-lista-setas__lista i {
	font-size: 13px;
	color: #00b7f7;
	top: 3px;
	left: 0;
}
.box-lista-setas__lista a {
	padding-left: 5px;
	padding-right: 5px;
	font-size: .9em;
	color: #454545;
}

.box-lista-setas__lista span {
	font-size: .9em;
	color: #454545;
	padding-left: 50px;
	display: block;
	margin-top: -18px;
}



/* BOX DE LISTA SIMPLES COM BULLETS DE ÃCONES */

.box-lista-icones {
	min-height: 662px;
	margin-bottom: 20px;
	padding: 15px;
	border-top: 4px solid #2369b3;
	border-left: 1px solid #e5e7e8;
	border-right: 1px solid #e5e7e8;
	border-bottom: 1px solid #e5e7e8;
	border-radius: 0 0 4px 4px;
}
@media screen and (max-width: 1200px) {
	.box-lista-icones { min-height: 0; }
}
.box-lista-icones .box-titulo__titulo { margin-bottom: 10px; }
.box-lista-icones__lista {
	margin: 10px 0 0;
	padding: 0;
	list-style-type: none;
}
.box-lista-icones__lista li + li { margin-top: 10px; }
.box-lista-icones__lista i {
	font-size: 14px;
	color: #00b7f7;
	position: absolute;
	top: 3px;
	left: 0;
}
.box-lista-icones__lista a {
	margin: 0;
	padding: 0 0 0 20px;
	font-weight: 600;
	font-size: 1em;
	color: #2369b3;
	list-style-type: none;
	display: block;
	position: relative;
}

/* BOX DE IDENTIFICAÃ‡ÃƒO DE CADA PÃGINA */

.box-identificacao {
	width: 100%;
	margin-bottom: 40px;
	padding: 10px 0;
	position: relative;
	/*background-color: #f5f5f5;*/
	background-color: #dcdcdc;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}
.box-identificacao.box-identificacao--sem-margem{
	margin-bottom: 0;
	position: relative;
	z-index: 1;
}

.box-identificacao h2 {
	width: 100%;
	margin: 4px;
	font-weight: 700;
	color: #2369b3;
	font-size: 1.75em;
	float: left;
}
.box-identificacao .titulo-home {
	width: 100%;
	padding: 0;
	font-size: 1.6em;
	text-align: center;
	float: none;
}
.box-identificacao a[role="button"] { float: right; }
@media screen and (max-width: 992px) {
	.box-identificacao h2 {
		width: 100%;
		text-align: center;
		float: none;
	}
	.box-identificacao a[role="button"] {
		margin-top: 20px;
		float: none;
	}
}

/* BOX DE APRESENTAÃ‡ÃƒO DOS DADOS DE CADA PÃGINA */

.box-apresentacao {
	width: 100%;
	margin: 0 0 50px;
	padding: 55px 0 0;
	position: relative;
}
.box-apresentacao:before,
.box-apresentacao:after {
	content: " ";
	display: table;
}
.box-apresentacao:after { clear: both; }

/* BOX DE TEXTO, COLOCADO Ã€ ESQUERDA */

.box-texto,
.box-texto--sem-dica {
	width: 50%;
	padding-bottom: 100px;
	position: relative;
	float: left;
}
.row .box-texto,
.row .box-texto--sem-dica { width: 100%; }
.box-texto--sem-dica { padding-bottom: 0; }
@media screen and (max-width: 992px) {
	.box-texto,
	.box-texto--sem-dica {
		width: 100%;
		padding: 0;
	}
}

/* BOX DE VALORES, COLOCADO Ã€ DIREITA */

.box-valores {
	width: 40%;
	float: right;
}
@media screen and (max-width: 992px) {
	.box-valores {
		width: 100%;
		margin-top: 50px;
	}
}
.box-valores ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	border-bottom: 1px solid #ccc;
	background-color: #fff;
}
.box-valores li {
	padding: 10px 10px;
	border-top: 1px solid #ebebeb;
	background-color: #f5f5f5;
}
.box-valores span,
.box-valores strong {
	color: #454545;
	text-align: right;
	text-transform: uppercase;
	display: block;
}
.box-valores span { font-size: .9em; }
.box-valores strong { font-size: 1.2em; }

/* BOX DE DICA */

.box-dica {
	padding: 10px;
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #d0ebf5;
}
@media screen and (max-width: 992px) {
	.box-dica {
		margin-top: 20px;
		position: static;
		left: auto;
		bottom: auto;
	}
}
.box-dica small {
	color: #454545;
	display: block;
}

/* BOX DE GRÃFICOS SIMPLES */

.box-grafico {
	margin-bottom: 30px;
	background-color: #fff;
}
.box-grafico .box-grafico__titulo {
	margin: 0;
	padding: 10px 15px;
	font-weight: 700;
	font-size: 1.3em;
	color: #2369b3;
	text-align: center;
	background-color: #e8ebed;
}
.box-grafico .conteudo {
	padding: 0 7px;
	position: relative;
	border-left: 1px solid #ebebeb;
	border-right: 1px solid #ebebeb;
	background: #fafafa;
}
.box-grafico .conteudo .grafico {
	width: 100%;
	height: 335px;
	margin: 0 auto;
	padding: 30px 0;
	overflow: hidden;
}
.box-grafico .conteudo .grafico svg {
	margin: 0 auto;
	display: block;
}
.box-grafico .conteudo table { width: 100%; }
.box-grafico .conteudo table th {
	padding: 8px 6px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 1em;
	line-height: 1.2em;
	color: #2369b3;
	text-transform: uppercase;
	word-break: normal;
	border-top: 1px solid #ebebeb;
	background-color: #f5f5f5;
}
.box-grafico .conteudo table th + th { text-align: right; }
.box-grafico .conteudo table td {
	padding: 7px 5px 7px 20px;
	font-size: 0.875em;
	color: #333333;
	position: relative;
	border-top: 1px solid #ebebeb;
	background-color: #fff;
}
.box-grafico .conteudo table td + td {
	text-align: right;
	color: #eb384a;
}
.box-grafico .conteudo table tr:nth-child(even) td { background-color: #f7f9fa; }
.box-grafico .conteudo table tr.ativo td { background-color: #d0cece; }
.box-grafico .conteudo table td span {
	padding: 0 4px;
	font-weight: 700;
	font-size: 1.2em;
	color: #f0a800;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.box-grafico .conteudo table td small { display: block; }
.box-grafico .total {
	padding: 18px 0;
	border-top: 1px solid #ebebeb;
}
.box-grafico .total span {
	font-weight: 700;
	font-size: 1.2em;
	color: #2369b3;
	text-align: right;
	text-transform: uppercase;
	display: block;
}
.box-grafico .total strong {
	margin-top: -5px;
	font-weight: 400;
	font-size: 1.75em;
	color: #eb384a;
	text-align: right;
	text-transform: uppercase;
	display: block;
}
.box-grafico .total small {
	text-align: right;
	display: block;
	font-size: 75%;
}
.box-grafico .rodape {
	padding: 15px;
	border: 1px solid #ebebeb;
	border-radius: 0 0 4px 4px;
	background-color: #fafafa;
}
.box-grafico .rodape a[role="button"] { display: block; }

/* BOX DE RESULTADO DAS TABELAS */

.box-total {
	padding: 10px;
	overflow: hidden;
	background-color: #e1e1e1;
}
.box-total span {
	width: 20%;
	font-weight: 400;
	font-size: .9em;
	text-transform: uppercase;
	color: #454545;
	display: block;
	float: right;
}
.box-total strong {
	width: 20%;
	font-weight: 700;
	font-size: 1.7em;
	color: #00bd62;
	display: block;
	float: right;
	clear: both;
}
@media screen and (max-width: 992px) {
	.box-total span,
	.box-total strong {
		width: 100%;
		float: left;
		clear: none;
	}
}

/* BOX MENU FLUTUANTE */

#linha-menu-flutuante {
	width: 100%;
	height: 0;
	border: 1px solid #dcdcdc;
	margin: 1px;
	display:inline-block;
}

.sessao-duvidas {
	width: 100%;
	position: relative;
	z-index: 10;
	background-color: #f7f9fa;
}
.sessao-duvidas .content:before,
.sessao-duvidas .content:after {
	content: " ";
	display: table;
}
.sessao-duvidas .content:after { clear: both; }
.box-menu-flutuante {
	padding: 7px;
	float: right;
	position: relative;
	border-radius: 4px 4px 0 0;
	border: 1px solid #eff1f2;
	border-bottom: none;
	background-color: #fff;
}
@media screen and (max-width: 768px) {
	.box-menu-flutuante { display: none; }
}
.box-duvidas__botao-duvida, .box-menu-flutuante-notificacao {
	height: 48px;
	min-height: 48px;
	padding: 5px 15px 5px 40px;
	display: table;
	font-weight: 700;
	font-size: 1.4em;
	color: #fff;
	text-transform: uppercase;
	text-align: right;
	float: left;
	position: relative;
	border-radius: 3px;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
	border: 1px solid #fff;
	background: #00ccff;
	transition: background-color .2s ease-in-out, color .2s ease-in-out;
}
.box-duvidas__botao-duvida + .box-duvidas__botao-duvida,
.box-menu-flutuante-notificacao + .box-menu-flutuante-notificacao
{ margin-left: 10px; }
@media screen and (max-width: 600px) {
	.box-duvidas__botao-duvida,
	.box-menu-flutuante-notificacao
	{ float: none; }
	.box-duvidas__botao-duvida + .box-duvidas__botao-duvida,
	.box-menu-flutuante-notificacao + .box-menu-flutuante-notificacao
	{ margin-left: 0; }
}
.box-duvidas__botao-duvida span,
.box-menu-flutuante-notificacao span{
	display: table-cell;
	vertical-align: middle;
}
.box-duvidas__botao-duvida i, .box-menu-flutuante-notificacao i {
	font-size: 24px;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 10px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	transition: color 0.2s ease-in-out;
}

/* Hover */

.box-duvidas__botao-duvida:hover,
.box-duvidas__botao-duvida:focus,
.box-menu-flutuante-notificacao:hover,
.box-menu-flutuante-notificacao:focus{
	color: #2369b3;
	background-color: #e8ebed;
}
.box-duvidas__botao-duvida:hover i,
.box-duvidas__botao-duvida:focus i,
.box-menu-flutuante-notificacao:hover i,
.box-menu-flutuante-notificacao:focus i
{ color: #2369b3; }

/* VERSÃƒO COMPACTA NA LATERAL */

.box-menu-flutuante.compacto {
	position: fixed;
	top: 50%;
	right: 0;
	border-radius: 4px 0 0 4px;
	border-bottom: 1px solid #eff1f2;
	-webkit-transform: translate(0,-50%);
	transform: translate(0,-50%);
}
@media screen and (max-width: 500px) {
	.box-menu-flutuante.compacto {
		position: absolute;
		top: 61px;
		z-index: 2;
		-webkit-transform: translate(0,0);
		transform: translate(0,0);
	}
}
.box-menu-flutuante.compacto .box-duvidas__botao-duvida,
.box-menu-flutuante-notificacao
{ padding: 5px 20px; }

.box-menu-flutuante.compacto .box-duvidas__botao-duvida i,
.box-menu-flutuante-notificacao i
{
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.box-menu-flutuante.compacto .box-duvidas__botao-duvida span,
.box-menu-flutuante-notificacao span
{ display: none; }

/* BOX DÃšVIDAS - FORMULÃRIO */

.box-duvidas__box {
	width: 300px;
	padding: 15px;
	position: absolute;
	top: 50%;
	right: -310px;
	opacity: 0;
	border: 1px solid #dbdbdb;
	background-color: #fafafa;
	-webkit-transform: translate(0,-50%);
	transform: translate(0,-50%);
	-webkit-transition: opacity 400ms ease-in-out, right 400ms ease-in-out;
	transition: opacity 400ms ease-in-out, right 400ms ease-in-out;
}
.box-duvidas__box.ativo {
	right: 80px;
	opacity: 1;
}
@media screen and (max-width: 500px) {
	.box-duvidas__box { width: 207px; }
}
.box-duvidas__box:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: -10px;
	border-top: 10px solid #fafafa;
	border-left: 10px solid #fafafa;
	border-right: 10px solid #fafafa;
	border-bottom: 10px solid #fafafa;
	box-shadow: 1px 1px #dbdbdb;
	-webkit-transform: translate(0,-50%) rotate(-45deg);
	transform: translate(0,-50%) rotate(-45deg);
}

.botao-fechar-box-duvidas {
	padding: 3px 7px;
	position: absolute;
	top: 5px;
	right: 5px;
}

.box-menu-flutuante .passos {
	max-height: 0;
	opacity: 0;
	overflow: auto;
}
.box-menu-flutuante .passos.ativo {
	max-height: 400px;
	opacity: 1;
	-webkit-transition: opacity 400ms ease-in-out;
	transition: opacity 400ms ease-in-out;
}

.box-duvidas__box form textarea { resize: none; }
.box-duvidas__box form input[type="submit"] { margin-top: 10px; }

/* LISTA DE DEFINIÃ‡ÃƒO */

.lista-definicao dl { margin-top: 10px; }
.lista-definicao dl dt span {
	font-weight: 400;
	font-style: italic;
	font-size: .9em;
	display: block;
}
.lista-definicao dl dd { font-size: .9em; }
.lista-definicao dl dd + dt { margin-top: 15px; }

/* Ancorado na lateral da pÃ¡gina */

.box-menu-flutuante.ancora {
	padding: 7px;
	position: fixed;
	top: 50%;
	right: 0;
	border-radius: 4px 0 0 4px;
	border: 1px solid #f1f3f4;
	-webkit-transform: translate(0,-50%);
	transform: translate(0,-50%);
}
.box-menu-flutuante.ancora .box-duvidas__botao-duvida {
	width: 38px;
	height: 38px;
	min-height: 38px;
	padding: 0;
	overflow: hidden;
	float: none;
}
.box-menu-flutuante.ancora .box-duvidas__botao-duvida + .box-duvidas__botao-duvida { margin: 10px 0 0; }
.box-menu-flutuante.ancora .box-duvidas__botao-duvida span { display: none; }
.box-menu-flutuante.ancora .box-duvidas__botao-duvida i {
	width: 38px;
	height: 38px;
	margin: -2px 0 0 -9px;
	line-height: 38px;
	display: block;
	position: static;
	top: auto;
	left: auto;
	-webkit-transform: translate(0,0);
	transform: translate(0,0);
}

/* CARROSSEL DE GRÃFICOS */

.carrossel-graficos {
	overflow: hidden;
	position: relative;
}
.carrossel-graficos .botao-anterior,
.carrossel-graficos .botao-proximo {
	font-size: 60px;
	color: #dbdbdb;
	cursor: pointer;
	display: none;
	position: absolute;
	top: 134px;
	z-index: 999;
	outline: none;
	border: none;
	background: none;
}
@media screen and (max-width: 1199px) {
	.carrossel-graficos .botao-anterior,
	.carrossel-graficos .botao-proximo {
		padding: 0 3px;
	}
}
.carrossel-graficos .botao-anterior { left: 0; }
.carrossel-graficos .botao-proximo { right: 0; }
.carrossel-graficos .paginacao {
	width: 80%;
	height: 24px;
	padding: 0 12px;
	display: none;
	position: absolute;
	top: 15px;
	left: 50%;
	z-index: 999;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
.carrossel-graficos .botao-anterior.active,
.carrossel-graficos .botao-proximo.active,
.carrossel-graficos .paginacao.active { display: block; }
@media screen and (max-width: 992px) {
	.carrossel-graficos .botao-anterior,
	.carrossel-graficos .botao-proximo { display: none !important; }
}
.carrossel-box {
	width: 100%;
	position: absolute;
	top: 0;
	left: -9999px;
}
.carrossel-box:first-of-type {
	position: static;
	top: auto;
	left: auto;
}

/* BOX DE TÃTULO ENTRE SEÃ‡Ã•ES */

.box-titulo { margin-bottom: 30px; }
.box-titulo .box-titulo__titulo {
	padding: 6px 15px 12px;
	font-weight: 700;
	font-size: 1.72em;
	color: #2369b3;
	border-top: 4px solid #2369b3;
	background-color: #e8ebed;
}
.box-titulo__titulo-menor {
	margin: 0;
	padding: 23px 20px;
	font-weight: 700;
	font-size: 1.2em;
	color: #2369b3;
	display: block;
	background-color: #e8ebed;
}

/* BOX DE NÃšMEROS DO GOVERNO */

.box-numeros {
	margin-bottom: 40px;
	padding: 15px 10px 0;
	border-top: 1px solid #dbdbdb;
	border-bottom: 1px solid #dbdbdb;
	background-color: #f5f5f5;
}
.box-numeros .box-numeros__titulo {
	margin: 0 0 5px;
	font-weight: 700;
	font-size: 1.9em;
	color: #565a5c;
	line-height: 1.06em;
}
.box-numeros p { font-size: 1.2em; }
.box-numeros .resultado {
	font-weight: 400;
	font-size: 2.6em;
	color: #eb384a;
	word-break: normal;
}
@media screen and (max-width: 420px) {
	.box-numeros .resultado { font-size: 1.9em; }
}

/* BOX BUSCA */

.box-busca {
	margin-top: 50px;
	margin-bottom: 50px;
	padding: 5px 10px 10px;
	border-left: 1px solid #dbdbdb;
	border-right: 1px solid #dbdbdb;
	border-bottom: 1px solid #dbdbdb;
	background-color: #f5f5f5;
}
.box-busca__box-titulo {
	margin: 0 0 10px;
	padding: 13px 15px 15px;
	background-color: #e8ebed;
	border-bottom: 1px solid #dbdbdb;
}
.box-busca .box-busca__box-titulo { margin: -5px -10px 50px; }
.box-busca .box-busca__box-titulo.lesser { margin: -5px -10px 10px; }
.box-busca__titulo {
	margin: 0;
	font-weight: 700;
	font-size: 1.15em;
	color: #2369b3;
	text-transform: uppercase;
}
.box-busca__box-rodape {
	margin: 50px -10px -10px;
	padding: 13px 15px 15px;
	background-color: #e8ebed;
	text-align: center;
}

.box-busca__box-conteudo .box-busca-form{
	margin-top: 30px;
	margin-bottom: 30px;
}

.box-busca__box-rodape button{
	margin: auto;
	padding: 10px 125px;
	color: #fff;
	background-color: #00ccff;
}

/* BOX VEJA TAMBÃ‰M */

.box-veja-tambem {
	width: 100%;
	padding: 0;
}
.box-veja-tambem .box-veja-tambem__titulo {
	margin: 0;
	padding: 6px 0 32px;
	font-weight: 700;
	font-size: 1.72em;
	color: #2369b3;
	border-top: 4px solid #2369b3;
}
.box-veja-tambem ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.box-veja-tambem ul li { border-top: 1px solid #dbdbdb; }
.box-veja-tambem ul a {
	padding: 13px 0;
	font-weight: 700;
	color: #00b4f5;
	display: block;
	transition: background-color .2s ease-in-out, color .2s ease-in-out;
}

#tab-compartilhe:before,
#tab-compartilhe:after {
	content: " ";
	display: table;
}
#tab-compartilhe:after { clear: both; }

/* BOX COMPARTILHE */

.box-compartilhe {
	padding: 80px 0 0;
	background-color: #f7f9fa;
}
.box-compartilhe + .box-compartilhe { margin-top: 0; }
.box-compartilhe .container { padding-bottom: 30px; }

.box-compartilhe img { width: 100%; }
.captcha-img { height: 34px; }

.box-compartilhe .tab-content {
	padding: 25px 1% 30px 15px;
	border: 1px solid #dbdbdb;
	background-color: #fff;
}

.box-compartilhe .nav-tabs {
	width: 100%;
	margin: 0;
	padding: 39px 0 0;
	list-style-type: none;
	border-top: 4px solid #2369b3;
}
.box-compartilhe .nav-tabs li {
	width: 33.3333333%;
	display: inline-block;
	vertical-align: top;
}
@media screen and (max-width: 768px) {
	.box-compartilhe .nav-tabs li {
		width: 100%;
		display: block;
	}
}
.box-compartilhe .nav-tabs li a {
	width: 100%;
	margin-bottom: 0;
	padding: 10px 20px 19px;
	font-weight: bold;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	font-size: 1em;
	color: #0cf;
	line-height: 1.4;
	text-transform: uppercase;
	text-decoration: none;
	position: relative;
	transition: background-color .2s ease-in-out, color .2s ease-in-out;
}
@media screen and (max-width: 768px) {
	.box-compartilhe .nav-tabs li a {
		width: 100%;
		display: block;
	}
}
.box-compartilhe .nav-tabs li a:after {
	width: 0;
	height: 0;
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	bottom: -24px;
	border-top: 0 solid #006db6;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid transparent;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	transition: border-top .2s ease-in-out, bottom .2s ease-in-out;
}
.box-compartilhe .nav-tabs li a i {
	margin-right: 5px;
	font-size: 20px;
	color: #0cf;
	transition: color .2s ease-in-out;
}

.box-compartilhe .box-compartilhe__titulo {
	margin-bottom: 5px;
	font-weight: 700;
	font-size: 1em;
	color: #666;
	text-transform: uppercase;
	display: block;
}

.box-compartilhe .busca-simples {
	width: 100%;
	clear: both;
}
@media screen and (max-width: 1199px) {
	.box-compartilhe .busca-simples {
		margin-top: 15px;
		clear: none;
	}
}
.box-compartilhe .box-midias-sociais + .busca-simples {
	width: 78%;
	margin-top: 25px;
	padding-left: 1%;
	float: left;
	clear: none;
}
@media screen and (max-width: 1199px) {
	.box-compartilhe .box-midias-sociais + .busca-simples {
		width: 100%;
		margin-top: 25px;
		padding-left: 1%;
		float: none;
	}
}
.box-compartilhe textarea { height: 100px; }
.box-compartilhe input[type="submit"],
.box-compartilhe button[type="submit"],
.box-incorporar button[type="submit"] {
	height: auto;
	min-height: 34px;
	padding: 6px 15px;
	font-weight: bold;
	font-size: 1em;
	text-align: center;
	color: #00b4f5;
	line-height: 1.4;
	text-transform: uppercase;
	cursor: pointer;
	border: 1px solid #c4e8f5;
	border-radius: 2px;
	background-color: #fafafa;
	transition: background-color .2s ease-in-out, color .2s ease-in-out;
}

/* Hover */

.box-compartilhe .nav-tabs li a:hover,
.box-compartilhe .nav-tabs li a:focus,
.box-compartilhe .nav-tabs li.active a {
	color: #006db6;
	border: none;
	background: none;
	border-radius: 0;
	border-bottom: 8px solid #006db6;
}
.box-compartilhe .nav-tabs li.active a:after {
	bottom: -32px;
	border-top: 8px solid #006db6;
}
.box-compartilhe .nav-tabs li a:hover i,
.box-compartilhe .nav-tabs li a:focus i,
.box-compartilhe .nav-tabs li.active a i { color: #006db6; }

/* LISTA */

.box-compartilhe__lista {
	padding: 0;
	list-style-type: none;
}
.box-compartilhe__lista li {
	position: relative;
}
.box-compartilhe__lista li + li { margin-top: 10px; }
.box-compartilhe__lista a {
	padding-left: 21px;
	font-weight: 700;
	font-size: 1em;
	color: #00b4f5;
	display: block;
}
.box-compartilhe__lista li i {
	font-size: 1.2em;
	color: #00b4f5;
	position: absolute;
	top: 2px;
	left: 0;
}

/* BOX DE MÃDIAS SOCIAIS DO RODAPÃ‰ */

.box-midias-sociais {
	width: 22%;
	float: left;
}
@media screen and (max-width: 1199px) {
	.box-midias-sociais {
		width: 100%;
		margin-bottom: 0;
		float: none;
	}
}
.box-midias-sociais .box-midias-sociais__titulo {
	margin-bottom: 3px;
	font-weight: 700;
	font-size: 1em;
	color: #666;
	text-transform: uppercase;
	display: block;
}
.box-midias-sociais ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.box-midias-sociais li {
	display: inline-block;
	vertical-align: top;
}
.box-midias-sociais ul li+li { margin-left: 6%; }
.box-midias-sociais ul a {
	margin: 0 -2px;
	padding: 0 2px;
	color: #0091ea;
	display: block;
	border-radius: 4px;
	overflow: hidden;
	transition: background-color .2s ease-in-out, color .2s ease-in-out;
}
.box-midias-sociais ul a span {
	position: absolute;
	left: -9999px;
}
.box-midias-sociais .fa {
	font-size: 40px;
	transition: background-color .2s ease-in-out, color .2s ease-in-out;
}
.box-midias-sociais .fa-whatsapp { color: #07cc4e; }
.box-midias-sociais .fa-facebook-square { color: #369; }
.box-midias-sociais .fa-twitter-square { color: #39c; }
.box-midias-sociais .fa-qrcode { color: #000; }
.box-midias-sociais .botao-envelope {
	width: 35px;
	height: 35px;
	margin: 2px 0 0;
	padding-top: 4px;
	text-align: center;
	display: inline-block;
	vertical-align: top;
	border-radius: 7px;
	transition: background-color .2s ease-in-out, color .2s ease-in-out, box-shadow .2s ease-in-out;
	background-color: #09f;
}
.box-midias-sociais .botao-envelope i {
	margin: 0;
	font-size: 24px;
	color: #fff;
}

/* BOX SIMPLES */

.box-simples {
	margin-bottom: 30px;
	padding: 20px;
	border: 1px solid #dbdbdb;
}
.box-simples:before,
.box-simples:after {
	content: " ";
	display: table;
}
.box-simples:after { clear: both; }
.box-simples table.ativo { margin: 0; }
.box-titulo + .box-simples { margin-top: -30px; }

/* BOX DE EXIBIÃ‡ÃƒO DE DADOS TABELADOS */

.dados-tabelados { width: 100%; }
.dados-tabelados .row {
	padding-bottom: 10px;
}
.dados-tabelados .no-padding {
	padding-left: 0px;
	padding-right: 0px;
}
.dados-tabelados span,
.dados-detalhados span {
	color: #333;
	text-transform: uppercase;
	word-break: break-word;
	display: block;
}
.dados-tabelados b,
.dados-detalhados b,
.dados-detalhados .btwline{
	font-weight: 600;
	font-size: 1em;
	color: #000;
	word-break: normal;
	display: block;
}
.dados-tabelados strong,
.dados-detalhados strong {
	font-weight: 600;
	font-size: 1.0em;
	color: #000;
	line-height: 1.1em;
	word-break: normal;
	display: block;
	padding-top: 8px;
}
.dados-tabelados strong + span,
.dados-detalhados strong + span { margin-top: 5px; }
.dados-tabelados a,
.dados-detalhados a {
	color: #0091ea;
	word-break: normal;
}
.dados-tabelados .dados-tabelados__titulo {
	margin-bottom: 10px;
	font-weight: 700;
	color: #2369b3;
	font-size: 1.15em;
	text-transform: none;
}

hr.bordered{
	border-top: 3px solid #2369b3;
}

/* BOX DE EXIBIÃ‡ÃƒO DE DADOS DETALHADOS */

.dados-detalhados {
	width: 100%;
	margin: 40px 0 40px;
	overflow: hidden;
	border-radius: 4px;
	border: 1px solid #ccc;
}
.dados-detalhados--tooltip { overflow: visible; }
.dados-detalhados .dados-detalhados__titulo {
	margin-bottom: 10px;
	font-weight: 700;
	color: #2369b3;
	font-size: 1.15em;
	text-transform: none;
}
.dados-detalhados .quebra {
	margin: 0;
	padding: 0;
	height: 1px;
	display: block;
	border: none;
	border-top: 1px solid #dbdbdb;
}
.dados-detalhados .bloco { padding: 15px 15px; }
.dados-detalhados .bloco-cinza {
	padding: 15px 15px;
	background-color: #fafafa;
}
.dados-detalhados > button,
.grafico-tabela__botao-collapse {
	width: 100%;
	padding: 10px 10px 10px 40px;
	font-weight: 700;
	font-size: 1.15em;
	color: #2369b3;
	text-align: left;
	text-transform: uppercase;
	position: relative;
	border: none;
	background-color: #e8ebed;
}
.grafico-visualizar__botao-collapse {
	font-weight: 700;
	color: #2369b3;
	text-align: left;
	text-transform: uppercase;
	position: relative;
	outline: none;
	border: none;
	background: none;
}

.grafico-visualizar__botao-collapse:focus, .grafico-visualizar__botao-collapse:hover, .grafico-visualizar__botao-collapse:active {
	background: none !important;
	color: #2369b3 !important;
	border: none !important;
}

.dados-detalhados > button .fa-minus-square-o,
.dados-detalhados > button .fa-plus-square-o,
.grafico-tabela__botao-collapse .fa-minus-square-o,
.grafico-tabela__botao-collapse .fa-plus-square-o {
	margin-top: -8px;
	position: absolute;
	top: 50%;
	left: 10px;
}

.grafico-visualizar__botao-collapse > .fa-minus-square-o,
.grafico-visualizar__botao-collapse > .fa-plus-square-o {
	margin-top: -12px;
	position: absolute;
	top: 50%;
	left: 10px;
	border: none;
}

.grafico-visualizar__botao-collapse:focus > .fa-minus-square-o,
.grafico-visualizar__botao-collapse:focus > .fa-plus-square-o {
	border: none !important;
}

.dados-detalhados > button .fa-caret-down,
.dados-detalhados > button .fa-plus-square-o,
.grafico-tabela__botao-collapse .fa-caret-down,
.grafico-tabela__botao-collapse .fa-plus-square-o { display: none; }


.dados-detalhados > button.collapsed .fa-caret-down,
.dados-detalhados > button.collapsed .fa-plus-square-o,
.grafico-tabela__botao-collapse.collapsed .fa-caret-down,
.grafico-tabela__botao-collapse.collapsed .fa-plus-square-o { display: block; }

.dados-detalhados > button.collapsed .fa-caret-up,
.dados-detalhados > button.collapsed .fa-minus-square-o,
.grafico-tabela__botao-collapse.collapsed .fa-caret-up,
.grafico-tabela__botao-collapse.collapsed .fa-minus-square-o { display: none; }

.grafico-visualizar__botao-collapse .fa-plus-square-o { display: none; }
.grafico-visualizar__botao-collapse.collapsed .fa-plus-square-o { display: block; }
.grafico-visualizar__botao-collapse.collapsed .fa-minus-square-o { display: none; }

.dados-detalhados.sem-margem  {
	margin: 20px 0 40px;
}

/* BOX DE EXIBIÃ‡ÃƒO DE DADOS DO TOPO */

.box-dados-detalhes {
	width: 100%;
	margin-top: 50px;
}
.box-dados-detalhes .box-dados-detalhes__titulo {
	margin: 0;
	padding: 6px 15px 12px;
	font-weight: 700;
	font-size: 1.72em;
	color: #2369b3;
	border-top: 4px solid #2369b3;
	background-color: #e8ebed;
}
.box-dados-detalhes .box-dados-detalhes__titulo-simples {
	margin-bottom: 30px;
	font-weight: 700;
	font-size: 1.3em;
	color: #000;
	line-height: 1.1em;
	display: block;
}
.box-dados-detalhes b + .box-dados-detalhes__titulo-simples { margin-top: 30px; }
.box-dados-detalhes span {
	font-size: .9em;
	text-transform: uppercase;
	color: #454545;
	display: block;
}
.box-dados-detalhes b {
	font-weight: 700;
	font-size: 1.2em;
	color: #565a5c;
	display: block;
}
.box-dados-detalhes hr {
	padding: 0;
	height: 1px;
	display: block;
	border-top: 1px solid #dbdbdb;
}

/* BOX DE LISTAS */

.box-listas {
	width: 100%;
	margin: 40px 0 0;
	/*background-color: #f7f9fa;*/
}
.box-listas.no-margin-top{
	margin-top: 0;
}
.box-listas__titulo {
	margin: 0;
	padding: 6px 0 32px;
	font-weight: 700;
	font-size: 1.72em;
	color: #2369b3;
	border-top: 4px solid #2369b3;
}
.box-listas__subtitulo {
	margin: 0;
	padding: 11px 8px 12px;
	font-weight: 700;
	font-size: 1.3em;
	color: #2369b3;
	text-transform: uppercase;
	background-color: #e8ebed;
}
.box-listas__subtitulo.bordered {
	border-top: 2px solid #2369b3;
}
.box-listas ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.box-listas.multiple-rows ul{
	margin: 0 0 25px 0;
}
.box-listas li {
	border-bottom: 1px solid #dbdbdb;
}
.box-listas li a {
	padding: 10px 10px;
	font-weight: 700;
	font-size: 1.1em;
	color: #00b4f5;
	text-decoration: none;
	display: block;
	background-color: #fff;
	transition: background-color .2s ease-in-out, color .2s ease-in-out;
}
.box-listas li a small {
	color: #295FCC;
	font-size: 70%;
}
.box-listas li a small.acao { color: #DD4477; }

.box-listas li a + p{
	padding: 10px;
}

.box-listas ul.bordered li {
	border-right: 1px solid #ebebeb;
	border-left: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
}
.box-listas ul.numbered{
	overflow: hidden;
}
.box-listas ul.numbered li{
	position: relative;
}
.box-listas ul.numbered li > a{
	padding-left: 45px;
}
.box-listas ul.numbered li:before{
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 26px;
	z-index: 1;
	background-color: #f0a800;
	height: 105%;
	width: 3px;
}
.box-listas ul.numbered li:first-of-type:before{
	bottom: -50%;
}
.box-listas ul.numbered li:last-of-type:before{
	bottom: 50%;
}
.box-listas ul.numbered li span{
	display: block;
	width: 22px;
	height: 22px;
	line-height: 22px;
	background-color: #f0a800;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 16px;
	margin-top: -11px;
	color: #fff;
	text-align: center;
	font-size: 12px;
	z-index: 1;
}

.box-listas ul li ul{

}

.box-listas ul li ul li,
.box-listas ul.bordered li ul li{
	border: none;
}
.box-listas ul li ul li a{
	padding: 5px 10px;
	font-weight: normal;
	font-size: 1em;
	text-decoration: underline;
}
/* Hover */

.box-listas li a:hover,
.box-listas li a:focus,
.box-listas li a.ativo {
	color: #fff;
	background-color: #006db6;
}

/* Lista com collapse */
.box-listas .collapse,
.box-listas .collapsing{
	padding: 10px;
}

/* BOX PADRÃƒO DA HOME */

.box-padrao {
	width: 100%;
	margin: 35px 0 0;
}

div.box-padrao { margin: 10px 0 0; }
div.box-padrao ~ div.box-padrao {
	margin: 35px 0 0;
}

.box-padrao__titulo {
	margin: 0;
	padding: 6px 0 32px;
	font-weight: 700;
	font-size: 1.72em;
	color: #2369b3;
	border-top: 4px solid #2369b3;
}
.box-padrao__titulo--sem-margem {
	margin: 0;
	padding: 6px 0 0;
	font-weight: 700;
	font-size: 1.72em;
	color: #2369b3;
	border-top: 4px solid #2369b3;
}
.box-padrao__titulo--sem-margem-sem-borda {
	margin: 0;
	padding: 6px 0 0;
	font-weight: 700;
	font-size: 1.72em;
	color: #2369b3;
}
.box-padrao__titulo--com-margem {
	margin: 50px 0 20px;
	padding: 6px 0 0;
	font-weight: 700;
	font-size: 1.72em;
	color: #2369b3;
	border-top: 4px solid #2369b3;
}

/* BORDA SUPERIOR PARA O TÃTULO E BOTÃƒO */

.box-padrao__box-titulo {
	border-top: 4px solid #2369b3;
}
.box-padrao__box-titulo:before,
.box-padrao__box-titulo:after {
	content: " ";
	display: table;
}
.box-padrao__box-titulo:after { clear: both; }
.box-padrao__box-titulo .box-padrao__box-esquerda {
	max-width: 60%;
	float: left;
}
@media screen and (max-width: 780px) {
	.box-padrao__box-titulo .box-padrao__box-esquerda {
		max-width: 100%;
		float: none;
	}
	.box-padrao__box-titulo .box-padrao__box-esquerda .box-padrao__titulo{
		padding-bottom: 15px;
	}
	.box-padrao__box-titulo a[role="button"]{
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 0 30px !important;
		float: none !important;
	}
}
.box-padrao__box-titulo .box-padrao__titulo,
.box-padrao__box-titulo .box-padrao__titulo--sem-margem,
.box-padrao__box-titulo .box-padrao__titulo--com-margem {
	border: none;
}
.box-padrao__box-titulo a[role="button"] {
	max-width: 30%;
	margin: 10px 0 30px;
	float: right;
}
.box-padrao__box-titulo p {
	clear: both;
}

/* BOX DE LISTA ORDENADA */

.box-lista-ordenada {
	margin-top: 10px;
	padding: 8px 15px 15px;
	border: 1px solid #dbdbdb;
	background-color: #fafafa;
}
.box-lista-ordenada__titulo {
	margin: 0;
	font-weight: 700;
	font-size: 1.43em;
	color: #2369b3;
}
.box-lista-ordenada ol {
	padding: 0;
	list-style-type: none;
}
.box-lista-ordenada li {
	padding-left: 22px;
	font-weight: 700;
	font-size: 1em;
	color: #00b4f5;
	position: relative;
}
.box-lista-ordenada li a {
	font-size: 1em;
	color: #00b4f5;
	display: block;
}
.box-lista-ordenada li span {
	font-size: 1em;
	color: #00b4f5;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 767px) {
	.margin-bottom-sm-40{
		margin-bottom: 40px;
	}
}

/* BOX DE DADOS AO ANO */

.box-dados-ano {
	width: 100%;
	margin-bottom: 10px;
}
.box-dados-ano__titulo {
	margin: 0;
	font-weight: 700;
	font-size: 18px;
	color: #2369b3;
	text-align: center;
}
.box-dados-ano p { margin: 0; }
.box-dados-ano hr {
	margin: 10px 0;
	border-top: 1px solid #dbdbdb;
}
.box-dados-ano ul {
	margin: 10px 0 0;
	padding: 0;
	list-style-type: none;
	overflow: hidden;
}
.box-dados-ano li {
	float: left;
	border-radius: 4px;
	border: 1px solid #c4e8f5;
}
#desabilitado {
	border: 1px solid #C0C0C0 !important;
	background-color: #F5F5F5 !important;
}
.box-dados-ano li + li { margin-left: 5px; }
.box-dados-ano li a {
	padding: 4px 10px;
	font-weight: 700;
	font-size: 1em;
	color: #00b4f5;
	text-align: center;
	text-decoration: none;
	display: block;
	transition: background-color .2s ease-in-out, color .2s ease-in-out;
}

/* Hover */

.box-dados-ano li a:hover,
.box-dados-ano li a:focus,
.box-dados-ano li a.ativo {
	color: #fff;
	background-color: #2369b3;
}

/* Anos desabilitados */
.box-dados-ano li p {
	padding: 4px 10px;
	font-weight: 700;
	font-size: 1em;
	color: #808080;
	text-align: center;
	text-decoration: none;
	display: block;
}

/* LISTA DE INFORMAÃ‡Ã•ES */

.info-box {
	margin-bottom: 40px;
	padding: 20px 25px;
	display: block;
	position: relative;
	border: 1px solid #e5e7e8;
	border-radius: 4px;
	background-color: #ebf2f5;
}
.info-box i {
	font-size: 18px;
	color: #a3a3a3;
	position: absolute;
	top: 10px;
	right: 10px;
}
.info-box strong {
	font-size: 1.2em;
	color: #2369b3;
	display: block;
}
.info-box span {
	font-size: 1em;
	color: #000;
	display: block;
}

.info-box:hover { text-decoration: none; }

/* BOX DE ORÃ‡AMENTO */

.box-pergunta-orcamento,
.box-pedidos {
	min-height: 220px;
	margin-bottom: 40px;
	border-top: 4px solid #2369b3;
	border-left: 1px solid #e5e7e8;
	border-right: 1px solid #e5e7e8;
	border-bottom: 1px solid #e5e7e8;
}

.box-pedidos.simple-border-top{
	border-top: 1px solid #e5e7e8;
}

.box-pedidos .figure{
	background: #00b7f7;
	text-align: center;
	padding: 15px;
}
.box-pedidos .figure img { width: 10%; }

.box-pedidos .texto {
	padding: 10px 30px;
	text-align: center;
}
.box-pedidos strong{
	color: #0069b7;
	display: block;
	font-size: 1.3em;
}

.box-pedidos.alt strong{
	font-size: 1.5em;
}

.box-pedidos.alt {
	padding: 30px;
	position: relative;
}

.box-pedidos.alt .figure{
	background: none;
	text-align: center;
	padding: inherit;
}

.box-pedidos.alt img{
	float: left;
	margin-right: 15px;
}

@media screen and (max-width: 500px) {
	.box-pedidos.alt {
		padding: 20px 0;
		text-align: center;
	}
	.box-pedidos.alt img{
		float: none;
		margin: auto;
	}
}

@media screen and (max-width: 1200px) {
	.box-pergunta-orcamento { min-height: 0; }
}
.pergunta-orcamento {
	padding: 20px;
	font-weight: 700;
	font-size: 1.6em;
	color: #3366cc;
	display: block;
	background-color: #e8ebed;
}
.box-pergunta-orcamento p { padding: 0; }
.box-pergunta-orcamento a.botao-collapse {
	margin-left: 0;
	margin-right: 0;
}
.box-pergunta-orcamento p + a { margin-top: 35px; }
.botao-pergunta-orcamento { padding: 35px 40px; }
.box-orcamento {
	width: 100%;
	margin-bottom:35px;
}
.box-pergunta-orcamento .box-orcamento { margin: 0; }
.box-orcamento__titulo {
	margin: 0;
	padding: 5px 8px 6px;
	font-weight: 700;
	font-size: 1em;
	color: #fff;
	text-transform: uppercase;
	background-color: #1c528c;
}
.box-orcamento__titulo span {
	margin-top: 8px;
	font-weight: 700;
	font-size: 1.43em;
	display: block;
}
.box-orcamento table {
	width: 100%;
	border: 1px solid #1c528c;
	background-color: #2369b3;
}
.box-orcamento tr { width: 100%; }
.box-orcamento th { padding: 15px 15px 0; }
.box-orcamento th + th { border-left: 1px solid #1c528c; }
.box-orcamento td { padding: 0 15px 15px; }
.box-orcamento td + td { border-left: 1px solid #1c528c; }
@media screen and (max-width: 500px) {
	.box-orcamento td { display: block; }
	.box-orcamento td + td {
		border-top: 1px solid #1c528c;
		border-left: none;
	}
}
.box-orcamento table span {
	font-weight: 400;
	font-size: .86em;
	color: #fff;
	text-align: right;
	text-transform: uppercase;
	display: block;
}
.box-orcamento table strong {
	font-weight: 700;
	font-size: 1.43em;
	color: #fff;
	text-align: right;
	display: block;
}
.box-orcamento table strong span {
	font-weight: inherit;
	display: inline;
}

.box-orcamento.alt table{
	border: 1px solid #dbdbdb;
	background-color: #f5f5f5;
}
.box-orcamento.alt span{
	color: #2369b3;
}
.box-orcamento.alt strong{
	color: #333;
}
.box-orcamento.alt tr:nth-child(odd){
	background-color: #e8ebed;
}
.box-orcamento.alt td{
	border: 1px solid #dbdbdb;
}

/* VERSÃƒO COMPACTA */

.col-personalizada-1 .box-pergunta-orcamento,
.col-personalizada-1b .box-pergunta-orcamento,
.col-personalizada-2 .box-pergunta-orcamento,
.col-personalizada-3 .box-pergunta-orcamento { overflow: hidden; }

.col-personalizada-1 .pergunta-orcamento,
.col-personalizada-1b .pergunta-orcamento,
.col-personalizada-2 .pergunta-orcamento,
.col-personalizada-3 .pergunta-orcamento { padding: 20px 20px; }
.col-personalizada-1 .box-orcamento,
.col-personalizada-1b .box-orcamento,
.col-personalizada-2 .box-orcamento,
.col-personalizada-3 .box-orcamento {
	width: 40%;
	float: left;
}
.col-personalizada-1 .botao-pergunta-orcamento,
.col-personalizada-1b .botao-pergunta-orcamento,
.col-personalizada-2 .botao-pergunta-orcamento,
.col-personalizada-3 .botao-pergunta-orcamento {
	width: 60%;
	padding: 30px 40px;
	float: right;
}
@media screen and (max-width: 500px) {
	.col-personalizada-1 .box-orcamento,
	.col-personalizada-1b .box-orcamento,
	.col-personalizada-2 .box-orcamento,
	.col-personalizada-3 .box-orcamento,
	.col-personalizada-1 .botao-pergunta-orcamento,
	.col-personalizada-1b .botao-pergunta-orcamento,
	.col-personalizada-2 .botao-pergunta-orcamento,
	.col-personalizada-3 .botao-pergunta-orcamento {
		width: 100%;
		float: none;
	}
}

.col-personalizada-tripla .box-orcamento td,
.col-personalizada-1 .box-orcamento td,
.col-personalizada-1b .box-orcamento td,
.col-personalizada-2 .box-orcamento td,
.col-personalizada-3 .box-orcamento td {
	padding: 22px 15px;
	display: block;
}
.col-personalizada-1 .box-orcamento td + td,
.col-personalizada-1b .box-orcamento td + td,
.col-personalizada-2 .box-orcamento td + td,
.col-personalizada-3 .box-orcamento td + td { border-top: 1px solid #1c528c; }
.col-personalizada-1 .botao-pergunta-orcamento p + a,
.col-personalizada-1b .botao-pergunta-orcamento p + a,
.col-personalizada-2 .botao-pergunta-orcamento p + a,
.col-personalizada-3 .botao-pergunta-orcamento p + a { margin-top: 10px; }

.col-personalizada-1 a.botao-collapse,
.col-personalizada-1b a.botao-collapse,
.col-personalizada-2 a.botao-collapse,
.col-personalizada-3 a.botao-collapse {
	width: auto;
	margin: 0 30px;
}
.col-personalizada-1 .botao-pergunta-orcamento a,
.col-personalizada-1b .botao-pergunta-orcamento a,
.col-personalizada-2 .botao-pergunta-orcamento a,
.col-personalizada-3 .botao-pergunta-orcamento a { margin: 10px 0 0; }

.col-personalizada-6 .carrossel-noticias img {
	width: 60%;
	padding: 20px 50px 30px;
	float: right;
}
@media screen and (max-width: 500px) {
	.col-personalizada-6 .carrossel-noticias img {
		width: 100%;
		margin: 0;
		float: none;
	}
}
.col-personalizada-6 .carrossel-noticias p,
.col-personalizada-4b .carrossel-noticias p,
.col-personalizada-4 .carrossel-noticias p { margin-top: 20px; }
.col-personalizada-4b .carrossel-noticias img {
	width: 50%;
	margin: 20px 50px 30px;
	float: right;
}
.col-personalizada-4 .carrossel-noticias img {
	width: 50%;
	margin: 20px 50px 30px;
	float: right;
}
@media screen and (max-width: 500px) {
	.col-personalizada-4b .carrossel-noticias img,
	.col-personalizada-4 .carrossel-noticias img {
		width: 100%;
		margin: 0;
		float: none;
	}
}

.col-personalizada-6 .carrossel-texto {
	width: 40%;
	padding: 0 30px;
	float: left;
}
@media screen and (max-width: 500px) {
	.col-personalizada-6 .carrossel-texto {
		width: 100%;
		padding: 0 30px;
		float: none;
	}
}
.col-personalizada-6 .carrossel-texto p { padding: 0; }

.col-personalizada-full .carrossel-noticias {
	min-height: 0;
	padding-bottom: 0;
}
.col-personalizada-full .carrossel-noticias ul { padding: 0; }
.col-personalizada-full .carrossel-noticias li {
	width: 100%;
	padding-bottom: 0;
	overflow: hidden;
}
.col-personalizada-full .carrossel-noticias img {
	width: 100%;
	float: left;
	position: relative;
	z-index: 2;
}
.col-personalizada-full .carrossel-noticias .carrossel-texto {
	width: 100%;
	margin-top: -450px;
	float: left;
	position: relative;
	z-index: 4;
}
.col-personalizada-full .carrossel-noticias .carrossel-texto a {
	width: 30%;
	margin: 0 30px;
	float: right;
}
@media screen and (max-width: 992px) {
	.col-personalizada-full .carrossel-noticias .carrossel-texto { margin-top: -300px; }
	.col-personalizada-full .carrossel-noticias .carrossel-texto p { text-shadow: 1px 1px 1px #333; }
	.col-personalizada-full .carrossel-noticias .carrossel-texto a {
		margin: 0;
		float: none;
		position: absolute;
		right: 20px;
		bottom: 20px;
	}
}
.col-personalizada-full .carrossel-noticias strong {
	width: 40%;
	font-size: 1.9em;
	color: #fff;
	text-align: left;
}
.col-personalizada-full .carrossel-noticias p {
	width: 40%;
	font-weight: 700;
	color: #fff;
	text-align: left;
}
.col-personalizada-full .carrossel-noticias-paginacao { margin-top: -20px; }
.col-personalizada-full .carrossel-noticias-paginacao span {
	color: #fff;
	border: 1px solid #fff;
}
@media screen and (max-width: 500px) {
	.col-personalizada-full .carrossel-noticias img {
		width: 100%;
		margin: 0;
		float: none;
	}
	.col-personalizada-full .carrossel-noticias .carrossel-texto {
		margin-top: 0;
		float: none;
	}
	.col-personalizada-full .carrossel-noticias strong,
	.col-personalizada-full .carrossel-noticias p {
		width: 100%;
		color: #2369b3;
		text-shadow: none !important;
	}
	.col-personalizada-full .carrossel-noticias .carrossel-texto a {
		width: 90%;
		margin-bottom: 20px;
		position: static;
		right: auto;
		bottom: auto;
	}
}


/* BOX DE CARROSSEL DE NOTICIAS */

.carrossel-noticias {
	min-height: 453px;
	margin-bottom: 40px;
	padding-bottom: 20px;
	position: relative;
	border: 1px solid #e5e7e8;
}
@media screen and (max-width: 1200px) {
	.carrossel-noticias { min-height: 0; }
}
.carrossel-noticias ul {
	margin: 0;
	padding: 0 0 10px;
	text-align: center;
	list-style-type: none;
}
.carrossel-noticias li {
	padding-bottom: 20px;
	overflow: hidden;
}
.carrossel-noticias img {
	width: 100%;
	display: block;
}
.carrossel-noticias strong {
	padding: 35px 30px 10px;
	font-size: 1.2em;
	color: #2369b3;
	display: block;
}
.carrossel-noticias p { padding: 0 30px; }
.carrossel-noticias a { margin-top: 15px; }
.carrossel-noticias-paginacao {
	text-align: center;
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 999;
	-webkit-transform: translate(-50%,0);
	transform: translate(-50%,0);
}
.carrossel-noticias-paginacao span {
	width: 11px;
	height: 11px;
	color: #233a5c;
	line-height: 8px;
	text-align: center;
	text-indent: -9999px;
	cursor: pointer;
	display: inline-block;
	vertical-align: top;
	position: relative;
	z-index: 200;
	border-radius: 50%;
	border: 1px solid #233a5c;
}
.carrossel-noticias-paginacao span + span { margin-left: 1px; }
.carrossel-noticias-paginacao span.cycle-pager-active { text-indent: 0; }

/* BOX DE ORGANOGRAMA */

.box-organograma {
	overflow: hidden;
	border: 1px solid #dbdbdb;
}
.box-organograma img {
	max-width: 100%;
	margin: 0 auto;
	display: block;
}
.box-organograma__texto {
	padding: 10px 15px;
}
.box-organograma__texto strong {
	margin-bottom: 10px;
	font-weight: 700;
	font-size: 1.3em;
	color: #2369b3;
	display: block;
}
.box-organograma__texto .botao-info {
	width: 100%;
	padding: 7px 15px 6px;
	font-size: .86em;
	display: block;
}

/* BOX TEMAS */
.divisor-infografico,
.divisor-temas{
	min-height: 260px;
	box-sizing: border-box;
}

.divisor-videos{
	min-height: 315px;
}

.divisor-videos .title,
.divisor-infografico .title,
.divisor-temas .title{
	color: #337ab7;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 16px;
}

.divisor-videos .title,
.divisor-infografico .title{
	min-height: 60px;
}

.divisor-videos .img-holder,
.divisor-infografico .img-holder,
.divisor-temas .img-holder{
	border: 1px solid #c6c6c6;
	border-radius: 4px;
	text-align: center;
	min-height: 155px;
	position: relative;
	margin-bottom: 10px;
}

.divisor-videos .img-holder,
.divisor-infografico .img-holder{
	min-height: initial;
}

.divisor-temas img{
	margin: auto;
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
}

.divisor-videos img,
.divisor-infografico img{
	width: 100%;
	height: auto;
}

.divisor-temas p{
	margin: 0;
	font-size: 12px;
}

.divisor-temas p a{
	font-weight: 700;
}

/***
* BOXES DE GRÃFICOS
***/

/* REGRAS GERAIS PARA OS GRÃFICOS */

.grafico-tabela {
	width: 100%;
	padding: 13px 15px 100px;
	position: relative;
	background-color: #fafafa;
	border: 1px solid #dbdbdb;
}
@media screen and (max-width: 370px) {
	.grafico-tabela { padding: 13px 15px 140px; }
}
.grafico-tabela--sem-margem-inferior {
	width: 100%;
	padding: 13px 15px;
	position: relative;
	background-color: #fafafa;
}
.grafico-rodape {
	width: 100%;
	padding: 0 15px;
	position: absolute;
	left: 0;
	bottom: 15px;
}

@media screen and (max-width: 400px) {
	.grafico-rodape .botao-icone {
		padding: 5px 10px;
	}
}

.grafico-rodape .grafico-rodape__aba{
	display: none;
}

.grafico-rodape .grafico-rodape__aba.ativo{
	display: block;
}

.grafico-tabela.altura-nivel-1, .grafico-tabela--sem-margem-inferior.altura-nivel-1, .altura-nivel-1 {
	min-height: 660px !important;
}

/* GRAFICO AMPLIADO */

.grafico-tabela.ampliado .grafico-modal {
	width: 95%;
	padding: 10px 20px;
	overflow: hidden;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 10;
	border-radius: 4px;
	border: 1px solid #666;
	background: #fff;
	z-index: 9999;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	transition: width .2s ease-in-out;
}
@media screen and (max-height: 480px) {
	.grafico-tabela.ampliado .grafico-modal{
		max-height: 100%;
		overflow-y: auto;
	}
}
.grafico-tabela.ampliado:after {
	width: 100%;
	height: 100%;
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	opacity: .9;
	z-index: 9998;
	background: #000;
	transition: background .2s ease-in-out;
}

.grafico-tabela .grafico-modal .botao-fechar-modal {
	display: none;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 2;
}
.grafico-tabela.ampliado .grafico-modal .botao-fechar-modal { display: block; }

.grafico-tabela.ampliado .grafico-modal .grafico-legenda .row { text-align: center; }
.grafico-tabela.ampliado .grafico-modal .grafico-legenda .col-xs-12,
.grafico-tabela.ampliado .grafico-modal .grafico-legenda .col-sm-6 {
	width: auto;
	padding: 0;
	display: inline-block;
	float: none;
}
.grafico-tabela.ampliado .grafico-modal .grafico-legenda .col-xs-12 span,
.grafico-tabela.ampliado .grafico-modal .grafico-legenda .col-sm-6 span {
	padding-right: 10px;
	display: inline-block;
}

.grafico-tabela .grafico-tabela__botao-collapse {
	width: 100%;
	margin-top: 7px;
	margin-bottom: -1px;
	text-align: left;
	padding: 5px 10px;
	cursor: pointer;
	display: inline-block;
	font-weight: bold;
	font-size: 1em;
	line-height: 1.4;
	color: #00b4f5;
	text-decoration: none;
	text-transform: uppercase;
	vertical-align: middle;
	border-radius: 2px;
	border: 1px solid #c4e8f5;
	background-color: #fff;
	background-image: none;
	transition: background-color .2s ease-in-out, color .2s ease-in-out;
}
.grafico-tabela .grafico-tabela__botao-collapse i, .grafico-tabela .grafico-tabela__botao-collapse i {
	margin: 0 3px;
	position: static;
	top: auto;
	left: auto;
}
.grafico-tabela .grafico-tabela__botao-collapse .fa-caret-up { display: none; }
.grafico-tabela .grafico-tabela__botao-collapse .fa-caret-down { display: inline-block; }
.grafico-tabela__box-collapse {
	display: none;
	position: relative;
}
.grafico-tabela .grafico-tabela__botao-collapse.ativo {
	margin-bottom: 0;
	color: #fff;
	border: 1px solid #fff;
	background-color: #00b4f5;
}
.grafico-tabela .grafico-tabela__botao-collapse.ativo .fa-caret-up { display: inline-block; }
.grafico-tabela .grafico-tabela__botao-collapse.ativo .fa-caret-down { display: none; }
.grafico-tabela__box-collapse.ativo { display: block; }

.grafico-tabela__box-collapse .botao-fechar-box-collapse {
	position: absolute;
	top: 15px;
	right: 20px;
}
.grafico-tabela__box-collapse .tabela-receptor__titulo { padding-right: 50px; }

.proximo-passo,
.proximo-passo-costas,
.proximo-passo--sem-seta { border: 1px solid #dbdbdb; }

.col-md-6 .proximo-passo,
.col-md-6 .proximo-passo-costas,
.col-md-6 .proximo-passo--sem-seta,
.col-md-4 .proximo-passo,
.col-md-4 .proximo-passo-costas,
.col-md-4 .proximo-passo--sem-seta,
.col-md-8 .proximo-passo,
.col-md-8 .proximo-passo-costas,
.col-md-8 .proximo-passo--sem-seta { min-height: 478px; }

.no-height { min-height: auto; }

.proximo-passo--sem-seta .fa-angle-right { display: none; }

.proximo-passo--heightless {
	min-height: inherit;
	padding: 13px 15px;
	border: 1px solid #dbdbdb;
}

.proximo-passo .fa-angle-right {
	width: 23px;
	height: 31px;
	font-size: 62px;
	color: #2c6ab1;
	line-height: 29px;
	display: block;
	position: absolute;
	top: 322px;
	right: -23px;
	background: url(../img/ico/seta_direita.png?v=1.11.0) 0 0 no-repeat;
}
.proximo-passo-costas:before {
	width: 17px;
	height: 31px;
	content: "";
	display: block;
	position: absolute;
	top: 322px;
	left: -2px;
	background: url(../img/ico/seta_direita.png?v=1.11.0) 0 -81px no-repeat;
}
@media screen and (max-width: 992px) {
	.proximo-passo,
	.proximo-passo-costas {
		min-height: initial;
	}
	.proximo-passo .fa-angle-right,
	.proximo-passo:after,
	.box-opcoes-grafico:after,
	.proximo-passo-costas:before { display: none !important; }
}
.proximo-passo__box-titulo,
.proximo-passo__box-titulo-externo {
	margin: -13px -15px 0;
	padding: 13px 15px 15px;
	background-color: #e8ebed;
}
.proximo-passo__box-titulo .proximo-passo__titulo, .proximo-passo__box-titulo-externo .proximo-passo__titulo { text-transform: uppercase; }
.proximo-passo__titulo {
	margin: 0;
	font-weight: 700;
	font-size: 1.15em;
	color: #2369b3;
	word-break: normal;
}
.proximo-passo__box-titulo-externo{
	margin: 0;
}
.proximo-passo__box-titulo-externo select{
	margin-top: 13px;
}
.proximo-passo__titulo--margem-inferior {
	margin: 0 0 20px;
	font-weight: 700;
	font-size: 1.15em;
	color: #2369b3;
}
.proximo-passo__subtitulo,
.proximo-passo__descricao {
	margin: 0;
	font-weight: 600;
	font-size: .86em;
	color: #454545;
	display: block;
}
.proximo-passo__descricao { font-weight: 400; }

.proximo-passo__descricao.margin-bottom { margin-bottom: 30px; }

.box-duplo {
	position: relative;
	border: 1px solid #dcdcdc;
	background-color: #fafafa;
}
.box-duplo:after {
	width: 1px;
	height: 90%;
	content: "";
	position: absolute;
	top: 5%;
	left: 50%;
	background-color: #dcdcdc;
	-webkit-transform: translate(-50%,0);
	transform: translate(-50%,0);
}
@media screen and (max-width: 767px) {
	.box-duplo:after { display: none; }
}
.box-duplo .grafico-tabela { border: none; }

.grafico-receptor {
	width: 100%;
	padding-bottom: 20px;
}

.tabela-receptor {
	border: 1px solid #dbdbdb;
	background-color: #fafafa;
	overflow: auto;
}
.tabela-receptor__titulo {
	margin: 0 0 37px;
	font-weight: 700;
	font-size: 1.15em;
	color: #2369b3;
}
.tabela-receptor__titulo--sem-margem {
	margin: 0;
	font-weight: 700;
	font-size: 1.15em;
	color: #2369b3;
}
.tabela-receptor .wrapper-table {
	width: 100%;
	padding: 28px 15px;
	border: 1px solid #ebebeb;
	border-top: none;
	background-color: #fff;
}
.tabela-receptor.in .wrapper-table { border: 1px solid #ebebeb; }
.tabela-receptor table th:first-child { text-align: left; }
.tabela-receptor table tr.tag th {
	text-align: center;
	border: none;
	background: none;
}
.tabela-receptor table tr.tag th.receitas {
	color: #30a736;
	background-color: #eaf6eb;
}
.tabela-receptor table tr.tag th.despesas {
	color: #e84141;
	background-color: #fdecec;
}
.tabela-receptor table tr th.inicial { color: #000; }
.tabela-receptor table tr th.atualizada-receitas { color: #30a736; }
.tabela-receptor table tr th.atualizada-despesas { color: #e84141; }

.tabela-receptor table td.total {
	background-color: #f5f5f5;
}
.tabela-receptor table td.total strong {
	font-weight: 700;
	font-size: 1em;
	color: #2369b3;
	text-align: left;
	display: block;
}
.tabela-receptor table td.total span {
	font-weight: 400;
	font-size: 1em;
	color: #eb384a;
	text-align: right;
	text-transform: uppercase;
	white-space: nowrap;
	display: block;
}
.tabela-receptor table td.total span.cor-normal { color: #000; }
.tabela-receptor table td.total span.cor-verde { color: #30a736; }

.grafico-legenda { margin: 0 0 20px; }
.grafico-legenda p {
	font-family: 'Roboto Condensed', sans-serif;
	color: #676768;
}
.grafico-legenda span {
	padding-left: 25px;
	font-family: 'Roboto Condensed', sans-serif;
	color: #676768;
	position: relative;
	display: block;
}
.grafico-legenda span i {
	font-size: 19px;
	position: absolute;
	top: -1px;
	left: 0;
}
.grafico-legenda span i.meta {
	width: 6px;
	height: 19px;
	display: block;
	border: 1px solid #fff;
	background-color: #000;
}

/* BOX DO GRÃFICO DE BOLHAS */

.frase-x {
	width: 100%;
	height: auto;
	padding: 0 0 0 90px;
	text-align: center;
	font-weight: 600;
	display: block;
}
.frase-y {
	width: 100%;
	height: auto;
	font-weight: 600;
	display: block;
}
.legenda-bolhas {
	margin-top: -20px;
	padding: 0 0 0 90px;
	font-weight: 700;
	position: relative;
	display: block;
}
.legenda-bolhas ul {
	margin: 10px 0 0;
	padding: 0;
	list-style-type: none;
}
.legenda-bolhas ul li {
	height: 80px;
	padding-left: 30px;
	font-weight: 400;
	line-height: 80px;
	display: inline-block;
	vertical-align: top;
	position: relative;
}
.legenda-bolhas ul li + li { margin-left: 40px; }
.legenda-bolhas ul li:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	border-radius: 50%;
	background-color: #666;
	-webkit-transform: translate(0,-50%);
	transform: translate(0,-50%);
}
.legenda-bolhas ul li.bolha-1 { padding-left: 16px; }
.legenda-bolhas ul li.bolha-2 { padding-left: 30px; }
.legenda-bolhas ul li.bolha-3 { padding-left: 40px; }
.legenda-bolhas ul li.bolha-4 { padding-left: 50px; }
.legenda-bolhas ul li.bolha-1:after { width: 6px; height: 6px; }
.legenda-bolhas ul li.bolha-2:after { width: 20px; height: 20px; }
.legenda-bolhas ul li.bolha-3:after { width: 30px; height: 30px; }
.legenda-bolhas ul li.bolha-4:after { width: 40px; height: 40px; }

@media screen and (max-width: 500px) {
	.frase-x {
		font-size: .8em;
	}
	.legenda-bolhas ul { margin: 0; }
	.legenda-bolhas ul li {
		height: 40px;
		line-height: 40px;
		display: block;
		vertical-align: initial;
	}
	.legenda-bolhas ul li + li { margin-left: 0; }
}

/* BOX DO GRÃFICO DE LINHAS */

.box-grafico-linhas {
	margin-top: 35px;
	border: 1px solid #dbdbdb;
	background-color: #fff;
}
.nav-tabs--box-grafico + .box-grafico-linhas { margin-top: 0; }
.box-grafico-linhas__titulo {
	margin: 0;
	padding: 8px 10px;
	font-weight: 700;
	font-size: .9em;
	color: #666;
	text-transform: uppercase;
	text-align: center;
	background-color: #e6f1f5;
}
.box-grafico-linhas form,
.box-grafico-linhas .menu-legenda{
	padding: 15px 0 13px;
	border-bottom: 1px solid #dbdbdb;
	background-color: #fff;
}
.box-grafico-linhas input[type="checkbox"] { top: 2px; }
.box-grafico-linhas label {
	padding-left: 33px;
	display: block;
	position: relative;
}
.box-grafico-linhas .normal {
	padding-left: 20px;
	display: inline-block;
}

.box-grafico-linhas .grafico-linhas-marcar {
	margin: 0;
	vertical-align: middle;
}
.box-grafico-linhas label i {
	font-size: 14px;
	color: #fff;
	position: absolute;
	top: 1px;
	left: 18px;
}
@media screen and (max-width: 767px) {
	.box-grafico-linhas label{
		padding-left: 48px;
	}
	.box-grafico-linhas input[type="checkbox"]{
		left: 15px;
	}
	.box-grafico-linhas label i{
		left: 33px;
	}
	.box-grafico-linhas .normal{
		padding-right: 15px;
	}
	.box-grafico-linhas .normal input[type="checkbox"]{
		left: 0;
	}
}
.box-grafico-linhas .axis path {
	fill: none;
	stroke: #777;
	shape-rendering: crispEdges;
}
.box-grafico-linhas .axis .domain { stroke-width: 2; }
.box-grafico-linhas .axis line {
	fill: none;
	stroke: #000;
}
.box-grafico-linhas .axis text {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 13px;
}
.barras-vertical .x .tick { display: none; }

/* BOX DO GRÃFICO DE BARRAS VERTICAL */

.box-opcoes-grafico-visualizador .box-grafico-barras-vertical svg { height: 252px; }
.box-grafico-barras-vertical .grafico-legenda { padding-left: 60px; }
.box-grafico-desvio .grafico-legenda { padding-left: 60px; }
.box-grafico-barras-horizontal-pilha .grafico-legenda,
.box-grafico-barras-horizontal .grafico-legenda { padding-left: 10px; }
.box-grafico-barras-vertical .axis path {
	fill: none;
	stroke: #777;
	shape-rendering: crispEdges;
}
.box-grafico-barras-vertical .axis .domain { stroke-width: 2; }
.box-grafico-barras-vertical .axis line {
	fill: none;
	stroke: #000;
}

/* BOX DO GRÃFICO DE BARRAS HORIZONTAL */

.box-grafico-barras-horizontal-pilha .axis path,
.box-grafico-barras-horizontal .axis path {
	fill: none;
	stroke: #777;
	shape-rendering: crispEdges;
}
.box-grafico-barras-horizontal-pilha .axis .domain,
.box-grafico-barras-horizontal .axis .domain { stroke-width: 2; }
.box-grafico-barras-horizontal-pilha .axis line,
.box-grafico-barras-horizontal .axis line {
	fill: none;
	stroke: #000;
}

.box-grafico-barras-horizontal-pilha .y.axis text,
.box-grafico-barras-horizontal-pilha .y.axis line,
.box-grafico-barras-horizontal .y.axis text,
.box-grafico-barras-horizontal .y.axis line { display: none; }

/* BOX DO GRÃFICO DE PIZZA/DONUT */

.box-grafico-pizza__label,
.box-grafico-donut__label,
.box-grafico-treemap__label,
.box-grafico__label {
	margin-top: 30px;
	font-weight: 700;
	font-size: .86em;
	color: #666;
	text-transform: uppercase;
	text-align: center;
	display: block;
}
.box-grafico-pizza .grafico-receptor,
.box-grafico-donut .grafico-receptor { padding-top: 30px; }
.box-grafico-pizza .grafico-receptor svg,
.box-grafico-donut .grafico-receptor svg {
	max-width: 400px;
	max-height: 400px;
	margin: 0 auto;
	text-align: center;
	display: block;
}
.box-grafico-pizza.ampliado .grafico-receptor,
.box-grafico-donut.ampliado .grafico-receptor { padding: 30px; }
.box-grafico-pizza.ampliado .grafico-legenda,
.box-grafico-donut.ampliado .grafico-legenda { text-align: center; }
.box-grafico-pizza.ampliado .grafico-legenda span,
.box-grafico-pizza.ampliado .grafico-legenda label,
.box-grafico-donut.ampliado .grafico-legenda span,
.box-grafico-donut.ampliado .grafico-legenda label {
	margin: 0 10px;
	display: inline;
}
.box-grafico-pizza .clicavel,
.box-grafico-donut .clicavel,
.box-grafico-barras-horizontal-pilha .clicavel,
.box-grafico-barras-horizontal .clicavel,
.box-grafico-barras-vertical .clicavel {
	stroke: #fff;
	stroke-width: 1;
}
.box-grafico-pizza .clicavel:hover,
.box-grafico-donut .clicavel:hover {
	stroke: #666;
	stroke-width: 1;
}
.box-grafico-pizza .clicavel.ativo,
.box-grafico-donut .clicavel.ativo {
	stroke: #666;
	stroke-width: 2;
}
.box-grafico-barras-horizontal-pilha .clicavel:hover,
.box-grafico-barras-horizontal .clicavel:hover,
.box-grafico-barras-vertical .clicavel:hover {
	stroke: #666;
	stroke-width: 1;
}
.box-grafico-barras-horizontal-pilha .clicavel.ativo,
.box-grafico-barras-horizontal .clicavel.ativo,
.box-grafico-barras-vertical .clicavel.ativo {
	stroke: #666;
	stroke-width: 2;
}

/* BOX DE OPÃ‡Ã•ES DE GRÃFICOS */

.box-opcoes-grafico {
	width: 100%;
	min-height: 439px;
	padding: 20px 15px;
	position: relative;
	border: 1px solid #dbdbdb;
	background-color: #fafafa;
	margin: 20px 0px;
}
.box-opcoes-grafico:after {
	width: 23px;
	height: 31px;
	font-family: 'FontAwesome';
	font-size: 62px;
	color: #2c6ab1;
	line-height: 29px;
	content: "\f105";
	display: block;
	position: absolute;
	top: 197px;
	right: -23px;
	background: url(../img/ico/seta_direita.png?v=1.11.0) 0 0 no-repeat;
}
.box-opcoes-grafico__box-titulo {
	margin: -20px -15px 20px;
	padding: 13px 15px 15px;
	background-color: #e8ebed;
}
.box-opcoes-grafico__titulo {
	margin: 0;
	font-weight: 700;
	font-size: 1.15em;
	color: #2369b3;
	text-transform: uppercase;
}
.box-opcoes-grafico__descricao {
	margin: 0 0 10px;
	font-weight: 400;
	font-size: .86em;
	color: #454545;
	display: block;
}

.box-opcoes-grafico__lista-graficos {
	width: 100%;
	padding: 0;
	list-style-type: none;
	display: table;
	overflow: hidden;
}
.box-opcoes-grafico__lista-graficos li {
	display: table-cell;
	table-layout: fixed;
}

@media screen and (max-width: 400px) {
	.box-opcoes-grafico__lista-graficos li {
		display: inline-block;
		table-layout: auto;
		width: 50%;
	}
}

.box-opcoes-grafico__lista-graficos input[type=radio] {
	position: absolute;
	left: -99999px;
}
.box-opcoes-grafico__lista-graficos label {
	width: 63px;
	margin: 0 auto;
	padding: 5px;
	font-weight: 700;
	font-size: .8em;
	color: #00b4f5;
}
.box-opcoes-grafico__lista-graficos label:hover,
.box-opcoes-grafico__lista-graficos label:focus,
.box-opcoes-grafico__lista-graficos label.ativo {
	color: #fff;
	border-color: #2369b3;
	background-color: #2369b3;
}

.box-opcoes-grafico-visualizador {
	margin: 20px 0px;
}
.box-opcoes-grafico-visualizador .grafico-tabela {
	min-height: 439px;
	padding: 13px 15px 55px;
}
.box-opcoes-grafico-visualizador .grafico-tabela:before { top: 197px; }
.box-opcoes-grafico-visualizador .grafico-receptor {
	padding: 0;
	text-align: center;
}
.box-opcoes-grafico-visualizador .grafico-legenda { margin: 0; }
.box-opcoes-grafico-visualizador svg { height: 292px; }
@media screen and (max-width: 480px) {
	.box-opcoes-grafico-visualizador svg { height: auto; }
	.box-opcoes-grafico-visualizador .grafico-receptor { overflow: hidden; }
}
.box-opcoes-grafico-visualizador .ampliado svg { height: auto; }

.box-opcoes-grafico label {
	font-weight: 700;
	font-size: .9em;
	color: #2369b3;
	display: block;
}
.box-opcoes-grafico .box-opcoes-grafico__lista-graficos { margin-top: 3px; }
.box-opcoes-grafico .box-opcoes-grafico__lista-graficos label {
	width: 63px;
	padding: 71px 0 0;
	color: #00b4f5;
	text-align: center;
	cursor: pointer;
	background: url(../img/ico/tipos_grafico.png) no-repeat;
}
.box-opcoes-grafico .box-opcoes-grafico__lista-graficos label:hover,
.box-opcoes-grafico .box-opcoes-grafico__lista-graficos label:focus,
.box-opcoes-grafico .box-opcoes-grafico__lista-graficos label.ativo { color: #2369b3; }

.box-opcoes-grafico label[for=grafico-pizza] { background-position: 0 0; }
.box-opcoes-grafico label[for=grafico-pizza]:hover,
.box-opcoes-grafico label[for=grafico-pizza]:focus,
.box-opcoes-grafico label[for=grafico-pizza].ativo { background-position: 0 -113px; }

.box-opcoes-grafico label[for=grafico-donut] { background-position: 0 -226px; }
.box-opcoes-grafico label[for=grafico-donut]:hover,
.box-opcoes-grafico label[for=grafico-donut]:focus,
.box-opcoes-grafico label[for=grafico-donut].ativo { background-position: 0 -339px; }

.box-opcoes-grafico label[for=grafico-barras-vertical] { background-position: 0 -452px; }
.box-opcoes-grafico label[for=grafico-barras-vertical]:hover,
.box-opcoes-grafico label[for=grafico-barras-vertical]:focus,
.box-opcoes-grafico label[for=grafico-barras-vertical].ativo { background-position: 0 -565px; }

.box-opcoes-grafico label[for=grafico-treemap] { background-position: 0 -678px; }
.box-opcoes-grafico label[for=grafico-treemap]:hover,
.box-opcoes-grafico label[for=grafico-treemap]:focus,
.box-opcoes-grafico label[for=grafico-treemap].ativo { background-position: 0 -791px; }

.box-opcoes-grafico input[type=submit] {
	margin-top: 40px;
	font-weight: 700;
	font-size: 1em;
	color: #fff;
	text-transform: uppercase;
	background-color: #00b4f5;
}
.box-opcoes-grafico input[type=submit]:hover,
.box-opcoes-grafico input[type=submit]:focus,
.box-opcoes-grafico input[type=submit].ativo {
	color: #00b4f5 !important;
	background-color: #fff;
}

/* BOX DE GRÃFICO DE MAPA DO BRASIL */

.box-mapa { display: none; }
.box-mapa.ativo { display: block; }
.lista-estados {
	width: 100%;
	float: right;
}
.lista-cidades {
	width: 100%;
	float: right;
}
@media screen and (max-width: 1200px) {
	.lista-cidades.col-md-margin-top{
		margin-top: 115px;
	}
}
.box-mapa:before,
.box-mapa:after {
	content: " ";
	display: table;
}
.box-mapa:after { clear: both; }
.svg-mapa-brasil,
.svg-mapa-estadual {
	width: 100%;
	height: 590px;
	max-width: 688px;
	max-height: 590px;
	margin: 0 auto;
	display: block;
}
.svg-mapa-brasil path,
.svg-mapa-brasil--mini path {
	fill: #fff;
	transition: fill .2s ease-in-out;
}

.svg-mapa-brasil--localidade{
	max-width: 678px;
	max-height: 693px;
	margin: 19px auto;
	display: block;
}
.box-lista-icones .svg-mapa-brasil--localidade{
	width: 100%;
	min-height: 400px;
}
.svg-mapa-brasil--localidade path{
	fill: #d9d9d9;
	transition: fill .2s ease-in-out;
}
.svg-mapa-brasil--localidade a:hover{
	text-decoration: none;
}
.svg-mapa-brasil--localidade a:hover path{
	fill: #003399;
}

.svg-mapa-brasil--localidade a:hover path + text{
	fill: #fff;
}
.svg-mapa-brasil text {
	fill: #fff;
	font: 12px Arial-BoldMT, sans-serif;
	cursor: pointer;
}
.svg-mapa-brasil a { text-decoration: none; }
.svg-mapa-brasil a:hover {
	cursor: pointer;
	text-decoration: none;
}
.svg-mapa-brasil.no-hover a:hover, .svg-mapa-brasil.no-hover  text {
	cursor: default;
}
.svg-mapa-brasil a:hover path { fill: #003399 !important; }
.svg-mapa-brasil .circle { fill: #66ccff; }
.svg-mapa-brasil a:hover .circle {
	fill: #003399 !important;
	cursor: pointer;
}
.svg-mapa-brasil--mini {
	position: relative;
}
.svg-mapa-brasil--mini{
	width: 25%;
	max-width: 213px;
	max-height: 237px;
	display: block;
	position: absolute;
	left: 10px;
	bottom: 50px;
	overflow: visible !important;
}
.svg-mapa-brasil--mini .label-mapa--mini {
	font-weight: 700;
	font-family: "Open Sans",sans-serif;
	font-size: 29px;
}

.svg-mapa-brasil .return-false,
.svg-mapa-brasil--mini .return-false { cursor: default; }

.box-mapa.box-mapa--mini .svg-mapa-brasil--mini{
	max-height: 350px;
}
@media screen and (max-width: 992px) {
	.svg-mapa-brasil--mini {
		width: 70%;
		margin: 30px auto;
		display: block;
		position: static;
		left: auto;
		bottom: auto;
	}
}
.svg-mapa-brasil--mini path { stroke:#FFFFFF; }
.svg-mapa-brasil--mini a:hover path { fill: #003399 !important; }
.svg-mapa-brasil--mini > g path {
	transition: fill .2s ease-in-out;
}
.svg-mapa-brasil--mini > g:hover path {
	fill: #003399 !important;
}

.svg-mapa-brasil--mini > g path.circle{
	display: none;
}
.box-grafico-mapa .grafico-tabela { padding: 13px 15px; }

.box-grafico-mapa .grafico-modal-mapa,
.box-grafico-mapa .grafico-modal {
	padding: 30px 0;
	position: relative;
}

.box-grafico-mapa .grafico-modal-mapa.no-padding {
	padding: 0;
}
.box-grafico-mapa .grafico-modal-mapa.padding-left {
	padding-top: 0px;
	padding-left: 50px;
}

.box-grafico-mapa .grafico-receptor:before,
.box-grafico-mapa .grafico-receptor:after {
	content: " ";
	display: table;
}
.box-grafico-mapa .grafico-receptor:after { clear: both; }
.box-grafico-mapa .box-tabela-filtro-coluna-1 {
	width: 167px;
}
.box-grafico-mapa .box-tabela-filtro-coluna-1 .box-tabela-filtro__form-filtro > div {
	min-height: 0;
	padding: 7px;
}
.box-grafico-mapa .box-tabela-filtro-coluna-1 .box-tabela-filtro__form-filtro ul { margin: 0; }
.box-grafico-mapa .box-tabela-filtro-coluna-1 .box-tabela-filtro__form-filtro ul li + li { margin-top: 7px; }
.box-grafico-mapa .grafico-escala,
.box-grafico-mapa .grafico-escala--mini {
	width: 40px;
	height: 100px;
	margin: 20px 0 0;
	padding: 0;
	list-style-type: none;
}
.box-grafico-mapa .grafico-escala li,
.box-grafico-mapa .grafico-escala--mini li {
	width: 100%;
	height: 20px;
	position: relative;
}

.box-grafico-mapa .grafico-escala li.escala-0 { background-color: #d9d9d9 !important; }
.box-grafico-mapa .grafico-escala li.escala-1 { background-color: #feed7b !important; }
.box-grafico-mapa .grafico-escala li.escala-2 { background-color: #ffd900 !important; }
.box-grafico-mapa .grafico-escala li.escala-3 { background-color: #99cf17 !important; }
.box-grafico-mapa .grafico-escala li.escala-4 { background-color: #35a02c !important; }
.box-grafico-mapa .grafico-escala li.escala-5 { background-color: #1f611a !important; }

.box-grafico-mapa .grafico-escala--mini li.escala-6 { background-color: #b1f1d6 !important; }
.box-grafico-mapa .grafico-escala--mini li.escala-7 { background-color: #7ac79b !important; }
.box-grafico-mapa .grafico-escala--mini li.escala-8 { background-color: #308566 !important; }
.box-grafico-mapa .grafico-escala--mini li.escala-9 { background-color: #1e3e3d !important; }
.box-grafico-mapa .grafico-escala--mini li.escala-10 { background-color: #0d1919 !important; }

.box-grafico-mapa .grafico-escala li span,
.box-grafico-mapa .grafico-escala--mini li span {
	min-width: 50px;
	display: block;
	line-height: 20px;
	position: absolute;
	left: 45px;
	top: 2px;
}

.box-grafico-mapa .box-tabela-filtro-coluna-1 .box-tabela-filtro__form-filtro ul + h3 { margin: 20px 0 5px; }


/* VERSÃƒO ALTERNATIVA DO MAPA - CENTRALIZADO */

.mapa-centralizado .lista-estados {
	width: 80%;
	margin: 0 auto 20px;
	float: none;
}
.box-grafico-mapa .mapa-centralizado .grafico-escala {
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 660px) {
	.box-grafico-mapa .mapa-centralizado .grafico-escala {
		margin-bottom: 20px;
		position: static;
		top: auto;
		left: auto;
	}
}



.box-grafico-mapa .lista-extra {
	position: absolute;
	left: 10px;
	bottom: 50px;
}
.box-grafico-mapa .box-mapa--mini .lista-extra{
	left: -200px;
}
@media screen and (max-width: 992px) {
	.box-grafico-mapa .lista-extra {
		width: 160px;
		margin: 20px auto 0;
		position: static;
		left: auto;
		bottom: auto;
	}
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
	.box-grafico-mapa .box-mapa--mini .lista-extra { left: -170px; }
}
.box-grafico-mapa .lista-extra > span {
	width: 160px;
	font-weight: 700;
	font-family: "Open Sans",sans-serif;
	font-size: 14px;
	color: #2369b3;
	line-height: 18px;
	display: block;
}
.box-grafico-mapa .lista-extra ul {
	width: 160px;
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.box-grafico-mapa .lista-extra ul li {
	width: 100%;
	padding-top: 75px;
	cursor: pointer;
	position: relative;
	transition: background-color .2s ease-in-out;
}
.box-grafico-mapa .lista-extra ul li span {
	width: 68px;
	padding: 10px;
	display: block;
	position: absolute;
	left: 50%;
	-webkit-transform: translate(-50%,0);
	transform: translate(-50%,0);
	border: 1px solid transparent;
	border-radius: 50%;
	background-image: url(../img/ico/gastos.png?v=1.11.0) !important;
	background-repeat: no-repeat !important;
	transition: background-color .2s ease-in-out, border .2s ease-in-out;
}
.box-grafico-mapa .lista-extra ul li.simbolo-1 span {
	height: 70px;
	top: 4px;
	border: 1px solid #93d6d6;
	background-position: center 10px !important;
}
.box-grafico-mapa .lista-extra ul li.simbolo-2 span {
	height: 65px;
	top: 8px;
	border: 1px solid #93d6d6;
	background-position: center -90px !important;
}
.box-grafico-mapa .lista-extra ul li.simbolo-3 span {
	height: 68px;
	top: 5px;
	border: 1px solid #93d6d6;
	background-position: center -185px !important;
}
.box-grafico-mapa .lista-extra ul li strong {
	font-weight: 700;
	font-family: "Open Sans",sans-serif;
	font-size: 14px;
	color: #000;
	text-align: center;
	display: block;
}

/* Hover */

.box-grafico-mapa .lista-extra ul li span:hover { background-color: #003399 !important; }

/* BOX DE MAPAS MUNICIPAIS */

.svg-mapa-cidades {
	width: 100%;
	height: 840px;
	margin: 0 auto;
	padding: 30px 0;
	display: block;
}
@media screen and (max-width: 480px) {
	.svg-mapa-cidades {
		height: 100%;
	}
}
.svg-mapa-cidades path {
	stroke: #fff;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: blue;
	transition: fill 200ms ease-in-out;
}
.svg-mapa-cidades-divisoes { stroke: #fff; }
.svg-mapa-cidades-divisoes path { fill: none; }
.svg-mapa-cidades path:hover { fill: #003399 !important; }
.svg-mapa-cidades-divisoes path:hover { fill: none !important; }

.box-select-graficos .grafico-tabela{
	display: none;
}

.box-select-graficos .grafico-tabela.active{
	display: block;
}

.circlexx {
	opacity:0;
	fill:#e0e0e0;
	stroke:#000000;
	stroke-width:0.5;
}

.subxx {
	opacity:0;
	stroke-width:0.3;
}

.unxx {
	opacity:0;
	fill:#e0e0e0;
	stroke:#000000;
	stroke-width:0.3;
}

.noxx {
	opacity:0;
	fill:#e0e0e0;
	stroke:#000000;
	stroke-width:1;
}

.landxx {
	fill: #e0e0e0;
	stroke:#ffffff;
	stroke-width:1;
	fill-rule:evenodd;
}

.coastxx {
	fill: #e0e0e0;
	stroke:#ffffff;
	stroke-width:1;
	fill-rule:evenodd;
}

.limitxx {
	fill: #e0e0e0;
	stroke:#ffffff;
	stroke-width:0;
	fill-rule:evenodd;
}

.antxx {
	fill: #e0e0e0;
	stroke:#ffffff;
	stroke-width:0;
	fill-rule:evenodd;
}

.oceanxx {
	opacity: 1;
	color: #000000;
	fill:none;
	stroke-width:1;
	stroke-miterlimit:1;
}

.landxx:hover,
.antxx:hover {}

.faixa-cor-1,
.coastxx.faixa-cor-1,
.faixa-cor-1 .coastxx,
.landxx.faixa-cor-1,
.faixa-cor-1 .landxx,
.antxx.faixa-cor-1,
.faixa-cor-1 .antxx{
	fill: #ffffb2;
}

.faixa-cor-2,
.coastxx.faixa-cor-2,
.faixa-cor-2 .coastxx,
.landxx.faixa-cor-2,
.faixa-cor-2 .landxx,
.antxx.faixa-cor-2,
.faixa-cor-2 .antxx{
	fill: #fecc5c;
}

.faixa-cor-3,
.coastxx.faixa-cor-3,
.faixa-cor-3 .coastxx,
.landxx.faixa-cor-3,
.faixa-cor-3 .landxx,
.antxx.faixa-cor-3,
.faixa-cor-3 .antxx{
	fill: #fd8d3c;
}

.faixa-cor-4,
.coastxx.faixa-cor-4,
.faixa-cor-4 .coastxx,
.landxx.faixa-cor-4,
.faixa-cor-4 .landxx,
.antxx.faixa-cor-4,
.faixa-cor-4 .antxx{
	fill: #f03b20;
}

.faixa-cor-5,
.coastxx.faixa-cor-5,
.faixa-cor-5 .coastxx,
.landxx.faixa-cor-5,
.faixa-cor-5 .landxx,
.antxx.faixa-cor-5,
.faixa-cor-5 .antxx{
	fill: #bd0026;
}

/* LISTA COMPLETA DE CIDADES */

.lista-completa-cidades {
	width: 100%;
	margin-top: 20px;
	padding: 0;
	list-style-type: none;
	text-align: center;
}
.lista-completa-cidades li {
	width: 13%;
	min-height: 70px;
	margin: 0 .5% 10px;
	display: inline-block;
	vertical-align: top;
	position: relative;
	border-radius: 3px;
	background-color: #c9de26;
}
@media screen and (max-width: 768px) {
	.lista-completa-cidades li { width: 32%; }
}
@media screen and (max-width: 468px) {
	.lista-completa-cidades li { width: 100%; }
}
.lista-completa-cidades li span {
	width: 100%;
	font-weight: 500;
	font-size: 1.1em;
	color: white;
	text-align: center;
	line-height: 1;
	display: block;
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
}
.lista-completa-cidades li a {
	width: 100%;
	height: 100%;
	min-height: 70px;
	font-weight: 500;
	font-size: 1.1em;
	color: white;
	text-align: center;
	line-height: 1;
	display: block;
}

/***
* PAGINAÃ‡ÃƒO
***/

/* PAGINAÃ‡ÃƒO ALFABÃ‰TICA */

.paginacao-alfabetica {
	width: 100%;
	display: table;
	overflow: hidden;
	background-color: #e8ebed;
}

#grafico-mapa-brasil-transparente .paginacao-alfabetica{
	display: block;
	overflow: auto;
}

.paginacao-alfabetica span {
	display: table-cell;
	padding: 18px 10px;
	font-weight: 700;
	font-size: 1em;
	color: #36c;
	text-transform: uppercase;
}
.paginacao-alfabetica a {
	padding: 18px 8px;
	font-weight: 700;
	font-size: 1em;
	color: #36c;
	text-transform: uppercase;
	display: table-cell;
	vertical-align: middle;
	transition: background-color .2s ease-in-out, color .2s ease-in-out;
	-webkit-transition: background-color .2s ease-in-out, color .2s ease-in-out;
}
.paginacao-alfabetica a:hover,
.paginacao-alfabetica a.ativo {
	color: #fff;
	text-decoration: none;
	background-color: #00b4f5;
}

@media screen and (max-width: 1078px) {
	.paginacao-alfabetica {
		width: 100%;
		margin: 0 auto;
	}
	.paginacao-alfabetica span {
		text-align: center;
		display: block;
		font-size: 1.1em;
	}
	.paginacao-alfabetica a {
		text-align: center;
		display: block;
		float: left;
		font-size: 1.1em;
	}
}

/***
* BOTÃ•ES
***/

/* HOVER */

button:hover,
a[role="button"]:hover,
button:focus,
a[role="button"]:focus {
	color: #fff;
	background-color: #00b4f5;
}

/* BOTÃƒO DE TÃTULO */

.botao-collapse {
	width: 100%;
	padding: 10px 40px 10px 10px;
	font-weight: 700;
	font-size: 1.15em;
	color: #2369b3;
	text-align: left;
	text-transform: uppercase;
	position: relative;
	border: none;
	background-color: #e8ebed;
}
.botao-collapse i {
	margin-top: -8px;
	position: absolute;
	top: 50%;
	right: 10px;
}
.botao-collapse .fa-caret-up,
.botao-collapse .fa-minus-square-o { display: none; }
.active.botao-collapse .fa-caret-down,
.active.botao-collapse .fa-plus-square-o { display: none; }
.active.botao-collapse .fa-caret-up,
.active.botao-collapse .fa-minus-square-o { display: block; }

/* 	BOTÃƒO COM SETA PARA BAIXO */

.botao-seta {
	width: 100%;
	padding: 6px 10px;
	font-weight: 700;
	font-size: .86em;
	color: #565a5c;
	text-align: center;
	text-transform: uppercase;
	display: inline-block;
	border-radius: 4px;
	border: 1px solid #c4e8f5;
	background-color: #fff;
}
.botao-seta i {
	margin-left: 5px;
	font-size: 20px;
	color: #00b4f5;
}

/* BOTÃƒO DE ÃCONES */

.botao-icone {
	color: #666;
	text-transform: none;
	border-radius: 2px;
	border: 1px solid #c4e8f5;
	background-color: #fafafa;
}
a.botao-icone {
	padding: 5px 15px 4px;
	font-weight: 700;
	text-decoration: none;
	display: inline-block;
	vertical-align: top;
	transition: background-color .2s ease-in-out, color .2s ease-in-out;
}
.botao-icone i {
	color: #00b4f5;
	transition: color .2s ease-in-out;
}

/* Hover */
.botao-icone:hover i,
.botao-icone:focus i,
.botao-icone.ativo i { color: #fff; }

a.botao-icone:hover,
a.botao-icone:focus,
a.botao-icone.ativo {
	color: #fff;
	background-color: #00b4f5;
}


.botao-normativos,
a.botao-normativos[role="button"]{
	width: 100%;
	margin-bottom: 45px;
	background-color: #ebf2f5;
	border-color: #bcdeeb;
	font-size: 1.15em;
	color: #2369b3;
	padding: 30px 15px;
}

.botao-normativos:hover,
a.botao-normativos[role="button"]:hover{
	color: #fff;
	background-color: #006db6;
}

/***
* BREADCRUMB
***/

.breadcrumb {
	font-size: .72em;
	color: #2369b3;
	text-transform: uppercase;
	background-color:#dcdcdc;
	padding: 0;
}



/***
* RODAPÃ‰
***/

footer {
	padding: 4px 0 30px;
	position: relative;
	z-index: 2;
	border-top: 1px solid #ffc107;
	background-color: #2369b3;
}
footer h2 {
	margin: 26px 0 1px;
	padding: 0 0 2px 15px;
	font-weight: 700;
	font-size: 1.5em;
	color: #fff;
	border-left: 1px dotted #fff;
}
@media screen and (max-width: 768px) {
	footer h2 { margin: 56px 0 1px; }
}
footer ul {
	margin: 0;
	padding: 0 0 0 15px;
	list-style-type: none;
	border-left: 1px dotted #fff;
}
footer ul li a {
	width: 100%;
	font-size: 1.1em;
	color: #fff;
	display: block;
	transition: background-color .2s ease-in-out, color .2s ease-in-out;
}
footer ul li a:hover,
footer ul li a:focus {
	font-weight: 700;
	color: #2369b3;
	text-decoration: none;
	background-color: #e8ebed;
}



/***
* BARRA DO RODAPÉ DO GOVERNO
***/

#botao-rodape {
	text-transform: none;
}

#footer-brasil {
	max-width: 100%;
	padding: 1em 0;
	background: none repeat scroll 0% 0% #0e4097;
}

div#wrapper-footer-brasil {
	padding: 0 0 !important;
	max-width: 1150px !important;
}

#wrapper-footer-brasil {
	width: auto;
	max-width: 960px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	overflow: hidden;
}
#wrapper-footer-brasil .logo-acesso-footer {
	width: 107px;
	height: 49px;
	float: left;
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGsAAAAxCAMAAADqdKevAAAABGdBâ€¦V1uu93qBev3X87n0iXulc3Zy5e3sP6/1txdKln/X/rP8A6HRZ8kCrrTMAAAAASUVORK5CYII=") center no-repeat;
}
#wrapper-footer-brasil .logo-brasil-footer {
	width: 153px;
	height: 48px;
	float: right;
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJkAAAAwCAMAAAA1kSiuAAAABGdBâ€¦UtZMaKXAyvRhVciXOMwsvUkfp1UiV7lhKShzF7HpypvZvSR7U59ZU+3sAAAAASUVORK5CYII=") center no-repeat;
}



/***
* ALTO CONTRASTE
***/

body.contraste,
body.contraste * {
	color: #fff !important;
	border-color: #fff !important;
	background-color: #000 !important;
}

body.contraste a:hover,
body.contraste a:focus,
body.contraste a.ativo,
body.contraste button:hover,
body.contraste button:focus,
body.contraste button.ativo {
	color: #000 !important;
	background-color: #fff !important;
}

body.contraste .box-grafico .box-grafico__titulo { border: 1px solid #fff !important; }
body.contraste .carrossel-graficos .botao-anterior,
body.contraste .carrossel-graficos .botao-proximo { background: none !important; }

body.contraste ::-webkit-input-placeholder { color: #fff !important; }
body.contraste :-moz-placeholder { color: #fff !important; }
body.contraste ::-moz-placeholder { color: #fff !important; }
body.contraste :-ms-input-placeholder { color: #fff !important; }

body.contraste select:hover,
body.contraste select:focus,
body.contraste input:hover,
body.contraste input:focus,
body.contraste textarea:hover,
body.contraste textarea:focus {
	color: #fff !important;
	box-shadow: 0 0 2px 4px #fff !important;
}

body.contraste button:hover i,
body.contraste button:focus i,
body.contraste button.ativo i {
	color: #000 !important;
	background: none !important;
}

body.contraste .lista-midias a { background: none !important; }
body.contraste .aegypti { background-color: transparent !important; }

body.contraste #alto-contraste.ativo {
	color: #000 !important;
	background-color: #fff !important;
}



/***
* TOOLTIP DOS GRÃFICOS
***/

.fa-question-circle[data-toggle="tooltip"] { cursor: pointer; }

.label-tooltip,
.box-grafico .label-tooltip {
	max-width: 500px;
	padding: 5px 15px;
	display: inline-block;
	position: fixed;
	top: 0;
	left: 0;
	border-radius: 4px;
	border: 1px solid #dedede;
	z-index: 9999;
	background-color: rgba(255,255,255,.9);
}
.label-tooltip span,
.box-grafico .label-tooltip span {
	font-weight: 400;
	font-size: .86em;
	color: #565a5c;
	text-transform: uppercase;
	display: block;
}
.label-tooltip strong,
.box-grafico .label-tooltip strong {
	font-weight: 700;
	font-size: 1.1em;
	color: #565a5c;
	display: block;
}
.label-tooltip b,
.box-grafico .label-tooltip b {
	font-weight: 700;
	font-size: 1.1em;
	color: #565a5c;
}

/* Tooltip do bootstrap */

.tooltip-inner {
	padding: 5px 15px;
	/*font-weight: 700;*/
	font-size: 1.1em;
	color: #565a5c;
	border-radius: 4px;
	border: 1px solid #dedede;
	background-color: #fff;
	text-align: left !important;
	max-width: 600px !important;
}
.tooltip-arrow { display: none; }

/***
* ABAS
***/

.nav-tabs--box-grafico,
.nav-tabs { border: none; }

.nav-tabs:before,
.nav-tabs--box-grafico:before,
.nav-tabs:after,
.nav-tabs--box-grafico:after {
	content: " ";
	display: table;
}
.nav-tabs--box-grafico:after,
.nav-tabs:after { clear: both; }

.nav-tabs--box-grafico{
	margin: 10px 0 0 0;
	padding: 0;
	list-style-type: none;
}

.tab-content.tab-pane-border .tab-pane {
	padding: 10px;
	border: 1px solid #dbdbdb;
	background-color: #fafafa;
}
/*
.tab-content.tab-pane-border .tab-pane .proximo-passo,
.tab-content.tab-pane-border .tab-pane .proximo-passo-costas,
.tab-content.tab-pane-border .tab-pane .tabela-receptor {
	border: none;
}
.tab-content.tab-pane-border .tab-pane .proximo-passo .fa-angle-right,
.tab-content.tab-pane-border .tab-pane .proximo-passo-costas:before {
	display: none;
}
*/

.nav-tabs--box-grafico > li{
	float: left;
	margin-bottom: -1px;
}

.nav-tabs--box-grafico > li > a{
	margin-bottom: 0;
	padding: 5px 15px;
	cursor: pointer;
	display: inline-block;
	font-weight: bold;
	text-align: center;
	font-size: 1em;
	line-height: 1.4;
	color: #00b4f5;
	text-decoration: none;
	text-transform: uppercase;
	vertical-align: middle;
	border-radius: 2px;
	border: 1px solid #c4e8f5;
	background-color: #fff;
	background-image: none;
	transition: background-color .2s ease-in-out, color .2s ease-in-out;
}
@media screen and (max-width: 480px) {
	.nav-tabs--box-grafico > li,
	.nav-tabs--box-grafico > li > a,
	.nav-tabs--box-grafico > li > button{
		float: none;
		width: 100%;
	}
}

.em-uso,
.nav-tabs--box-grafico li.active > a,
.nav-tabs--box-grafico li > a:hover,
.nav-tabs--box-grafico li.active > a:hover,
.nav-tabs--box-grafico li.active > a:focus,
.nav-tabs--box-grafico li.active > a:active,
.nav-tabs--box-grafico li.active > button,
.nav-tabs--box-grafico li > button:hover,
.nav-tabs--box-grafico li.active > button:hover,
.nav-tabs--box-grafico li.active > button:focus,
.nav-tabs--box-grafico li.active > button:active{
	color: #fff;
	background-color: #00b4f5;
	border: 1px solid #c4e8f5;
	border-radius: 2px;
}

.nav-tabs--box-grafico li > a > small {
	font-size: 70%;
}


.nav-tabs--pills{
	display: table;
	width: 100%;
}

.nav-tabs--pills > li{
	float: none;
	display: table-cell;
	text-align: center;
	background: #f5f5f5;
	border-top: 1px solid #dbdbdb;
	border-right: 1px solid #dbdbdb;
	border-bottom: 1px solid #dbdbdb;
	vertical-align: middle;
	cursor: pointer;
}

.nav-tabs--pills > li > a{
	border-radius: 0;
	margin: 0;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 1.2em;
	line-height: 1.2em;
	padding: 15px 45px;
	font-family: 'Roboto Condensed';
}

.nav-tabs--pills > li:first-of-type{
	border-left: 1px solid #dbdbdb;
}

.nav-tabs--pills > li.active,
.nav-tabs--pills > li.active:hover,
.nav-tabs--pills > li.active > a,
.nav-tabs--pills > li.active > a:focus,
.nav-tabs--pills > li.active > a:hover{
	color: #fff;
	background-color: #2369b3;
	border: transparent;
}

.nav-tabs--pills > li:focus,
.nav-tabs--pills > li:hover,
.nav-tabs--pills > li > a:focus,
.nav-tabs--pills > li > a:hover{
	background-color: #eee;
}
.nav-tabs--pills > li > a:focus,
.nav-tabs--pills > li > a:hover{
	border: 1px solid transparent;
}
/***
* GRÃFICO DE BARRAS - SVG
***/

.axis path,
.axis line {
	fill: none;
	stroke: #bdbdbd;
}
.axis text {
	font-weight: 700;
	font-family: 'Open Sans regular', 'Open Sans';
	font-size: 14px;
	fill: #666;
}
.bar { fill: #06c; }
.bar:hover { fill: #0cf; }

.barras-vertical .x text {
	text-anchor: middle !important;
	display: none;
}
.barras-horizontal {
	width: 100% !important;
	display: block;
}

.clicavel { cursor: pointer; }


/***
* GRÃFICO TREEMAP
***/

.box-opcoes-grafico-visualizador .box-grafico-treemap .grafico-receptor {
	min-height: 306px;
	margin-top: 10px;
	position: relative;
}
.box-grafico-treemap .grafico-receptor {
	margin-top: 15px;
	padding: 0;
	position: relative;
}

.box-grafico-treemap.ampliado .grafico-receptor{
	margin-top: 30px;
}

.box-grafico-treemap .node {
	padding: 5px 10px;
	overflow: hidden;
	position: absolute;
	transition: background .2s ease-in-out, color .2s ease-in-out;
}
.box-grafico-treemap .node span {
	font-weight: 400;
	font-family: 'Open Sans regular', 'Open Sans';
	font-size: 16px;
	color: #fff;
	text-align: left;
	display: block;
}
.box-grafico-treemap .node strong {
	font-weight: 400;
	font-family: 'Open Sans regular', 'Open Sans';
	font-size: 30px;
	color: #fff;
	display: block;
	position: absolute;
	left: 50%;
	bottom: 0;
	opacity: .7;
	-webkit-transform: translate(-50%,0);
	transform: translate(-50%,0);
}

.box-grafico-treemap .grafico-receptor {
	width: 100%;
	height: 100%;
}
.box-grafico-treemap .grafico-receptor text { pointer-events: none; }
.box-grafico-treemap .grafico-receptor .grandparent text { font-weight: bold; }
.box-grafico-treemap .grafico-receptor rect { cursor: pointer; }
.box-grafico-treemap .grafico-receptor rect.parent {
	cursor: default;
	stroke-width: 2px;
}
.box-grafico-treemap .grafico-receptor .grandparent { cursor: pointer; }
.box-grafico-treemap .grafico-receptor .grandparent rect { fill: #fafafa; }
.box-grafico-treemap .grafico-receptor .grandparent body { background-color: #fafafa; }
.box-grafico-treemap .grafico-receptor .depth body { background: none; }

@-moz-document url-prefix() {
	.box-grafico-treemap .grafico-receptor .grandparent-text{
		position: relative;
		top: -20px;
	}
}

@supports (-ms-accelerator:true) {
	.box-grafico-treemap .grafico-receptor .grandparent-text{
		position: relative;
		top: -20px;
	}
}

.box-grafico-treemap .grafico-receptor .grandparent-text,
.box-grafico-treemap .grafico-receptor .grandparent .grandparent-text{
	min-width: 10px;
	min-height: 10px;
	font-weight: 600;
	font-size: 14px;
	text-align: left;
	display: inline-block;
	position: relative;
}
.box-grafico-treemap .grafico-receptor .grandparent-text i { margin-right: 10px; }
.box-grafico-treemap .grafico-receptor .children rect.parent { fill: none; }

.porcentagem-treemap {
	font-size: 14px;
	display: block;
	cursor: default;
}
.label-treemap {
	color: white;
	font-family: "Open Sans",sans-serif;
	line-height: 1;
	text-align: left;
	word-break: break-word;
	display: block;
	cursor: default;
}
.children .label-treemap,
.children .porcentagem-treemap { cursor: pointer; }

.grafico-treemap .depth .children text {
	overflow: hidden;
}
/*.grafico-treemap .depth .children text tspan {
    color: white;
    font-family: "Open Sans",sans-serif;
    line-height: 1;
    text-align: left;
    -ms-word-break: break-all;
    display: block;
    cursor: default;
}*/

/* BOX DE BUSCA ESPECÃFICA */

.box-busca-especifica { margin-top: 50px; }
.box-busca-especifica input[type=text] {
	width: 90%;
	float: left;
}
.box-busca-especifica button[type=submit]{
	width: 10%;
	float: right;
}
.botoes-compartilhar-link {
	width: 30%;
	float: left;
	padding-right: 0px;
	padding-left: 0px;
}

@media screen and (max-width: 768px) {
	.botoes-compartilhar-link {
		width: 100%;
		float: left;
		padding-right: 15px;
		padding-left: 15px;
	}
}

#btnGerarLink, #btnCopiarLink {
	float: left;
	width: 50%;
	min-height: 34px;
}
.box-busca-especifica button[type=submit]:focus i,
.box-busca-especifica button[type=submit]:hover i,
.box-busca-especifica button[type=submit].ativo i { color: #fff; }

.box-form {
	margin-bottom: 30px;
	margin-top: 50px;
}
.box-busca-especifica .texto-busca,
.box-form label {
	margin-bottom: 20px;
	font-weight: 700;
	color: #2369b3;
	display: block;
}
.box-busca-especifica div form {
	margin-bottom: 20px;
}
.box-form label { margin-bottom: 0; }
.box-form .form-group { margin-bottom: 30px; }


/***
* CSS INLINE
***/

.no-margin-top { margin-top: 0 !important; }
.no-margin-bottom { margin-bottom: 0 !important; }
.wrapper-table,
.wrapper-table--simples {
	width: 100%;
}
.border-left { border-left: 1px solid #dbdbdb; }
.botao-direita {
	margin-top: 10px;
	float: right;
}
.botao-direita + .botao-direita { margin-right: 5px; }
.center-block { float: none; }
.full-width { width: 100%; }
.botao-full {
	width: 100%;
	margin-top: 30px;
	padding: 13px 10px 14px!important;
}
@media screen and (max-width: 480px) {
	.botao-full {
		margin-top: 15px;
	}
}
.botao-full i { margin-left: 20px; }
.titulo-com-botao { padding-right: 20px; }
.posicao-direita {
	position: absolute;
	top: 12px;
	right: 15px;
}

@media screen and (min-width: 1170px) {
	.row-min-height{
		margin-top: 40px;
	}
	.row-min-height .col-lg-2{
		min-height: 85px;
	}
	.row-min-height .botao-full{
		margin-top: 0;
	}
}

@media screen and (max-width: 1170px) {
	.posicao-direita {
		margin-bottom: 20px !important;
		position: static;
		top: auto;
		right: auto;
	}
}

.receita { color: #00bd62 !important; }
.despesa { color: #eb384a !important; }

.col-sm-0 {
	width: 0;
	height: 0;
	overflow: hidden;
	float: left;
}

/***
* AJAX
***/

.loading-grande {
	margin: 375px 0;
	font-size: 40px !important;
	color: #666;
	text-align: center;
	display: block;
}
.loading {
	margin: 140px 0;
	font-size: 40px;
	color: #666;
	text-align: center;
	display: block;
}

.loading-busca {
	margin: 375px 0;
	font-size: 40px !important;
	color: #666;
	text-align: center;
	display: block;
}

/***
* BOOTSTRAP
***/

.dropdown-menu li {
	padding: 5px 10px 5px 30px;
	position: relative;
}
.dropdown-menu li + li { border-top: 1px solid #ccc; }
.dropdown-menu li input[type=checkbox] {
	position: absolute;
	top: 3px;
	left: 10px;
}
.dropdown-menu li label { display: block; }

.mensagem-vazio {
	width: 100%;
	padding: 0 15px;
	text-align: center;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0,50%);
	transform: translate(0,50%);
}

.formulario-incorporar textarea { height: 70px; }
.formulario-incorporar .box-incorporar { margin-top: 10px; }
.form-texto {
	line-height: 34px;
	text-indent: -5px;
	display: block;
}
@media screen and (max-width: 992px) {
	.form-texto { text-indent: 2px; }
}
.form-vertical-center {
	padding: 10px 0 0;
	display: block;
}

/***
* VIDEO - EMBED IFRAME
***/
.video-wrapper{
	padding: 4px;
	background-color: #fafafa;
}
.video-wrapper.video-wrapper--margin-bottom{
	margin-top: 50px;
	margin-bottom: 50px;
}
.video-wrapper .video-wrapper__container {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.video-wrapper .video-wrapper__container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}
.video-wrapper__desc{
	background-color: #f2f2f2;
	padding: 15px;
	margin: 4px -4px -4px;
}

.video-wrapper__pag{
	background-color: #ebf2f5;
	border: 1px solid #bcdeeb;
	border-radius: 2px;
	position: relative;
	min-height: 135px;
	padding: 20px 50px 50px;
	margin: 20px 0 50px;
	position: relative;
}

.video-wrapper__pag > div{
	text-align: center;
}

.video-wrapper__pag .cycle-carousel-item{
	margin: 0 5px;
}

.video-wrapper__pag .cycle-carousel-item a{
	position: relative;
	z-index: 0;
	display: block;
	background: #2369b3;
}

.video-wrapper__pag .cycle-carousel-item a img,
.video-wrapper__pag .cycle-carousel-item a:hover:before{
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	opacity: 1;
}

.video-wrapper__pag .cycle-carousel-item a:hover img{
	opacity: 0.1;
}

.video-wrapper__pag .cycle-carousel-item a:hover:before{
	content: "\f03d";
	width: 50px;
	height: 50px;
	color: #fff;
	display: block;
	font: normal normal normal 30px/50px FontAwesome;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -25px;
	margin-left: -25px;
	z-index: 1;
	opacity: 1;
}

.video-wrapper__pag .prev,
.video-wrapper__pag .next{
	position: absolute;
	top: 50%;
	margin-top: -45px;
	color: #00b4f5;
	font-size: 65px;
	line-height: 70px;
	overflow: hidden;
}

.video-wrapper__pag .prev{
	left: 15px;
}

.video-wrapper__pag .next{
	right: 15px;
}
.video-wrapper__pag .prev span,
.video-wrapper__pag .next span {
	position: absolute;
	left: -9999px;
}

.video-wrapper__pag .pager{
	position: absolute;
	bottom: 15px;
	left: 0;
	margin: 0;
	width: 100%;
	text-align: center;
}

.video-wrapper__pag .pager > i{
	cursor: pointer;
	color: #00b4f5;
	margin: 0 3px;
}

.video-wrapper__pag .pager > i.cycle-pager-active{
	color: #2369b3;
}

.image-box{
	border-top: 2px solid #2369b3;
	background-color: #e8ebed;
	margin-bottom: 25px;
}
.image-box img{
	width: 100%;
	max-width: none;
}
.image-box__subtitulo{
	margin: 0;
	padding: 11px 8px 12px;
	font-weight: 700;
	font-size: 1.3em;
	color: #2369b3;
	text-transform: uppercase;
}

.image-labeled{
	background-color: #fafafa;
}
.image-labeled.image-labeled--margin-top{
	margin-top: 50px;
}
.image-labeled.image-labeled--margin-bottom{
	margin-bottom: 50px;
}
.image-labeled__desc{
	background-color: #f2f2f2;
	padding: 15px;
}

.entenda-a-gestao-fiscal,
.box-accordion--alt{
	margin: 50px 0;
}
.box-accordion {
	margin: 20px 0;
}
.tab-content.box-accordion { margin: 0; }

.entenda-a-gestao-fiscal > div,
.box-accordion--alt > div,
.box-accordion > div{
	padding: 10px;
	border: 1px solid #dbdbdb;
}

.entenda-a-gestao-fiscal > button,
.box-accordion--alt > button,
.entenda-a-gestao-fiscal > a[role="button"],
.box-accordion--alt > a[role="button"],
.box-accordion > button,
.box-accordion > a[role="button"]{
	color: #fff;
	background-color: #2369b3;
	border: transparent;
	border-radius: 0;
	margin: 0;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 1.2em;
	line-height: 1.2em;
	padding: 15px 45px;
	width: 100%;
	position: relative;
	font-family: 'Roboto Condensed';
}

.entenda-a-gestao-fiscal button.collapsed,
.box-accordion--alt button.collapsed,
.entenda-a-gestao-fiscal a[role="button"].collapsed,
.box-accordion--alt a[role="button"].collapsed,
.box-accordion button.collapsed,
.box-accordion a[role="button"].collapsed{
	background: #f5f5f5;
	color: #2369b3;
	border-bottom: 1px solid #dbdbdb;
	border-left: 1px solid #dbdbdb;
	border-right: 1px solid #dbdbdb;
}

.box-accordion button.close-others:after,
.box-accordion--alt button.close-others:after,
.entenda-a-gestao-fiscal button.close-others:after,
.box-accordion a[role="button"].close-others:after,
.box-accordion--alt a[role="button"].close-others:after,
.entenda-a-gestao-fiscal a[role="button"].close-others:after {
	font-family: FontAwesome;
	margin-left: 5px;
}
.box-accordion--alt button.close-others:after,
.box-accordion--alt a[role="button"].close-others:after {
	position: absolute;
	top: 50%;
	right: 15px;
	-webkit-transform: translate(0,-50%);
	transform: translate(0,-50%);
}
.box-accordion button.close-others:after,
.box-accordion--alt button.close-others:after,
.entenda-a-gestao-fiscal button.close-others:after,
.box-accordion a[role="button"].close-others:after,
.box-accordion--alt a[role="button"].close-others:after,
.entenda-a-gestao-fiscal a[role="button"].close-others:after { content: "\f0d8"; }
.box-accordion button.close-others.collapsed:after,
.box-accordion--alt button.close-others.collapsed:after,
.entenda-a-gestao-fiscal button.close-others.collapsed:after,
.box-accordion a[role="button"].close-others.collapsed:after,
.box-accordion--alt a[role="button"].close-others.collapsed:after,
.entenda-a-gestao-fiscal a[role="button"].close-others.collapsed:after { content: "\f0d7"; }

.entenda-a-gestao-fiscal button.collapsed:hover,
.box-accordion--alt button.collapsed:hover,
.entenda-a-gestao-fiscal a[role="button"].collapsed:hover,
.box-accordion--alt a[role="button"].collapsed:hover,
.box-accordion button.collapsed:hover,
.box-accordion a[role="button"].collapsed:hover{
	background-color: #eee;
}

.entenda-a-gestao-fiscal button.collapsed:first-of-type,
.box-accordion--alt button.collapsed:first-of-type,
.entenda-a-gestao-fiscal a[role="button"].collapsed:first-of-type,
.box-accordion--alt a[role="button"].collapsed:first-of-type,
.box-accordion button.collapsed:first-of-type,
.box-accordion a[role="button"].collapsed:first-of-type{
	border-top: 1px solid #dbdbdb;
}

.box-accordion--alt button{
	text-align: left;
	padding: 15px 25px;
}
.box-accordion--alt > button strong {
	font-family: "Open Sans", sans-serif;
	font-size: .85em;
	color: #fff;
	text-transform: none;
	display: block;
}
.box-accordion--alt > button span {
	font-weight: 400;
	font-family: "Open Sans", sans-serif;
	font-size: .85em;
	color: #fff;
	text-transform: none;
	display: block;
}
.box-accordion--alt > button.collapsed strong { color: #000; }
.box-accordion--alt > button.collapsed span { color: #000; }

.entenda-a-gestao-fiscal .title,
.box-accordion--alt .title,
.box-accordion .title{
	font-size: 22px;
	color: #2369b3;
	font-weight: bold;
	font-family: 'Open Sans';
}

.lista-em-blocos{
	list-style-type: none;
	padding: 0;
	margin: 20px 0;
}

.lista-em-blocos > li{
	padding: 10px 0;
	border-bottom: 1px solid #f2f2f2;
}

.lista-em-blocos > li:first-of-type{
	border-top: 1px solid #f2f2f2;
}

.lista-em-blocos > li > img{
	float: left;
	margin-right: 15px;
}

.lista-em-blocos > li > span{
	text-transform: uppercase;
	font-size: 12px;
	font-weight: bold;
	color: #666666;
	display: block;
}

.lista-em-blocos > li > strong{
	font-size: 16px;
	font-weight: bold;
	color: #2369b3;
	display: block;
}

.bloco-saiba-mais{
	border-top: 1px solid #dbdbdb;
	padding-top: 20px;
	padding-bottom: 50px;
}
.bloco-saiba-mais .title{
	color: #2369b3;
	font-size: 24px;
	font-weight: bold;
}
.bloco-saiba-mais--margin-top{
	margin-top: 50px;
}

.prev-item,
.next-item{
	background-color: #ebf2f5;
	border: 1px solid #bcdeeb;
	border-radius: 2px;
	position: relative;
	min-height: 135px;
	padding: 20px;
	margin: 20px 0;
}
.prev-item strong,
.next-item strong{
	font-size: 20px;
	font-weight: bold;
	color: #2369b3;
	display: block;
}
.prev-item span,
.next-item span{
	font-size: 16px;
	color: #666666;
	display: block;
}
.prev-item i,
.next-item i{
	position: absolute;
	color: #00b4f5;
	font-size: 45px;
	line-height: 40px;
	top: 50%;
	margin-top: -20px;
}
.prev-item a:hover,
.next-item a:hover{
	text-decoration: none;
}
.prev-item{
	padding-left: 65px;
}
.prev-item i{
	left: 20px;
}
.next-item{
	padding-right: 65px;
}
.next-item i{
	right: 20px;
}
.prev-item:hover,
.next-item:hover,
.next-item:hover i,
.next-item:hover strong,
.next-item:hover span,
.prev-item:hover i,
.prev-item:hover strong,
.prev-item:hover span{
	color: #fff;
	background-color: #2369b3;
}
.prev-item.inactive,
.next-item.inactive{
	opacity: 0.5;
}
.prev-item.inactive:hover,
.next-item.inactive:hover,
.next-item.inactive:hover i,
.next-item.inactive:hover strong,
.next-item.inactive:hover span,
.prev-item.inactive:hover i,
.prev-item.inactive:hover strong,
.prev-item.inactive:hover span{
	color: #00b4f5;
	background-color: #ebf2f5;
}

.two-columns--bordered{
	margin-bottom: 50px;
}

.two-columns__a{
	padding-right: 100px;
}
.two-columns__b{
	border-left: 1px solid #dbdbdb;
	padding-left: 100px;
	padding-right: 100px;
}

.intro-text{
	margin-bottom: 50px;
}

/***
* INDICE DO GLOSSÃRIO
***/
.busca-indice{
	width: 100%;
	padding: 30px 0 0;
	position: relative;
}

.busca-indice .easy-autocomplete-container {
	top: 34px;
}

.busca-indice__title{
	font-size: 24px;
	font-weight: bold;
	color: #2369b3;
}

#form-busca-indice,
#form-busca-localidade{
	margin-bottom: 30px;
	position: relative;
}

#form-busca-indice input[type="text"],
#form-busca-indice input[type="text"]{
	padding-right: 7%;
	box-shadow: none;
}

#form-busca-indice button,
#form-busca-localidade button{
	width: 6%;
	min-width: 32px;
	height: 32px;
	min-height: inherit;
	padding: 0;
	font-size: 26px;
	color: #00bbff;
	display: inline-block;
	position: absolute;
	top: 1px;
	right: 1px;
	border: none;
	box-shadow: none;
	border-radius: 0;
}
@media screen and (max-width: 480px) {
	#form-busca-indice input[type="text"],
	#form-busca-indice button {
		width: 100%;
		margin-left: inherit;
	}
	#form-busca-indice button {
		position: static;
		top: auto;
		right: auto;
		border: 1px solid #bfbfbf;
	}
	.box-busca-form input[type="text"],
	.form-busca-topo input[type="text"] { border: 1px solid #bfbfbf; }
}

#form-busca-indice button:active,
#form-busca-indice button:focus,
#form-busca-indice button:hover{ color: #fff; }

#box-listas--filtros ul{
	max-height: 240px;
	overflow: hidden;
	position: relative;
	z-index: 0;
}

#box-listas--filtros ul.expanded{
	max-height: none;
	overflow: visible;
	margin-bottom: 50px;
}

#box-listas--filtros ul.expanded .expand-list{
	bottom: -30px;
}

#box-listas--filtros.box-listas li a{
	position: relative;
}
#box-listas--filtros.box-listas li a > i{
	display: none;
}
#box-listas--filtros.box-listas li a.ativo > i{
	display: block;
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -7px;
}

.expand-list{
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	background: #e8ebed;
	width: 100%;
	text-align: center;
}

.expand-list a{
	display: block;
	line-height: 30px;
	font-size: .86em;
	font-weight: 700;
	color: #565a5c;
	text-transform: uppercase;
}

.expand-list a.close-list{
	display: none;
}

#box-listas--filtros ul.expanded a.close-list{
	display: block;
}

#box-listas--filtros ul.expanded a.open-list{
	display: none;
}

.expand-list a:active,
.expand-list a:focus,
.expand-list a:hover{
	text-decoration: none;
}

.expand-list a i{
	color: #fff;
	background-color: #00b4f5;
	display: inline-block;
	width: 18px;
	height: 18px;
	line-height: 18px;
	border-radius: 50%;
	vertical-align: middle;
	margin-right: 7px;
}

/* Item Ver Mais do final da lista */

li.box-listas__mais {
	width: 100%;
	margin-top: 10px;
	text-align: center;
}
li.box-listas__mais a {
	padding: 6px 10px;
	font-weight: 700;
	font-size: .86em;
	color: #565a5c;
	line-height: normal;
	text-transform: uppercase;
	display: block;
	background: #e8ebed;
}
li.box-listas__mais a i {
	color: #fff;
	background-color: #00b4f5;
	display: inline-block;
	width: 18px;
	height: 18px;
	line-height: 18px;
	border-radius: 50%;
	vertical-align: middle;
	margin-right: 7px;
}

.tabela-dados-abertos{
	margin-bottom: 50px;
}

.dados-abertos-box{
	padding: 10px;
	border: 1px solid #ebebeb;
}
.dados-abertos-box.grafico-tabela {
	min-height: 320px;
	padding: 13px 15px 50px;
}
@media screen and (max-width: 767px) {
	.dados-abertos-box.grafico-tabela { min-height: 0; }
}

.dados-abertos-box a[role="button"]{
	padding: 10px 25px;
}

.expose {
	position: relative;
}

#modal-tutorial > .modal-dialog{
	width: 100%;
	margin: 0;
}

#tutorial-desc{
	width: 600px;
	background-color: #e6e6e6;
	padding: 40px 20px 20px 20px;
	margin: 30px auto;
	position: absolute;
}

#tutorial-desc > div{
	position: relative;
}

#tutorial-desc > div:after{
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	bottom: -40px;
	left: 20px;
	margin-left: -20px;
	border-style: solid;
	border-width: 20px 20px 0 20px;
	border-color: #e6e6e6 transparent transparent transparent;
	z-index: 10;
}

#tutorial-desc > div > .close-modal{
	position: absolute;
	top: -40px;
	right: -20px;
	color: #fff;
	background-color: #00b4f5;
}

#tutorial-desc > div > .close-modal:hover{
	color: #00b4f5;
	background-color: #fff;
}

#tutorial-desc h3{
	margin-top: 0;
	font-weight: 700;
	font-size: 1.15em;
	color: #2369b3;
}

@media screen and (max-width: 767px) {
	#tutorial-desc {
		width: 90%;
	}
}
@media screen and (max-width: 480px) {
	#tutorial-desc {
		width: 85%;
		padding: 35px 15px 15px 15px;
	}
	#tutorial-desc > div > .close-modal{
		top: -35px;
		right: -15px;
	}
	#tutorial-desc > div:after{
		bottom: -35px;
		left: 15px;
	}
}


#tutorial-modal{
	width: 600px;
	background-color: #e6e6e6;
	padding: 40px 20px 20px 20px;
	margin: 200px auto;
}

#tutorial-modal > div{
	position: relative;
}

#tutorial-modal > div > .close-modal{
	position: absolute;
	top: -40px;
	right: -20px;
	color: #fff;
	background-color: #00b4f5;
}

#tutorial-modal > div > .close-modal:hover{
	color: #00b4f5;
	background-color: #fff;
}

#tutorial-modal h3{
	margin-top: 0;
	font-weight: 700;
	font-size: 1.15em;
	color: #2369b3;
}

@media screen and (max-width: 767px) {
	#tutorial-modal {
		width: 90%;
	}
}
@media screen and (max-width: 480px) {
	#tutorial-modal {
		width: 85%;
		padding: 35px 15px 15px 15px;
	}
	#tutorial-modal > div > .close-modal{
		top: -35px;
		right: -15px;
	}
	#tutorial-modal > div:after{
		bottom: -35px;
		left: 15px;
	}
}

.nav-in-sidebar {
	position: relative;
	z-index: 1;
}

.nav-in-sidebar .nav-holder{}

.nav-in-sidebar .nav-holder > div{
	border: 1px solid #c7c7c7;
	background-color: #e8ebed;
	padding: 7px;
	box-sizing: border-box;
}

.nav-in-sidebar .nav-holder .nav{
	margin: 0;
}
.nav-in-sidebar .nav-holder .nav .box-tabela-filtro__titulo {
	margin: 20px 0;
	word-break: normal;
}

.nav-in-sidebar .nav-tabs--box-grafico > li:first-of-type{
	margin-top: 15px;
}

.nav-in-sidebar .nav-tabs--box-grafico > li:first-of-type.no-margin {
	margin-top: 0;
}

.nav-in-sidebar .nav-tabs--box-grafico > li{
	margin-top: 7px;
	float: none;
	clear: both;
	width: 100%;
}

.nav-in-sidebar .nav-tabs--box-grafico > li > a{
	width: 100%;
	min-height: 50px;
	padding: 5px;
	font-size: .9em;
	line-height: 50px;
	word-wrap: break-word;
}
.nav-in-sidebar .nav-tabs--box-grafico > li > button {
	width: 100%;
	min-height: 50px;
	padding: 5px;
	font-size: .9em;
	word-wrap: break-word;
}


/***
* BOX DE AUTOCOMPLETE
***/

.box-autocomplete {
	position: relative;
}
.box-autocomplete .box-busca-autocomplete {
	display: none;
	position: absolute;
	top: 33px;
	left: 0;
	border: 1px solid #e7e7e7;
	z-index: 10;
	background-color: #fff;
}
.box-autocomplete .box-busca-autocomplete.ativo { display: block; }
.box-autocomplete .box-busca-autocomplete > div {
	padding: 25px;
	position: relative;
}
.box-autocomplete .box-busca-autocomplete > div + div { border-top: 1px solid #e7e7e7; }
.box-autocomplete .box-busca-autocomplete > div span {
	font-size: 1.15em;
	color: #454545;
	position: absolute;
	top: 25px;
	left: 25px;
}
.box-autocomplete .box-busca-autocomplete > div ul {
	padding: 0 0 0 195px;
	list-style-type: none;
}
.box-autocomplete .box-busca-autocomplete > div ul li {
	font-size: .86em;
}
.box-autocomplete .box-busca-autocomplete > div ul li a {
	font-size: 1.35em;
}
.box-autocomplete .box-busca-autocomplete a {
	color: #00b4f5;
}

/***
* LISTAS
***/

/* LISTAS DE RESULTADOS DE PESQUISA */

.lista-resultados {
	margin: 0;
	padding: 0;
	list-style: none;
}
.lista-resultados li {
	padding: 6px 15px 10px;
	border: 1px solid #f2f2f2;
	background-color: #fafafa;
}
.lista-resultados li + li { margin-top: 15px; }
.lista-resultados li .titulo-3 {
	margin: 0 -15px 11px;
	padding: 0 15px 7px;
	font-weight: 700;
	font-size: 1.2em;
	border-bottom: 1px solid #f2f2f2;
}
.lista-resultados li a { color: #00b4f5; }

.lista-resultados--menor {
	margin: 15px 0;
	padding: 0;
	list-style: none;
}
.lista-resultados--menor li {
	padding: 6px 15px;
	border: 1px solid #f2f2f2;
	background-color: #fafafa;
}
.lista-resultados--menor li + li { margin-top: 15px; }
.lista-resultados--menor li .titulo-3 {
	margin: 0 -15px 5px;
	padding: 0 15px 7px;
	font-weight: 700;
	font-size: 18px;
}
.lista-resultados--menor li a { color: #00b4f5; }

.subtitulo--menor{
	font-size: 0.8em;
}

/***
* TELA DE PESSOAS FÃSICAS
***/

.titulo-3--menor2,
.checkbox .titulo-3--menor2 {
	font-weight: 700;
	font-size: 1.15em;
	color: #2369b3;
	text-transform: uppercase;
}
.titulo-3--menor2.sem-margem{
	margin: 0;
}
.titulo-3--menor3 {
	font-weight: 700;
	font-size: 1.0em;
	color: #2369b3;
	text-transform: uppercase;
	margin-top: 0px;
	margin-bottom: 2px;
}
.titulo-6--menor {
	font-weight: 400;
	color: #000;
	line-height: 1.1em;
}

.titulo-margin-bottom{
	margin-bottom: 30px;
}

.form-consulta {
	margin-bottom: 30px;
	border-left: 1px solid #dbdbdb;
	border-right: 1px solid #dbdbdb;
}

.form-consulta .box-detalhamento--tipo-b { margin: 0; }
.form-consulta label {
	font-weight: 700;
	font-size: 1em;
	color: #2369b3;
	text-transform: uppercase;
}
.form-consulta__body {
	padding: 17px 60px 40px;
	border-top: 1px solid #dbdbdb;
	background-color: #fafafa;
}
.form-consulta__footer {
	margin-top: 20px;
	padding: 5px 0;
	text-align: center;
	background-color: #e8ebed;
}

.campo-busca-simples {
	margin: 0 auto 10px;
	border: 1px solid #a9a9a9;
	border-radius: 4px;
	background-color: #fff;
}
.campo-busca-simples input[type=text] {
	width: 90%;
	height: 40px;
	margin: 0;
	font-size: .9em;
	color: #454545;
	line-height: 32px;
	display: inline-block;
	vertical-align: top;
	border: none;
	box-shadow: none;
	-webkit-box-shadow: none;
	transition: background-color .2s ease-in-out, color .2s ease-in-out;
	-webkit-transition: background-color .2s ease-in-out, color .2s ease-in-out;
}
.campo-busca-simples input[type=submit],
.campo-busca-simples button[type=submit] {
	width: 10%;
	height: 40px;
	margin-left: -4px;
	padding: 0;
	display: inline-block;
	vertical-align: top;
	border: none;
	box-shadow: none;
	-webkit-box-shadow: none;
	transition: background-color .2s ease-in-out;
	-webkit-transition: background-color .2s ease-in-out;
}

g.norte text,
g.nordeste text,
g.centro-oeste text,
g.sul text,
g.sudeste text{
	display: none !important;
}

.box-busca-refinada { padding: 10px 0 0; }
.box-busca-refinada .easy-autocomplete-container { top: 21px; }
.box-busca-refinada .checkbox,
.box-busca-refinada .radio {
	margin-top: 0;
	margin-bottom: 0;
}
.box-busca-refinada label { color: #6d6e70; }
.box-busca-refinada .label-group { color: #2369b3; }

.campo-mesma-linha label {
	width: 15%;
	margin: 0;
	line-height: 34px;
	float: left;
}
.campo-mesma-linha input {
	width: 85%;
	float: right;
}

/***
* HOME
***/

.formulario-localidade {
	width: 100%;
	position: relative;
}
.formulario-localidade input[type="text"] {
	width: 100%;
	padding-right: 50px;
}
.formulario-localidade button[type="submit"] {
	width: 40px;
	position: absolute;
	top: 0;
	right: 0;
	transition: background-color .2s ease-in-out, color .2s ease-in-out;
}
.formulario-localidade button[type="submit"]:hover { color: #fff !important; }
.formulario-localidade .easy-autocomplete-container ul { margin-top: -14px !important; }
.box-busca-especifica .easy-autocomplete-container ul { margin-top: 35px !important; }
.box-busca-especifica .easy-autocomplete-container ul > li { margin: 0; }

.mapa-localidade {
	width: 100%;
	margin-top: 60px;
}

.aviso-home {
	width: 100%;
	margin-bottom: 40px;
	padding: 15px 0;
	overflow: hidden;
	background-color: #00b7f7;
}
.aviso-home span {
	font-weight: 700;
	font-size: .8em;
	color: #fff;
	text-transform: uppercase;
	display: block;
}
.aviso-home a {
	padding: 7px 10px;
	font-weight: 700;
	font-size: .8em;
	color: #00b4f5;
	text-align: center;
	text-transform: uppercase;
	display: block;
	border-radius: 2px;
	background-color: #fff;
}
@media screen and (max-width: 767px) {
	.aviso-home a { margin-top: 20px; }
}


/***
* PAINEL DE PESSOAS FÃSICAS
***/

.box-3 {
	margin: 0px 0 30px;
	position: relative;
	background-color: #fff;
}
.box-3__titulo-3 {
	margin: 0;
	font-weight: 700;
	font-size: 1.72em;
	color: #2369b3;
	padding: 6px 15px 12px;
	border-top: 4px solid #2369b3;
	background-color: #e8ebed;
}
.box-3__box {
	margin-bottom: 10px;
	overflow: hidden;
	border: 1px solid #dbdbdb;
}
.box-3__box-assunto {
	padding: 10px 0 70px;
	position: relative;
}
.box-3__box-assunto--margem-normal {
	padding: 10px 0;
	position: relative;
}
.box-3__box-assunto .box-dica {
	left: 0;
	bottom: 20px;
}

.box-5--borda {
	margin: 20px 0;
	padding: 20px;
	background-color: #e8ebed;
	border-top: 4px solid #2369b3;
}
.box-5__titulo-3 {
	margin: 0;
	font-weight: 700;
	font-size: 1.72em;
	color: #2369b3;
}
.box-5__titulo-7 {
	font-weight: 400;
	font-size: .9em;
	color: #333;
	text-transform: uppercase;
	display: block;
	text-transform: initial;
}

.box-ficha {
	width: 100%;
	margin-bottom: 20px;
	float: left;
	border: 1px solid #ebebeb;
	background-color: #f5f5f5;
	border-radius: 4px;
}
.box-ficha__titulo {
	padding: 10px 15px 10px;
	background-color: #e8ebed;
}
.box-ficha__titulo-3--menor {
	margin: 0;
	font-weight: 700;
	font-size: 1.72em;
	color: #2369b3;
	font-size: 1.3em;
}
.box-ficha .box-ficha__titulo-11 {
	font-weight: 400;
	font-size: 1.75em;
	color: #eb384a;
	display: block;
}
.box-ficha .box-ficha__titulo-12 {
	font-weight: 700;
	font-size: 1.15em;
	color: #000;
	display: block;
}
.box-ficha__resultados {
	padding: 25px 15px 20px;
}
.box-ficha__resultados span {
	font-weight: 400;
	font-size: 1.1em;
	color: #333;
	display: block;
}
.box-ficha__resultados strong {
	margin-top: 10px;
	color: #337ab7;
	display: block;
	text-transform: uppercase;
}
.box-ficha__botao { margin-top: 15px; }

.box-resultados ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.box-resultados li { padding: 11px 0 10px; }
.box-resultados li+li { border-top: 1px solid #dbdbdb; }

.box-detalhes {
	margin: 20px 0;
	padding: 0 20px 10px;
	border-left: 1px solid #dbdbdb;
}
.box-detalhes__titulo {
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 1.3em;
	color: #000;
	line-height: 1.1em;
	display: block;
}
.box-detalhes > ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.box-detalhes > ul li { padding-bottom: 10px; }
.box-detalhes > ul li+li {
	padding-top: 10px;
	border-top: 1px solid #dbdbdb;
}
.box-detalhes > ul span {
	font-size: .9em;
	text-transform: uppercase;
	color: #454545;
	display: block;
}
.box-detalhes > ul strong {
	font-size: 1.2em;
	color: #565a5c;
	display: block;
}

.box-8 {
	padding: 20px;
	background-color: #fafafa;
}

@media screen and (max-width: 480px) {
	.box-8 {
		padding: 8px;
		background-color: #fafafa;
	}
}

.box-9 {
	padding: 20px;
	background-color: #fafafa;
}
.box-8 hr { border-top: 1px solid #dbdbdb; }
.box-8 strong {
	font-weight: 600;
	font-size: 1.0em;
	color: #000;
	display: block;
}
.box-8 span {
	margin-bottom: 10px;
	font-weight: 400;
	font-size: .9em;
	color: #454545;
	display: block;
}
.box-8 .margin-bottom { margin-bottom: 50px; }
.box-8 .titulo-19 {
	font-weight: 700;
	font-size: 1.7em;
	color: #00bd62;
	display: block;
}
.box-8 .titulo-3 {
	font-weight: 700;
	font-size: 1.72em;
	color: #2369b3;
}
.box-8 a { color: #00b4f5; }

.box-8 .titulo-aviso {
	padding: 6px;
	font-size: .9em;
	text-transform: none;
	text-align: center;
	background-color: #d0ebf5;
}

.box-8 .pull-right span, .box-8 .pull-right strong {
	text-align: right;
}

.box-geral {
	width: 100%;
	margin-bottom: 30px;
	position: relative;
	border: 1px solid #dbdbdb;
	background-color: #fafafa;
}
.box-geral.sem-margem{
	margin-bottom: 0;
}
.box-geral__box-titulo {
	padding: 13px 15px 15px;
	background-color: #e8ebed;
}
.box-geral__box-titulo hr { border-top: 1px solid #dbdbdb; }
.box-geral__box-titulo__titulo {
	margin: 0;
	font-weight: 700;
	font-size: 1.15em;
	color: #2369b3;
	text-transform: uppercase;
}
.box-geral__box-titulo__descricao {
	margin: 0;
	font-weight: 400;
	font-size: .86em;
	color: #454545;
	display: block;
}
.box-geral__box-corpo {
	width: 100%;
	position: relative;
	padding: 13px 15px;
}
.box-geral a[role=button] + a[role=button] { margin: 0 10px; }

.easy-autocomplete-container ul{
	margin-top: 16px !important;
	border-radius: 0 !important;
	border-top: none !important;
	border-left: 2px solid #dbdbdb;
	border-right: 2px solid #dbdbdb;
	border-bottom: 2px solid #dbdbdb;
	padding-bottom: 15px !important;
}

.easy-autocomplete-container ul > li{
	margin-left: 25%;
	padding: 5px 15px !important;
}

.easy-autocomplete-container ul > div + li{
	margin-top: -28px;
}

.easy-autocomplete-container ul li,
.easy-autocomplete-container ul li.selected{
	border: none !important;
	background: none !important;
}

.easy-autocomplete-container ul li span {
	color: #00b4f5;
}

.easy-autocomplete-container ul .eac-category{
	border-top: 1px solid #dbdbdb !important;
	border-left: none !important;
	border-right: none !important;
	padding-right: 75% !important;
	margin: 15px 0 0;
	padding-top: 15px !important;
	font-style: normal !important;
}

.easy-autocomplete-container ul .eac-category:first-of-type{
	border: none !important;
}


.red {
	color: #DD4477 !important;
}

.blue {
	color: #295FCC;
}

.green {
	color: #006c35;
}

.orange {
	color: #FFA319;
}


foreignObject body { background: transparent; }
.easy-autocomplete { width: auto !important; }
.easy-autocomplete input {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.box-listagem-resultados {
	width: 100%;
	margin-bottom: 20px;
	padding: 13px 15px 20px;
	position: relative;
	background-color: #fafafa;
	border: 1px solid #dbdbdb;
}
.box-listagem-resultados .proximo-passo__box-titulo { margin-bottom: 20px; }
.box-listagem-resultados .sub-item { margin-left: 20px; }
.box-listagem-resultados label {
	font-weight: 700;
	color: #337ab7;
}
.box-listagem-resultados .sub-item label { font-weight: 400; }
.box-listagem-resultados .sub-item.ativo label { font-weight: 700; }

.box-listagem-resultados ul li {
	list-style-type: none;
}

/* FORMULÃRIO DE NOTIFICAÃ‡Ã•ES */

.formulario-notificacoes { margin-top: 20px; }
.formulario-notificacoes label { padding-bottom: 0; }
.formulario-notificacoes .lista-checkboxes .checkbox,
.formulario-notificacoes .lista-checkboxes .radio { margin-bottom: 0; }

/* VALIDAÃ‡ÃƒO DE FORMULÃRIOS DO BOOTSTRAP */

body .has-danger .form-control {
	border-color: #d9534f !important;
	box-shadow: none !important;
}

/* TIMELINE */

.timeline-me-shortcontent,
.timeline-me-fullcontent{
	background-color: #e8ebed;
}

.timeline-show-btn {
	position: absolute;
	right: 20px;
	bottom: -12px;
	background-color: #2369b3;
	border-radius: 50%;
	color: #FFFFFF;
	height: 24px;
	width: 24px;
	cursor: pointer;
	text-align: center;
	line-height: 24px;
}

.timeline-me-smallitem .timeline-me-label .timeline-me-picto{
	width: 50px;
	height: 50px;
	border-color: #2369b3;
	transition: background-color .2s ease-in-out, color .2s ease-in-out;
}

.timeline-me-smallitem.timeline-me-right .timeline-me-label{
	right: 50%;
	top: 0;
	margin-right: -28px;
	text-align: right;
	padding-right: 56px;
}

.timeline-me-smallitem.timeline-me-left .timeline-me-label,
.timeline-me-smallitem:not(.timeline-me-top):not(.timeline-me-right):not(.timeline-me-bottom) .timeline-me-label {
	left: 50%;
	top: 0;
	margin-left: -28px;
	text-align: left;
	padding-left: 56px;
}

.timeline-me-smallitem.timeline-me-right .timeline-me-content-container{
	padding-left: 43px;
}

.timeline-me-smallitem.timeline-me-left .timeline-me-content-container, .timeline-me-smallitem:not(.timeline-me-top):not(.timeline-me-right):not(.timeline-me-bottom) .timeline-me-content-container{
	padding-right: 43px;
}

.timeline-me-item, .timeline-me-item:first-child {
	margin: 50px 0px;
}

.timeline-me-smallitem .timeline-me-label{
	line-height: 56px;
}

.timeline-custom-label{
	position: absolute;
	left: 0;
	top: 12px;
	z-index: 1000;
	line-height: 16px;
	width: 56px;
	height: 36px;
	text-align: center;
	font-weight: 400;
	font-size: 13px;
	font-family: "Open Sans",sans-serif;
	color: #2369b3;
}

.timeline-me-track:before{
	background: #2369b3;
}

.timeline-me-item:hover .timeline-me-label .timeline-me-picto{
	background: #2369b3;
}

.timeline-me-item:hover .timeline-custom-label{
	color: #fff;
}

.corpo p {
	line-height: 25px;
}


.box-noticias {
	border-bottom: 1px solid #eee;
	margin-bottom: 30px;
	padding-bottom: 20px;
}

.box-noticias h3 {
	color: #23527c;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 16px;
}

.sr-only { display: block; }

/***
* IEs 10 e 11
***/

@media all and (-ms-high-contrast:none) {
	/* IE10 */
	select {
		padding: 0 1% !important;
		background-image: none !important;
	}

	/* IE11 */
	*::-ms-backdrop,
	select {
		padding: 0 1% !important;
		background-image: none !important;
	}
}

.lista-botoes-a a {
	min-height: 70px;
	margin-bottom: 30px;
}

/* MODAL SIMPLES */

.button-modal-simples {
	margin: 0;
	padding: 0;
	font-weight: 400;
	text-transform: none;
	text-align: left;
	text-decoration: underline;
	display: inline;
	border: none;
	background: none;
}
.modal-simples {
	width: 100%;
	max-width: 420px;
	padding: 20px;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: -2;
	opacity: 0;
	border: 1px solid #ededed;
	background-color: #fff;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	-webkit-transition: opacity 300ms ease-in-out, z-index 300ms;
	transition: opacity 300ms ease-in-out, z-index 300ms;
}
.modal-simples.active {
	z-index: 9999;
	opacity: 1;
	-webkit-transition: opacity 300ms ease-in-out;
	transition: opacity 300ms ease-in-out;
}
.fundo-modal-simples {
	width: 100%;
	height: 100%;
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -2;
	opacity: 0;
	background-color: rgba(0,0,0, 0.5);
	-webkit-transition: opacity 300ms ease-in-out, z-index 300ms;
	transition: opacity 300ms ease-in-out, z-index 300ms;
}
.fundo-modal-simples.active {
	z-index: 999;
	opacity: 1;
	-webkit-transition: opacity 300ms ease-in-out;
	transition: opacity 300ms ease-in-out;
}
.modal-simples .button-close-modal {
	width: 29px;
	height: 29px;
	margin: 0;
	padding: 0;
	font-size: 18px;
	color: #3ab7ea;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	border: none;
	border-radius: 50%;
	background-color: #f2f0f0;
}
.modal-simples strong {
	padding: 0 20px 10px;
	text-align: center;
	display: block;
}
.modal-simples ul {
	margin: 0;
	padding: 0;
	min-height: 0;
	border: none;
	background: none;
}
.modal-simples ul span {
	padding: 0 10px 0 20px;
	display: block;
}

.fa-info-circle.big {
	font-size: 30px !important;
}

.modal-title {
	margin: 0;
	line-height: 1.42857143;
	font-size: 18px;
}

@media print {
{
	background: transparent !important;
	color:#000 !important;
	text-shadow: none !important;
	filter: none !important;
	-ms-filter: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

	body {
		margin: 0 !important;
		padding: 0 !important;
		line-height: 1em !important;
		font: 10pt Arial, Georgia, "Times New Roman", Times, serif !important;
		color: #000 !important;
	}

	@page {
		size: portrait;
		margin: 0.5cm 0.5cm 1cm 0.5cm;
		-webkit-margin-after: 2cm;
	}

	#barra-brasil, #header, #duvidas, #divCompartilhar, #arodape, #footer-brasil,
	.box-lista-setas, #divButtonHeader, .evento-imprimir, div .box-ficha__botao,
	div .box-ficha__botao_editado {
		visibility: hidden;
		display: none;
		height: 0;
		width: 0;
	}

	main {
		position: absolute;
		width: 100%;
	}

	a[href]:after { content: none !important; }

	.col-md-12, .col-sm-12 {
		width: 100%;
	}

	.col-md-9, .col-sm-9 {
		width: 75%;
	}

	.col-md-6, .col-sm-6 {
		width: 50%;
		float: left;
	}

	.col-sm-4 {
		width: 33.33333333%;
		float: left;
	}

	.col-sm-3 {
		width: 25%;
		float: left;
	}

	.col-sm-2 {
		width: 16.66666667%;
		float: left;
	}

	.col-sm-1 {
		width: 8.33333333%;
	}

	.box-accordion button.close-others:after,
	.box-accordion a[role="button"].close-others:after{
		display: none;
	}

	.box-accordion button.collapsed {
		border: transparent;
	}

	.box-ficha__resultados {
		padding:  5px 5px 5px ;
	}

	.noprint {
		display: none;
	}
}

/* Página Escala Brasil Transparente - EBT*/

section.indicadores,
section.ranking {
	width: 100%;
	padding: 24px 0;
	position: relative;
	border-top: 4px solid #2369b3;
	border-left:0;
	border-right: 0;
	border-bottom: 0;
	background-color: #fff;
}
section.indicadores h4,
section.ranking h4 {
	margin-bottom: 20px;
}
section#ranking h4.title-text-1 {
	display: inline-block;
}
section#ranking a.ranking__download-btn {
	margin-top: 0;
	margin-right: 0;
}
@media (max-width: 360px) {
	section#ranking h4.title-text-1 {
		margin-bottom: 40px;
	}
	section#ranking a.ranking__download-btn {
		margin-top: 25px;
	}
}
.container-avaliacao {
	background-color: #f1f4f7;
	padding:25px;
	border: 1px solid #ccc;
	border-radius: 2px;
	margin-bottom: 35px;
}
.block-map,
.container-mapa {
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 2px;
	padding: 20px;
}
.block-map { min-height: 761px; }
.container-mapa > .svg  {
	padding: 10px;
}

.block-map__header {
	padding: 25px 30px;
	background-color: #f1f4f7;
}
.block-map__title {
	margin: 0;
	font-weight: 700;
	font-size: 1.6em;
	color: #1c6ab2;
}
.block-map__body {
	padding: 20px 0 0;
}
.block-map__sub-title {
	margin: 0;
	font-weight: 700;
	font-size: 1.15em;
	color: #1c6ab2;
	line-height: 1.3;
}

.block-map__sub-body {
	margin-bottom: 20px;
}

.block-blue-wrapper { margin-top: 20px; }
.block-blue-wrapper > strong {
	margin-bottom: 20px;
	display: inline-block;
}
.block-blue {
	padding: 45px 10px;
	text-align: center;
	background-color: #3e67b1;
}
.block-blue span {
	font-size: 1.2em;
	color: #fff;
	line-height: 1.3;
	display: block;
}
.block-blue span strong {
	font-weight: 700;
	font-size: 1.2em;
	text-transform: uppercase;
	display: block;
}
.block-blue span + a { margin-top: 20px; }
.block-blue a {
	color: #fff;
	display: inline-block;
}
.indicadores .indicator-title {
	font-weight: 700;
	margin-bottom: 5px;
	display: block;
}

@media only screen and (max-width:991px) {
	.block-map { min-height: 0; }
	section.indicadores {
		padding: 24px 0;
	}
	section.indicadores .block-rating__chart {
		margin-bottom: 40px;
	}
}
.ranking > .block-cards__card  .btn-group > .btn {
	position: relative!important;
	float: left;
	left: 0;
	bottom: 0;
}
.ranking__filter_group  {
	margin-bottom: 20px;
}
.ranking__filter_group  [class*='col']:last-child {
	text-align: right;
}
.ranking__filtros-select > fieldset {
	display: inline-block;
}
.ranking__filtros-select > fieldset:not(:last-child) {
	margin-right:5px;
}
.ranking__filtros-select select {
	padding: 6px 45px 6px 10px;
}
.ranking__download-btn {
	border: 1px solid #ccc;
	padding: 3px 5px;
	position: absolute;
	right: 0;
	margin-right: 15px;
	margin-top: 20px;
}

.container-mapa--simples {
	padding: 0;
}
.container-mapa--simples .block-map-scale {
	border: none;
}

/** Inclusões de estilos do Mapa **/

/* BLOCO MAIOR DE GRÁFICO DE MAPA */

.block-map-scale {
	width: 100%;
	padding: 15px;
	border: 1px solid #e5e7e8;
}
.block-map-scale:after {
	content: '';
	display: block;
	clear:both;
}
.block-map-scale--border-top { border-top: 4px solid #2369b3; }

/* Loading do mapa */
.container-mapa.ajax-loading,
.block-map-scale.ajax-loading { position: relative; }
.container-mapa.ajax-loading,
.block-map-scale.ajax-loading:after {
	width: 100%;
	height: 100%;
	min-height: 112px;
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, .9) url('../img/ico/ajax_loader.gif') center center no-repeat;
}

.block-map-scale .block-filter:before,
.block-map-scale .block-filter:after {
	content: " ";
	display: table;
}
.block-map-scale .block-filter:after { clear: both; }
.block-map-scale__map { width: 100%; }
.block-map-scale .block-filter + .block-map-scale__map { margin-top: -29px; }

.block-map-scale__map.inactive .svg-mapa-brasil path,
.block-map-scale__map.inactive .svg-mapa-cidades path { fill: #ededed; }
.block-map-scale__map.color-red .svg-mapa-brasil .color-red path,
.block-map-scale__map.color-red .svg-mapa-cidades .color-red path { fill: #ff3333; }
.block-map-scale__map.color-orange .svg-mapa-brasil .color-orange path,
.block-map-scale__map.color-orange .svg-mapa-cidades .color-orange path { fill: #fe8f45; }
.block-map-scale__map.color-yellow .svg-mapa-brasil .color-yellow path,
.block-map-scale__map.color-yellow .svg-mapa-cidades .color-yellow path { fill: #ffcc66; }
.block-map-scale__map.color-light-green .svg-mapa-brasil .color-light-green path,
.block-map-scale__map.color-light-green .svg-mapa-cidades .color-light-green path { fill: #cccc00; }
.block-map-scale__map.color-green .svg-mapa-brasil .color-green path,
.block-map-scale__map.color-green .svg-mapa-cidades .color-green path { fill: #99cc33; }
.block-map-scale__map.color-dark-green .svg-mapa-brasil .color-dark-green path,
.block-map-scale__map.color-dark-green .svg-mapa-cidades .color-dark-green path { fill: #009900; }

.block-map-scale__main .svg-mapa-brasil path,
.block-map-scale__main .svg-mapa-cidades path {
	fill: #fff;
	stroke: #000;
	stroke-width: .5;
	transition: fill .2s ease-in-out;
}

/* IE 9 */
@media all and (min-width:0\0) and (min-resolution:.001dpcm) {
	.svg-mapa-cidades.ac { height: 339px; }
	.svg-mapa-cidades.al { height: 336px; }
	.svg-mapa-cidades.am { height: 398px; }
	.svg-mapa-cidades.ap { height: 614px; }
	.svg-mapa-cidades.ba { height: 583px; }
	.svg-mapa-cidades.ce { height: 658px; }
	.svg-mapa-cidades.df { height: 338px; }
	.svg-mapa-cidades.es { height: 770px; }
	.svg-mapa-cidades.go { height: 542px; }
	.svg-mapa-cidades.ma { height: 688px; }
	.svg-mapa-cidades.mg { height: 446px; }
	.svg-mapa-cidades.ms { height: 535px; }
	.svg-mapa-cidades.mt { height: 528px; }
	.svg-mapa-cidades.pa { height: 542px; }
	.svg-mapa-cidades.pb { height: 350px; }
	.svg-mapa-cidades.pe { height: 241px; }
	.svg-mapa-cidades.pi { height: 721px; }
	.svg-mapa-cidades.pr { height: 377px; }
	.svg-mapa-cidades.rj { height: 391px; }
	.svg-mapa-cidades.rn { height: 356px; }
	.svg-mapa-cidades.ro { height: 466px; }
	.svg-mapa-cidades.rr { height: 631px; }
	.svg-mapa-cidades.rs { height: 480px; }
	.svg-mapa-cidades.sc { height: 370px; }
	.svg-mapa-cidades.se { height: 591px; }
	.svg-mapa-cidades.sp { height: 370px; }
	.svg-mapa-cidades.to { height: 814px; }
}
/* IEs 10 e 11 */
@media all and (-ms-high-contrast:none) {
	/* IE10 */
	.svg-mapa-cidades.ac { height: 339px; }
	.svg-mapa-cidades.al { height: 336px; }
	.svg-mapa-cidades.am { height: 398px; }
	.svg-mapa-cidades.ap { height: 614px; }
	.svg-mapa-cidades.ba { height: 583px; }
	.svg-mapa-cidades.ce { height: 658px; }
	.svg-mapa-cidades.df { height: 338px; }
	.svg-mapa-cidades.es { height: 770px; }
	.svg-mapa-cidades.go { height: 542px; }
	.svg-mapa-cidades.ma { height: 688px; }
	.svg-mapa-cidades.mg { height: 446px; }
	.svg-mapa-cidades.ms { height: 535px; }
	.svg-mapa-cidades.mt { height: 528px; }
	.svg-mapa-cidades.pa { height: 542px; }
	.svg-mapa-cidades.pb { height: 350px; }
	.svg-mapa-cidades.pe { height: 241px; }
	.svg-mapa-cidades.pi { height: 721px; }
	.svg-mapa-cidades.pr { height: 377px; }
	.svg-mapa-cidades.rj { height: 391px; }
	.svg-mapa-cidades.rn { height: 356px; }
	.svg-mapa-cidades.ro { height: 466px; }
	.svg-mapa-cidades.rr { height: 631px; }
	.svg-mapa-cidades.rs { height: 480px; }
	.svg-mapa-cidades.sc { height: 370px; }
	.svg-mapa-cidades.se { height: 591px; }
	.svg-mapa-cidades.sp { height: 370px; }
	.svg-mapa-cidades.to { height: 814px; }

	/* IE11 */
	*::-ms-backdrop,
	.svg-mapa-cidades.ac { height: 339px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.al { height: 336px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.am { height: 398px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.ap { height: 614px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.ba { height: 583px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.ce { height: 658px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.df { height: 338px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.es { height: 770px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.go { height: 542px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.ma { height: 688px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.mg { height: 446px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.ms { height: 535px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.mt { height: 528px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.pa { height: 542px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.pb { height: 350px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.pe { height: 241px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.pi { height: 721px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.pr { height: 377px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.rj { height: 391px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.rn { height: 356px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.ro { height: 466px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.rr { height: 631px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.rs { height: 480px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.sc { height: 370px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.se { height: 591px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.sp { height: 370px; }
	*::-ms-backdrop,
	.svg-mapa-cidades.to { height: 814px; }
}
.container-mapa > #mapa-estados > strong,
.block-map-scale__map strong {
	margin-top: 10px;
	text-align: center;
	display: block;
}

.container-avaliacao .svg-mapa-brasil,
.container-avaliacao .svg-mapa-estadual{
	height: 610px;
	max-height: 610px;
}

.container-avaliacao .svg-mapa-cidades{
	max-height: 610px;
	height: 100%;
	min-height: 500px;
	padding: 10px 0;
}

.container-avaliacao .box-grafico-mapa .grafico-escala{
	margin: 0;
}

.block-map-scale__scale {
	padding: 11px 10px;
	border: 1px solid #dbdbdb;
}
.block-map-scale__scale span {
	margin: 0 0 10px 10px;
	font-size: .9em;
	color: #87868a;
	display: block;
}
.block-map-scale__scale ul {
	width: 100%;
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: table;
	table-layout: fixed;
}
.block-map-scale__scale ul li {
	padding: 0 10px;
	display: table-cell;
	vertical-align: top;
}
.block-map-scale__scale ul li i {
	width: 100%;
	height: 15px;
	margin-bottom: 6px;
	display: block;
	border: 1px solid #fff;
	-webkit-box-shadow: 0 2px 5px rgba(110,110,100,.4);
	box-shadow: 0 2px 5px rgba(110,110,100,.4);
}
.block-map-scale__scale ul li i.scale-0 { background-color: #ff3333 !important; }
.block-map-scale__scale ul li i.scale-2 { background-color: #fe8f45 !important; }
.block-map-scale__scale ul li i.scale-4 { background-color: #ffcc66 !important; }
.block-map-scale__scale ul li i.scale-6 { background-color: #cccc00 !important; }
.block-map-scale__scale ul li i.scale-8 { background-color: #99cc33 !important; }
.block-map-scale__scale ul li i.scale-10 { background-color:#009900 !important; }
.block-map-scale__scale ul li strong {
	font-weight: 400;
	font-size: .9em;
	color: #444242;
	text-align: center;
	display: block;
}
.block-map-scale__scale ul li:hover strong,
.block-map-scale__scale ul li:focus strong,
.block-map-scale__scale ul li.active strong { font-weight: 700; }

/*
//Preparação para alterar as cores do mapa do painel Brasil Transparente
//TODO: É necessário alterar também as cores do preenchimento dos municípios
que é realizadd utilizando o "fill" e não as classes
.container-avaliacao .box-grafico-mapa .grafico-escala li.escala-0 { background-color: #ff3333 !important; }
.container-avaliacao .box-grafico-mapa .grafico-escala li.escala-1 { background-color: #fe8f45 !important; }
.container-avaliacao .box-grafico-mapa .grafico-escala li.escala-2 { background-color: #ffcc66 !important; }
.container-avaliacao .box-grafico-mapa .grafico-escala li.escala-3 { background-color: #cccc00 !important; }
.container-avaliacao .box-grafico-mapa .grafico-escala li.escala-4 { background-color: #99cc33 !important; }
.container-avaliacao .box-grafico-mapa .grafico-escala li.escala-5 { background-color: #009900 !important; }*/

/* ajustes padding grid bootstrap para EBT PAGE */
.container-avaliacao > .row > .col-xs-12.col-sm-12.col-md-5:first-child,
.block-blue-wrapper > .row > .col-xs-12.col-sm-6.col-md-6:first-child,
.block-map__body > .row > .col-xs-12.col-sm-12.col-md-5:first-child { padding-right: 0; }
span.label {
	display: inline-block;
	vertical-align: top;
}
span.label button {
	border: none;
	background: none;
}

.sidebar-warning {
	padding: 20px 15px;
	border: 1px solid #dbdbdb;
}
.sidebar-warning strong {
	margin: -20px -15px 10px;
	padding: 10px 15px;
	color: #fff;
	text-transform: uppercase;
	display: block;
	background-color: #2369b3;
}

.busca .box-accordion { margin-top: 0; }
.busca .close-others {
	cursor: pointer;
	font-size: 1em;
	text-align: left;
	padding: 15px;
}
.busca .close-others label { margin: 0; }
.busca .close-others input { margin: -5px 8px 0 0; }
.busca .close-others i {
	float: right;
	transition: all 0.5s;
	margin-top: 2px;
}
.busca .close-others.collapsed i { transform: rotate(180deg); }
.busca .close-others.collapsed label { color: #2369b3; }

.busca .collapse .close-others label { color: #999; }
.busca .collapse .close-others.collapsed label { color: #2369b3; }

.block-map__buttons {
	margin: 0 -20px -20px;
	padding: 20px;
	border-top: 1px solid #ccc;
}
.block-map__buttons > .row > [class*=col] > a,
.block-map__buttons > .row > [class*=col] > button {
	width: 100%;
	padding: 12px 10px 9px;
}

@media (max-width: 1199px) {
	.ranking__filter_group  [class*='col']:first-child {
		width: 100%;
		text-align: center;
		margin-bottom: 10px;
	}
	.ranking__filter_group [class*='col']:last-child {
		width: 100%;
	}
	.ranking__filter_group .ranking__filtros-select {
		text-align: center;
	}
	.ranking__filter_group .ranking__filtros-select fieldset {
		margin-top: 10px;
	}
}

@media (max-width: 991px) {
	.container-avaliacao > .row > .col-xs-12.col-sm-12.col-md-5:first-child {
		padding-right: 15px;
		margin-bottom: 10px;
	}
}

@media (max-width: 767px) {
	.block-blue-wrapper > .row > .col-xs-12.col-sm-6.col-md-6:first-child {
		padding-right: 15px;
		margin-bottom: 10px;
	}
	.block-map__buttons > .row > [class*=col]:first-child {
		text-align: center;
		margin-bottom: 10px;
	}
}
.ranking__filtros-select .button--primary-a,
.button--primary-a {
	font-weight: 700;
	font-size: .9em;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	word-break: normal;
	display: inline-block;
	border: 1px solid #3ab7ea;
	border-radius: 4px;
	background-color: #3ab7ea;
	-webkit-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

.button--secondary-a {
	padding: 12px 30px 9px;
	font-weight: 700;
	font-size: .9em;
	color: #3ab7ea;
	text-align: center;
	text-transform: uppercase;
	word-break: normal;
	display: inline-block;
	border: 1px solid #3ab7ea;
	border-radius: 4px;
	background-color: #fff;
	-webkit-transition: background-color 150ms ease-in-out, color 150ms ease-in-out;
	transition: background-color 150ms ease-in-out, color 150ms ease-in-out;
}

/* NOTAS */

.title-text-1 {
	margin: 0;
	font-weight: 700;
	font-size: 1.4em;
	color: #1c6ab2;
	line-height: 1.3;
	margin-bottom: 20px;
}

/* BLOCO DE AVALIAÇÃO */

.block-rating { overflow: hidden; }

/* Primeira coluna */
.block-rating__column-1 {
	width: 25.68%;
	min-height: 374px;
	float: left;
	border-radius: 2px;
	border: 1px solid #eceff2;
	background-color: #fff;
}

.block-rating__title {
	min-height: 74px;
	margin: 0;
	padding: 21px 10px 10px;
	font-weight: 700;
	font-size: 1.4em;
	color: #1c6ab2;
	text-align: center;
	border-bottom: 1px solid #eceff2;
	background-color: #f1f4f7;
}

.block-rating__text {
	min-height: 375px;
	padding: 20px 40px 20px;
	text-align: center;
}
.block-rating__text > a {
	margin-bottom: 19px;
	display: inline-block;
}
.block-rating__text a { text-decoration: underline; }
.block-rating__text p { margin-bottom: 24px; }
.block-rating__text .button--primary-a {
	margin: 0;
	text-decoration: none;
}

/* Segunda coluna */
.block-rating__column-2 {
	width: 50.68%;
	padding-left: 1px;
	float: left;
}

.block-rating__rating {
	width: 100%;
	min-height: 186px;
	margin-bottom: 2px;
	padding: 17px 20px 18px;
	overflow: hidden;
	border: 1px solid #ebebeb;
	background-color: #f1f4f7;
}
.block-rating__subtitle {
	margin: 0 0 12px;
	font-weight: 700;
	font-size: 1.2em;
	color: #1c6ab2;
}
.block-rating__subtitle i {
	font-size: 1em;
	color: #082c69;
}
.block-rating__row {
	margin-bottom: 10px;
	overflow: hidden;
}
.block-rating__data {
	width: 14.49%;
	min-height: 78px;
	margin-right: 7px;
	padding: 5px 0 4px;
	font-weight: 700;
	font-size: 1em;
	color: #454545;
	line-height: 1.2;
	text-align: center;
	word-break: normal;
	display: block;
	float: left;
	border-radius: 2px;
	border: 1px solid #e1e1e1;
	background-color: #fff;
}
.block-rating__data strong {
	margin-top: 6px;
	font-size: 1.6em;
	display: block;
}
.block-rating__chart {
	width: 100%;
	height: 78px;
	padding: 19px 90px 7px 10px;
	position: relative;
	border-radius: 2px;
	border: 1px solid #e1e1e1;
	background-color: #fff;
}
.block-rating__row .block-rating__chart { float: left; }
.block-rating__chart > div { height: 50px; }
.block-rating__chart .y.axis text,
.block-rating__chart path,
.block-rating__chart line { display: none; }
.block-rating__chart .x.axis path { stroke-width: 1; }
.block-rating__chart .fatia { fill: #99cc33; }
.block-rating__chart .borda {
	stroke-width: 1px;
	stroke: #dbdbdb;
	fill: none;
}
.block-rating__nota {
	width: 80px;
	height: 76px;
	padding: 10px 5px;
	position: absolute;
	top: 0;
	right: 0;
	border-left: 1px solid #dbdbdb;
	background-color: #99cc33;
}
.block-rating__nota span,
.block-rating__nota strong {
	font-weight: 700;
	font-size: 1em;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	display: block;
}
.block-rating__nota strong { font-size: 2em; }

/* Versão da página de localidades com três gráficos de nota */

.block-rating .block-rating__row { margin: 0; }
.block-rating .block-rating__chart {
	height: 82px;
	padding: 19px 90px 11px 10px;
}
.block-rating .block-rating__nota { height: 80px; }
.block-rating .block-rating__rating,
.block-rating .block-rating__link { min-height: 149px; }
.block-rating .block-rating__link { padding: 23px 10px; }

/* Versão da página de localidades com apenas um gráfico de nota */

.one-single-item .block-rating__title { min-height: 53px; }
.one-single-item .block-rating__text { min-height: 297px; }
.one-single-item .block-rating__rating,
.one-single-item .block-rating__link {
	min-height: 374px;
	padding: 110px 20px 20px;
}

/* Outras cores */
.color-orange .fatia { fill: #fe8f45; }
.color-orange .block-rating__nota,
.color-orange.block-rating__nota,
.column-orange { background-color: #fe8f45; }
.color-blue .fatia { fill: #0e4097; }
.color-blue .block-rating__nota,
.color-blue.block-rating__nota { background-color: #0e4097; }
.color-light-green .fatia { fill: #cccc00; }
.color-light-green .block-rating__nota,
.color-light-green.block-rating__nota { background-color: #cccc00; }
.color-dark-green .fatia { fill: #30a736; }
.color-dark-green .block-rating__nota,
.color-dark-green.block-rating__nota,
.column-dark-green { background-color: #30a736; }
.color-red .fatia { fill: #ff3333; }
.color-red .block-rating__nota,
.color-red.block-rating__nota,
.column-red { background-color: #ff3333; }
.color-yellow .fatia { fill: #ffd454; }
.color-yellow .block-rating__nota,
.color-yellow.block-rating__nota,
.column-yellow { background-color: #ffd454; }
.color-green .fatia { fill: #7fce0d; }
.color-green .block-rating__nota,
.color-green.block-rating__nota { background-color: #7fce0d; }

.block-rating__button { float: right; }

.fill-white {
	color: #fff;
}

.indicador-red{background-color: #ff3333 !important;}
.indicador-orange{background-color: #fe8f45 !important;}
.indicador-yelow{background-color: #ffcc66 !important;}
.indicador-light-gree{background-color: #cccc00 !important;}
.indicador-gree{background-color: #99cc33 !important;}
.indicador-dark-green{background-color: #009900 !important;}


/* Versão com etiqueta */

.block-rating__chart--tag {
	height: auto;
	min-height: 87px;
	padding: 8px 90px 7px 10px;
}
.block-rating__chart > div {
	height: auto;
	min-height: 50px;
}
.block-rating__chart--tag span {
	font-size: .9em;
	letter-spacing: -.5px;
}
.block-rating__chart--tag .block-rating__nota {
	height: auto;
	min-height: 85px;
	padding: 14px 5px;
}

.block-rating__chart .grafico-receptor {
	padding: 0;
}

/* Terceira coluna */
.block-rating__column-3 {
	width: 23.64%;
	padding-left: 1px;
	float: left;
}

.block-rating__link {
	width: 100%;
	min-height: 186px;
	margin-bottom: 2px;
	padding: 32px 10px 0;
	text-align: center;
	border: 1px solid #e5e2e2;
	background-color: #fff;
}
.block-rating__link span {
	margin-bottom: 29px;
	line-height: 1.6;
	display: block;
}

.block-rating--carousel .block-rating__column-1,
.block-rating--carousel .block-rating__column-2 {
	width: 50%;
	min-height: 455px;
}
.block-rating--carousel.one-single-item .block-rating__rating { min-height: 455px; }
.block-rating--carousel .block-tabs-top__list .block-rating__data {
	padding: 3px 0 2px;
	font-size: 1em;
}

@media only screen and (max-width : 995px) {
	.notas-slider.slick-slider:after {
		display: none;
	}
}

@media screen and (min-width: 1201px) {
	.block-rating__row .block-rating__chart { width: 67.75%; }
}
@media screen and (max-width: 1200px) {
	.block-rating__data,
	.block-rating__chart {
		width: 100%;
		min-height: 0;
		float: none;
	}
	.block-rating .block-rating__text { min-height: 771px; }
	.block-rating .block-rating__rating,
	.block-rating .block-rating__link { min-height: 281px; }

	.block-rating--carousel .block-rating__text,
	.block-rating--carousel .block-rating__link,
	.block-rating--carousel .block-rating__rating,
	.block-rating--carousel .block-rating__column-1,
	.block-rating--carousel .block-rating__column-2 { min-height: 0; }

	.one-single-item .block-rating__text {
		min-height: 320px;
		padding: 20px;
	}
	.one-single-item .block-rating__rating,
	.one-single-item .block-rating__link {
		min-height: 396px;
		padding: 17px 20px 20px;
	}
	.one-single-item .block-rating__link { padding: 147px 20px 20px; }
}
@media screen and (max-width: 992px) {
	.block-rating__column-1,
	.block-rating__column-2,
	.block-rating__column-3,
	.block-rating--carousel .block-rating__column-1,
	.block-rating--carousel .block-rating__column-2 {
		width: 100%;
		min-height: 0;
		float: none;
	}
	.block-rating .block-rating__text,
	.block-rating .block-rating__rating,
	.block-rating .block-rating__link { min-height: 0; }
	.block-rating__rating,
	.block-rating__link,
	.one-single-item .block-rating__rating,
	.one-single-item .block-rating__link {
		min-height: 0;
		padding: 32px 10px;
	}

	.block-rating--carousel .block-tabs-top__list { margin: 0 -2px; }
}

.box-lista-consultas{
	margin-bottom: 40px;
}
/* Fim - NOTAS */

/*.block-filter__form-search--overflow {
	overflow: visible;
}

.block-filter__form-search {
	margin-bottom: 20px;
	position: relative;
}

.block-filter__form-search input[type=text] {
	padding-right: 44px;
	height: 40px;
	border-radius: 2px;
}

.block-filter__form-search button[type=submit], .block-filter__form-search .clear-input {
	width: 38px;
	height: 38px;
	color: #6dc1fc;
	position: absolute;
	right: 1px;
	bottom: 1px;
	border-radius: 2px;
	border: none;
	background: #fff;
	-webkit-transition: background-color 150ms ease-in-out, color 150ms ease-in-out;
	transition: background-color 150ms ease-in-out, color 150ms ease-in-out;
}

.block-filter__form-search button[type=submit] i, .block-filter__form-search .clear-input i {
	font-weight: 400;
	font-size: 26px;
}*/

/* Fim - Página Escala Brasil Transparente - EBT*/

/***
*       FIM STYLE.CSS ===============================================================================================
***/