@charset "utf-8";

/*FORMATAÇÃO DO CONTEUDO - SECTION */

div#interface{
	width: 1080px;
	margin: -20px auto 10px auto;
	box-shadow: 0px 0px 10px rgba(0,0,0,.6);
	padding: 10px 10px 10px 10px;	
	}
	
	
section#conteudo{
	display: block;
	width: 700px;
	float: right;
	padding-top: 60px;
	background-color: #FFC;
	text-align: left;
	
	}


section#conteudo h2, h3, h4{
	text-align: center;
	
	}
	
/*FORMATAÇÃO DO ASIDE - LATERAL ESQUERDO */	

aside#lateral_esq
{
	display: block;
	width: 335px;
	float: left;
	padding-top: 100;
	margin-left: 5px;
	background-color: #CFF;
	
	
	}
	


	
/*FORMATAÇÃO DO RODAPÉ*/ 

footer#rodape {
	clear:both;
	font-family: "Times New Roman", Times, serif;
	font-size: normal;
	font-weight: bold;
	background-color: #CFF;
	text-align: center;
	border-top: 2px solid #606060;
	padding:0px;
	margin: 0px;
}
.tel_sc {
	color: #F00;
}
footer#rodape p {
	text-align: center;
}
 /* FORMATAÇÃO DE IMAGENS - NOTICIAS*/
 figure.foto_legenda{
		
		position: relative;
		border: 8px solid white;
		box-shadow: 1px 3px 4px black; 
		
		 }
		 
	figure.foto_legenda img {
		width: 100%;
		height: 100%;
		}
		
	figure.foto_legenda figcaption{
		 opacity: 0;
		position:absolute;
		top: 0px;
		
		background-color:rgba(0,0,0,.4);
		color: white;
		
		width: 100%;
		height: 100%;
		padding:10px;
		box-sizing: border-box;
		transition: opacity 1s;
		
		
		}
	
	figure.foto_legenda:hover figcaption{
		opacity:1;
		}
	
