@charset "UTF-8";
	  body{
	       background-color: #dddddd;
		   color: rgba(0,0,0,1)
	  }
div#interface{
	width: 1400px;
	background-color: lightyellow;
	margin: -20px auto 20px auto;
	box-shadow: 0 0  20px black;
	padding: 20px 20px 20px 20px;
}
P {
	text-align: justify;
	text-indent: 50px;
}
header#cabecalho img#icone{
	position: absolute;
	top: 105px;
	left: 1250px;
}
header#cabecalho{
border-bottom: 2px black solid;
	height: 200px;
	background: url("../_imagens/")no-repeat 0 150px;
}
header#cabecalho h1{
	font-family: Arial, sans-serif;
	font-size: 50px;
	color: #606060;
	text-shadow: 1px 1px 1px rgba(0,0,0,.6);
}
/*header#cabecalho {
	background: url("../_imagens/glass-oculos-preto-peq.png")no-repeat;
	left: 150px;
		/*formataçao de imagens*/

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: 0;
	background-color: rgba(0,0,0,.4);
	color: white;
	width: 100%;
	height: 100%;
	padding: 10px;
	box-sizing: border-box;
	transition: opacity 1s;
}
/*hover cria trasisao quando mouse passa */
figure.foto-legenda:hover figcaption{
opacity:1;
}
nav#menu{
	display: block;
}
nav#menu ol{
	list-style: none;
	text-transform: uppercase;
	position: absolute;
	top: 10px;
	left: 700px;
}
/*text transform uppercasedeixa as tetras em maiusculo TOP DEIXA NO TOP DA PAGINA LEFT JOGA MENU A DIREITA
*/

nav#menu li{
	display: inline-block;
	background-color: #dddddd;
	padding: 10px;
	margin: 5px;
	transition: background-color 1s;
}
nav#menu li:hover{
	background-color: #606060;
}
/*padding espaço interno menu margin espaço esterno  display ih line bloc torna tudo um bloco/*
 */
nav#menu h1{
	display: none;
}
nav#menu a{
	color: black;
	text-decoration: none;
}
nav#menu a:hover  {
	color: #ffffff;
	text-decoration: underline;
}
a :hover{
	color: red;
	text-decoration: brown;
}
