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

@keyframes logo_shrink{
  0% {
    transform:  translate(0px,0px)  scaleX(1.00) scaleY(1.00) ;
  }
  100% {
    transform:  translate(-0px,-10px)  scaleX(0.80) scaleY(0.80) ;
  }
}

@-moz-keyframes logo_shrink{
  0% {
    -moz-transform:  translate(0px,0px)  scaleX(1.00) scaleY(1.00) ;
  }
  100% {
    -moz-transform:  translate(-0px,-10px)  scaleX(0.60) scaleY(0.60) ;
  }
}

@-webkit-keyframes logo_shrink {
  0% {
    -webkit-transform:  translate(0px,0px)  scaleX(1.00) scaleY(1.00) ;
  }
  100% {
    -webkit-transform:  translate(-0px,-10px)  scaleX(0.60) scaleY(0.60) ;
  }
}

@-o-keyframes logo_shrink {
  0% {
    -o-transform:  translate(0px,0px)  scaleX(1.00) scaleY(1.00) ;
  }
  100% {
    -o-transform:  translate(-0px,-10px)  scaleX(0.60) scaleY(0.60) ;
  }
}

@-ms-keyframes logo_shrink {
  0% {
    -ms-transform:  translate(0px,0px)  scaleX(1.00) scaleY(1.00) ;
  }
  100% {
    -ms-transform:  translate(-0px,-10px)  scaleX(0.60) scaleY(0.60) ;
  }
}



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

@keyframes logo_grow{
  0% {
    transform:  translate(-0px,-10px)  scaleX(0.60) scaleY(0.60) ;
  }
  100% {
    transform:  translate(0px,0px)  scaleX(1.00) scaleY(1.00) ;
  }
}

@-moz-keyframes logo_grow{
  0% {
    -moz-transform:  translate(-0px,-10px)  scaleX(0.60) scaleY(0.60) ;
  }
  100% {
    -moz-transform:  translate(0px,0px)  scaleX(1.00) scaleY(1.00) ;
  }
}

@-webkit-keyframes logo_grow {
  0% {
    -webkit-transform:  translate(-0px,-10px)  scaleX(0.60) scaleY(0.60) ;
  }
  100% {
    -webkit-transform:  translate(0px,0px)  scaleX(1.00) scaleY(1.00) ;
  }
}

@-o-keyframes logo_grow {
  0% {
    -o-transform:  translate(-0px,-10px)  scaleX(0.60) scaleY(0.60) ;
  }
  100% {
    -o-transform:  translate(0px,0px)  scaleX(1.00) scaleY(1.00) ;
  }
}

@-ms-keyframes logo_grow {
  0% {
    -ms-transform:  translate(-0px,-10px)  scaleX(0.60) scaleY(0.60) ;
  }
  100% {
    -ms-transform:  translate(0px,0px)  scaleX(1.00) scaleY(1.00) ;
  }
}





.section1_animate1{
  animation: section1_animate1 ease-in-out 20s;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
  -webkit-animation: section1_animate1 ease-in-out 20s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: section1_animate1 ease-in-out 20s;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: 50% 50%;
  -o-animation: section1_animate1 ease-in-out 20s;
  -o-animation-iteration-count: infinite;
  -o-transform-origin: 50% 50%;
  -ms-animation: section1_animate1 ease-in-out 20s;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: 50% 50%;
}

@keyframes section1_animate1{
  0% {
    opacity:0;
    transform:  translate(0px,-20px)  ;
  }
  4% {
    opacity:1;
    transform:  translate(0px,0px)  ;
  }
  15% {
    opacity:1;
    transform:  translate(0px,0px)  ;
  }
  19% {
    opacity:0;
    transform:  translate(0px,20px)  ;
  }
  100% {
    opacity:0;
    transform:  translate(0px,20px)  ;
  }
}

@-moz-keyframes section1_animate1{
  0% {
    opacity:0;
    -moz-transform:  translate(0px,-20px)  ;
  }
  4% {
    opacity:1;
    -moz-transform:  translate(0px,0px)  ;
  }
  44% {
    opacity:1;
    -moz-transform:  translate(0px,0px)  ;
  }
  50% {
    opacity:0;
    -moz-transform:  translate(0px,20px)  ;
  }
  100% {
    opacity:0;
    -moz-transform:  translate(0px,20px)  ;
  }
}

@-webkit-keyframes section1_animate1 {
  0% {
    opacity:0;
    -webkit-transform:  translate(0px,-20px)  ;
  }
  4% {
    opacity:1;
    -webkit-transform:  translate(0px,0px)  ;
  }
  44% {
    opacity:1;
    -webkit-transform:  translate(0px,0px)  ;
  }
  50% {
    opacity:0;
    -webkit-transform:  translate(0px,20px)  ;
  }
  100% {
    opacity:0;
    -webkit-transform:  translate(0px,20px)  ;
  }
}

@-o-keyframes section1_animate1 {
  0% {
    opacity:0;
    -o-transform:  translate(0px,-20px)  ;
  }
  4% {
    opacity:1;
    -o-transform:  translate(0px,0px)  ;
  }
  44% {
    opacity:1;
    -o-transform:  translate(0px,0px)  ;
  }
  50% {
    opacity:0;
    -o-transform:  translate(0px,20px)  ;
  }
  100% {
    opacity:0;
    -o-transform:  translate(0px,20px)  ;
  }
}

@-ms-keyframes section1_animate1 {
  0% {
    opacity:0;
    -ms-transform:  translate(0px,-20px)  ;
  }
  96% {
    opacity:1;
    -ms-transform:  translate(0px,0px)  ;
  }
  44% {
    opacity:1;
    -ms-transform:  translate(0px,0px)  ;
  }
  50% {
    opacity:0;
    -ms-transform:  translate(0px,20px)  ;
  }
  100% {
    opacity:0;
    -ms-transform:  translate(0px,20px)  ;
  }
}




.section1_animate2{
  animation: section1_animate2 ease-in-out 20s;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
  -webkit-animation: section1_animate2 ease-in-out 20s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: section1_animate2 ease-in-out 20s;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: 50% 50%;
  -o-animation: section1_animate2 ease-in-out 20s;
  -o-animation-iteration-count: infinite;
  -o-transform-origin: 50% 50%;
  -ms-animation: section1_animate2 ease-in-out 20s;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: 50% 50%;
}

@keyframes section1_animate2{
  0% {
    opacity:0;
    transform:  translate(0px,-20px)  ;
  }
  19% {
    opacity:0;
    transform:  translate(0px,-20px)  ;
  }
  23% {
    opacity:1;
    transform:  translate(0px,0px)  ;
  }
  98% {
    opacity:1;
    transform:  translate(0px,0px)  ;
  }
  100% {
    opacity:0;
    transform:  translate(0px,20px)  ;
  }
}

@-moz-keyframes section1_animate2{
  0% {
    opacity:0;
    -moz-transform:  translate(0px,-20px)  ;
  }
  50% {
    opacity:0;
    -moz-transform:  translate(0px,-20px)  ;
  }
  56% {
    opacity:1;
    -moz-transform:  translate(0px,0px)  ;
  }
  96% {
    opacity:1;
    -moz-transform:  translate(0px,0px)  ;
  }
  100% {
    opacity:0;
    -moz-transform:  translate(0px,20px)  ;
  }
}

@-webkit-keyframes section1_animate2 {
  0% {
    opacity:0;
    -webkit-transform:  translate(0px,-20px)  ;
  }
  50% {
    opacity:0;
    -webkit-transform:  translate(0px,-20px)  ;
  }
  56% {
    opacity:1;
    -webkit-transform:  translate(0px,0px)  ;
  }
  96% {
    opacity:1;
    -webkit-transform:  translate(0px,0px)  ;
  }
  100% {
    opacity:0;
    -webkit-transform:  translate(0px,20px)  ;
  }
}

@-o-keyframes section1_animate2 {
  0% {
    opacity:0;
    -o-transform:  translate(0px,-20px)  ;
  }
  50% {
    opacity:0;
    -o-transform:  translate(0px,-20px)  ;
  }
  56% {
    opacity:1;
    -o-transform:  translate(0px,0px)  ;
  }
  96% {
    opacity:1;
    -o-transform:  translate(0px,0px)  ;
  }
  100% {
    opacity:0;
    -o-transform:  translate(0px,20px)  ;
  }
}

@-ms-keyframes section1_animate2 {
  0% {
    opacity:0;
    -ms-transform:  translate(0px,-20px)  ;
  }
  50% {
    opacity:0;
    -ms-transform:  translate(0px,-20px)  ;
  }
  56% {
    opacity:1;
    -ms-transform:  translate(0px,0px)  ;
  }
  96% {
    opacity:1;
    -ms-transform:  translate(0px,0px)  ;
  }
  100% {
    opacity:0;
    -ms-transform:  translate(0px,20px)  ;
  }
}




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

@keyframes intro_text_in{
  0% {
    opacity:0;
    transform:  translate(0px,-20px)  ;
  }
  80% {
    opacity:0;
    transform:  translate(0px,-20px)  ;
  }
  100% {
    opacity:1;
    transform:  translate(0px,0px)  ;
  }
}

@-moz-keyframes intro_text_in {
  0% {
    opacity:0;
    -moz-transform:  translate(0px,-20px)  ;
  }
  80% {
    opacity:0;
    -moz-transform:  translate(0px,-20px)  ;
  }
  100% {
    opacity:1;
    -moz-transform:  translate(0px,0px)  ;
  }
 }

@-webkit-keyframes intro_text_in {
  0% {
    opacity:0;
    -webkit-transform:  translate(0px,-20px)  ;
  }
  80% {
    opacity:0;
    -webkit-transform:  translate(0px,-20px)  ;
  }
  100% {
    opacity:1;
    -webkit-transform:  translate(0px,0px)  ;
  }
}

@-o-keyframes intro_text_in {
  0% {
    opacity:0;
    -o-transform:  translate(0px,-20px)  ;
  }
  80% {
    opacity:0;
    -o-transform:  translate(0px,-20px)  ;
  }
  100%  {
    opacity:1;
    -o-transform:  translate(0px,0px)  ;
  }
}

@-ms-keyframes intro_text_in {
  0% {
    opacity:0;
    -ms-transform:  translate(0px,-20px)  ;
  }
  80% {
    opacity:0;
    -ms-transform:  translate(0px,-20px)  ;
  }
  100% {
    opacity:1;
    -ms-transform:  translate(0px,0px)  ;
  }
}


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

@keyframes box1{
  0% {
    opacity:0.5;
    transform:  translate(0px,0px)  ;
  }
  66% {
    opacity:0.5;
    transform:  translate(0px,0px)  ;
  }
  70% {
    opacity:1;
    transform:  translate(0px,-20px)  ;
  }
  74% {
    opacity:0.5;
    transform:  translate(0px,0px)  ;
  }
  100% {
    opacity:0.5;
    transform:  translate(0px,0px)  ;
  }
}

@-moz-keyframes box1{
  0% {
    -moz-transform:  translate(0px,0px)  ;
  }
  67% {
    -moz-transform:  translate(0px,0px)  ;
  }
  71% {
    -moz-transform:  translate(0px,-20px)  ;
  }
  75% {
    -moz-transform:  translate(0px,0px)  ;
  }
  100% {
    -moz-transform:  translate(0px,0px)  ;
  }
}

@-webkit-keyframes box1 {
  0% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  67% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  71% {
    -webkit-transform:  translate(0px,-20px)  ;
  }
  75% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  100% {
    -webkit-transform:  translate(0px,0px)  ;
  }
}

@-o-keyframes box1 {
  0% {
    -o-transform:  translate(0px,0px)  ;
  }
  67% {
    -o-transform:  translate(0px,0px)  ;
  }
  71% {
    -o-transform:  translate(0px,-20px)  ;
  }
  75% {
    -o-transform:  translate(0px,0px)  ;
  }
  100% {
    -o-transform:  translate(0px,0px)  ;
  }
}

@-ms-keyframes box1 {
  0% {
    -ms-transform:  translate(0px,0px)  ;
  }
  67% {
    -ms-transform:  translate(0px,0px)  ;
  }
  71% {
    -ms-transform:  translate(0px,-20px)  ;
  }
  75% {
    -ms-transform:  translate(0px,0px)  ;
  }
  100% {
    -ms-transform:  translate(0px,0px)  ;
  }
}


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

@keyframes box2{
  0% {
    opacity:0.5;
    transform:  translate(0px,0px)  ;
  }
  70% {
    opacity:0.5;
    transform:  translate(0px,0px)  ;
  }
  74% {
    opacity:1;
    transform:  translate(0px,-20px)  ;
  }
  78% {
    opacity:0.5;
    transform:  translate(0px,0px)  ;
  }
  100% {
    opacity:0.5;
    transform:  translate(0px,0px)  ;
  }
}

@-moz-keyframes box2{
  0% {
    -moz-transform:  translate(0px,0px)  ;
  }
  75% {
    -moz-transform:  translate(0px,0px)  ;
  }
  79% {
    -moz-transform:  translate(0px,-20px)  ;
  }
  83% {
    -moz-transform:  translate(0px,0px)  ;
  }
  100% {
    -moz-transform:  translate(0px,0px)  ;
  }
}

@-webkit-keyframes box2 {
  0% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  75% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  79% {
    -webkit-transform:  translate(0px,-20px)  ;
  }
  83% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  100% {
    -webkit-transform:  translate(0px,0px)  ;
  }
}

@-o-keyframes box2 {
  0% {
    -o-transform:  translate(0px,0px)  ;
  }
  75% {
    -o-transform:  translate(0px,0px)  ;
  }
  79% {
    -o-transform:  translate(0px,-20px)  ;
  }
  83% {
    -o-transform:  translate(0px,0px)  ;
  }
  100% {
    -o-transform:  translate(0px,0px)  ;
  }
}

@-ms-keyframes box2 {
  0% {
    -ms-transform:  translate(0px,0px)  ;
  }
  75% {
    -ms-transform:  translate(0px,0px)  ;
  }
  79% {
    -ms-transform:  translate(0px,-20px)  ;
  }
  83% {
    -ms-transform:  translate(0px,0px)  ;
  }
  100% {
    -ms-transform:  translate(0px,0px)  ;
  }
}


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

@keyframes box3{
  0% {
    opacity:0.5;
    transform:  translate(0px,0px)  ;
  }
  74% {
    opacity:0.5;
    transform:  translate(0px,0px)  ;
  }
  78% {
    opacity:1;
    transform:  translate(0px,-20px)  ;
  }
  84% {
    opacity:0.5;
    transform:  translate(0px,0px)  ;
  }
  100% {
    opacity:0.5;
    transform:  translate(0px,0px)  ;
  }
}

@-moz-keyframes box3{
  0% {
    -moz-transform:  translate(0px,0px)  ;
  }
  83% {
    -moz-transform:  translate(0px,0px)  ;
  }
  87% {
    -moz-transform:  translate(0px,-20px)  ;
  }
  91% {
    -moz-transform:  translate(0px,0px)  ;
  }
  100% {
    -moz-transform:  translate(0px,0px)  ;
  }
}

@-webkit-keyframes box3 {
  0% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  83% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  87% {
    -webkit-transform:  translate(0px,-20px)  ;
  }
  91% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  100% {
    -webkit-transform:  translate(0px,0px)  ;
  }
}

@-o-keyframes box3 {
  0% {
    -o-transform:  translate(0px,0px)  ;
  }
  83% {
    -o-transform:  translate(0px,0px)  ;
  }
  87% {
    -o-transform:  translate(0px,-20px)  ;
  }
  91% {
    -o-transform:  translate(0px,0px)  ;
  }
  100% {
    -o-transform:  translate(0px,0px)  ;
  }
}

@-ms-keyframes box3 {
  0% {
    -ms-transform:  translate(0px,0px)  ;
  }
  83% {
    -ms-transform:  translate(0px,0px)  ;
  }
  87% {
    -ms-transform:  translate(0px,-20px)  ;
  }
  91% {
    -ms-transform:  translate(0px,0px)  ;
  }
  100% {
    -ms-transform:  translate(0px,0px)  ;
  }
}

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

@keyframes box4{
  0% {
    opacity:0.5;
    transform:  translate(0px,0px)  ;
  }
  76% {
    opacity:0.5;
    transform:  translate(0px,0px)  ;
  }
  80% {
    opacity:1;
    transform:  translate(0px,-20px)  ;
  }
  84% {
    opacity:0.5;
    transform:  translate(0px,0px)  ;
  }
  100% {
    opacity:0.5;
    transform:  translate(0px,0px)  ;
  }
}

@-moz-keyframes box4{
  0% {
    -moz-transform:  translate(0px,0px)  ;
  }
  92% {
    -moz-transform:  translate(0px,0px)  ;
  }
  96% {
    -moz-transform:  translate(0px,-20px)  ;
  }
  99% {
    -moz-transform:  translate(0px,0px)  ;
  }
  100% {
    -moz-transform:  translate(0px,0px)  ;
  }
}

@-webkit-keyframes box4 {
  0% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  92% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  96% {
    -webkit-transform:  translate(0px,-20px)  ;
  }
  99% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  100% {
    -webkit-transform:  translate(0px,0px)  ;
  }
}

@-o-keyframes box4 {
  0% {
    -o-transform:  translate(0px,0px)  ;
  }
  92% {
    -o-transform:  translate(0px,0px)  ;
  }
  96% {
    -o-transform:  translate(0px,-20px)  ;
  }
  99% {
    -o-transform:  translate(0px,0px)  ;
  }
  100% {
    -o-transform:  translate(0px,0px)  ;
  }
}

@-ms-keyframes box4 {
  0% {
    -ms-transform:  translate(0px,0px)  ;
  }
  92% {
    -ms-transform:  translate(0px,0px)  ;
  }
  96% {
    -ms-transform:  translate(0px,-20px)  ;
  }
  99% {
    -ms-transform:  translate(0px,0px)  ;
  }
  100% {
    -ms-transform:  translate(0px,0px)  ;
  }
}


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

@keyframes cards_in{
  0% {
    transform:  translate(-100px,0px)  ;
  }
  100% {
    transform:  translate(0px,0px)  ;
  }
}

@-moz-keyframes cards_in{
  0% {
    -moz-transform:  translate(-100px,0px)  ;
  }
  100% {
    -moz-transform:  translate(0px,0px)  ;
  }
}

@-webkit-keyframes cards_in {
  0% {
    -webkit-transform:  translate(-100px,0px)  ;
  }
  100% {
    -webkit-transform:  translate(0px,0px)  ;
  }
}

@-o-keyframes cards_in {
  0% {
    -o-transform:  translate(-100px,0px)  ;
  }
  100% {
    -o-transform:  translate(0px,0px)  ;
  }
}

@-ms-keyframes cards_in {
  0% {
    -ms-transform:  translate(-100px,0px)  ;
  }
  100% {
    -ms-transform:  translate(0px,0px)  ;
  }
}