@charset "utf-8";

@font-face{
	font-family: 'OpenSans-Bold';
	src: url("../_fonts/OpenSans-Regular.ttf");
}
@font-face{
	font-family: 'NeoSans-Bold';
	src: url("../_fonts/NeoSans-Medium.otf");
}
@-webkit-keyframes movimento-diagonal {
   from {
      left: 0px;
   }
   
   to {
      left: 100px;
   }
}

@-webkit-keyframes rodar {
	from {
		-webkit-transform:rotate(0deg);
	}
	to {
		-webkit-transform:rotate(360deg);
	}
}

/* reset dos elementos  */
* {
    margin: 0;
    padding:0;
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* para garantir que estes elementos ocuparão toda a tela */
body, html {
    width: 100%;
    height: 100%;
}

body {
	font:14px "Trebuchet MS", Arial, Helvetica, sans-serif;
	background: url("../_img/fundo.jpg") no-repeat;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

html {
/*background: url("../_img/fundo.jpg") repeat;*/ }

#painel{
	width: 100%;
    height: 100%;
	overflow: hidden; /* para que n�o tenha rolagem se a imagem de fundo for maior que a tela */
}

#logo{
	width:459px;
	height:500px;
	padding: 10px;
	margin: 0 auto;
	text-align:center;	
}
#logo img{
	width:430px;
	height:430px;
	-webkit-animation-name: rodar;
	-webkit-animation-duration: 0.5s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-iteration-count: 2;
	-webkit-animation-direction: alternate;
	
	animation-name: rodar;
	animation-duration: 0.5s;
	animation-timing-function: linear;
	animation-iteration-count: 2;
	animation-direction: alternate;
	
	-moz-animation-name: rodar;
	-moz-animation-duration: 0.5s;
	-moz-animation-timing-function: linear;
	-moz-animation-iteration-count: 2;
	-moz-animation-direction: alternate;
}
#logo p{
	margin: 5px;
	font:16px 'NeoSans-Bold', Arial, Helvetica, sans-serif;
	color:#FFFFFF;
}

 #progressbar {
	width:330px;
	height:17px;
	margin-top: -20px;
  }

#red_sociais{
	width:90px;
	height:41px;
	margin:0 auto;
	padding:15px;
}

#red_sociais a:hover img:first-child{
	background: url("../_img/facebook_hover.jpg") repeat;
}

