/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

.timeline_animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.timeline_animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.timeline_animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.timeline_animated.bounceIn,
.timeline_animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

.timeline_animated.flipOutX,
.timeline_animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -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 {
  0%, 20%, 53%, 80%, 100% {
    -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 {
  0%, 50%, 100% {
    opacity: 1;
  }

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

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

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

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

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

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

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

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

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

@-webkit-keyframes rubberBand {
  0% {
  	opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

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

@keyframes rubberBand {
  0% {
  	opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

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

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

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

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

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

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

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

@-webkit-keyframes swing {
  20% {
  	opacity: 1;
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
  	opacity: 1;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
  	opacity: 1;
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
  	opacity: 1;
    -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 {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

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

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

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

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

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes jello {
  11.1% {
    -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)
  }
  100% {
    -webkit-transform: none;
            transform: none
  }
}

@keyframes jello {
  11.1% {
    -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)
  }
  100% {
    -webkit-transform: none;
            transform: none
  }
}



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

            transform-origin: center
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -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);
  }

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

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -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);
  }

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

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

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -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);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -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);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -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);
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -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);
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -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);
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -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);
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -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, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

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

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -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, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

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

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

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

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

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

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

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

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

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

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

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

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

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

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

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

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

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

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

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

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

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

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

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

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

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

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

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

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

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

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

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

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

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

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

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

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

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

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

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

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

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

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

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

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

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

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

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

@-webkit-keyframes flip {
  0% {
  	opacity: 1;
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
  	opacity: 1;
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
  	opacity: 1;
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
  	opacity: 1;
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.timeline_animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

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

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -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);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }

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

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -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: 1;
  }

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

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    opacity: 1;
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

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

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

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

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

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

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

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

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

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

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

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

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

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

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }

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

@keyframes rollOut {
  0% {
    opacity: 1;
  }

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

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

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }

  100% {
    opacity: 1;
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }

  100% {
    opacity: 1;
  }

}

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

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }

}

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

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }

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

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

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

  100% {
    opacity: 0;
  }
}

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

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

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}  #foundation-loader{display:block;background-color:rgba(195, 19, 19, 1.00)}#foundation-loader .loader-inner>div{background-color:rgba(251, 212, 134, 1.00)}#foundation-loader .ball-grid-pulse,#foundation-loader .ball-grid-beat,#foundation-loader .semi-circle-spin{margin:0 auto;-webkit-transform:translateY(40%);-moz-transform:translateY(40%);-ms-transform:translateY(40%);-o-transform:translateY(40%);transform:translateY(40%)}#foundation-loader .loader-inner>div,#foundation-loader .ball-rotate>div:before,#foundation-loader .ball-rotate>div:after,#foundation-loader .ball-clip-rotate-pulse>div:first-child,#foundation-loader .pacman>div:nth-child(3),#foundation-loader .pacman>div:nth-child(4),#foundation-loader .pacman>div:nth-child(5),#foundation-loader .pacman>div:nth-child(6){background-color:rgba(251, 212, 134, 1.00)}#foundation-loader .square-spin>div,#foundation-loader .ball-clip-rotate>div{background-color:rgba(251, 212, 134, 1.00);border-color:rgba(251, 212, 134, 1.00)}#foundation-loader .ball-clip-rotate>div{border-bottom-color:transparent}#foundation-loader .ball-clip-rotate-pulse>div:last-child,#foundation-loader .ball-clip-rotate-multiple>div:last-child{background-color:transparent;border-color:rgba(251, 212, 134, 1.00) transparent rgba(251, 212, 134, 1.00) transparent}#foundation-loader .ball-clip-rotate-multiple>div{background-color:transparent;border-color:transparent rgba(251, 212, 134, 1.00) transparent rgba(251, 212, 134, 1.00)}#foundation-loader .ball-scale-ripple>div,#foundation-loader .ball-scale-ripple-multiple>div,#foundation-loader .ball-triangle-path>div{background-color:transparent;border-color:rgba(251, 212, 134, 1.00)}#foundation-loader .triangle-skew-spin>div{background-color:transparent;border-left-color:transparent;border-right-color:transparent;border-bottom-color:rgba(251, 212, 134, 1.00)}#foundation-loader .pacman>div:first-of-type,#foundation-loader .pacman>div:nth-child(2){background-color:transparent;border-right-color:transparent;border-top-color:rgba(251, 212, 134, 1.00);border-left-color:rgba(251, 212, 134, 1.00);border-bottom-color:rgba(251, 212, 134, 1.00)}#foundation-loader .semi-circle-spin>div{width:35px;height:35px;background-color:transparent;background-image:-webkit-linear-gradient(transparent 0,transparent 70%,rgba(251, 212, 134, 1.00) 30%,rgba(251, 212, 134, 1.00) 100%);background-image:linear-gradient(transparent 0,transparent 70%,rgba(251, 212, 134, 1.00) 30%,rgba(251, 212, 134, 1.00) 100%)}.stacks_top{opacity:0}   .theme-version{display:block}.theme-version.number-110,#stacks_in_614_page12{display:none}.stacks_out{overflow:visible!important}.stacks_in{overflow:visible}::selection{ color:rgba(255, 255, 255, 1.00);background:rgba(0, 140, 186, 1.00);}::-moz-selection{ color:rgba(255, 255, 255, 1.00);background:rgba(0, 140, 186, 1.00);}body,.font-family-text{  font-family:'Palatino Linotype', 'Book Antiqua', Palatino, serif;  font-weight:100}h1,.font-family-h1{ font-family:"Oxygen",sans-serif; font-style:normal;font-weight:700}h1 a,.font-family-h1 a{font-family:inherit}h2,h3,h4,h5,h6,.font-family-h2{ font-family:"Oxygen",sans-serif; font-style:normal;font-weight:300}h2 a,h3 a,h4 a,h5 a,h6 a,.font-family-h2 a{font-family:inherit}body{background-color:#FFFFFF;     }
.hide-for-touch,.show-for-touch{display:none}.no-js .hide-for-touch{display:block}.vegas-loading{display:none}.vegas-background{-ms-interpolation-mode:bicubic;image-rendering:optimizeQuality;max-width:none!important}.vegas-overlay,.vegas-background{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none} .hide-overflow{overflow:hidden!important} .columns>.equalizer.small-up{height:100%}@media only screen and (min-width:40.063em){.columns>.equalizer.medium-up{height:100%}}@media only screen and (min-width:62.563em){.columns>.equalizer.large-up{height:100%}} @media only screen and (max-width:40em){.row.collapse-small>.columns{padding-left:0;padding-right:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){.row.collapse-medium>.columns{padding-left:0;padding-right:0}}@media only screen and (max-width:40em){.row .row.collapse-small{margin:0;width:auto}.row .row.collapse-small::before,.row .row.collapse-small::after{content:" ";display:table}.row .row.collapse-small::after{clear:both}}@media only screen and (min-width:40.063em) and (max-width:62.5em){.row .row.collapse-medium{margin:0;width:auto}.row .row.collapse-medium::before,.row .row.collapse-medium::after{content:" ";display:table}.row .row.collapse-medium::after{clear:both}}.row.divider>.columns:not(:first-child):before{content:" ";margin:0 -0.9375rem;position:absolute}@media only screen and (max-width:40em){.row.divider-medium-up>.columns::before,.row.divider-large-up>.columns::before,.small-12::before{display:none}}@media only screen and (min-width:40.063em) and (max-width:62.5em){.row.divider-large-up>.columns::before,.medium-12::before{display:none}}@media only screen and (min-width:62.563em){.large-12:before{display:none}}.floating-body.radius{border-radius:4px}.floating-body.radius>.columns>.stacks_out:first-child>.stacks_in>.top-bar-wrapper:not(.fixed){border-top-right-radius:4px;border-top-left-radius:4px}.floating-body .top-bar-wrapper.contain-to-grid.fixed{max-width:1920px;left:50%;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%)}.radius{background-clip:padding-box}img{color:#FFFFFF}img.radius{border-radius:4px}img.round{border-radius:1000px}.row{ max-width:100%!important;}.row.max-edge{max-width:100%!important}body{color:rgba(34, 34, 34, 1.00)}a{color:rgba(0, 0, 0, 1.00);text-decoration:none;font-weight:inherit}a:hover{color:rgba(3, 8, 125, 1.00)}a.close,a.close-reveal-modal{text-decoration:none}.alt{color:rgba(255, 255, 255, 1.00)}.alt a{color:rgba(0, 0, 0, 1.00)}.alt a:hover{color:rgba(3, 8, 125, 1.00)}.alt small{color:rgba(255, 255, 255, 1.00)}h1,h2,h3,h4,h5,h6{color:rgba(34, 34, 34, 1.00);margin-top:0}h1.alt,h2.alt,h3.alt,h4.alt,h5.alt,h6.alt{color:rgba(255, 255, 255, 1.00)}h1.subheader,h2.subheader,h3.subheader,h4.subheader,h5.subheader,h6.subheader{color:rgba(44, 44, 44, 1.00)}h1.subheader.alt,h2.subheader.alt,h3.subheader.alt,h4.subheader.alt,h5.subheader.alt,h6.subheader.alt{color:rgba(255, 255, 255, 1.00)}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-size:30%;color:rgba(44, 44, 44, 1.00)}h1{font-size:2.12rem}h2{font-size:1.69rem}h3{font-size:1.38rem}h4{font-size:1.12rem}h5{font-size:1.12rem}h6{font-size:1.00rem}@media only screen and (min-width:40.063em){h1{font-size:2.75rem}h2{font-size:2.31rem}h3{font-size:1.69rem}h4{font-size:1.44rem}h5{font-size:1.12rem}h6{font-size:1.00rem}}code{color:rgba(204, 55, 30, 1.00)}hr,blockquote,abbr,acronym,.vcard{border-color:rgba(221, 221, 221, 1.00)}hr.alt,blockquote.alt,abbr.alt,acronym.alt,.vcard.alt{border-color:rgba(221, 221, 221, 1.00)}blockquote,blockquote p{color:rgba(44, 44, 44, 1.00)}blockquote cite,blockquote cite a,blockquote p cite,blockquote p cite a{color:rgba(40, 40, 40, 1.00)}blockquote.alt,blockquote.alt p,blockquote p.alt,blockquote p.alt p{color:rgba(255, 255, 255, 1.00)}blockquote.alt cite,blockquote.alt cite a,blockquote.alt p cite,blockquote.alt p cite a,blockquote p.alt cite,blockquote p.alt cite a,blockquote p.alt p cite,blockquote p.alt p cite a{color:rgba(255, 255, 255, 1.00)}.flex-video{margin-bottom:0}.contain-to-grid .top-bar{max-width:1920px}.top-bar .top-bar-section ul li>a.button{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00)}.top-bar .top-bar-section ul li>a.button:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 133, 176, 1.00)}.top-bar .top-bar-section ul li>a.button.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.top-bar .top-bar-section ul li>a.button.secondary:hover{color:rgba(51, 51, 51, 1.00);background-color:rgba(219, 219, 219, 1.00)}.top-bar .top-bar-section ul li>a.button.alert{background-color:rgba(240, 65, 36, 1.00)}
.top-bar .top-bar-section ul li>a.button.alert:hover{background-color:rgba(228, 61, 34, 1.00)}.top-bar .top-bar-section ul li>a.button.success{background-color:rgba(67, 172, 106, 1.00)}.top-bar .top-bar-section ul li>a.button.success:hover{background-color:rgba(63, 163, 100, 1.00)}.top-bar .top-bar-section ul li>a.button.radius{border-radius:4px}.alert-box{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00);border-color:rgba(0, 133, 176, 1.00)}.alert-box a:not(.close){color:rgba(255, 255, 255, 1.00);text-decoration:underline}.alert-box.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00);border-color:rgba(219, 219, 219, 1.00)}.alert-box.alert{background-color:rgba(240, 65, 36, 1.00);border-color:rgba(228, 61, 34, 1.00)}.alert-box.success{background-color:rgba(67, 172, 106, 1.00);border-color:rgba(63, 163, 100, 1.00)}.alert-box.warning{background-color:rgba(240, 138, 36, 1.00);border-color:rgba(228, 131, 34, 1.00)}.alert-box.info{background-color:rgba(160, 211, 232, 1.00);color:rgba(76, 76, 76, 1.00);border-color:rgba(152, 200, 220, 1.00)}.alert-box.radius{border-radius:4px}.breadcrumbs{background-color:rgba(231, 231, 231, 1.00);border-color:rgba(219, 219, 219, 1.00);color:rgba(51, 51, 51, 1.00)}.breadcrumbs .current a{color:rgba(51, 51, 51, 1.00)}.breadcrumbs.radius{border-radius:4px}.breadcrumbs header{display:inline}.breadcrumbs .fa{font-size:1em}.breadcrumbs .unavailable{color:rgba(51, 51, 51, 1.00)}.breadcrumbs li:before{color:rgba(76, 76, 76, 1.00)}.breadcrumbs *:first-child:before{margin:0 .75rem}.button{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00)}.button:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 133, 176, 1.00)}.button.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.button.secondary:hover{color:rgba(51, 51, 51, 1.00);background-color:rgba(219, 219, 219, 1.00)}.button.alert{background-color:rgba(240, 65, 36, 1.00)}.button.alert:hover{background-color:rgba(228, 61, 34, 1.00)}.button.success{background-color:rgba(67, 172, 106, 1.00)}.button.success:hover{background-color:rgba(63, 163, 100, 1.00)}.button.radius{border-radius:4px}.button.ghost{background-color:transparent;border-width:1px;border-color:rgba(0, 140, 186, 1.00);color:rgba(0, 140, 186, 1.00)}.button.ghost:hover{color:rgba(255, 255, 255, 1.00);border-color:rgba(0, 133, 176, 1.00);background-color:rgba(0, 133, 176, 1.00)}.button.ghost.secondary{border-color:rgba(231, 231, 231, 1.00);color:rgba(231, 231, 231, 1.00)}.button.ghost.secondary:hover{color:rgba(51, 51, 51, 1.00);border-color:rgba(219, 219, 219, 1.00);background-color:rgba(219, 219, 219, 1.00)}.button.ghost.alert{border-color:rgba(240, 65, 36, 1.00);color:rgba(240, 65, 36, 1.00)}.button.ghost.alert:hover{color:rgba(255, 255, 255, 1.00);border-color:rgba(228, 61, 34, 1.00);background-color:rgba(228, 61, 34, 1.00)}.button.ghost.success{border-color:rgba(67, 172, 106, 1.00);color:rgba(67, 172, 106, 1.00)}.button.ghost.success:hover{color:rgba(255, 255, 255, 1.00);border-color:rgba(63, 163, 100, 1.00);background-color:rgba(63, 163, 100, 1.00)}.split.button.radius span{border-top-right-radius:4px;border-bottom-right-radius:4px}.split.button span::after{border-top-color:rgba(255, 255, 255, 1.00)}.split.button.secondary span::after{border-top-color:rgba(51, 51, 51, 1.00)}.button-group.radius>*:first-child,.button-group.radius>*:first-child>a,.button-group.radius>*:first-child>button,.button-group.radius>*:first-child>.button{border-bottom-left-radius:4px;border-top-left-radius:4px}.button-group.radius>*:last-child,.button-group.radius>*:last-child>a,.button-group.radius>*:last-child>button,.button-group.radius>*:last-child>.button{border-top-right-radius:4px;border-bottom-right-radius:4px}.icon-bar{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00)}.icon-bar>.item{cursor:pointer;color:rgba(255, 255, 255, 1.00)}.icon-bar>.item label,.icon-bar>.item i{color:rgba(255, 255, 255, 1.00)}.icon-bar>.item:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 133, 176, 1.00)}.icon-bar.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.icon-bar.secondary>.item{color:rgba(51, 51, 51, 1.00)}.icon-bar.secondary>.item label,.icon-bar.secondary>.item i{color:rgba(51, 51, 51, 1.00)}.icon-bar.secondary>.item:hover{background-color:rgba(219, 219, 219, 1.00);color:rgba(51, 51, 51, 1.00)}form[data-abide] .error label{color:rgba(240, 65, 36, 1.00)}form[data-abide] .error small.error,form[data-abide] .error span.error{background-color:rgba(240, 65, 36, 1.00);color:rgba(255, 255, 255, 1.00)}input[type="radio"]{margin-left:1px}select:focus{margin-left:3px}form input[type="text"],form input[type="password"],form input[type="date"],form input[type="datetime"],form input[type="datetime-local"],form input[type="month"],form input[type="week"],form input[type="email"],form input[type="number"],form input[type="search"],form input[type="tel"],form input[type="time"],form input[type="url"],form textarea,form select{color:rgba(34, 34, 34, 1.00)}
form input[type="text"]:focus,form input[type="password"]:focus,form input[type="date"]:focus,form input[type="datetime"]:focus,form input[type="datetime-local"]:focus,form input[type="month"]:focus,form input[type="week"]:focus,form input[type="email"]:focus,form input[type="number"]:focus,form input[type="search"]:focus,form input[type="tel"]:focus,form input[type="time"]:focus,form input[type="url"]:focus,form textarea:focus,form select:focus{border-color:rgba(0, 140, 186, 1.00)}form fieldset{border-color:rgba(221, 221, 221, 1.00)}form legend{background-color:#FFFFFF}form label{color:rgba(40, 40, 40, 1.00)}form.radius input[type="text"],form.radius input[type="password"],form.radius input[type="date"],form.radius input[type="datetime"],form.radius input[type="datetime-local"],form.radius input[type="month"],form.radius input[type="week"],form.radius input[type="email"],form.radius input[type="number"],form.radius input[type="search"],form.radius input[type="tel"],form.radius input[type="time"],form.radius input[type="url"],form.radius textarea,form.radius select,form.radius small.error{border-radius:4px}form.radius span.prefix,form.radius label.prefix{border-bottom-left-radius:4px;border-top-left-radius:4px}form.radius span.postfix,form.radius label.postfix{border-top-right-radius:4px;border-bottom-right-radius:4px}form.radius .input-group>*:first-child,form.radius .input-group>*:first-child *{border-bottom-left-radius:4px;border-top-left-radius:4px}form.radius .input-group>*:last-child,form.radius .input-group>*:last-child *{border-top-right-radius:4px;border-bottom-right-radius:4px}.range-slider{background-color:rgba(255, 255, 255, 1.00);border-color:rgba(225, 225, 225, 1.00)}.range-slider .range-slider-handle{background-color:rgba(0, 140, 186, 1.00)}.range-slider .range-slider-handle:hover{background-color:rgba(0, 133, 176, 1.00)}.range-slider .range-slider-active-segment{background-color:rgba(225, 225, 225, 1.00)}.range-slider.secondary{background-color:rgba(51, 51, 51, 1.00);border-color:rgba(21, 21, 21, 1.00)}.range-slider.secondary .range-slider-handle{background-color:rgba(231, 231, 231, 1.00)}.range-slider.secondary .range-slider-handle:hover{background-color:rgba(219, 219, 219, 1.00)}.range-slider.secondary .range-slider-active-segment{background-color:rgba(21, 21, 21, 1.00)}.slider-display{display:block;margin-top:20px}div.switch label{background-color:rgba(231, 231, 231, 1.00)}div.switch label::after{background-color:rgba(255, 255, 255, 1.00)}div.switch input:checked+label{background-color:rgba(0, 140, 186, 1.00)}.label{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00);margin-bottom:0}.label.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.label.alert{background-color:rgba(240, 65, 36, 1.00)}.label.success{background-color:rgba(67, 172, 106, 1.00)}.label.radius{border-radius:4px}.alert-box .close{opacity:.5}.slideshow-wrapper{min-height:50px;z-index:10}.orbit-container .orbit-bullets li{cursor:pointer;background:rgba(231, 231, 231, 1.00)}.orbit-container .orbit-bullets li.active,.orbit-container .orbit-bullets li:hover{background:rgba(0, 140, 186, 1.00)}.accordion .accordion-navigation>a{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00)}.accordion .accordion-navigation>a:hover{background-color:rgba(0, 133, 176, 1.00)}.accordion .accordion-navigation>a.radius{border-radius:4px}.accordion .accordion-navigation>a.round{border-radius:1000px}.accordion .accordion-navigation.active>a{background-color:rgba(0, 133, 176, 1.00)}.accordion .accordion-navigation>.content{background-color:transparent!important}.accordion.secondary .accordion-navigation>a{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.accordion.secondary .accordion-navigation>a:hover{background-color:rgba(219, 219, 219, 1.00)}.accordion.secondary .accordion-navigation.active>a{background-color:rgba(219, 219, 219, 1.00)}.tabs li.tab-title>a{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00)}.tabs li.tab-title>a:hover{background-color:rgba(0, 133, 176, 1.00)}.tabs li.tab-title.active>a{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 133, 176, 1.00)}.tabs.secondary li.tab-title>a{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}
.tabs.secondary li.tab-title>a:hover{background-color:rgba(219, 219, 219, 1.00)}.tabs.secondary li.tab-title.active>a{color:rgba(51, 51, 51, 1.00);background-color:rgba(219, 219, 219, 1.00)}.tabs.radius li.tab-title:first-child a{border-bottom-left-radius:4px;border-top-left-radius:4px}.tabs.radius li.tab-title:last-child a{border-top-right-radius:4px;border-bottom-right-radius:4px}.th.radius{border-radius:4px}.th:hover,.th:focus{box-shadow:0 0 6px 1px rgba(0, 70, 93, 1.00)}.f-dropdown,.f-dropdown.content{background-color:rgba(255, 255, 255, 1.00);border-color:rgba(204, 204, 204, 1.00);color:rgba(51, 51, 51, 1.00)}.f-dropdown::before,.f-dropdown.content::before{border-color:transparent transparent rgba(255, 255, 255, 1.00) transparent}.f-dropdown::after,.f-dropdown.content::after{border-color:transparent transparent rgba(204, 204, 204, 1.00) transparent}.f-dropdown li a,.f-dropdown.content li a{color:rgba(51, 51, 51, 1.00)}.f-dropdown li:hover,.f-dropdown.content li:hover{background-color:rgba(0,0,0,0.1)}.f-dropdown.radius,.f-dropdown.content.radius{border-radius:4px}.tooltip{border-radius:4px;background-color:rgba(51, 51, 51, 1.00);color:rgba(255, 255, 255, 1.00)}.panel{background-color:rgba(242, 242, 242, 1.00);border-color:rgba(219, 219, 219, 1.00)}.panel.callout{background-color:rgba(236, 250, 255, 1.00);border-color:rgba(212, 225, 229, 1.00)}.panel.radius{border-radius:4px}.panel p{color:rgba(34, 34, 34, 1.00)}.panel p a{color:rgba(0, 0, 0, 1.00)}.panel p.alt{color:rgba(255, 255, 255, 1.00)}.panel p.alt a{color:rgba(0, 0, 0, 1.00)}.panel p.alt a:hover{color:rgba(3, 8, 125, 1.00)}.panel p.alt small{color:rgba(255, 255, 255, 1.00)}.panel h1,.panel h2,.panel h3,.panel h4,.panel h5,.panel h6{color:rgba(34, 34, 34, 1.00)}.panel h1.alt,.panel h2.alt,.panel h3.alt,.panel h4.alt,.panel h5.alt,.panel h6.alt{color:rgba(255, 255, 255, 1.00)}.panel h1.subheader,.panel h2.subheader,.panel h3.subheader,.panel h4.subheader,.panel h5.subheader,.panel h6.subheader{color:rgba(44, 44, 44, 1.00)}.panel h1.subheader.alt,.panel h2.subheader.alt,.panel h3.subheader.alt,.panel h4.subheader.alt,.panel h5.subheader.alt,.panel h6.subheader.alt{color:rgba(255, 255, 255, 1.00)}.pricing-table.primary .title{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00)}.pricing-table.primary .price{color:rgba(34, 34, 34, 1.00)}.pricing-table.primary .description{color:rgba(34, 34, 34, 1.00)}.pricing-table.primary .bullet-item{color:rgba(34, 34, 34, 1.00)}.pricing-table.secondary .title{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.pricing-table.secondary .price{color:rgba(34, 34, 34, 1.00)}.pricing-table.secondary .description{color:rgba(34, 34, 34, 1.00)}.pricing-table.secondary .bullet-item{color:rgba(34, 34, 34, 1.00)}.pricing-table.radius{border-radius:4px}.pricing-table.radius .title{border-top-right-radius:4px;border-top-left-radius:4px}.pricing-table.radius .cta-button{border-bottom-right-radius:4px;border-bottom-left-radius:4px}.side-nav li a:not(.button){color:rgba(0, 0, 0, 1.00)}.side-nav li a:not(.button):hover{background-color:rgba(243, 243, 243, 1.00);color:rgba(3, 8, 125, 1.00)}.side-nav li.active>a:first-child:not(.button){color:rgba(0, 0, 0, 1.00)}.side-nav li.active:not(.has-dropdown) a:not(.button){color:rgba(0, 0, 0, 1.00)}.side-nav header{color:rgba(34, 34, 34, 1.00);margin-top:1rem;margin-bottom:.5rem}.side-nav label{color:rgba(40, 40, 40, 1.00)}.side-nav li.divider{border-top-color:rgba(221, 221, 221, 1.00)}.side-nav.alt li a:not(.button){color:rgba(0, 0, 0, 1.00)}.side-nav.alt li a:not(.button):hover{background-color:rgba(243, 243, 243, 1.00);color:rgba(3, 8, 125, 1.00)}.side-nav.alt li.active>a:first-child:not(.button){color:rgba(0, 0, 0, 1.00)}.side-nav.alt li.active:not(.has-dropdown) a:not(.button){color:rgba(0, 0, 0, 1.00)}.side-nav.alt header{color:rgba(255, 255, 255, 1.00)}.side-nav.alt label{color:rgba(255, 255, 255, 1.00)}.side-nav.alt li.divider{border-top-color:rgba(221, 221, 221, 1.00)}.sub-nav dt,.sub-nav dd,.sub-nav li{float:none;display:inline-block}.sub-nav dt a:not(.button),.sub-nav dd a:not(.button),.sub-nav li a:not(.button){color:rgba(0, 140, 186, 1.00)}.sub-nav dt a:not(.button):hover,.sub-nav dd a:not(.button):hover,.sub-nav li a:not(.button):hover{color:rgba(0, 133, 176, 1.00)}.sub-nav dt.active a:not(.button),.sub-nav dd.active a:not(.button),.sub-nav li.active a:not(.button){color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 140, 186, 1.00)}.sub-nav dt.active a:not(.button):hover,.sub-nav dd.active a:not(.button):hover,.sub-nav li.active a:not(.button):hover{background-color:rgba(0, 133, 176, 1.00)}.sub-nav dt.active a:not(.button).secondary,.sub-nav dd.active a:not(.button).secondary,.sub-nav li.active a:not(.button).secondary{color:rgba(51, 51, 51, 1.00);background-color:rgba(231, 231, 231, 1.00)}.sub-nav dt.active a:not(.button).secondary:hover,.sub-nav dd.active a:not(.button).secondary:hover,.sub-nav li.active a:not(.button).secondary:hover{background-color:rgba(219, 219, 219, 1.00)}.sub-nav.secondary dt a:not(.button),.sub-nav.secondary dd a:not(.button),.sub-nav.secondary li a:not(.button){color:rgba(231, 231, 231, 1.00)}
.sub-nav.secondary dt a:not(.button):hover,.sub-nav.secondary dd a:not(.button):hover,.sub-nav.secondary li a:not(.button):hover{color:rgba(219, 219, 219, 1.00)}.sub-nav.secondary dt.active a:not(.button),.sub-nav.secondary dd.active a:not(.button),.sub-nav.secondary li.active a:not(.button){color:rgba(51, 51, 51, 1.00);background-color:rgba(231, 231, 231, 1.00)}.sub-nav.secondary dt.active a:not(.button):hover,.sub-nav.secondary dd.active a:not(.button):hover,.sub-nav.secondary li.active a:not(.button):hover{background-color:rgba(219, 219, 219, 1.00)}.reveal-modal{z-index:9999;background-color:rgba(255, 255, 255, 1.00);color:rgba(51, 51, 51, 1.00)}.reveal-modal .close-reveal-modal{color:rgba(170, 170, 170, 1.00)}.reveal-modal-bg{z-index:9998;background:rgba(0,0,0,0.45)}nav.inline-nav ul.inline-list li{float:none;display:inline-block}nav.inline-nav ul.inline-list li:first-child{margin-left:0}nav.inline-nav ul.inline-list li.active{border-width:0 0 1px 0;border-style:solid;border-bottom-color:rgba(0, 0, 0, 1.00)}nav.inline-nav ul.inline-list.alt li.active{border-bottom-color:rgba(0, 0, 0, 1.00)}.clearing-blackout{background-color:rgba(255, 255, 255, 1.00)}.clearing-assembled .clearing-container .visible-img,.clearing-assembled .clearing-container .clearing-caption{background-color:rgba(255, 255, 255, 1.00)}.clearing-assembled .clearing-container .carousel{background-color:rgba(242, 242, 242, 1.00)}.clearing-assembled .clearing-container .clearing-close{color:rgba(170, 170, 170, 1.00)}.clearing-assembled .clearing-container .clearing-close:hover,.clearing-assembled .clearing-container .clearing-close:focus{color:rgba(170, 170, 170, 1.00)}.clearing-assembled .clearing-container .clearing-main-next>span{border-color:transparent;border-left-color:rgba(51, 51, 51, 1.00)}.clearing-assembled .clearing-container .clearing-main-prev>span{border-color:transparent;border-right-color:rgba(51, 51, 51, 1.00)}.clearing-assembled .clearing-container .clearing-caption{color:rgba(51, 51, 51, 1.00)}.copyright{color:rgba(34, 34, 34, 1.00);font-size:.9rem}.copyright a{color:rgba(0, 0, 0, 1.00)}.copyright a:hover{color:rgba(3, 8, 125, 1.00)}.fn-text-header{color:rgba(34, 34, 34, 1.00)}.fn-text-link a{color:rgba(0, 0, 0, 1.00)}.fn-text-link a:hover{color:rgba(3, 8, 125, 1.00)}.fn-text-text{color:rgba(34, 34, 34, 1.00)}.fn-text-text p,.fn-text-text div{color:rgba(34, 34, 34, 1.00)}.fn-text-accent{color:rgba(221, 221, 221, 1.00)}.fn-text-code-text{color:rgba(204, 55, 30, 1.00)}.fn-text-header-alt{color:rgba(255, 255, 255, 1.00)}.fn-text-link-alt a{color:rgba(0, 0, 0, 1.00)}.fn-text-link-alt a:hover{color:rgba(3, 8, 125, 1.00)}.fn-text-text-alt{color:rgba(255, 255, 255, 1.00)}.fn-text-text-alt p,.fn-text-text-alt div{color:rgba(255, 255, 255, 1.00)}.fn-text-accent-alt{color:rgba(221, 221, 221, 1.00)}.fn-text-primary{color:rgba(0, 140, 186, 1.00)}.fn-text-primary-text{color:rgba(255, 255, 255, 1.00)}.fn-text-primary-text p,.fn-text-primary-text div{color:rgba(255, 255, 255, 1.00)}.fn-text-secondary{color:rgba(231, 231, 231, 1.00)}.fn-text-secondary-text{color:rgba(51, 51, 51, 1.00)}.fn-text-secondary-text p,.fn-text-secondary-text div{color:rgba(51, 51, 51, 1.00)}.fn-text-alert{color:rgba(240, 65, 36, 1.00)}.fn-text-success{color:rgba(67, 172, 106, 1.00)}.fn-text-warning{color:rgba(240, 138, 36, 1.00)}.fn-text-info{color:rgba(160, 211, 232, 1.00)}.fn-text-callout{color:rgba(236, 250, 255, 1.00)}.fn-text-modal{color:rgba(255, 255, 255, 1.00)}.fn-text-modal-close{color:rgba(170, 170, 170, 1.00)}.fn-text-modal-text{color:rgba(51, 51, 51, 1.00)}.fn-text-modal-text p,.fn-text-modal-text div{color:rgba(51, 51, 51, 1.00)}.fn-bg-header{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-text{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-link{background-color:rgba(0, 0, 0, 1.00)}.fn-bg-link-hover{background-color:rgba(3, 8, 125, 1.00)}.fn-bg-accent{background-color:rgba(221, 221, 221, 1.00)}.fn-bg-code-text{background-color:rgba(204, 55, 30, 1.00)}.fn-bg-modal-text{background-color:rgba(51, 51, 51, 1.00)}.fn-bg-header-alt{background-color:rgba(255, 255, 255, 1.00)}.fn-bg-text-alt{background-color:rgba(255, 255, 255, 1.00)}.fn-bg-link-alt{background-color:rgba(0, 0, 0, 1.00)}.fn-bg-link-hover-alt{background-color:rgba(3, 8, 125, 1.00)}.fn-bg-accent-alt{background-color:rgba(221, 221, 221, 1.00)}.fn-bg-primary{background-color:rgba(0, 140, 186, 1.00)}.fn-bg-primary-text{background-color:rgba(255, 255, 255, 1.00)}.fn-bg-secondary{background-color:rgba(231, 231, 231, 1.00)}.fn-bg-secondary-text{background-color:rgba(51, 51, 51, 1.00)}.fn-bg-alert{background-color:rgba(240, 65, 36, 1.00)}.fn-bg-success{background-color:rgba(67, 172, 106, 1.00)}.fn-bg-warning{background-color:rgba(240, 138, 36, 1.00)}.fn-bg-info{background-color:rgba(160, 211, 232, 1.00)}.fn-bg-callout{background-color:rgba(236, 250, 255, 1.00)}.fn-bg-modal{background-color:rgba(255, 255, 255, 1.00)}.fn-bg-modal-close{background-color:rgba(170, 170, 170, 1.00)}.fn-backdrop{background-color:rgba(0,0,0,0.45)}.fn-backdrop-solid{background-color:rgb(0,0,0)}.fn-scheme-primary{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00)}.fn-scheme-primary div,.fn-scheme-primary p{color:rgba(255, 255, 255, 1.00)}.fn-scheme-primary.button:hover{background-color:rgba(0, 133, 176, 1.00)}.fn-scheme-secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}
.fn-scheme-secondary div,.fn-scheme-secondary p{color:rgba(51, 51, 51, 1.00)}.fn-scheme-secondary.button:hover{background-color:rgba(219, 219, 219, 1.00)}.fn-scheme-modal{background-color:rgba(255, 255, 255, 1.00);color:rgba(51, 51, 51, 1.00)}.fn-scheme-modal div,.fn-scheme-modal p{color:rgba(51, 51, 51, 1.00)}.fn-scheme-modal .close{color:rgba(170, 170, 170, 1.00)} 
#stacks_in_7830_page12 ul.dropdown .parent-link.show-for-small{display:block!important}ul.zone{float:left} meta.foundation-mq-topbar{font-family:"/only screen and (min-width:62.563em)/"!important;width:62.563em!important}@media only screen and (min-width:62.563em){  .contain-to-grid.matchPadding .top-bar{padding-left:.9375rem;padding-right:.9375rem}.menu-align-right.zone-align-left ul.menu,.menu-align-left.zone-align-right ul.zone,.menu-align-centered.zone-align-right ul.zone,.menu-align-right.zone-align-right .top-bar-section{float:right}.menu-align-centered.full-width .zone,.menu-align-centered.full-width .title-area .name{display:none!important}.top-bar .title-area{margin-right:1.1rem}.top-bar .title-area.title-area-hide{margin-right:0}#stacks_in_7830_page12 ul.dropdown .parent-link.show-for-small{display:none!important}.top-bar{overflow:visible}.top-bar:before,.top-bar:after{content:" ";display:table}.top-bar:after{clear:both}.top-bar .toggle-topbar{display:none}.top-bar .title-area{float:left}.top-bar .name .site-title a{width:auto}.top-bar input,.top-bar .button,.top-bar button{font-size:.875rem;position:relative;top:7px}.top-bar-section{transition:none 0 0;left:0!important}.top-bar-section ul{width:auto;height:auto!important;display:inline}.top-bar-section ul li{float:left}.top-bar-section ul li .js-generated{display:none}.top-bar-section li:not(.has-form) a:not(.button){padding:0 15px;line-height:45px}.top-bar-section li.active:not(.has-form) a:not(.button){padding:0 15px;line-height:45px;color:white}.top-bar-section .has-dropdown>a{padding-right:35px!important}.top-bar-section .has-dropdown>a:after{content:"";display:block;width:0;height:0;border:inset 5px;margin-top:-2.5px;top:22.5px}.top-bar-section .has-dropdown.moved{position:relative}.top-bar-section .has-dropdown.moved>.dropdown{display:block;position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px)}.top-bar-section .has-dropdown.hover>.dropdown,.top-bar-section .has-dropdown.not-click:hover>.dropdown{display:block;position:static!important;height:auto;width:auto;overflow:visible;clip:auto;position:absolute!important}.top-bar-section .has-dropdown .dropdown li.has-dropdown>a:after{border:0;content:"\00bb";top:1rem;margin-top:-1px;right:5px;line-height:1.2}.top-bar-section .dropdown{left:0;top:auto;background:transparent;min-width:100%}.top-bar-section .dropdown li a{color:white;line-height:45px;white-space:nowrap;padding:12px 15px}.top-bar-section .dropdown li label{white-space:nowrap}.top-bar-section .dropdown li .dropdown{left:100%;top:0}.top-bar-section>div>ul>.divider,.top-bar-section>ul>.divider,.top-bar-section>ul>[role="separator"]{border-bottom:0;border-top:0;border-right:solid 1px #4e4e4e;clear:none;height:45px;width:0}.top-bar-section .has-form{padding:0 15px;height:45px}.top-bar-section .right li .dropdown{left:auto;right:0}.top-bar-section .right li .dropdown li .dropdown{right:100%}.top-bar-section .left li .dropdown{right:auto;left:0}.top-bar-section .left li .dropdown li .dropdown{left:100%}.no-js .top-bar-section .has-dropdown:hover>.dropdown{display:block;position:static!important;height:auto;width:auto;overflow:visible;clip:auto;position:absolute!important}#stacks_in_7830_page12 .menu-align-centered ul.menu{display:block;text-align:center;position:absolute;top:0;left:0;width:100%}#stacks_in_7830_page12 .menu-align-centered ul.menu>li{float:none;display:inline-block;vertical-align:top}#stacks_in_7830_page12 .menu-align-centered.full-width ul.menu>li{float:left}#stacks_in_7830_page12 .top-bar .name .site-title small{display:inline!important} #stacks_in_7830_page12 .top-bar-section>ul>.divider,#stacks_in_7830_page12 .top-bar-section>ul>[role="separator"]{height:45px}#stacks_in_7830_page12 .top-bar-section li:not(.has-form) a:not(.button){padding:0 15px;line-height:45px}#stacks_in_7830_page12 .top-bar-section .has-dropdown>a{padding-right:35px!important}#stacks_in_7830_page12 .top-bar-section .has-dropdown>a:after{top:23px}#stacks_in_7830_page12 .top-bar-section .has-dropdown .dropdown li a{line-height:45px!important;padding:0 15px!important}#stacks_in_7830_page12 .top-bar-section .has-dropdown .dropdown li.has-dropdown>a:after{top:1rem}#stacks_in_7830_page12 .top-bar-section .has-dropdown .dropdown label{padding:8px 15px 2px}#stacks_in_7830_page12 .top-bar-section .has-form{padding:0 15px;height:45px}}
 #stacks_in_7830_page12{overflow:visible}#stacks_in_7830_page12 [data-magellan-expedition],#stacks_in_7830_page12 [data-magellan-expedition-clone]{background:0;padding:0!important}#stacks_in_7830_page12 .contain-to-grid .top-bar{margin:0 auto}#stacks_in_7830_page12 .top-bar-wrapper{background:#C31313;z-index:999}#stacks_in_7830_page12 .top-bar-wrapper .top-bar-section .dropdown{z-index:999}#stacks_in_7830_page12 .top-bar .site-title small{font-size:60%;display:inline}#stacks_in_7830_page12 .top-bar .top-bar-section ul li{background:none!important}#stacks_in_7830_page12 .top-bar .top-bar-section ul li>a.button{padding-top:.35rem;position:relative}#stacks_in_7830_page12 a:not(.button){text-decoration:none;color:rgba(255, 255, 255, 1.00)}#stacks_in_7830_page12 .top-bar-section .has-form{background:inherit}#stacks_in_7830_page12 .top-bar .fa{vertical-align:middle}#stacks_in_7830_page12 .top-bar ul.title-area,#stacks_in_7830_page12 .top-bar ul.zone{z-index:1000}#stacks_in_7830_page12 .top-bar ul.zone{position:relative}#stacks_in_7830_page12 .top-bar .name{display:block;position:relative;padding:0 .9375rem}#stacks_in_7830_page12 .top-bar .name.collapse{padding:0}#stacks_in_7830_page12 .top-bar .name a{height:45px;display:inline-block}#stacks_in_7830_page12 .top-bar .name span{height:100%}#stacks_in_7830_page12 .top-bar .name img{display:inline-block;vertical-align:top;height:100%;width:auto}#stacks_in_7830_page12 .top-bar .name .site-title{display:inline-block;color:rgba(255, 255, 255, 1.00);height:45px;padding:0;margin:0;line-height:45px;font-size:1.0625rem}#stacks_in_7830_page12 .top-bar .name .site-title small{color:rgba(229, 229, 229, 1.00)}#stacks_in_7830_page12 .top-bar,#stacks_in_7830_page12 .title-area,#stacks_in_7830_page12 a:not(.button),#stacks_in_7830_page12 ul,#stacks_in_7830_page12 label{background:transparent}#stacks_in_7830_page12 ul:not(.title-area) .dropdown label{color:rgba(255,255,255,0.6)}#stacks_in_7830_page12 ul:not(.title-area) ul.dropdown{background:#C31313}#stacks_in_7830_page12 ul:not(.title-area) li:hover>a:not(.button){background-color:#DD444C;color:rgba(255, 255, 255, 1.00)}#stacks_in_7830_page12 .top-bar-section .divider,#stacks_in_7830_page12 .top-bar-section [role="separator"]{border-color:rgba(255,255,255,0.4)}#stacks_in_7830_page12 .top-bar-section .has-dropdown>a:after{border-color:rgba(255,255,255,0.4) transparent transparent transparent}#stacks_in_7830_page12 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(255, 255, 255, 1.00),0 7px 0 1px rgba(255, 255, 255, 1.00),0 14px 0 1px rgba(255, 255, 255, 1.00);-moz-box-shadow:0 0 0 1px rgba(255, 255, 255, 1.00),0 7px 0 1px rgba(255, 255, 255, 1.00),0 14px 0 1px rgba(255, 255, 255, 1.00);box-shadow:0 0 0 1px rgba(255, 255, 255, 1.00),0 7px 0 1px rgba(255, 255, 255, 1.00),0 14px 0 1px rgba(255, 255, 255, 1.00)}#stacks_in_7830_page12 .top-bar.expanded .toggle-topbar a span{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}#stacks_in_7830_page12 .top-bar-wrapper.fixed{top:0px}#stacks_in_7830_page12 .top-bar-wrapper.fixed.fixedShadow{-webkit-box-shadow:rgba(0,0,0,0.40) 0 1px 5px;-moz-box-shadow:rgba(0,0,0,0.40) 0 1px 5px;box-shadow:rgba(0,0,0,0.40) 0 1px 5px}#stacks_in_7830_page12 .top-bar-wrapper.twotone{background:-webkit-linear-gradient(top,#D72727 0,#CD1D1D 45%,#C81818 50%,#C31313 50%,#B90909 100%);background:-moz-linear-gradient(top,#D72727 0,#CD1D1D 45%,#C81818 50%,#C31313 50%,#B90909 100%);background:-o-linear-gradient(top,#D72727 0,#CD1D1D 45%,#C81818 50%,#C31313 50%,#B90909 100%);background:linear-gradient(top,#D72727 0,#CD1D1D 45%,#C81818 50%,#C31313 50%,#B90909 100%)}#stacks_in_7830_page12 .top-bar-wrapper.onecolor{background:-webkit-linear-gradient(top,#EB3B3B,#C31313 85%);background:-moz-linear-gradient(top,#EB3B3B,#C31313 85%);background:-o-linear-gradient(top,#EB3B3B,#C31313 85%);background:linear-gradient(top,#EB3B3B,#C31313 85%)}#stacks_in_7830_page12 .top-bar-wrapper.twocolor{background:-webkit-linear-gradient(top,#737373,#C31313 85%);background:-moz-linear-gradient(top,#737373,#C31313 85%);background:-o-linear-gradient(top,#737373,#C31313 85%);background:linear-gradient(top,#737373,#C31313 85%)}#stacks_in_7830_page12 .top-bar-wrapper.darkAccents .top-bar-section .divider,#stacks_in_7830_page12 .top-bar-wrapper.darkAccents .top-bar-section [role="separator"]{border-color:rgba(0,0,0,0.4)}#stacks_in_7830_page12 .top-bar-wrapper.darkAccents .top-bar-section .has-dropdown>a::after{border-color:rgba(0,0,0,0.4) transparent transparent transparent}
#stacks_in_7830_page12 .top-bar-wrapper.darkAccents .dropdown label{color:rgba(0,0,0,0.6)}#stacks_in_7830_page12 .top-bar-wrapper.styleActive li.active>a{background:#DD444C;color:rgba(255, 255, 255, 1.00)}#stacks_in_7830_page12 .top-bar-wrapper.stickyLogo.sticky .top-bar .title-area li.name{visibility:hidden;opacity:0;-webkit-transition:visibility 0s linear .5s,opacity .5s linear;-moz-transition:visibility 0s linear .5s,opacity .5s linear;-o-transition:visibility 0s linear .5s,opacity .5s linear;transition:visibility 0s linear .5s,opacity .5s linear}#stacks_in_7830_page12 .top-bar-wrapper.stickyLogo.fixed .top-bar .title-area li.name{opacity:1;visibility:visible;transition-delay:0s}#stacks_in_7830_page12 .top-bar-wrapper:not(.submenuIndicator) .top-bar-section .has-dropdown>a{padding-right:15px!important}#stacks_in_7830_page12 .top-bar-wrapper:not(.submenuIndicator) .top-bar-section .has-dropdown>a::after{display:none} #stacks_in_7830_page12 .expanded:not(.top-bar) .top-bar-section{margin-top:45px}#stacks_in_7830_page12 .top-bar{height:45px;line-height:45px}#stacks_in_7830_page12 .top-bar.expanded{height:auto;line-height:inherit}#stacks_in_7830_page12 .top-bar .name{height:45px;padding:0 15px}#stacks_in_7830_page12 .top-bar .name .site-title,#stacks_in_7830_page12 .top-bar .name a,#stacks_in_7830_page12 .top-bar .name span{height:45px;line-height:45px;font-size:1.06rem}#stacks_in_7830_page12 .toggle-topbar a{font-size:0.81rem}#stacks_in_7830_page12 .toggle-topbar.menu-icon{right:15px}#stacks_in_7830_page12 .top-bar-section ul li>a{padding-left:15px;font-size:0.81rem}#stacks_in_7830_page12 .top-bar-section ul li>a.button{font-size:0.81rem;padding-right:15px;padding-left:15px}#stacks_in_7830_page12 .top-bar-section .has-form{padding:0 15px}#stacks_in_7830_page12 .top-bar-section .has-dropdown>a:after{margin-right:15px}#stacks_in_7830_page12 .top-bar-section .dropdown li{font-size:0.81rem}#stacks_in_7830_page12 .top-bar-section .dropdown li a{padding:8px 15px}#stacks_in_7830_page12 .top-bar-section .dropdown li.title h5 a{line-height:23px}#stacks_in_7830_page12 .top-bar-section .dropdown li.has-form{padding:8px 15px}#stacks_in_7830_page12 .top-bar-section .dropdown label{padding:8px 15px 2px;font-size:80%}
  .mb_searchandfind_header{
    
    font-weight: bold;
    
    
    text-decoration: none!important;
    
    
    color: #000000;
    font-size: 12px !important;
  }

  .mb_searchandfind_descripton{
    
    
    text-decoration: none!important;
    
    
    color: #C31313;
    font-size: 12px !important;
    max-width: 500px;
  }

  .ui-state-focus {
    border: 1px solid gray !important; 
    background: #FFCCFF !important;
    display: inline-block !important;
  }

  .mb_searchandfind_link{
    width: 100%;
    /*margin: 3px;*/
    display: inline-block;
  }

  .mb_searchandfind_link > div {
    margin: 3px;
  }

  .searchandfind_result{
  
    display: none;
  
    border: 1px solid gray;
    margin: 10px 5px;
    box-shadow: 0 0 5px black;
    padding: 5px;
  }

  .searchandfind_result:odd{
    background-color: lightgray;
  }

  #stacks_in_7847_page12 .value {
    margin-bottom: 10px
  }

  ul.ui-autocomplete {
    /*width:90% !important;
    left:5% !important;*/
  }

  li.ui-menu-item {
    padding: 0 !important;
    width:100%;
  }

  li.ui-menu-item .ui-state-focus {
    margin: 0 !important;
    border:0 !important;
  }


  #mb_searchandfind_input_stacks_in_7847_page12 {
    width: 115px;
    height: 20px;
    font-size: 11px;
    border: 1px #000000 solid;
    padding: 4px;
  }  .searchandfind_result{
  
    display: none;
  
    border: 1px solid gray;
    margin: 10px 5px;
    box-shadow: 0 0 5px black;
    padding: 5px;
  }

  .searchandfind_result:odd{
    background-color: lightgray;
  }

  #stacks_in_7849_page12 .value {
    margin-bottom: 10px
  }  .searchandfind_result{
  
    display: none;
  
    border: 1px solid gray;
    margin: 10px 5px;
    box-shadow: 0 0 5px black;
    padding: 5px;
  }

  .searchandfind_result:odd{
    background-color: lightgray;
  }

  #stacks_in_7853_page12 .value {
    margin-bottom: 10px
  }  .searchandfind_result{
  
    display: none;
  
    border: 1px solid gray;
    margin: 10px 5px;
    box-shadow: 0 0 5px black;
    padding: 5px;
  }

  .searchandfind_result:odd{
    background-color: lightgray;
  }

  #stacks_in_7857_page12 .value {
    margin-bottom: 10px
  }  .searchandfind_result{
  
    display: none;
  
    border: 1px solid gray;
    margin: 10px 5px;
    box-shadow: 0 0 5px black;
    padding: 5px;
  }

  .searchandfind_result:odd{
    background-color: lightgray;
  }

  #stacks_in_7861_page12 .value {
    margin-bottom: 10px
  }  .searchandfind_result{
  
    display: none;
  
    border: 1px solid gray;
    margin: 10px 5px;
    box-shadow: 0 0 5px black;
    padding: 5px;
  }

  .searchandfind_result:odd{
    background-color: lightgray;
  }

  #stacks_in_7865_page12 .value {
    margin-bottom: 10px
  }  .searchandfind_result{
  
    display: none;
  
    border: 1px solid gray;
    margin: 10px 5px;
    box-shadow: 0 0 5px black;
    padding: 5px;
  }

  .searchandfind_result:odd{
    background-color: lightgray;
  }

  #stacks_in_7869_page12 .value {
    margin-bottom: 10px
  }  .searchandfind_result{
  
    display: none;
  
    border: 1px solid gray;
    margin: 10px 5px;
    box-shadow: 0 0 5px black;
    padding: 5px;
  }

  .searchandfind_result:odd{
    background-color: lightgray;
  }

  #stacks_in_7873_page12 .value {
    margin-bottom: 10px
  }  .searchandfind_result{
  
    display: none;
  
    border: 1px solid gray;
    margin: 10px 5px;
    box-shadow: 0 0 5px black;
    padding: 5px;
  }

  .searchandfind_result:odd{
    background-color: lightgray;
  }

  #stacks_in_7877_page12 .value {
    margin-bottom: 10px
  }  .searchandfind_result{
  
    display: none;
  
    border: 1px solid gray;
    margin: 10px 5px;
    box-shadow: 0 0 5px black;
    padding: 5px;
  }

  .searchandfind_result:odd{
    background-color: lightgray;
  }

  #stacks_in_7899_page12 .value {
    margin-bottom: 10px
  }  .searchandfind_result{
  
    display: none;
  
    border: 1px solid gray;
    margin: 10px 5px;
    box-shadow: 0 0 5px black;
    padding: 5px;
  }

  .searchandfind_result:odd{
    background-color: lightgray;
  }

  #stacks_in_7903_page12 .value {
    margin-bottom: 10px
  }  .searchandfind_result{
  
    display: none;
  
    border: 1px solid gray;
    margin: 10px 5px;
    box-shadow: 0 0 5px black;
    padding: 5px;
  }

  .searchandfind_result:odd{
    background-color: lightgray;
  }

  #stacks_in_7907_page12 .value {
    margin-bottom: 10px
  }  .searchandfind_result{
  
    display: none;
  
    border: 1px solid gray;
    margin: 10px 5px;
    box-shadow: 0 0 5px black;
    padding: 5px;
  }

  .searchandfind_result:odd{
    background-color: lightgray;
  }

  #stacks_in_7926_page12 .value {
    margin-bottom: 10px
  }  .searchandfind_result{
  
    display: none;
  
    border: 1px solid gray;
    margin: 10px 5px;
    box-shadow: 0 0 5px black;
    padding: 5px;
  }

  .searchandfind_result:odd{
    background-color: lightgray;
  }

  #stacks_in_7932_page12 .value {
    margin-bottom: 10px
  }  .searchandfind_result{
  
    display: none;
  
    border: 1px solid gray;
    margin: 10px 5px;
    box-shadow: 0 0 5px black;
    padding: 5px;
  }

  .searchandfind_result:odd{
    background-color: lightgray;
  }

  #stacks_in_7936_page12 .value {
    margin-bottom: 10px
  }  .searchandfind_result{
  
    display: none;
  
    border: 1px solid gray;
    margin: 10px 5px;
    box-shadow: 0 0 5px black;
    padding: 5px;
  }

  .searchandfind_result:odd{
    background-color: lightgray;
  }

  #stacks_in_7940_page12 .value {
    margin-bottom: 10px
  }  .searchandfind_result{
  
    display: none;
  
    border: 1px solid gray;
    margin: 10px 5px;
    box-shadow: 0 0 5px black;
    padding: 5px;
  }

  .searchandfind_result:odd{
    background-color: lightgray;
  }

  #stacks_in_7944_page12 .value {
    margin-bottom: 10px
  }  .searchandfind_result{
  
    display: none;
  
    border: 1px solid gray;
    margin: 10px 5px;
    box-shadow: 0 0 5px black;
    padding: 5px;
  }

  .searchandfind_result:odd{
    background-color: lightgray;
  }

  #stacks_in_7957_page12 .value {
    margin-bottom: 10px
  }.vegas-loading{display:none}.vegas-background{-ms-interpolation-mode:bicubic;image-rendering:optimizeQuality;max-width:none!important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;opacity:1.00} #stacks_in_2131_page12>.jw-parallax{overflow:hidden;background:transparent}#stacks_in_2131_page12>.jw-parallax.type-cover{position:absolute}#stacks_in_2131_page12>.jw-parallax.type-image{min-height:350px}#stacks_in_2131_page12>.jw-parallax.type-slice{min-height:350px}#stacks_in_2131_page12>.jw-parallax.touch-device{background-image:none!important}#stacks_in_2131_page12>.jw-parallax.touch-device:after{position:absolute;content:"";top:0;left:0;bottom:0;right:0;height:100%;width:100%;background-image:url(../index_files/bgImage_2131.jpg);background-size:cover;background-position:center center;overflow:hidden;opacity:1.00;z-index:-1}#stacks_in_2131_page12>.jw-parallax.touch-device.bg-warehouse:after{background-image:url()}#stacks_in_2131_page12>.jw-parallax>*{z-index:10} @media only screen and (max-width:40em){.parallax-mirror{display:none}#stacks_in_2131_page12>.jw-parallax{background-image:none!important}#stacks_in_2131_page12>.jw-parallax:after{position:absolute;content:"";top:0;left:0;bottom:0;right:0;height:100%;width:100%;background-image:url(../index_files/bgImage_2131.jpg);background-size:cover;background-position:center center;overflow:hidden;opacity:1.00;z-index:-1}#stacks_in_2131_page12>.jw-parallax.bg-warehouse:after{background-image:url()}}  
 #stacks_in_2133_page12 h1,#stacks_in_2133_page12 h2,#stacks_in_2133_page12 h3,#stacks_in_2133_page12 h4,#stacks_in_2133_page12 h5,#stacks_in_2133_page12 h6,#stacks_in_2133_page12 div{color:rgba(195, 19, 19, 1.00);font-size:1.69rem;font-weight:900;font-style:normal}#stacks_in_2133_page12 h1 a,#stacks_in_2133_page12 h2 a,#stacks_in_2133_page12 h3 a,#stacks_in_2133_page12 h4 a,#stacks_in_2133_page12 h5 a,#stacks_in_2133_page12 h6 a,#stacks_in_2133_page12 div a{color:rgba(195, 19, 19, 1.00);font-size:1.69rem}#stacks_in_2133_page12 h1 a:hover,#stacks_in_2133_page12 h2 a:hover,#stacks_in_2133_page12 h3 a:hover,#stacks_in_2133_page12 h4 a:hover,#stacks_in_2133_page12 h5 a:hover,#stacks_in_2133_page12 h6 a:hover,#stacks_in_2133_page12 div a:hover{color:rgba(146, 14, 14, 1.00)}@media only screen and (min-width:40.063em){#stacks_in_2133_page12 h1 a,#stacks_in_2133_page12 h2 a,#stacks_in_2133_page12 h3 a,#stacks_in_2133_page12 h4 a,#stacks_in_2133_page12 h5 a,#stacks_in_2133_page12 h6 a,#stacks_in_2133_page12 div a{font-size:4.00rem}}@media only screen and (min-width:40.063em){#stacks_in_2133_page12 h1,#stacks_in_2133_page12 h2,#stacks_in_2133_page12 h3,#stacks_in_2133_page12 h4,#stacks_in_2133_page12 h5,#stacks_in_2133_page12 h6,#stacks_in_2133_page12 div{font-size:4.00rem}}#stacks_in_2133_page12 small,#stacks_in_2133_page12 small div{font-size:60%;color:rgba(111, 111, 111, 1.00)} 

#stacks_in_2133_page12 {
	margin: 80px 0px 0px 0px;
}
 #stacks_in_2136_page12 h1,#stacks_in_2136_page12 h2,#stacks_in_2136_page12 h3,#stacks_in_2136_page12 h4,#stacks_in_2136_page12 h5,#stacks_in_2136_page12 h6,#stacks_in_2136_page12 div{color:rgba(195, 19, 19, 1.00);font-size:1.69rem;font-weight:900;font-style:normal}#stacks_in_2136_page12 h1 a,#stacks_in_2136_page12 h2 a,#stacks_in_2136_page12 h3 a,#stacks_in_2136_page12 h4 a,#stacks_in_2136_page12 h5 a,#stacks_in_2136_page12 h6 a,#stacks_in_2136_page12 div a{color:rgba(195, 19, 19, 1.00);font-size:1.69rem}#stacks_in_2136_page12 h1 a:hover,#stacks_in_2136_page12 h2 a:hover,#stacks_in_2136_page12 h3 a:hover,#stacks_in_2136_page12 h4 a:hover,#stacks_in_2136_page12 h5 a:hover,#stacks_in_2136_page12 h6 a:hover,#stacks_in_2136_page12 div a:hover{color:rgba(146, 14, 14, 1.00)}@media only screen and (min-width:40.063em){#stacks_in_2136_page12 h1 a,#stacks_in_2136_page12 h2 a,#stacks_in_2136_page12 h3 a,#stacks_in_2136_page12 h4 a,#stacks_in_2136_page12 h5 a,#stacks_in_2136_page12 h6 a,#stacks_in_2136_page12 div a{font-size:3.00rem}}@media only screen and (min-width:40.063em){#stacks_in_2136_page12 h1,#stacks_in_2136_page12 h2,#stacks_in_2136_page12 h3,#stacks_in_2136_page12 h4,#stacks_in_2136_page12 h5,#stacks_in_2136_page12 h6,#stacks_in_2136_page12 div{font-size:3.00rem}}#stacks_in_2136_page12 small,#stacks_in_2136_page12 small div{font-size:60%;color:rgba(111, 111, 111, 1.00)} 

#stacks_in_2136_page12 {
	margin: 28px 0px 0px 0px;
}
  #stacks_in_2362_page12 .button{background-color:rgba(195, 19, 19, 1.00);color:rgba(255, 255, 255, 1.00)}#stacks_in_2362_page12 .button:hover{background-color:rgba(3, 8, 125, 1.00)} 

#stacks_in_2362_page12 {
	-moz-border-radius: 0px 0px 10px 30px;
	-webkit-border-radius: 0px 0px 10px 30px;
	border-radius: 0px 0px 10px 30px;
	padding: 50px 0px 0px 0px;
}
#stacks_in_2040_page12 .breadcrumbs li{ text-transform:none;}#stacks_in_2040_page12 .breadcrumbs li:before{content:"|"}#stacks_in_2040_page12 .breadcrumbs li a{ text-transform:none;} #stacks_in_2040_page12 .breadcrumbs{ background-color:rgba(231, 231, 231, 1.00);border-color:rgba(219, 219, 219, 1.00); color:rgba(51, 51, 51, 1.00)}#stacks_in_2040_page12 .breadcrumbs a{color:rgba(195, 19, 19, 1.00)}#stacks_in_2040_page12 .breadcrumbs a:hover{color:rgba(3, 8, 125, 1.00)}#stacks_in_2040_page12 .breadcrumbs .current a{color:rgba(51, 51, 51, 1.00)}#stacks_in_2040_page12 .breadcrumbs .unavailable{color:rgba(51, 51, 51, 1.00)}#stacks_in_2040_page12 .breadcrumbs li:before{color:rgba(76, 76, 76, 1.00)} 

#stacks_in_2040_page12 {
	margin: 0px 0px 61px 0px;
}
#stacks_in_8255_page12>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_8255_page12>.row.collapse{padding-left:0;padding-right:0}#stacks_in_8255_page12>.row.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_8255_page12>.row>.maxwidth{max-width:500px}#stacks_in_8255_page12>.hide-overflow{overflow:hidden!important}


#stacks_in_8255_page12 {
	margin: 114px 0px 0px 0px;
}
/*
 * Booklit
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.4.0
 */

#stacks_in_8259_page12 .imagesTypeEnabled,
#stacks_in_8259_page12 .contentTypeEnabled {
  display: none;
}
#stacks_in_8259_page12 .booklitImages .imagesTypeEnabled {
  display: block;
}
#stacks_in_8259_page12 .booklitContent .contentTypeEnabled {
  display: block;
}





.loading > div,
.loading > a,
.loading > ul {
  display: none;
}
.loading {
  height: 300px;
}
.loading div.loader {
  display: block;
}
#stacks_in_8259_page12.com_onelittledesigner_stacks_Booklit_stack.fullscreenBook  {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  height: 100%;
  max-width: 100%;
  background: rgba(0,0,0,0.75);
  z-index: 9999999;
  -webkit-perspective: 6000px;
  -moz-perspective: 6000px;
  -ms-perspective: 6000px;
  -o-perspective: 6000px;
  perspective: 6000px;
}
/*
#stacks_in_8259_page12.com_onelittledesigner_stacks_Booklit_stack.fullscreenBook #booklit-stacks_in_8259_page12 {
  max-width: 900px;
  margin: 0 auto;
  display: block;
}
*/
#stacks_in_8259_page12.com_onelittledesigner_stacks_Booklit_stack.fullscreenBook  #right-stacks_in_8259_page12,
#stacks_in_8259_page12.com_onelittledesigner_stacks_Booklit_stack.fullscreenBook  #right-stacks_in_8259_page12 {
  -webkit-perspective: 6000px;
  -moz-perspective: 6000px;
  -ms-perspective: 6000px;
  -o-perspective: 6000px;
  perspective: 6000px;
}
#stacks_in_8259_page12.fullscreenBook .com_onelittledesigner_stacks_Booklit_Page_stack {max-width: 450.000000px;}
#stacks_in_8259_page12.fullscreenBook #booklit-stacks_in_8259_page12 {max-width: 100% !important;}
#stacks_in_8259_page12.com_onelittledesigner_stacks_Booklit_stack.fullscreenBook .panzoom {
  padding: 50px !important;
  height: 100%;
}
.fullscreenBook .stacks_in,
.fullscreenBook .stacks_out,
.fullscreenBook .stacks_top {
  overflow: visible !important;
}
.fullscreenBook #numberNav-stacks_in_8259_page12 {
  bottom: 0;
}
/*
.fullscreenBook #stacks_in_8259_page12 .singlePage {
  height: auto !important;
}
*/
#stacks_in_8259_page12 .toggleFullscreenBook {
  width: 30px;
  height: 30px;
  background-image: url("../index_files/img/fullscreen.png");
  display: block;
  background-size: 100%;
  background-color: rgba(0,0,0,0.4);
  border-radius: 4px;
  position: absolute;
  right: 20px;
  top: 10px;
  z-index: 9999;
  opacity: 0;
  transition: opacity .25s ease-in-out;
  -moz-transition: opacity .25s ease-in-out;
  -webkit-transition: opacity .25s ease-in-out;
}
#stacks_in_8259_page12 .toggleFullscreenBook.close {
  background-image: url("../index_files/img/close.png");
  background-color: transparent;
  opacity: 1;
}
#stacks_in_8259_page12:hover .toggleFullscreenBook {
  opacity: .75;
  transition: opacity .25s ease-in-out;
  -moz-transition: opacity .25s ease-in-out;
  -webkit-transition: opacity .25s ease-in-out;
}
.fullscreenHeight {
  height: auto !important;
}

#stacks_in_8259_page12 .toggleFullscreenBook {
  display: none !important;
}


#stacks_in_8259_page12 {
/*  -webkit-backface-visibility: hidden;*/
  -webkit-transform: translateZ(0) scale(1.0, 1.0);
}
#booklit-stacks_in_8259_page12  {
  display: inline-block;
  margin: 0 auto;
  width: 100%;
  /*height: 100%;*/
/*  padding: 70px 0;*/
  /*-webkit-perspective: 2500px;
     -moz-perspective: 2500px;
      -ms-perspective: 2500px;
       -o-perspective: 2500px;
          perspective: 2500px;*/
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  /*min-height: 500px;*/
}

#right-stacks_in_8259_page12 {
  z-index:1;
  float: right;
  position: relative;
  width: 50%;
  height: 100%;
  -webkit-perspective: 2500px;
     -moz-perspective: 2500px;
      -ms-perspective: 2500px;
       -o-perspective: 2500px;
          perspective: 2500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  /*min-height: 500px;*/
}


#left-stacks_in_8259_page12 {
  z-index:1;
  /*float: left;*/
  max-width: 50%;
  display: block;
  position: relative;
  height: 100%;
  -webkit-perspective: 2500px;
     -moz-perspective: 2500px;
      -ms-perspective: 2500px;
       -o-perspective: 2500px;
          perspective: 2500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  /*min-height: 500px;*/
}


#left-stacks_in_8259_page12 .page {
  left: 100%;
  left: 0 \0/; /* IE8+9  */
}

/*[data-stack], [data-stack] > .com_onelittledesigner_stacks_Booklit_Page_stack {
  -webkit-perspective: 2500px;
     -moz-perspective: 2500px;
      -ms-perspective: 2500px;
       -o-perspective: 2500px;
          perspective: 2500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
}*/

.page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow: hidden;

  -webkit-transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg) translateZ(0);
     -moz-transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg) translateZ(0);
      -ms-transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg);
       -o-transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg) translateZ(0);
          transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg);
  -webkit-transform-style: preserve-3d; /* Chrome, Safari, Opera */
  transform-style: preserve-3d;
  -webkit-transform-origin: 0% 0%;
     -moz-transform-origin: 0% 0%;
      -ms-transform-origin: 0% 0%;
       -o-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
  -webkit-backface-visibility: visible;
     -moz-backface-visibility: visible;
      -ms-backface-visibility: visible;
       -o-backface-visibility: visible;
          backface-visibility: visible;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
       -o-user-select: none;
          user-select: none;
}
#stacks_in_8259_page12 .page {
  -webkit-transition: all 500ms linear;
  -moz-transition: all 500ms linear;
  -ms-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
}
#stacks_in_8259_page12 .page > div {
  -webkit-border-top-left-radius: 0px;
  -webkit-border-top-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 0px;

  -moz-border-radius-topleft: 0px;
  -moz-border-radius-topright: 10px;
  -moz-border-radius-bottomright: 10px;
  -moz-border-radius-bottomleft: 0px;

  border-top-left-radius: 0px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 0px;

  -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
}
#stacks_in_8259_page12 #left-stacks_in_8259_page12 .page {
  border-top-left-radius:  10px \0/; /* IE8+9  */
  border-top-right-radius: 0px \0/; /* IE8+9  */
  border-bottom-right-radius: 0px \0/; /* IE8+9  */
  border-bottom-left-radius:  10px \0/; /* IE8+9  */
}

.corner {
  position: absolute !important;
  z-index: 10000;
}

.front {
  z-index: inherit;
  z-index: 1;
  position: relative;
  background: #fafafa;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: 50% 50%;
     -moz-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
       -o-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg) ;
     -moz-transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg) ;
      -ms-transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg) ;
       -o-transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg) ;
          transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg) ;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.back {
  z-index: inherit;
  z-index: 0;
  position: absolute;
  background: #f8f8f8;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: 50% 50%;
     -moz-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
       -o-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotateY(180deg) rotateX(0deg) rotateZ(0deg) ;
     -moz-transform: rotateY(180deg) rotateX(0deg) rotateZ(0deg) ;
      -ms-transform: rotateY(180deg) rotateX(0deg) rotateZ(0deg) ;
       -o-transform: rotateY(180deg) rotateX(0deg) rotateZ(0deg) ;
          transform: rotateY(180deg) rotateX(0deg) rotateZ(0deg) ;
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  -ms-backface-visibility: visible;
  -o-backface-visibility: visible;
  backface-visibility: visible;
}
#right-stacks_in_8259_page12 .front {
  -webkit-transform: rotateY(0deg) translateZ(1px);
}
#left-stacks_in_8259_page12 .front {
  -webkit-transform: rotateY(0deg) translateZ(0px);
}
#right-stacks_in_8259_page12 .back {
  -webkit-transform: rotateY(-180deg) translateZ(0px);
}
#left-stacks_in_8259_page12 .back {
  -webkit-transform: rotateY(-180deg) translateZ(-1px);
}
#right-stacks_in_8259_page12 .front a {
  -webkit-transform: translateZ(1px);
}
#left-stacks_in_8259_page12 .front a {
  -webkit-transform: translateZ(-1px);
}
#right-stacks_in_8259_page12 .back a {
  -webkit-transform: translateZ(-1px);
}
#left-stacks_in_8259_page12 .back a {
  -webkit-transform: translateZ(1px);
}
.front a {
  display: inline-block;
  box-sizing: border-box;

}
.back a {
  display: inline-block;
  box-sizing: border-box;
}
.moveRight {
  -webkit-transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg) ;
     -moz-transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg) ;
      -ms-transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg) ;
       -o-transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg) ;
          transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg) ;
}

.moveLeft {
  -webkit-transform: rotateY(-180deg) rotateX(0deg) rotateZ(0deg) ;
     -moz-transform: rotateY(-179.999deg) rotateX(0deg) rotateZ(0deg) ;
      -ms-transform: rotateY(-180deg) rotateX(0deg) rotateZ(0deg) ;
       -o-transform: rotateY(-180deg) rotateX(0deg) rotateZ(0deg) ;
          transform: rotateY(-180deg) rotateX(0deg) rotateZ(0deg) ;
}
/* Page Index On */
/*#numberNav-stacks_in_8259_page12 {
  width: 100%;
  box-sizing: border-box;
  float: left;
}*/
/*#numberNav-stacks_in_8259_page12 li {
  display: inline-block;
  list-style: none;
  width: 15px;
  cursor: pointer;
}
#numberNav-stacks_in_8259_page12 li.currentPage {
  font-weight: bold;
  color: red;
}*/
#numberNav-stacks_in_8259_page12 {
  display: block;
  text-align: center;
  position: absolute;
  list-style: none;
  margin: 0;
  bottom: -60px;
  left: 0;
  right: 0;
}
#numberNav-stacks_in_8259_page12 li {
  display: inline-block;
  margin: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
#numberNav-stacks_in_8259_page12 li span {display: none;}
#numberNav-stacks_in_8259_page12 li:before {
  background-color: #E6E6E6;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  -webkit-border-radius: 100%;
     -moz-border-radius: 100%;
      -ms-border-radius: 100%;
          border-radius: 100%;
  -webkit-transition: 0.3s ease;
     -moz-transition: 0.3s ease;
      -ms-transition: 0.3s ease;
          transition: 0.3s ease;
}
#numberNav-stacks_in_8259_page12 li:hover:before {
  width: 15px;
  height: 15px;
  margin: -2px 0 0 -2px;
}
#numberNav-stacks_in_8259_page12 li.currentPage:before,
#numberNav-stacks_in_8259_page12 li:hover:before {
  background-color: #E6E6E6;
}
#numberNav-stacks_in_8259_page12 li.currentPage:hover:before, #numberNav-stacks_in_8259_page12 li.currentPage:before {
  width: 20px;
  height: 20px;
  margin: -5px 0 0 -5px;
}
/* Pagination On */
#booklit-stacks_in_8259_page12 {-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
/*  padding: 70px 50px; */
  position:static;
}
#booklit-stacks_in_8259_page12 .pagination {
  width: 40px;
  height: 50px;
  background-color: #3399FF;
  position: absolute;
  z-index: 0;
  cursor: pointer;
}
#booklit-stacks_in_8259_page12.hoverOnly #pageLeft-stacks_in_8259_page12, #booklit-stacks_in_8259_page12.hoverOnly #pageRight-stacks_in_8259_page12 {
  filter:alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#booklit-stacks_in_8259_page12.hoverOnly:hover #pageLeft-stacks_in_8259_page12, #booklit-stacks_in_8259_page12.hoverOnly:hover #pageRight-stacks_in_8259_page12 {
  filter:alpha(opacity=100);
  opacity: 1;
  display: block;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#pageLeft-stacks_in_8259_page12 {
  left: 10px;
  background-image: url('img/page-left.png');
  display: none;
}
#pageRight-stacks_in_8259_page12 {
  right: 10px;
  background-image: url('img/page-right.png');
}
#pageRight-stacks_in_8259_page12.flat, #pageLeft-stacks_in_8259_page12.flat {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  /*-webkit-box-shadow: 6px 0px 0px 6px rgba(255,255,255,0.2);
  -moz-box-shadow: 6px 0px 0px 6px rgba(255,255,255,0.2);
  box-shadow: 6px 0px 0px 6px rgba(255,255,255,0.2);*/
}
#pageRight-stacks_in_8259_page12.flat:active, #pageLeft-stacks_in_8259_page12.flat:active {
  background-position: 0px 1px;
}
#pageRight-stacks_in_8259_page12.simple, #pageLeft-stacks_in_8259_page12.simple {
  background-color: transparent;
}
#pageRight-stacks_in_8259_page12.simple:active, #pageLeft-stacks_in_8259_page12.simple:active {
  background-position: 0px 1px;
}
#pageRight-stacks_in_8259_page12.detailed, #pageLeft-stacks_in_8259_page12.detailed {
  -webkit-box-shadow: 0px 1px 0px 1px rgba(255,255,255,0.2) inset, 1px 1px 3px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 1px 0px 1px rgba(255,255,255,0.2) inset, 1px 1px 3px rgba(0,0,0,0.2);
  box-shadow: 0px 1px 0px 1px rgba(255,255,255,0.2) inset, 1px 1px 3px rgba(0,0,0,0.2);
  overflow: hidden;
}
#pageRight-stacks_in_8259_page12.detailed:active, #pageLeft-stacks_in_8259_page12.detailed:active {
  background-position: 0px 1px;
  -webkit-box-shadow: 0px 1px 0px 1px rgba(255,255,255,0.2), 1px 1px 3px rgba(0,0,0,0.2) inset;
  -moz-box-shadow: 0px 1px 0px 1px rgba(255,255,255,0.2), 1px 1px 3px rgba(0,0,0,0.2) inset;
  box-shadow: 0px 1px 0px 1px rgba(255,255,255,0.2), 1px 1px 3px rgba(0,0,0,0.2) inset;
}
#pageRight-stacks_in_8259_page12.detailed {
  -webkit-border-top-left-radius: 0px;
  -webkit-border-top-right-radius: 20px;
  -webkit-border-bottom-right-radius: 20px;
  -webkit-border-bottom-left-radius: 0px;
  -moz-border-radius-topleft: 0px;
  -moz-border-radius-topright: 20px;
  -moz-border-radius-bottomright: 20px;
  -moz-border-radius-bottomleft: 0px;
  border-top-left-radius: 0px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0px;
}
#pageLeft-stacks_in_8259_page12.detailed {
  background-image: url('img/page-left.png');
  -webkit-border-top-left-radius: 20px;
  -webkit-border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-topleft: 20px;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 20px;
}

#pageLeft-stacks_in_8259_page12,
#pageRight-stacks_in_8259_page12 {
  display: none !important;
}


#stacks_in_8259_page12 .center {text-align: center;}
#stacks_in_8259_page12 .center .fa {font-size: 80px;}
#stacks_in_8259_page12 .center a {color: #ffffff;}
#stacks_in_8259_page12 .center a:hover {color: #ffffff;}
#stacks_in_8259_page12 .centered_image img {width: auto; max-width: 100%; height: auto;}
#stacks_in_8259_page12 #tab-container {min-width: 0px !important; }
#stacks_in_8259_page12 .chocBoxImage img {width: 100%;}

@media all and (min-width: 800px) {
  #pageRight-stacks_in_8259_page12, #pageLeft-stacks_in_8259_page12 {
    position: absolute;
    top: 50%;
    margin-top: -25px;
  }
  #booklit-stacks_in_8259_page12  {
/*
    margin-left: 0px !important;
    margin-right: 0px !important;
*/
    margin: 0 auto;
    max-width: 900px;
    display: block;
  }
  #pageLeft-stacks_in_8259_page12 {
    left: 10px !important;
    right: auto !important
  }
  #pageRight-stacks_in_8259_page12 {
    right: 10px !important;
    left: auto !important;
  }
}
@media all and (max-width: 800px) {
  #pageRight-stacks_in_8259_page12.detailed, #pageLeft-stacks_in_8259_page12.detailed,
  #pageRight-stacks_in_8259_page12.detailed:active, #pageLeft-stacks_in_8259_page12.detailed:active {
    -webkit-box-shadow: 0px 0px 0px black;
    -moz-box-shadow: 0px 0px 0px black;
    box-shadow: 0px 0px 0px black;
  }
  #stacks_in_8259_page12 .toggleFullscreenBook {
    display: none;
  }
  #booklit-stacks_in_8259_page12 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 200%;
    margin-left: -90%;
    padding-top: 60px !important;
    padding-left: 15% !important;
    padding-right: 15% !important;
  }
  #numberNav-stacks_in_8259_page12 {display: none;}
  /*#booklit-stacks_in_8259_page12 .front, #booklit-stacks_in_8259_page12 .back {width: 88%;}*/
  #right-stacks_in_8259_page12 {width: 50%;}
  #left-stacks_in_8259_page12 {max-width: 50%}
/*
  #booklit-stacks_in_8259_page12 .pagination {
    width: 52px;
    background-repeat: no-repeat;
    background-position: center center;
  }
*/
  #pageRight-stacks_in_8259_page12 { top: 5px !important; left: 70%; right: initial; }
  #pageLeft-stacks_in_8259_page12 {top: 5px !important; right: 30%; left: initial;}
  #booklit-stacks_in_8259_page12.hoverOnly #pageLeft-stacks_in_8259_page12, #booklit-stacks_in_8259_page12.hoverOnly #pageRight-stacks_in_8259_page12 {
    filter:alpha(opacity=100);
    opacity: 1;
  }
  #booklit-stacks_in_8259_page12.hoverOnly:hover #pageLeft-stacks_in_8259_page12, #booklit-stacks_in_8259_page12.hoverOnly:hover #pageRight-stacks_in_8259_page12 {
    filter:alpha(opacity=100);
    opacity: 1;
  }
}

#stacks_in_8259_page12 .loader {
  position: absolute;
  z-index: 9999;
  left: 50%;
  top: 50%;
  margin-left: -75px;
  margin-top: -35px;
  width: 150px;
  height: 70px;
  text-align: center;
  color: #C31313;
}
#stacks_in_8259_page12 .loader span {
  position: absolute;
  width: 100%;
  left: 0px;
  top: 45px;
}
#stacks_in_8259_page12 .loader .spinner {
  width: 30px;
  height: 30px;
  background-color: #C31313;
  margin: 0px auto;
  -webkit-animation: rotateplane 1.2s infinite ease-in-out;
  animation: rotateplane 1.2s infinite ease-in-out;
}




@-webkit-keyframes rotateplane {
  0% { -webkit-transform: perspective(120px) }
  50% { -webkit-transform: perspective(120px) rotateY(180deg) }
  100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
}

@keyframes rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
  } 50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
  } 100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}


#stacks_in_8259_page12 {
	margin: 0px 0px 30px 0px;
}
/*
 * Pure Grids
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.3.4
 */
#stacks_in_8261_page12 .back {
  background-color: #F4F4F4;
  color: #000000;
}
#stacks_in_8261_page12 .front {
  background-color: #C31313;
  color: #FFFFFF;
}
#stacks_in_8261_page12 .booklitMobile.imagesTypeEnabled,
#stacks_in_8261_page12 .booklitMobile.contentTypeEnabled { display: none; }
@media all and (max-width: 0px) {
  #stacks_in_8261_page12 .booklitMobile {
    display: block;
  }
  #stacks_in_8261_page12 .booklitDesktop {
    display: none;
  }
}
#stacks_in_8261_page12 .pageDetail {
  display: none;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../index_files/images/detail-left.png);
}
#stacks_in_8261_page12 .front .pageDetail {
  background-image: url(../index_files/images/detail-right.png);
}






#stacks_in_8266_page12 {
	margin: 20px 0px 20px 10px;
	padding:  20px;
}
/*
 * Pure Grids
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.3.4
 */
#stacks_in_8270_page12 .back {
  background-color: #F4F4F4;
  color: #000000;
}
#stacks_in_8270_page12 .front {
  background-color: #F4F4F4;
  color: #777777;
}
#stacks_in_8270_page12 .booklitMobile.imagesTypeEnabled,
#stacks_in_8270_page12 .booklitMobile.contentTypeEnabled { display: none; }
@media all and (max-width: 0px) {
  #stacks_in_8270_page12 .booklitMobile {
    display: block;
  }
  #stacks_in_8270_page12 .booklitDesktop {
    display: none;
  }
}
#stacks_in_8270_page12 .pageDetail {
  display: none;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../index_files/images/detail-left.png);
}
#stacks_in_8270_page12 .front .pageDetail {
  background-image: url(../index_files/images/detail-right.png);
}






#stacks_in_8275_page12 {
	margin: 20px 0px 20px 0px;
	padding:  20px;
}
/*
 * Pure Grids
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.3.4
 */
#stacks_in_8279_page12 .back {
  background-color: #F4F4F4;
  color: #000000;
}
#stacks_in_8279_page12 .front {
  background-color: #F4F4F4;
  color: #777777;
}
#stacks_in_8279_page12 .booklitMobile.imagesTypeEnabled,
#stacks_in_8279_page12 .booklitMobile.contentTypeEnabled { display: none; }
@media all and (max-width: 0px) {
  #stacks_in_8279_page12 .booklitMobile {
    display: block;
  }
  #stacks_in_8279_page12 .booklitDesktop {
    display: none;
  }
}
#stacks_in_8279_page12 .pageDetail {
  display: none;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../index_files/images/detail-left.png);
}
#stacks_in_8279_page12 .front .pageDetail {
  background-image: url(../index_files/images/detail-right.png);
}






#stacks_in_8284_page12 {
	margin: 20px 0px 20px 0px;
	padding:  20px;
}
/*
 * Pure Grids
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.3.4
 */
#stacks_in_8288_page12 .back {
  background-color: #F4F4F4;
  color: #000000;
}
#stacks_in_8288_page12 .front {
  background-color: #F4F4F4;
  color: #777777;
}
#stacks_in_8288_page12 .booklitMobile.imagesTypeEnabled,
#stacks_in_8288_page12 .booklitMobile.contentTypeEnabled { display: none; }
@media all and (max-width: 0px) {
  #stacks_in_8288_page12 .booklitMobile {
    display: block;
  }
  #stacks_in_8288_page12 .booklitDesktop {
    display: none;
  }
}
#stacks_in_8288_page12 .pageDetail {
  display: none;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../index_files/images/detail-left.png);
}
#stacks_in_8288_page12 .front .pageDetail {
  background-image: url(../index_files/images/detail-right.png);
}






#stacks_in_8293_page12 {
	margin: 20px 0px 20px 0px;
	padding:  20px;
}
/*
 * Pure Grids
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.3.4
 */
#stacks_in_8297_page12 .back {
  background-color: #F4F4F4;
  color: #000000;
}
#stacks_in_8297_page12 .front {
  background-color: #F4F4F4;
  color: #777777;
}
#stacks_in_8297_page12 .booklitMobile.imagesTypeEnabled,
#stacks_in_8297_page12 .booklitMobile.contentTypeEnabled { display: none; }
@media all and (max-width: 0px) {
  #stacks_in_8297_page12 .booklitMobile {
    display: block;
  }
  #stacks_in_8297_page12 .booklitDesktop {
    display: none;
  }
}
#stacks_in_8297_page12 .pageDetail {
  display: none;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../index_files/images/detail-left.png);
}
#stacks_in_8297_page12 .front .pageDetail {
  background-image: url(../index_files/images/detail-right.png);
}






#stacks_in_8302_page12 {
	margin: 20px 0px 20px 0px;
	padding:  20px;
}
/*
 * Pure Grids
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.3.4
 */
#stacks_in_8306_page12 .back {
  background-color: #F4F4F4;
  color: #000000;
}
#stacks_in_8306_page12 .front {
  background-color: #F4F4F4;
  color: #777777;
}
#stacks_in_8306_page12 .booklitMobile.imagesTypeEnabled,
#stacks_in_8306_page12 .booklitMobile.contentTypeEnabled { display: none; }
@media all and (max-width: 0px) {
  #stacks_in_8306_page12 .booklitMobile {
    display: block;
  }
  #stacks_in_8306_page12 .booklitDesktop {
    display: none;
  }
}
#stacks_in_8306_page12 .pageDetail {
  display: none;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../index_files/images/detail-left.png);
}
#stacks_in_8306_page12 .front .pageDetail {
  background-image: url(../index_files/images/detail-right.png);
}






#stacks_in_8311_page12 {
	margin: 20px 0px 20px 0px;
	padding:  20px;
}
/*
 * Pure Grids
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.3.4
 */
#stacks_in_8315_page12 .back {
  background-color: #C31313;
  color: #FFFFFF;
}
#stacks_in_8315_page12 .front {
  background-color: #F4F4F4;
  color: #777777;
}
#stacks_in_8315_page12 .booklitMobile.imagesTypeEnabled,
#stacks_in_8315_page12 .booklitMobile.contentTypeEnabled { display: none; }
@media all and (max-width: 0px) {
  #stacks_in_8315_page12 .booklitMobile {
    display: block;
  }
  #stacks_in_8315_page12 .booklitDesktop {
    display: none;
  }
}
#stacks_in_8315_page12 .pageDetail {
  display: none;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../index_files/images/detail-left.png);
}
#stacks_in_8315_page12 .front .pageDetail {
  background-image: url(../index_files/images/detail-right.png);
}





#stacks_in_7148_page12>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_7148_page12>.row.collapse{padding-left:0;padding-right:0}#stacks_in_7148_page12>.row.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_7148_page12>.row>.maxwidth{max-width:500px}#stacks_in_7148_page12>.hide-overflow{overflow:hidden!important}


#stacks_in_7148_page12 {
	margin: 120px 85px 40px 85px;
}

#stacks_in_7150_page12 {
	margin: 50px 0px 0px 0px;
	padding: 0px 0px 0px 5px;
}
/* Start Hunter 3 Navigation stack each CSS code */.stacks_in_7677_page12clearer{	clear: both;	height: 0;	margin: 0;	padding: 0;}#stacks_in_7677_page12 .hunterItemPad{	height: 60px !important;	margin: 0 !important;	padding: 0 !important;}/* Filter Bar Styling                      *//* ####################################### */#stacks_in_7677_page12 .huntFilterbar{position: relative;display: block;margin-bottom: 50px;}#stacks_in_7677_page12 .huntFilterbar span{	display: inline-block;}#stacks_in_7677_page12 .huntFilterbar span a, #stacks_in_7677_page12 .huntFilterbar span a:active, #stacks_in_7677_page12 .huntFilterbar span a:visited{	display: inline-block;	color: #03087D !important;	text-decoration: none !important;	border-radius: 2px;	}#stacks_in_7677_page12 .huntFilterbar span a:hover{	color: #C31313 !important;	text-decoration: none !important;}#stacks_in_7677_page12 .huntFilterbar span a.huntcurrent{	color: #C31313 !important;}#stacks_in_7677_page12 .huntFilterbar{padding: 0;background: none;border-radius: 0;}#stacks_in_7677_page12 .huntFilterbar span{	line-height: normal;	margin-right: 0;	margin: 0;}#stacks_in_7677_page12 .huntFilterbar span a{	padding: 0 20px 8px 0;	margin: 0;	font-size: 100%;	line-height: 1em;}#stacks_in_7677_page12 .huntFilterbar span a, #stacks_in_7677_page12 .huntFilterbar span a:active, #stacks_in_7677_page12 .huntFilterbar span a:visited,#stacks_in_7677_page12 .huntFilterbar span a:hover{	background: none;}/* End Hunter 3 Navigation stack each CSS code */
#stacks_in_7677_page12 {
	margin: 0px 140px 0px 140px;
}
/* Start Hunter 3 Row Item stack each CSS code */#stacks_in_7677_page12 #stacks_in_7680_page12{	margin: 0 !important;	padding: 0 !important;}.stacks_in_7680_page12topbar{	display:none;	height: 0;	margin: 0;	padding: 0;}/* End Hunter 3 Row Item stack each CSS code */
#stacks_in_7680_page12 {
	margin: 50px 0px 0px 0px;
}

#stacks_in_7683_page12>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_7683_page12>.row>.columns{margin-top:0.00rem}
/* Start Hunter 3 Row Item stack each CSS code */#stacks_in_7677_page12 #stacks_in_7692_page12{	margin: 0 !important;	padding: 0 !important;}.stacks_in_7692_page12topbar{	display:none;	height: 0;	margin: 0;	padding: 0;}/* End Hunter 3 Row Item stack each CSS code */
#stacks_in_7695_page12>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_7695_page12>.row>.columns{margin-top:0.00rem}
/* Start Hunter 3 Row Item stack each CSS code */#stacks_in_7677_page12 #stacks_in_7704_page12{	margin: 0 !important;	padding: 0 !important;}.stacks_in_7704_page12topbar{	display:none;	height: 0;	margin: 0;	padding: 0;}/* End Hunter 3 Row Item stack each CSS code */
#stacks_in_7707_page12>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_7707_page12>.row>.columns{margin-top:0.00rem}
/* Start Hunter 3 Row Item stack each CSS code */#stacks_in_7677_page12 #stacks_in_7716_page12{	margin: 0 !important;	padding: 0 !important;}.stacks_in_7716_page12topbar{	display:none;	height: 0;	margin: 0;	padding: 0;}/* End Hunter 3 Row Item stack each CSS code */
#stacks_in_7719_page12>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_7719_page12>.row>.columns{margin-top:0.00rem}
/* Start Hunter 3 Row Item stack each CSS code */#stacks_in_7677_page12 #stacks_in_7728_page12{	margin: 0 !important;	padding: 0 !important;}.stacks_in_7728_page12topbar{	display:none;	height: 0;	margin: 0;	padding: 0;}/* End Hunter 3 Row Item stack each CSS code */
#stacks_in_7731_page12>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_7731_page12>.row>.columns{margin-top:0.00rem}
/* Start Hunter 3 Row Item stack each CSS code */#stacks_in_7677_page12 #stacks_in_7740_page12{	margin: 0 !important;	padding: 0 !important;}.stacks_in_7740_page12topbar{	display:none;	height: 0;	margin: 0;	padding: 0;}/* End Hunter 3 Row Item stack each CSS code */
#stacks_in_7743_page12>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_7743_page12>.row>.columns{margin-top:0.00rem}
/* Start Hunter 3 Row Item stack each CSS code */#stacks_in_7677_page12 #stacks_in_7752_page12{	margin: 0 !important;	padding: 0 !important;}.stacks_in_7752_page12topbar{	display:none;	height: 0;	margin: 0;	padding: 0;}/* End Hunter 3 Row Item stack each CSS code */
#stacks_in_7755_page12>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_7755_page12>.row>.columns{margin-top:0.00rem}
/* Start Hunter 3 Row Item stack each CSS code */#stacks_in_7677_page12 #stacks_in_7764_page12{	margin: 0 !important;	padding: 0 !important;}.stacks_in_7764_page12topbar{	display:none;	height: 0;	margin: 0;	padding: 0;}/* End Hunter 3 Row Item stack each CSS code */
#stacks_in_7767_page12>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_7767_page12>.row>.columns{margin-top:0.00rem}
/* Start Hunter 3 Row Item stack each CSS code */#stacks_in_7677_page12 #stacks_in_8008_page12{	margin: 0 !important;	padding: 0 !important;}.stacks_in_8008_page12topbar{	display:none;	height: 0;	margin: 0;	padding: 0;}/* End Hunter 3 Row Item stack each CSS code */
#stacks_in_8011_page12>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_8011_page12>.row>.columns{margin-top:0.00rem}
/* Start Hunter 3 Row Item stack each CSS code */#stacks_in_7677_page12 #stacks_in_7826_page12{	margin: 0 !important;	padding: 0 !important;}.stacks_in_7826_page12topbar{	display:none;	height: 0;	margin: 0;	padding: 0;}/* End Hunter 3 Row Item stack each CSS code */
#stacks_in_7829_page12>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_7829_page12>.row>.columns{margin-top:0.00rem}
/* Start Hunter 3 Row Item stack each CSS code */#stacks_in_7677_page12 #stacks_in_8048_page12{	margin: 0 !important;	padding: 0 !important;}.stacks_in_8048_page12topbar{	display:none;	height: 0;	margin: 0;	padding: 0;}/* End Hunter 3 Row Item stack each CSS code */
#stacks_in_8051_page12>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_8051_page12>.row>.columns{margin-top:0.00rem}
/* Start Hunter 3 Row Item stack each CSS code */#stacks_in_7677_page12 #stacks_in_7795_page12{	margin: 0 !important;	padding: 0 !important;}.stacks_in_7795_page12topbar{	display:none;	height: 0;	margin: 0;	padding: 0;}/* End Hunter 3 Row Item stack each CSS code */
#stacks_in_7798_page12>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_7798_page12>.row>.columns{margin-top:0.00rem}
#stacks_in_2288_page12>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_2288_page12>.row.collapse{padding-left:0;padding-right:0}#stacks_in_2288_page12>.row.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_2288_page12>.row>.maxwidth{max-width:500px}#stacks_in_2288_page12>.hide-overflow{overflow:hidden!important}


#stacks_in_2288_page12 {
	margin: 130px 0px 0px 0px;
}
/* FiveShadowThing by RapidWeaver Central  */

#fiveshadowthingstacks_in_2272_page12 {
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	padding: 0;
	z-index: 1;
	 
	width: 100%;
	 
	 
}

#stacks_in_2272_page12 .box {
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
	   -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
			box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
}

#stacks_in_2272_page12 .rounded,
#stacks_in_2272_page12 .rounded img {
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
		-moz-border-radius-topleft: 5px;
		-moz-border-radius-topright: 5px;
			border-top-left-radius: 5px;
			border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
		-moz-border-radius-bottomright: 5px;
		-moz-border-radius-bottomleft: 5px;
			border-bottom-right-radius: 5px;
			border-bottom-left-radius: 5px;
}

/* Shadow Style 0 - Both Shadows */

#stacks_in_2272_page12 .shadow-style0stacks_in_2272_page12 {
	position: relative;
	width: px;
	height: auto;
	padding: 0;
	border: 2px solid #C31313;
	margin: 0 3px 15px 3px;
	background: #FFFFFF;
}

#stacks_in_2272_page12 .shadow-style0stacks_in_2272_page12:before,
#stacks_in_2272_page12 .shadow-style0stacks_in_2272_page12:after {
	z-index: -1;
	position: absolute;
	content: "";
	bottom: 15px;
	left: 10px;
	width: 50%;
	top: 80%;
	max-width: 300px;
	background: #B3B3B3;
	-webkit-box-shadow: 0 15px 10px #A8A8A8;
	   -moz-box-shadow: 0 15px 10px #A8A8A8;
			box-shadow: 0 15px 10px #A8A8A8;
	-webkit-transform: rotate(-3deg);
	   -moz-transform: rotate(-3deg);
		-ms-transform: rotate(-3deg);
			transform: rotate(-3deg);
}

#stacks_in_2272_page12 .shadow-style0stacks_in_2272_page12:after {
	right: 10px;
	left: auto;
	-webkit-transform: rotate(3deg);
	   -moz-transform: rotate(3deg);
		-ms-transform: rotate(3deg);
			transform: rotate(3deg);
}

/* Shadow Style 1 - Left Shadow */

#stacks_in_2272_page12 .shadow-style1stacks_in_2272_page12 {
	position: relative;
	width: px;
	height: auto;
	padding: 0;
	border: 2px solid #C31313;
	margin: 0 3px 15px 3px;
	background: #FFFFFF;
}

#stacks_in_2272_page12 .shadow-style1stacks_in_2272_page12:before {
	z-index: -1;
	position: absolute;
	content: "";
	bottom: 15px;
	left: 10px;
	width: 50%;
	top: 80%;
	max-width: 300px;
	background: #B3B3B3;
	-webkit-box-shadow: 0 15px 10px #A8A8A8;
	   -moz-box-shadow: 0 15px 10px #A8A8A8;
			box-shadow: 0 15px 10px #A8A8A8;
	-webkit-transform: rotate(-3deg);
	   -moz-transform: rotate(-3deg);
		-ms-transform: rotate(-3deg);
			transform: rotate(-3deg);
}

/* Shadow Style 2 - Right Shadow */

#stacks_in_2272_page12 .shadow-style2stacks_in_2272_page12 {
	position: relative;
	width: px;
	height: auto;
	padding: 0;
	border: 2px solid #C31313;
	margin: 0 3px 15px 3px;
	background: #FFFFFF;
}

#stacks_in_2272_page12 .shadow-style2stacks_in_2272_page12:after {
	z-index: -1;
	position: absolute;
	content: "";
	bottom: 15px;
	right: 10px;
	left: auto;
	width: 50%;
	top: 80%;
	max-width: 300px;
	background: #B3B3B3;
	-webkit-box-shadow: 0 15px 10px #A8A8A8;
	   -moz-box-shadow: 0 15px 10px #A8A8A8;
			box-shadow: 0 15px 10px #A8A8A8;
	-webkit-transform: rotate(3deg);
	   -moz-transform: rotate(3deg);
		-ms-transform: rotate(3deg);
			transform: rotate(3deg);
}

/* Shadow Style 3 - Inset */

#stacks_in_2272_page12 .shadow-style3stacks_in_2272_page12 {
	position: relative;
	width: px;
	height: auto;
	padding: 0;
	border: 2px solid #C31313;
	margin: 0 3px 15px 3px;
	background: #FFFFFF;
}

#stacks_in_2272_page12 .shadow-style3stacks_in_2272_page12 {
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
	   -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
			box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
}
	
/* Shadow Style 4 - Curved */

#stacks_in_2272_page12 .shadow-style4stacks_in_2272_page12 {
	position: relative;
	width: px;
	height: auto;
	padding: 0;
	border: 2px solid #C31313;
	margin: 0 3px 15px 3px;
	background: #FFFFFF;
}

#stacks_in_2272_page12 .shadow-style4stacks_in_2272_page12:before, 
#stacks_in_2272_page12 .shadow-style4stacks_in_2272_page12:after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 50%;
	bottom: 0;
	left: 10px;
	right: 10px;
	-webkit-border-radius: 100px / 32px;
	   -moz-border-radius: 100px / 32px;
			border-radius: 100px / 32px;
	-webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
	   -moz-box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
			box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}

/* Shadow Style 5 - Side Curves */

#stacks_in_2272_page12 .shadow-style5stacks_in_2272_page12 {
    position:relative;
	width: px;
	height: auto;
	padding: 0;
	border: 2px solid #C31313;
	margin: 3px 15px 3px 15px;
	background: #FFFFFF;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	    	box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

#stacks_in_2272_page12 .shadow-style5stacks_in_2272_page12:before {
   	top:10px;
    bottom:10px;
    left:0;
    right:50%;
    -webkit-box-shadow:0 0 15px rgba(0,0,0,0.6);
       -moz-box-shadow:0 0 15px rgba(0,0,0,0.6);
    		box-shadow:0 0 15px rgba(0,0,0,0.6);
 	-webkit-border-radius:10px / 100px;
       -moz-border-radius:10px / 100px;
    		border-radius:10px / 100px;
}

#stacks_in_2272_page12 .shadow-style5stacks_in_2272_page12:before,
#stacks_in_2272_page12 .shadow-style5stacks_in_2272_page12:after {
    content:"";
    position:absolute;
    z-index:-2;
}

#stacks_in_2272_page12 .shadow-style5stacks_in_2272_page12:before {
    right:0;
}

/* Shadow Style 6 - Left Side Curve */

#stacks_in_2272_page12 .shadow-style6stacks_in_2272_page12 {
   position:relative;
	width: px;
	height: auto;
	padding: 0;
	border: 2px solid #C31313;
	margin: 3px 3px 3px 15px;
	background: #FFFFFF;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	    	box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

#stacks_in_2272_page12 .shadow-style6stacks_in_2272_page12:before {
   	top:10px;
    bottom:10px;
    left:0;
    right:50%;
    -webkit-box-shadow:0 0 15px rgba(0,0,0,0.6);
       -moz-box-shadow:0 0 15px rgba(0,0,0,0.6);
    		box-shadow:0 0 15px rgba(0,0,0,0.6);
 	-webkit-border-radius:10px / 100px;
       -moz-border-radius:10px / 100px;
    		border-radius:10px / 100px;
}

#stacks_in_2272_page12 .shadow-style6stacks_in_2272_page12:before,
#stacks_in_2272_page12 .shadow-style6stacks_in_2272_page12:after {
    content:"";
    position:absolute;
    z-index:-2;
}

/* Shadow Style 7 - Right Side Curve */

#stacks_in_2272_page12 .shadow-style7stacks_in_2272_page12 {
   position:relative;
	width: px;
	height: auto;
	padding: 0;
	border: 2px solid #C31313;
	margin: 3px 15px 3px 3px;
	background: #FFFFFF;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	    	box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

#stacks_in_2272_page12 .shadow-style7stacks_in_2272_page12:before {
   	top:10px;
    bottom:10px;
    right:0;
    left:50%;
    -webkit-box-shadow:0 0 15px rgba(0,0,0,0.6);
       -moz-box-shadow:0 0 15px rgba(0,0,0,0.6);
    		box-shadow:0 0 15px rgba(0,0,0,0.6);
 	-webkit-border-radius:10px / 100px;
       -moz-border-radius:10px / 100px;
    		border-radius:10px / 100px;
}

#stacks_in_2272_page12 .shadow-style7stacks_in_2272_page12:before,
#stacks_in_2272_page12 .shadow-style7stacks_in_2272_page12:after {
    content:"";
    position:absolute;
    z-index:-2;
}

/* Shadow Style 8 - Top/Bottom Curves */

#stacks_in_2272_page12 .shadow-style8stacks_in_2272_page12 {
   position:relative;
	width: px;
	height: auto;
	padding: 0;
	border: 2px solid #C31313;
	margin: 15px 3px;
	background: #FFFFFF;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	    	box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

#stacks_in_2272_page12 .shadow-style8stacks_in_2272_page12:before,
#stacks_in_2272_page12 .shadow-style8stacks_in_2272_page12:after {
    content:"";
    position:absolute;
    z-index:-2;
}

#stacks_in_2272_page12 .shadow-style8stacks_in_2272_page12:before {
   	top:0;
    bottom:0;
    left:10px;
    right:10px;
    -webkit-box-shadow:0 0 15px rgba(0,0,0,0.4);
       -moz-box-shadow:0 0 15px rgba(0,0,0,0.4);
    		box-shadow:0 0 15px rgba(0,0,0,0.4);
   	-webkit-border-radius: 100px / 10px;
	   -moz-border-radius: 100px / 10px;
			border-radius: 100px / 10px;
}

/* Shadow Style 9 - Divider Line 1 */

#stacks_in_2272_page12 .shadow-style9stacks_in_2272_page12 {
   	position:relative;
	width: 80%;
	top:20px;
	padding: 0;
	height: 40px;
  	border: none;
	background: #FFFFFF;
	margin:	60px auto;
    -webkit-box-shadow:0 0px 0px rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 0, 0, 0) inset;
       -moz-box-shadow:0 0px 0px rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 0, 0, 0) inset;
            box-shadow:0 0px 0px rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 0, 0, 0) inset;
}

#stacks_in_2272_page12 .shadow-style9stacks_in_2272_page12 span {
	text-align: center !important;
}

#stacks_in_2272_page12 .shadow-style9stacks_in_2272_page12:before,
#stacks_in_2272_page12 .shadow-style9stacks_in_2272_page12:after {
	content:"";
    position:absolute;
    z-index:-1;
    top:50%;
    bottom:0;
    left:40px;
    right:40px;
    -webkit-box-shadow:0 0 15px rgba(0,0,0,0.4);
       -moz-box-shadow:0 0 15px rgba(0,0,0,0.4);
    		box-shadow:0 0 15px rgba(0,0,0,0.4);
   	-webkit-border-radius:100px / 10px;
       -moz-border-radius:100px / 10px;
    		border-radius:100px / 10px;
}

#stacks_in_2272_page12 .shadow-style9stacks_in_2272_page12:after {
	right:10px;
    left:auto;
    -webkit-transform:skew(8deg) rotate(3deg);
       -moz-transform:skew(8deg) rotate(3deg);
        -ms-transform:skew(8deg) rotate(3deg);
            transform:skew(8deg) rotate(3deg);
}

/* Shadow Style 10 - Divider Line 2 */

#stacks_in_2272_page12 .shadow-style10stacks_in_2272_page12 {
  	height: 20px;
  	overflow: hidden;
   	position:relative;
	width: 80%;
  	border: none;
}



#stacks_in_2272_page12 .shadow-style10stacks_in_2272_page12:after {
  	border-radius: 100%;
  	box-shadow: 0 0 10px #333;
  	content: "";
  	display: block;
  	height: 100%;
  	position: relative;
  	top: +100%;
  	width: 80%;
}




#stacks_in_2272_page12 {
	margin: 0px 0px 50px 0px;
}

#stacks_in_2274_page12 {
	margin: 25px 30px 50px 30px;
}

#stacks_in_2275_page12 {
	font-size: 150%;
	font-weight: bold;
}
#stacks_in_2276_page12 *, #stacks_in_2276_page12 *:after, #stacks_in_2276_page12 *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; }

#stacks_in_2276_page12 .stacks-button.add {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}


/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */
#stacks_in_2276_page12 .clearfix:before,
#stacks_in_2276_page12 .clearfix:after {
	content: " "; display: table;
}

#stacks_in_2276_page12 .clearfix:after { clear: both; }

#stacks_in_2276_page12  {
}

#stacks_in_2276_page12 .timeline_item {
	position: relative;
}

#stacks_in_2276_page12 ul.cbp_tmtimeline {
	margin: 0;
}

#stacks_in_2276_page12 a,
#stacks_in_2276_page12 a:visited {
	color: #FFFFFF;
	text-decoration: none;
}

#stacks_in_2276_page12 a:hover,
#stacks_in_2276_page12 a:active {
	color: #FFFFFF;
}

#stacks_in_2276_page12 .main {
	width: 95%;
	max-width: 69em;
	margin: 0 auto;
	padding-top: 5px;
	padding-bottom: 5px;
}

#stacks_in_2276_page12 .cbp_tmtimeline {
	margin: 30px 0 0 0;
	padding: 0;
	list-style: none;
	position: relative;
}

#stacks_in_2276_page12 .cbp_tmtimeline li {
	margin: 0;
}

/* The line */
#stacks_in_2276_page12 .cbp_tmtimeline:before {
	content: '';
	position: absolute;
	top: 1px;
	bottom: 0;
	width: 10px;

	

		
			background: #C31313;
			background: -moz-linear-gradient(top,  #C31313 0%, #03087D 100%);
			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#C31313), color-stop(100%,#03087D));
			background: -webkit-linear-gradient(top,  #C31313 0%,#03087D 100%);
			background: -o-linear-gradient(top,  #C31313 0%,#03087D 100%);
			background: -ms-linear-gradient(top,  #C31313 0%,#03087D 100%);
			background: linear-gradient(to bottom,  #C31313 0%,#03087D 100%);
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#C31313', endColorstr='#73a8d6',GradientType=0 );
		

	

	
	
	
		left: 30%;
	
	
	
	

	margin-left: -10px;
}

/* The date/time */
#stacks_in_2276_page12 .cbp_tmtimeline li .cbp_tmtime {
	display: block;
	
	
	
		width: 35%;
	
	
	
	
	padding-right: 100px;
	position: absolute;
	margin: 0;
}

#stacks_in_2276_page12 .cbp_tmtimeline li .cbp_tmtime span {
	display: block;
	text-align: right;
}

#stacks_in_2276_page12 .cbp_tmtimeline li .cbp_tmtime span.small_label {
	font-size: 24px;
	line-height: 1.2;
	white-space: normal;
	
		color: #C5D5DE;
	
}

#stacks_in_2276_page12 .cbp_tmtimeline li .cbp_tmtime span.large_label {
	font-size: 18px;
	line-height: 1.2;
	letter-spacing: -1px;
	white-space: normal;
	
		color: #03087D;
	
	overflow: hidden;
}

/* Right content */
#stacks_in_2276_page12 .cbp_tmtimeline li .cbp_tmlabel {
	
	
	
		margin: 0 0 15px 35%;
	
	
	
	
	
		background: #FBD486;
		color: #FFFFFF;
	
	padding: 2em;
	position: relative;
	border-radius: 5px;
}

#stacks_in_2276_page12 .cbp_tmtimeline li .cbp_tmlabel h3.timeline_label {
	margin-top: 0px;
	padding: 0 0 10px 0;
	line-height: 1;
	border-bottom: 1px solid rgba(255,255,255,0.3);
	
		color: #FFFFFF;
	
}

#stacks_in_2276_page12 .timeline_content {
	margin-top: 20px;
}


/* The triangle */
#stacks_in_2276_page12 .cbp_tmtimeline li .cbp_tmlabel:after {
	right: 100%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	
		border-right-color: #FBD486;
	
	border-width: 10px;
	top: 15px;
}

/* The icons */
#stacks_in_2276_page12 .cbp_tmtimeline li .cbp_tmicon {
	width: 40px;
	height: 40px;
	font-family: 'ecoico';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	font-size: 1.4em;
	line-height: 40px;
	-webkit-font-smoothing: antialiased;
	position: absolute;
	
		color: #FFFFFF !important;
		background: #C31313;
		box-shadow: 0 0 0 8px #03087D; /* Border of icon */
	
	border-radius: 50%;
	text-align: center;
	top: 8px;

	
	
	
		left: 30%;
	
	
	
	

	margin: 0 0 0 -25px;

	
}

#stacks_in_2276_page12 .cbp_tmtimeline li .cbp_tmicon i {
	height: 39px;
	line-height: 39px;
}



	#stacks_in_2276_page12 .cbp_tmtime {
		display: block;
	}

	





/********************************************/
/* Color Presets                            */
/********************************************/


/* TESLA PRESET START */

/* TESLA PRESET END */



/* SUBTLE GREYS PRESET START */

/* SUBTLE GREYS PRESET END */



/* FEATHER PRESET START */

/* FEATHER PRESET END */



/* NAVIGATOR PRESET START */

/* NAVIGATOR PRESET END */



/* RUBY PRESET START */

/* RUBY PRESET END */



/* GUN METAL PRESET START */

/* GUN METAL PRESET END */



/* EARTHY PRESET START */

/* EARTHY PRESET END */



/* CONTRASTY GREYS PRESET START */

/* CONTRASTY GREYS PRESET END */



/* HOTH PRESET START */

/* HOTH PRESET END */



/* ATLANTIS PRESET START */

/* ATLANTIS PRESET END */


/* PLUM PRESET START */

/* PLUM PRESET END */



/* ABSTRACT PRESET START */

/* ABSTRACT PRESET END */



/* HIVE PRESET START */

/* HIVE PRESET END */



/* WARMTH PRESET START */

/* WARMTH PRESET END */



/* PRETTY PURPLE PRESET START */

/* PRETTY PURPLE PRESET END */





/* Media Queries */
@media screen and (max-width: 65.375em) {

	#stacks_in_2276_page12 .cbp_tmtimeline li .cbp_tmtime span.large_label {
		font-size: 24px;
		line-height: 1.2;
	}
}

@media screen and (max-width: 47.2em) {
	#stacks_in_2276_page12 .cbp_tmtimeline:before {
		display: none;
	}

	#stacks_in_2276_page12 .cbp_tmtimeline li .cbp_tmtime {
		width: 100%;
		position: relative;
		padding: 0 0 20px 0;
	}

	#stacks_in_2276_page12 .cbp_tmtimeline li .cbp_tmtime span {
		text-align: left;
	}

	#stacks_in_2276_page12 .cbp_tmtimeline li .cbp_tmlabel {
		margin: 75px 0 30px 0;
		padding: 1em;
	}

	#stacks_in_2276_page12 .cbp_tmtimeline li .cbp_tmlabel:after {
		right: auto;
		left: 20px;
		border-right-color: transparent;
		
			border-bottom-color: #FBD486;
		
		top: -20px;
	}

	#stacks_in_2276_page12 .cbp_tmtimeline li .cbp_tmtime span.large_label {
		font-size: 22px;
		line-height: 1.3;
	}


	

	#stacks_in_2276_page12 .cbp_tmtimeline li .cbp_tmlabel {
		margin: 0px 0 30px 0;
	}

	#stacks_in_2276_page12 .cbp_tmtimeline li .cbp_tmicon {
		position: relative;
		float: right;
		left: auto;
		margin: -55px 5px 0 0px;
		top: 0;
	}

	


}




	#stacks_in_2278_page12 .cbp_tmlabel h3.timeline_label {
		display: block;
	}



#stacks_in_2279_page12 {
	font-size: 80%;
}
  




	#stacks_in_2283_page12 .cbp_tmlabel h3.timeline_label {
		display: block;
	}



#stacks_in_2284_page12 {
	font-size: 80%;
}
  




	#stacks_in_2298_page12 .cbp_tmlabel h3.timeline_label {
		display: block;
	}



#stacks_in_2299_page12 {
	font-size: 80%;
}
  




	#stacks_in_2149_page12 .cbp_tmlabel h3.timeline_label {
		display: block;
	}



#stacks_in_2150_page12 {
	font-size: 80%;
}
  




	#stacks_in_2311_page12 .cbp_tmlabel h3.timeline_label {
		display: block;
	}



#stacks_in_2312_page12 {
	font-size: 80%;
}
  




	#stacks_in_3218_page12 .cbp_tmlabel h3.timeline_label {
		display: block;
	}



#stacks_in_3219_page12 {
	font-size: 80%;
}
  




	#stacks_in_3231_page12 .cbp_tmlabel h3.timeline_label {
		display: block;
	}



#stacks_in_3232_page12 {
	font-size: 80%;
}
  
#stacks_in_2180_page12>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_2180_page12>.row.collapse{padding-left:0;padding-right:0}#stacks_in_2180_page12>.row.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_2180_page12>.row>.maxwidth{max-width:500px}#stacks_in_2180_page12>.hide-overflow{overflow:hidden!important}

  #stacks_in_2183_page12 .copyright{margin-bottom:0}

#stacks_in_2183_page12 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width: 80px 0px 0px 0px;
	margin: 30px 0px 0px 40px;
}
   #knock_explorer_stacks_in_3953_page12{display:none}  
#rottenAppleDeviceContentstacks_in_3955_page12 {
	display: none;
}

.rottenAppleHiddenContent {
	display: none !important;
}
/*
 * Full Screen
 * Author: Timothy Smitley
 * Version: 1.0.0
 * URL: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Description: Simple, Elegant Full-Screen mode for Rapidweaver Stacks
 */
html {
    height: 100%;
}



    #fullscreen_stacks_in_3958_page12 {
        position: fixed;
        bottom: 20px;
    
    
        left: 20px;
    
    
        width: 28px;
        height: 28px;
        cursor: pointer;
        -webkit-transform: translateZ(0);
        -webkit-transition: all .5s ease-in-out;
           -moz-transition: all .5s ease-in-out;
            -ms-transition: all .5s ease-in-out;
             -o-transition: all .5s ease-in-out;
                transition: all .5s ease-in-out;
        z-index: 9999;
    }
    .fullscreen_stacks_in_3958_page12 {
        display: block;
    }
    .smallscreen_stacks_in_3958_page12 {
        display: none;
    }


.fullscreen_stacks_in_3958_page12, .smallscreen_stacks_in_3958_page12 {
    width: 28px;
    height: 28px;
}
.fullscreen_stacks_in_3958_page12 *, .smallscreen_stacks_in_3958_page12 * {
    position: relative;
    width: 100%;
    height: 100%;
}