body {
	background: #F1F5F7;	
	font-family: 'Roboto Condensed',Helvetica, Arial, sans-serif;	
}

#login_header {
	background: #222222;
	height: 50px;
	padding: 10px;
}

#login_header_logo {
	float: left;
}

#login_header_logo img {
	height: 50px;
}

#login_header_restrito {
	float: right;
	color: #FFD613;
	font-size: 26px;
	margin-top: 10px;
}

.img_hover {
	transition: all 0.4s ease;
}

.img_hover:hover {
	opacity: 0.7;
    filter:alpha(opacity=70); /* For IE8 and earlier */
   	transition: all 0.4s ease;
}

#login_conteudo {
	clear: both;
	overflow: hidden;
}

.wrapper {
  display: flex;
  width: 100%;
}

.wrapper .sidebar{
  position: relative;  
}

.wrapper .sidebar .bg_shadow{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.wrapper .sidebar__inner {
  width: 240px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  background: #252B3B;  /*cor de fundo do menu */
  z-index: 999;
  transition: all 0.3s ease;
  overflow-x:hidden;
}

.wrapper .main_container {
  margin-left: 240px;
  width: calc(100% - 240px);
   transition: all 0.3s ease;
}


.wrapper .main_container .top_navbar {
  	width: calc(100% - 240px);
  	height: 70px;
  	background: #181D27;
  	display: flex;
  	padding: 0px;
  	position: fixed;
  	top: 0;
  	left: 240px;
  	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.125);
   	transition: all 0.3s ease;
   	box-sizing: border-box;
   	z-index: 10;
}

.wrapper .main_container .top_navbar .hamburger {
  width: 30px;
  height: 30px;
  position: relative;
  display: none;
}

.wrapper .main_container .top_navbar .hamburger .fas {
  color: #88a3d0;
  font-size: 25px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wrapper .main_container .top_navbar .hamburger .fas:hover {
  opacity: 0.5;
}

.wrapper .main_container #container {
  padding: 0px;
  margin-top: 70px;
}

.wrapper .sidebar__inner .close{
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 25px;
    color: #fff;
  	display: none;
  	cursor: pointer;
}

.wrapper .sidebar__inner .close:hover{
  opacity: 0.5;
}

@media screen and (max-width: 800px){
  .wrapper .sidebar__inner{
    left: -100%;
  }
  .wrapper .main_container,
  .wrapper .main_container .top_navbar{
    margin-left: 0;
    width: 100%;
  }
  .wrapper .main_container .top_navbar{
    left: 0;
  }
  .wrapper.active .sidebar__inner{
    left: 0;
  }
  .wrapper .sidebar__inner .close,
  .wrapper .main_container .top_navbar .hamburger{
    display: block;
  }
  .wrapper.active .sidebar .bg_shadow{
    visibility: visible;
    opacity: 0.7;
  }
}

@media screen and (max-width: 530px){
  .wrapper .main_container .top_navbar .menu{
    display: none;
  }
}

#side_logo_normal {
	background: #181D27;
	height: 70px;
	padding: 10px;
	box-sizing: border-box;
}

#top_logo_mobile {
	display: none;
}

#top_user {
	width: 100%;
}

#conteudo {
	background: #FFFFFF;
	margin: 20px;
	margin-top: 90px;
	box-sizing: border-box;
	padding: 20px;
	border-radius: 10px;	
}

#footer {
	margin-top: 40px;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 60px;
	padding-bottom: 30px;
}

.item_footer {
	text-align: center;
	color: #888888;
	font-size: 14px;
}

.item_footer i {
	margin-bottom: 10px;
}

#login_conteudo {
	background: #FFFFFF;
	margin: 20px;
	margin-top: 20px;
	box-sizing: border-box;
	padding: 20px;
	border-radius: 10px;	
}

.home_titulo {
	border-bottom: 3px solid #FFD613;
	margin-bottom: 30px;
	clear: both;
	overflow: hidden;
}

.home_titulo h4 {
	margin: 0px;
	padding: 0px;
	font-size: 16px;
	background: #222222;
	padding: 15px 20px;
	display: inline-block;
	color: #FFD613; 
	line-height: normal;
}

#identif_container {
	width: 310px;
	margin: 0 auto;
	border: 1px solid #CCCCCC;
	box-sizing: border-box;
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 30px;
}

.identif_field {
	
}

.identif_field label {
	font-size: 16px; 
}

.identif_field .add-on {
	font-size: 18px;
	height: 42px;
	box-sizing: border-box;
	width: 40px;
	line-height: 32px;
	
}

.identif_field input {
	margin: 0px;	
}

.identif_field input[type="text"],
.identif_field input[type="password"] {
	font-family: 'Roboto Condensed',Helvetica, Arial, sans-serif;
	font-size: 18px;
	font-weight: normal;
	padding: 20px 10px;	
    height: 30px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    width: 230px;    
}

.identif_field input[type="checkbox"] {
	margin-right: 5px;
}

.identif_link {
	text-align: right;
	margin-top: -10px;
	margin-bottom: 5px;
}

.identif_buttons {
	margin-top: 10px;
	text-align: center;
	clear: both;
	overflow: hidden;
}

.btn_site {
	font-size: 16px;
	font-weight: bold;
	padding: 20px 50px;
	color: #212121; 
	background: #FFD613;
	border: none;
	box-shadow: none;
	border-radius: 8px;
	text-shadow: none;
	font-family: 'Roboto Condensed',Helvetica, Arial, sans-serif;
	transition: all 0.4s ease;
}

.btn_site i {
	margin-left: 8px;
}

.btn_site:hover,
.btn_site:focus {
	background: #222222;
	color: #FFD613;
	transition: all 0.4s ease;
}

.identif_buttons {
	margin-bottom: -10px;
}

.identif_buttons button {
	margin-bottom: 10px;
	width: 100%;
}

.btn_site.gray {
	background: #CCCCCC;
}

.btn_site.gray:hover,
.btn_site.gray:focus {
	background: #222222;
	color: #FFD613;
}


a {
	transition: all 0.4s ease;
	color: #E25249;
}

a:hover,
a:focus {
	color: #F9C001;
	transition: all 0.4s ease;
}

#criar_cpf_container {
	width: 310px;
	margin: 0 auto;
	border: 1px solid #CCCCCC;
	box-sizing: border-box;
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 30px;
}

#criar_cpf_container input {
	width: 100%;
	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 10px;	
}

.criar_h4 {
	font-size: 30px; 
	margin-bottom: 20px;
}

.criar_info {
	color: #AAAAAA;
}

#criar_cad_container{
	width: 540px;
	margin: 0 auto;
	border: 1px solid #CCCCCC;
	box-sizing: border-box;
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 30px;
	overflow: hidden;
	clear: both;
}

#criar_form_left {
	float: left;
	width: 230px; 
}

#criar_form_right {
	float: right;
	width: 230px;
}

#criar_form_container .identif_field {
	margin-bottom: 20px;
}

.identif_field_agree {
	font-size: 16px;
	padding-top: 22px;
	line-height: 150%;
}

.identif_field_agree input {
	margin: 0px;
	margin-right: 5px;
}

.criar_agree_container {
	clear: both;
	overflow: hidden;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 20px;
}

.criar_agree_container input {
	margin: 0px;
	margin-right: 5px;	
}

.identif_buttons a {
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;	
}

.identif_buttons img {
	height: 60px;
	margin: 0 auto;
	margin-bottom: 10px;
	
}

.tooltip{
   font-size: 14px;
}

.fPassForca {
	float: right;
}

.fPassForca span {
	font-size: 14px;
	font-weight: normal;	
}

.popover {
    max-width:230px;
}

.show_sucesso {
	text-align: center;
	font-size: 16px;
}

.show_sucesso > i {
	font-size: 150px;
	color: #FFD613;
}

.show_sucesso h4 {
	margin: 20px 0px;
	font-size: 24px;
}

.show_sucesso ul {
	text-align: left;
}

.login_ativa {
	text-align: center;
	width: 350px;
	margin: 0 auto; 
}

.login_ativa .alert {
	font-size: 16px;
}

.login_ativa h4 {
	font-size: 24px;
	margin-bottom: 10px;
}

.identif_agree_post .identif_field_agree {
	padding: 0px;
	padding-bottom: 20px;
}

.siderbar_menu {
	
}

.menu_top {
	padding: 20px;
}

.menu_info {
	color: #D7E4E8;
	clear: both;
	overflow: hidden;
}

.menu_info h4 {
	padding: 0px;
	margin: 0px;
	line-height: normal;
	width: 60px;
	height: 60px;
	background: #181D27;
	font-size: 18px;
	color: #D7E4E8;
	border-radius: 50px;
	text-align: center;
	line-height: 60px;
	float: left;
	margin-right: 10px;
}

.menu_info img {
	padding: 0px;
	margin: 0px;
	height: 60px;
	border-radius: 8px;
	float: left;
	margin-right: 10px;
	border: 1px solid #526183;
}

.menu_info p {
	padding-top: 10px;
}

.menu_tit {
	display: block;
	color: #D7E4E8;
	font-size: 16px;
	font-weight: bold;
}

.menu_tit_nome {
	display: block;
	color: #D7E4E8;
	font-size: 14px;
}

.menu_divisor {
	border: none;
	padding: 0px;
	margin: 0px;	
	border-bottom: 2px solid #181D27;
}

.menu_itens {
	padding: 20px;
	padding-top: 0px;
}

.menu_btn_select {
	margin-top: 20px;
}

.menu_btn_select a {
	display: block;
	/*color: #7E889D;*/
	color: #C7D5DC;
	font-size: 14px;
	font-weight: bold;
}

.menu_btn_select a:hover,
.menu_btn_select a:focus {
	/*color: #D7E4E8;*/
	color: #F9C001;
	text-decoration: none;
}

.menu_btn_select > a > i.icone {
	margin-right: 10px;
}

.menu_btn_select > a > i.arrow {
	float: right;
	padding-top: 3px;
}

.menu_btn_select .dropdown-menu li > a {
  	color: #1F1F1F;
  	font-size: 14px;
  	padding: 5px 10px;
}

.menu_btn_select .dropdown-menu li > a:hover,
.menu_btn_select .dropdown-menu li > a:focus {
    background-color: #E2EBEF;
    background-image: none;
    filter:none;
    color: #1F1F1F;
}

.menu_itens {
	
}

.menu_itens li {
	margin-bottom: 5px;
}

.menu_itens li a {
	font-size: 15px;
	/*color: #7E889D;*/
	color: #C7D5DC;
	font-weight: bold;
	display: block;
}

.menu_itens li a:hover,
.menu_itens li a:focus,
.menu_itens li.active a{
	/*color: #D7E4E8;*/
	color: #F9C001;
	text-decoration: none;
}

.menu_itens li.disabled {
	font-size: 12px;
	/*color: #555E70;*/
	color: #7E889D;
	font-weight: bold;
	margin-top: 20px;
}

.menu_itens > li > a > i.icone {
	margin-right: 10px;
	width: 15px;
}

.user_right {
	float: right;
	padding-top: 12px;
	margin-right: 20px;
}

.user_img {
	float: left;
}

.user_img img {
	width: 40px;
	border-radius: 50%;
	border: 1px solid #526183;
	margin-right: 10px;
}

.user_info {
	float: right;
}

.user_info p {
	margin: 0px;
	padding: 0px;
	color: #FFFFFF;
	font-size: 12px;
}

.user_menu a {
	color: #FFD613;
	font-size: 18px;
}

.user_menu a:hover,
.user_menu a:focus {
	text-decoration: none;
	color: #FFFFFF;
}

.user_menu a > span {
	margin-right: 10px;
}

.user_menu .dropdown-menu li > a {
  	color: #1F1F1F;
  	font-size: 16px;
  	padding: 5px 10px;
}

.user_menu .dropdown-menu li > a:hover,
.user_menu .dropdown-menu li > a:focus {
    background-color: #E2EBEF;
    background-image: none;
    filter:none;
    color: #1F1F1F;
}

.user_menu .dropdown-menu li.disabled > a,
.user_menu .dropdown-menu li.disabled > a:hover,
.user_menu .dropdown-menu li.disabled > a:focus {
	color: #999999;
	background: none;
	cursor: default;
}

.user_menu .dropdown-menu li.sair > a {
	color: #E60014;	
}

.user_menu .dropdown-menu li > a > i {
	width: 15px;
	margin-right: 10px;
}

.single_cab {
	margin-bottom: -80px;
}

.single_cab_container {		
	margin: 0 auto;	
	padding: 10px 20px;
	clear: both;
	overflow: hidden;	
}

.single_cab_container h1 {
	padding: 0px;
	margin: 0px;
	font-size: 30px;
	line-height: normal;
	float: left;
}

.single_cab_container p {
	margin: 0px;
	padding: 0px;
	float: right;
	padding-top: 10px;	
}

#igr_pesq_input {
	background: #FFFFFF;
	clear: both;
	overflow: hidden;
	margin-top: 10px;
	width: 100%;
	display: table;	
	border-radius: 10px;
	border: 1px solid #DDDDDD;
	-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.125);
     -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.125);
          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.125);
}

.igr_pesq_max {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
}

.igr_pesq_min {
	display: table-cell;
	vertical-align: middle;	
}

#igr_pesq_input input{
	font-family: 'Roboto Condensed',Helvetica, Arial, sans-serif;
	font-size: 18px;
	background: none;
	border: none;
	border-radius: 0px;
	height: 40px;
	padding-left: 10px;
	width: 100%;
	box-shadow: none;
	 -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

#igr_pesq_input input:focus{
	-webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
}

#igr_pesq_input button {
	background: none;
	border: none;
	font-size: 24px;
	margin-right: 30px;
	color: #64767B;
	transition: all 0.4s ease;	
}

#igr_pesq_input button:hover,
#igr_pesq_input button:focus {
	color: #E25249;
	transition: all 0.4s ease;
}

.igr_pesq_button_margin {
	width: 10px;
}

#igr_pesq_input a {
	font-size: 16px;
	margin-right: 10px;
	color: #64767B;
	transition: all 0.4s ease;
	float: left;
	margin-top: 5px;
}

#igr_pesq_input a:hover,
#igr_pesq_input a:focus {
	color: #E25249;
	transition: all 0.4s ease;
}

#igr_pesq_container {
	margin-top: 30px;
}

.igr_nova {
	text-align: right;
	margin-bottom: 10px;
}

.igr_lista {
	
}

.igr_lista li {
	vertical-align: top;
	display: inline-block;
	border-bottom: 1px solid #EEEEEE;
	width: 100%;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.igr_lista > li:last-child {
	border-bottom: none;
}

.info_lista_dados {
	display: table;
	font-size: 14px;	
}

.info_lista_dados li {
	display: table-row;	
	
}

.info_lista_dados p {
	display: table-cell;
	padding-bottom: 5px;
}

.info_lista_dados .titulo {	
	display: block;	
	background: #EEEEEE;
	text-align: right;
	border-radius: 8px;
	padding: 0px 5px;
	font-weight: bold;
	margin-right: 10px;
		
}

.info_lista_dados .titulo_link {
	font-size: 20px;
	font-weight: bold;
}

.igr_lista .igr_lista_img {
	width: 150px;
	float: left;
	margin-right: 10px;
}

#paginacao {
	text-align: center;
}

/*
 * Personalização do Accordion
 */

.newAccordion .accordion-group {
	border: none;
	margin-bottom: 8px;
}

.newAccordion .accordion-inner {
	background: #FFFFFF;
	border: none;
}

.newAccordion .accordion-heading .accordion-toggle {
	color: #FFFFFF;
	background: #7E889D;
	transition: all 0.4s ease;
	border-radius: 8px;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
}

.newAccordion .accordion-heading .accordion-toggle:hover {
	text-decoration: none;
	color: #FFFFFF;
	background: #252B3B;
	transition: all 0.4s ease;
}

.newAccordion .accordion-toggle i {
	float: right;
	padding-top: 2px;
}

.cadastro_barra {
	background: #E5E5E5;
	border-radius: 10px;
	margin-bottom: 10px;
	padding: 8px;
	height: 30px;
}

button {
	font-family: 'Roboto Condensed',Helvetica, Arial, sans-serif;
}

.group_mobile {
	display: none;
}


.igrdadosimg_container {
	float: left;
	margin-right: 10px;	
	text-align: center;
}

.igrdadosimg_container img {
	margin-bottom: 10px;
}

.igrdadosimg_container p {
	font-weight: bold;
}

.igrdadosimg_galery img {
	cursor: zoom-in;
}

.igrdadostxt_container {
	display: table-cell;
	width: 100%;
}

.h4_space {
	margin: 0px;
}

.mostra_dados_ul {
	margin: 0px;
	padding: 0px;
	margin-right: -10px;
}

.mostra_dados_ul li {
	vertical-align: top;
	display: inline-block;
	margin-right: 10px;
	margin-top: 5px;	
}

.mostra_dados_ul span{
	margin-left: 5px;
}

.mostra_dados_ul p {
	font-weight: bold;
	background: #EEEEEE;
	padding: 0px 5px;
	margin: 0px;
	margin-top: 4px;
	border-radius: 8px;
}

.mostra_dados_hr {
	margin: 0px;
	border-top: 1px solid #CCCCCC;
	padding: 0px;
	margin-top: 10px;
	clear: both;
	overflow: hidden;
	display: block;
}

.warning16 {
	color: #EDAC36;
	font-size: 16px;
}

.warning14 {
	color: #EDAC36;
	font-size: 12px;
}

.mem_img {
	float: left;
	margin-right: 10px;
	margin-bottom: 0px;
}

.newTabela {
	display: table;
	width: 100%;	
}

.newTabela > li {
	display: table-row;	
}

.newTabela > li:nth-child(odd) {
  background: #F9F9F9;
}

.newTabela > li:hover {
	background: #F5F5F5;
}

.newTabela > li > p {
	display: table-cell;
	padding: 5px;
	border-top: 1px solid #DDDDDD;
	vertical-align: middle;
}

.newTabela_Head {
	font-weight: bold;
}

.newTabelaTit {
	display: none !important;
}

.secfttb {
	height: 50px;
}

.form-horizontal .control-group {
    margin-bottom: 5px;
}

.btn-grava {
	text-align: center;
	margin: 10px;	
}

#mostraMensa{
	margin: 0 auto;		
	text-align: center;
	width: 90%;
	clear: both;	
}

.form_inline_container {
	width: 870px;
}

.form_inline_foto select {
	width: 280px;
}

.form_inline_foto p {
	margin: 0px;
}

.form_inline_foto.igrejas {
	height: 370px;
}

.form_inline {
	margin: 0px;
	margin-right: -10px;	
}

.form_inline > li {
	vertical-align: top;
	display: inline-block;
	margin-right: 10px;
}

.form_inline_legend {
	display: block;
	clear: both;
	overflow: hidden;
}

.form_inline_foto {
	width: 300px;
	height: 235px;
	float: left;
	background: #F2F2F2;
	padding: 10px;
	border-radius: 10px;
	text-align: center;
	margin-right: 20px;
	margin-bottom: 10px;
	overflow: hidden;
}

.form_inline_foto select {
	width: 280px;
}

.form_inline_foto p {
	margin: 0px;
}

.curric_f_lista {
	margin-top: 10px;
}

.curric_f_lista li {
	width: 162px;
	display: inline-block;
	vertical-align: top;
}

.curric_newimg {
	text-align: center;
	border: 1px dashed #0088CC;	
}

.curric_newimg:hover,
.curric_newimg:focus {
	border: 1px dashed #005580;
}

.curric_newimg a {
	display: block;
	height: 115px;
	padding-top: 40px;
	color: #333333;
	transition: all 0.4s ease;
}

.curric_newimg a:hover,
.curric_newimg a:focus {
	text-decoration: none;
	color: #0088cc;
	transition: all 0.4s ease;
}

.curric_newimg i {
	font-size: 30px;
}

.curric_newimg p {
	margin: 0px;
	padding: 0px;
	font-weight: bold;
}

.curric_newimg span {
	font-size: 12px;
}

.curric_newimg_loading {
	text-align: center;
	border: 1px dashed #005580;
	height: 105px;
	padding-top: 50px;
	background: #EEEEEE;
}

.curric_img {
	border: 1px solid #CCCCCC;		
}

.curric_img a {
	padding: 0px;
}

.curric_img_dados {
	width: 150px;
	background: #F2F2F2;
	padding: 5px;
	height: 25px;
	margin-top: 1px;	
}

.curric_img_dados p {
	float: left;
	color: #666666;
}

.curric_img_btn {
	text-align: right;
}

.w516 {
	width: 516px;
}

.w140 {
	width: 140px;
}

.w90 {
	width: 90px;
}

.w387 {
	width: 387px;
}

.w167 {
	width: 167px;
}

.w317 {
	width: 317px;
}

.w181 {
	width: 181px;
}

.w150 {
	width: 150px;
}

.w149 {
	width: 149px;
}

.w327 {
	width: 327px;
}

.h4_top {
	margin-top: 0px;
}

.igr_sel_tit {
	margin-top: -5px;
	margin-bottom: 5px;
}

.igr_sel_tit li {
	display: inline-block;
}

.igr_sel_tit li:nth-child(1){
	margin-right: 80px;
}

.igr_chk {
	cursor: pointer;
}

.igr_chk input {
    display: none;
}

.igr_chk span {
    width: 12px;
    height: 12px;
    display: block;    
    float: left;
    margin-right: 8px;
    margin-top: 2px;
}

.igr_chk span.unset {
	background-color: #DDD;
    border: 1px solid #DDD;
}

.igr_chk span.checked {
	background-color: #0060DF;
    border: 1px solid #0060DF;
}

.igr_chk span.unchecked {
	background-color: #FFFFFF;
    border: 1px solid #DDDDDD;
}

.titTabela {
	display: table;
}

.titCel {
	display: table-cell;
}

.titCel .btn {
	border-bottom-right-radius: 5px;
	border-top-right-radius: 5px;
}

.titCel100 {
	width: 100%;
}

.titInput {
	width: 100%;
	box-sizing: border-box;
	min-height: 30px;
}

.ul_igr_tit > li {
	width: 500px;
}

.pesq_modal .modal-body {
	min-height: 400px !important;
}

.pesq_modal_header {
	clear: both;
	overflow: hidden;
}

.pesq_input_container input {
	font-size: 18px;
	font-weight: normal;
	border: 1px solid #CCCCCC;
    display: block;
    padding: 10px;
    width: 100%;
     -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;	
    margin: 0px;
    height: 40px;
    border-radius: 4px;
    border-right: none;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    box-shadow: none;
}

.pesq_input_container input:focus {
	border: 1px solid #CCCCCC;
	border-right: none;
	box-shadow: none;	
}

.pesq_searchtext {
    overflow: hidden;
}

.pesq_input_container a.pesq_submit-button {
	border: 1px solid #CCCCCC;
	border-left: none;
	background: none;
    color: #897F6F;
    display: block;
    float: right;
    font-size: 20px;
    padding: 8px 10px;
    text-align: center;
    width: 45px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    height: 40px;
    border-radius: 4px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    transition: all 0.4s ease;
    padding-top: 8px;
}

.pesq_modal_btn_loading {
	border: 1px solid #CCCCCC;
	border-left: none;
    display: block;
    float: right;
    width: 45px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    height: 40px;
    border-radius: 4px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    transition: all 0.4s ease;
    padding: 5px 5px;
}

.pesq_input_container a.pesq_submit-button:hover,
.pesq_input_container a.pesq_submit-button:focus {
	color: #000000;
	text-decoration: none;
	transition: all 0.4s ease;
}

.pesq_result_table {
	
}

.pesq_result_table h4 {
	margin: 0px;
	padding: 0px;
	line-height: normal;
	font-size: 14px;
}

.pesq_result_table p {
	margin: 0px;
	padding: 0px;
	line-height: normal;
}

.pesq_result_table img {
	float: left;
	margin-right: 10px;
	height: 40px;
	border-radius: 5px;
}

.pesq_result_loading {
	text-align: center;
	margin-top: 40px;
}

.pesq_result {
	margin-top: 10px;
}

.table_hover td:hover{
	cursor: pointer;
}

.table_hover td{
	vertical-align: middle;
}

.regdadosimg_container {
	float: left;
	margin-right: 10px;	
	text-align: center;
}

.regdadosimg_container img {
	margin-bottom: 10px;
}

.regdadostxt_container {
	display: table-cell;
	width: 100%;
}

.r50 {
	width: 50px;
}

.r661 {
	width: 661px;
}

.r90 {
	width: 90px;
}

.r125 {
	width: 125px;
}

.r510 {
	width: 510px;
}

.mem_pesq_form > li {
	width: 100%;	
}

.newGroup .dropdown-menu li > a {
  	color: #1F1F1F;
  	font-size: 16px;
  	padding: 5px 10px;
}

.newGroup .dropdown-menu li > a:hover,
.newGroup .dropdown-menu li > a:focus {
    background-color: #E2EBEF;
    background-image: none;
    filter:none;
    color: #1F1F1F;
}

.newGroup .dropdown-menu li.disabled > a,
.newGroup .dropdown-menu li.disabled > a:hover,
.newGroup .dropdown-menu li.disabled > a:focus {
	color: #999999;
	background: none;
	cursor: default;
}

.newGroup .dropdown-menu li > a > i {
	width: 15px;
	margin-right: 10px;
}

.newGroup .dropdown-menu > .active > a {
	background: #CBDBE2 !important;
	text-shadow: none;	
}

.newGroup .dropdown-menu > .active > a:hover,
.newGroup .dropdown-menu > .active > a:focus{
	background-color: #E2EBEF;
    background-image: none;
    filter:none;
    color: #1F1F1F;	
} 

.mem_pesq_alert {
	box-sizing: border-box;
	width: 100%;
	padding-right: 20px !important;
}

.igr_lista .mem_lista_img {
	width: 100px;
	float: left;
	margin-right: 10px;
}

.negrito {
	font-weight: bold;
}

.memdadosimg_container {
	float: left;
	margin-right: 10px;	
	text-align: center;
}

.memdadosimg_container img {
	margin-bottom: 10px;
}

.memdadostxt_container {
	display: table-cell;
	width: 100%;
}

.form_inline_foto.membros {
	height: 240px;
}

.mPront {
	width: 50px;
}

.mNome {
	width: 438px;
}

.mIgreja {
	width: 490px;
}

.mCat {
	width: 258px;
}

.mNomea {
	width: 258px;
}

.mCpf {
	width: 112px;
}

.mCep {
	width: 77px;
}

.mEnde {
	width: 387px;
}

.mNume {
	width: 90px;
}

.mCompl {
	width: 180px;
}

.mBair {
	width: 270px;
}

.mCida {
	width: 270px;
}

.mEsta {
	width: 140px;
}

.mCarta {
	width: 121px;
}

.mCel {
	width: 121px;
}

.mMail410 {
	width: 410px;
}

.mMail380 {
	width: 380px;
}

.mCivil {
	width: 120px;
}

.mConj {
	width: 474px;
}

.mConjcpf {
	width: 100px;
}

.curric_tit {
	font-size: 20px;
	font-weight: bold;
	display: block;
	padding-bottom: 5px;
	margin-bottom: 15px;
	margin-top: 20px;
}

.cigigr {
	min-width: 250px !important;
}

.tabFormDados {
	width: 100%;
	display: table;
}

.tabFormDados > li {	
	display: table-row;
	width: 100%;	
}

.tabFormDados > li:nth-child(odd) {
  
}

.tabFormDados > li:hover {
	background: #F5F5F5;
}

.tabFormDados > li > .col1,
.tabFormDados > li > .col2,
.tabFormDados > li > .col3 {
	border-top: 1px solid #DDDDDD;
	display: table-cell;
	padding: 5px;
	vertical-align: top;
}

.tabFormDados .titulo {
	font-weight: bold;
}

.tabFormDados .titulo i {
	margin-right: 5px;
}

.formFull {
	width: 100%;
	box-sizing: border-box;
	min-height: 30px; 
}

.CurricAddColor {
	background: #F5F5F5; 
}

.formacaoUL {
	padding-bottom: 5px;
}

.btnCurFormaExc {
	cursor: pointer;
}

/*pesquisa graduaçãp**********************************************/

#fQfocursoResult {    
  position: absolute;
  z-index: 1000;
  float: left;
  min-width: 460px;
  padding: 5px 0;
  margin: 0;
  margin-top: -10px;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 6px;
     -moz-border-radius: 6px;
          border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
     -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
     -moz-background-clip: padding;
          background-clip: padding-box;
    
}

#fQfocursoResult > li {
    display: block;
  	padding: 0px 3px;
  	clear: both;
  	font-weight: normal;
  	line-height: 20px;
  	color: #1F1F1F;
  	white-space: nowrap;
}

#fQfocursoResult > li:hover {
  	background-color: #E2EBEF;
    background-image: none;
    filter:none;
    color: #1F1F1F;	
}

#fQfocursoResult li:hover{
    cursor: pointer;
}

/*pesquisa formação**********************************************/

.aviso_icon {
	font-size: 40px;
}

.alert {
	padding: 10px;
}

.aviso_txt {
	font-size: 18px;
}

.close_mensa {
  float: right;
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

.close_mensa:hover,
.close_mensa:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  filter: alpha(opacity=40);
}

.newTabelaInfo {
	font-weight: normal;
	font-size: 12px;
}

.newTabelaInfoMobile {
	display: none;
}

.voltarContainer {
	text-align: right;
	margin-bottom: 10px;
}

.igrest_ano_lista {
	margin-right: -5px;
}

.igrest_ano_lista li {
	vertical-align: top;
	display: inline-block;
	margin-right: 5px;
}

.igrest_ano_lista a {
	background: #FFFFFF;
	padding: 5px;
	border-radius: 5px;
	color: #333333;
	text-shadow: none;
	transition: all 0.4s ease;
}

.igrest_ano_lista a:hover,
.igrest_ano_lista a:focus {
	text-decoration: none;
	background: #333333;
	color: #FFFFFF;
	text-shadow: none;
	transition: all 0.4s ease;
}

.igrest_ano_lista a.active {
	background: #333333;
	color: #FFFFFF;
}

.estInput {
	width: 60px;
}

.ico_warning {
	color: #EDAC36;
	margin-right: 5px;
}

.ico_ok {
	color: #509C78;
	margin-right: 5px;
}

.newTabela > .error {
	background: #f2dede !important;
}

.imo_btn_detalhes {
	margin-right: 10px;
}

.imo_legend {
	font-weight: bold;
	border-bottom: 1px solid #CCCCCC;
	padding-bottom: 5px;
}

.curric_forma_tr_edit {
	background: #F2F2F2;
}

.imo1Cep {
	width: 130px;
}

.imo1Cep1 {
	width: 90px;
}

.imo1Ende {
	width: 240px;
}

.imo1Nume {
	width: 60px;
}

.imo1Compl {
	width: 80px;
}

.imp1Bair {
	width: 200px;
}

.imo1Cida {
	width: 200px;
}

.imo1Esta {
	width: 150px;
}

.imo1Tipo {
	width: 215px;
}

.imoMedidas {
	width: 95px;
}

.imo_util_ul {
	width: 600px;
}

.imo_util_ul li {
	display: inline-block !important;
	width: 200px;
}

.imo_form_btncontainer {
	margin-top: 10px;
	margin-bottom: 10px;
}

.imo3Nome {
	width: 150px;
}

.imo3Situ {
	width: 150px;
}

.imo3Data {
	width: 105px;
}

.imo3Registro {
	width: 215px;
}

.imo4Tab {
	margin-bottom: 20px;
}

#imo_modal_pdf {
	top: 5%;
	left: 5%;
	margin: 0px;
	width: 90%;
  	height: 90%;
  	padding: 0px;  	
  	overflow:auto;
}

.imo_container { 
	position: relative;
	width: 96%;
	height: 86%;
	left: 2%;	
	top: 10px;
}

.imo_box {
    width: 100%;
    height: 100%;
}
.imo_box iframe {
   width: 100%;
   height: 100%;   
}

.newTabelaRight {
	text-align: right;
}

.taxTable th {
	background: #EEEEEE !important;
	text-align: center;
}

.taxTable .center {
	text-align: center;
}

.taxTable .right {
	text-align: right;
}

.taxTable .left,
.txtLeft {
	text-align: left !important;
}

.table_tax {
	width: 350px;
	margin: 0 auto;
	margin-top: 20px;
}

.arrFormLista {
	text-align: center;	
	margin-bottom: 0px;
}

.arrFormLista > li {
	vertical-align: top;
	display: inline-block;
	width: 420px;
	text-align: left;
	background: #F2F2F2;
	padding: 10px;
	border-radius: 10px;
	height: 180px;
	margin-bottom: 10px;
}

.arrFormLista h4 {
	font-weight: normal;
	text-align: center;
	margin: 0px;
	background: #FFFFFF;
	border-radius: 10px;
	padding: 5px;
	margin-bottom: 20px;
	
}

.arrFormListaTotal {
	height: 100% !important;
}

.arrFormTaxDevido {
	color: #FFFFFF !important;
	background: #468847 !important;
	border: none !important;
}

.arrInput {
	width: 125px;
}

.arrAjudaMobile {
	display: none;
}

.arrAcoListaParcelas > li {
	height: 100%;
}

.usePrincLista {
	text-align: center;
	margin-top: 60px;
	margin-bottom: 60px;
}

.usePrincLista > li {
	vertical-align: top;
	display: inline-block;
	margin: 0px 30px;
	width: 150px;
}

.usePrincLista a > i {	
	background: #333333;
	font-size: 40px;
	color: #FFFFFF;
	width: 90px;
	height: 90px;
	text-align: center;
	line-height: 90px;
	display: inline-block;
	border-radius: 50%;
	transition: all 0.4s ease;
	margin-bottom: 8px;
}

.usePrincLista a:hover > i,
.usePrincLista a:focus > i {
	text-decoration: none;
	background: #F9C001;
	transition: all 0.4s ease;
}

.usePrincLista a > span {
	display: block;
	font-size: 24px;
	line-height: 100%;
	margin-bottom: 8px;
}

.minhaFotoAltForm {
	width: 300px;
	background: #DDDDDD;
	padding: 10px;
	border-radius: 10px;
	text-align: center;
	margin-bottom: 10px;
	overflow: hidden;
}

.minhaFotoAltForm select {
	width: 280px;
}

.pefilInput {
	width: 150px;
	box-sizing: border-box;
	min-height: 30px; 
}

.embreve {
	text-align: center;
}

.embreve i {
	font-size: 100px;
}

.embreve h4 {
	font-size: 28px;
	margin-bottom: 20px;
}

.dash_icones {
	text-align: center;
}

.dash_icones li {
	vertical-align: top;
	display: inline-block;
	width: 200px;
	margin: 10px 10px;
	text-align: center;
}

.dash_icones i {
	width: 50px;
	height: 50px;
	background: #333333;
	color: #FFFFFF;
	text-align: center;
	font-size: 20px;
	line-height: 50px;
	display: inline-block;
	border-radius: 50%;
	transition: all 0.4s ease;
	margin-bottom: 8px;
}

.dash_icones a:hover > i,
.dash_icones a:focus > i {
	text-decoration: none;
	background: #F9C001;
	transition: all 0.4s ease;
}

.dash_icones a > span {
	display: block;
	font-size: 18px;
	line-height: 100%;
	margin-bottom: 8px;
}

.perCida {
	width: 800px;
}

.perFone {
	width: 130px;
}

.perMail {
	width: 640px;
}

#contato_ok_container {
	text-align: center;
}

#contato_ok_container i {
	font-size: 150px;
	color: #FFD613;
}

#contato_ok_container h4 {
	font-size: 40px;
	line-height: normal;
}

#contato_ok_container p {
	color: #647679;
	font-size: 16px;
}

#conteudo_dash {
	margin-top: 70px;
	box-sizing: border-box;
	padding: 20px;
}

.dash_pend_container {
	display: table;
	width: 100%;
	margin-top: 20px;
}

.dash_pend {
	display: table;
	width: 100%;
	padding: 0px;	
	margin: 0px;
}

.dash_pend > li {
	vertical-align: top;
	display: table-cell;	
}

.dash_pend > li.padding_right {
	padding-right: 20px;
}

.dash_border {
	background: #FFFFFF;
	border-radius: 5px;
	padding: 15px;
	box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
	clear: both;
	overflow: hidden;
}

.dash_pend_left p {
	margin: 0px;
	padding: 0px;
}

.dash_pend_left p {
	margin-bottom: 10px;
	color: #666666;
	font-size: 14px;
}

.dash_pend_left a {
	font-size: 26px;
	font-weight: normal;
	color: #333333;
}

.dash_pend_left a:hover,
.dash_pend_left a:focus {
	color: #E25249;
}

.dash_pend_right i {
	color: #E25249;
	font-size: 40px;
}

.dash_grafico_container {
	margin-top: 20px;
}

.dash_nopadding {
	padding: 0px;
}

.dash_inner {
	padding: 15px;
}

.dash_titulo {
	padding: 0px;
	margin: 0px;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}

.dash_hr {
	padding: 0px;
	margin: 0px;
}

.dash_ul_details {
	display: table;
	width: 100%;	
	padding: 0px;
	margin: 0px;
}

.dash_ul_details li {
	text-align: center;
	display: table-cell;	
}

.dash_ul_details h4 {
	padding: 0px;
	margin: 0px;
	font-size: 26px;
	margin-bottom: 10px;
}

.dash_ul_details p {
	padding: 0px;
	margin: 0px;
	color: #666666;
}

.dash_avisos {
	margin-top: 20px;
}

.dash_ul_news {
	margin-top: 20px;
	margin-bottom: -10px;
}

.dash_ul_news li {
	vertical-align: top;
	margin-bottom: 20px;
}

.dash_ul_news i {
	background: #252B3B;
	color: #FFFFFF;
	text-align: center;
	width: 35px;
	height: 25px;
	padding-top: 10px;
	border-radius: 50px;
	float: left;
	margin-right: 10px;	
}

.dash_ul_news a {
	font-weight: bold;
}

.dash_ul_news p {
	color: #666666;
}

.dash_ul_news > li > .right {
	display: table-cell;
}

.dash_atalhos {
	margin-top: 20px;
}

.dash_ul_atalhos {
	padding: 0px;
	margin: 0px;
	margin-top: 20px;
	text-align: center;
	margin-right: -20px;
	margin-bottom: -10px;	
}

.dash_ul_atalhos li {
	vertical-align: top;
	display: inline-block;
	width: 300px;	
	text-align: left;
	margin-right: 20px;
	margin-bottom: 10px;
}

.dash_ul_atalhos li > i {
	float: left;
	font-size: 36px;
	margin-right: 10px;
	color: #252B3B;
	width: 50px;
	text-align: center;
}

.dash_ul_atalhos > li > .right {
	display: table-cell;
}

.dash_ul_atalhos a {
	font-weight: bold;
}

.dash_ul_atalhos p {
	color: #666666;
}

.dash_avi_titulo {
	padding: 0px;
	margin: 0px;
	font-size: 26px;
	margin-bottom: 40px;
}

.dash_loading {
	text-align: center;
	padding: 20px;
}

.dash_loading img {
	margin-bottom: 20px;
}

.dash_loading p {
	margin: 0px;
	padding: 0px;
	font-size: 16px;	
}

.tax_graf_inner {
	border-radius: 5px;
	padding: 15px;
	box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
	clear: both;
	overflow: hidden; 
	margin-bottom: 20px;
}

.est_graf_container {
	margin-bottom: 20px;
}

#pend_loading_container p {
	margin: 0px;
	padding: 0px;
	font-size: 18px;
	margin-top: 10px;
}

#pend_loading:hover {
	cursor: default !important;
}

.dash_border {
	display: table;
	box-sizing: border-box;
	width: 100%;
	vertical-align: top;
}

.dash_pend_left {
	display: table-cell;
	width: 100%;
	vertical-align: top;
	box-sizing: border-box;
	padding-right: 20px; 
}

.dash_pend_right {
	display: table-cell;
	vertical-align: top;
}

.dash_pend_loading {
	padding: 0px;
	margin: 0px;
	margin-bottom: 5px;	
}

.dash_pend_dados p {
	font-size: 26px;
	font-weight: normal;
	color: #E25249;
	margin: 0px;
	padding: 0px;
	margin-bottom: 5px;  
}

.menu_pend_qtde {
	float: right; 
}

.newTabela > .info {
	background: #d9edf7 !important;
}

.vei1Placa {
	width: 100px;
}

.vei1Modelo {
	width: 340px;
}

.arrFormListaEmpHon {
	height: 130px !important;
}

.conv_inscrito {
	color: #509C78;
}

.conv_justificado {
	color: #3a87ad;
}

.conv_pendente {
	color: #EDAC36;
}

.conv_nada {
	color: #AAAAAA;
}

.conv_inscrito i,
.conv_justificado i,
.conv_pendente i,
.conv_nada i {
	margin-right: 5px;
}

.conv_left {
	display: inline-block;
}

.conv_right {
	float: right;
}

.conv_table_container {
	margin-top: 20px;
	overflow-x:auto;
}

.semquebra {
	white-space: nowrap;
}
