
@charset "UTF-8";
/* CSS Document */

/* animação botao destaques*/
.anima_grow {
	-moz-transition: all 150ms ease-in-out;
	-webkit-transition: all 150ms ease-in-out;
	display:block;
}
.anima_grow:hover{
	-moz-transform: translateY(-2px) scale(1.03);
	-webkit-transform: translateY(-2px) scale(1.03);
}/* fim de animação destaques*/

.menu_shadow {
			display: block;	
			-webkit-box-shadow:0px 4px 10px rgba(0,0,0,0.5);
			-moz-box-shadow: 0px 4px 10px rgba(0,0,0,0.5);
			box-shadow: 0px 4px 10px rgba(0,0,0,0.5);
			
		}
		
		/* Animations  */
#sponsor_endorsed #banner_from_top {
animation: translate 3s;
animation-iteration-count: 1;
animation-fill-mode: forwards;  
-webkit-animation: translate 3s; /* Safari & Chrome */
-webkit-animation-iteration-count: 1;
-webkit-animation-fill-mode: forwards;  
margin-top: -110px;
}
 
@keyframes translate {
0%   { transform:  translate(0px, -300px);    }
100%   { transform:  translate(0px, 300px);   }
}
 
@-webkit-keyframes translate {
0%   { -webkit-transform:  translate(0px, -300px) ;   }
100%   { -webkit-transform:  translate(0px, 300px);   }
}

#sponsor_endorsed #banner_close{
animation: translate2 3s;
animation-iteration-count: 1;
animation-fill-mode: forwards;  
-webkit-animation: translate2 3s; /* Safari & Chrome */
-webkit-animation-iteration-count: 1;
-webkit-animation-fill-mode: forwards;  
margin-top: -110px;
}
@keyframes translate2 {
0%   { transform:  translate(0px, 300px);    }
100%   { transform:  translate(0px, -300px);   }
}
 
@-webkit-keyframes translate2 {
0%   { -webkit-transform:  translate(0px, 300px) ;   }
100%   { -webkit-transform:  translate(0px, -300px);   }
}
