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

.animado{
	opacity:0;
	transition: all 0.5s;
		}
		
.mostrarArribaCss {
	animation: mostrarArriba 1s;
}




@keyframes mostrarArriba{

0% {
	transform: translateX(-60px);
	}
100%{
	transform: translateX(0);
	}
	
	}
	
<!--***********************************************-->


	
	}