@charset "utf-8";
/* CSS Document */

aside#lateral h2 {
	color:#900;
}
aside#lateral h3 {
	text-align:center;
}

 .galeria{
	 left:-10px;
	 margin-top: 0px;
	 width: 300px;
	 height: 400px;
	 position: relative;
	 overflow: hidden;
	 background-color: #ffffff;
	 box-shadow: 3px 3px 3px #333333;
 }
 
 
 .foto{
	 position: absolute;
	 opacity: 0;
	 animation-name: animacao;
	 animation-duration: 20s;
	 animation-iteration-count: infinite;
 }
 
 @keyframes animacao{
	 25%{
		 opacity: 1;
		 /*transform:scale(2.5,2.5);*/
	 }
	 
	 50%{
		 opacity: 0;
	 }
 }
 
 .foto:nth-child(1){
	 
 }
 .foto:nth-child(2){
	 animation-delay: 5s;
 }
 .foto:nth-child(3){
	 animation-delay: 10s;
 }
 .foto:nth-child(4){
	 animation-delay: 15s;
 }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 