@charset "UTF-8";
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
            transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
            transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
            transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
            transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
            transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
            transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
            transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
            transform: translate3d(0,-4px,0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
          animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
          animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
            transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
            transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
            transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
            transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
          animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
          animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
            transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
            transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
            transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
            transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
            transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
            transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
            transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
            transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
          transform-origin: top center;
  -webkit-animation-name: swing;
          animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
          animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
            transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
            transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
            transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
            transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
            transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
            transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: none;
            transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
            transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
            transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
            transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
            transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
            transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
            transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
          animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
            transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
            transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
            transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
            transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
          animation-name: bounceIn;
  -webkit-animation-duration: .75s;
          animation-duration: .75s;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
            transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
            transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
            transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
          animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
            transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
            transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
            transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
            transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
            transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
          animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
            transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
            transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
            transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
            transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
            transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
          animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
            transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
            transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
          animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
            transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
            transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
          animation-name: bounceOut;
  -webkit-animation-duration: .75s;
          animation-duration: .75s;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
          animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
            transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
            transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
          animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
            transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
            transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
          animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
          animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
          animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
          animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
          animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
          animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

@keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

.fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
          animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
          animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
          animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
          animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
          animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
          animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
          animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
          animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
            transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
            transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
            transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
            transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
            transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
            transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
  -webkit-animation-name: flip;
          animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
          animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
          animation-name: flipOutX;
  -webkit-animation-duration: .75s;
          animation-duration: .75s;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
          animation-name: flipOutY;
  -webkit-animation-duration: .75s;
          animation-duration: .75s;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
            transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
            transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
            transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
            transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
          animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
            transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
            transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
          animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
            transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
            transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
          animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
          animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
          animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
          animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
            transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
            transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
          animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
            transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
            transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
          animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
          animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
          animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
          animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
            transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
            transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
          animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
            transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
            transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
            transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
            transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
            transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
            transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
          animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
            transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
            transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
          animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
            transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
            transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
          animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
            transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
            transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
          animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
            transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
            transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
            transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
            transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
          animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
            transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
            transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
            transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
            transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
          animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
            transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
            transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
          animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
          animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
            transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
            transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
          animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
            transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
            transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
            transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
            transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
          animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
            transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
            transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
            transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
            transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
          animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
            transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
            transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
          animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
          animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
          animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
          animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
          animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
          animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
          animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
          animation-name: slideOutUp;
}



/* add by self */
/* 放大 */
@-webkit-keyframes zoom {
  0% {
   -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }
}

.zoom{
  -webkit-animation: zoom infinite;
          animation: zoom infinite;
}
/* 左右循环动画 */
@-webkit-keyframes LeftAndRight {
  0%, 100% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}

.LeftAndRight {
  -webkit-animation: LeftAndRight 5s infinite;
          animation: LeftAndRight 5s infinite;
}

/* 渐渐缩小 */
@-webkit-keyframes narrowing {
  0% {
   -webkit-transform: scale3d(1.5, 1.5, 1.5);
            transform: scale3d(1.5, 1.5, 1.5);
  }
  50% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.narrowing {
  -webkit-animation:  narrowing 5s;
          animation:  narrowing 5s;
}



.flower-bird0 .animate-item.bodybg {
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.flower-bird0 ul {
  padding: 2em 5%;
  position: absolute;
  bottom: 8em;
  left: 0;
  display: block;
}
/* title */
.flower-bird0 ul li:nth-child(1) {
  color: #fff;
  font-size: 3em;
}
/* descript */
.flower-bird0 ul li:nth-child(2) {
  color: #fff;
  width: 100%;
  font-size: 1.5em;
  line-height: 35px;
  text-align: left;
}

.flower-bird1 .animate-item.bodybg {
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.flower-bird1 ul {
  padding: 2em 5%;
  position: absolute;
  bottom: 4em;
  left: 0;
  display: block;
}
/* title */
.flower-bird1 ul li:nth-child(1) {
  color: #fff;
  font-size: 2.5em;
  text-align: left;
}
/* line */
.flower-bird1 ul li:nth-child(2) {
  width: 100%;
  height: 1px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.8);
  margin: 5% 0;
}
/* descript */
.flower-bird1 ul li:nth-child(3) {
  color: #fff;
  width: 100%;
  font-size: 1.5em;
  line-height: 25px;
  text-align: left;
}
.flower-bird1 ul li:nth-child(3) p{
  text-align: left;
}

.flower-bird1 .animate-item.bodybg {
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.flower-bird1 ul {
  padding: 2em 5%;
  position: absolute;
  bottom: 4em;
  left: 0;
  display: block;
}
/* title */
.flower-bird1 ul li:nth-child(1) {
  color: #fff;
  font-size: 2.5em;
  text-align: left;
}
/* line */
.flower-bird1 ul li:nth-child(2) {
  width: 100%;
  height: 1px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.8);
  margin: 5% 0;
}
/* descript */
.flower-bird1 ul li:nth-child(3) {
  color: #fff;
  width: 100%;
  font-size: 1.5em;
  line-height: 25px;
  text-align: left;
}
.flower-bird1 ul li:nth-child(3) p{
  text-align: left;
}

.flower-bird1 .animate-item.bodybg {
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.flower-bird1 ul {
  padding: 2em 5%;
  position: absolute;
  bottom: 4em;
  left: 0;
  display: block;
}
/* title */
.flower-bird1 ul li:nth-child(1) {
  color: #fff;
  font-size: 2.5em;
  text-align: left;
}
/* line */
.flower-bird1 ul li:nth-child(2) {
  width: 100%;
  height: 1px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.8);
  margin: 5% 0;
}
/* descript */
.flower-bird1 ul li:nth-child(3) {
  color: #fff;
  width: 100%;
  font-size: 1.5em;
  line-height: 25px;
  text-align: left;
}
.flower-bird1 ul li:nth-child(3) p{
  text-align: left;
}

.flower-bird1 .animate-item.bodybg {
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.flower-bird1 ul {
  padding: 2em 5%;
  position: absolute;
  bottom: 4em;
  left: 0;
  display: block;
}
/* title */
.flower-bird1 ul li:nth-child(1) {
  color: #fff;
  font-size: 2.5em;
  text-align: left;
}
/* line */
.flower-bird1 ul li:nth-child(2) {
  width: 100%;
  height: 1px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.8);
  margin: 5% 0;
}
/* descript */
.flower-bird1 ul li:nth-child(3) {
  color: #fff;
  width: 100%;
  font-size: 1.5em;
  line-height: 25px;
  text-align: left;
}
.flower-bird1 ul li:nth-child(3) p{
  text-align: left;
}

.flower-bird5 ul {
  width: 100%;
  height: 78%;
  position: absolute;
  bottom: 0em;
  display: block;
  overflow: hidden;
}
/* title */
.flower-bird5 ul li:nth-child(2) {
  width: 100%;
  margin-top: 6em;
  font-size: 2em;
  text-align: center;
  font-weight: bold;
  color: #333;
}
/* descript */
.flower-bird5 ul li:nth-child(3) {
  width: 70%;
  color: #333;
  font-size: 1.5em;
  line-height: 22px;
  margin-left: 15%;
  margin-top: 3.5em;
  text-align: center;
}

/* picture */
.flower-bird5 ul li:nth-child(1) {
  width: 30%;
  margin-left: 35%;
}
.flower-bird5 ul li:nth-child(1) img {
  width: 100%;
  display: block;
}




.tradition1 ul {
  width: 90%;
  height: 80%;
  padding: 2em 5%;
  position: absolute;
  bottom: 0em;
  display: block;
}
/* pic */
.tradition1 ul li:nth-child(1){
  width: 18em;
  height: 18em;
  text-align: center;
  line-height: 31em;
  margin: 0 auto 1em;
  -webkit-border-image: url(http://tpic.home.news.cn/xhCloudNewsPic/xhpic001/M08/84/ED/wKhTglT2ci4EAAAAAAAAAAAAAAA135.jpg) 30 30 stretch;
  /*width: 21.7em;
  height: 17.7em;
  padding-left: 5em;
  padding-top: 1.2em;
  margin: 6em auto 0.2em;
  -webkit-border-image: url(../images/border.png) 30 30 stretch;*/
}
.tradition1 ul li:nth-child(1) img{
  width: 14.2em;
  height: 14.2em;
  border-radius: 50%;
}
/* title */
.tradition1 ul li:nth-child(2){
  width: 7%;
  height: 7em;
  float: right;
  padding-left: 0.5em;
  margin-right: 24%;
  font-size: 2em;
  font-weight: bold;
  border-left: 1px solid #c4c8cc;
  color: #333;
}
/* descript */
.tradition1 ul li:nth-child(3){
  margin:0 auto;
  width: 40%;
  float: left;
  font-size: 1.5em;
  margin-left: 23%;
  color: #333;
  /*-webkit-column-count: 4;
  -webkit-column-gap: 15px;
  -webkit-column-rule: 1px solid #c4c8cc;*/
}
.tradition1 ul li:nth-child(3) p{
  width: 18%;
  padding-left:5%; 
  float: right;
  border-left: 1px solid #c4c8cc;
}

/* animate-bg */
.tradition1 ul li:nth-child(4){
  position: absolute;
  bottom: 0;
  left: 0;
  
}
.tradition1 ul li:nth-child(4) img{
  width: 100%;
  display: block;
}
.tradition1 ul li:nth-child(5){
  width: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
}
.tradition1 ul li:nth-child(5) img{
  width: 100%;
  display: block;
}

/*.u-arrow-bottom{
  background: url(../images/sm.jpg) no-repeat;
}*/

/* 动画持续时间 */
.tradition1 .duration1 {
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.tradition1 .duration2 {
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.tradition2 ul {
  width: 90%;
  height: 90%;
  padding: 2em 5%;
  position: absolute;
  bottom: 0;
  display: block;
}
/* pic */
.tradition2 ul li:nth-child(1){
  width: 20em;
  height: 20em;
  text-align: center;
  line-height: 35em;
  margin: 7em auto 0.3em;
  -webkit-border-image: url(http://tpic.home.news.cn/xhCloudNewsPic/xhpic001/M08/84/ED/wKhTglT2ci4EAAAAAAAAAAAAAAA135.jpg) 30 30 stretch;
}
.tradition2 ul li:nth-child(1) img{
  width: 16em;height: 16em;
  border-radius: 50%;
}

.tradition2 ul li:nth-child(2){
  position: absolute;
  bottom: 0;
  left: 0;
}
.tradition2 ul li:nth-child(2) img{
  width: 100%;
  display: block;
}
.tradition2 ul li:nth-child(3){
  width: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
}
.tradition2 ul li:nth-child(3) img{
  width: 100%;
  display: block;
}

/*.u-arrow-bottom{
  background: url(../images/sm.jpg) no-repeat;
}*/

/* 动画持续时间 */
.tradition2 .duration1 {
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.tradition2 .duration2 {
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.tradition3 ul {
  width: 90%;
  height: 70%;
  padding: 2em 5%;
  position: absolute;
  bottom: 0;
  display: block;
}
/* title */
.tradition3 ul li:nth-child(1){
  width: 7%;
  height: 7em;
  float: right;
  padding-left: 0.5em;
  margin-right: 24%;
  font-size: 2em;
  font-weight: bold;
  border-left: 1px solid #c4c8cc;
  color: #333;
}
/* descript */
.tradition3 ul li:nth-child(2){
  margin:0 auto;
  width: 40%;
  float: left;
  font-size: 1.5em;
  margin-left: 23%;
  color: #333;
  /*-webkit-column-count: 4;
  -webkit-column-gap: 15px;
  -webkit-column-rule: 1px solid #c4c8cc;*/
}
.tradition3 ul li:nth-child(2) p{
  width: 18%;
  padding-left:5%; 
  float: right;
  border-left: 1px solid #c4c8cc;
}

/* animate-bg */
.tradition3 ul li:nth-child(3){
  position: absolute;
  bottom: 0;
  left: 0;
  
}
.tradition3 ul li:nth-child(3) img{
  width: 100%;
  display: block;
}
.tradition3 ul li:nth-child(4){
  width: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
}
.tradition3 ul li:nth-child(4) img{
  width: 100%;
  display: block;
}

/*.u-arrow-bottom{
  background: url(../images/sm.jpg) no-repeat;
}*/

/* 动画持续时间 */
.tradition3 .duration1 {
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.tradition3 .duration2 {
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.tradition4 ul {
  width: 100%;
  height: 78%;
  position: absolute;
  bottom: 0em;
  display: block;
  overflow: hidden;
}
/* title */
.tradition4 ul li:nth-child(2) {
  width: 100%;
  margin-top: 6em;
  font-size: 2em;
  text-align: center;
  font-weight: bold;
  color: #333;
}
/* descript */
.tradition4 ul li:nth-child(3) {
  width: 70%;
  color: #333;
  font-size: 1.5em;
  line-height: 22px;
  margin-left: 15%;
  margin-top: 3.5em;
  text-align: center;
}

/* picture */
.tradition4 ul li:nth-child(1) {
  width: 30%;
  margin-left: 35%;
}
.tradition4 ul li:nth-child(1) img {
  width: 100%;
  display: block;
}

/* animate-bg */
.tradition4 ul li:nth-child(4){
  position: absolute;
  bottom: 0;
  left: 0;
  
}
.tradition4 ul li:nth-child(4) img{
  width: 100%;
  display: block;
}
.tradition4 ul li:nth-child(5){
  width: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
}
.tradition4 ul li:nth-child(5) img{
  width: 100%;
  display: block;
}

/* 动画持续时间 */
.tradition4 .duration1 {
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.tradition4 .duration2 {
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}



.season1 ul {
  width: 100%;
  height: 30%;
  position: absolute;
  bottom: 1em;
  left: 0;
  display: block;
  overflow: hidden;
  text-align: left;
}
/* title */
.season1 ul li:nth-child(1) {
  color: #20515c;
  font-size: 2.5em;
  margin-top: 0.5em;
  margin-left: 15%;
}
/* descript */
.season1 ul li:nth-child(2) {
  color: #20515c;
  width: 70%;
  font-size: 1.5em;
  line-height: 22px;
  margin-top: 0.5em;
  margin-left: 15%;
}
.season1 ul li:nth-child(2) p{
  text-align: left;
}

.season2 ul {
  width: 100%;
  height: 60%;
  position: absolute;
  top: 10em;
  left: 0;
  display: block;
  overflow: hidden;
  text-align: left;
}
/* title */
.season2 ul li:nth-child(1) {
  color: #20515c;
  font-size: 2.5em;
  margin-top: 0.5em;
  margin-left: 15%;
}
/* descript */
.season2 ul li:nth-child(2) {
  color: #20515c;
  width: 70%;
  font-size: 1.5em;
  line-height: 22px;
  margin-top: 0.5em;
  margin-left: 15%;
}
.season2 ul li:nth-child(2) p{
  text-align: left;
}

.spring2 ul {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  overflow: hidden;
}
/* title */
.spring2 ul li:nth-child(1) {
  color: #20515c;
  font-size: 2.5em;
  text-decoration: underline;
  position: absolute;
  top: 2.8em;
  left: 5%;
  z-index: 6;
}
/* descript */
.spring2 ul li:nth-child(2) {
  color: #20515c;
  width: 70%;
  font-size: 1.5em;
  line-height: 25px;
  position: absolute;
  top: 7em;
  left: 5%;
  z-index: 6;
  text-align: left;
}
.spring2 ul li:nth-child(2) p{
  text-align: left;
}
/* picture */
.spring2 ul li:nth-child(3) {
  width: 100%;
  position: absolute;
  overflow: hidden;
  z-index: 4;
  bottom: 2em;
}
.spring2 ul li:nth-child(3) img {
  width: 100%;
  /*-webkit-transform:rotate(5deg);*/
}
/* picture-mark */
.spring2 ul li:nth-child(4) {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 5;
}
.spring2 ul li:nth-child(4) img{
  vertical-align: middle;
}
/* 动画持续时间 */
.spring2 ul li.narrowing{
-webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.summer2 ul {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  overflow: hidden;
}
/* title */
.summer2 ul li:nth-child(2) {
  color: #20515c;
  font-size: 2.5em;
  text-decoration: underline;
  position: absolute;
  bottom: 7em;
  left: 5%;
  z-index: 6;
}
/* descript */
.summer2 ul li:nth-child(3) {
  color: #20515c;
  width: 52%;
  font-size: 1.5em;
  line-height: 25px;
  position: absolute;
  bottom: 1.5em;
  left: 5%;
  z-index: 6;
  text-align: left;
}
.summer2 ul li:nth-child(3) p{
  text-align: left;
}
/* picture */
.summer2 ul li:nth-child(1) {
  width: 100%;
  position: absolute;
  overflow: hidden;
  z-index: 4;
  top: 7.2em;
}
.summer2 ul li:nth-child(1) img {
  width: 100%;
  /*-webkit-transform:rotate(5deg);*/
}
/* picture-mark */
.summer2 ul li:nth-child(4) {
  width: 100%;height: 100%;
  position: absolute;
  top: 0;
  z-index: 5;
}
.summer2 ul li:nth-child(4) img{
  display: block;
  vertical-align: middle;
}
/* 动画持续时间 */
.summer2 ul li.narrowing{
-webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.autumn ul {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
/* title */
.autumn ul li:nth-child(1) {
  color: #20515c;
  font-size: 2.5em;
  text-decoration: underline;
  position: absolute;
  top: 2.8em;
  left: 5%;
  z-index: 6;
}
/* descript */
.autumn ul li:nth-child(2) {
  color: #20515c;
  width: 70%;
  font-size: 1.5em;
  line-height: 22px;
  position: absolute;
  top: 7em;
  left: 5%;
  z-index: 6;
  text-align: left;
}
.autumn ul li:nth-child(2) p{
  text-align: left;
}
/* picture */
.autumn ul li:nth-child(3) {
  width: 100%;
  position: absolute;
  overflow: hidden;
  z-index: 4;
  bottom: 2em;
}
.autumn ul li:nth-child(3) img {
  width: 100%;
  /*-webkit-transform:rotate(5deg);*/
}
/* picture-mark */
.autumn ul li:nth-child(4) {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 5;
}
.autumn ul li:nth-child(4) img{
  vertical-align: middle;
}
/* 动画持续时间 */
.autumn ul li.narrowing{
-webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.winter ul {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  overflow: hidden;
}
/* title */
.winter ul li:nth-child(1) {
  color: #20515c;
  font-size: 2.5em;
  text-decoration: underline;
  position: absolute;
  top: 2.8em;
  left: 35%;
  z-index: 6;
}
/* descript */
.winter ul li:nth-child(2) {
  color: #20515c;
  width: 60%;
  font-size: 1.5em;
  line-height: 25px;
  position: absolute;
  top: 7em;
  left: 35%;
  z-index: 6;
  text-align: left;
}
.winter ul li:nth-child(2) p{
  text-align: left;
}
/* picture */
.winter ul li:nth-child(3) {
  width: 100%;
  position: absolute;
  overflow: hidden;
  z-index: 4;
  bottom: 5.8em;
}
.winter ul li:nth-child(3) img {
  width: 100%;
  /*-webkit-transform:rotate(5deg);*/
}
/* picture-mark */
.winter ul li:nth-child(4) {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 5;
}
.winter ul li:nth-child(4) img{
  vertical-align: middle;
}
/* 动画持续时间 */
.winter ul li.narrowing{
-webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.season-footer ul {
  width: 100%;
  height: 78%;
  position: absolute;
  bottom: 0em;
  display: block;
  overflow: hidden;
}
/* title */
.season-footer ul li:nth-child(2) {
  width: 100%;
  margin-top: 7em;
  font-size: 2em;
  text-align: center;
  font-weight: bold;
  color: #333;
}
/* descript */
.season-footer ul li:nth-child(3) {
  width: 70%;
  color: #333;
  font-size: 1.5em;
  line-height: 22px;
  margin-left: 15%;
  margin-top: 1em;
  text-align: center;
}

/* picture */
.season-footer ul li:nth-child(1) {
  width: 30%;
  margin-left: 35%;
}
.season-footer ul li:nth-child(1) img {
  width: 100%;
  display: block;
}




.forgotten-corner1 ul {
  width: 100%;
  height: 80%;
  position: absolute;
  padding: 0%;
  bottom: 4em;
  display: block;
  overflow: hidden;
}
/* title */
.forgotten-corner1 ul li:nth-child(2) {
  width: 88%;
  padding: 0.2em 6% 0;
  font-size: 2.5em;
  color: #fff;
  text-align: left;
}
/* descript */
.forgotten-corner1 ul li:nth-child(3) {
  width: 88%;
  padding: 0 6%;
  color: #fff;
  font-size: 1.5em;
  line-height: 24px;
  text-align: left;
}
.forgotten-corner1 ul li:nth-child(3) p{
  text-align: left;
}
/* picture */
.forgotten-corner1 ul li:nth-child(1) {
  width: 80%;
  height: auto;
  /*background: url(http://tpic.home.news.cn/xhCloudNewsPic/xhpic001/M02/88/AC/wKhTg1T5Dl4EAAAAAAAAAAAAAAA371.jpg) no-repeat;*/
  /*background:url(../images/corner2.png) no-repeat;*/
  /*background-size: contain;*/
  border: 0.5em solid #c8c8ca;
  margin-left: 8%;
}
.forgotten-corner1 ul li:nth-child(1) img {
  width: 100%;
  height: auto;
  display: block;
}

.nature ul {
  width: 88%;
  height: 85%;
  position: absolute;
  bottom: 1.5em;
  left: 6%;
  display: block;
  overflow: hidden;
}
/* title */
.nature ul li:nth-child(2) {
  width: 92%;
  height: 2em;
  line-height: 2em;
  padding: 0 5%;
  font-size: 2.5em;
  color: #fff;
  /*background: #000;
  -moz-opacity:0.6;
  opacity:0.6;
  filter:alpha(opacity=60);*/
  background: rgba(0,0,0,0.6);
  text-align: center;
  position: absolute;
  bottom: 4.7em;
  z-index: 6;
}
@media screen and (min-width:1000px){
  .nature ul li:nth-child(2){
    bottom: 5.4em;
  }
}
/* descript */
.nature ul li:nth-child(3) {
  width: 90%;
  height: 7em;
  padding: 0.5em 5%;
  font-size: 1.5em;
  line-height: 22px;
  background: #fff;
  color: #0e0e0d;
  -moz-opacity:0.8;
  opacity:0.8;
  filter:alpha(opacity=80);
  position: absolute;
  bottom: 0;
  z-index: 6;
  text-align: left;
}
.nature ul li:nth-child(3) p{
  text-align: left;
}
/* picture */
.nature ul li:nth-child(1) {
  width: 100%;
  position: absolute;
  overflow: hidden;
  z-index: 4;
  top: 0em;
}
.nature ul li:nth-child(1) img {
  width: 100%;
  display: block;
}


.city ul {
  width: 88%;
  height: 85%;
  position: absolute;
  bottom: 1.5em;
  left: 6%;
  display: block;
  overflow: hidden;
}
/* title */
.city ul li:nth-child(2) {
  width: 92%;
  height: 2em;
  line-height: 2em;
  padding: 0 5%;
  font-size: 2.5em;
  color: #fff;
  /*background: #000;
  -moz-opacity:0.6;
  opacity:0.6;
  filter:alpha(opacity=60);*/
  background: rgba(0,0,0,0.6);
  text-align: center;
  position: absolute;
  top: 0em;
  z-index: 6;
}
/* descript */
.city ul li:nth-child(3) {
  width: 90%;
  height: 7em;
  padding: 0.5em 5%;
  font-size: 1.5em;
  line-height: 22px;
  color: #0e0e0d;
  background: rgba(255,255,255,0.6);
  position: absolute;
  top: 3em;
  z-index: 6;
  text-align: left;
}
.city ul li:nth-child(3) p{
  text-align: left;
}
/* picture */
.city ul li:nth-child(1) {
  width: 100%;
  position: absolute;
  overflow: hidden;
  z-index: 4;
  bottom: 0;
}
.city ul li:nth-child(1) img {
  width: 100%;
  display: block;
}

.forgotten-corner2 ul {
  width: 100%;
  height: 78%;
  position: absolute;
  bottom: 0em;
  display: block;
  overflow: hidden;
}
/* title */
.forgotten-corner2 ul li:nth-child(2) {
  width: 100%;
  margin-top: 6em;
  font-size: 2em;
  text-align: center;
  font-weight: bold;
  color: #fff;
}
/* descript */
.forgotten-corner2 ul li:nth-child(3) {
  width: 70%;
  color: #fff;
  font-size: 1.5em;
  line-height: 22px;
  margin-left: 15%;
  margin-top: 3em;
  text-align: center;
}

/* picture */
.forgotten-corner2 ul li:nth-child(1) {
  width: 30%;
  margin-left: 35%;
}
.forgotten-corner2 ul li:nth-child(1) img {
  width: 100%;
  display: block;
}




.meeting3 ul {
  width: 80%;
  height: 43%;
  position: absolute;
  padding: 5%;
  bottom: 2em;
  left: 5%;
  background: rgba(0,0,0,0.2);
  display: block;
  overflow: hidden;
}
/* title */
.meeting3 ul li:nth-child(1) {
  width: 100%;
  font-size: 2.5em;
  color: #fff;
  text-align: center;
}
/* descript */
.meeting3 ul li:nth-child(3) {
  width: 100%;
  color: #fff;
  font-size: 1.5em;
  line-height: 24px;
  text-align: left;
}
.meeting3 ul li:nth-child(3) p{
  text-align: left;
}
/* picture */
.meeting3 ul li:nth-child(2) {
  width: 70%;
  margin-top: 0.8em;
  margin-left: 15%;
}
.meeting3 ul li:nth-child(2) img {
  width: 100%;
  display: block;
}


.meeting1 ul {
  width: 70%;
  height: 84%;
  position: absolute;
  bottom: 1.5em;
  left: 15%;
  display: block;
  overflow: hidden;
}
/* title */
.meeting1 ul li:nth-child(2) {
  width: 92%;
  padding: 4%;
  margin-top: 0.4em;
  font-size: 2em;
  color: #fff;
  text-align: right;
  background: rgba(0,0,0,0.3);
}
/* descript */
.meeting1 ul li:nth-child(3) {
  margin: 0;/**/
  width: 90%;
  color: #fff;
  font-size: 1.5em;
  line-height: 20px;
  padding: 0 5% 1em;
  text-indent: 1em;
  background: rgba(0,0,0,0.3);
  text-align: left;
}
.meeting1 ul li:nth-child(3) p{
  text-align: left;
}
/* picture */
.meeting1 ul li:nth-child(1) {
  width: 95%;
  border: 0.5em solid rgba(255,255,255,0.5);
}
.meeting1 ul li:nth-child(1) img {
  width: 100%;
  display: block;
}
/* picture-mark */
.meeting1 ul li:nth-child(4) {
  width: 100%;height: 100%;
  position: absolute;
  top: 0;
  z-index: 5;
}
.meeting1 ul li:nth-child(4) img{
  display: block;
  vertical-align: middle;
}
/* 动画持续时间 */
.meeting1 ul li.narrowing{
-webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.meeting2 ul {
  width: 80%;
  height: 68%;
  position: absolute;
  padding:5%;
  bottom: 6em;
  left: 5%;
  background: rgba(0,0,0,0.2);
  border-radius: 1em;
  display: block;
  overflow: hidden;
}
/* title */
.meeting2 ul li:nth-child(2) {
  width: 100%;
  margin-top: 0.5em;
  font-size: 2.5em;
  color: #fff;
  text-align: center;
}
/* descript */
.meeting2 ul li:nth-child(3) {
  width: 100%;
  color: #fff;
  margin-top: 0.8em;
  font-size: 1.5em;
  line-height: 24px;
  text-align: left;
}
.meeting2 ul li:nth-child(3) p{
  text-align: left;
}
/* picture */
.meeting2 ul li:nth-child(1) {
  width: 60%;
  margin-left: 20%;
}
.meeting2 ul li:nth-child(1) img {
  width: 100%;
  display: block;
}

.meeting4 ul {
  width: 80%;
  height: 60%;
  position: absolute;
  padding:5%;
  bottom: 4em;
  left: 5%;
  display: block;
  overflow: hidden;
}
/* title */
.meeting4 ul li:nth-child(1) {
  width: 100%;
  margin-top: 0.3em;
  font-size: 2em;
  color: #fff;
  text-align: center;
}
/* descript */
.meeting4 ul li:nth-child(3) {
  width: 70%;
  color: #333;
  font-size: 1.2em;
  line-height: 22px;
  margin-left: 15%;
  margin-top: 3.5em;
  text-align: center;
}

/* picture */
.meeting4 ul li:nth-child(2) {
  width: 60%;
  margin-top: 2em;
  margin-left: 20%;
}
.meeting4 ul li:nth-child(2) img {
  width: 100%;
  display: block;
}



.aestheticism1 ul {
  padding: 2em 8%;
  position: absolute;
  bottom: 6em;
  left: 0;
  display: block;
  overflow: hidden;
}
/* title */
.aestheticism1 ul li:nth-child(1) {
  color: #fff;
  font-size: 2em;
  padding: 0.1em;
  border :1px solid #fff;
  text-align: center;
}
/* descript */
.aestheticism1 ul li:nth-child(2) {
  color: #fff;
  width: 100%;
  font-size: 1.5em;
  line-height: 40px;
}

.aestheticism2 ul {
  width: 80%;
  height: 85%;
  position: absolute;
  bottom: 1.5em;
  left: 10%;
  display: block;
  overflow: hidden;
}
/* title */
.aestheticism2 ul li:nth-child(2) {
  width: 92%;
  padding: 4%;
  margin-top: 0.5em;
  font-size: 2em;
  color: #fff;
  background: rgba(0,0,0,0.3);
}
/* descript */
.aestheticism2 ul li:nth-child(4) {
  width: 92%;
  color: #fff;
  font-size: 1.5em;
  line-height: 24px;
  padding: 4%;
  background: rgba(0,0,0,0.3);
  margin-top: -1px;
  text-align: left;
}
.aestheticism2 ul li:nth-child(4) p{
  text-align: left;
  text-indent: 1em;
}
/* picture */
.aestheticism2 ul li:nth-child(1) {
  width: 95%;
  border: 0.5em solid #fff;
}
.aestheticism2 ul li:nth-child(1) img {
  width: 100%;
  display: block;
}
/* line */
.aestheticism2 ul li:nth-child(3) {
  width: 90%;
  margin: 0 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
}

.aestheticism3 ul {
  width: 80%;
  height: 80%;
  position: absolute;
  bottom: 1.5em;
  left: 10%;
  display: block;
  overflow: hidden;
}
/* title */
.aestheticism3 ul li:nth-child(2) {
  width: 90%;
  padding: 5%;
  margin-top: 4em;
  font-size: 2em;
  color: #fff;
  background: rgba(0,0,0,0.3);
  text-align: left;
}
/* descript */
/*.aestheticism3 ul li:nth-child(3) {
  width: 90%;
  color: #fff;
  font-size: 1.5em;
  line-height: 28px;
  padding: 5%;
  background: rgba(0,0,0,0.3);
}
.aestheticism3 ul li:nth-child(4) p{
  text-align: left;
  text-indent: 1em;
}*/
/* picture */
.aestheticism3 ul li:nth-child(1) {
  width: 95%;
  border: 0.5em solid #fff;
}
.aestheticism3 ul li:nth-child(1) img {
  width: 100%;
  display: block;
}


.aestheticism4 ul {
  width: 80%;
  height: 75%;
  position: absolute;
  top: 6em;
  padding:5%;
  left: 5%;
  display: block;
  overflow: hidden;
}
/* picture */
.aestheticism4 ul li:nth-child(1) {
  width: 90%;
  border: 5px solid #fff;
}
.aestheticism4 ul li:nth-child(1) img {
  width: 100%;
  display: block;
}


.aestheticism5 ul {
  width: 100%;
  height: 78%;
  position: absolute;
  bottom: 0em;
  display: block;
  overflow: hidden;
}
/* title */
.aestheticism5 ul li:nth-child(2) {
  width: 90%;
  margin-top: 7em;
  margin-left: 5%;
  padding: 1em 0 0.8em 0;
  font-size: 2em;
  text-align: center;
  font-weight: bold;
  color: #fff;
  background: rgba(0,0,0,0.3);
}
/* descript */
.aestheticism5 ul li:nth-child(3) {
  width: 90%;
  color: #d0d0d0;
  font-size: 1.5em;
  line-height: 22px;
  margin-left: 5%;
  text-align: center;
  background: rgba(0,0,0,0.3);
  padding-bottom: 1em;
}
/* picture */
.aestheticism5 ul li:nth-child(1) {
  width: 30%;
  margin-left: 35%;
}
.aestheticism5flower-bird5 ul li:nth-child(1) img {
  width: 100%;
  display: block;
}




.notes1 ul {
  width: 90%;
  height: 72%;
  position: absolute;
  bottom: 1.5em;
  left: 5%;
  display: block;
  overflow: hidden;
}
/* title */
.notes1 ul li:nth-child(1) {
  width: 75%;
  margin-top: 16%;
  font-size: 2em;
  color: #fff;
  line-height: 1.4em;
  font-weight: bold;
  text-align: left;
}

.notes2 ul {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  overflow: hidden;
}
/* title */
.notes2 ul li:nth-child(2) {
  width: 86%;
  color: #000;
  font-size: 2.5em;
  position: absolute;
  bottom: 6em;
  left: 7%;
  z-index: 6;
}
/* descript */
.notes2 ul li:nth-child(3) {
  color: #000;
  width: 86%;
  font-size: 1.6em;
  line-height: 24px;
  position: absolute;
  bottom: 1.5em;
  left: 7%;
  z-index: 6;
  text-align: left;
  height: 8em;
}
.notes2 ul li:nth-child(3) p{
  text-align: left;
}
/* picture */
.notes2 ul li:nth-child(1) {
  width: 100%;
  position: absolute;
  overflow: hidden;
  z-index: 4;
  top: 7.2em;
}
.notes2 ul li:nth-child(1) img {
  width: 100%;
}
/* picture-mark */
.notes2 ul li:nth-child(4) {
  width: 100%;height: 100%;
  position: absolute;
  top: 0;
  z-index: 5;
  /*background: url(http://tpic.home.news.cn/xhCloudNewsPic/xhpic001/M02/88/AC/wKhTg1T5Dl4EAAAAAAAAAAAAAAA371.jpg) no-repeat;*/
  /*background:url(../images/notes2.png) no-repeat;*/
  /*background-size: contain;*/
}
.notes2 ul li:nth-child(4) img{
  display: block;
  vertical-align: middle;
}
/* 动画持续时间 */
.notes2 ul li.narrowing{
-webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.notes3 ul {
  width: 100%;
  height: 78%;
  position: absolute;
  bottom: 0.5em;
  display: block;
  overflow: hidden;
}
/* title */
.notes3 ul li:nth-child(2) {
  width: 100%;
  margin-top: 7em;
  font-size: 2em;
  text-align: center;
  font-weight: bold;
  color: #333;
}
/* descript */
.notes3 ul li:nth-child(3) {
  width: 70%;
  color: #666;
  font-size: 1.5em;
  line-height: 22px;
  margin-left: 15%;
  margin-top: 1.5em;
  text-align: center;
}

/* picture */
.notes3 ul li:nth-child(1) {
  width: 30%;
  margin-left: 35%;
}
.notes3 ul li:nth-child(1) img {
  width: 100%;
  display: block;
}




.joy-cartoon1 ul {
  width: 90%;
  height: 75%;
  padding: 2em 5%;
  position: absolute;
  bottom: 4em;
  left: 0;
  display: block;
}
/* title */
.joy-cartoon1 ul li:nth-child(1) {
  width: 90%;
  padding: 6%;
  color: #ef4d50;
  font-size: 2.5em;
  /*background: url(../images/cartoon-bg.png) no-repeat;*/
  background: url(http://tpic.home.news.cn/xhCloudNewsPic/xhpic001/M01/8D/52/wKhTglT9VgsEAAAAAAAAAAAAAAA806.jpg) no-repeat;
  background-size: contain;
  margin-top: 2em;
  text-align: left;
}
/* descript */
.joy-cartoon1 ul li:nth-child(2) {
  color: #ef4d50;
  width: 100%;
  font-size: 1.5em;
  line-height: 25px;
  margin-top: 2em;
  text-align: left;
}
.joy-cartoon1 ul li:nth-child(2) p{
  text-align: left;
}

.joy-cartoon2 ul {
  width: 80%;
  height: 84%;
  position: absolute;
  bottom: 1.5em;
  left: 10%;
  display: block;
  overflow: hidden;
}
/* title */
.joy-cartoon2 ul li:nth-child(3) {
  width: 94%;
  padding: 3%;
  font-size: 2em;
  font-weight: bold;
  color: #ef4d50;
  text-align: left;
}
/* descript */
.joy-cartoon2 ul li:nth-child(4) {
  width: 90%;
  color: #ef4d50;
  font-size: 1.5em;
  line-height: 24px;
  padding: 0 5%;
  text-align: left;
}
.joy-cartoon2 ul li:nth-child(4) p{
  text-align: left;
}
/* picture */
.joy-cartoon2 ul li:nth-child(1) {
  width: 100%;
  margin-top: 0.3em;
}
.joy-cartoon2 ul li:nth-child(1) img {
  width: 100%;
  border-radius: 1em;
  display: block;
}
/* 图片上遮罩 */
.joy-cartoon2 ul li:nth-child(2){
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
  /*background:url(../images/cartoon-zs.png) no-repeat;*/
  background: url(http://tpic.home.news.cn/xhCloudNewsPic/xhpic001/M08/8D/5D/wKhTglT9WksEAAAAAAAAAAAAAAA389.jpg) no-repeat;
  background-size: contain;
} 

.joy-cartoon3 ul {
  width: 100%;
  height: 78%;
  position: absolute;
  bottom: 0.5em;
  display: block;
  overflow: hidden;
}
/* title */
.joy-cartoon3 ul li:nth-child(2) {
  width: 100%;
  margin-top: 7em;
  font-size: 2em;
  text-align: center;
  font-weight: bold;
  color: #333;
}
/* descript */
.joy-cartoon3 ul li:nth-child(3) {
  width: 70%;
  color: #666;
  font-size: 1.5em;
  line-height: 22px;
  margin-left: 15%;
  margin-top: 1.5em;
  text-align: center;
}

/* picture */
.joy-cartoon3 ul li:nth-child(1) {
  width: 30%;
  margin-left: 35%;
}
.joy-cartoon3 ul li:nth-child(1) img {
  width: 100%;
  display: block;
}




.zen-tea1 ul {
  width: 100%;
  height: 90%;
  position: absolute;
  bottom: 0.5em;
  display: block;
  overflow: hidden;
}
/* title */
.zen-tea1 ul li:nth-child(1) {
  width: 5%;
  font-size: 2.5em;
  color: #333;
  position: absolute;
  right: 1.2em;
  top: 0;
}
/* descript */
.zen-tea1 ul li:nth-child(2) {
  width: 5%;
  color: #666;
  font-size: 1.5em;
  position: absolute;
  right: 3.5em;
  top: 0;
}

/* picture */
.zen-tea1 ul li:nth-child(3) {
  width: 70%;
  margin-left: 15%;
  margin-top: 14em;
}
.zen-tea1 ul li:nth-child(3) img {
  width: 100%;
  display: block;
  border-radius: 50%;
  border: 1px solid #9a9687;
}




.zen-tea2 ul {
  width: 100%;
  height: 90%;
  position: absolute;
  bottom: 0.5em;
  display: block;
  overflow: hidden;
}
/* picture */
.zen-tea2 ul li:nth-child(1) {
  width: 80%;
  margin-left: 10%;
  margin-top: 7.5em;
}
.zen-tea2 ul li:nth-child(1) img {
  width: 100%;
  display: block;
  border-radius: 50%;
  border: 1px solid #9a9687;
}




.zen-tea3 ul {
  width: 100%;
  height: 80%;
  position: absolute;
  bottom: 0.5em;
  display: block;
  overflow: hidden;
}
/* title */
.zen-tea3 ul li:nth-child(1) {
  width: 80%;
  margin-left: 10%;
  font-size: 4em;
  color: #344644;
  text-align: center;
}
/* descript */
.zen-tea3 ul li:nth-child(2) {
  width: 13em;
  height: 10em;
  color: #344644;
  font-size: 2em;
  padding-top: 3em;
  margin: 1em auto 0;
  background: #879c9a;
  border: 1px solid #9a9687;
  border-radius: 50%;
  text-align: center;
}
.zen-tea3 ul li:nth-child(2) p{
  text-align: center;
}




.zen-tea4 ul {
  width: 100%;
  height: 90%;
  position: absolute;
  bottom: 0.5em;
  display: block;
  overflow: hidden;
}
/* picture */
.zen-tea4 ul li:nth-child(1) {
  width: 80%;
  margin-left: 10%;
  margin-top: 2em;
}
.zen-tea4 ul li:nth-child(1) img {
  width: 100%;
  display: block;
  border-radius: 50%;
  border: 1px solid #9a9687;
}
/* title */
.zen-tea4 ul li:nth-child(2) {
  width: 80%;
  font-size: 3em;
  color: #344644;
  margin-left: 10%;
}
/* descript */
.zen-tea4 ul li:nth-child(3) {
  width: 80%;
  color: #344644;
  font-size: 1.5em;
  margin-left: 10%;
  margin-top: 1em;
}
.zen-tea4 ul li:nth-child(3) p{
  text-align: left;
}




.zen-tea5 ul {
  width: 100%;
  height: 75%;
  position: absolute;
  bottom: 0em;
  display: block;
  overflow: hidden;
}
/* title */
.zen-tea5 ul li:nth-child(2) {
  width: 100%;
  margin-top: 7em;
  font-size: 2em;
  text-align: center;
  font-weight: bold;
  color: #333;
}
/* descript */
.zen-tea5 ul li:nth-child(3) {
  width: 80%;
  color: #7f7f7f;
  font-size: 1.5em;
  line-height: 22px;
  margin-left: 10%;
  margin-top: 0.8em;
  text-align: center;
}

/* picture */
.zen-tea5 ul li:nth-child(1) {
  width: 30%;
  margin-left: 35%;
}
.zen-tea5 ul li:nth-child(1) img {
  width: 100%;
  display: block;
}




.almighty1 ul {
  padding: 2em 0;
  position: absolute;
  bottom: 35%;
  left: 0;
  display: block;
}
/* title */
.almighty1 ul li:nth-child(1) {
  width: 80%;
  color: #fff;
  font-size: 4em;
  background: rgba(0,0,0,0.3);
  padding: 0.3em 0 0.3em 0.3em;
}


.almighty2 ul {
  width: 78%;
  position: absolute;
  bottom: 35%;
  left: 8%;
  padding: 2%;
  display: block;
  /*-webkit-border-image: url(../images/border2.png) 0 0 stretch;*/
  -webkit-border-image: url(http://tpic.home.news.cn/xhCloudNewsPic/xhpic001/M02/92/67/wKhTg1T_6OYEAAAAAAAAAAAAAAA365.jpg) 0 0 stretch;
}
/* title */
.almighty2 ul li:nth-child(1) {
  width: 88%;
  padding: 0.5em 6%;
  color: #fff;
  font-size: 3em;
  background: rgba(0,0,0,0.3);
}
/* descript */
.almighty2 ul li:nth-child(2) {
  color: #fff;
  width: 88%;
  font-size: 1.5em;
  line-height: 24px;
  text-align: left;
  background: rgba(0,0,0,0.3);
  padding: 0.3em 6% 0.8em;
}


.almighty3 ul {
  width: 80%;
  position: absolute;
  top: 5.5em;
  left: 8%;
  padding: 2%;
  display: block;
  /*-webkit-border-image: url(../images/border2.png) 0 0 stretch;*/
  -webkit-border-image: url(http://tpic.home.news.cn/xhCloudNewsPic/xhpic001/M02/92/67/wKhTg1T_6OYEAAAAAAAAAAAAAAA365.jpg) 0 0 stretch;
}
/* title */
.almighty3 ul li:nth-child(1) {
  width: 88%;
  padding: 0.5em 6%;
  color: #fff;
  font-size: 3em;
  background: rgba(0,0,0,0.3);
}
/* descript */
.almighty3 ul li:nth-child(2) {
  color: #fff;
  width: 88%;
  font-size: 1.5em;
  line-height: 24px;
  text-align: left;
  background: rgba(0,0,0,0.3);
  padding: 0.3em 6% 0.8em;
}


.almighty4 ul {
  width: 80%;
  position: absolute;
  bottom: 3em;
  left: 8%;
  padding: 2%;
  display: block;
  /*-webkit-border-image: url(../images/border2.png) 0 0 stretch;*/
  -webkit-border-image: url(http://tpic.home.news.cn/xhCloudNewsPic/xhpic001/M02/92/67/wKhTg1T_6OYEAAAAAAAAAAAAAAA365.jpg) 0 0 stretch;
}
/* title */
.almighty4 ul li:nth-child(1) {
  width: 88%;
  padding: 0.5em 6%;
  color: #fff;
  font-size: 3em;
  background: rgba(0,0,0,0.3);
}
/* descript */
.almighty4 ul li:nth-child(2) {
  color: #fff;
  width: 88%;
  font-size: 1.5em;
  line-height: 24px;
  text-align: left;
  background: rgba(0,0,0,0.3);
  padding: 0.3em 6% 0.8em;
}


.almighty5 ul {
  width: 100%;
  height: 78%;
  position: absolute;
  bottom: 0em;
  display: block;
  overflow: hidden;
}
/* title */
.almighty5 ul li:nth-child(2) {
  width: 100%;
  margin-top: 7em;
  font-size: 2em;
  text-align: center;
  font-weight: bold;
  color: #fff;
}
/* descript */
.almighty5 ul li:nth-child(3) {
  width: 90%;
  color: #fff;
  font-size: 1.5em;
  line-height: 22px;
  margin-left: 5%;
  margin-top: 0.5em;
  text-align: center;
}

/* picture */
.almighty5 ul li:nth-child(1) {
  width: 30%;
  margin-left: 35%;
}
.almighty5 ul li:nth-child(1) img {
  width: 100%;
  display: block;
}




.almighty5 ul {
  width: 100%;
  height: 78%;
  position: absolute;
  bottom: 0em;
  display: block;
  overflow: hidden;
}
/* title */
.almighty5 ul li:nth-child(2) {
  width: 100%;
  margin-top: 7em;
  font-size: 2em;
  text-align: center;
  font-weight: bold;
  color: #fff;
}
/* descript */
.almighty5 ul li:nth-child(3) {
  width: 90%;
  color: #fff;
  font-size: 1.5em;
  line-height: 22px;
  margin-left: 5%;
  margin-top: 0.5em;
  text-align: center;
}

/* picture */
.almighty5 ul li:nth-child(1) {
  width: 30%;
  margin-left: 35%;
}
.almighty5 ul li:nth-child(1) img {
  width: 100%;
  display: block;
}




.sound-pic1 ul {
  width: 100%;
  padding: 2em 0;
  position: absolute;
  bottom: 10em;
  left: 0;
  display: block;
}
/* title */
.sound-pic1 ul li:nth-child(1) {
  width: 65%;
  color: #333;
  font-size: 2.5em;
  padding: 5% 5% 5% 20%;
  text-align: left;
  font-weight: bold;
  background: rgba(70,70,70,0.3);
}
/* descript */
.sound-pic1 ul li:nth-child(2) {
  color: #666;
  width: 80%;
  margin-top: 0.5em;
  margin-left: 10%;
  font-size: 1.5em;
  line-height: 22px;
  text-align: left;
}
.sound-pic1 ul li:nth-child(2) p{
  text-align: left;
}

/*.sound-pic2 ul {
  width: 100%;
  padding: 2em 0;
  position: absolute;
  bottom: 10em;
  left: 0;
  display: block;
}*/
/* title */
/*.sound-pic2 ul li:nth-child(1) {
  width: 65%;
  color: #333;
  font-size: 2.5em;
  padding: 5% 5% 5% 20%;
  text-align: left;
  font-weight: bold;
  background: rgba(70,70,70,0.3);
}*/
/* title_ */
/*.sound-pic2 ul li:nth-child(2) {
  width: 65%;
  padding: 0 5% 5% 20%;
  font-size: 1.5em;
  color: #666;
  background: rgba(70,70,70,0.3);
}*/
/* descript */
/*.sound-pic2 ul li:nth-child(3) {
  color: #666;
  width: 80%;
  margin-top: 0.5em;
  margin-left: 10%;
  font-size: 1.5em;
  line-height: 22px;
  text-align: center;
}*/
/*.sound-pic2 ul li:nth-child(3) p{
  text-align: center;
}*/

.sound-pic3 ul {
  width: 50.6%;
  height: 48%;
  padding: 5%;
  position: absolute;
  top: 9em;
  left: 19.5%;
  background: rgba(255,255,255,0.5);
  display: block;
}
/* title */
.sound-pic3 ul li:nth-child(1) {
  width: 100%;
  color: #333;
  font-size: 2.5em;
  text-align: left;
  font-weight: bold;
}
/* descript */
.sound-pic3 ul li:nth-child(2) {
  color: #666;
  font-size: 1.4em;
  line-height: 22px;
  text-align: left;
}
.sound-pic3 ul li:nth-child(2) p{
  text-align: left;
}

.sound-pic4 ul {
  width: 70%;
  padding: 5%;
  position: absolute;
  top: 10em;
  left: 10%;
  background: rgba(255,255,255,0.5);
  display: block;
}
/* title */
.sound-pic4 ul li:nth-child(1) {
  width: 100%;
  color: #333;
  font-size: 2.5em;
  text-align: left;
  font-weight: bold;
}
/* descript */
.sound-pic4 ul li:nth-child(2) {
  color: #666;
  font-size: 1.4em;
  line-height: 22px;
  text-align: left;
  margin-top: 0.8em;
}
.sound-pic4 ul li:nth-child(2) p{
  text-align: left;
}

.sound-pic5 ul {
  width: 100%;
  height: 75%;
  position: absolute;
  bottom: 0em;
  display: block;
  overflow: hidden;
}
/* title */
.sound-pic5 ul li:nth-child(2) {
  width: 100%;
  margin-top: 7em;
  font-size: 2em;
  text-align: center;
  color: #fff;
}
/* descript */
.sound-pic5 ul li:nth-child(3) {
  width: 80%;
  color: #fff;
  font-size: 1.5em;
  line-height: 22px;
  margin-left: 10%;
  margin-top: 0.8em;
  text-align: center;
}

/* picture */
.sound-pic5 ul li:nth-child(1) {
  width: 30%;
  margin-left: 35%;
}
.sound-pic5 ul li:nth-child(1) img {
  width: 100%;
  display: block;
}




.technology1 ul {
  width: 90%;
  padding: 2em 5%;
  position: absolute;
  bottom: 10em;
  left: 0;
  display: block;
}
/* title */
.technology1 ul li:nth-child(1) {
  width: 80%;
  padding: 0 5%;
  color: #333;
  font-size: 2.5em;
  text-align: left;
  font-weight: bolder;
}
/* descript */
.technology1 ul li:nth-child(2) {
  color: #666;
  width: 80%;
  margin-top: 0.8em;
  margin-left: 5%;
  font-size: 1.5em;
  line-height: 22px;
  text-align: left;
}
.technology1 ul li:nth-child(2) p{
  text-indent: 1em;
  text-align: left;
}


.technology3 ul {
  width: 80%;
  padding: 5%;
  position: absolute;
  top: 12em;
  left: 5%;
  display: block;
}
/* title */
.technology3 ul li:nth-child(1) {
  width: 100%;
  color: #333;
  font-size: 2.5em;
  text-align: left;
  font-weight: bold;
}
/* descript */
.technology3 ul li:nth-child(2) {
  color: #666;
  font-size: 1.4em;
  line-height: 22px;
  text-align: left;
  margin-top: 0.8em;
}
.technology3 ul li:nth-child(2) p{
  text-indent: 1em;
  text-align: left;
}

.technology4 ul {
  width: 80%;
  padding: 5%;
  position: absolute;
  bottom: 8em;
  left: 5%;
  display: block;
}
/* title */
.technology4 ul li:nth-child(1) {
  color: #f2a52e;
  font-size: 2.5em;
  text-align: left;
  font-weight: bold;
}
/* descript */
.technology4 ul li:nth-child(2) {
  clear: both;
  color: #cccc37;
  font-size: 1.4em;
  line-height: 22px;
  text-align: left;
  margin-top: 0.8em;
}
.technology4 ul li:nth-child(2) p{
  text-align: left;
}

.technology5 ul {
  width: 100%;
  height: 75%;
  position: absolute;
  bottom: 0em;
  display: block;
  overflow: hidden;
}
/* title */
.technology5 ul li:nth-child(2) {
  width: 100%;
  margin-top: 7em;
  font-size: 2em;
  text-align: center;
  color: #fff;
}
/* descript */
.technology5 ul li:nth-child(3) {
  width: 80%;
  color: #fff;
  font-size: 1.5em;
  line-height: 22px;
  margin-left: 10%;
  margin-top: 0.8em;
  text-align: center;
}

/* picture */
.technology5 ul li:nth-child(1) {
  width: 30%;
  margin-left: 35%;
}
.technology5 ul li:nth-child(1) img {
  width: 100%;
  display: block;
}




.science1 ul {
  width: 90%;
  padding: 2em 5%;
  position: absolute;
  bottom: 10em;
  left: 0;
  display: block;
}
/* title */
.science1 ul li:nth-child(1) {
  width: 50%;
  padding: 1%;
  color: #fff;
  font-size: 2.5em;
  text-align: center;
  font-weight: bolder;
  border: 1px solid rgba(255,255,255,0.3);
  margin: 0 auto;
  position: absolute;
  top: -0.3em;
  left: 50%;
  margin-left: -26%;
}
/* descript */
.science1 ul li:nth-child(2) {
  color: #fff;
  width: 80%;
  margin-top: 0.8em;
  margin-left: 5%;
  font-size: 1.5em;
  line-height: 22px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.3);
  margin: 0 auto;
  padding: 4%;
}
.science1 ul li:nth-child(2) p{
  text-indent: 1em;
  text-align: left;
}


.science3 ul {
  width: 70%;
  height: 50%;
  padding: 5%;
  position: absolute;
  top: 10em;
  left: 10%;
  display: block;
  background: rgba(255,255,255,0.3);
}
/* title */
.science3 ul li:nth-child(1) {
  width: 70%;
  color: #333;
  padding: 3% 0;
  font-size: 2.5em;
  text-align: center;
  font-weight: bold;
  border: 1px solid rgba(255,255,255,0.3);
  margin: 0 auto;
}
/* descript */
.science3 ul li:nth-child(2) {
  width: 74%;
  color: #666;
  font-size: 1.4em;
  line-height: 22px;
  text-align: left;
  margin-top: 0.8em;
  margin-left: 13%;
}
.science3 ul li:nth-child(2) p{
  text-align: left;
}

.science4 ul {
  width: 80%;
  padding: 5%;
  position: absolute;
  top: 61%;
  left: 5%;
  display: block;
}
/* title */
.science4 ul li:nth-child(1) {
  width: 60%;
  color: #fff;
  font-size: 2.5em;
  padding: 2% 0;
  text-align: center;
  font-weight: bold;
  border: 1px solid rgba(255,255,255,0.3);
  margin: 0 auto 1em;
}
/* descript */
.science4 ul li:nth-child(2) {
  color: #fff;
  font-size: 1.4em;
  line-height: 22px;
  text-align: left;
  margin-top: 0.8em;
}
.science4 ul li:nth-child(2) p{
  text-align: left;
}

.science5 ul {
  width: 100%;
  height: 75%;
  position: absolute;
  bottom: 0em;
  display: block;
  overflow: hidden;
}
/* title */
.science5 ul li:nth-child(2) {
  width: 100%;
  margin-top: 7em;
  font-size: 2em;
  text-align: center;
  color: #333;
}
/* descript */
.science5 ul li:nth-child(3) {
  width: 80%;
  color: #666;
  font-size: 1.5em;
  line-height: 22px;
  margin-left: 10%;
  margin-top: 0.8em;
  text-align: center;
}

/* picture */
.science5 ul li:nth-child(1) {
  width: 30%;
  margin-left: 35%;
}
.science5 ul li:nth-child(1) img {
  width: 100%;
  display: block;
}




.video1bg{
  width: 100%; 
  height: 100%;
}
.video1Cont{
  width: 80%;
  left: 10%;
  position: relative;
  z-index: 1;
  margin-top: 5em

}
.video1 video{width: 100%}
.video1_word{
  position: relative; 
  width: 70%;
  left: 10%;
  margin-top: 1.2em;
  background: #111111;
  opacity: 0.7;
  padding: 4% 5%;
  font-size: 1.4em;
  line-height: 1.4em
}
.video1_word .Vtitle{
  font-size: 1.2em;
  width: 90%;
  padding:2% 5%;
  margin-bottom: 0.5em;
}