@charset "UTF-8";
@font-face {
	font-family: 'fontelogo1';
	src:url("../_fonts/Paprika-Regular.ttf");
}
@font-face {
	font-family: 'fontelogo2';
	src:url("../_fonts/DancingScript-Bold.ttf");
}

body{
	/*background-color: hsla(165,81%,93%);*/
	font-family: Arial, sans-serif;
	background-color: #dddddd;
	color: rbga(0,0,0,1);
}

div#interface{
	width: 900px;
    background-color: #ffffff;
    margin: -20px auto 0px auto; 
    box-shadow: 0px 0px 10px rgba(0,0,0,.5);
    padding: 10px;
}

p {
	text-align: justify;
	text-indent: 50px;
}

a {
	color: #606060;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}
	
h1{font-family: Arial;
   font-size: 30pt;
   color: blue;
   text-shadow: 2px 2px 2px black;
  }

header#cabecalho img#icone {
	position: absolute;
	left: 950px;
	top: 55px;
}

header#cabecalho {
	border-bottom: 1px #606060 solid;
	height: 150px;
	/*background: url("../_imagens/efvzf_ft_p.png") no-repeat 0px 80px;*/
}  

header#cabecalho h1 {
	font-family: 'fontelogo1', sans-serif;
	font-size: 30pt;
	color: #606060;
	/*text-shadow: 1px 1px 1px rgba(0,0,0,.6);*/
	padding: 0px;
	margin-bottom: 0px;
}

header#cabecalho h2 {
	font-family: 'fontelogo2', sans-serif;
	font-size: 25pt;
	color: #888888;
	/*text-shadow: 1px 1px 1px rgba(0,0,0,.6);*/
	padding: 0px;
	margin-top: 0px;
}

section#corpo h2 {
	font-family: 'fontelogo2', sans-serif;
	font-size: 20pt;
	/*text-shadow: 1px 1px 1px rgba(0,0,0,.6);*/
	padding: 0px;
	margin-top: 0px;
}

/* Formatação de imagens com legendas */  

figure.foto-legenda {
	position: relative;
	border : 8px solid white;
	box-shadow: 1px 1px 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;
}

/* Formatação do Menu  */
nav#menu{
	display: block;
}

nav#menu ul{
	list-style: none;
	text-transform: uppercase;
	position: absolute;
	top: -10px;
	left: 650px;
}

nav#menu li{
	display: inline-block;
	background-color: #dddddd;
	padding: 5px;
	margin: 2px;
	transition: background-color 1s;
	font-family: arial, sans-serif;
	font-size: 10pt;
}

nav#menu li:hover{
	background-color: #606060;
}

nav#menu h1{
	display: none;
}

nav#menu a{
	color: #000000;
	text-decoration: none;
}

nav#menu a:hover{
	color: #ffffff;
}

section#corpo{
	display: block;
	width: 900px;
	float: left;
	padding-right: 15px;
}

table#tabela_destaque{
	border 1px solid #606060;
	border-spacing: 0px;
	margin-left: auto;
	margin-right: auto;
}

table#tabela_destaque tr.tit {
	color: #ffffff;
	background-color: #606060;
	text-align: center;
}

table#tabela_destaque tr.l1 {
	background-color: #cecece;
}

table#tabela_destaque tr.l2 {
	
}

table#tabela_destaque td.titulo {
	font-weight: bolder;
}

table#tabela_destaque caption {
	font-size: 18pt;
	font-weight: bolder;
}

table#tabela_destaque td {
	border: 1px solid #606060;
	padding: 10px;
	text-align: left;
	vertical-align: top;
}

footer#rodape{
	clear: both;
	border-top: 1px solid #606060;
}

footer#rodape p{
	text-align: center;
}