@charset 'UTF-8';
@import url("font-awesome.min.css");
@import url("customstyles.css");
*{
	font-family: var(--fonte);
}
body {
	margin: 0px;
	background: var(--background);
}
body.is-loading * {
	-moz-transition: none !important;
	-webkit-transition: none !important;
	-o-transition: none !important;
	-ms-transition: none !important;
	transition: none !important;
	-moz-animation: none !important;
	-webkit-animation: none !important;
	-o-animation: none !important;
	-ms-animation: none !important;
	animation: none !important;
}
body,input,textarea,select {
	font-family: var(--fonte);
	font-size: 13pt;
	font-weight: 400;
	line-height: 1.75em;
	color: var(--texto_p);
}
h1,h2,h3,h4,h5,h6 {
	font-weight: 300;
	color: var(--titulos);
}
h1 a,h2 a,h3 a,h4 a,h5 a,h6 a {
	color: inherit;
	text-decoration: underline;
}
h1 strong,h2 strong,h3 strong,h4 strong,h5 strong,h6 strong {
	color: #333;
}
h2 {
	color: var(--titulos);
	padding: 5px;
	font-size: 2.4em;
	letter-spacing: -1px;
	text-align: center;
	display: block;
	float: none;
	width: 27%;
	margin: 0px auto;
	margin-top: 0px;
	font-weight: 700;
}
h2.alt {
	color: var(--titulo_banner);
}
h2.alt strong {
	color: #666;
}
h3 {
	font-size: 1.5em;
}


header {
	margin: 0 0 2em 0;
}
header>p {
	margin: 1em 0 0 0;
}
.moveright{
	position: fixed;
	right: 0px;
	bottom:0px;
	padding:10px;
	z-index: 999999999;
	background-color:#8CC63F; 
	color:#fff;
}
.moveright:hover{
	color:#fff;
	background-color:#70A031; 
}
strong,b {
	font-weight: 300;
	color: var(--captcha_numero);
}
em,i {
	font-style: italic;
}
a {
	text-decoration: underline;
	color: var(--cor_menu_default);
	outline: 0;
}
a:hover {
	color: var(--menu_clicado);
	border-bottom-color: rgba(255, 255, 255, 0);
}
sub {
	position: relative;
	top: 0.5em;
	font-size: 0.8em;
}
sup {
	position: relative;
	top: -0.5em;
	font-size: 0.8em;
}
hr {
	border: 0;
}
blockquote {
	border-left: solid 0.5em #ddd;
	padding: 1em 0 1em 2em;
	font-style: italic;
}
p,ul,ol,dl,table {
	margin-bottom: 2em;
}
br.clear {
	clear: both;
}
/* Sections/Article */
section,article {
	margin-bottom: 3em;
}
section>:last-child,article>:last-child,section>.container>:last-child,article>.container>:last-child
	{
	margin-bottom: 0;
}
section:last-child,article:last-child {
	margin-bottom: 0;
}
.row>section,.row>article {
	margin-bottom: 0;
}
/* Image */
.image {
	display: inline-block;
	border: 0;
}
.image img {
	display: block;
	width: 100%;
}
.image.avatar48 {
	width: 48px;
	height: 48px;
	background: #f00;
}
.image.avatar48 img {
	width: 48px;
	height: 48px;
}
.image.fit {
	display: block;
	width: 100%;
}
.image.featured {
	display: block;
	width: 100%;
	margin: 0 0 2em 0;
}
.image.left {
	float: left;
	margin: 0 2em 2em 0;
}
.image.centered {
	display: block;
	margin: 0 0 2em 0;
}
.image.centered img {
	margin: 0 auto;
	width: auto;
}
.blinkme {
  animation: blinker 1.5s;
}
@keyframes blinker {  
  0% { opacity: 0; }
  50% { opacity: 5; }
  100% { opacity: 10; }
}
/* List */
ul {
}
ul.default {
	list-style: disc;
	padding-left: 1em;
}
ul.default li {
	padding-left: 0.5em;
}
ul.icons {
	cursor: default;
}
ul.icons li {
	display: inline-block;
}
ul.icons a {
	display: inline-block;
	width: 2em;
	height: 2em;
	line-height: 2em;
	text-align: center;
	border: 0;
}
ol {
}
ol.default {
	list-style: decimal;
	padding-left: 1.25em;
}
ol.default li {
	padding-left: 0.25em;
}
/* Form */
form {
}
form label {
	display: block;
	text-align: left;
	margin-bottom: 0.5em;
}
form input[type="text"],form input[type="email"],form input[type="password"],form select,form textarea{
	position: relative;
	-webkit-appearance: none;
	display: block;
	border: 0;
	outline: 0;
	background: #fff;
	width: 100%;
	border-radius: 0.35em;
	padding: 0.40em 1em 0.40em 1em;
	box-shadow: inset 0 0.1em 0.1em 0 rgba(0, 0, 0, 0.05);
	border: solid 1px rgba(0, 0, 0, 0.15);
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}
form input[type="text"],form input[type="email"],form input[type="password"],form select{
	line-height: 1.25em;
}
form input[type="text"]:focus,form input[type="email"]:focus,form input[type="password"]:focus,form select:focus,form textarea:focus{
	box-shadow: 0 0 2px 1px #8ebebc;
	background: #fff;
}
form textarea {
	min-height: 14em;
}
form .formerize-placeholder {
	color: #555 !important;
}
form ::-webkit-input-placeholder {
	color: #555 !important;
}
form :-moz-placeholder {
	color: #555 !important;
}
form ::-moz-placeholder {
	color: #555 !important;
}
form :-ms-input-placeholder {
	color: #555 !important;
}
form ::-moz-focus-inner {
	border: 0;
}
/* Table */
table {
	width: 100%;
}
table.default {
	width: 100%;
	text-align: left;
}
table.default tbody tr:nth-child(2n+2) {
	background: #f4f4f4;
}
table.default td {
	padding: 0.5em 1em 0.5em 1em;
}
table.default th {
	text-align: left;
	padding: 0.5em 1em 0.5em 1em;
	color: #fff;
	background: #7383B5 url('../images/overlay.png');
}
table.default thead {
	background: #444;
	color: #fff;
}
table.default tfoot {
	background: #eee;
}
table.default tbody {
}
/* Button */
input[type="button"],input[type="submit"],input[type="reset"],.button {
	position: relative;
	display: inline-block;
	border-radius: 0.35em;
	color: #fff !important;
	text-decoration: none;
	padding: 0.75em 2.5em 0.75em 2.5em;
	/*background-color: #63321e;*/
	background-color: #828587;
	border: 0;
	cursor: pointer;
	background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0),
		rgba(0, 0, 0, 0.15) ), url('../images/overlay.png');
	background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0),
		rgba(0, 0, 0, 0.15) ), url('../images/overlay.png');
	background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0),
		rgba(0, 0, 0, 0.15) ), url('../images/overlay.png');
	background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0),
		rgba(0, 0, 0, 0.15) ), url('../images/overlay.png');
	background-image: linear-gradient(top, rgba(0, 0, 0, 0),
		rgba(0, 0, 0, 0.15) ), url('../images/overlay.png');
	-moz-transition: background-color 0.35s ease-in-out;
	-webkit-transition: background-color 0.35s ease-in-out;
	-o-transition: background-color 0.35s ease-in-out;
	-ms-transition: background-color 0.35s ease-in-out;
	transition: background-color 0.35s ease-in-out;
}
input[type="button"]:hover,input[type="submit"]:hover,input[type="reset"]:hover,.button:hover{
	background-color:#38393B;
}
input[type="button"]:active,input[type="submit"]:active,input[type="reset"]:active,.button:active{
	background-color: #759EBD;
}
/* Item */
.item {
	box-shadow: 0 0.05em 0.15em 0 rgba(0, 0, 0, 0.05);
	margin-bottom: 40px;
}
.item header {
	background: #fff;
	margin: 0;
	padding: 1em 0 1em 0;
	font-size: 0.8em;
}
.item header h3 {
	font-size: 1em;
}
/*********************************************************************************/
/* Icons                                                                         */
/*********************************************************************************/
.icon {
	text-decoration: none;
}
.icon:before {
	display: inline-block;
	font-family: FontAwesome;
	font-size: 1.25em;
	text-decoration: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.icon>.label {
	display: none;
}
/*********************************************************************************/
/* Header                                                                        */
/*********************************************************************************/
#logo {
	position: relative;
	margin: 1.75em;
	cursor: default;
	text-align: center;
}
#logo h1 {
	position: relative;
	color: #fff;
	font-weight: 600;
	font-size: 1em;
	line-height: 1em;
}
#logo p {
	position: relative;
	display: block;
	font-size: 0.6em;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.25em;
	margin: 0.5em 0 0 0;
}
#logo .image {
	position: absolute;
	left: 0;
	top: 0;
}
#logo img {
	width: 150px;
}
#nav {
	width: 100%;
}
#nav>ul {
	display: block;
	margin-left: -35px;
	font-size: 1.3em;
	padding-top: 50px;
}
.msgcontato {
position: fixed;
z-index: 999999999;
top: 50%;
left: 0px;
color: #333;
}

.topinterna {
	margin-top: 170px;
}
/*********************************************************************************/
/* Footer                                                                        */
/*********************************************************************************/
.fundooverlay {
	width: 100%;
	display: table;
	background-color: var(--faixa-cor);
	background-position: center -450px;
}
#footer {
	text-align: center;
	background-color: var(--cor-footer);
	border-top: 5px Solid var(--border_top_footer);
	padding: 30px;
	box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.05), inset 0 0.1em 0.1em 0
		rgba(0, 0, 0, 0.025);
	font-size: 0.8em;
	display: table;
	width: 100%;
	float: left;
	position: relative;
	background-position: center -450px;
}
#footer .copyright {
	cursor: default;
	margin: 0;
}
#footer .copyright li {
	display: inline-block;
	line-height: 1em;
	padding: 0 0 0 0.5em;
	color: white;
}
#footer .copyright li:first-child {
	border-left: 0;
	padding-left: 0;
	margin-left: 0;
}
#footer .copyright img {
}
#footer .copyright a {
	border: none;
}
/*********************************************************************************/
/* Main                                                                          */
/*********************************************************************************/
#main {
	margin-left: 375px;
}
#main>section {
	margin: 0;
	overflow: hidden;
	padding: 1em 0;
	text-align: center;
	float: left;
	width: 100%;
	background-color: #fff;
}
#main>section.dark {
	color: #fff;
	color: rgba(255, 255, 255, 0.75);
}
#main>section.dark h2,#main>section.dark h3,#main>section.dark h4,#main>section.dark h5,#main>section.dark h6{
	color: inherit;
}
#main>section.dark strong,#main>section.dark a {
	color: #fff;
	border-color: inherit;
}
#main>section.dark a:hover {
	border-bottom-color: rgba(255, 255, 255, 0);
}
#main>section.cover {
	background-size: cover;
	background-position: center center;
	max-height: 390px;
}
#main>section.cover>.overlay {
	display: table;
	background: #C4302A;
	position: relative;
}
#main>section.one {
	background-color: black;
}
#main>section.two {
	background-color: #F7F7F7;
}
#main>section.three {
	background-color: var(--background_color);
}
#main>section.four {
	background-color: var(--background_color_contato);
	color:#fff;
}
ul.sublat {
	background: var(--cor_menu_clicado_mini);
	display: block;
	position: relative;
	z-index: 88888;
}
.sublat a {
	font-size: 0.7em;
}
#logomobile {
	display: none;
}
.logofull {
	margin-top: 40px;
	width: 156px;
}
.igaleria {
	margin: 5px;
}
.icons img {
	width: 32px;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity = 50);
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}
.imgfb {
	display: none;
}
/*** MENU HORIZONTAL ***/
.fixedff {
	position: fixed;
	top: 0;
    padding-top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
}
#main_menu {
	display: table;
	z-index: 999;
	top: 0;
	float: left;
	width: 100%;
	background-color: var(--corbackground_menu);
	border-bottom: 5px Solid var(--border_bottom_menu);
}
.menu {
	float: left;
	margin: 0;
	padding: 0;
	list-style: none;
	margin: none;
}
.menu li {
	position: relative;
}
.menu>li {
	float: left;
	padding: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	border: none;
}
.menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 67px;
	z-index: 99;
	background: var(--corbackground_menu);
}
.menu li:hover>ul {
	display: block;
	list-style: none;
}
.menu a {
	padding: 5px;
	text-decoration: none;
	zoom: 1; /* IE7 */
	text-align: center;
	width: 100%;
	font-size: 0.9em;
	color: #fff;
	border: none;
}
.menu ul ul {
	top: 0;
	left: 100%;
}
.menu a:hover {
	color: var(--menu_clicado);
	border: none;
	cursor: hand;
	cursor: pointer;
}
.menu  li li a {
	position: relative;
	text-align: left;
	float: left;
}
.menu li {
	white-space: nowrap;
	*white-space: none;
	-webkit-transition: background .2s;
	transition: background .2s;
	text-align: center;
	border: none;
}
.menu ul ul li {
	background: none;
}
.menu li:hover {
	-webkit-transition: none;
	transition: none;
}
.resp-tabs-list {
}
.resp-tabs-list aba {
/* 	background-color: var(--cor_aba); */
	color: var(--cor_texto_aba);
	padding: 10px;
	display: table;
	cursor: pointer;
	color: black;
	text-align: left;
}
.resp-tabs-list aba.abaactive {
	color: var(--cor_texto_aba_clicada);
}
#main,.main,#footer {
	left: 0;
	margin-left: 0;
}
.logobarra {
	height: 60px;
	margin-top: 5px;
}
.imggaleria {
	margin: 10px;
	margin-bottom: auto;
	float: left;
}
.epaceblocos {
	margin-top: 30px;
	margin-bottom: 30px;
}
#header {
	display: none;
}
#btnmenu {
	position: absolute;
	top: 20px;
	right: 20px;
}
#menumobile {
	display: none;
	cursor: hand;
	cursor: pointer;
}
.linkabas {
	float: left;
	margin-bottom: 20px;
	font-size: 1.8em !important;
	border-bottom: 1px dotted #cecece;
}
.setabaixo {
	width: 32px;
	margin-left: 15px;
}
.setacima{
	width: 32px;
}
@media screen and (max-width: 1024px) {
	.topinterna {
	margin-top: 20px;
	}

	h2.alt {
		font-size: 18px;
	}
	.backgroundMenuMobile{
		background-color: transparent !important;
	}
	#menumobile {
		display: block;
		position: fixed;
		z-index: 20;
		top: 10px;
		left: 10px;
		filter: brightness(0%);
		opacity: 0.9;
	}
	#header {
		position: fixed;
		z-index: 999999;
		float: left;
		width: 100%;
		height: 100%;
		display: block;
		background-color: var(--corbackground_menu_mobile);
	}
	.topoinformation{
		display: none;
	}
	.moveright{
		position:fixed;
		bottom:0px;
		padding:10px;
		color:#707072;
		z-index: 999999999;
		color:#fff;
		background-color:#8CC63F; 
	}
	.moveright:hover{
		color:#fff;
		background-color:#70A031; 
	}
	#header li a {
		color: var(--corfonte_menu_mobile);
	}
	#header li a:hover {
		color: var(--corfonte_menu_mobile_hover);
	}
	#main_menu { 
		display: none;
	}
	.google_map {
		width: 100%;
		overflow: hidden;
		display: block;
		position: relative;
	}
	#logomobile {
		display: table;
		position: relative;
		float:none;
		margin: 0px auto;
		text-align: center;
		width: 200px;
		padding: 20px 0px;
	}
	#logo {
		display: none;
	}
	.sublat {
		position: relative;
		width: 100%;
		padding: 0px;
	}
	.unslider{
		display: none;
	}
	#main > section:first-child{
		box-shadow:none;
	}
	header h2{
		width: 100%;
	}
	h2{
		width: 100%;
	}
	.subitem {
		display: block;
		margin-left: 10px;
	}
	#nav ul li {
		width: 100%;
		padding: 0px;
		padding-top: 15px;
		padding-bottom: 15px;
	}
	#nav ul li a {
		width: 100%;
		padding: 5px;
	}
}
.menu {
	float: right;
	margin: 0;
	padding: 0;
	list-style: none;
	margin: none;
}
.menu li {
	position: relative;
}
.menu>li {
	float: left;
	padding: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	border: none;
	list-style: none;
}
.menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 150px;
	z-index: 99;
	background: var(--corbackground_menu);
	margin-right: 26px;
	margin-left: -130px;
}
.menu li:hover>ul {
	display: block;
	list-style: none;
}
.menu a {
	padding: 5px;
	text-decoration: none;
	zoom: 1; /* IE7 */
	text-align: center;
	width: 100%;
	margin-right: 25px;
	font-size: 0.8em;
	color: var(--corfonte_menu);
}
.menu ul ul {
	top: 0;
	left: 100%;
}
.menu a:hover {
	color: var(--menu_clicado);
	border: none;
}
.menu  li li a {
	position: relative;
	width: 100%;
	text-align: left;
	display: block;
	list-style: none;
}
.menu li {
	white-space: nowrap;
	*white-space: none;
	-webkit-transition: background .2s;
	transition: background .2s;
	text-align: center;
	border: none;;
}
.menu ul ul li {
	background: none;
}
.menu li:hover {
	-webkit-transition: none;
	transition: none;
}
header h2 {
	position: relative;
	margin-top: 30px;
}
.faixa {
	display: table;
	width: 100%;
	height: 10px;
	background-color: var(--cor_faixa_mini);
}
.menulogo {
	background: #fff;
}
.logotopo {
	width: 63%;
	margin: 10px;
}
.opacidadelogo {
	opacity: 0.4;
	width: 100px;
}
.special-grid img {
	width: 100%;
	max-width: 282px;
	max-height: 186px;
}
.albumdefotos a {
	display: none;
	max-width: 210px;
	margin: 0px auto;
}
.albumgaleria a {
	display: none;
}
.albumdefotos a:first-of-type {
	display: block;
}
.albumgaleria a:first-of-type {
	display: block;
}
.rights {
	display: block;
	padding-bottom: 20px;
}
.badgeservice {
	height: 155px;
	border-radius: 50px;
	font-size: 0.9em;
	text-align: center; 
	margin:10px;
	word-wrap: break-word;       /* Internet Explorer 5.5+ */
	white-space: -webkit-pre-wrap; /* Newer versions of Chrome/Safari*/
	white-space: normal;
	background-color: #352B2A;
}  
.miolocurso {
	padding-top: 20px; 
	color: #fff;
	line-height: 1.2em;  
	font-size: 14px;
}
.fontebranca{
	 color:#fff;
}
.imgcurso {
 	margin-bottom: 15px;
}
.overlay {
	display:none;
}
.btnaula {
	background: #AF3F26;
	color: #fff;
	padding: 15px;
	font-size: 0.8em;
}
.caixafora{
	border: 1px solid #fff;
}
.caixafora span{
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
	color: #AF3F26;
}
.marginfoto{
	margin-top:10px;
	margin-bottom:10px;
}
.topoinformation{
	background: #fff;
}
.logostopo{
	margin: 8px;
}
.verticalline{
	border: 0;
    border-left-width: 0px;
    border-left-style: none;
    border-left-color: currentcolor;
	padding-left: 1.5px;
	border-left: 1px solid #8c8c8c;
}
.fonteorcamento {
	color:#fff;
	font-size: 11px;
	text-decoration: none;
	text-decoration-line: none
}
.mnupisci, .menublocotmeplate {
	cursor:hand;
	cursor:pointer;
}
.danews{
	padding: 0 0 0.6em 0.1em;
	color: #74777b;
	font-weight: 300;
	font-size: 1.3em;
}
.celphone{
	color:#8CC63F !important;	
	font-size: 0.8em !important;
}
.celphone2{
	color:#8CC63F !important;
	font-size: 0.8em !important; 	
}
.solicita{
	/*background-color: #63321e;*/
	background-color: #007643;
	border-radius:16px;
}
.solicita:hover{
	background-color: #fff;
}
.solicita2{
	/*background-color: #783E28;*/
	background-color: #007643;
	border-radius:16px;
}
.solicita2:hover{
	background-color: #fff;
}
.verde{
	background-color: #007643 !important;
	color:#fff !important;
}
.whoweare{
	color:#80BB46;
}
.zoom:hover{
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	cursor: hand;
	cursor: pointer;
	-webkit-transform: scale(1.1) rotate(-5deg);
	-moz-transform: scale(1.1) rotate(-5deg);
	-ms-transform: scale(1.1) rotate(-5deg);
	-o-transform: scale(1.1) rotate(-5deg);
	transform: scale(0.9) rotate(0deg);
}
.corBackgroundMenu{
	background-color: var(--corbackground_menu);
}
.backgroundMenuMobile{
	background-color: var(--corbackground_menu);
}
/* ESTILOS DA FAIXA TOPO */
.logostopo{
	float: left;
	width: 30px;	
}
.telefonetopo h5{
	font-size: 9.8pt;
	margin-top: 16px;
	line-height: 18px;
}
.emailtopo h5{
	margin-top: 15px;
	line-height: 18px;
	font-size: 10pt;
}
.funcionamentoTopo h5{
	font-size: 10pt;
	margin-top: 8px;
	line-height: 18px;
}
.funcionamentoTopo, .emailtopo, .telefonetopo{
	margin-top: 28px;
}
.socialTopo{
	margin-top: 9px;
}
/* FIM ESTILOS FAIXA TOPO */
.tituloPrincipal{
	margin-top: 40px;
}
.abasImagens{
	background-image: url(../%7BIMAGEM%7D.html);
	background-size: 20%;
	background-repeat: no-repeat;
	margin-bottom: 10px; 
	background-position: center center;
}
.socialIcon{
	width: 30px;
	margin-right: -10px;
	margin-left: -10px;
}
/* Bounce In */
.hvr-bounce-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-in:hover, .hvr-bounce-in:focus, .hvr-bounce-in:active {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
.linered{
	border-bottom: 4px solid #38392D;
	margin: 0px auto;
    margin-top: 0px;
	float: none;
	width: 3%;
	margin-top: 16px;
}
.pergunta{
	font-weight: 700;
	font-size: .8em;
	cursor: pointer;
	color: #828587;
	margin-top: 15px;
}
.resposta{
border: 2px solid #cfcfcf;
padding-bottom: 7px;
padding-top: 7px;
margin-top:10px;
font-size:0.9em;
}
.resposta p{
	margin-top: 30px;
}
.sombreado:hover{
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
}
.titicontact{
color:#fff;
}
.topred{
font-size: 2.7em;
font-weight: 700;
color: #BD2432;
padding-bottom: 60px;
text-align: center;
line-height: 50px;
}
.wordred{
	color: #BD2432;
font-size: 1.5em;
font-weight: 900;
}
.magica{
	float: left;
	max-width:166px;
	max-height:166px;
	margin:10px;
}
.datanews{
font-weight: 300;
float: left;
}
.newsall{
font-size: 0.9em;
font-weight: 600;
}
.fixtitnews{
	font-weight: 600;
}
  #header {
    display: none;
  }
.shownews:hover{
 box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.titiconhome{
font-weight: 700;
margin-top: -2px;
}
.iconbottom{
	margin-bottom:35px;
}
.logoclipainel{
	width: 200px;
}