@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700);
/*--------------*/
/*BODY 			*/
/*--------------*/
body{
	/*background: #153216;
	 background: 
        linear-gradient(
            to bottom, 
            rgba(255,255,255,1) 0%, 
            rgba(255,255,255,0) 100%
        );
	*/	
	margin: 0;
	padding: 0;
	/*font-family: Tahoma, arial, verdana;*/
	font-family: 'Lato', Calibri, Arial, sans-serif;
	font-size: 14px;
	color: #000;
	text-align: left;
	width: 100%;
	height: auto;
	/*
	-webkit-animation: bodymove 5s infinite; 
    animation: bodymove 5s infinite;
	*/
	
	/*imagem fundo */
	background-color: #04020c;
	background-image: url(../fundo01p.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-origin: content-box;
	background-clip: content-box;
	
}

@-webkit-keyframes bodymove {
	0%  {background: #060c14;}
    50%  {background: #0c1c2c;}
	85%  {background: #142537;}
    100% {background: #060c14;}
}

@keyframes bodymove {
	0%  {background: #060c14;}
    50%  {background: #0c1c2c;}
	85%  {background: #142537;}
    100% {background: #060c14;}
}

/*--------------*/
/*LINKS 		*/
/*--------------*/
a{
	text-decoration: none;
	color: #000;
}


h1{ 
	text-shadow: 5px 5px 10px #293f56;
	margin: 5px 5px;
	color: #ebebeb;
	z-index:4;
}
h2{ 
	text-shadow: 5px 5px 10px #293f56;
	margin: 5px 5px;
	color: #437fbb;
	z-index:4;
}
h3{ 
	text-shadow: 3px 3px 5px #777;
	font-size: 32px;
	margin: 5px 5px;
	color: #111;
	text-align: left;
}
h4{ 
	text-shadow: 3px 3px 5px #888;
	font-size: 20px;
	margin: 5px 5px;
	color: #000;
	text-align: left;
}
ul{
	list-style: none;
	margin-top: 0px;
	padding: 0;
}
p{
	margin: 5px 5px;
}

/*--------------*/
/*CONTAINER		*/
/*--------------*/
.container{
	margin: 0 auto;
	position: relative;
	display: block;
	float: center;
	width: 1010px;
	/*
	height: auto;
	width: 70%;
	*/
	height: auto;
	background: #CCCCCC;
	border-top:solid 3px #245486;
	border-bottom:solid 3px #245486;
	border-left:solid 3px #245486;
	border-right:solid 3px #245486;
	border-radius: 3px;
	margin-top: 20px;
	/*transition: left 0.3s ease-in-out;*/
	
	align-content: center;
	align-self: center;
	align-items: center;
	
	-webkit-animation: mymove 2s 1; /* Chrome, Safari, Opera */
    animation: mymove 2s 1;
}

@-webkit-keyframes mymove {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes mymove {
    from {opacity: 0;}
    to {opacity: 1;}
}


/*--------------*/
/*TOPO  		*/
/*--------------*/
.Topo{
	float: center;
	position: relative;
	width: 990px;
	height: 200px;
	
	/*padding: 4px 4px;*/
	margin: 4px;
	display: block;
	/*align: center;*/
	text-align: left;
	
	/*display: inline;*/
	/*background: #156115;*/
	border-top:solid 3px #245486;
	border-bottom:solid 3px #245486;
	border-left:solid 3px #245486;
	border-right:solid 3px #245486;
	border-radius: 3px;
	
	transition: background-color linear 1s;
	background: #203a55;
	
	/*imagem fundo topo*/
	background-image: url(../topo.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-origin: content-box;
	background-clip: content-box;

	
	/*
	background-image: url('topo.gif');
	background: transparent;
	*/
	
	/*
	-webkit-transition: mymove 1s ease-in-out;
	-moz-transition: mymove 1s ease-in-out;
	-o-transition: mymove 1s ease-in-out;
	transition: mymove 1s ease-in-out;
	*/
	
	transition-property:  background-size;
	transition-duration: 4s;
	transition-delay: 0s;
	
}

.Topo:hover{
	background-size: 110% 110%;
	transition-duration: 4s;
	/*
	background-color: 18395b;
	background-image: url('topo.jpg');
	*/
	
	/* applies to the transition *to* the :hover state */
/*
	-webkit-transition: topomove 1s ease-in-out;
	-moz-transition: topomove 1s ease-in-out;
	-o-transition: topomove 1s ease-in-out;
	transition: topomove 1s ease-in-out;
	
	transition-property: background, left;
	transition-duration: 1s, 1s;
	transition-delay: 0s, 1s;
*/

}
/*
#cima {
	background-image: url('topo.gif');
}
*/

@-webkit-keyframes topomove {
    from {background: yellow}
    to {background: black}
} 

/* Standard syntax */ 
@keyframes topomove {
    from {background: yellow}
    to {background: black}
}
/*
.Topo#cima {
	position: flex;
	align-self: center;
	color: #000;
}
*/

/*--------------*/
/* MENU TOPO	*/
/*--------------*/
.menu{
	/*margin: 20px 10px 0 0;*/
	width: 90;
	height: 20px;
	float: center;
	/*box-shadow: 3px 3px 3px #333;
	border-radius: 3px;*/
	margin-top: 20px;
	margin-bottom: 0px;
	
	
	background: #1d3a58;
	transition: background-color linear 1s;
	
}

.menu:hover{
	background: #3e6084;
	transition: background-color linear 1s;
}
.menu:onpageshow{
	background: #193c5f;
	transition: background-color linear 1s;
}
/*--------------
CORPO : index
--------------*/
.corpo{
	width: 990px;
	/*height: 500px;*/
	height: auto;
	padding: 4px 4px;
	margin: 4px;
	float: center;
	background: #CCCCCC;
	background-image: url('topo.gif');
	transition: background-color linear 1s;
}
.corpo:hover{
	background: #DDD;
	transition: background-color linear 1s;
}

.corpovideo{
	display: block;
	width: 990px;
	height: 1000px;
	padding: 4px 4px;
	margin: 4px;
	float: center;
	background: #CCCCCC;
}



/* ID é chamado assim, tipo classe*/
#meulink {
	display: block;
	color: #43688e;
	/*background: #123e12;*/
	width: 200px;
	height: 20px;
	margin-top: 10px;
	cursor: pointer;
	float: right;
}
#meulink:hover {
	color: #3a6ea3;
	text-shadow: 2px 2px 5px #1e344b;
}
.menu li {
	display: inline;
	width: 250px;
	height: 20px;
	float: center;
	margin-top: 50px;
}
/*OS LINKS NA LISTA .menu */
.menu li a{
	width: 250px;
	height: 20px;
	padding: 5px 25px;
	margin: 10px;
	float: center;
	text-shadow: 0px 2px 3px #666;
	background: #bbb;
	transition: background-color linear 3s;
}
/*QUANDO SOBRE O LINK*/
.menu li a:hover{
	width: 250px;
	height: 20px;
	padding: 5px 25px;
	margin: 8px;
	float: center;
	text-shadow: 0px 2px 3px #222;
	color: #FFF;
	border-left: solid 4px #7ebdfe;
	border-bottom: solid 4px #7ebdfe;
	background: #000;
	cursor: pointer;
}

.img1{
	width: 250px;
	height: 150px;
	float: left;
	background: #000;
	margin-left: 100px;
	margin-top: 20px;
	margin-bottom: 20px;
}	
.img2{
	width: 250px;
	height: 150px;
	float: right;
	background: #000;
	margin-right: 100px;
	margin-top: 20px;
	margin-bottom: 20px;
}	

.JogoOnLine{
	width: 600px;
	height: 300px;
	margin-right: 150px;
	margin-bottom: 30px;
}

/*-------------- */
/* VIDEO - LINKS celulas de info	*/
/*--------------*/
.quadro{
	width: 300px;
	height: 300px;
	padding: 4px 4px;
	margin: 4px;
	background: #203a55;
	border-top:solid 3px #114b11;
	border-bottom:solid 3px #114b11;
	border-left:solid 3px #114b11;
	border-right:solid 3px #114b11;
	border-radius: 10px;
	float: left;
	color: #9f9f9f;
	
	/*-webkit-transition: meumove 1s ease-in-out;*/
	transition: background-color linear 2s;
	transition: transform linear 1s;
	/* Chrome, Safari, Opera */
    -webkit-animation-name: meumove;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    -webkit-animation-play-state: running;
	
    /* Standard syntax */
    animation-name: meumove;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-play-state: running;
	
	/*inclina*/
	-webkit-transform: skew(-12deg);
	transform: skew(-12deg);
	
	/*scale e blur */
	-webkit-transform: scale(0.9); 
    transform: scale(0.9); 
}

.quadro:hover{
	width: 300px;
	height: 300px;
	padding: 4px 4px;
	margin: 4px;
	background: #243f5b;
	
	border-top:solid 3px #114b11;
	border-bottom:solid 3px #114b11;
	border-left:solid 3px #114b11;
	border-right:solid 3px #114b11;
	border-radius: 10px;
	float: left;
	color: #f8f8f8;
	-webkit-transform: skew(0deg);
	transform: skew(0deg);
	/*scale e blur */
	-webkit-transform: scale(1); 
    transform: scale(1); 
	
}
.quadro a{
	text-decoration: none;
	color: #f8f8f8;
	background: none;
}
	
@-webkit-keyframes meumove {
    from {top: 0px; border-radius: 5px;}
    to {top: 200px; border-radius: 15px;}
} 

/* Standard syntax */ 
@keyframes meumove {
    from {top: 0px; border-radius: 5px;}
    to {top: 200px; border-radius: 15px;}
}

/*
.JogoUnity{
	width: 600px;
	height: 300px;
	margin-right: 150px;
}
*/

.LogoTopo{
	display: block;
	width: 64px;
	height: 64px;
	float: right;
	vertical-align: bottom;
	margin: 10px;
}	
/* LOGO APRENDA PEQUENO - TOPO*/
.AprendaP {
	display: block;
	width: 160px;
	height: 66px;
	float: right;
	vertical-align: top;
	margin: 10px;
}

.AdDireita{	
	display: inline;
	background: #243f5b;
	width: 120px;
	height: 600px;
	vertical-align: top;
	float: right; 
	margin-top: 50px;
	margin-right: 100px;
	margin-left: 100px;
	margin-bottom: 50px;

	/*
	float: right;
	margin-top: 10px;
	margin-right: 10px;
	*/
}	
.AdBaixo{	
	color: 4a6788;
	
	display: block;
	/*background: #243f5b;*/
	width: 800px;
	height: 140px;
	vertical-align: top;
	float: center; 
	
	/*margin-top: 50px;
	margin-right: 100px;
	margin-left: 100px;
	margin-bottom: 50px;
	*/
	margin: 10px;
}
.corpo li {
	background: #243f5b;
	display: block;
	width: 600px;
	height: 90px;
	float: center;
	margin-top: 10px;
}
.corpo table td {
	background: #548899;
	padding: 5px;
}
.corpo table td:hover {
	background: #73abbd;
	border-left:solid 4px #CCC;
	border-bottom:solid 4px #CCC;
	padding: 1px;
}
#area2 {
	width: 95%;
	height: 2000px;
	float: center;
}
/*--------------*/
/*FOOTER 		*/
/*--------------*/
.footer{

	/*imagem fundo */
	background-image: url(../baixo.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-origin: content-box;
	background-clip: content-box;
	
	width: 990px;
	height: 200px;
	display: block;
	vertical-align: bottom;
	padding: 4px 4px;
	margin: 4px;
	float: center;
	
	/*align-self: center;
	color: #FFF;*/
	
	color: #3f5975; 
	
	/*text-align: center;*/
	text-shadow: 0px 3px 1px #111;
	border-top:solid 3px #245486;
	border-bottom:solid 3px #245486;
	border-left:solid 3px #245486;
	border-right:solid 3px #245486;
	border-radius: 3px;
	
	/*
	background: #203a55;
	transition: background-color linear 1s;
	*/
}
/*
.footer:onpageshow{

	background: #000;
	transition: background-color linear 1s;
	background-image: url(../topo.gif);

}
*/
.galeria{

	float: left;
	display: inline;
	text-align: center;
	
	width: 280px;
	height: 230px;
	margin: 10px;
	margin-left: 20px;
	/*padding-left: 5px;*/
	
	background: #17304b;
	border-top:solid 3px #245486;
	border-bottom:solid 3px #245486;
	border-left:solid 3px #245486;
	border-right:solid 3px #245486;
	border-radius: 5px;
	color: #fff;
	
	/*-webkit-transition: meumove 1s ease-in-out;*/
	transition: background-color linear 2s;
	transition: transform linear 1s;
	
	/*scale e blur */
	-webkit-transform: scale(1); 
    transform: scale(1); 
}
.galeria:hover{
	transition: background-color linear 2s;
	transition: transform linear 1s;
	background: #437fbb;
}