.ZoomIn{
  animation: ZoomIn_anime ease 20s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  animation-fill-mode:forwards; /*when the spec is finished*/
  -webkit-animation: ZoomIn_anime ease 20s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/ 
  -moz-animation: ZoomIn_anime ease 20s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -moz-animation-fill-mode:forwards; /*FF 5+*/
  -o-animation: ZoomIn_anime ease 20s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -o-animation-fill-mode:forwards; /*Not implemented yet*/
  -ms-animation: ZoomIn_anime ease 20s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
  -ms-animation-fill-mode:forwards; /*IE 10+*/
}

@keyframes ZoomIn_anime{
  0% {
    opacity:0.5;
    transform:  scaleX(0.60) scaleY(0.60) ;
  }
  100% {
    opacity:1;
    transform:  scaleX(1.00) scaleY(1.00) ;
  }
}

@-moz-keyframes ZoomIn_anime{
  0% {
    opacity:0.5;
    -moz-transform:  scaleX(0.60) scaleY(0.60) ;
  }
  100% {
    opacity:1;
    -moz-transform:  scaleX(1.00) scaleY(1.00) ;
  }
}

@-webkit-keyframes ZoomIn_anime {
  0% {
    opacity:0.5;
    -webkit-transform:  scaleX(0.60) scaleY(0.60) ;
  }
  100% {
    opacity:1;
    -webkit-transform:  scaleX(1.00) scaleY(1.00) ;
  }
}

@-o-keyframes ZoomIn_anime {
  0% {
    opacity:0.5;
    -o-transform:  scaleX(0.60) scaleY(0.60) ;
  }
  100% {
    opacity:1;
    -o-transform:  scaleX(1.00) scaleY(1.00) ;
  }
}

@-ms-keyframes ZoomIn_anime {
  0% {
    opacity:0.5;
    -ms-transform:  scaleX(0.60) scaleY(0.60) ;
  }
  100% {
    opacity:1;
    -ms-transform:  scaleX(1.00) scaleY(1.00) ;
  }
}





.ZoomInSlow{
  animation: ZoomInSlow_anime ease-out 20s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  animation-fill-mode:forwards; /*when the spec is finished*/
  -webkit-animation: ZoomInSlow_anime ease-out 20s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/ 
  -moz-animation: ZoomInSlow_anime ease-out 20s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -moz-animation-fill-mode:forwards; /*FF 5+*/
  -o-animation: ZoomInSlow_anime ease-out 20s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -o-animation-fill-mode:forwards; /*Not implemented yet*/
  -ms-animation: ZoomInSlow_anime ease-out 20s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
  -ms-animation-fill-mode:forwards; /*IE 10+*/
}

@keyframes ZoomInSlow_anime{
  0% {
    opacity:0;
    transform:  translate(0px,-25px)  scaleX(0.70) scaleY(0.70) ;
  }
  24% {
    opacity:1;
    transform:  translate(0px,-25px)  scaleX(0.81) scaleY(0.81) ;
  }
  100% {
    opacity:1;
    transform:  translate(0px,-25px)  scaleX(1.00) scaleY(1.00) ;
  }
}

@-moz-keyframes ZoomInSlow_anime{
  0% {
    opacity:0;
    -moz-transform:  translate(0px,-25px)  scaleX(0.70) scaleY(0.70) ;
  }
  24% {
    opacity:1;
    -moz-transform:  translate(0px,-25px)  scaleX(0.81) scaleY(0.81) ;
  }
  100% {
    opacity:1;
    -moz-transform:  translate(0px,-25px)  scaleX(1.00) scaleY(1.00) ;
  }
}

@-webkit-keyframes ZoomInSlow_anime {
  0% {
    opacity:0;
    -webkit-transform:  translate(0px,-25px)  scaleX(0.70) scaleY(0.70) ;
  }
  24% {
    opacity:1;
    -webkit-transform:  translate(0px,-25px)  scaleX(0.81) scaleY(0.81) ;
  }
  100% {
    opacity:1;
    -webkit-transform:  translate(0px,-25px)  scaleX(1.00) scaleY(1.00) ;
  }
}

@-o-keyframes ZoomInSlow_anime {
  0% {
    opacity:0;
    -o-transform:  translate(0px,-25px)  scaleX(0.70) scaleY(0.70) ;
  }
  24% {
    opacity:1;
    -o-transform:  translate(0px,-25px)  scaleX(0.81) scaleY(0.81) ;
  }
  100% {
    opacity:1;
    -o-transform:  translate(0px,-25px)  scaleX(1.00) scaleY(1.00) ;
  }
}

@-ms-keyframes ZoomInSlow_anime {
  0% {
    opacity:0;
    -ms-transform:  translate(0px,-25px)  scaleX(0.70) scaleY(0.70) ;
  }
  24% {
    opacity:1;
    -ms-transform:  translate(0px,-25px)  scaleX(0.81) scaleY(0.81) ;
  }
  100% {
    opacity:1;
    -ms-transform:  translate(0px,-25px)  scaleX(1.00) scaleY(1.00) ;
  }
}