.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;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-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-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-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-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-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 {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-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-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-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-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-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;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    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 {
  from {
    -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);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -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);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -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);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -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);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -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 {
  from, to {
    -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 headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-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);
  }

  to {
    -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);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -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);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -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);
  }

  to {
    -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 {
  from {
    -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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-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);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-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);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    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);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    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);
  }

  to {
    -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);
  }

  to {
    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);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }


  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -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;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -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;
  }

  to {
    -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 {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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);
  }

  to {
    -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 {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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);
  }

  to {
    -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 {
  from {
    -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;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -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;
  }

  to {
    -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-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -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;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -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;
  }

  to {
    -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-keyframes lightSpeedIn {
  from {
    -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;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -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;
  }

  to {
    -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 {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -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;
  }

  to {
    -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;
  }

  to {
    -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 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    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 {
  from {
    opacity: 1;
  }

  to {
    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 {
  from {
    opacity: 1;
  }

  to {
    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 {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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 {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
  /*  visibility: hidden;*/
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
/*=========================================================
1.LAYOUTBEREICHE
muster 				  (100%)
  container 		  (100%)
      site_holder     (Websiten-Breite max-width:1150px, zentriert, min-padding: links/rechts)
      | header 		  (100% von site_holder)
      | topTD  		  (100% von header)
      response 		  (100% von site_holder)
      | h-navi 		  (100% von response)
      | Navi_H 		  (100% von response)
      
      global_1 		  (100% von site_holder)
   
      contents        (100% von site_holder)
      | content_row   (100% von contents)
          contentTD   (65%  von contents)    
          global_2    (35%  von contents) 
      
      global_3 		  (100% von site_holder)
      
      bottom_holder   (100% von site_holder)
      | global_4      (100% von bottom_holder)
      
footer  			  (100%)
      bottomTD_holder (Websiten-Breite 1150px, zentriert, kein padding links/rechts)
      bottomTD        (100% von site_holder)
Grids

========================= nunoserver ================================*/
.muster{
	width:100%;
	height:auto;
}
.container{	
	width:100%;
	height:auto;
/*background:url("images/bg1.jpg") 50% -27px repeat-x;*/
	margin:0 auto;
	/*padding-bottom:25px;*/
}
.site_holder, .bottomTD_holder{
	max-width:1150px;
	width:auto;
	margin:0 auto;
	padding:0 10px;
}
.top_abs{
	padding-top:80px;
}

.header{
    position: fixed;	
background: #ffffff; /* Old browsers */
background: -moz-linear-gradient(top,  #ffffff 1%, #ffffff 65%, #354a6b 65%, #354a6b 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #ffffff 1%,#ffffff 65%,#354a6b 65%,#354a6b 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #ffffff 1%,#ffffff 65%,#354a6b 65%,#354a6b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#354a6b',GradientType=0 ); /* IE6-9 */
    width: 100%;	
	height:140px; 
	box-shadow:0 0 15px #333;
	display:block;
    top: 0px;
    z-index: 1000;
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    transition: height 0.3s;
    line-height:140px;	
		}
		#topTD{ 
		height:85px; 
			margin: 10px 0 0 0;
		}
.response{
	clear:left;
	display:table !important;
	float: right;
/*	display:table;*/
		}
		#Navi_H {
		width:100%;
		height:55px;
		}
.Searchbox {
    line-height: 50px;
    position: absolute;
    right: 0;
}
#global_1 {
    width: 100%;
    margin: 25px auto;
    display: table;
    max-width: 1150px;
    height: auto;
    min-height: 100px;
}
div.percent_50 {
    float: left;
    box-sizing: border-box;
}
span.heading_span {
    display: block;
    font-size: 24px;
    padding: 25px 0;
}
#global_1 div.percent_50:nth-child(2) span.heading_span {
    padding: 25px 10px;
    color: #fff;
}
	#global_1 .percent_50:first-child ul li {
    line-height: 20px;
    padding-bottom: 10px;
}
.contents {
    width: 100%;
    margin: 90px auto;
    display: block;
    height: 280px;
}
.content_row {
    width:100%;
	display:table;
}
.content_TD { /* einspaltiges Template */
    max-width: 1150px;
	width:99%;
    height: auto;
    min-height: 300px;	
	padding: 0px 0px 25px 0px;
	box-sizing: border-box !important;
	font-size: 14px;
	line-height:18px;
	margin: 0 auto;
}
.content_TD .percent_50{ 
	float:left;	
    border: 1px solid #CECECE;
    background:url("images/content_bg.png")repeat scroll ;
	padding: 5px 10px 15px 15px;
    font-size: 14px;
	border-radius: 8px !important;
	box-sizing: border-box !important;
	line-height:18px;
	margin: 0 2% 15px 0;
}
.content_TD .percent_BG, .container .percent_BG{ 
    border: 1px solid #CECECE;
    background:url("images/content_bg.png")repeat scroll ;
	padding: 5px 10px 15px 15px;
    font-size: 14px;
	border-radius: 8px !important;
	box-sizing: border-box !important;
	line-height:18px;
	margin: 0 2% 15px 0;
}
.bottom_holder .percent_100, .middle_holder .percent_100{ 
	padding: 5px 10px 15px 15px;
    font-size: 14px;
	box-sizing: border-box !important;
	line-height:18px;
	margin: 0 2% 15px 0;
	color:#fff;
}
.middle_holder .percent_100{ 
	padding: 5px 0px 15px 0px;
}
.bottom_holder .percent_100 span.format, .middle_holder .percent_100 span.format{ 
    font-size: 24px;
	padding:40px 0 15px 0;
}
.middle_holder .percent_100 span.format {
    font-size: 20px;
}

.contentTD { /* zweispaltiges Template */
	width:74%;	
    height: auto;
    min-height: 300px;
    float:left;
    background:url('images/content_bg.png') repeat scroll;
    border: 1px solid #CECECE;
    border-radius: 8px;
    font-size: 14px;
	line-height:18px;
    margin-right: 1%;
    padding: 15px 15px 25px 15px;
	margin-botom:35px;
}
#cms_65 .site_holder{
	max-width: 100%;
	margin: 0 auto;
}
#cms_65 .contentTD, #cms_66 .contentTD {
    width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
}#global_5 .WIDGET.percent_100, .home .WIDGET.percent_100 {
    max-height: 650px !important;
}
.contentTD div, .content_TD div{
    float: left;
}
.content_TD{
	box-sizing:border-box;
}
span.content_header {
    min-height: 60px;
    display: block;
    line-height: 60px;
    font-size: 19px;
    padding: 0 10px;
    margin: 15px 0 25px;
    background: rgba(255, 255, 255, 0.6);
    text-align: center;
	font-family:'amerigo_btroman';
	transition: all .6s ease;
		border-style: double;
    border-color: #ccc;
    border-top-style: double;
    border-left: none;
    border-right: none;
}
#global_3 span.content_header, .percent_100 a span.content_header {
    min-height: 60px;
    display: block;
    line-height: 60px;
    font-size: 22px;
    padding: 0 10px;
    margin: 15px 0 25px;
    background: rgba(255, 178, 0, 0.9);
    text-align: center;
	font-family:'amerigo_btroman';
	transition: all .6s ease;
	color:#333;
	margin-bottom: 60px;
	border-style: double;
    border-color: #db9743;
    border-top-style: double;
    border-left: none;
    border-right: none;
}
.dopo_holder .percent_100 a span.content_header{
	margin: 45px 0;
}
#global_3 span.content_header:hover, .percent_100 a span.content_header:hover {
    background: rgba(255, 255, 255, 0.9);
	color:#666;
	font-size:25px;
}
span.underscript {
    font-size: 14px;
    line-height: 14px;
    display: inline-block;
    padding: 0 0 15px 0;
}
div.last_noPad, div.R_noPad {
    margin-right: 0 !important;
}
#global_2 { /* linke::rechte- Navigation */
  min-width:190px;	
  width: 25%;
  float:right;
  min-height:80px;
  padding-bottom:25px;
}
#cms_66 #global_2 { /* Startseite Idividuall */
  width: 100%;
  min-height:135px;
  float: none;
	padding-bottom: 0;
}
#global_2 div.WIDGET {
    width: 100% !important;
    position: relative;
    text-align: left;
}
.dopo_holder #global_2{
	width:100%;
    min-height: 100px;
    margin: 0 auto;
    padding-bottom: 15px;
	float:none;
}
ul.left_navi_list {
    width: 100%;
}
ul.sub.transi.sublevel{
	position:inherit;
	margin-left:20px !important;
}
#bottomTD .percent_50:first-child ul li {
    float: left;
}
.percent_50.R_noPad {
    text-align: right;
}
	  /* UL NAV Left */
	  span.boldy{ /*  Überschrift Navi  */
	  color: #727272;
	  font-family: 'amerigo_btroman';
	  font-size:22px;
	  line-height:22px;
	  text-transform:uppercase;
	  margin:0 0 15px 22px;
	  }
	  ul.left_navi_list {
	  float: right;
	  margin: 10px 0;
	  padding: 0;
	  }
	  /* UL NAV Left End */
/* Footer */
.footer{
    min-height:100px;
	height:auto;
    width:100%;	
    color:#CCC;
}
.footer{
background: #03181B;
width:100%;
margin:0 auto;
min-height:100px;
clear:left;
}
.bottomTD_holder{ /* SIZE s. o. site_holder*/
}
.bottom_holder,  #cms_115 .middle_holder {
background: url("images/bg_cont1.gif") repeat-x scroll center top #FFFFFF;
padding:25px 0;
min-height:450px;
}
#cms_115 .middle_holder, #cms_155 .dopo_holder{
padding:35px 0 25px 0;
min-height:400px;
}
#cms_115 .bottom_holder, #cms_115 .middle_holder{
background: #408AB2;
    -webkit-box-shadow: inset 0 20px 20px -20px rgba(0,0,0,0.8);
    -moz-box-shadow: inset 0 20px 20px -20px rgba(0,0,0,0.8);
    box-shadow: inset 0 20px 20px -20px rgba(0,0,0,0.8);
}
#cms_115 #global_4{
	background: #408AB2;
}
#cms_115 #global_4 div:first-child{
	background: #408AB2;
}
.bottomTD{
width:100%;
background:none transparent;
min-height:100px;
}
/* Lexikon Footer */
#global_3 {
    min-height: 80px;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 15px;
}
.lexikon_bottom {
    min-height: 150px;
    margin: 0 auto;
    width: 100%;
}
#global_3 a.NaviLink_L, #global_3 a.NaviLink_L:link, #global_3 a.NaviLink_L:visited{
	background:none;
	border:none;
	color:#999;
	text-shadow:none;
}
/* ### */
#global_4{min-height:470px; margin:0 auto;
}
			#bottomTD a{
			color: #999;
			display: block;
			max-width: 270px;	
			font-size: 13px;
			font-weight:normal;
			padding: 0 0 10px 0px !important;
			border:0;
			border-radius:0;
			margin-left:10px;
			background:none;    
			text-shadow:none;
			}
			#bottomTD span.spanfoot {
			color: #999;
			display: block;
			font-family: "amerigo_btroman";
			font-size: 24px;
			font-weight: 400;
			margin: 25px 0 -20px 10px;
			}
			#bottomTD span.spanfoot_1 {
			color: #999;
			display: block;
			font-family: "amerigo_btroman";
			font-size: 24px;
			font-weight: 400;
			margin: 25px 0 -20px 0px;
		    }
			#bottomTD ul, ol{
			margin-top:20px;
			list-style:none;
			}
			#bottomTD h2{
			color:#EFEDE1;
			border-bottom: 1px dashed #EFEDE1;
			}
			#bottomTD a:hover{
			color: #fff;
			}
			.all_glob{ 
			max-width:1150px;
			width:auto;
			}
			.all_glob img {
			height: auto !important;
			width: 100% !important;
			display:table;
			}
			#global_4 img {
			margin: 15px 0;
}	
			.globals img {
			height: auto !important;
			width: 100% !important;
		}	
			#global_4 div{
			float:left;
			}
			h1 .link1 {
			line-height: 30px;
			}
#bottomTD div:first-child a {
    padding: 0 !important;
}
#elm27{ height:386px;padding-right:50px;
}
#cms_67 .content_TD .html_object{
	width:100%;
	height:100%;
}
#cms_67 .content_TD .g_maps{
	width:100% !important;
	height:100%;
	min-height:500px;
}
span.kform, span.phones, .senior_seo, .apartner {
    display: block;
}
span.phones {
    font-size: 16px;
    line-height: 25px;
    padding-left: 100px;
/*    background: url("images/seo-phone.png") no-repeat 0 0;*/
	height:80px;
}
span.kform {
    padding: 30px 0 0 100px;
    font-size: 16px;
}
span.apartner {
    padding: 0 0 0 100px;
    font-size: 16px;
    line-height: 22px;
}
#global_4 .fa-mobile, #global_4 .fa-user, #global_4 .fa-envelope-o {
	color:#0094A9;
    position: relative;
    font-size: 86px !important;
    font-weight: normal;
}
#global_4 .fa-mobile{
	top:80px;
	left:5px;
}
#global_4 .fa-user{
	top:83px;
	font-size:55px !important;
}
#global_4 .fa-envelope-o {
    font-size: 46px !important;
	 top: 55px;
}
#elm27 > p, #elm27 > span {
  color: #999;
  line-height: 20px !important;
}  
.sRight {
  color: #999;
  box-sizing:border-box;
}
#cms_83 iframe{
	width:100% !important;
}
div#global_5 {
    width: 100%;
	margin:0 auto;
	margin-top:60px;
}

#global_5 {
    width: 100%;
	min-height:30px;
}
#global_6 {
    width: 100%;
	min-height:210px;
	padding-bottom:10px;
}
#cms_68 .contents, #cms_34 .contents  {
  margin: 10px auto 300px auto;
}
#cms_68 #global_6, #cms_34 #global_6  {
	min-height:60px;
}
#global_8 {
	width:100%;
}
#global_8 .percent_100.blanc {
	width:100%;
    margin-top: 50px;
    background: #ffffff;
    min-height: 250px;
}
div#global_8 div {
    float: left;
    box-sizing: border-box;
}
.grey_bg{
	background: #F4F4F4;
}
.percent_100.white_bg{
    min-height: 135px;
	transition:height .6s ease;
/*	background: #FFF;*/
}
.top_abs_0 {
    width: 100%;
    min-height: 135px;
    background: #1a8bb3;
	transition:height .6s ease;
}
#cms_68 .top_abs_0, #cms_34 .top_abs_0 {
    width: 100%;
    min-height: 80px;
    background: #1a8bb3;
    transition: height .6s ease;
    position: relative;
    top: -30px;
}
.top_abs_1 {
    width: 100%;
    min-height: 520px;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1a8bb3+0,1a8bb3+50,ffffff+50 */
background: #1a8bb3; /* Old browsers */
background: -moz-linear-gradient(left,  #1a8bb3 0%, #1a8bb3 50%, #F4F4F4 50%); /* FF3.6-15 */
background: -webkit-linear-gradient(left,  #1a8bb3 0%,#1a8bb3 50%,#F4F4F4 50%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right,  #1a8bb3 0%,#1a8bb3 50%,#F4F4F4 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1a8bb3', endColorstr='#F4F4F4',GradientType=1 ); /* IE6-9 */
	transition:height .6s ease;
}
.top_abs_3 {
    width: 100%;
    min-height: 135px;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1a8bb3+0,1a8bb3+50,ffffff+50 */
background: #1a8bb3; /* Old browsers */
background: -moz-linear-gradient(left,  #F4F4F4 0%, #F4F4F4 50%, #1a8bb3 50%); /* FF3.6-15 */
background: -webkit-linear-gradient(left,  #F4F4F4 0%,#F4F4F4 50%,#1a8bb3 50%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right,  #F4F4F4 0%,#F4F4F4 50%,#1a8bb3 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F4F4F4', endColorstr='#1a8bb3',GradientType=1 ); /* IE6-9 */
	transition:height .6s ease;
}
.top_abs_2 {
    width: 100%;
    min-height: 330px;
    height: 350px;
    padding-top: 75px;
    transition: height .6s ease;
}

.grids{
	max-width:1150px;
	width:auto;
	margin:0 auto;
	padding:15px 0;
}
.grids div{
	float:left;
	padding-right:15px;
	box-sizing:border-box;
    height: auto;
	padding-left: 15px;
	text-align:center;
}
.grids div.percent_50{
	margin:0;
	border:none;
}
#cms_68 div#global_6.grids div, #cms_34 div#global_6.grids div  {
    text-align: left;
    padding-top: 10px;
}
.grids div .fa{
	font-size:65px;
}
.grids div.last_noPad{
	border-right:0;
}
.grids div:first-child{
	border-left:0;
	padding-left: 0;
}
#global_6.grids .percent_100{
	font-size: 15px;
    line-height: 18px;
}
.grids{
	color: #ddd;
}
.grids h3{
	color: #ddd;
}
.grids div.percent_30{
    line-height: 19px;
    padding-top: 10px;
}
.ueberschrift{
	text-align:center;
	height:30px;
	font-size:30px;
	border-left:none !important;
	border-right:none !important;
	font-family: 'amerigo_btroman';
}
.grids .percent_50, .grids .percent_50 h2, .grids .percent_50 h1 {
    text-align: left;
    color:#ccc;
	margin-top:2px;
}
.grids .percent_50 h1 {
	font-size: 24px;
    line-height: 26px;
}
.grids .percent_50{
	line-height:16px;
}
.grids div.percent_50 .fa {
    font-size: 22px;
    line-height: 22px;
	    margin: -2px 10px 0 0;
		display:inline-block;
}
.grids .percent_50:nth-child(2) {
    text-align: right;
    width: 52%;
    padding-top: 12px;
	height:auto;
}
#global_4 div.percent_50:nth-child(2) {
    margin: 0;
	margin-top:60px;
}
/* body IDs */
body#cms_69 .parallax-support{
	min-height:400px !important;
	background:url('images/seo-optimierung.jpg') no-repeat;
	background-position:center -240px;
}
body#cms_70 .support_service {
    min-height: 600px !important;
	background:url('images/search-engine-advertising.jpg') no-repeat center -120px;
}
body#cms_114 .parallax-support, body#cms_115 .parallax-support {
    min-height: 400px;
	background:url('images/offpage-optimierung.jpg') no-repeat center -220px;
}
body#cms_114 .parallax-support {
    min-height: 400px;
	background:url('images/support.jpg') no-repeat center -120px;
}
body#cms_78 .parallax-support {
    min-height: 400px !important;
	background:url('images/social-media-marketing.jpg') no-repeat center -180px;
}
body#cms_79 .parallax-support {
    min-height: 550px !important;
	background:url('images/internet-publik-relations.jpg') no-repeat center -180px;
}
body#cms_80 .parallax-support {
    min-height: 550px !important;
	background:url('images/content-marketing.jpg') no-repeat center -300px;
}
body#cms_82 .parallax-service {
    min-height: 400px;
	background:url('images/shop-optimierung.jpg') no-repeat center -420px;
}
body#cms_66 .parallax-support {
    min-height: 600px !important;
	background:url('images/seo-programmierung.jpg') no-repeat center -50px;
}
body#cms_33 .parallax-support {
    min-height: 250px !important;
	background-position: 0 -220px;
		-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	box-shadow: 0 0 18px #000;
}
body#cms_33 .top_abs_0 {
	display:none;
}
body#cms_33 .top_abs {
    padding-top: 20px;
}
body#cms_66 .content_TD .percent_50 {
    min-height: 280px;
}
body#cms_66 #contentTD div.blank {
    margin-bottom: 3%;
    padding: 5px 10px 15px 15px;
}
/*=========================================================
    Paralaxx CSS pure
=========================================================*/
.parallax-window {
	background-image:url('consulting-team.jpg');
	background-position:center 120px;
	background-repeat:no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	min-height: 650px !important;
	background-attachment:scroll;
}
.parallax-service {
    background:url('images/service.jpg')no-repeat center -10px;
    min-height: 500px;
}
/*#global_5.parallax-support {
    background:url('images/support.jpg')no-repeat center -180px;
    min-height: 400px;
}*/
.parallax-kontakt {
    background:url('images/kontakt.jpg')no-repeat center -90px;
    min-height: 600px !important;
}
#cms_23 .parallax-kontakt {
    min-height: 350px !important;
    background-position: 0;
}
#cms_23 .top_abs_0 {
    height: 65px;
}
.parallax-mirror{
/*	transition: top 0.6s;*/
}
.title, .title_support {
    width: 500px;
    left: 50%;
    margin-left: -575px;
    z-index: 2;
    position: relative;
    padding: 15px;
    background: rgba(255,255,255,0.8);
    margin-top: 90px;
    border-radius: 8px !important;
	box-shadow: 0 0 8px #999;
}
.title_service {
    width: 500px;
    left: 50%;
    margin-left: -575px;
    z-index: 2;
    position: relative;
    padding: 15px;
    background: rgba(141,135,137,0.8);
    margin-top: 220px;
    border-radius: 8px !important;
}
.title_support{
    background: rgba(255,255,255,0.6);
	color:#16302E;
}
.title_service, .title_service h2, .title_support h2  {
	color:#333;
}
.title p {
    line-height: 22px;
    margin: 20px 0 0 0;
}
div.title_right {
    position: absolute;
    left: 50%;
    margin-left: 40px;
    top: 180px;
    z-index: 5;
    width: 495px;
padding:15px;    
color:#fff;
text-shadow: 1px 1px 3px #000;
background: rgba(0, 0, 0, 0.5);
}
#cms_64 div.title_right {
    top: 230px;
}
div.title_right_2 {
  top: 270px;
  animation-delay: 0.4s;
}
#cms_64 div.title_right_2 {
    top: 320px;
}
div.title_right_3 {
  top: 375px;
  animation-delay: 0.8s;
}
#cms_82 div.title_right_3 {
  top: 360px;
}
div.title_right_4 {
  top: 450px;
  animation-delay: 1.2s;
}
.title_right h3 {
    color: #fff !important;
    font-size: 26px;
}
#cms_64 div.title_right_3 {
    top: 425px;
}
.parallax-support div.title_right, .parallax-service div.title_right  {
    width: 520px;
	padding:0px 10px 10px 20px;  
    color: #fff;
	font-size:26px;
	box-sizing:border-box;
}
.parallax-support div.title_right a, .parallax-service div.title_right a{
    color: #fff;
}
.parallax-support div.title_right span.format, .parallax-service div.title_right span.format{
    font-size: 26px;
}
.parallax-support div.title_right_3 {
  top: 360px;
}
a.title_btn {
    padding: 10px;
    border-radius: 4px;
}
div#elm310 {
    padding: 0;
}
div.no_backgr {
	width:530px;
	top:200px;
}
div.blank{
    background: none !important;
    border: none !important;
}
#global_5 .fa-phone, #global_5 .fa-envelope-o {
font-size: 22px; 
margin: 0px 10px 0px 0px; 
display: block; 
float:left;
}
#global_5 span.angebot{
	float:left;
	display:block;
	color:#000;
}
a#elm668, a#elm64{
	opacity:0.85;
}
span.categ {
    padding: 25px 10px 0 10px;
    display: block;
    font-size: 18px;
    font-family: 'amerigo_btroman';
}
#bottomTD a.NaviLink_active{
	border:none !important;
	background:none !important;
}
#global_2 span.categ {
    padding-top: 0;
}
span.format{
	font-size:20px;
	font-family:'amerigo_btroman';
	display:block;
	padding:25px 0 15px 0;
}
#global_5 span.format {
    display: inline-block;
    padding: 25px 0 15px 10px;
}
/*=========================================================
    2.ALLGEMEINE STYLES
=========================================================*/
*{
	box-sizing:border-box;
	box-sizing:content-box;
}
html {
  background: none;
  height: 100%;
}
body { 
		background:#fff url("images/stripp.png")repeat scroll; 
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px; 
	line-height: 1.125em;
	color:#727272;
	margin:0;
	padding:0;
	overflow-x:hidden;
}
a {
	color:#0094A9;
    text-decoration: none;
    outline:none;
	-webkit-transition: .4s ease-in color; 
	-moz-transition: .4s ease-in color;
}
h1, h2, h3, h4{
    color: #666;
    font-family: 'amerigo_btroman';
    font-weight: 400;
    margin:8px 0;
}
.middle_holder h2 {
    color: #fff;
    font-size: 30px;
}
h2{
	font-size:24px; line-height:26px;
}
h3{
	font-size:20px; line-height:22px;
}
h4{
    color: #666;
	font-size:18px; 
	line-height: 20px;
	margin:25px 0 5px 0;
}
.clear_b{
	clear:left;
	height:0px;
}
.clear{
	clear:left;
	height:0px;
}
#contentTD .joi.corn{
	margin:20px;
}
a:hover{
	text-decoration:none;
}
/*CONTENT*/
#contentTD ul {
    margin-left: 20px;
}
.ignore_tool {
    vertical-align:top;
    margin-bottom:5px;
    width:1050px;
    text-align:center;
}
.ignoreSpecialEnd{height:0 !important; width:1% !important; display:none}
.brd_left{
	border-left:5px solid #FEC10C;
}
.grids h1{
	color: #FFF;
	padding-left:10px;
}
#global_6.grids h2{
	color: #FFF;
	font-size: 36px;
	padding-top: 30px;
	
}
/* ----------------------------------------
            ### Logo ###
-------------------------------------------*/
h1.cms, .frog{
margin:0;
	font-size:40px;
	line-height:20px;
	font-weight:400;
	font-family: 'amerigo_btroman';
	padding:27px 0 0;
	letter-spacing:1px;
}
span.frog{
	color:#AEBB11;
	text-transform:uppercase;
	margin-left:-10px;
}
h2.info, h1.info {
    color: #999999;
    text-transform: uppercase;
    font-family: 'amerigo_btroman'; 
    font-weight: 400;
    margin: 0;
    padding: 0;
    font-size: 1.22em;
    line-height: 14px;
    position: absolute;
    top: 60px;
    z-index: 100;
    letter-spacing: 2px;
}
.hrr {
    clear: both;
    margin: 5px 0 5px 11px;
	width: 209px;
	text-align:left;
}
/* Font Squirrel */
@font-face {
    font-family:'amerigo_btroman';
    src: url('css/amerigo_bt_roman-webfont.eot');
    src: url('css/amerigo_bt_roman-webfontd41d.eot?#iefix') format('embedded-opentype'),
         url('css/amerigo_bt_roman-webfont.woff') format('woff'),
         url('css/amerigo_bt_roman-webfont.ttf') format('truetype'),
         url('css/amerigo_bt_roman-webfont.svg#amerigo_btroman') format('svg');
    font-weight: normal;
    font-style: normal;
}
/* ----------------------------------------
            ### Bilder im Content Responsive  ###
-------------------------------------------*/
.contentTD img, div#global_5 img, .content_TD img{	
	max-width:100% !important;
	height:auto !important;
}
.nuno_slideshow_container .thumb_container {
    width: 100% !important;
}
/*=========================================================
    3.HEADER
=========================================================*/
/* Navigation onTop shrink */
.WIDGET.html_onTop {
    height: 40px !important;
}
.hrr{
	display:none;
}
.shrink .html_object, .shrink .html_object a{
	color:#0094A9;
}
.shrink .html_object a:hover{
	color:#fff;
}
.shrink .html_onTop{
	position:relative;
	height:40px;
	max-width:1150px;
	margin-left:auto;
	float:right;
	margin:0 auto;	
	padding-top:0;
}
.shrink .html_object, .html_object {
	line-height:20px;
}
.shrink .html_left, .shrink .html_right, .shrink li.social, .shrink .html_right li, .html_left, .html_right, li.social, .html_right li{
	float:left;
    box-sizing: border-box;
}
.shrink ul.topsocial, .shrink ul.tplinks, ul.topsocial, ul.tplinks {
    margin: 2px 0 0 0;
    padding: 0;
    line-height: 40px;
}
.shrink li.social, .shrink .html_right li, li.social, .html_right li{
    list-style: none;
    padding: 0 10px 0 0;
}
.shrink .html_right li, .html_right li {
    padding: 0 0 0 30px;
}
.shrink .html_object i {
    font-size: 20px;
	left: -100px !important;
}
.shrink .html_left {
    width: 30%;
}
.shrink .html_right {
	float:right;
}
.shrink a.tpbut.bridge_link, a.tpbut.bridge_link  {
    float: right;
    line-height: 40px;
}
.shrink ul.tplinks, ul.tplinks {
    float: right;
}div#global_7 {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1150px;
}
ul.tplinks .fa {
    font-size: 40px;
}
ul.tplinks span {
    line-height: 20px;
    display: inline-block;
    padding-left: 10px;
}
.html_onTop {
    position: absolute;
    /* height: 40px; */
    max-width: 700px;
    margin-left: 3px;
    right: 0;
    padding-top: 65px;
    color: #999;
    box-sizing: border-box;
}
.html_left {
    margin-right: 50px;
}
.html_object, .html_object a{
	color:#999;
	float: right;
}
.html_object a:hover{
	color:#1782c7;
}
.shrink ul.menu li:last-child {
    margin-right: 0;
}
.shrink ul.menu li:last-child a span {
    padding-right: 0;
}
.shrink .html_right li:last-child {
    padding-right: 0;
}
#jojon .WIDGET {
  overflow: visible !important;
}
.shrink .fa-bookmark {
  display: block !important;
}
.header.shrink {
background: rgb(255,255,255); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(255,255,255,1) 56%, rgba(239,239,239,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 56%,rgba(239,239,239,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(255,255,255,1) 56%,rgba(239,239,239,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#efefef',GradientType=0 ); /* IE6-9 */
    height: 80px;
    line-height:80px;
	top:7px;
}
.header.shrink #h-navi{
	float:right;
	margin-top:-65px;
	z-index:99999;
}
.header h1, .header h2{
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.header.topTD{
	display:none;
}
.header.shrink h1, .header.shrink h2{
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.header.shrink .hrr{
    display:none;
}
.header.shrink ul.menu li.top, li.top, .header.shrink a.top_link_active, .header.shrink a.top_link_active:hover {
    line-height: 40px;
	transition:none;
}
.shrink .response {
    display: table;
    width: 100%;
}
.shrink .searchD {
    display: none;
}
/*--------------------------------
       ###  Preistabele  ###
---------------------------------*/
.cms_basis_info, .cms_business_info, .cms_leasing_info, .cms_enterprise_info{
	width:22%;
	min-width:255px;
	float:left;
	height:100%;
	min-height:105px;
	margin-right:2px;
	text-align:right;
	padding:15px 15px 15px 15px;
	color:#fff;
	line-height:25px;
	text-shadow:0 1px 1px rgba(0, 0, 0, 0.4);
	position:relative;
}
.cms_basis_info strong, .cms_business_info strong, .cms_leasing_info strong, .cms_enterprise_info strong{
    font-family: 'amerigo_btroman';
    font-size: 25px;
    font-weight: normal;
    margin-bottom: 7px;
    text-transform: none;
	color:#fff;
}
.cms_basis_info{
	background:url(images/banner_cms_basis.png) no-repeat;
}
.cms_business_info{
	background:url(images/banner_cms_business.png) no-repeat;
}
.cms_leasing_info{
	background:url(images/banner_cms_leasing.png) no-repeat;
}
.cms_enterprise_info{
	background:url(images/banner_cms_enterprise.png) no-repeat;
	margin-right:0px;
}
.cms_preise{
position:absolute !important;
left:15px !important;
bottom:45px !important;
}
.cms_preise .price{
    font-family: 'amerigo_btroman';
    font-size: 38px;
	font-weight: 400;
    text-shadow: 0 0 2px #666666;
	}
.cms_preise .dollar{
    font-family: 'amerigo_btroman';
    font-size: 18px;
	}
.mehr{
    border-radius: 4px;
    color: #666666;
    display: block;
    float: right;
    margin: 5px 0;
    padding: 0 5px 2px 7px;
    width: 50px;
	background-color: #e6e6e6;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
  text-shadow:none;
}
.mehr:hover{
  background-position: 0 -15px;
  color: #333;
  text-decoration: none;
}
table.horiz{
	width:100%;
    background: url("images/nav.jpg") repeat-x scroll 50% 0 transparent;
    box-shadow: 0 2px 5px rgba(103, 84, 57, 0.45);
    padding: 5px 0 12px;
    position: relative;
    z-index: 99;
	height:64px;
}
div.hnv{
    max-width: 1150px;
	width:auto;
	min-height:45px;
}
table.newsTable {
  width:100%;	
}
table, td {
    vertical-align: top;
}
img.rss_btn {
margin-bottom:-12px;
}
img.rss_btn {
margin-right:-4px;
}
.face, .rss_but img{filter:alpha(opacity=80); -moz-opacity: 0.80; opacity: 0.80;}
.TD-top_imprint, .WIDGET .search_div{
float:right !important;
}
#cms_63 .content_TD_0bg {
    margin-top: 50px;
}
#contentTD div.last_abst{
	margin-bottom:35px;
}
/* ----------------------------------------
            ### Animate Delay ###
-------------------------------------------*/
#contentTD div:nth-child(2n) {
	animation-delay: 0.4s;
}
#contentTD div:nth-child(3n) {
	animation-delay: 0.8s;
}
#pricing .descr_pr{
	animation-delay: 1.2s !important;
}
#pricing .basic{
	animation-delay: 0.9s !important;
}
#pricing .medium{
	animation-delay: 0.6s !important;
}
#pricing .freelancer{
	animation-delay: 0.3s !important;
}
#pricing .enterprise{
	animation-delay: 0s !important;
}
/*   ###   Logo   ### */
.TD-top_imprint{
text-align:right;
color:#999999;
font-size:14px;
}
.top_imprint{
color:#999999;
font-size:14px;
}
.print h1{
background:url(images/drucker_icon.png) no-repeat top right;
}
#cms_63 .percent_40.last_noPad {
    margin-top: 50px;
}
/* payments */
#contentTD .moneybookers img {
    max-width: 15% !important;
    position: absolute;
    right: 15px;
	transition:all .6s ease;
}
#contentTD .moneybookers img:hover {
    max-width: 100% !important;
    height: auto !important;
}
.moneybookers div.amount {
    float: left;
    margin-right: 15px;
    line-height: 28px;
}
.moneybookers input[type="number"] {
    width: 35px;
    text-align: center;
    margin-right: 30px;
}
/* FAQ */
.WIDGET .listItem div.text3 {
    text-indent: 0;
}
/*  Produktliste  */
#contentTD .overviewbox {
  background-image: url("img/productBackground.png");
  margin-bottom: 20px;
  position: relative;
  width: 100%;
  box-sizing:border-box;
}
.WIDGET.percent_100 {
    overflow: visible !important;
}
.product_list {
    border: 1px solid #ccc;
}
#contentTD .overviewbox .image {
  width:46%;
  float: left;
  margin: 7px;
}
#contentTD .overviewbox .image img {
	width:100% !important;
	height:auto !important;
}
#contentTD .overviewbox .description {
  float: right;
  height: 285px;
  margin-left: 15px;
  width: 50%;
}
#contentTD .overviewbox .description .data {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}
#contentTD .overviewbox .description .label {
  display: block;
  float: left;
  font-weight: normal;
  width: 32%;
}
#contentTD .overviewbox .detailsButton {
  background:#0094A9;
  color:#fff;
  bottom: 15px;
  height: 38px;
  position: absolute;
  right: 15px;
  width: 152px;
  text-align:center;
  border-radius:5px;
}
#contentTD .overviewbox .detailsButton .hidden, #contentTD .overviewbox .contactButton .hidden {
  display: block;
  visibility: visible;
      line-height: 38px;
}
#contentTD .overviewbox .price {
  background-color: #fcbb00;
  color: #4d3825;
  display: block;
  font-weight: bold;
  line-height: 27px;
  margin-top: 43px;
  position: absolute;
  right: -51px !important;
  text-align: center;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  width: 90px;
}
#contentTD .overviewbox .new {
  background-color: #412f28;
  color: #e6d9ba;
  display: block;
  font-weight: bold;
  line-height: 22px;
  margin-top: 140px;
  position: absolute;
  right: -38px !important;
  text-align: center;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  width: 70px;
}
.contentTD div.TAB_PAGE_CONTAINER {
    float: none !important;
	clear:both;
}
/*  tabulator  */
.TAB_TITLE_CONTAINER {
  height: 40px;
}
div.TAB_TITLE a {
    text-decoration: none;
    color: #999;
}
div.SELECTED a {
    color: #000;
}
div#tab_container_0 {
    width: 100%;
}
.tabulator {
    width: 100%;
}
.TAB_PAGE {
    width: 100%;
}
#mbCenter {
    top: 380px !important;
}
span.wichtig {
    font-style: italic;
    color: #666 !important;
    font-weight: 800;
}
body#cms_67 div.null iframe {
    width: 340px !important;
}
body#cms_66 div.null iframe {
    width: 340px !important;
}
#cms_66 #mbCenter {
    width: 420px !important;
    height: 380px !important;
    top: 450px !important;
}
#cms_66 #mbImage {
    width: 410px !important;
    height: 330px !important;
}
#cms_66 .form_container.percent_100 iframe {
    width: 99% !important;
    height: 280px !important;
}
#cms_66 #mbImage iframe {
    width: 99% !important;
    height: 380px !important;
}
#cms_67 .form_container.percent_100 iframe {
    width: 94% !important;
    height: 280px !important;
}
#mbPrevLink big, #mbNextLink big, #mbCloseLink big {
    color: #ff0000;
    font-size: 26px;
    line-height: 26px;
    font-weight: bold;
	z-index: 9999;
	position: relative;
}

/* Grids */
.ober_grids div.percent_30 {
    width: 32.66%;
    margin: 0 1% 15px 0;
    min-height: 20px;
    box-sizing: border-box !important;
    border: 5px solid #ddd;
    padding: 15px;
}
.ober_grids i {
    display: block;
    font-size: 80px;
    text-align: center;
    padding:15px 7px 25px 0;
}
.ober_grids .fa, .ober_grids h2 {
    color: #20414c;
}
.ober_grids .percent_50 span.format {
    color: #666;
}
.ober_grids div, .ober_grids h2, .ober_grids span.format{
	text-align:center;
}

.ober_grids .percent_50 {
    width: 49%;
    margin-right: 2%;
    float: left;
    text-align: left;
    box-sizing: border-box;
    padding: 15px;
}
.ober_grids .percent_50:last-child {
	margin-right: 0;
}
.ober_grids .percent_50:first-child {
	color:#FFF;
}
.txt_right{
	text-align:right;
}
.middle_holder .ober_grids div {
    float: left;
}

/*  TimeLine */
#cms_113 .content-container {
    padding-left: 40px;
    border-left: 5px solid #ccc;
}
span.web_e, span.web_2, span.web_3, span.web_4, span.web_5, span.web_6, span.web_7   {
    position: relative;
    top: -178px;
    left: -56px;
    display: table;
    background: hsla(187, 100%, 33%, 1);
    width: 25px;
    height: 25px;
	border-radius:20px;
}
span.web_2{top: -155px;}span.web_3{top: -119px;}span.web_4{top: -174px;}span.web_5{top: -162px;}span.web_6{top: -107px;}span.web_7{top: -125px;}
i.timeline {
    border: 6px solid rgb(204, 204, 204);
    border-radius: 25px;
    line-height: 25px;
    height: 15px;
    width: 15px;
    color: transparent;
    display: inline-block;
}

div#global_7 {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1150px;
}

/* TABs */
.WIDGET.percent_100 {
    width: 100% !important;
}
div.TAB_PAGE {
    display: block;
    z-index: 0;
    left: 0%;
    height: 370px;
}
.tabulator {
    width: 100%;
    height: 650px;
	font-size: 15px;
    line-height: 20px;
}
.tabulator h1{
	color:#1782c7;
}
div.tab_container {
    max-height: 650px;
    height: auto;
	margin: 0 auto;
}
div#tab_container_0 {
    position: relative;
}
div.TAB_TITLE_CONTAINER {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 1;
    margin-left: -49px;
    width: 98px;
    height: 40px;
}
div.TAB_PAGE_CONTAINER {
    position: relative;
    overflow: hidden;
    height: 650px !important;
}
div.TAB_PAGE {
    display: block;
    z-index: 0;
    left: 0%;
    height: auto;
}
.TAB_PAGE div.percent_100 {
    width: 100% !important;
    background-size: cover;
}
.TAB_TITLE_CONTAINER a {
    opacity: 0;
    display: inline-block;
    height: 25px;
    width: 25px;
    border-radius: 25px;
    overflow: hidden;
}
div.SELECTED {
    background-color: #354A6B;
}
div.TAB_TITLE, div.TAB_TITLE.SELECTED{
    display: block;
}
div.TAB_TITLE.SELECTED, div.TAB_TITLE {
    width: 25px;
    height: 25px;
    border: 2px #fff solid;
    border-radius: 25px;
}
div.TAB_TITLE {
    margin: 0 7px;
}
.percent_100 div.holder {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}
.percent_100 .holder div.percent_50 {
    margin: 150px 1.5% 15px 0;
    float: left;
    background: rgba(255,255,255,.6);
    min-height: 250px;
    padding: 15px;
    box-sizing: border-box;
    width: 50%;
    height: auto;
}
.percent_50.transp {
    opacity: 0;
}
/*kontakt*/
.form_container.percent_100 iframe{
	width: 100% !important;
}
div.percent_100{width: 100% !important}.form_container.percent_100 {
    height: 400px;
}

.percent_100.percent_BG span.decor-equal::before {
  background: #666 none repeat scroll 0 0;
  width: 70px;
	left: -80px;
}
.percent_100.percent_BG span.decor-equal {
  left: 80px;
  border:3px solid rgba(26, 139, 179, 0.8);
}
.percent_100.percent_BG span.decor-equal::after {
background: #666 none repeat scroll 0 0;
}

span.decor-equal::before {
  background: #fff none repeat scroll 0 0;
  content: "";
  height: 1px;
  left: -180px;
  position: absolute;
  top: 4px;
  width: 170px;
  transition: all 0.6s ease 0s;
}
span.decor-equal::after {
  background: #fff none repeat scroll 0 0;
  content: "";
  height: 1px;
  position: absolute;
  right: -180px;
  top: 4px;
  width: 170px;
  transition: all 0.6s ease 0s;
}
#global_6.grids:hover span.decor-equal::after {
  right: -250px;
  width: 240px;
}
#global_6.grids:hover span.decor-equal::before {
    left: -250px;
    width: 240px;
}
span.decor-equal {
  background: #354a6b none repeat scroll 0 0 padding-box;
  border:3px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: inline-block;
  height: 13px;
  position: relative;
  transition: all 0.6s ease 0s;
  width: 13px;
}
.title_container:hover span.decor-equal::before {
  transition: all 0.6s ease 0s;
  width: 50px;
}
blockquote {
    background: url("images/blockquote-white.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
    display: block;
    margin: 10px 15px 10px 0;
    padding: 12px 0 12px 70px;
    quotes: none;
	font-style: italic;
    font-size: 20px;
    line-height: 25px;
    font-weight: 100;
}
h3#elm54 {
    font-size: 35px;
    color: #fff;
	margin-bottom: 40px;
}
span.title_container.percent_100 h4 {
    font-size: 35px;
    color: #666;
	margin-bottom: 30px;
}
span.block_line{
	width: 50%;
	height: 5px;
	display: block;
	border-bottom: 1px #FFF solid;
	padding: 20px 0;

}
.immo{}
.immo-invest{
	background: url("images/immo-invest.jpg") top left no-repeat;
	min-height: 520px;
}
.percent_50.last_noPad.animated.hidden.visible.zoomIn {
    min-height: 520px;
	text-align: left;
	background: #F4F4F4;

}
#global_1 .percent_50.last_noPad.animated.hidden.visible.zoomIn {
	background: none transparent;
}
 .percent_50.last_noPad.animated.hidden.visible.zoomIn p, .percent_50.last_noPad.animated.hidden.visible.zoomIn h5 {
	text-align: left;
	 margin-top: 15px;
	 margin-bottom: 20px;
}
.percent_50.last_noPad.animated.hidden.visible.zoomIn p{
	 margin-top: 0;
}
.percent_50.last_noPad.animated.hidden.visible.zoomIn h5 {
    font-family: 'amerigo_btroman';
    font-size: 20px;
    font-weight: normal;
}
.content_TD .percent_50.last.last_noPad.hidden.visible.animated.zoomIn{
	background: #F1F1F1 url("../../resources/75/Images/home/projektabwicklung.jpg") no-repeat 0 0;
	height: 280px;
}


/*   */
.people_choose_us .choose_category {
    padding-top: 32px;
    margin-bottom: -25px;
}
.people_choose_us .row {
    margin-right: -15px;
    margin-left: -15px;
}

.people_choose_us .choose_category i {
    padding-left: 14px;
    padding-top: 21px;
    color: #e2e2e2;
}
.icon-holder {
    width: 8.33333333%;
    float: left;
}
.people_choose_us .choose_category .text_holder {
    padding-left: 31px;
}
.text_holder {
    width: 87%;
    float: left;
    margin-left: 3%;
    box-sizing: border-box;
    font-size: 15px;
    line-height: 20px;
}

.choose_category .fa {
    display: block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.choose_category .fa-angle-down:before {
    content: "\f107";
}
@font-face {
	font-family: "Flaticon";
	src: url("css/fonts/flaticon.eot");
	src: url("flaticon.eot#iefix") format("embedded-opentype"),
	url("css/fonts/flaticon.woff") format("woff"),
	url("css/fonts/flaticon.ttf") format("truetype"),
	url("css/fonts/flaticon.svg") format("svg");
	font-weight: normal;
	font-style: normal;
}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
    font-family: Flaticon;
    font-size: 35px;
    font-style: normal;
    display: inline-block;
    color: #1a8bb3;
    line-height: 45px;  
	vertical-align: middle;
}
.flaticon-clock151:before {
	content: "\e000";
	color:#eeeff2;
}
.flaticon-earth208:before {
	content: "\e001";
	font-size: 21px
}
.flaticon-employee4:before {
	content: "\e002";
	color:#e0e0e0;
	font-size: 56px;
}
.flaticon-envelope133:before {
	content: "\e003";
}
.flaticon-gold1:before {
	content: "\e004";
}
.flaticon-group:before {
	content: "\e005";
}
.flaticon-house118:before {
	content: "\e006";
}
.flaticon-location71:before {
	content: "\e007";
	color:#e0e0e0;
	font-size: 56px;
}
.flaticon-money183:before {
	content: "\e008";
	font-size: 32px;
}
.flaticon-money33:before {
	content: "\e009";
	font-size: 32px;
}
.flaticon-museum34:before {
	content: "\e00a";
	font-size: 32px;
}
.flaticon-payment7:before {
	content: "\e00b";
}
.flaticon-phonecall44:before {
	content: "\e00c";
	color:#eeeff2;
}
.flaticon-placeholder100:before {
	content: "\e00d";
	color:#eeeff2;
}
.flaticon-price8:before {
	content: "\e00e";
	color:#e0e0e0;
	font-size: 56px;
}
.flaticon-quotes3:before {
	content: "\e00f";
}
.flaticon-speed2:before {
	content: "\e010";
}
.flaticon-statistics:before {
	content: "\e011";
	font-size: 32px;
}
.flaticon-tasks2:before {
	content: "\e012";
}
.flaticon-two398:before {
	content: "\e013";
}
/* ### */
#global_4{
min-height:450px; 
margin:0 auto;
width:100% !important;
}
.percent_100.height_auto, .percent_100.height_auto .html_object{
	width:100% !important;
	height:450px !important;	
}
.over_kill {
	background:transparent; /* unsichtbar machen */
	position:relative; /* Position relativ machen um z-index zu verĆ¤ndern */
	z-index: 100; /* sicher ist sicher */
	width:100%; /* iFrame Breite */
	height:465px; /* iFrame HĆ¶he */
	margin-top:-465px;  /* iFrame HĆ¶he, um den Platz des Elments freizugeben */
 
}
.bottom_holder .percent_100, .bottom_holder{
	margin: 0;
	padding: 0;

}
			#bottomTD a{
			color: #999;
			display: block;
			max-width: 270px;	
			font-size: 13px;
			font-weight:normal;
			padding: 0 0 10px 0px !important;
			border:0;
			border-radius:0;
			margin-left:10px;
			background:none;    
			text-shadow:none;
			}
			#bottomTD span.spanfoot {
			color: #999;
			display: block;
			font-family: "amerigo_btroman";
			font-size: 24px;
			font-weight: 400;
			margin: 25px 0 -20px 10px;
			}
			#bottomTD span.spanfoot_1 {
			color: #999;
			display: block;
			font-family: "amerigo_btroman";
			font-size: 24px;
			font-weight: 400;
			margin: 25px 0 -20px 0px;
		    }
			#bottomTD ul, ol{
			margin-top:20px;
			list-style:none;
			}
			#bottomTD h2{
			color:#EFEDE1;
			border-bottom: 1px dashed #EFEDE1;
			}
			#bottomTD a:hover{
			color: #fff;
			}
			.all_glob{ 
			max-width:1150px;
			width:auto;
			}
			.all_glob img {
			height: auto !important;
			width: 100% !important;
			display:table;
			}
			#global_4 img {
			margin: 15px 0;
}	
			.globals img {
			height: auto !important;
			width: 100% !important;
		}	
			#global_4 div{
			float:left;
			}
			h1 .link1 {
			line-height: 30px;
			}
#bottomTD div:first-child a {
    padding: 0 !important;
}
#elm27{ height:386px;padding-right:50px;
}
#cms_66 .content_TD .html_object{
	width:100%;
	height:100%;
}
#cms_66 .content_TD .g_maps{
	width:100% !important;
	height:100%;
	min-height:500px;
}
#global_1 iframe.jojon {
    width: 100% !important;
    height: 365px !important;
}
#topTD div.percent_100 img {
    margin-top: 7px;
}
.shrink #topTD div.percent_100 img {
    margin-top: -2px;
}
#cms_34 .content_TD .percent_50:nth-child(2) {
    padding: 15px;
}