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

/* animationer */

/* --- Page turn out ---*/

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

@keyframes pageoutFrames{
  0% {
    transform:  scaleX(1.00) ;
  }
  100% {
    transform:  scaleX(0.00) ;
  }
}

@-moz-keyframes pageoutFrames{
  0% {
    -moz-transform:  scaleX(1.00) ;
  }
  100% {
    -moz-transform:  scaleX(0.00) ;
  }
}

@-webkit-keyframes pageoutFrames {
  0% {
    -webkit-transform:  scaleX(1.00) ;
  }
  100% {
    -webkit-transform:  scaleX(0.00) ;
  }
}

@-o-keyframes pageoutFrames {
  0% {
    -o-transform:  scaleX(1.00) ;
  }
  100% {
    -o-transform:  scaleX(0.00) ;
  }
}

@-ms-keyframes pageoutFrames {
  0% {
    -ms-transform:  scaleX(1.00) ;
  }
  100% {
    -ms-transform:  scaleX(0.00) ;
  }
}

/* --- Page turn in ---*/


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

@keyframes pageinFrames{
  0% {
    transform:  scaleX(0.00) ;
  }
  65% {
    transform:  scaleX(1.00) ;
  }
  83% {
    transform:  scaleX(0.90) ;
  }
  100% {
    transform:  scaleX(1.00) ;
  }
}

@-moz-keyframes pageinFrames{
  0% {
    -moz-transform:  scaleX(0.00) ;
  }
  65% {
    -moz-transform:  scaleX(1.00) ;
  }
  83% {
    -moz-transform:  scaleX(0.90) ;
  }
  100% {
    -moz-transform:  scaleX(1.00) ;
  }
}

@-webkit-keyframes pageinFrames {
  0% {
    -webkit-transform:  scaleX(0.00) ;
  }
  65% {
    -webkit-transform:  scaleX(1.00) ;
  }
  83% {
    -webkit-transform:  scaleX(0.90) ;
  }
  100% {
    -webkit-transform:  scaleX(1.00) ;
  }
}

@-o-keyframes pageinFrames {
  0% {
    -o-transform:  scaleX(0.00) ;
  }
  65% {
    -o-transform:  scaleX(1.00) ;
  }
  83% {
    -o-transform:  scaleX(0.90) ;
  }
  100% {
    -o-transform:  scaleX(1.00) ;
  }
}

@-ms-keyframes pageinFrames {
  0% {
    -ms-transform:  scaleX(0.00) ;
  }
  65% {
    -ms-transform:  scaleX(1.00) ;
  }
  83% {
    -ms-transform:  scaleX(0.90) ;
  }
  100% {
    -ms-transform:  scaleX(1.00) ;
  }
}
