@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Titillium+Web);
@font-face {
	font-family: 'FonteLogo';
	src: url(../_fonts/bubblegum-sans-regular.otf);
}

/* Formatações Gerais */

body {
	font-family: Calibri, sans-serif;
	background-image: url("../_imagens/diamantes.jpg");
}

div#interface {
	width: 900px;
	background-color: white;
	margin: -10px auto 0px auto;
	box-shadow: 0px 0px 10px black;
	padding: 10px 10px 0px 10px;
}
	
p {
	text-align: justify;
	text-indent: 50px;
}

a{
	color: rgb(1,1,80);
	font-weight: bold;
	text-decoration:none;
}

a:hover {
	text-decoration: underline;
}

/* Formatação do cabecalho */

header#cabecalho img#icone {
	position: relative;
	left: 700px;
	bottom: 40px; 
}

header#cabecalho {
	border-bottom: 1px grey solid;
	height: 150px;
	background: url("../_imagens/glass-logo-peq.jpg") no-repeat 20px 90px;
}

header#cabecalho h1 {
	font-family: 'FonteLogo' , sans-serif;
	font-size: 50px;
	color: grey;
	text-shadow: 1px 1px 1px black;
	padding: 0px;
	margin-bottom: 0px;
	margin-top: 15px;
	margin-left: 30px;
}

header#cabecalho h2 {
	font-family: 'Titillium Web', sans-serif;
	color: grey;
	font-size: 15pt;
	margin-top: -5px;
}

/* Formatação do Menu */

nav#menu {
	display: block;
}

nav#menu ul {
	list-style: none;
	text-transform: uppercase;
	position: relative;
	bottom: 255px;
	left: 260px;
}

nav#menu li {
	display: inline-block;
	background-color: #cecece;
	padding: 10px;
	margin: 2px;
	box-shadow: 0px 0px 1px black;
}

nav#menu h1 {
	display: none;
}

/* Formatação de Corpo*/

section#corpo {
	display: block;
	width: 500px;
	float: left;
	border-right: 1px solid grey;
	padding-right: 15px;
}

aside#lateral {
	display: block;
	width: 350px;
	float: right;
	background-color: #dddddd;
	padding: 10px;
	margin-top: 10px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.5)
}

footer#rodape {
	clear: both;
	border-top: 1px solid grey;
	height: 100px
}

footer#rodape p {
	text-align: center;
	position: relative;
	bottom: -10px;
}

footer#rodape img {
	position: relative;
	left: 580px;
	bottom: 35px;
}

/* Formatação de Títulos*/

header#cabecalho-artigo h3 {
	font-size: 12px;
	color: black;
}

header#cabecalho-artigo h1 {
	font-family: 'FonteLogo', sans-serif;
	font-size: 20pt;
	color: black;
	margin-bottom: 0px;
	text-indent: 15px;
}

header#cabecalho-artigo h2 {
	font-size: 13pt;
	color: grey;
	position: relative;
	bottom: 18px;
}

article#noticia-principal h2 {
	font-size: 12pt;
	background-color: #cecece;
	padding: 5px 0px 5px 0px;
	margin: 10px;
	color: grey;
}

aside#lateral h1 {
	font-family: 'FonteLogo', sans-serif;
	font-size: 20pt;
	color:black;
}

aside#lateral h2{
	font-family: Arial, sans-serif;
	font-size: 13pt;
	color: white;
	padding: 5px;
	background-color: #606060;
}

/* Formatação de imagens com legendas */

figure.foto-legenda {
	position: relative;
	border: 8px solid white;
	box-shadow: 1px 1px 4px black;
	width: 90%;
}
figure.foto-legenda img {
	width: 100%;
	height: 100%;
}
figure.foto-legenda figcaption {
	opacity:0;
	position: absolute;
	top: 0px;
	background-color: rgba(0,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 da Tabela */

table#tabelaespec {
	border: 1px solid grey;
	border-spacing: 0px;
	margin-left: auto;
	margin-right: auto;
}

table#tabelaespec td {
	border: 1px solid black;
	padding: 10px;
	text-align: center;
	vertical-align: middle;
	background-color: #cecece;
	text-shadow: 0px 0px 1px;
	text-align: left;
}

table#tabelaespec td.ce {
	background-color: grey;
	font-size: 21px;
	text-align: center;
}

table#tabelaespec caption {
	color: grey;
	font-size: 15px;
	font-weight: bolder;
}

table#tabelaespec caption span {
	display: block;
	float: right;
	color: black;
	font-size: 8pt;
	margin-top: 10px;
}

/* Formatações Avulsas: */

.direita { /* "Atualizado em.." */
	text-align: right;
	}
	
video#filme {
	display: block;
	width: 350px;
	margin-top: -15px;
	box-shadow: 0px 0px 10px black;
}

video#video {
	display: block;	
	box-shadow: 0px 0px 30px black;	
	margin-bottom: 20px;
	width: 500px;
}