.FadeInRightFast {
  -webkit-animation-name: FadeInRightFast;
   animation-name: FadeInRightFast;
  -webkit-animation: FadeInRightFast 0.5s;
   animation: FadeInRightFast 0.5s;
  -webkit-animation-fill-mode: both;
   animation-fill-mode: both;
}



@-webkit-keyframes FadeInRightFast {
  0% {opacity: 0;-webkit-transform: translateX(200px);}
  100% {opacity: 1;-webkit-transform: translateY(0);}
}
@keyframes FadeInRightFast {
  0% {opacity: 0;transform: translateX(200px);}
  100% {opacity: 1;transform: translateY(0);}
}