

/* ------------------------ */
/* [ Esta folha contém estilos para elementos de formulário, tabelas, dropdown ] */
/* ------------------------ */

@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/OpenSans.eot');
	src: url('fonts/OpenSans.eot?#iefix') format('embedded-opentype'), url('fonts/OpenSans.woff') format('woff'), url('fonts/OpenSans.ttf') format('truetype'), url('fonts/OpenSans.svg#OpenSans') format('svg');
}

:focus {
	outline-color: #FF9A2C;
}

a:link, a:visited, a:hover {
	text-decoration: none;
}

ol, ul {
	list-style: none;
}

li {
	display: block;
}

.negrito {
	font-weight: bold;
}

.nome-capitalizar {
	text-transform: capitalize;
}

/* Mensagem simples de "Aguarde..." */
.loader {
	font-size: 1rem;
	padding: 1rem .5rem;
	text-align: center;
	width: 100%;
}

.loader .spinner {
	float: none;
	display: block;
}
/* Classe para resolver problemas com float */
.clearhack:after {
	clear: both;
	content: "";
	display: block;
	height: 0;
	visibility: hidden;
}

.clear:after {
	clear: both;
	content: " ";
	display: block;
}

.qtip.tooltip {
	background-color: rgba(0, 0, 0, 0.8);
	color: #efefef;
	border-color: rgba(0, 0, 0, 0);
	font-size: 13px;
	line-height: 1;
}
/* Classe para ocultar itens na tela de forma acessí­vel */
.oculto {
	border: 0 !important;
	clip: rect(1px 1px 1px 1px);
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px !important;
	overflow: hidden;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	z-index: -99999;
}
/* Classe para ocultar itens na tela de forma que o conteúdo NÃO SEJA ACESSÍVEL enquanto oculto */
.ocultar-js {
	display: none !important;
}

/* ------------- */
/* [ ANIMAÇÕES ] */
/* ------------- */
.anim-aparecer {
	-moz-animation: aparecer .5s 1 ease-in;
	-o-animation: aparecer .5s 1 ease-in;
	-webkit-animation: aparecer .5s 1 ease-in;
	animation: aparecer .5s 1 ease-in;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
}

@keyframes aparecer {
	from {
		visibility: hidden;
		height: 0;
		opacity: 0;
	}

	to {
		visibility: visible;
		height: auto;
		opacity: 1;
	}
}

@-moz-keyframes aparecer {
	from {
		visibility: hidden;
		height: 0;
		opacity: 0;
	}

	to {
		visibility: visible;
		height: auto;
		opacity: 1;
	}
}

@-webkit-keyframes aparecer {
	from {
		visibility: hidden;
		height: 0;
		opacity: 0;
	}

	to {
		visibility: visible;
		height: auto;
		opacity: 1;
	}
}

.anim-brilhar {
	-moz-animation: brilhar 1s infinite;
	-o-animation: brilhar 1s infinite;
	-webkit-animation: brilhar 1s infinite;
	animation: brilhar 1s infinite;
}

@keyframes brilhar {
	0% {
		opacity: 1;
	}

	50% {
		opacity: .5;
	}

	100% {
		opacity: 1;
	}
}

@-moz-keyframes brilhar {
	0% {
		opacity: 1;
	}

	50% {
		opacity: .5;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes brilhar {
	0% {
		opacity: 1;
	}

	50% {
		opacity: .5;
	}

	100% {
		opacity: 1;
	}
}

.anim-surgir {
	-moz-animation: surgir 1s 1;
	-o-animation: surgir 1s 1;
	-webkit-animation: surgir 1s 1;
	animation: surgir 1s 1;
}

@keyframes surgir {
	0% {
		-moz-transform: scale(0);
		-ms-transform: scale(0);
		-o-transform: scale(0);
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	50% {
		-moz-transform: scale(1.2);
		-ms-transform: scale(1.2);
		-o-transform: scale(1.2);
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}

	100% {
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-moz-keyframes surgir {
	0% {
		-moz-transform: scale(0);
		-ms-transform: scale(0);
		-o-transform: scale(0);
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	50% {
		-moz-transform: scale(1.2);
		-ms-transform: scale(1.2);
		-o-transform: scale(1.2);
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}

	100% {
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes surgir {
	0% {
		-moz-transform: scale(0);
		-ms-transform: scale(0);
		-o-transform: scale(0);
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	50% {
		-moz-transform: scale(1.2);
		-ms-transform: scale(1.2);
		-o-transform: scale(1.2);
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}

	100% {
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.anim-fadeIn {
	-moz-animation: fadeIn 1s 1;
	-o-animation: fadeIn 1s 1;
	-webkit-animation: fadeIn 1s 1;
	animation: fadeIn 1s 1;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-moz-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}
/* ---------- */
/* [ BOTÔES ] */
/* ---------- */
.botao {
	background-color: #E8E8E8;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#F8F8F9),to(#E8E8E8));
	background-image: -webkit-linear-gradient(top,#F8F8F9,#E8E8E8);
	background-image: -moz-linear-gradient(top,#F8F8F9,#E8E8E8);
	background-image: -ms-linear-gradient(top,#F8F8F9,#E8E8E8);
	background-image: -o-linear-gradient(top,#F8F8F9,#E8E8E8);
	background-image: linear-gradient(top,#F8F8F9,#E8E8E8);
	border: 1px solid #ddd;
	border-radius: .2rem;
	color: #333;
	cursor: pointer;
	display: inline-block;
	font-family: inherit;
	font-size: .8rem;
	height: 26px;
	line-height: 24px;
	padding: 0 10px;
	text-align: center;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
	vertical-align: bottom;
}

.botao:hover {
	border-color: #ABABAB;
}

.botao:focus, .input-txt:focus {
	border-color: rgba(250, 162, 0, 0.8);
	box-shadow: 0 0 3px rgba(250, 162, 0, 0.4);
	outline: none;
}

.botao:active {
	-moz-transform: translateY(1px);
	-ms-transform: translateY(1px);
	-o-transform: translateY(1px);
	-webkit-transform: translateY(1px);
	transform: translateY(1px);
}

.botao .icone {
	color: #666;
	float: left;
	font-size: 1.1rem;
	line-height: 1.4;
	margin-right: .5rem;
}

/*.botao .icone:only-child {
	margin: 0;
}*/

.botao-colorido {
	background-color: #FFB951;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#ffce84),to(#FFB951));
	background-image: -webkit-linear-gradient(top,#ffce84,#FFB951);
	background-image: -moz-linear-gradient(top,#ffce84,#FFB951);
	background-image: -ms-linear-gradient(top,#ffce84,#FFB951);
	background-image: -o-linear-gradient(top,#ffce84,#FFB951);
	background-image: linear-gradient(top,#ffce84,#FFB951);
	border-color: #FFB951;
}

.botao-colorido:hover {
	border-color: #ffa41e;
}

.botao-colorido .icone {
	color: #000;
}

.botao-check {
	background-color: #E8E8E8;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#F8F8F9),to(#E8E8E8));
	background-image: -webkit-linear-gradient(top,#F8F8F9,#E8E8E8);
	background-image: -moz-linear-gradient(top,#F8F8F9,#E8E8E8);
	background-image: -ms-linear-gradient(top,#F8F8F9,#E8E8E8);
	background-image: -o-linear-gradient(top,#F8F8F9,#E8E8E8);
	background-image: linear-gradient(top,#F8F8F9,#E8E8E8);
	border: 1px solid #ddd;
	border-radius: .2rem;
	cursor: pointer;
	display: inline-block;
	font-family: inherit;
	font-size: .8rem;
	height: 30px;
	line-height: 28px;
	padding: 0 .5rem;
}

.botao-check:hover {
	background: #efefef;
}

.botao-check label {
	font-size: .8rem;
	line-height: 2.4;
}

.botao-check input[type=checkbox] {
	vertical-align: baseline !important;
}

.botao-check.marcado {
	background-color: #2861BE;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#2861BE),to(#0440A2));
	background-image: -webkit-linear-gradient(top,#2861BE,#0440A2);
	background-image: -moz-linear-gradient(top,#2861BE,#0440A2);
	background-image: -ms-linear-gradient(top,#2861BE,#0440A2);
	background-image: -o-linear-gradient(top,#2861BE,#0440A2);
	background-image: linear-gradient(top,#2861BE,#0440A2);
	border-color: #2953B6;
	color: #fff;
}

.botao[disabled] {
	background: #ccc;
	border-color: #ccc;
	cursor: not-allowed;
	opacity: .6;
}

.botao-toggle label {
	cursor: pointer;
	float: left;
	height: 26px;
	line-height: 26px;
}

.botao-toggle input[type=checkbox] {
	float: left;
	margin: 6px 5px 0 0;
}


/* -------- */
/* [ÍCONES] */
/* -------- */
@font-face {
  font-family: 'sagresportal';
  src:  url('fonts/sagresportal.eot?7db2o');
  src:  url('fonts/sagresportal.eot?7db2o#iefix') format('embedded-opentype'),
    url('fonts/sagresportal.ttf?7db2o') format('truetype'),
    url('fonts/sagresportal.woff?7db2o') format('woff'),
    url('fonts/sagresportal.svg?7db2o#sagresportal') format('svg');
  font-weight: normal;
  font-style: normal;
}

.icone {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'sagresportal' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icone-voltar:before {
  content: "\f0e2";
}
.icone-toga:before {
  content: "\e60e";
}
.icone-ordenar:before {
  content: "\e61a";
}
.icone-globo2:before {
  content: "\e66f";
}
.icone-doc-verif:before {
  content: "\e670";
}
.icone-globo:before {
  content: "\e66e";
}
.icone-checkbox:before {
  content: "\e66d";
}
.icone-abaixo:before {
  content: "\e600";
}
.icone-alerta:before {
  content: "\e601";
}
.icone-anexo:before {
  content: "\e602";
}
.icone-areas:before {
  content: "\e603";
}
.icone-asterisco:before {
  content: "\e604";
}
.icone-audio:before {
  content: "\e605";
}
.icone-baixo-1:before {
  content: "\e606";
}
.icone-baixo-2:before {
  content: "\e607";
}
.icone-baixo-tri:before {
  content: "\e608";
}
.icone-bandeira:before {
  content: "\e609";
}
.icone-bloqueio:before {
  content: "\e60a";
}
.icone-busca:before {
  content: "\e60b";
}
.icone-cadeado:before {
  content: "\e60c";
}
.icone-cadeado-aberto:before {
  content: "\e60d";
}
.icone-calendario:before {
  content: "\e60f";
}
.icone-calendario2:before {
  content: "\e900";
}
.icone-chave:before {
  content: "\e610";
}
.icone-check:before {
  content: "\e611";
}
.icone-cima-1:before {
  content: "\e612";
}
.icone-cima-2:before {
  content: "\e613";
}
.icone-cima-tri:before {
  content: "\e614";
}
.icone-circ-info:before {
  content: "\e61b";
}
.icone-circ-ajuda:before {
  content: "\e616";
}
.icone-circ-alerta:before {
  content: "\e617";
}
.icone-circ-x:before {
  content: "\e61c";
}
.icone-circ-check:before {
  content: "\e615";
}
.icone-circ-mais:before {
  content: "\e618";
}
.icone-circ-menos:before {
  content: "\e619";
}
.icone-codigo:before {
  content: "\e61f";
}
.icone-comentario:before {
  content: "\e620";
}
.icone-compartilhar:before {
  content: "\e621";
}
.icone-comunidade:before {
  content: "\e622";
}
.icone-config:before {
  content: "\e623";
}
.icone-config2:before {
  content: "\e624";
}
.icone-contrato:before {
  content: "\e625";
}
.icone-dir-1:before {
  content: "\e626";
}
.icone-dir-2:before {
  content: "\e627";
}
.icone-dir-tri:before {
  content: "\e628";
}
.icone-doc-busca:before {
  content: "\e629";
}
.icone-doc-nota:before {
  content: "\e62a";
}
.icone-doc-pdf:before {
  content: "\e62b";
}
.icone-docs:before {
  content: "\e62c";
}
.icone-download:before {
  content: "\e62e";
}
.icone-editar:before {
  content: "\e62f";
}
.icone-esq-1:before {
  content: "\e631";
}
.icone-esq-2:before {
  content: "\e632";
}
.icone-esq-tri:before {
  content: "\e633";
}
.icone-etc:before {
  content: "\e634";
}
.icone-expirado:before {
  content: "\e635";
}
.icone-fluxograma:before {
  content: "\e636";
}
.icone-fogo:before {
  content: "\e637";
}
.icone-grafico:before {
  content: "\e638";
}
.icone-grupo:before {
  content: "\e639";
}
.icone-hierarquia:before {
  content: "\e63a";
}
.icone-historico:before {
  content: "\e63b";
}
.icone-ideia:before {
  content: "\e63c";
}
.icone-ies:before {
  content: "\e63d";
}
.icone-imagem:before {
  content: "\e63e";
}
.icone-imagens:before {
  content: "\e63f";
}
.icone-impressora:before {
  content: "\e640";
}
.icone-infinito:before {
  content: "\e641";
}
.icone-info:before {
  content: "\e642";
}
.icone-link:before {
  content: "\e643";
}
.icone-lista:before {
  content: "\e644";
}
.icone-livro:before {
  content: "\e645";
}
.icone-livro-aberto:before {
  content: "\e646";
}
.icone-lixeira:before {
  content: "\e647";
}
.icone-load:before {
  content: "\e648";
}
.icone-local:before {
  content: "\e649";
}
.icone-log:before {
  content: "\e64a";
}
.icone-mais:before {
  content: "\e64b";
}
.icone-mapa:before {
  content: "\e64c";
}
.icone-marcador:before {
  content: "\e64d";
}
.icone-menos:before {
  content: "\e64e";
}
.icone-mensagem:before {
  content: "\e64f";
}
.icone-menu:before {
  content: "\e650";
}
.icone-mobile:before {
  content: "\e651";
}
.icone-notificacao:before {
  content: "\e652";
}
.icone-olho:before {
  content: "\e653";
}
.icone-onedrive:before {
  content: "\e654";
}
.icone-pasta-aberta:before {
  content: "\e655";
}
.icone-pasta-fechada:before {
  content: "\e656";
}
.icone-popup:before {
  content: "\e657";
}
.icone-piggy:before {
  content: "\e901";
}
.icone-postar:before {
  content: "\e658";
}
.icone-prancheta:before {
  content: "\e659";
}
.icone-recado:before {
  content: "\e65a";
}
.icone-reciclar:before {
  content: "\e65b";
}
.icone-relogio:before {
  content: "\e65c";
}
.icone-relogio-cheio:before {
  content: "\e65e";
}
.icone-salvar:before {
  content: "\e660";
}
.icone-social:before {
  content: "\e661";
}
.icone-suporte:before {
  content: "\e662";
}
.icone-tabela:before {
  content: "\e663";
}
.icone-telefone:before {
  content: "\e664";
}
.icone-texto:before {
  content: "\e665";
}
.icone-troca:before {
  content: "\e666";
}
.icone-upload:before {
  content: "\e667";
}
.icone-usuario:before {
  content: "\e668";
}
.icone-usuarios:before {
  content: "\e669";
}
.icone-video:before {
  content: "\e66a";
}
.icone-ir-para:before {
  content: "\e66b";
}
.icone-x:before {
  content: "\e66c";
}
.icone-noticia:before {
  content: "\e6632";
}
.icone-smile1:before {
  content: "\e6633";
}
.icone-smile2:before {
  content: "\e6634";
}
.icone-smile3:before {
  content: "\e6635";
}


/* ----------------------- */
/* [ ELEMENTOS DE PÁGINA ] */
/* ----------------------- */
.pagina-instrucao {
	clear: both;
	color: #666;
	font-size: .75rem;
	padding: .5rem;
	width: 100%;
}

.pagina-instrucao .icone {
	font-size: 1rem;
	margin-right: .3rem;
}

.pagina-instrucao-item {
	margin: 3px 20px;
}

.pagina-legenda > div, .pagina-legenda .icone {
	margin: .3rem .5rem .3rem;
	display: inline-block;
}

.pagina-legenda-titulo {
	display: block;
	text-transform: uppercase;
}

.pagina-subtitulo {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	font-size: 1rem;
	line-height: 1.7;
	margin: .5rem 0;
	padding: 0 .5rem;
	width: 50%;
}

.botao-topo {
	position: absolute;
	right: 3px;
	top: 4px;
}

.pagina-secao {
	margin-top: 2rem;
}

.pagina-divisao {
	background-color: #ddd;
	height: 1px;
	margin: 1rem auto;
	overflow: hidden;
	width: 90%;
}

.legenda {
	padding: 10px 0;
}

.legenda:first-of-type {
	padding-top: 40px;
}

.legenda, .legenda h6 {
	font-size: .75rem;
}

.legenda h6 {
	text-transform: uppercase;
	letter-spacing: 1px;
}

.legenda-coluna {
	display: inline-block;
}

.legenda-coluna li {
	color: #666;
	line-height: 1.6;
	display: inline-block;
	padding-right: 20px;
}

.legenda dt, .legenda dd {
	display: inline-block;
}

.legenda dfn {
	font-weight: bold;
	font-style: normal;
}


/* -------------------------------- */
/* [ FORMULÁRIOS, INPUTS e LABELS ] */
/* -------------------------------- */
.form-linha {
	padding: .3rem .5rem;
}

.form-linha-textarea .label-padrao {
	vertical-align: top;
}

.form-linha-detalhes {
	background: #f7f7f7;
	outline: 1px solid #ebebeb;
}

.form-linha hr {
	margin: .5rem auto;
	opacity: .5;
	width: 99%;
}

.form-subtitulo {
	color: #666;
	font-size: 1rem;
	font-weight: normal;
	letter-spacing: 1px;
	padding-bottom: .3rem;
	text-transform: uppercase;
}

.form-link-info {
	color: #666;
	font-size: .7rem;
	padding: 8px;
	display: block;
}

a.form-link-info {
	cursor: pointer;
	text-decoration: underline;
}

.form-texto-info {
	background: #efefef;
	border-radius: 3px;
	font-size: 12px;
	margin-top: 10px;
	padding: 10px;
}

.form-espaco-campo {
	display: inline-block;
	margin-right: 1rem;
}

.form-espaco-secao {
	margin-bottom: 2rem;
}

.input-txt {
	border: 1px solid #ccc;
	border-radius: .2rem;
	display: inline-block;
	font-family: inherit;
	font-size: .8rem;
	height: 26px;
	line-height: 1;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
	padding-left: .2rem;
	vertical-align: bottom;
}

.input-txt:hover {
	border-color: #999;
}

.input-txt:focus:hover {
	border-color: rgba(250, 162, 0, 0.8);
}

.input-txt[disabled] {
	background-color: #EBEBEB;
	border-color: transparent;
	cursor: default;
}

.input-txt[readonly], .input-txt[readonly]:focus, .input-txt[readonly]:hover {
	background-color: transparent;
	border-color: transparent;
	box-shadow: none;
	outline: none;
}

textarea.input-txt {
	height: auto;
	padding: .5rem;
	resize: vertical;
	max-height: 400px;
}

.input-txt::-webkit-input-placeholder {
	line-height: normal;
}

.richtextarea-cont iframe {
	border: 1px #ccc solid;
	min-width: 100%;
}

.label-padrao {
	display: inline-block;
	font-size: .8rem;
	height: 26px;
	line-height: 2;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
	vertical-align: bottom;
}

.label-padrao.obrigatorio {
	font-weight: bold;
}

.form-erro, .form-erro:hover {
	border-color: rgba(207, 38, 38, 0.8) !important;
	box-shadow: 0 0 3px rgba(207, 38, 38, 0.3);
}

.form-linha .label-padrao {
	padding: 0 .5rem;
}

.form-linha .form-linha .label-padrao {
	padding-left: 0;
}

.form-alinhado .label-padrao {
	min-width: 12rem;
	text-align: right;
}

.form-alinhado-pq .label-padrao {
	min-width: 5rem;
	text-align: right;
}

.form-botoes {
	clear: both;
	margin: .3rem 0;
	text-align: right;
}

.form-botoes .botao {
	margin-left: .3rem;
}

.form-linha-destaque {
	background-color: #FEDFB2;
}

.form-detalhes {
	color: #666;
	display: block;
	font-size: .75rem;
}

.tooltip-validacao {
	background-color: #C00 !important;
	border: 1px solid #C00 !important;
	color: #fff !important;
	padding: .5rem;
	border-radius: 3px;
	box-shadow: 1px 6px 5px -5px rgba(0, 0, 0, 0.32);
	font-size: .8rem;
}

.form-comentario {
	display: inline-block;
	font-size: .8rem;
	height: 26px;
	line-height: 2;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
	vertical-align: bottom;
	color: #666;
	margin-right: .5rem;
}

.form-comentario:nth-child(4) {
	margin-left: .5rem;
}

.form-linha select,
.barra-pesquisa select {
	background-color: #E8E8E8;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#F8F8F9),to(#E8E8E8));
	background-image: -webkit-linear-gradient(top,#F8F8F9,#E8E8E8);
	background-image: -moz-linear-gradient(top,#F8F8F9,#E8E8E8);
	background-image: -ms-linear-gradient(top,#F8F8F9,#E8E8E8);
	background-image: -o-linear-gradient(top,#F8F8F9,#E8E8E8);
	background-image: linear-gradient(top,#F8F8F9,#E8E8E8);
	border: 1px solid #ccc;
	border-radius: 3px;
	height: 26px;
	font-size: .8rem;
	font-family: inherit;
	vertical-align: bottom;
}

.form-linha select[disabled],
.custom-select select[disabled],
.barra-pesquisa select[disabled] {
	opacity: .5;
	cursor: not-allowed;
}

.barra-pesquisa .label-padrao {
	font-size: .75rem;
	padding: 0 3px;
}

.barra-pesquisa .input-calendario {
	margin-right: 10px;
}

.form-selecao {
	background: rgba(0, 0, 0, 0.15);
	border-radius: 3px;
	color: #333;
	display: inline-block;
	margin: .5rem .5rem .5rem 0;
	padding: .3rem 2.5rem .3rem .3rem;
	position: relative;
	font-size: .75rem;
	height: 1.6rem;
	cursor: default;
}

.form-selecao .icone {
	background: rgba(0, 0, 0, 0.1);
	cursor: pointer;
	-moz-transition: .1s;
	-o-transition: .1s;
	-webkit-transition: .1s;
	transition: .1s;
	z-index: 9;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	width: 1.6rem;
	line-height: 1.6rem;
	font-size: 0.9rem;
	bottom: 0;
	border-radius: 0 3px 3px 0;
	height: 1.6rem;
	color: #333;
}

.form-selecao:hover .icone {
	background: #CC0000;
	color: white;
}

.custom-validator {
	background: #BF321E;
	border-radius: 3px;
	padding: 5px;
	margin: .2rem auto;
	display: block;
	width: 98%;
	color: #fff !important;
	vertical-align: super;
	font-size: .7rem;
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

.form-radio input[type=radio] {
	margin-right: 4px;
	display: inline-block;
	vertical-align: sub;
}

.form-radio label {
	margin-right: 2rem;
}

.form-radio-list {
	line-height: 1.5;
	margin: .5rem 0;
}

.form-radio-list label, .form-check label {
	display: inline-block;
	text-indent: 5px;
	vertical-align: super;
}

.form-linha input[type=checkbox] {
	margin-right: 4px;
	display: inline-block;
	vertical-align: super;
}

.form-linha-subform .form-subtitulo {
	margin-top: 30px;
	font-size: .9rem;
}

.botao-oculto {
	display: none;
}

.form-linha-detalhes .botao-oculto {
	display: block;
}


/* Input com calendário datepicker */
.input-calendario {
	display: inline-block;
}

.ui-datepicker-trigger {
	padding: 5px 5px 5px 70px;
	position: absolute;
	right: -7px;
	top: 0;
}

.ui-datepicker-trigger[disabled] {
	display: none;
}

.input-calendario input[type=text][disabled] {
	background-color: #EBEBEB;
	border-color: transparent;
	cursor: not-allowed;
}

.input-calendario input[type=text] {
	border: 1px solid #ccc;
	border-radius: .2rem;
	display: inline-block;
	font-family: inherit;
	font-size: 12px;
	height: 26px;
	line-height: 1;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
	padding-left: .2rem;
	vertical-align: bottom;
	padding-right: 18px;
	width: 92px;
}

[id*="objctl00_MasterPlaceHolder"] .input-calendario .ui-datepicker-trigger {
	left: 0;
}

/*FIX: Internet Explorer está adicionando um espaço ao lado da propriedade position:absolute*/
.input-calendario[style*="position: absolute"] input[type=text],
.input-calendario[style*="position:absolute"] input[type=text] {
	height: 24px !important;
	top: 0 !important;
	left: 0 !important;
	width: 90px !important;
}

/* Formulário em datawindow */
.formulario {
	margin: .3rem 0;
	overflow: visible !important;
}

.formulario textarea,
.formulario input[type=text],
.formulario select {
	border: 1px solid #ccc;
	border-radius: .2rem;
	font-family: inherit;
	font-size: 12px;
	min-height: 24px;
	padding: 3px;
	line-height: 1;
	resize: none;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
	vertical-align: bottom;  
}

.formulario textarea{
    overflow-y: auto;
    white-space: pre-line;
}

.formulario select {
	padding: 0 3px;
}

.formulario select:focus {
	border-color: rgba(250, 162, 0, 0.8);
	box-shadow: 0 0 3px rgba(250, 162, 0, 0.4);
	outline: none;
}

.formulario input[type=checkbox] {
	margin-right: 5px;
	height: 13px !important;
}

.formulario input[type=text]:focus {
	border-color: rgba(250, 162, 0, 0.8);
	box-shadow: 0 0 3px rgba(250, 162, 0, 0.4);
	outline: none;
}

.formulario span {
	float: left;
	font-size: 0.8rem;
	overflow: visible;
	vertical-align: top;
	text-align: left;
	min-height: 1rem;
	color: #333;
	font-family: inherit;
	/*white-space: nowrap;*/
}

.controle-radiobuttonlist > span {
	display: inline-block;
	padding: 5px 0;
}

.controle-radiobuttonlist label {
	margin-left: 5px;
	font-size: .75rem;
}

.controle-radiobuttonlist input[type=radio] {
	vertical-align: text-top;
}

/* HACK PROVISÓRIO PARA CONSERTAR O FORMULÁRIO DAS TELAS DE CADASTRO DE AVALIÇÕES */
.formulario span[onclick*=_dt_segunda_chamada] {
	min-width: 140px;
}


/* [ DROPDOWN CUSTOMIZADO ] */
.custom-select {
	background-color: #E8E8E8;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#F8F8F9),to(#E8E8E8));
	background-image: -webkit-linear-gradient(top,#F8F8F9,#E8E8E8);
	background-image: -moz-linear-gradient(top,#F8F8F9,#E8E8E8);
	background-image: -ms-linear-gradient(top,#F8F8F9,#E8E8E8);
	background-image: -o-linear-gradient(top,#F8F8F9,#E8E8E8);
	background-image: linear-gradient(top,#F8F8F9,#E8E8E8);
	border: 1px solid #ddd;
	border-radius: 3px;
	display: inline-block;
	position: relative;
	vertical-align: bottom;
}

.custom-select select {
	width: 100%;
	margin: 0;
	background: none;
	border: 1px solid transparent;
	outline: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	font-size: .8rem;
	font-family: inherit;
	color: #333;
	padding-right: 1rem;
	line-height: 1.6;
	height: 24px;
}

.custom-select::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	top: 13px;
	right: .4rem;
	margin-top: -4px;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 6px solid #666;
	z-index: 1;
	pointer-events: none;
}

.custom-select:hover {
	border-color: #ABABAB;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
}

.custom-select option {
	font-weight: normal;
}

.custom-select.select-ativo {
	border-color: rgba(250, 162, 0, 0.8);
	box-shadow: 0 0 3px rgba(250, 162, 0, 0.4);
}
/* Hacks para browsers */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.custom-select select::-ms-expand {
		display: none;
	}

	.custom-select select:focus::-ms-value {
		background: transparent;
		color: #222;
	}
}

@-moz-document url-prefix() {
	.custom-select {
		overflow: hidden;
	}

	.custom-select select {
		width: 120%;
		width: -moz-calc(100% + 3em);
		width: calc(100% + em);
	}
}

.custom-select select:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #000;
}

.form-linha select.form-erro {
}


/* -------------------------------- */
/* [ GRIDS ] */
/* -------------------------------- */
.grid-topo {
	/*background: #efefef;*/
	border-bottom: 2px #D5D5D5 solid;
	border-radius: 3px 3px 0 0;
	overflow: hidden;
	padding-left: .5rem;
	position: relative;
	width: 100%;
}

.grid-topo::after {
	clear: both;
	content: " ";
	display: block;
}

.grid-topo-titulo {
	color: #333;
	display: inline-block;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.8;
}

.grid-topo .botao {
	float: right;
	margin-left: .3rem;
}

.grid-total {
	color: #666;
	font-size: .75rem;
	float: right;
	line-height: 2.4;
}

.grid-ajuda {
	color: #666;
	font-size: .7rem;
	padding: .5rem .5rem 1rem .5rem;
}

.grid-topo-controles {
	background: #F7F7F7;
	line-height: 20px;
	padding: .3rem .5rem;
	width: 100%;
}

.grid-topo-controles > div {
	display: inline-block;
}

.grid-topo-controles:after {
	clear: both;
	content: " ";
	display: block;
}

.grid-topo-controles .botao {
	height: 20px;
	line-height: 18px;
	font-size: .75rem;
	margin-top: 2px;
}

.grid-topo-resumo {
	color: #666;
	float: left;
	font-size: .75rem;
	line-height: 24px;
}

.grid-controle-mostrar {
	float: right;
}

.grid-controle-mostrar .custom-select {
	height: 20px;
	vertical-align: text-bottom;
}

.grid-controle-mostrar select {
	font-size: .75rem;
	height: 20px;
	line-height: 12px;
	min-height: 20px;
	padding-right: 1rem;
}

.grid-controle-mostrar .label-padrao {
	font-size: .75rem;
	height: auto;
}

.grid-controle-mostrar .custom-select::after {
	top: .6rem;
}

.grid-rodape, .grid-rodape tr:hover, .grid-links .grid-rodape tr:hover {
	background: transparent;
	font-size: .75rem;
	margin-bottom: .5rem;
	text-align: right;
}

.grid-icone {
	color: #333;
	line-height: 1.6;
}

.grid-icone:hover {
	cursor: pointer;
	opacity: .6;
}

.grid-icone.icone-editar {
	color: #5A8F3B;
}
/* Grid datawindow */
#objctl00_MasterPlaceHolder_dwForm_datawindow tbody tr:hover, .grid-links tr:hover {
	background-color: #FFF7E6;
}

.grid-links {
	font-family: 'Segoe Ui', 'Open Sans', Arial, Helvetica, Sans-Serif;
	margin: 0 auto;
}

.grid-links table {
	border-collapse: collapse;
	width: 100%;
}

.grid-links td table th,
.grid-links #objdwForm_header span,
#objctl00_MasterPlaceHolder_dwForm_header th {
	font-family: inherit;
	font-weight: bold;
	font-size: 12px;
	line-height: 1.5;
	padding: 3px 0;
}

.grid-links [id$="objdwForm_header"] td:first-child th {
	padding-left: .5rem;
}

/*.grid-links [id$="objdwForm_header"],
.grid-links [id$="objdwForm_header"] td,
.grid-links [id$="objdwForm_header"] *:hover,
.grid-links [id$="dwForm_header"] th,
.grid-links [id$="dwForm_header"] td,
.grid-links [id$="objdwForm_header"],
.grid-links [id$="objdwForm_header"] :hover {*/

.grid-links [id$="_header"],
.grid-links [id$="_header"] *:hover,
.grid-links [id$="_header"] th,
.grid-links [id$="_header"] td,
.grid-links [id$="_header"]:hover {
	background-color: #F7F7F7;
}

.grid-links > div#objdwForm_datawindow, .grid-links > div > div[id$="_datawindow"] {
	width: 100% !important;
}

.grid-links .botao {
	line-height: 1;
}

.grid-links a:not([href*="Page"]) {
	display: block;
	line-height: 2;
	color: #0052B0;
	font-family: inherit;
	font-size: .75rem;
	padding-left: .5rem;
}

.grid-links a:focus {
	opacity: .7;
	outline: none;
}

.grid-links input[type=checkbox] {
	max-height: 13px;
	max-width: 13px;
}

.grid-links span, .grid-links td {
	border-bottom: 1px solid #DBDBDB;
	font-family: inherit;
	font-size: .75rem;
	line-height: 1.5;
	vertical-align: inherit;
}
/*td:first-child a { text-decoration: none; }*/
.grid-links td table td, .grid-links td table th, .grid-links span span {
	border-bottom: 0;
}

.grid-rodape td {
	margin-left: .5rem;
}

.grid-rodape a {
	color: inherit;
	display: inline-block;
	font-weight: bold;
	margin: 0 .5rem;
}

.grid-rodape a:hover {
	opacity: .8;
}

.grid-links input[type=text]:not(.hasDatepicker) {
	border: 1px dashed rgba(0, 0, 0, 0);
	border-bottom: 2px dashed #ccc;
	font-family: inherit;
	font-size: .75rem;
	min-height: 20px;
}

.grid-links tr input[readonly], .grid-links tr textarea[readonly] {
	border-bottom: none !important;
	background: transparent !important;
	font-size: .75rem;
	font-family: inherit;
	padding: 2px 0;
	resize: none;
}

.grid-links input[type=text]:focus {
	border-bottom-color: #F7941D;
}

.grid-links input[disabled=disabled] {
	background-color: #EDEDE7;
	border: none !important;
	cursor: not-allowed;
}

.grid-select .grid-links tbody td {
	padding: 5px 0;
}

.dwgrid-fix span, .dwgrid-fix input[type=text] {
	min-height: 20px;
}

.dwgrid-fix [id*=dwForm_datawindow] {
	min-width: 100%;
}

/* --------------------------------------- */
/* BARRA DE PESQUISAS E FILTRO */
/* --------------------------------------- */
.barra-pesquisa {
	clear: both;
	line-height: 1;
	margin: .5rem auto;
	padding: .5rem 0;
	position: relative;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
}

.barra-pesquisa:after {
	clear: both;
	content: " ";
	display: block;
}

.barra-pesquisa input[type=text] {
	border: 1px solid #ccc;
	border-radius: .2rem;
	display: inline-block;
	font-family: inherit;
	font-size: .75rem;
	min-height: 26px;
	line-height: 1;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
	padding-left: .2rem;
	vertical-align: bottom;
}

.barra-pesquisa input[type=text]:hover {
	border-color: #999;
}

.barra-pesquisa input[type=text]:focus:hover {
	border-color: rgba(250, 162, 0, 0.8);
}

.barra-pesquisa input[type=text]:focus {
	border-color: rgba(250, 162, 0, 0.8);
	box-shadow: 0 0 3px rgba(250, 162, 0, 0.4);
	outline: none;
}

.barra-pesquisa .botao {
	height: 26px;
	line-height: 24px;
	margin-left: 5px;
}

.barra-pesquisa-linha {
	margin-top: 8px;
}

.barra-pesquisa-espaco {
	margin-left: 10px;
}

.barra-pesquisa input[type=checkbox] {
	vertical-align: super;
}

/* Barra de pesquisa em datawindow - dwKey */
.barra-pesquisa-dw {
	display: inline-block;
	vertical-align: bottom;
}

.barra-pesquisa-dw > div {
	width: 100% !important;
}

.barra-pesquisa-dw span {
	font-size: .75rem;
	line-height: 1rem;
	min-height: 1.3rem;
}

.barra-pesquisa-dw input[type=text] {
	min-height: 24px;
}

.barra-pesquisa-dw .input-calendario input[type=text] {
	left: 1px !important;
	margin-top: -1px;
	min-height: 24px !important;
}

.barra-pesquisa-dw .ui-datepicker-trigger {
	padding: 3px 2px 3px 74px;
	position: relative;
	right: auto;
	top: -1px;
}

.barra-pesquisa-dw select {
	font-family: inherit;
	height: 24px !important;
	border: 1px solid #ccc;
	border-radius: 3px;
}

/* ------- */
/* TABELAS */
/* ------- */
.tabela-padrao {
	border-collapse: separate;
	border-spacing: 1px;
	border-color: #FFF;
	color: #333;
	font-size: .75rem;
	text-align: left;
	width: 100%;
}

.tabela-padrao tbody {
	-ms-word-break: break-word;
	word-break: break-word;
}

.tabela-padrao tbody tr:nth-child(even) {
	background-color: #f5f5f5;
}

.tabela-padrao tbody tr:hover {
	background-color: #fff5e6;
}

.tabela-padrao tbody tr.linha-destaque, .tabela-padrao tbody tr.linha-destaque:hover {
	background-color: #ffddab;
}

.tabela-padrao th {
	background-color: #ebebeb;
}

.tabela-padrao th, .tabela-padrao td {
	padding: .3rem;
}

.tabela-paginacao {
	font-size: .75rem;
	line-height: 2;
	margin-bottom: 10px;
	text-align: right;
}

.tabela-paginacao span {
	color: #666;
}

.tabela-paginacao a,
.tabela-paginacao span {
	display: inline-block;
	margin: 0 .3rem;
}

.tabela-paginacao a {
	color: inherit;
	font-weight: bold;
}

.tabela-paginacao a:hover {
	opacity: .8;
}

.celula-branca {
	background: #FFF !important;
}

.celula-icone {
	text-align: center;
}

.celula-icone a.icone:hover {
	cursor: pointer;
	opacity: .8;
}

/* Checkbox estilizado dentro de tabelas */
.td-check {
	min-width: 30px;
	padding: 0 !important;
}

.tabela-check {
	height: 27px;
	position: relative;
	text-align: center;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
}

.tabela-check::before {
	content: '\e66d';
	color: #999;
	font-family: 'sagresportal';
	font-weight: normal;
	line-height: 1.7;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
	font-size: 1rem;
}

.tabela-check:hover,
.tabela-check-atv {
	background-color: #72BB53;
}

.tabela-check:hover::before,
.tabela-check-atv::before {
	color: white;
}

.tabela-check .checkbox:focus {
	outline: 1px #FFAD54 solid;
}

.tabela-check input[type=checkbox][disabled] {
	cursor: default;
}

.tabela-check input[type=checkbox] {
	bottom: 0;
	cursor: pointer;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	width: 100%;
}

/* ---------------------------------------- */
/* [ TABELA PADRÃO DE FORMULÁRIO E RESUMO ] */
/* ---------------------------------------- */
.form-tabela select,
.form-tabela .input-txt {
	background-color: rgba(0, 0, 0, 0.05);
	background-image: none;
	border: 1px solid transparent;
	border-bottom: 1px dotted rgba(0, 0, 0, 0.3);
	border-radius: 3px;
	font-family: inherit;
	height: 28px;
	width: 100%;
}

.form-tabela .input-txt:focus {
	border-bottom-style: solid;
}

.form-tabela tbody {
	font-size: .9em;
}

.form-tabela tbody tr:hover td {
	background: #eaeaea;
}

.form-tabela tbody tr:nth-child(even):not(.detalhes-servico) {
	background-color: #f5f5f5;
}

.form-tabela td:not(.td-check) {
	padding: 3px;
}

.form-tabela th {
	background-color: #F0F0F0;
	font-size: .7rem;
	text-align: left;
	padding: .3rem .2rem;
}

.form-tabela {
	border-collapse: separate;
	border-spacing: 1px;
	color: #333;
	font-size: .8rem;
	table-layout: fixed;
	width: 100%;
}

.form-tabela .form-select,
.form-tabela .form-input {
	font-family: inherit;
	height: 26px;
	width: 100%;
}

.form-tabela .icone-editar,
.form-tabela .icone-olho,
.tabela-padrao .icone-editar,
.tabela-padrao .icone-olho {
	color: #666;
	font-size: 16px;
}

.form-tabela .icone-editar:hover,
.form-tabela .icone-olho:hover,
.tabela-padrao .icone-editar:hover,
.tabela-padrao .icone-olho:hover,
.form-tabela-remover:hover {
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	display: inline-block;
	color: #333;
}

.form-tabela .icone-editar:hover,
.form-tabela .icone-olho:hover,
.tabela-padrao .icone-editar:hover,
.tabela-padrao .icone-olho:hover {
	color: #EC7A2E;
}

.form-tabela-remover:hover {
	color: #DD3232;
}

.form-tabela td.txt-center a.icone {
	display: block;
}

.form-tabela-remover {
	color: #666;
	display: inline-block;
	font-size: 1rem;
}

/* Paginação de tabelas */
.repeater-navegacao {
	color: #666;
	font-size: .75rem;
	line-height: 2;
	margin-bottom: .5rem;
	text-align: right;
}

.repeater-navegacao a {
	color: #0052B0;
	display: inline-block;
	font-weight: bold;
	margin: 0 .5rem;
}

.repeater-navegacao a[disabled] {
    color: #CCC;
    cursor: default;
}

.repeater-navegacao a:hover {
	opacity: .8;
}


/* ---------------------- */
/* CONTROLE DE UPLOAD */
/* ---------------------- */
.anexo-container .upload-container {
	height: 32px;
	padding: 0;
}

.anexo-container .upload-rotulo {
	color: #333;
	text-decoration: none;
	text-shadow: 0 1px 0 #FFF;
}

.anexo-container .anexo-salvar {
	margin-bottom: 5px;
	margin-left: 5px;
	margin-top: 20px;
}

.anexo-container .erro-anexo:not(:empty) {
	color: #c00;
	margin: 10px 0;
}

.anexo-container .upload {
	background: rgba(0,0,0,0);
	border: none;
	cursor: pointer;
	font-family: inherit;
	height: 30px;
	left: 0;
	line-height: 1;
	position: relative;
	width: 150px;
}

.tamanho-anexo {
	color: #999;
}

.anexos,
.detalhes {
	background: transparent;
	padding: .5em;
}

.barra-anexo {
	background: #FFB951;
	height: 5px;
	margin: 10px 0;
}

.anexo-adicionar {
	font-size: 50px;
	height: 100%;
	left: -20px;
	opacity: 0;
	position: relative;
	top: -30px;
	width: 220px;
}

.item-arquivo {
	margin-bottom: 10px;
	margin-top: 5px;
}

.upload-nome-arquivo {
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}

/* ---------------------- */
/* SLIDE SELECT */
/* ---------------------- */
.titulo-nivel3 {
	font-size: 14px;
	font-weight: normal;
}

.titulo-nivel3 .subtitulo {
	color: #999;
	font-size: .8em;
	margin-left: 10px;
}

.switch {
	border-radius: 3px;
	cursor: pointer;
	display: inline-block;
	height: 26px;
	position: relative;
	vertical-align: top;
	width: 86px;
}

.switch-botao {
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
}

.switch-botao:checked ~ .switch-handle {
	box-shadow: -1px 1px 5px rgba(0,0,0,0.2);
	left: 61px;
}

.switch-label {
	-moz-transition: .1s ease-out;
	-moz-transition-property: opacity background;
	-o-transition: .1s ease-out;
	-o-transition-property: opacity background;
	-webkit-transition: .1s ease-out;
	-webkit-transition-property: opacity background;
	background: #CF4040;
	border-radius: inherit;
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.12), inset 0 0 2px rgba(0,0,0,0.15);
	display: block;
	font-size: .9em;
	height: inherit;
	position: relative;
	text-transform: uppercase;
	transition: .1s ease-out;
	transition-property: opacity background;
}

.switch-label:before,
.switch-label:after {
	-moz-transition: inherit;
	-o-transition: inherit;
	-webkit-transition: inherit;
	color: #fff;
	font-size: .7rem;
	line-height: 1;
	margin-top: -0.3rem;
	position: absolute;
	top: 50%;
	transition: inherit;
}

.switch-label:before {
	content: attr(data-off);
	right: 6px;
}

.switch-label:after {
	content: attr(data-on);
	left: 6px;
	opacity: 0;
}

.switch-botao:checked ~ .switch-label {
	background: #3d9700;
}

.switch-botao:checked ~ .switch-label:before {
	opacity: 0;
}

.switch-botao:checked ~ .switch-label:after {
	opacity: 1;
}

.switch-handle {
	-moz-transition: left .1s ease-out;
	-o-transition: left .1s ease-out;
	-webkit-transition: left .1s ease-out;
	background: #f0f0f0;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#fff),to(#f0f0f0));
	background-image: -webkit-linear-gradient(top,#fff,#f0f0f0);
	background-image: -moz-linear-gradient(top,#fff,#f0f0f0);
	background-image: -ms-linear-gradient(top,#fff,#f0f0f0);
	background-image: -o-linear-gradient(top,#fff,#f0f0f0);
	background-image: linear-gradient(top,#fff,#f0f0f0);
	border-radius: 3px;
	box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
	height: 24px;
	left: 1px;
	position: absolute;
	top: 1px;
	transition: left .1s ease-out;
	width: 24px;
}

.switch-green > .switch-botao:checked ~ .switch-label {
	background: #4fb845;
}

.switch-bloq {
	cursor: not-allowed;
	opacity: 0.6;
}

.switch-bloq .switch-label {
	background-color: #ccc;
}

.switch-bloq .switch-label:before {
	color: #000;
}

/* ------------------------------------- */
/* CONTROLE ACCORDION (EXPANDE E RETRAI) */
/* ------------------------------------- */
.accordion-titulo {
	margin-bottom: 5px;
	padding: 5px 10px;
	background: #F7F7F7;
	font-size: 14px;
	line-height: 20px;
	cursor: pointer;
	border: 1px solid #E5E5E5;
	position: relative;
}


.accordion-titulo::after, .accordion-selecionado::after {
	font-family: sagresportal;
	position: absolute;
	font-size: 1.5rem;
	right: 10px;
	content: '\e606';
	top: 50%;
	margin-top: -0.65rem;
}

.accordion-selecionado::after {
	color: #E46A19;
	-moz-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.accordion-titulo:hover {
	background-color: #F1F1F1;
}

.accordion-conteudo {
	font-size: 12px;
	padding: 10px;
}

.accordion-conteudo p {
	margin-bottom: 10px;
}

.accordion-conteudo.pagina-ajuda a {
	color: #f60;
	float: right;
	font-size: 11px;
	margin-right: 10px;
	margin-top: 10px;
	text-decoration: underline;
}

.accordion-selecionado {
	margin-bottom: 5px;
	padding: 5px 10px;
	background: #E5E5E5;
	font-size: 14px;
	line-height: 20px;
	cursor: pointer;
	border: 1px solid #E5E5E5;
	position: relative;
}








/* ---------------------- */
/* CÓDIGO NÃO RECOMENDADO */
/* ---------------------- */
.capitalize {
	text-transform: capitalize;
}

.right {
	float: right;
}

.left {
	float: left;
}

.inline-block {
	display: inline-block;
}

.txt-center {
	text-align: center;
}

.txt-left {
	text-align: left;
}

.txt-right {
	text-align: right;
}

/* --------------------------------------- */
/* CÓDIGO ANTIGO A ORGANIZAR E SEM REVISÃO */
/* --------------------------------------- */
.bt_azul {
	background-color: #2861BE;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#2861BE),to(#0440A2));
	background-image: -webkit-linear-gradient(top,#2861BE,#0440A2);
	background-image: -moz-linear-gradient(top,#2861BE,#0440A2);
	background-image: -ms-linear-gradient(top,#2861BE,#0440A2);
	background-image: -o-linear-gradient(top,#2861BE,#0440A2);
	background-image: linear-gradient(top,#2861BE,#0440A2);
	border-color: #2953B6;
	color: white;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2861BE',EndColorStr='#0440A2');
}

.bt_azul:active {
	background-color: #3B6DBE;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#0440A2),to(#13408A));
	background-image: -webkit-linear-gradient(top,#0440A2,#13408A);
	background-image: -moz-linear-gradient(top,#0440A2,#13408A);
	background-image: -ms-linear-gradient(top,#0440A2,#13408A);
	background-image: -o-linear-gradient(top,#0440A2,#13408A);
	background-image: linear-gradient(top,#0440A2,#13408A);
	border-color: #2953B6;
	box-shadow: 0 0 3px #333 inset;
	color: white;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#13408A',EndColorStr='#13408A');
}

.bt_azul:hover {
	border: 1px solid #1F3F89;
	box-shadow: 0 0 3px #2953B6 inset;
}

/* Webparts */
.webpart-link-destaque {
	display: block;
	font-size: 1rem;
	margin-bottom: 1rem;
	padding: .5rem;
	text-align: center;
	color: #333;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
	background-color: #FFB951;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#ffce84),to(#FFB951));
	background-image: -webkit-linear-gradient(top,#ffce84,#FFB951);
	background-image: -moz-linear-gradient(top,#ffce84,#FFB951);
	background-image: -ms-linear-gradient(top,#ffce84,#FFB951);
	background-image: -o-linear-gradient(top,#ffce84,#FFB951);
	background-image: linear-gradient(top,#ffce84,#FFB951);
	line-height: 2;
}

.webpart-link-destaque .icone {
	font-size: 2rem;
	margin-right: .5rem;
	vertical-align: middle;
}

.webpart-conteudo .webpart-link-destaque {
	margin: 0;
	font-size: .8rem;
	background: rgba(0, 0, 0, 0);
	padding: .5rem 0;
}

.webpart-conteudo .webpart-link-destaque .icone {
	color: #FF9A2C;
}

.webpart-link-destaque:hover {
	opacity: .8;
}

.webpart-detalhar {
	display: block;
	font-size: .8rem;
	line-height: 2;
	margin: 1rem auto 0 auto;
	text-align: center;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
}

.webpart-detalhar:hover {
	opacity: .8;
}

.webpart-detalhar a {
	color: inherit;
}

.cabecalho-geral {
	margin-bottom: 30px;
}

.cabecalho-geral .detalhe-periodo {
	margin: 5px 0 2px;
}

.sagres_carregando {
	margin: 10px auto;
	padding: 10px;
	width: 200px;
}

.sagres_carregando img {
	display: block;
	margin: 0 auto;
}

.conteudo-interno {
	margin: 10px;
	width: 960px;
}


/* -------- */
/* WEBPARTS */
/* -------- */
/* [ LINK DE PERSONALIZAR E LISTA DE WEBPARTS PARA SELEÇÃO ] */
.webpart-catalog-link {
	background: #666;
	font-size: .8rem;
	padding: .5rem;
	width: 9.5rem;
	color: white;
	position: fixed;
	right: -7.5rem;
	border-radius: .3rem 0 0 .3rem;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
	z-index: 99;
	line-height: 1.6;
	white-space: nowrap;
}

.webpart-catalog-link .icone {
	float: left;
	font-size: 1.3rem;
	margin-right: .5rem;
}

.webpart-catalog-link:hover, .webpart-catalog-link:focus {
	right: 0;
}

.webparts-lista {
	background: white;
	box-shadow: 0 2px 5px 0 #ccc;
	margin: .5rem auto;
	width: 50%;
}

.webparts-lista-tit {
	font-size: 1rem;
	padding: .5rem;
}

.webparts-lista-itens {
	font-size: .8rem;
	line-height: 2;
	padding: 0 .5rem .5rem .5rem;
}

.webparts-lista-rodape {
	background-color: #F0F0F0;
	font-size: .8rem;
}

.webparts-lista-rodape > div {
	line-height: 2;
	padding: 0 .5rem;
}

.webparts-catalog {
	width: 100%;
	margin-bottom: 3px;
}

/* --------- */
/* [ CORES ] */
/* --------- */
.amarelo {
	color: #FFC107;
}

.azul {
	color: #0074C7;
}

.cinza {
	color: #999;
}

.laranja {
	color: #EC7A2E;
}

.verde {
	color: #46AC02;
}

.vermelho {
	color: #DD3232;
}

.bt-vermelho {
	background-color: #cf2626;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#cf2626),to(#ae2020));
	background-image: -webkit-linear-gradient(top,#cf2626,#ae2020);
	background-image: -moz-linear-gradient(top,#cf2626,#ae2020);
	background-image: -ms-linear-gradient(top,#cf2626,#ae2020);
	background-image: -o-linear-gradient(top,#cf2626,#ae2020);
	background-image: linear-gradient(top,#cf2626,#ae2020);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#cf2626',EndColorStr='#ae2020');
}


.bt-verde {
	background-color: #4cb542;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#4cb542),to(#409838));
	background-image: -webkit-linear-gradient(top,#4cb542,#409838);
	background-image: -moz-linear-gradient(top,#4cb542,#409838);
	background-image: -ms-linear-gradient(top,#4cb542,#409838);
	background-image: -o-linear-gradient(top,#4cb542,#409838);
	background-image: linear-gradient(top,#4cb542,#409838);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#4cb542',EndColorStr='#409838');
}

.bt-vermelho,
.bt-verde {
	border: 1px solid rgba(0, 0, 0, 0.1);
	color: white;
}

.bt-vermelho:hover,
.bt-verde:hover {
	border: 1px solid rgba(0, 0, 0, 0.4);
}
