/*
 * animate.css
 */

/*!
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;
}

.nav-wrap{margin:0 auto;overflow:visible}.nav-wrap h1,.nav-wrap h2,.nav-wrap h3,.nav-wrap h4,.nav-wrap h5,.nav-wrap h6{margin-bottom:0}.nav-content{position:relative}.contained-bar{margin:0 auto}.site-title a:hover{text-decoration:none}html:not(.menulab-js) .navbar ul,html:not(.menulab-js) .navbar li{display:block!important;position:relative!important;margin:0!important;padding:0!important;left:0!important;right:0!important}html:not(.menulab-js) .navbar .ml-arrows li::after{display:none!important}html:not(.menulab-js) .navbar a{text-align:left!important}.navbar{float:none;max-height:0;overflow:hidden;transition:max-height .5s;margin:0;padding:0;list-style-type:none}.navbar ul{margin:0}.navbar li>ul li{white-space:nowrap}.navbar li{list-style-type:none;display:block;transition:background-color .3s ease}.navbar li a{display:block;text-decoration:none;padding:3px .8em;transition:color .3s ease}.navbar li.has-dropdown>.ml-dropdown{padding-left:20px}.navbar .ml-arrows .has-dropdown::after{top:12px}.ml-dropdown,.ml-dropdown *{margin:0;padding:0;list-style:none}.ml-dropdown li{position:relative}.ml-dropdown ul{display:none;top:100%;right:0;left:auto;z-index:99}html:not(.touch-stripped) .ml-dropdown li:hover>ul{display:block}html.touch-stripped .ml-dropdown li.dd-open>ul{display:block}.ml-dropdown a{display:block;position:relative}.ml-dropdown ul ul{top:0;left:100%}.expand{max-height:100vh}.ml-arrows .has-dropdown:after{content:'';position:absolute;right:6px;margin-top:0;height:0;width:0;border:5px solid transparent}.ml-arrows ul .ml-dropdown:after{margin-top:-5px;margin-right:-3px;border-color:transparent}.hr-align-left hr{text-align:left;margin-left:0;margin-right:auto}.hr-align-right hr{text-align:right;margin-right:0;margin-left:auto}.hr-align-center hr{text-align:center;margin-left:auto;margin-right:auto}@media (max-width:600px){.hr-s-align-left hr{text-align:left;margin-left:0;margin-right:auto}.hr-s-align-right hr{text-align:right;margin-right:0;margin-left:auto}.hr-s-align-center hr{text-align:center;margin-left:auto;margin-right:auto}}@media (min-width:600px){.hr-m-align-left hr{text-align:left;margin-left:0;margin-right:auto}.hr-m-align-right hr{text-align:right;margin-right:0;margin-left:auto}.hr-m-align-center hr{text-align:center;margin-left:auto;margin-right:auto}}@media (min-width:900px){.hr-l-align-left hr{text-align:left;margin-left:0;margin-right:auto}.hr-l-align-right hr{text-align:right;margin-right:0;margin-left:auto}.hr-l-align-center hr{text-align:center;margin-left:auto;margin-right:auto}}@media (min-width:1200px){.hr-xl-align-left hr{text-align:left;margin-left:0;margin-right:auto}.hr-xl-align-right hr{text-align:right;margin-right:0;margin-left:auto}.hr-xl-align-center hr{text-align:center;margin-left:auto;margin-right:auto}}
.stacks_top{overflow:visible!important}.sth_sticky{position:sticky}

html,.palette0{--text-color-richer:rgba(9, 9, 9, 1.00);--text-color-normal:rgba(34, 34, 34, 1.00);--text-color-softer:rgba(59, 59, 59, 1.00);--accent-color:rgba(23, 42, 58, 1.00);--accent-color-hover:rgba(20, 36, 50, 1.00);--accent-text-color:rgba(255, 255, 255, 1.00);--accent-text-color-hover:rgba(230, 230, 230, 1.00);--accent-color-alt:rgba(255, 255, 255, 1.00);--link-color:rgba(23, 42, 58, 1.00); --link-color-hover:rgba(20, 36, 50, 1.00); --border-color:rgba(187, 187, 187, 1.00);--border-color-softer:rgba(237, 237, 237, 1.00);--border-color-richer:rgba(137, 137, 137, 1.00);--background-color:rgba(255, 255, 255, 1.00);--background-color-alt:rgba(51, 51, 51, 0.10);--nav-bg:rgba(255, 255, 255, 1.00);--nav-bg-hover:rgba(51, 51, 51, 0.05);--nav-link:rgba(102, 102, 102, 1.00);--nav-link-hover:rgba(0, 0, 0, 1.00);--code-background:rgba(241, 241, 241, 1.00);--code-text:rgba(34, 34, 34, 1.00);--button-primary-color:rgba(255, 255, 255, 1.00);--button-primary-color-hover:rgba(230, 230, 230, 1.00);--second-color:rgba(106, 134, 144, 1.00);--second-color-hover:rgba(125, 152, 161, 1.00);--second-color-alt:rgba(255, 255, 255, 1.00);--base-font-size:62.5%;--container-max-width:950px;--container-max-width-alt:650px}*{vertical-align:baseline;border:0 none;outline:0;padding:0;margin:0}html{font-size:62.5%;font-size:var(--base-font-size);-webkit-text-size-adjust:100%;box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}html,body{height:100%}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{font-size:1.60rem;line-height:1.60;font-weight:normal; color:rgba(34, 34, 34, 1.00);background-color:rgba(255, 255, 255, 1.00);color:var(--text-color-normal);background-color:var(--background-color); -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}p.lead{font-size:1.80rem}@media (min-width:600px){body{font-size:1.60rem}p.lead{font-size:1.80rem}}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:1.20rem;font-weight:normal;font-style:normal;}h1,.h1{font-size:4.00rem;line-height:1.2;letter-spacing:-.1rem;}h2,.h2{font-size:3.60rem;line-height:1.25;letter-spacing:-.1rem;}h3,.h3{font-size:3.00rem;line-height:1.3;letter-spacing:-.1rem;}h4,.h4{font-size:2.40rem;line-height:1.35;letter-spacing:-.08rem;}h5,.h5{font-size:1.80rem;line-height:1.5;letter-spacing:-.05rem;}h6,.h6{font-size:1.60rem;line-height:1.6;letter-spacing:0;}@media (min-width:600px){h1,.h1{font-size:5.00rem}h2,.h2{font-size:4.20rem}h3,.h3{font-size:3.60rem}h4,.h4{font-size:3.00rem}h5,.h5{font-size:2.40rem}h6,.h6{font-size:2.00rem}}p{margin-top:0}blockquote{margin-top:10px;margin-bottom:10px;margin-left:1rem;margin-right:1rem;padding-left:1rem;border-left:3px solid var(--accent-color);color:var(--text-color-softer)}a{color:var(--link-color);text-decoration:none;transition:all .2s ease 0s}a:hover:not(.source-button):not(.button){color:var(--link-color-hover);text-decoration:underline}.u-case{text-transform:uppercase}:focus{outline:none;box-shadow:0 0 0 3px rgba(21, 156, 228, 0.40)!important}.stripped-button a,.source-btn{line-height:38px;font-size:14px;border-width:1px;height:calc(38px + 2px); font-weight: bolder; text-transform: uppercase; display:inline-block;padding:0 30px;text-decoration:none;color:var(--text-color-softer);text-align:center;letter-spacing:.1rem;text-decoration:none;white-space:nowrap;background-color:transparent;border-radius:4px;border:1px solid var(--border-color);cursor:pointer;box-sizing:border-box;transition:all .2s ease 0s;max-width:100%}.button-nav a,.source-btn-nav a{color:var(--button-primary-color)!important;background-color:var(--nav-link)!important;border-color:var(--nav-link)!important}.button-nav a:hover,.button-nav a:focus,.source-btn-nav a:focus,.source-btn-nav a:hover{color:var(--button-primary-color);background-color:var(--nav-link-hover);border-color:var(--nav-link-hover)}.button-second a,.s-button-second{color:var(--second-color-alt)!important;background-color:var(--second-color)!important;border-color:var(--second-color)!important}.button-second a:hover,.button-second a:focus,.s-button-second:hover,.s-button-second:focus{color:var(--second-color-alt)!important;background-color:var(--second-color-hover)!important;border-color:var(--second-color-hover)!important}.button-primary-flip a,.s-button-primary-flip{color:var(--accent-color)!important;background-color:var(--button-primary-color)!important;border-color:var(--accent-color)!important}.button-primary-flip a:hover,.button-primary-flip a:focus,.s-button-primary-flip:hover,.s-button-primary-flip:focus{color:var(--button-primary-color)!important;background-color:var(--accent-color)!important;border-color:var(--accent-color)!important}.button-primary a,.s-button-primary{color:var(--button-primary-color)!important;background-color:var(--accent-color)!important;border-color:var(--accent-color)!important}.button-primary a:hover,.button-primary a:focus,.s-button-primary:hover,.s-button-primary:focus{color:var(--button-primary-color)!important;background-color:var(--accent-color-hover)!important;border-color:var(--accent-color-hover)!important}.button-ghost a:hover,.button-ghost a:focus{border-color:var(--border-color-richer)!important}input{font-size:14px}.quizArea label{display:inline-block}ul{list-style:circle inside}ol{list-style:decimal inside}ol,ul{padding-left:1rem;margin-top:0}ul ul,ul ol,ol ol,ol ul{margin-left:1.5rem}li{margin-bottom:0.50rem;margin-left:3rem}li ul{margin-bottom:0.50rem}code{padding:.2rem .5rem;margin:0 .2rem;font-size:95%;white-space:nowrap;background:var(--code-background);color:var(--code-text);border:1px solid var(--border-color-softer);border-radius:4px}pre>code{display:block;padding:1rem 1.5rem;white-space:pre;overflow:auto}kbd{margin:0 .1em;padding:.1em .6em;border-radius:3px;border:1px solid rgb(204,204,204);color:rgb(51,51,51);display:inline-block;box-shadow:0 1px 0 rgba(0,0,0,.2),inset 0 0 0 2px #fff;background-color:rgb(247,247,247);-moz-box-shadow:0 1px 0 rgba(0,0,0,.2),0 0 0 2px #fff inset;-webkit-box-shadow:0 1px 0 rgba(0,0,0,.2),0 0 0 2px #fff inset;-moz-border-radius:3px;-webkit-border-radius:3px;text-shadow:0 1px 0 #fff}sup{vertical-align:super}button,.source-button{margin-bottom:1rem}input,textarea,select,fieldset{margin-bottom:1.5rem}pre,blockquote,dl,figure,table,p,ul,ol,form{margin-bottom:2.50rem}.u-full-width{width:100%;box-sizing:border-box}.u-max-full-width{max-width:100%;box-sizing:border-box}.u-pull-right{float:right}.u-pull-left{float:left}.u-align-left{text-align:left}.u-align-right{text-align:right}.u-align-center{text-align:center}@media (max-width:600px){.s-align-left{text-align:left}.s-align-right{text-align:right}.s-align-center{text-align:center}}@media (min-width:600px){.m-align-left{text-align:left}.m-align-right{text-align:right}.m-align-center{text-align:center}}@media (min-width:900px){.l-align-left{text-align:left}.l-align-right{text-align:right}.l-align-center{text-align:center}}@media (min-width:1200px){.xl-align-left{text-align:left}.xl-align-right{text-align:right}.xl-align-center{text-align:center}}hr{margin-top:2rem;margin-bottom:2.5rem;border-width:0;border-top:1px solid var(--border-color)}.u-cf:before,.container:before,.row:before,.s3_row:before,.u-cf:after,.container:after,.row:after,.s3_row:after{content:"";display:table}.u-cf:after,.container:after,.row:after,.s3_row:after{clear:both}.stripped-container,.s-container-lite,.stripped-content,.stripped-outer,.stripped-wrapper,.s-grid-item,.s-cols-item,.s-coder-wrap{position:relative}.stripped-container,.stripped-content{box-sizing:border-box}img{max-width:100%}.stripped-img,.stripped-svg,.img-fit-wrap,picture{line-height:0}figure{line-height:1}.stripped-img img,.s-cols-item:not([data-sal]),.s-grid-item:not([data-sal]),.stripped-svg svg,.s-lift,.s-drop,.s-zoom,.s-zoom-big,.s-zoom-img img,.s-zoom-img-big img{transition:all .2s ease-out 0s}.s-container-lite,.s-content-center{margin-left:auto;margin-right:auto}.s-grid-item,.s-cols-item,.s-flex{display:flex;flex-direction:column;flex-wrap:wrap}.s-flow-down{flex-wrap:nowrap!important}.s-self-end{justify-self:end}.s-grid-item>.stacks_out,.s-cols-item>.stacks_out,.s-flex>.stacks_out{width:100%}.s-img-fit{object-fit:cover;width:100%!important;height:100%!important}.s-cols-container{position:relative;max-width:100%;margin:0 auto;display:flex;flex-flow:row wrap;vertical-align:top}.s-grid-link,.s-img-fit-link,.s-coder-link{display:contents}.s-button-group{display:flex;flex-wrap:wrap}.w-100{width:100%!important}.s-no-lift{transform:translateY(0)!important}.s-lift:hover{transform:translateY(-5px)!important}.s-drop:hover{transform:translateY(5px)!important}.s-zoom:hover{transform:scale(1.05)!important;z-index:10!important}.s-zoom-img:hover img{transform:scale(1.05)!important;z-index:10!important}.s-zoom-img-big:hover img{transform:scale(1.1)!important;z-index:10!important}.s-zoom-big:hover{transform:scale(1.1)!important;z-index:10!important}.s-fade{-webkit-mask:linear-gradient(to top,#fff,var(--t,#fff)) top / 100% 30%,linear-gradient(#fff,#fff) center / 100% 40%,linear-gradient(to bottom,#fff,var(--b,#fff)) bottom / 100% 30%;-webkit-mask-repeat:no-repeat;mask:linear-gradient(to top,#fff,var(--t,#fff)) top / 100% 30%,linear-gradient(#fff,#fff) center / 100% 40%,linear-gradient(to bottom,#fff,var(--b,#fff)) bottom / 100% 30%;mask-repeat:no-repeat}.s-fade-t{--t:transparent;}.s-fade-b{--b:transparent;}.s-bright{filter:brightness(70%);transition:filter 250ms ease-in-out!important}.s-bright:hover{filter:brightness(100%)}.s-dark{filter:brightness(100%);transition:filter 250ms ease-in-out!important}.s-dark:hover{filter:brightness(60%)}.s-blur{transition:filter 250ms ease-in-out!important}.s-blur:hover{filter:blur(4px)}.s-unblur{transition:filter 250ms ease-in-out!important;filter:blur(4px)}.s-unblur:hover{filter:blur(0)}.s-blur-bg{-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px)}.s-frost{background-color:rgba(255,255,255,.05);-webkit-backdrop-filter:blur(18px);backdrop-filter:blur(18px)}.s-shad{box-shadow:0 3px 15px rgba(0,0,0,.2)}.s-shad-none{box-shadow:none!important}.s-shad-hov:hover{box-shadow:0 0 18px rgba(0,0,0,.2)}@media (min-width:600px){.s-shad-m{box-shadow:0 3px 15px rgba(0,0,0,.2)}.s-shad-hov-m:hover{box-shadow:0 0 18px rgba(0,0,0,.2)}.s-shad-none-m{box-shadow:none!important}.text-rotate-up-m{writing-mode:vertical-rl;text-orientation:upright}.text-rotate-m{writing-mode:vertical-lr}.s-flip-m{transform:rotate(180deg)}.s-hide-m{pointer-events:none;transition:opacity 250ms ease-in-out!important;opacity:0}}@media (min-width:900px){.s-shad-l{box-shadow:0 3px 15px rgba(0,0,0,.2)}.s-shad-hov-l:hover{box-shadow:0 0 18px rgba(0,0,0,.2)}.s-shad-none-l{box-shadow:none!important}.text-rotate-up-l{writing-mode:vertical-rl;text-orientation:upright}.text-rotate-l{writing-mode:vertical-lr}.s-flip-l{transform:rotate(180deg)}.s-hide-l{pointer-events:none;transition:opacity 250ms ease-in-out!important;opacity:0}}@media (min-width:1200px){.s-shad-xl{box-shadow:0 3px 15px rgba(0,0,0,.2)}.s-shad-hov-xl:hover{box-shadow:0 0 18px rgba(0,0,0,.2)}.s-shad-none-xl{box-shadow:none!important}.text-rotate-up-xl{writing-mode:vertical-rl;text-orientation:upright}.text-rotate-xl{writing-mode:vertical-lr}.s-flip-xl{transform:rotate(180deg)}.s-hide-xl{pointer-events:none;transition:opacity 250ms ease-in-out!important;opacity:0}}.s-screen{mix-blend-mode:screen}.s-multiply{mix-blend-mode:multiply}.s-exclusion{mix-blend-mode:exclusion}.s-no-pointer{pointer-events:none}.s-flip{transform:rotate(180deg)}.text-rotate-up{writing-mode:vertical-rl;text-orientation:upright}.text-rotate{writing-mode:vertical-lr}html:not(.touch-stripped) .s-hide-nt,.s-hide{pointer-events:none;transition:opacity 250ms ease-in-out!important;opacity:0}.s-reveal:hover .s-hide,.s-reveal:hover .s-hide-nt,.s-reveal:hover .s-hide-m{pointer-events:auto;opacity:1}.s-hide-on-reveal{transition:opacity 250ms ease-in-out!important}.s-reveal:hover .s-hide-on-reveal{pointer-events:none;opacity:0}.repeat{background-repeat:repeat!important;background-size:unset!important}.touch-stripped .hide-touch{display:none}html:not(.touch-stripped) .hide-non-touch{display:none}.grid-container{position:relative;max-width:100%;margin:0 auto;display:grid}.hide-of{overflow:hidden}.stripped-container>.stripped-link a,.stripped-outer>.stripped-link a,.s-grid-item>.s-grid-link a,.s-cols-item>.s-grid-link a,.s-img-fit-link a,.s-coder-wrap>.s-coder-link a{position:absolute;top:3px;bottom:3px;left:3px;right:3px;content:"";z-index:998;text-decoration:none}.stacks_out{overflow:visible!important}.stacks_in{overflow:visible}.s-inliner>.stacks_out{margin:0;width:auto;display:inline-block}.mb-0{margin-bottom:0!important}.stripped-base-width,.source-base-width{max-width:950px;max-width:var(--container-max-width);margin:0 auto}.source-base-width-alt,.s-alt-width{max-width:650px;max-width:var(--container-max-width-alt);margin:0 auto}.alt-bg{background-color:var(--background-color-alt)!important}.page-bg{background-color:var(--background-color)!important}.page-fg{color:var(--background-color)!important}.text-bg{background-color:var(--text-color-normal)!important}.text-softer-fg{color:var(--text-color-softer)!important}.text-richer-fg{color:var(--text-color-richer)!important}.s-accent,.accent-bg{background-color:var(--accent-color)!important}.s-accent-text,.accent-alt-bg{background-color:var(--accent-text-color)!important}.s-accent-hover,.accent-hover-bg{background-color:var(--accent-color-hover)!important}.s-accent-c,.accent-fg{color:var(--accent-color)!important}.s-accent-text-c,.accent-alt-fg{color:var(--accent-text-color)!important}.s-accent-hover-c,.accent-hover-fg{color:var(--accent-color-hover)!important}.second-hover-fg{color:var(--second-color-hover)!important}.second-hover-bg{background-color:var(--second-color-hover)!important}.s-second-c,.second-fg{color:var(--second-color)!important}.s-second-text-c,.second-alt-fg{color:var(--second-color-alt)!important}.s-second,.second-bg{background-color:var(--second-color)!important}.s-second-text,.second-alt-bg{background-color:var(--second-color-alt)!important}.nav-1-bg{background-color:var(--nav-bg)!important}.nav-2-bg{background-color:var(--nav-bg-hover)!important}.nav-3-bg{background-color:var(--nav-link)!important}.nav-4-bg{background-color:var(--nav-link-hover)!important}.nav-1-fg{color:var(--nav-bg)!important}.nav-2-fg{color:var(--nav-bg-hover)!important}.nav-3-fg{color:var(--nav-link)!important}.nav-4-fg{color:var(--nav-link-hover)!important}.code-1-bg{background-color:var(--code-background)!important}.code-2-bg{background-color:var(--code-text)!important}.code-1-fg{color:var(--code-background)!important}.code-2-fg{color:var(--code-text)!important}.border-fg{color:var(--border-color)!important}.border-softer-fg{color:var(--border-color-softer)!important}.border-richer-fg{color:var(--border-color-richer)!important}.border-bg{background-color:var(--border-color)!important}.s-dark-bg{background-color:rgba(58,56,68,.5)}.s-vdark-bg{background-color:rgba(25,29,36,.80)}.s-light-bg{background-color:rgba(255,255,255,.5)}.s-vlight-bg{background-color:rgba(255,255,255,.8)}.stacks_top .iconic-caption{font-size:12px;padding:6px}.source-browser-warning{ text-align:center;width:80%;top:0;left:10%;position:fixed;margin:20px auto;padding:10px;background:#EC4D3B;color:white;border-radius:4px;z-index:9999}.source-browser-warning a{color:white;text-decoration:underline}@supports (display:grid){.source-browser-warning{display:none}}
 @font-face{font-family:'ET Bembo';src:url('../../../resources/MyFonts/ETBookOT-Roman.woff2') format('woff2');font-weight:normal;font-style:normal;font-display: auto;} @font-face{font-family:'ET Bembo';src:url('../../../resources/MyFonts/ETBookOT-Italic.woff2') format('woff2');font-weight:normal;font-style:italic;font-display: auto;} @font-face{font-family:'ET Bembo';src:url('../../../resources/MyFonts/ETBookOT-Bold.woff2') format('woff2');font-weight:bold;font-style:normal;font-display: auto;}p{   font-weight:400 ;font-family:'ET Bembo',serif }
h1{   font-weight:normal ;font-family:'Cinzel',serif }
h2, h3, h4, h5, h6{   font-weight:bold ;font-family:'Cinzel',serif }
.navbar li a{   font-weight:normal ;font-family:'Cinzel',serif }
.base-pad-basic-1,.base-pb-1{padding:5px 10px 5px 10px}.base-pad-advanced-1,.base-pa-1{padding:20px 10px 20px 10px}.base-margin-basic-1,.base-mb-1{margin:5px 10px 5px 10px}.base-margin-advanced-1,.base-ma-1{margin:0 0 0 0}@media (min-width:600px){ .base-margin-advanced-1,.base-ma-1{margin:0 0 0 0} .base-pad-advanced-1,.base-pa-1{padding:40px 20px 40px 20px}}@media (min-width:900px){ .base-margin-advanced-1,.base-ma-1{margin:0 0 0 0} .base-pad-advanced-1,.base-pa-1{padding:60px 20px 60px 20px}}@media (min-width:1200px){ .base-margin-advanced-1,.base-ma-1{margin:0 0 0 0} .base-pad-advanced-1,.base-pa-1{padding:80px 20px 80px 20px}}.base-bg-1-1,.base-bg1-1{     }.base-bg-2-1,.base-bg2-1{     }@important "partials/mixins";
#loader-outer-stacks_in_282_37 {
  z-index: 10000000000000000000;
  position: relative;
  /*  */ }

#loader-stacks_in_282_37 .loader-text {
  font-family: "Droid Serif";
  top: 50%;
  left: 50%;
  text-align: center;
  position: absolute;
  width: 100%;
  max-width: 90%;
  z-index: 10000000000000000000;
  color: rgba(0, 0, 0, 1.00);
  font-size: 20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
  #loader-stacks_in_282_37 .loader-text.loader-8-text {
    /*  */
    margin-top: -50px;
    /*  */ }
  #loader-stacks_in_282_37 .loader-text.loader-4-text {
    /*  */
    margin-top: -50px;
    /*  */ }

#loader-stacks_in_282_37 .loader-type {
  position: relative;
  z-index: 10000000000000000000; }

#loader-stacks_in_282_37 {
  /*  */
  /*  */
  /*  */
  position: fixed;
  /*  */
  /*  */
  overflow: hidden;
  z-index: 10000000000000000000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  #loader-stacks_in_282_37::before {
    /*  */
    background: rgba(245, 245, 245, 1.00);
    /*  */
    /*  */
    /*  */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    position: absolute;
    opacity: 1.0; }

.loader-1-stacks_in_282_37 {
  width: 100%;
  max-width: 10%;
  height: 8px;
  position: relative;
  background-color: rgba(17, 128, 64, 1.00); }
  .loader-1-stacks_in_282_37 .bar {
    content: "";
    display: inline;
    position: absolute;
    width: 0;
    height: 100%;
    left: 50%;
    text-align: center; }
  .loader-1-stacks_in_282_37 .bar:nth-child(1) {
    background-color: rgba(218, 71, 51, 1.00);
    -webkit-animation: loader-1-stacks_in_282_37 3s linear infinite;
            animation: loader-1-stacks_in_282_37 3s linear infinite; }
  .loader-1-stacks_in_282_37 .bar:nth-child(2) {
    background-color: rgba(59, 120, 231, 1.00);
    -webkit-animation: loader-1-stacks_in_282_37 3s linear 1s infinite;
            animation: loader-1-stacks_in_282_37 3s linear 1s infinite; }
  .loader-1-stacks_in_282_37 .bar:nth-child(3) {
    background-color: rgba(17, 128, 64, 1.00);
    -webkit-animation: loader-1-stacks_in_282_37 3s linear 2s infinite;
            animation: loader-1-stacks_in_282_37 3s linear 2s infinite; }

@-webkit-keyframes loader-1-stacks_in_282_37 {
  from {
    left: 50%;
    width: 0;
    z-index: 100; }
  33.3333% {
    left: 0;
    z-index: 10;
    width: 100%; }
  to {
    left: 0;
    width: 100%; } }

@keyframes loader-1-stacks_in_282_37 {
  from {
    left: 50%;
    width: 0;
    z-index: 100; }
  33.3333% {
    left: 0;
    z-index: 10;
    width: 100%; }
  to {
    left: 0;
    width: 100%; } }

.loader-2-stacks_in_282_37 {
  width: 50px;
  height: 50px;
  margin: 50px;
  -webkit-animation: loader-2-1-stacks_in_282_37 1.4s infinite ease-in-out, loader-2-2-stacks_in_282_37 1.4s infinite ease-in-out alternate;
          animation: loader-2-1-stacks_in_282_37 1.4s infinite ease-in-out, loader-2-2-stacks_in_282_37 1.4s infinite ease-in-out alternate; }

@-webkit-keyframes loader-2-1-stacks_in_282_37 {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
            transform: perspective(120px) rotateX(0deg) rotateY(0deg); }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(0deg);
            transform: perspective(120px) rotateX(-180deg) rotateY(0deg); }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
            transform: perspective(120px) rotateX(-180deg) rotateY(-180deg); } }

@keyframes loader-2-1-stacks_in_282_37 {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
            transform: perspective(120px) rotateX(0deg) rotateY(0deg); }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(0deg);
            transform: perspective(120px) rotateX(-180deg) rotateY(0deg); }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
            transform: perspective(120px) rotateX(-180deg) rotateY(-180deg); } }

@-webkit-keyframes loader-2-2-stacks_in_282_37 {
  0% {
    background-color: rgba(218, 71, 51, 1.00); }
  50% {
    background-color: rgba(59, 120, 231, 1.00); }
  100% {
    background-color: rgba(253, 186, 44, 1.00); } }

@keyframes loader-2-2-stacks_in_282_37 {
  0% {
    background-color: rgba(218, 71, 51, 1.00); }
  50% {
    background-color: rgba(59, 120, 231, 1.00); }
  100% {
    background-color: rgba(253, 186, 44, 1.00); } }

.loader-3-stacks_in_282_37 {
  width: 50px;
  height: 50px;
  border: none;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  box-sizing: border-box;
  background: rgba(253, 186, 44, 1.00);
  -webkit-animation: loader-3-stacks_in_282_37 1s infinite linear;
          animation: loader-3-stacks_in_282_37 1s infinite linear; }
  .loader-3-stacks_in_282_37::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    background: rgba(255, 255, 255, 1.00);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); }

@-webkit-keyframes loader-3-stacks_in_282_37 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes loader-3-stacks_in_282_37 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.loader-4-stacks_in_282_37 .bar {
  border-radius: 0px;
  display: inline-block;
  width: 4px;
  height: 18px;
  margin: 0 0px;
  -webkit-animation: loader-4-stacks_in_282_37 1s ease-in-out infinite;
          animation: loader-4-stacks_in_282_37 1s ease-in-out infinite; }
  .loader-4-stacks_in_282_37 .bar:nth-child(1) {
    background-color: rgba(52, 152, 219, 1.00);
    -webkit-animation-delay: 0;
            animation-delay: 0; }
  .loader-4-stacks_in_282_37 .bar:nth-child(2) {
    background-color: rgba(192, 57, 43, 1.00);
    -webkit-animation-delay: 0.09s;
            animation-delay: 0.09s; }
  .loader-4-stacks_in_282_37 .bar:nth-child(3) {
    background-color: rgba(241, 196, 15, 1.00);
    -webkit-animation-delay: .18s;
            animation-delay: .18s; }
  .loader-4-stacks_in_282_37 .bar:nth-child(4) {
    background-color: rgba(39, 174, 96, 1.00);
    -webkit-animation-delay: .27s;
            animation-delay: .27s; }

@-webkit-keyframes loader-4-stacks_in_282_37 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  20% {
    -webkit-transform: scale(1, 2.2);
            transform: scale(1, 2.2); }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes loader-4-stacks_in_282_37 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  20% {
    -webkit-transform: scale(1, 2.2);
            transform: scale(1, 2.2); }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

.loader-5-stacks_in_282_37 {
  opacity: 0;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  -webkit-animation: loader-5-stacks_in_282_37 1s ease-out;
          animation: loader-5-stacks_in_282_37 1s ease-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  border: 5px solid rgba(39, 174, 96, 1.00); }

@-webkit-keyframes loader-5-stacks_in_282_37 {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 1; }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0; } }

@keyframes loader-5-stacks_in_282_37 {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 1; }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0; } }

.loader-6-stacks_in_282_37 {
  width: 100%;
  height: 40px; }

.loader-6-stacks_in_282_37 .bar {
  width: 40px;
  height: 40px;
  left: -40px;
  position: absolute;
  background-color: rgba(39, 174, 96, 1.00);
  border-radius: 4px;
  -webkit-animation: loader-6-stacks_in_282_37 4s infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
          animation: loader-6-stacks_in_282_37 4s infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); }
  .loader-6-stacks_in_282_37 .bar:nth-child(2) {
    -webkit-animation-delay: 150ms;
            animation-delay: 150ms; }
  .loader-6-stacks_in_282_37 .bar:nth-child(3) {
    -webkit-animation-delay: 300ms;
            animation-delay: 300ms; }
  .loader-6-stacks_in_282_37 .bar:nth-child(4) {
    -webkit-animation-delay: 450ms;
            animation-delay: 450ms; }

@-webkit-keyframes loader-6-stacks_in_282_37 {
  0% {
    left: 0%; }
  75% {
    left: 100%; }
  100% {
    left: 100%; } }

@keyframes loader-6-stacks_in_282_37 {
  0% {
    left: 0%; }
  75% {
    left: 100%; }
  100% {
    left: 100%; } }

.loader-7-stacks_in_282_37 {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 8px;
  max-width: 90%;
  background-color: rgba(241, 241, 241, 1.00); }
  .loader-7-stacks_in_282_37:before {
    display: block;
    position: absolute;
    content: "";
    left: -200px;
    width: 200px;
    height: 8px;
    background-color: rgba(0, 0, 0, 1.00);
    -webkit-animation: loader-7-stacks_in_282_37 2s linear infinite;
            animation: loader-7-stacks_in_282_37 2s linear infinite; }

@-webkit-keyframes loader-7-stacks_in_282_37 {
  from {
    left: -200px;
    width: 30%; }
  50% {
    width: 30%; }
  70% {
    width: 70%; }
  80% {
    left: 50%; }
  95% {
    left: 120%; }
  to {
    left: 100%; } }

@keyframes loader-7-stacks_in_282_37 {
  from {
    left: -200px;
    width: 30%; }
  50% {
    width: 30%; }
  70% {
    width: 70%; }
  80% {
    left: 50%; }
  95% {
    left: 120%; }
  to {
    left: 100%; } }

.loader-8-stacks_in_282_37 {
  width: 100%;
  height: 20px;
  background-size: 28px 28px;
  max-width: 90%;
  border-radius: 3pxpx;
  -webkit-animation: loader-8-stacks_in_282_37 .5s linear infinite;
          animation: loader-8-stacks_in_282_37 .5s linear infinite;
  border: 1px solid rgba(0, 0, 0, 1.00);
  background-image: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 1.00), rgba(0, 0, 0, 1.00) 11px, rgba(241, 241, 241, 1.00) 10px, rgba(241, 241, 241, 1.00) 20px); }

@-webkit-keyframes loader-8-stacks_in_282_37 {
  0% {
    background-position: 0 0; }
  100% {
    background-position: 28px 0; } }

@keyframes loader-8-stacks_in_282_37 {
  0% {
    background-position: 0 0; }
  100% {
    background-position: 28px 0; } }

.loader-9-stacks_in_282_37 {
  font-family: "Droid Serif";
  position: relative;
  color: rgba(241, 241, 241, 1.00);
  font-size: px; }
  .loader-9-stacks_in_282_37:before {
    content: attr(data-text);
    max-width: 100%;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    color: rgba(0, 0, 0, 1.00);
    -webkit-animation: loader-9-stacks_in_282_37 8s linear;
            animation: loader-9-stacks_in_282_37 8s linear;
    /*  */ }
  @media only screen and (min-width: 480px) {
    .loader-9-stacks_in_282_37 {
      font-size: 24px; } }
  @media only screen and (min-width: 768px) {
    .loader-9-stacks_in_282_37 {
      font-size: 32px; } }
  @media only screen and (min-width: 1100px) {
    .loader-9-stacks_in_282_37 {
      font-size: 40px; } }

@-webkit-keyframes loader-9-stacks_in_282_37 {
  0% {
    max-width: 0; } }

@keyframes loader-9-stacks_in_282_37 {
  0% {
    max-width: 0; } }

.loader-10-stacks_in_282_37 {
  width: 100px;
  height: 100px;
  position: relative;
  border-radius: 50%;
  background: url() no-repeat center center;
  background-size: 100% 100%; }
  .loader-10-stacks_in_282_37::after {
    content: '';
    z-index: 2;
    width: 100px;
    height: 100px;
    display: block;
    margin-top: -8px;
    margin-left: -8px;
    position: absolute;
    border-radius: 50%;
    border: 8px solid rgba(241, 241, 241, 1.00);
    -webkit-animation: loader-10-stacks_in_282_37 1.7s infinite linear;
            animation: loader-10-stacks_in_282_37 1.7s infinite linear; }
  .loader-10-stacks_in_282_37-half::after {
    border-right-color: transparent;
    border-bottom-color: transparent; }
  .loader-10-stacks_in_282_37-quarter::after {
    border-right-color: transparent;
    border-left-color: transparent;
    border-bottom-color: transparent; }
  .loader-10-stacks_in_282_37-third::after {
    border-right-color: transparent; }
  .loader-10-stacks_in_282_37::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    z-index: -1;
    margin-top: -8px;
    margin-left: -8px;
    border-radius: 50%;
    border: 8px solid rgba(15, 128, 255, 1.00); }

@-webkit-keyframes loader-10-stacks_in_282_37 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes loader-10-stacks_in_282_37 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
/* PMBeautifier stack v1.0.7 */body #rapidweaver_privacy_message {	display: -webkit-box;	display: -ms-flexbox;	       display: flex;		left: 0;	background-color: rgba(19, 125, 52, 1.00);												}body #rapidweaver_privacy_message p:not(button) {	width: 100%;				color: #FFFFFF !important;	text-align:center;					margin: 20px 20px 20px 20px;		}body #rapidweaver_privacy_message p:not(button) span {	color: #FFFFFF !important;}body #rapidweaver_privacy_message p a:link {		}body #rapidweaver_privacy_message p a:visited {		}body #rapidweaver_privacy_message p a:hover {		}body #rapidweaver_privacy_message p a:active {		}body #rapidweaver_privacy_message button {				color: #000000;					margin: 20px 20px 20px 20px;				background-color: rgba(255, 255, 255, 1.00);		font-weight: normal;		}body #rapidweaver_privacy_message button:hover {	filter: saturate(100%);	color: #FB0207;	background-color: rgba(255, 255, 255, 1.00);	}body #rapidweaver_privacy_message button:active {	color: #FFFFFF;	background-color: rgba(251, 2, 7, 1.00);	}/* End of PMBeautifier stack */
#stacks_in_282_39 {
	background-color: rgba(19, 125, 52, 1.00);
}
#elevator-to-top{--elevator-width:50px;--elevator-height:50px;--elevator-color:rgba(15, 128, 255, 1.00);--elevator-radius:5px;--elevator-fill:rgba(255, 255, 255, 1.00);--elevator-border-color:rgba(255, 255, 255, 1.00);--elevator-border-width:0px;--elevator-icon-width:24px;--elevator-shadow:0 0 10px rgba(0,0,0,0.5);-webkit-appearance:none;appearance:none;display:none;overflow:hidden;justify-content:center;align-items:center;padding:0;margin:0;cursor:pointer;transition:all 200ms ease-in-out;position:fixed;bottom:10px;right:10px;z-index:9999;width:var(--elevator-width);height:var(--elevator-height);border-color:var(--elevator-border-color);border-width:var(--elevator-border-width);border-style:solid;background-color:var(--elevator-color);color:var(--elevator-fill);box-shadow:var(--elevator-shadow);border-radius:var(--elevator-radius)}#elevator-to-top svg{width:var(--elevator-icon-width);fill:var(--elevator-fill)}#elevator-to-top:active,#elevator-to-top:focus{outline:none}#elevator-to-top:hover{scale:1.05}

 .s-container-stacks_in_507{ }#s-wrapper-stacks_in_507{ }#s-content-stacks_in_507{justify-content:center; padding:0; }.s-bg-stacks_in_507{z-index:0}#s-outer-stacks_in_507{border-radius:0px 0px 0px 0px}
#divstacks_in_509 hr{border-top-style:solid;border-top-width:1px;border-top-color:var(--border-color); width:100%;max-width:100%;margin-top:1.50rem;margin-bottom:1.50rem}
h1.stacks_in_511{        margin-bottom: 0;}
h4.stacks_in_513{        margin-bottom: 0;}
#divstacks_in_515 hr{border-top-style:solid;border-top-width:1px;border-top-color:var(--border-color); width:100%;max-width:100%;margin-top:1.50rem;margin-bottom:1.50rem}
#stacks_in_516.nav-wrap{background-color:var(--nav-bg);width:100%;padding:5px 5px 5px 5px}#stacks_in_516 .nav-content{z-index:999}html:not(.menulab-js) .nav-wrap{display:none}#stacks_in_516.nav-fixed,#stacks_in_516.nav-sticky{top:0;width:100%;z-index:999}#stacks_in_516.nav-fixed{position:fixed;box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.12)}#stacks_in_516.nav-sticky{position:sticky}.stacks_top{overflow:visible!important}#stacks_in_516 .contained-bar{max-width:var(--container-max-width)}#stacks_in_516 .navbar li>ul{background-color:var(--nav-bg)}#stacks_in_516 .navbar li{list-style-type:none;display:block;border-radius:4px}#stacks_in_516 .navbar li a{color:var(--nav-link)}#stacks_in_516 .navbar li:hover>*:first-child,#stacks_in_516 .navbar li.active>*:first-child{color:var(--nav-link-hover)}#stacks_in_516 .navbar li:hover,#stacks_in_516 .navbar li.active{background-color:var(--nav-bg-hover)}#stacks_in_516 .logo img{vertical-align:top;height:42px;border-radius:5px;width:auto;max-width:none}#stacks_in_516 .logo{}#stacks_in_516 .site-title{}#stacks_in_516 .navbar{display:block;}#stacks_in_516 .branding{position:relative;display:flex;align-items:center;justify-content:center}#stacks_in_516 .branding h4{font-size:20px;font-weight:normal;text-transform: uppercase; padding-left:10px;padding-right:10px}#stacks_in_516 .site-title a{color:var(--text-color-normal);}#stacks_in_516 .site-title a:hover{color:var(--text-color-softer);}@media only screen and (max-width:599px){#stacks_in_516 .ml-dropdown{background-color:var(--nav-bg);max-height:calc(100vh - 45px);overflow-y:scroll} #stacks_in_516 .cta{display:none} #stacks_in_516 .navbar li{margin:3px 0}#stacks_in_516 .branding{}}@media only screen and (min-width:600px){ #stacks_in_516 .logo{display: block; margin-left:0;padding-right:10px}#stacks_in_516 .site-title{display: none;} #stacks_in_516 .cta-small{display:none} #stacks_in_516 .branding h4{font-size:20px;padding-left:0;padding-right:40px}#stacks_in_516 .grouped-cta,#stacks_in_516 .cta{display:flex;flex-wrap:wrap;align-items:center}#stacks_in_516 .branding{min-width:0px;justify-content: start;}#stacks_in_516 .logo img{height:54px}#stacks_in_516 .navbar{display:inline-block} #stacks_in_516 .mob-icon{display:none}#stacks_in_516.nav-wrap{padding:12px 12px 15px 12px}#stacks_in_516 .navbar{float:right;max-height:none;overflow:visible}#stacks_in_516 .navbar,#stacks_in_516 .nav-content{position:relative;display:flex;align-items:center;justify-content:center;}#stacks_in_516 .navbar li a{padding:0 .8em}#stacks_in_516 .navbar li.active,#stacks_in_516 .navbar li:hover{border-radius:4px}#stacks_in_516 .navbar .ml-menu,#stacks_in_516 .navbar .ml-menu ul{margin:2px 1px}#stacks_in_516 .navbar .ml-menu li{margin:2px 1px;padding-top:3px;padding-bottom:3px}#stacks_in_516 .navbar li>ul{box-shadow:0 0 18px rgba(0,0,0,.1)}#stacks_in_516 .navbar .ml-menu li>ul .dd-to-left>ul{right:100%!important;left:auto!important}#stacks_in_516 .navbar .ml-menu li>ul .dd-to-right>ul{left:100%!important;right:auto!important}#stacks_in_516 .navbar .ml-menu ul,#stacks_in_516 .navbar [dir=rtl] .ml-menu>.dd-to-right>ul{display:none;position:absolute;padding:6px;top:100%;left:0;right:auto;z-index:1}#stacks_in_516 .navbar [dir=rtl] .ml-menu ul,#stacks_in_516 .navbar .ml-menu>.dd-to-left>ul{left:auto;right:0}#stacks_in_516 .navbar .ml-menu ul ul,#stacks_in_516 .navbar [dir=rtl] .ml-menu ul .dd-to-right ul{top:0;left:100%;right:auto}#stacks_in_516 .navbar [dir=rtl] .ml-menu ul ul,#stacks_in_516 .navbar .ml-menu ul .ml-dd-to-left ul{left:auto;right:100%}#stacks_in_516 .navbar .ml-menu li{position:relative;display:block;list-style-type:none}#stacks_in_516 .navbar .ml-menu>li{display:inline-block}#stacks_in_516 .navbar .ml-menu a,#stacks_in_516 .navbar .ml-menu span{display:block;text-decoration:none;white-space:pre}#stacks_in_516 .navbar .ml-menu li:hover>ul{display:block}#stacks_in_516 .navbar .ml-js li:hover>ul{display:none}#stacks_in_516 .navbar .ml-js li.dd-open>ul{display:block!important}#stacks_in_516 .ml-arrows .has-dropdown{padding-right:16px;*padding-right:16px}}#stacks_in_516 .ml-arrows .has-dropdown:after{border-top-color:darkgray;border-top-color:var(--nav-link)}#stacks_in_516 .ml-arrows .has-dropdown.active:after{border-top-color:darkgray;border-top-color:var(--nav-link-hover)}#stacks_in_516 .ml-arrows>li>.ml-dropdown:focus:after,#stacks_in_516 .ml-arrows>li:hover>.ml-dropdown:after,#stacks_in_516 .ml-arrows>.sfHover>.ml-dropdown:after{border-top-color:darkgray;border-top-color:var(--nav-link)}#stacks_in_516 .ml-arrows ul .ml-dropdown:after{border-top-color:darkgray;border-left-color:var(--nav-link)}#stacks_in_516 .ml-arrows ul li>.ml-dropdown:focus:after,#stacks_in_516 .ml-arrows ul li:hover>.ml-dropdown:after,#stacks_in_516 .ml-arrows ul .sfHover>.ml-dropdown:after{border-top-color:darkgray;border-left-color:var(--nav-link)}#stacks_in_516 .mob-icon{-webkit-transform:scale(.6);-moz-transform:scale(.6);-o-transform:scale(.6);transform:scale(.6)}#stacks_in_516 .burg{width:45px;height:45px;position:relative;-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);transition:.5s ease-in-out;cursor:pointer}#stacks_in_516 .burg span{display:block;position:absolute;height:6px;width:100%;background:darkgray;background:var(--nav-link); border-radius:6px;opacity:1;left:0;-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);transition:.25s ease-in-out}#stacks_in_516 .burg span:nth-child(1){top:0}#stacks_in_516 .burg span:nth-child(2),#stacks_in_516 .burg span:nth-child(3){top:18px}#stacks_in_516 .burg span:nth-child(4){top:36px}#stacks_in_516.ml-toggle.expand .burg span:nth-child(1){top:18px;width:0;left:50%}#stacks_in_516.ml-toggle.expand .burg span:nth-child(2){-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}#stacks_in_516.ml-toggle.expand .burg span:nth-child(3){-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}#stacks_in_516.ml-toggle.expand .burg span:nth-child(4){top:18px;width:0;left:50%}    
.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_490 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_490 {
		display: none !important;
	}
}
 .s-container-stacks_in_488{ }#s-wrapper-stacks_in_488{margin:0; }#s-content-stacks_in_488{justify-content:center;  padding:0px 0px 10px 0px;}.s-bg-stacks_in_488{z-index:0}#s-outer-stacks_in_488{border-radius:0px 0px 0px 0px}
h3.stacks_in_486{        }
@font-face{font-family:"Ionicons";src:url("ionicons/ionicons.eot?v=4.5.9-1");src:url("ionicons/ionicons.eot?v=4.5.9-1#iefix") format("embedded-opentype"),url("ionicons/ionicons.woff2?v=4.5.9-1") format("woff2"),url("ionicons/ionicons.woff?v=4.5.9-1") format("woff"),url("ionicons/ionicons.ttf?v=4.5.9-1") format("truetype"),url("ionicons/ionicons.svg?v=4.5.9-1#Ionicons") format("svg");font-weight:normal;font-style:normal}
#stacks_in_525_press.press-lite {
  box-sizing: border-box;
  position: relative;
  /*  */
  cursor: pointer;
  /*  */
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  margin: 0;
  font-size: 16px;
  line-height: 16px;
  /*  */
  /*  */
  background-color: rgba(255, 255, 255, 1.00);
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  font-family: ET Bembo;
  /*  */
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 1.00);
}
#stacks_in_525_press.press-lite:focus {outline:0;}
#stacks_in_525_press_wrap {
  /*  */
  /*  */
  display: flex;
  justify-content: center;
  /*  */
  /*  */
  margin: 12px 0px 12px 0px;
}
#stacks_in_525_press.press-lite {
  white-space: nowrap;
}
#stacks_in_525_press.press-lite .press-lite-text span,
#stacks_in_525_press.press-lite .press-lite-text:after {
  overflow: hidden;
  color: rgba(0, 0, 0, 1.00);
  /*  */
  font-weight: bold;
  /*  */
}
#stacks_in_525_press.press-lite,
#stacks_in_525_press.press-lite .press-lite-text,
#stacks_in_525_press.press-lite .press-lite-text:after,
#stacks_in_525_press.press-lite .press-lite-text > span,
#stacks_in_525_press.press-lite .press-lite-icon i,
#stacks_in_525_press.press-lite .press-lite-icon img,
#stacks_in_525_press.press-lite .press-lite-icon svg,
#stacks_in_525_press.press-lite .press-lite-icon svg path,
#stacks_in_525_press.press-lite .press-lite-icon svg polyline,
#stacks_in_525_press.press-lite .press-lite-icon:after {
    transition: all 200ms ease;
}
#stacks_in_525_press.press-lite .press-lite-text {
  z-index: 1;
  position: relative;
}
#stacks_in_525_press.press-lite .press-lite-icon i,
#stacks_in_525_press.press-lite .press-lite-icon img {
  position: relative;
  color: rgba(255, 255, 255, 1.00);
  display: inline-block;
  /*  */
  margin-right: 8px;
  /*  */
  font-size: 16px;
  line-height: 16px;
  z-index: 1;
}
#stacks_in_525_press.press-lite .press-lite-icon img {
  height: 16px;
  width: auto;
  vertical-align: top;
}
#stacks_in_525_press.press-lite .press-lite-icon svg {
  display: inline-block;
  /*  */
  margin-right: 8px;
  /*  */
  height: 20.000000px;
  z-index: 1;
}
/*  */
#stacks_in_525_press.press-lite .press-lite-icon.press-lite-icon-off svg {
  transform: translateX(5%);
}
#stacks_in_525_press.press-lite .press-lite-icon svg path {
  fill: rgba(255, 255, 255, 1.00);
}
#stacks_in_525_press.press-lite .press-lite-icon svg polyline {
  fill:none;
  stroke: rgba(255, 255, 255, 1.00);
  stroke-linecap:round;
  stroke-linejoin:round;
  stroke-width:48px;
}
#stacks_in_525_press.press-lite:active,
#stacks_in_525_press.press-lite:focus {
  transform: translate(0,0);
}
/*  */
/*  */
#stacks_in_525_press.press-lite:hover {
  background: rgba(15, 128, 255, 1.00);
}
/*  */
/*  */
#stacks_in_525_press.press-lite:hover {
  border-color: rgba(0, 0, 0, 1.00);
}
#stacks_in_525_press.press-lite:hover .press-lite-text span,
#stacks_in_525_press.press-lite:hover .press-lite-text:after  {
  color: rgba(255, 255, 255, 1.00);
}
#stacks_in_525_press.press-lite:hover .press-lite-icon i {
  color: rgba(255, 255, 255, 1.00);
}
#stacks_in_525_press.press-lite:hover .press-lite-icon svg path {
  fill: rgba(255, 255, 255, 1.00);
}
#stacks_in_525_press.press-lite:hover .press-lite-icon svg polyline {
  fill:none;
  stroke: rgba(255, 255, 255, 1.00);
}
/*  */
/*  */
#stacks_in_525_press.press-lite {
    padding: 0;
}
#stacks_in_525_press.press-lite .press-lite-text {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 12px 24px 12px 13px;
}
#stacks_in_525_press.press-lite .press-lite-icon i,
#stacks_in_525_press.press-lite .press-lite-icon img,
#stacks_in_525_press.press-lite .press-lite-icon svg {
    margin: 0;
}
#stacks_in_525_press.press-lite .press-lite-icon {
    padding: 0px;
    display: grid;
    float:left;
    align-content: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-align: center;
}
#stacks_in_525_press.press-lite .press-lite-icon:after {
  content: "";
  color: transparent;
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  background: rgba(15, 128, 255, 1.00);
  border-radius: 4px 0px 0px 4px;
  width: 40px;
  height: 42px;
}
/*  */
/*  */
#stacks_in_525_press.press-lite .press-lite-icon:after {
  border-radius: 4px;
}
#stacks_in_525_press.press-lite:hover .press-lite-icon i,
#stacks_in_525_press.press-lite:hover .press-lite-icon img,
#stacks_in_525_press.press-lite:hover .press-lite-icon svg {
  transform: translateX(12px);
}
#stacks_in_525_press.press-lite:hover .press-lite-icon:after {
  width: 100%;
}
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
#stacks_in_525_press.press-lite {
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
}
#stacks_in_525_press.press-lite:active {
  box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.15);
}
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
#stacks_in_525_press.press-lite .press-lite-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  display: grid;
}
#stacks_in_525_press.press-lite .press-lite-line-t,
#stacks_in_525_press.press-lite .press-lite-line-b {
  position: absolute;
  height: 1px;
  width: 0%;
  background: rgba(0, 0, 0, 1.00);
  transition: all 200ms ease;
}
#stacks_in_525_press.press-lite .press-lite-line-l,
#stacks_in_525_press.press-lite .press-lite-line-r {
  position: absolute;
  width: 1px;
  height: 0%;
  background: rgba(0, 0, 0, 1.00);
  transition: all 200ms ease;
}
#stacks_in_525_press.press-lite .press-lite-line-t {
  top: 0;
}
#stacks_in_525_press.press-lite .press-lite-line-b {
  bottom: 0;
  width: 100%;
}
#stacks_in_525_press.press-lite .press-lite-line-l {
  left: 0;
}
#stacks_in_525_press.press-lite .press-lite-line-r {
  right: 0;
}
/*  */
/*  */
/*  */
/*  */
 .s-container-stacks_in_283{ }#s-wrapper-stacks_in_283{margin:0; }#s-content-stacks_in_283{justify-content:center; padding:0; }.s-bg-stacks_in_283{z-index:0}#s-outer-stacks_in_283{border-radius:0px 0px 0px 0px}
#stacks_in_284 *, #stacks_in_284 *:after, #stacks_in_284 *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; }

#stacks_in_284 .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_284 .clearfix:before,
#stacks_in_284 .clearfix:after {
	content: " "; display: table;
}

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

#stacks_in_284  {
}

#stacks_in_284 .timeline_item {
	position: relative;
}

#stacks_in_284 ul.cbp_tmtimeline {
	margin: 0;
}

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

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

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

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

#stacks_in_284 .cbp_tmtimeline li {
	margin: 0;
}

/* The line */
#stacks_in_284 .cbp_tmtimeline:before {
	content: '';
	position: absolute;
	top: 1px;
	bottom: 0;
	width: 10px;
	
	border-radius: 5px;
	
	

		
			background: #118040;
		

	

	
	
		left: 25%;
	
	
	
	
	

	margin-left: -10px;
}

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

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

#stacks_in_284 .cbp_tmtimeline li .cbp_tmtime span.small_label {
	font-size: 14px;
	line-height: 1.2;
	white-space: normal;
	
		color: #000000;
	
}

#stacks_in_284 .cbp_tmtimeline li .cbp_tmtime span.large_label {
	font-size: 28px;
	line-height: 1.2;
	letter-spacing: -1px;
	white-space: normal;
	
		color: #000000;
	
	overflow: hidden;
}

/* Right content */
#stacks_in_284 .cbp_tmtimeline li .cbp_tmlabel {
	
	
		margin: 0 0 15px 30%;
	
	
	
	
	
	
		background: #E6E6E6;
		color: #000000;
	
	padding: 2em;
	position: relative;
	border-radius: 5px;
}

#stacks_in_284 .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: #000000;
	
}

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


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


/* The icons */
#stacks_in_284 .cbp_tmtimeline li .cbp_tmicon {
	width: 40px;
	height: 40px;
	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;  /* Makes sure the theme isn't overriding the icon color */
		background: #CCCCCC;
		box-shadow: 0 0 0 8px #E6E6E6; /* Border of icon */
	
	border-radius: 50%;
	text-align: center;
	top: 8px;

	
	
		left: 25%;
	
	
	
	
	

	margin: 0 0 0 -25px;

	
}

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



	#stacks_in_284 .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_284 .cbp_tmtimeline li .cbp_tmtime span.large_label {
		font-size: 24px;
		line-height: 1.2;
	}
}

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

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

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

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

	#stacks_in_284 .cbp_tmtimeline li .cbp_tmlabel:after {
		display: none;
	}

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


	

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

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

	


}





#stacks_in_284 {
	background-color: rgba(230, 230, 230, 0.25);
}




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


.stacks_in_532 img,.stacks_in_532 svg{max-width:100%; height:auto;border-radius:0px;}.stacks_in_532 img:hover{ }
.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_534 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_534 {
		display: none !important;
	}
}
.stacks_in_530 img,.stacks_in_530 svg{max-width:100%; height:auto;border-radius:0px;}.stacks_in_530 img:hover{ }


/* Color picker style settings */







	
	#stacks_in_286 p,
	#stacks_in_286 {
		
	}
	

	
	
	
	
	



#stacks_in_286 p,
#stacks_in_286 {
	
}





	#stacks_in_290 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_290 .timeline_content {
		margin-top: 0px;
	}






/* Color picker style settings */







	
	#stacks_in_291 p,
	#stacks_in_291 {
		
	}
	

	
	
	
	
	



#stacks_in_291 p,
#stacks_in_291 {
	
}

.stacks_in_294 img,.stacks_in_294 svg{max-width:100%; height:auto;border-radius:0px;}.stacks_in_294 img:hover{ }



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





/* Color picker style settings */







	
	#stacks_in_297 p,
	#stacks_in_297 {
		
	}
	

	
	
	
	
	



#stacks_in_297 p,
#stacks_in_297 {
	
}

.stacks_in_300 img,.stacks_in_300 svg{max-width:100%; height:auto;border-radius:0px;}.stacks_in_300 img:hover{ }



	#stacks_in_302 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_302 .timeline_content {
		margin-top: 0px;
	}






/* Color picker style settings */







	
	#stacks_in_303 p,
	#stacks_in_303 {
		
	}
	

	
	
	
	
	



#stacks_in_303 p,
#stacks_in_303 {
	
}

.stacks_in_306 img,.stacks_in_306 svg{max-width:100%; height:auto;border-radius:0px;}.stacks_in_306 img:hover{ }



	#stacks_in_308 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_308 .timeline_content {
		margin-top: 0px;
	}






/* Color picker style settings */







	
	#stacks_in_309 p,
	#stacks_in_309 {
		
	}
	

	
	
	
	
	



#stacks_in_309 p,
#stacks_in_309 {
	
}

.stacks_in_535 img,.stacks_in_535 svg{max-width:100%; height:auto;border-radius:0px;}.stacks_in_535 img:hover{ }



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





/* Color picker style settings */







	
	#stacks_in_314 p,
	#stacks_in_314 {
		
	}
	

	
	
	
	
	



#stacks_in_314 p,
#stacks_in_314 {
	
}

.stacks_in_317 img,.stacks_in_317 svg{max-width:100%; height:auto;border-radius:0px;}.stacks_in_317 img:hover{ }
.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_539 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_539 {
		display: none !important;
	}
}
#stacks_in_542 img {
	width: 100%;  /* 140 */
	height: auto; /* 140 */
}

/* IMAGE LIGHTBOX SELECTOR */
#stacks_in_542-imagelightbox {
	cursor: pointer;
	position: fixed;
	z-index: 10000;
	-ms-touch-action: none;
	touch-action: none;
	-webkit-box-shadow: 0 0 3.125em rgba(0, 0, 0, .75); /* 50 */
	box-shadow: 0 0 3.125em rgba(0, 0, 0, .75); /* 50 */
}

/* ACTIVITY INDICATION */
#stacks_in_542-imagelightbox-loading, #stacks_in_542-imagelightbox-loading div {
	border-radius: 50%;
}
#stacks_in_542-imagelightbox-loading {
	width: 2.5em; /* 40 */
	height: 2.5em; /* 40 */
	background-color: #444;
	background-color: rgba(0, 0, 0, .5);
	position: fixed;
	z-index: 10003;
	top: 50%;
	left: 50%;
	padding: 0.625em; /* 10 */
	margin: -1.25em 0 0 -1.25em; /* 20 */
	-webkit-box-shadow: 0 0 2.5em rgba(0, 0, 0, .75); /* 40 */
	box-shadow: 0 0 2.5em rgba(0, 0, 0, .75); /* 40 */
}
#stacks_in_542-imagelightbox-loading div {
	width: 1.25em; /* 20 */
	height: 1.25em; /* 20 */
	background-color: #fff;
	-webkit-animation: imagelightbox-loading .5s ease infinite;
	animation: imagelightbox-loading .5s ease infinite;
}
@-webkit-keyframes imagelightbox-loading {
	from {
		opacity: .5;
		-webkit-transform: scale(.75);
	}
	50% {
		opacity: 1;
		-webkit-transform: scale(1);
	}
	to {
		opacity: .5;
		-webkit-transform: scale(.75);
	}
}
@keyframes imagelightbox-loading {
	from {
		opacity: .5;
		transform: scale(.75);
	}
	50% {
		opacity: 1;
		transform: scale(1);
	}
	to {
		opacity: .5;
		transform: scale(.75);
	}
}

/* OVERLAY */
#stacks_in_542-imagelightbox-overlay {
	background-color: rgba(255, 255, 255, 1.00);
	position: fixed;
	z-index: 9998;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/* "CLOSE" BUTTON */
#stacks_in_542-imagelightbox-close {
	width: 2.5em; /* 40 */
	height: 2.5em; /* 40 */
	text-align: left;
	background-color: #666;
	border-radius: 50%;
	position: fixed;
	z-index: 100002;
	top: 2.5em; /* 40 */
	right: 2.5em; /* 40 */
	-webkit-transition: color .3s ease;
	transition: color .3s ease;
	border-style: none;
}
#stacks_in_542-imagelightbox-close:hover, #stacks_in_542-imagelightbox-close:focus {
	background-color: #111;
}
#stacks_in_542-imagelightbox-close:before, #stacks_in_542-imagelightbox-close:after {
	width: 2px;
	background-color: #fff;
	content: '';
	position: absolute;
	top: 20%;
	bottom: 20%;
	left: 50%;
	margin-left: -1px;
}
#stacks_in_542-imagelightbox-close:before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
#stacks_in_542-imagelightbox-close:after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* CAPTION */
#stacks_in_542-imagelightbox-caption {
	text-align: center;
	color: #fff;
	background-color: #666;
	position: fixed;
	z-index: 10001;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0.625em; /* 10 */
}

/* NAVIGATION */
#stacks_in_542-imagelightbox-nav {
	background-color: #444;
	background-color: rgba(0, 0, 0, .5);
	border-radius: 20px;
	position: fixed;
	z-index: 10001;
	left: 50%;
	bottom: 3.75em; /* 60 */
	padding: 0.313em; /* 5 */
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
#stacks_in_542-imagelightbox-nav button {
	width: 1rem; /* 20 */
	height: 1rem; /* 20 */
	background-color: transparent;
	border: 1px solid #fff;
	border-radius: 50%;
	display: inline-block;
	margin: 0 0.313em; /* 5 */
}
#stacks_in_542-imagelightbox-nav button.active {
	background-color: #fff;
}

/* ARROWS */
.stacks_in_542-imagelightbox-arrow {
	width: 3.75em; /* 60 */
	height: 7.5em; /* 120 */
	background-color: #444;
	background-color: rgba(0, 0, 0, .5);
	vertical-align: middle;
	display: none;
	position: fixed;
	z-index: 10001;
	top: 50%;
	margin-top: -3.75em; /* 60 */
	border-style: none;
}
.stacks_in_542-imagelightbox-arrow:hover, .stacks_in_542-imagelightbox-arrow:focus {
	background-color: #666;
	background-color: rgba(0, 0, 0, .75);
}
.stacks_in_542-imagelightbox-arrow:active {
	background-color: #111;
}
.stacks_in_542-imagelightbox-arrow-left {
	left: 2.5em; /* 40 */
}
.stacks_in_542-imagelightbox-arrow-right {
	right: 2.5em; /* 40 */
}
.stacks_in_542-imagelightbox-arrow:before {
	width: 0;
	height: 0;
	border: 1em solid transparent;
	content: '';
	display: inline-block;
	margin-bottom: -0.125em; /* 2 */
}
.stacks_in_542-imagelightbox-arrow-left:before {
	border-left: none;
	border-right-color: #fff;
	margin-left: -0.313em; /* 5 */
}
.stacks_in_542-imagelightbox-arrow-right:before {
	border-right: none;
	border-left-color: #fff;
	margin-right: -0.313em; /* 5 */
}
#stacks_in_542-imagelightbox-loading, #stacks_in_542-imagelightbox-overlay, #stacks_in_542-imagelightbox-close, #stacks_in_542-imagelightbox-caption, #stacks_in_542-imagelightbox-nav, #stacks_in_542-stacks_in_542 .imagelightbox-arrow {
	-webkit-animation: fade-in .25s linear;
	animation: fade-in .25s linear;
}
@-webkit-keyframes fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@media only screen and (max-width:41.250em)

/* 660 */
{
	#stacks_in_542-container {
		width: 100%;
	}
	#stacks_in_542-imagelightbox-close {
		top: 1.25em; /* 20 */
		right: 1.25em; /* 20 */
	}
	#stacks_in_542-imagelightbox-nav {
		bottom: 1.25em; /* 20 */
	}
	.stacks_in_542-imagelightbox-arrow {
		width: 2.5em; /* 40 */
		height: 3.75em; /* 60 */
		margin-top: -2.75em; /* 30 */
	}
	.stacks_in_542-imagelightbox-arrow-left {
		left: 1.25em; /* 20 */
	}
	.stacks_in_542-imagelightbox-arrow-right {
		right: 1.25em; /* 20 */
	}
}
@media only screen and (max-width:20em)

/* 320 */
{
	.stacks_in_542-imagelightbox-arrow-left {
		left: 0;
	}
	.stacks_in_542-imagelightbox-arrow-right {
		right: 0;
	}
}
#stacks_in_542 .mb-image-lightbox-item {
	display: none;
}
#stacks_in_542 .mb-image-lightbox-item:first-child {
	display: inline;
}



	#stacks_in_319 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_319 .timeline_content {
		margin-top: 0px;
	}






/* Color picker style settings */







	
	#stacks_in_320 p,
	#stacks_in_320 {
		
	}
	

	
	
	
	
	



#stacks_in_320 p,
#stacks_in_320 {
	
}





	#stacks_in_324 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_324 .timeline_content {
		margin-top: 0px;
	}



/* LinkPlus stack v1.1.4 */#stacks_in_537 a:link {			color: #EEEE00 !important;		}#stacks_in_537 a:visited {	color: #508B19 !important;	}#stacks_in_537 a:hover,#stacks_in_537 a:focus  {	color: #0000FF !important;	}#stacks_in_537 a:active  {	color: #00EEEE !important;		}#stacks_in_537 a:link span,#stacks_in_537 .com_marathia_stacks_downloadlinkicon_stack a:link:before, /* for DLI */#stacks_in_537 .com_marathia_stacks_downloadlinkicon_stack a:link:after /* for DLI */ {	color: #0F80FF !important;	text-decoration: none !important;	cursor: pointer;}#stacks_in_537 a:visited span,#stacks_in_537 .com_marathia_stacks_downloadlinkicon_stack a:visited:before, /* for DLI */#stacks_in_537 .com_marathia_stacks_downloadlinkicon_stack a:visited:after /* for DLI */ {	color: #551A8B !important;}#stacks_in_537 a:hover span,#stacks_in_537 a:focus span,#stacks_in_537 .com_marathia_stacks_downloadlinkicon_stack a:hover:before, /* for DLI */#stacks_in_537 .com_marathia_stacks_downloadlinkicon_stack a:focus:before, /* for DLI */#stacks_in_537 .com_marathia_stacks_downloadlinkicon_stack a:hover:after, /* for DLI */#stacks_in_537 .com_marathia_stacks_downloadlinkicon_stack a:focus:after /* for DLI */ {	color: #0000FF !important;}#stacks_in_537 a:active span,#stacks_in_537 .com_marathia_stacks_downloadlinkicon_stack a:active:before, /* for DLI */#stacks_in_537 .com_marathia_stacks_downloadlinkicon_stack a:active:after /* for DLI */ {	color: #EE0000 !important;}/* @group internal link icon *//* @end *//* @group external link icon */#stacks_in_537 a[href^='http'] span:after {	content: "\00a0\f08e";	font-family: FontAwesome;	font-weight: normal;	font-style: normal;	display: inline-block;	text-decoration: none;	font-size: 100%;		text-rendering: auto;	-webkit-font-smoothing: antialiased;	-moz-osx-font-smoothing: grayscale;}#stacks_in_537 a.NoLinkIcon span:after {	content:"" !important;	padding-left: 0;}/* @end *//* @group email link icon */#stacks_in_537 a[href^="mailto"] span:after {								content: "";}/* @end *//* End of LinkPlus stack */


/* Color picker style settings */







	
	#stacks_in_325 p,
	#stacks_in_325 {
		
	}
	

	
	
	
	
	



#stacks_in_325 p,
#stacks_in_325 {
	
}





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





/* Color picker style settings */







	
	#stacks_in_330 p,
	#stacks_in_330 {
		
	}
	

	
	
	
	
	



#stacks_in_330 p,
#stacks_in_330 {
	
}

.stacks_in_333 img,.stacks_in_333 svg{max-width:100%; height:auto;border-radius:0px;}.stacks_in_333 img:hover{ }



	#stacks_in_335 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_335 .timeline_content {
		margin-top: 0px;
	}






/* Color picker style settings */







	
	#stacks_in_336 p,
	#stacks_in_336 {
		
	}
	

	
	
	
	
	



#stacks_in_336 p,
#stacks_in_336 {
	
}





	#stacks_in_340 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_340 .timeline_content {
		margin-top: 0px;
	}






/* Color picker style settings */







	
	#stacks_in_341 p,
	#stacks_in_341 {
		
	}
	

	
	
	
	
	



#stacks_in_341 p,
#stacks_in_341 {
	
}

.stacks_in_344 img,.stacks_in_344 svg{max-width:100%; height:auto;border-radius:0px;}.stacks_in_344 img:hover{ }



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





/* Color picker style settings */







	
	#stacks_in_347 p,
	#stacks_in_347 {
		
	}
	

	
	
	
	
	



#stacks_in_347 p,
#stacks_in_347 {
	
}

.stacks_in_533 img,.stacks_in_533 svg{max-width:100%; height:auto;border-radius:0px;}.stacks_in_533 img:hover{ }



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





/* Color picker style settings */







	
	#stacks_in_352 p,
	#stacks_in_352 {
		
	}
	

	
	
	
	
	



#stacks_in_352 p,
#stacks_in_352 {
	
}

.stacks_in_355 img,.stacks_in_355 svg{max-width:100%; height:auto;border-radius:0px;}.stacks_in_355 img:hover{ }#p-stacks_in_356 p{    }#p-stacks_in_356 p.lead{}#p-stacks_in_356 a{color:var(--link-color);}#p-stacks_in_356 a:hover{color:var(--link-color-hover); }




	#stacks_in_359 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_359 .timeline_content {
		margin-top: 0px;
	}






/* Color picker style settings */







	
	#stacks_in_360 p,
	#stacks_in_360 {
		
	}
	

	
	
	
	
	



#stacks_in_360 p,
#stacks_in_360 {
	
}





	#stacks_in_364 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_364 .timeline_content {
		margin-top: 0px;
	}






/* Color picker style settings */







	
	#stacks_in_365 p,
	#stacks_in_365 {
		
	}
	

	
	
	
	
	



#stacks_in_365 p,
#stacks_in_365 {
	
}





	#stacks_in_369 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_369 .timeline_content {
		margin-top: 0px;
	}



/* LinkPlus stack v1.1.4 */#stacks_in_560 a:link {			color: #EEEE00 !important;		}#stacks_in_560 a:visited {	color: #508B19 !important;	}#stacks_in_560 a:hover,#stacks_in_560 a:focus  {	color: #0000FF !important;	}#stacks_in_560 a:active  {	color: #00EEEE !important;		}#stacks_in_560 a:link span,#stacks_in_560 .com_marathia_stacks_downloadlinkicon_stack a:link:before, /* for DLI */#stacks_in_560 .com_marathia_stacks_downloadlinkicon_stack a:link:after /* for DLI */ {	color: #0F80FF !important;	text-decoration: none !important;	cursor: pointer;}#stacks_in_560 a:visited span,#stacks_in_560 .com_marathia_stacks_downloadlinkicon_stack a:visited:before, /* for DLI */#stacks_in_560 .com_marathia_stacks_downloadlinkicon_stack a:visited:after /* for DLI */ {	color: #FB0207 !important;}#stacks_in_560 a:hover span,#stacks_in_560 a:focus span,#stacks_in_560 .com_marathia_stacks_downloadlinkicon_stack a:hover:before, /* for DLI */#stacks_in_560 .com_marathia_stacks_downloadlinkicon_stack a:focus:before, /* for DLI */#stacks_in_560 .com_marathia_stacks_downloadlinkicon_stack a:hover:after, /* for DLI */#stacks_in_560 .com_marathia_stacks_downloadlinkicon_stack a:focus:after /* for DLI */ {	color: #0000FF !important;}#stacks_in_560 a:active span,#stacks_in_560 .com_marathia_stacks_downloadlinkicon_stack a:active:before, /* for DLI */#stacks_in_560 .com_marathia_stacks_downloadlinkicon_stack a:active:after /* for DLI */ {	color: #EE0000 !important;}/* @group internal link icon *//* @end *//* @group external link icon */#stacks_in_560 a[href^='http'] span:after {	content: "\00a0\f08e";	font-family: FontAwesome;	font-weight: normal;	font-style: normal;	display: inline-block;	text-decoration: none;	font-size: 100%;		text-rendering: auto;	-webkit-font-smoothing: antialiased;	-moz-osx-font-smoothing: grayscale;}#stacks_in_560 a.NoLinkIcon span:after {	content:"" !important;	padding-left: 0;}/* @end *//* @group email link icon */#stacks_in_560 a[href^="mailto"] span:after {								content: "";}/* @end *//* End of LinkPlus stack */


/* Color picker style settings */







	
	#stacks_in_370 p,
	#stacks_in_370 {
		
	}
	

	
	
	
	
	



#stacks_in_370 p,
#stacks_in_370 {
	
}





	#stacks_in_374 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_374 .timeline_content {
		margin-top: 0px;
	}






/* Color picker style settings */







	
	#stacks_in_375 p,
	#stacks_in_375 {
		
	}
	

	
	
	
	
	



#stacks_in_375 p,
#stacks_in_375 {
	
}





	#stacks_in_379 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_379 .timeline_content {
		margin-top: 0px;
	}






/* Color picker style settings */







	
	#stacks_in_380 p,
	#stacks_in_380 {
		
	}
	

	
	
	
	
	



#stacks_in_380 p,
#stacks_in_380 {
	
}





	#stacks_in_384 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_384 .timeline_content {
		margin-top: 0px;
	}






/* Color picker style settings */







	
	#stacks_in_385 p,
	#stacks_in_385 {
		
	}
	

	
	
	
	
	



#stacks_in_385 p,
#stacks_in_385 {
	
}

.stacks_in_388 img,.stacks_in_388 svg{max-width:100%; height:auto;border-radius:0px;}.stacks_in_388 img:hover{ }#p-stacks_in_389 p{    }#p-stacks_in_389 p.lead{}#p-stacks_in_389 a{color:var(--link-color);}#p-stacks_in_389 a:hover{color:var(--link-color-hover); }




	#stacks_in_392 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_392 .timeline_content {
		margin-top: 0px;
	}






/* Color picker style settings */







	
	#stacks_in_393 p,
	#stacks_in_393 {
		
	}
	

	
	
	
	
	



#stacks_in_393 p,
#stacks_in_393 {
	
}





	#stacks_in_397 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_397 .timeline_content {
		margin-top: 0px;
	}






/* Color picker style settings */







	
	#stacks_in_398 p,
	#stacks_in_398 {
		
	}
	

	
	
	
	
	



#stacks_in_398 p,
#stacks_in_398 {
	
}

#stacks_in_546 img {
	width: 100%;  /* 140 */
	height: auto; /* 140 */
}

/* IMAGE LIGHTBOX SELECTOR */
#stacks_in_546-imagelightbox {
	cursor: pointer;
	position: fixed;
	z-index: 10000;
	-ms-touch-action: none;
	touch-action: none;
	-webkit-box-shadow: 0 0 3.125em rgba(0, 0, 0, .75); /* 50 */
	box-shadow: 0 0 3.125em rgba(0, 0, 0, .75); /* 50 */
}

/* ACTIVITY INDICATION */
#stacks_in_546-imagelightbox-loading, #stacks_in_546-imagelightbox-loading div {
	border-radius: 50%;
}
#stacks_in_546-imagelightbox-loading {
	width: 2.5em; /* 40 */
	height: 2.5em; /* 40 */
	background-color: #444;
	background-color: rgba(0, 0, 0, .5);
	position: fixed;
	z-index: 10003;
	top: 50%;
	left: 50%;
	padding: 0.625em; /* 10 */
	margin: -1.25em 0 0 -1.25em; /* 20 */
	-webkit-box-shadow: 0 0 2.5em rgba(0, 0, 0, .75); /* 40 */
	box-shadow: 0 0 2.5em rgba(0, 0, 0, .75); /* 40 */
}
#stacks_in_546-imagelightbox-loading div {
	width: 1.25em; /* 20 */
	height: 1.25em; /* 20 */
	background-color: #fff;
	-webkit-animation: imagelightbox-loading .5s ease infinite;
	animation: imagelightbox-loading .5s ease infinite;
}
@-webkit-keyframes imagelightbox-loading {
	from {
		opacity: .5;
		-webkit-transform: scale(.75);
	}
	50% {
		opacity: 1;
		-webkit-transform: scale(1);
	}
	to {
		opacity: .5;
		-webkit-transform: scale(.75);
	}
}
@keyframes imagelightbox-loading {
	from {
		opacity: .5;
		transform: scale(.75);
	}
	50% {
		opacity: 1;
		transform: scale(1);
	}
	to {
		opacity: .5;
		transform: scale(.75);
	}
}

/* OVERLAY */
#stacks_in_546-imagelightbox-overlay {
	background-color: rgba(255, 255, 255, 1.00);
	position: fixed;
	z-index: 9998;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/* "CLOSE" BUTTON */
#stacks_in_546-imagelightbox-close {
	width: 2.5em; /* 40 */
	height: 2.5em; /* 40 */
	text-align: left;
	background-color: #666;
	border-radius: 50%;
	position: fixed;
	z-index: 100002;
	top: 2.5em; /* 40 */
	right: 2.5em; /* 40 */
	-webkit-transition: color .3s ease;
	transition: color .3s ease;
	border-style: none;
}
#stacks_in_546-imagelightbox-close:hover, #stacks_in_546-imagelightbox-close:focus {
	background-color: #111;
}
#stacks_in_546-imagelightbox-close:before, #stacks_in_546-imagelightbox-close:after {
	width: 2px;
	background-color: #fff;
	content: '';
	position: absolute;
	top: 20%;
	bottom: 20%;
	left: 50%;
	margin-left: -1px;
}
#stacks_in_546-imagelightbox-close:before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
#stacks_in_546-imagelightbox-close:after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* CAPTION */
#stacks_in_546-imagelightbox-caption {
	text-align: center;
	color: #fff;
	background-color: #666;
	position: fixed;
	z-index: 10001;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0.625em; /* 10 */
}

/* NAVIGATION */
#stacks_in_546-imagelightbox-nav {
	background-color: #444;
	background-color: rgba(0, 0, 0, .5);
	border-radius: 20px;
	position: fixed;
	z-index: 10001;
	left: 50%;
	bottom: 3.75em; /* 60 */
	padding: 0.313em; /* 5 */
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
#stacks_in_546-imagelightbox-nav button {
	width: 1rem; /* 20 */
	height: 1rem; /* 20 */
	background-color: transparent;
	border: 1px solid #fff;
	border-radius: 50%;
	display: inline-block;
	margin: 0 0.313em; /* 5 */
}
#stacks_in_546-imagelightbox-nav button.active {
	background-color: #fff;
}

/* ARROWS */
.stacks_in_546-imagelightbox-arrow {
	width: 3.75em; /* 60 */
	height: 7.5em; /* 120 */
	background-color: #444;
	background-color: rgba(0, 0, 0, .5);
	vertical-align: middle;
	display: none;
	position: fixed;
	z-index: 10001;
	top: 50%;
	margin-top: -3.75em; /* 60 */
	border-style: none;
}
.stacks_in_546-imagelightbox-arrow:hover, .stacks_in_546-imagelightbox-arrow:focus {
	background-color: #666;
	background-color: rgba(0, 0, 0, .75);
}
.stacks_in_546-imagelightbox-arrow:active {
	background-color: #111;
}
.stacks_in_546-imagelightbox-arrow-left {
	left: 2.5em; /* 40 */
}
.stacks_in_546-imagelightbox-arrow-right {
	right: 2.5em; /* 40 */
}
.stacks_in_546-imagelightbox-arrow:before {
	width: 0;
	height: 0;
	border: 1em solid transparent;
	content: '';
	display: inline-block;
	margin-bottom: -0.125em; /* 2 */
}
.stacks_in_546-imagelightbox-arrow-left:before {
	border-left: none;
	border-right-color: #fff;
	margin-left: -0.313em; /* 5 */
}
.stacks_in_546-imagelightbox-arrow-right:before {
	border-right: none;
	border-left-color: #fff;
	margin-right: -0.313em; /* 5 */
}
#stacks_in_546-imagelightbox-loading, #stacks_in_546-imagelightbox-overlay, #stacks_in_546-imagelightbox-close, #stacks_in_546-imagelightbox-caption, #stacks_in_546-imagelightbox-nav, #stacks_in_546-stacks_in_546 .imagelightbox-arrow {
	-webkit-animation: fade-in .25s linear;
	animation: fade-in .25s linear;
}
@-webkit-keyframes fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@media only screen and (max-width:41.250em)

/* 660 */
{
	#stacks_in_546-container {
		width: 100%;
	}
	#stacks_in_546-imagelightbox-close {
		top: 1.25em; /* 20 */
		right: 1.25em; /* 20 */
	}
	#stacks_in_546-imagelightbox-nav {
		bottom: 1.25em; /* 20 */
	}
	.stacks_in_546-imagelightbox-arrow {
		width: 2.5em; /* 40 */
		height: 3.75em; /* 60 */
		margin-top: -2.75em; /* 30 */
	}
	.stacks_in_546-imagelightbox-arrow-left {
		left: 1.25em; /* 20 */
	}
	.stacks_in_546-imagelightbox-arrow-right {
		right: 1.25em; /* 20 */
	}
}
@media only screen and (max-width:20em)

/* 320 */
{
	.stacks_in_546-imagelightbox-arrow-left {
		left: 0;
	}
	.stacks_in_546-imagelightbox-arrow-right {
		right: 0;
	}
}
#stacks_in_546 .mb-image-lightbox-item {
	display: none;
}
#stacks_in_546 .mb-image-lightbox-item:first-child {
	display: inline;
}



	#stacks_in_550 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_550 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_554 img {
	width: 100%;  /* 140 */
	height: auto; /* 140 */
}

/* IMAGE LIGHTBOX SELECTOR */
#stacks_in_554-imagelightbox {
	cursor: pointer;
	position: fixed;
	z-index: 10000;
	-ms-touch-action: none;
	touch-action: none;
	-webkit-box-shadow: 0 0 3.125em rgba(0, 0, 0, .75); /* 50 */
	box-shadow: 0 0 3.125em rgba(0, 0, 0, .75); /* 50 */
}

/* ACTIVITY INDICATION */
#stacks_in_554-imagelightbox-loading, #stacks_in_554-imagelightbox-loading div {
	border-radius: 50%;
}
#stacks_in_554-imagelightbox-loading {
	width: 2.5em; /* 40 */
	height: 2.5em; /* 40 */
	background-color: #444;
	background-color: rgba(0, 0, 0, .5);
	position: fixed;
	z-index: 10003;
	top: 50%;
	left: 50%;
	padding: 0.625em; /* 10 */
	margin: -1.25em 0 0 -1.25em; /* 20 */
	-webkit-box-shadow: 0 0 2.5em rgba(0, 0, 0, .75); /* 40 */
	box-shadow: 0 0 2.5em rgba(0, 0, 0, .75); /* 40 */
}
#stacks_in_554-imagelightbox-loading div {
	width: 1.25em; /* 20 */
	height: 1.25em; /* 20 */
	background-color: #fff;
	-webkit-animation: imagelightbox-loading .5s ease infinite;
	animation: imagelightbox-loading .5s ease infinite;
}
@-webkit-keyframes imagelightbox-loading {
	from {
		opacity: .5;
		-webkit-transform: scale(.75);
	}
	50% {
		opacity: 1;
		-webkit-transform: scale(1);
	}
	to {
		opacity: .5;
		-webkit-transform: scale(.75);
	}
}
@keyframes imagelightbox-loading {
	from {
		opacity: .5;
		transform: scale(.75);
	}
	50% {
		opacity: 1;
		transform: scale(1);
	}
	to {
		opacity: .5;
		transform: scale(.75);
	}
}

/* OVERLAY */
#stacks_in_554-imagelightbox-overlay {
	background-color: rgba(255, 255, 255, 1.00);
	position: fixed;
	z-index: 9998;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/* "CLOSE" BUTTON */
#stacks_in_554-imagelightbox-close {
	width: 2.5em; /* 40 */
	height: 2.5em; /* 40 */
	text-align: left;
	background-color: #666;
	border-radius: 50%;
	position: fixed;
	z-index: 100002;
	top: 2.5em; /* 40 */
	right: 2.5em; /* 40 */
	-webkit-transition: color .3s ease;
	transition: color .3s ease;
	border-style: none;
}
#stacks_in_554-imagelightbox-close:hover, #stacks_in_554-imagelightbox-close:focus {
	background-color: #111;
}
#stacks_in_554-imagelightbox-close:before, #stacks_in_554-imagelightbox-close:after {
	width: 2px;
	background-color: #fff;
	content: '';
	position: absolute;
	top: 20%;
	bottom: 20%;
	left: 50%;
	margin-left: -1px;
}
#stacks_in_554-imagelightbox-close:before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
#stacks_in_554-imagelightbox-close:after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* CAPTION */
#stacks_in_554-imagelightbox-caption {
	text-align: center;
	color: #fff;
	background-color: #666;
	position: fixed;
	z-index: 10001;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0.625em; /* 10 */
}

/* NAVIGATION */
#stacks_in_554-imagelightbox-nav {
	background-color: #444;
	background-color: rgba(0, 0, 0, .5);
	border-radius: 20px;
	position: fixed;
	z-index: 10001;
	left: 50%;
	bottom: 3.75em; /* 60 */
	padding: 0.313em; /* 5 */
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
#stacks_in_554-imagelightbox-nav button {
	width: 1rem; /* 20 */
	height: 1rem; /* 20 */
	background-color: transparent;
	border: 1px solid #fff;
	border-radius: 50%;
	display: inline-block;
	margin: 0 0.313em; /* 5 */
}
#stacks_in_554-imagelightbox-nav button.active {
	background-color: #fff;
}

/* ARROWS */
.stacks_in_554-imagelightbox-arrow {
	width: 3.75em; /* 60 */
	height: 7.5em; /* 120 */
	background-color: #444;
	background-color: rgba(0, 0, 0, .5);
	vertical-align: middle;
	display: none;
	position: fixed;
	z-index: 10001;
	top: 50%;
	margin-top: -3.75em; /* 60 */
	border-style: none;
}
.stacks_in_554-imagelightbox-arrow:hover, .stacks_in_554-imagelightbox-arrow:focus {
	background-color: #666;
	background-color: rgba(0, 0, 0, .75);
}
.stacks_in_554-imagelightbox-arrow:active {
	background-color: #111;
}
.stacks_in_554-imagelightbox-arrow-left {
	left: 2.5em; /* 40 */
}
.stacks_in_554-imagelightbox-arrow-right {
	right: 2.5em; /* 40 */
}
.stacks_in_554-imagelightbox-arrow:before {
	width: 0;
	height: 0;
	border: 1em solid transparent;
	content: '';
	display: inline-block;
	margin-bottom: -0.125em; /* 2 */
}
.stacks_in_554-imagelightbox-arrow-left:before {
	border-left: none;
	border-right-color: #fff;
	margin-left: -0.313em; /* 5 */
}
.stacks_in_554-imagelightbox-arrow-right:before {
	border-right: none;
	border-left-color: #fff;
	margin-right: -0.313em; /* 5 */
}
#stacks_in_554-imagelightbox-loading, #stacks_in_554-imagelightbox-overlay, #stacks_in_554-imagelightbox-close, #stacks_in_554-imagelightbox-caption, #stacks_in_554-imagelightbox-nav, #stacks_in_554-stacks_in_554 .imagelightbox-arrow {
	-webkit-animation: fade-in .25s linear;
	animation: fade-in .25s linear;
}
@-webkit-keyframes fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@media only screen and (max-width:41.250em)

/* 660 */
{
	#stacks_in_554-container {
		width: 100%;
	}
	#stacks_in_554-imagelightbox-close {
		top: 1.25em; /* 20 */
		right: 1.25em; /* 20 */
	}
	#stacks_in_554-imagelightbox-nav {
		bottom: 1.25em; /* 20 */
	}
	.stacks_in_554-imagelightbox-arrow {
		width: 2.5em; /* 40 */
		height: 3.75em; /* 60 */
		margin-top: -2.75em; /* 30 */
	}
	.stacks_in_554-imagelightbox-arrow-left {
		left: 1.25em; /* 20 */
	}
	.stacks_in_554-imagelightbox-arrow-right {
		right: 1.25em; /* 20 */
	}
}
@media only screen and (max-width:20em)

/* 320 */
{
	.stacks_in_554-imagelightbox-arrow-left {
		left: 0;
	}
	.stacks_in_554-imagelightbox-arrow-right {
		right: 0;
	}
}
#stacks_in_554 .mb-image-lightbox-item {
	display: none;
}
#stacks_in_554 .mb-image-lightbox-item:first-child {
	display: inline;
}


/* Color picker style settings */







	
	#stacks_in_558 p,
	#stacks_in_558 {
		
	}
	

	
	
	
	
	



#stacks_in_558 p,
#stacks_in_558 {
	
}





	#stacks_in_402 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_402 .timeline_content {
		margin-top: 0px;
	}






/* Color picker style settings */







	
	#stacks_in_403 p,
	#stacks_in_403 {
		
	}
	

	
	
	
	
	



#stacks_in_403 p,
#stacks_in_403 {
	
}





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





/* Color picker style settings */







	
	#stacks_in_408 p,
	#stacks_in_408 {
		
	}
	

	
	
	
	
	



#stacks_in_408 p,
#stacks_in_408 {
	
}




/* Color picker style settings */







	
	#stacks_in_411 p,
	#stacks_in_411 {
		
	}
	

	
	
	
	
	



#stacks_in_411 p,
#stacks_in_411 {
	margin-bottom: 0;
}




/* Color picker style settings */







	
	#stacks_in_413 p,
	#stacks_in_413 {
		
	}
	

	
	
	
	
	



#stacks_in_413 p,
#stacks_in_413 {
	
}





	#stacks_in_416 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_416 .timeline_content {
		margin-top: 0px;
	}






/* Color picker style settings */







	
	#stacks_in_417 p,
	#stacks_in_417 {
		
	}
	

	
	
	
	
	



#stacks_in_417 p,
#stacks_in_417 {
	
}





	#stacks_in_421 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_421 .timeline_content {
		margin-top: 0px;
	}






/* Color picker style settings */







	
	#stacks_in_422 p,
	#stacks_in_422 {
		
	}
	

	
	
	
	
	



#stacks_in_422 p,
#stacks_in_422 {
	
}





	#stacks_in_426 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_426 .timeline_content {
		margin-top: 0px;
	}






/* Color picker style settings */







	
	#stacks_in_427 p,
	#stacks_in_427 {
		
	}
	

	
	
	
	
	



#stacks_in_427 p,
#stacks_in_427 {
	
}

.stacks_in_430 img,.stacks_in_430 svg{max-width:100%; height:auto;border-radius:0px;}.stacks_in_430 img:hover{ }



	#stacks_in_432 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_432 .timeline_content {
		margin-top: 0px;
	}






/* Color picker style settings */







	
	#stacks_in_433 p,
	#stacks_in_433 {
		
	}
	

	
	
	
	
	



#stacks_in_433 p,
#stacks_in_433 {
	
}

#stacks_in_562 img {
	width: 100%;  /* 140 */
	height: auto; /* 140 */
}

/* IMAGE LIGHTBOX SELECTOR */
#stacks_in_562-imagelightbox {
	cursor: pointer;
	position: fixed;
	z-index: 10000;
	-ms-touch-action: none;
	touch-action: none;
	-webkit-box-shadow: 0 0 3.125em rgba(0, 0, 0, .75); /* 50 */
	box-shadow: 0 0 3.125em rgba(0, 0, 0, .75); /* 50 */
}

/* ACTIVITY INDICATION */
#stacks_in_562-imagelightbox-loading, #stacks_in_562-imagelightbox-loading div {
	border-radius: 50%;
}
#stacks_in_562-imagelightbox-loading {
	width: 2.5em; /* 40 */
	height: 2.5em; /* 40 */
	background-color: #444;
	background-color: rgba(0, 0, 0, .5);
	position: fixed;
	z-index: 10003;
	top: 50%;
	left: 50%;
	padding: 0.625em; /* 10 */
	margin: -1.25em 0 0 -1.25em; /* 20 */
	-webkit-box-shadow: 0 0 2.5em rgba(0, 0, 0, .75); /* 40 */
	box-shadow: 0 0 2.5em rgba(0, 0, 0, .75); /* 40 */
}
#stacks_in_562-imagelightbox-loading div {
	width: 1.25em; /* 20 */
	height: 1.25em; /* 20 */
	background-color: #fff;
	-webkit-animation: imagelightbox-loading .5s ease infinite;
	animation: imagelightbox-loading .5s ease infinite;
}
@-webkit-keyframes imagelightbox-loading {
	from {
		opacity: .5;
		-webkit-transform: scale(.75);
	}
	50% {
		opacity: 1;
		-webkit-transform: scale(1);
	}
	to {
		opacity: .5;
		-webkit-transform: scale(.75);
	}
}
@keyframes imagelightbox-loading {
	from {
		opacity: .5;
		transform: scale(.75);
	}
	50% {
		opacity: 1;
		transform: scale(1);
	}
	to {
		opacity: .5;
		transform: scale(.75);
	}
}

/* OVERLAY */
#stacks_in_562-imagelightbox-overlay {
	background-color: rgba(255, 255, 255, 1.00);
	position: fixed;
	z-index: 9998;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/* "CLOSE" BUTTON */
#stacks_in_562-imagelightbox-close {
	width: 2.5em; /* 40 */
	height: 2.5em; /* 40 */
	text-align: left;
	background-color: #666;
	border-radius: 50%;
	position: fixed;
	z-index: 100002;
	top: 2.5em; /* 40 */
	right: 2.5em; /* 40 */
	-webkit-transition: color .3s ease;
	transition: color .3s ease;
	border-style: none;
}
#stacks_in_562-imagelightbox-close:hover, #stacks_in_562-imagelightbox-close:focus {
	background-color: #111;
}
#stacks_in_562-imagelightbox-close:before, #stacks_in_562-imagelightbox-close:after {
	width: 2px;
	background-color: #fff;
	content: '';
	position: absolute;
	top: 20%;
	bottom: 20%;
	left: 50%;
	margin-left: -1px;
}
#stacks_in_562-imagelightbox-close:before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
#stacks_in_562-imagelightbox-close:after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* CAPTION */
#stacks_in_562-imagelightbox-caption {
	text-align: center;
	color: #fff;
	background-color: #666;
	position: fixed;
	z-index: 10001;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0.625em; /* 10 */
}

/* NAVIGATION */
#stacks_in_562-imagelightbox-nav {
	background-color: #444;
	background-color: rgba(0, 0, 0, .5);
	border-radius: 20px;
	position: fixed;
	z-index: 10001;
	left: 50%;
	bottom: 3.75em; /* 60 */
	padding: 0.313em; /* 5 */
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
#stacks_in_562-imagelightbox-nav button {
	width: 1rem; /* 20 */
	height: 1rem; /* 20 */
	background-color: transparent;
	border: 1px solid #fff;
	border-radius: 50%;
	display: inline-block;
	margin: 0 0.313em; /* 5 */
}
#stacks_in_562-imagelightbox-nav button.active {
	background-color: #fff;
}

/* ARROWS */
.stacks_in_562-imagelightbox-arrow {
	width: 3.75em; /* 60 */
	height: 7.5em; /* 120 */
	background-color: #444;
	background-color: rgba(0, 0, 0, .5);
	vertical-align: middle;
	display: none;
	position: fixed;
	z-index: 10001;
	top: 50%;
	margin-top: -3.75em; /* 60 */
	border-style: none;
}
.stacks_in_562-imagelightbox-arrow:hover, .stacks_in_562-imagelightbox-arrow:focus {
	background-color: #666;
	background-color: rgba(0, 0, 0, .75);
}
.stacks_in_562-imagelightbox-arrow:active {
	background-color: #111;
}
.stacks_in_562-imagelightbox-arrow-left {
	left: 2.5em; /* 40 */
}
.stacks_in_562-imagelightbox-arrow-right {
	right: 2.5em; /* 40 */
}
.stacks_in_562-imagelightbox-arrow:before {
	width: 0;
	height: 0;
	border: 1em solid transparent;
	content: '';
	display: inline-block;
	margin-bottom: -0.125em; /* 2 */
}
.stacks_in_562-imagelightbox-arrow-left:before {
	border-left: none;
	border-right-color: #fff;
	margin-left: -0.313em; /* 5 */
}
.stacks_in_562-imagelightbox-arrow-right:before {
	border-right: none;
	border-left-color: #fff;
	margin-right: -0.313em; /* 5 */
}
#stacks_in_562-imagelightbox-loading, #stacks_in_562-imagelightbox-overlay, #stacks_in_562-imagelightbox-close, #stacks_in_562-imagelightbox-caption, #stacks_in_562-imagelightbox-nav, #stacks_in_562-stacks_in_562 .imagelightbox-arrow {
	-webkit-animation: fade-in .25s linear;
	animation: fade-in .25s linear;
}
@-webkit-keyframes fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@media only screen and (max-width:41.250em)

/* 660 */
{
	#stacks_in_562-container {
		width: 100%;
	}
	#stacks_in_562-imagelightbox-close {
		top: 1.25em; /* 20 */
		right: 1.25em; /* 20 */
	}
	#stacks_in_562-imagelightbox-nav {
		bottom: 1.25em; /* 20 */
	}
	.stacks_in_562-imagelightbox-arrow {
		width: 2.5em; /* 40 */
		height: 3.75em; /* 60 */
		margin-top: -2.75em; /* 30 */
	}
	.stacks_in_562-imagelightbox-arrow-left {
		left: 1.25em; /* 20 */
	}
	.stacks_in_562-imagelightbox-arrow-right {
		right: 1.25em; /* 20 */
	}
}
@media only screen and (max-width:20em)

/* 320 */
{
	.stacks_in_562-imagelightbox-arrow-left {
		left: 0;
	}
	.stacks_in_562-imagelightbox-arrow-right {
		right: 0;
	}
}
#stacks_in_562 .mb-image-lightbox-item {
	display: none;
}
#stacks_in_562 .mb-image-lightbox-item:first-child {
	display: inline;
}



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





/* Color picker style settings */







	
	#stacks_in_438 p,
	#stacks_in_438 {
		
	}
	

	
	
	
	
	



#stacks_in_438 p,
#stacks_in_438 {
	
}

.stacks_in_441 img,.stacks_in_441 svg{max-width:100%; height:auto;border-radius:0px;}.stacks_in_441 img:hover{ }#p-stacks_in_442 p{    }#p-stacks_in_442 p.lead{}#p-stacks_in_442 a{color:var(--link-color);}#p-stacks_in_442 a:hover{color:var(--link-color-hover); }




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





/* Color picker style settings */







	
	#stacks_in_446 p,
	#stacks_in_446 {
		
	}
	

	
	
	
	
	



#stacks_in_446 p,
#stacks_in_446 {
	
}

.stacks_in_500 img,.stacks_in_500 svg{max-width:100%; height:auto;border-radius:0px;}.stacks_in_500 img:hover{ }#p-stacks_in_501 p{    }#p-stacks_in_501 p.lead{}#p-stacks_in_501 a{color:var(--link-color);}#p-stacks_in_501 a:hover{color:var(--link-color-hover); }




	#stacks_in_450 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_450 .timeline_content {
		margin-top: 0px;
	}






/* Color picker style settings */







	
	#stacks_in_451 p,
	#stacks_in_451 {
		
	}
	

	
	
	
	
	



#stacks_in_451 p,
#stacks_in_451 {
	
}





	#stacks_in_455 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_455 .timeline_content {
		margin-top: 0px;
	}



/* LinkPlus stack v1.1.4 */#stacks_in_566 a:link {			color: #EEEE00 !important;		}#stacks_in_566 a:visited {	color: #508B19 !important;	}#stacks_in_566 a:hover,#stacks_in_566 a:focus  {	color: #0000FF !important;	}#stacks_in_566 a:active  {	color: #00EEEE !important;		}#stacks_in_566 a:link span,#stacks_in_566 .com_marathia_stacks_downloadlinkicon_stack a:link:before, /* for DLI */#stacks_in_566 .com_marathia_stacks_downloadlinkicon_stack a:link:after /* for DLI */ {	color: #0F80FF !important;	text-decoration: none !important;	cursor: pointer;}#stacks_in_566 a:visited span,#stacks_in_566 .com_marathia_stacks_downloadlinkicon_stack a:visited:before, /* for DLI */#stacks_in_566 .com_marathia_stacks_downloadlinkicon_stack a:visited:after /* for DLI */ {	color: #FB0207 !important;}#stacks_in_566 a:hover span,#stacks_in_566 a:focus span,#stacks_in_566 .com_marathia_stacks_downloadlinkicon_stack a:hover:before, /* for DLI */#stacks_in_566 .com_marathia_stacks_downloadlinkicon_stack a:focus:before, /* for DLI */#stacks_in_566 .com_marathia_stacks_downloadlinkicon_stack a:hover:after, /* for DLI */#stacks_in_566 .com_marathia_stacks_downloadlinkicon_stack a:focus:after /* for DLI */ {	color: #0000FF !important;}#stacks_in_566 a:active span,#stacks_in_566 .com_marathia_stacks_downloadlinkicon_stack a:active:before, /* for DLI */#stacks_in_566 .com_marathia_stacks_downloadlinkicon_stack a:active:after /* for DLI */ {	color: #EE0000 !important;}/* @group internal link icon *//* @end *//* @group external link icon */#stacks_in_566 a[href^='http'] span:after {	content: "\00a0\f08e";	font-family: FontAwesome;	font-weight: normal;	font-style: normal;	display: inline-block;	text-decoration: none;	font-size: 100%;		text-rendering: auto;	-webkit-font-smoothing: antialiased;	-moz-osx-font-smoothing: grayscale;}#stacks_in_566 a.NoLinkIcon span:after {	content:"" !important;	padding-left: 0;}/* @end *//* @group email link icon */#stacks_in_566 a[href^="mailto"] span:after {								content: "";}/* @end *//* End of LinkPlus stack */


/* Color picker style settings */







	
	#stacks_in_456 p,
	#stacks_in_456 {
		
	}
	

	
	
	
	
	



#stacks_in_456 p,
#stacks_in_456 {
	
}

.stacks_in_570 img,.stacks_in_570 svg{max-width:100%; height:auto;border-radius:0px;}.stacks_in_570 img:hover{ }#p-stacks_in_571 p{    }#p-stacks_in_571 p.lead{}#p-stacks_in_571 a{color:var(--link-color);}#p-stacks_in_571 a:hover{color:var(--link-color-hover); }
 .s-container-stacks_in_496{ }#s-wrapper-stacks_in_496{margin:0; }#s-content-stacks_in_496{justify-content:center; padding:0; }.s-bg-stacks_in_496{z-index:0}#s-outer-stacks_in_496{border-radius:0px 0px 0px 0px}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_491 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_491 {
		display: none !important;
	}
}
#divstacks_in_495 hr{border-top-style:solid;border-top-width:1px;border-top-color:var(--border-color); width:100%;max-width:100%;margin-top:1.50rem;margin-bottom:1.50rem}
@font-face{font-family:"Ionicons";src:url("ionicons/ionicons.eot?v=4.5.9-1");src:url("ionicons/ionicons.eot?v=4.5.9-1#iefix") format("embedded-opentype"),url("ionicons/ionicons.woff2?v=4.5.9-1") format("woff2"),url("ionicons/ionicons.woff?v=4.5.9-1") format("woff"),url("ionicons/ionicons.ttf?v=4.5.9-1") format("truetype"),url("ionicons/ionicons.svg?v=4.5.9-1#Ionicons") format("svg");font-weight:normal;font-style:normal}
#stacks_in_528_press.press-lite {
  box-sizing: border-box;
  position: relative;
  /*  */
  cursor: pointer;
  /*  */
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  margin: 0;
  font-size: 16px;
  line-height: 16px;
  /*  */
  /*  */
  background-color: rgba(255, 255, 255, 1.00);
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  font-family: ET Bembo;
  /*  */
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 1.00);
}
#stacks_in_528_press.press-lite:focus {outline:0;}
#stacks_in_528_press_wrap {
  /*  */
  /*  */
  display: flex;
  justify-content: center;
  /*  */
  /*  */
  margin: 12px 0px 12px 0px;
}
#stacks_in_528_press.press-lite {
  white-space: nowrap;
}
#stacks_in_528_press.press-lite .press-lite-text span,
#stacks_in_528_press.press-lite .press-lite-text:after {
  overflow: hidden;
  color: rgba(0, 0, 0, 1.00);
  /*  */
  font-weight: bold;
  /*  */
}
#stacks_in_528_press.press-lite,
#stacks_in_528_press.press-lite .press-lite-text,
#stacks_in_528_press.press-lite .press-lite-text:after,
#stacks_in_528_press.press-lite .press-lite-text > span,
#stacks_in_528_press.press-lite .press-lite-icon i,
#stacks_in_528_press.press-lite .press-lite-icon img,
#stacks_in_528_press.press-lite .press-lite-icon svg,
#stacks_in_528_press.press-lite .press-lite-icon svg path,
#stacks_in_528_press.press-lite .press-lite-icon svg polyline,
#stacks_in_528_press.press-lite .press-lite-icon:after {
    transition: all 200ms ease;
}
#stacks_in_528_press.press-lite .press-lite-text {
  z-index: 1;
  position: relative;
}
#stacks_in_528_press.press-lite .press-lite-icon i,
#stacks_in_528_press.press-lite .press-lite-icon img {
  position: relative;
  color: rgba(255, 255, 255, 1.00);
  display: inline-block;
  /*  */
  margin-right: 8px;
  /*  */
  font-size: 16px;
  line-height: 16px;
  z-index: 1;
}
#stacks_in_528_press.press-lite .press-lite-icon img {
  height: 16px;
  width: auto;
  vertical-align: top;
}
#stacks_in_528_press.press-lite .press-lite-icon svg {
  display: inline-block;
  /*  */
  margin-right: 8px;
  /*  */
  height: 20.000000px;
  z-index: 1;
}
/*  */
#stacks_in_528_press.press-lite .press-lite-icon.press-lite-icon-off svg {
  transform: translateX(5%);
}
#stacks_in_528_press.press-lite .press-lite-icon svg path {
  fill: rgba(255, 255, 255, 1.00);
}
#stacks_in_528_press.press-lite .press-lite-icon svg polyline {
  fill:none;
  stroke: rgba(255, 255, 255, 1.00);
  stroke-linecap:round;
  stroke-linejoin:round;
  stroke-width:48px;
}
#stacks_in_528_press.press-lite:active,
#stacks_in_528_press.press-lite:focus {
  transform: translate(0,0);
}
/*  */
/*  */
#stacks_in_528_press.press-lite:hover {
  background: rgba(15, 128, 255, 1.00);
}
/*  */
/*  */
#stacks_in_528_press.press-lite:hover {
  border-color: rgba(0, 0, 0, 1.00);
}
#stacks_in_528_press.press-lite:hover .press-lite-text span,
#stacks_in_528_press.press-lite:hover .press-lite-text:after  {
  color: rgba(255, 255, 255, 1.00);
}
#stacks_in_528_press.press-lite:hover .press-lite-icon i {
  color: rgba(255, 255, 255, 1.00);
}
#stacks_in_528_press.press-lite:hover .press-lite-icon svg path {
  fill: rgba(255, 255, 255, 1.00);
}
#stacks_in_528_press.press-lite:hover .press-lite-icon svg polyline {
  fill:none;
  stroke: rgba(255, 255, 255, 1.00);
}
/*  */
/*  */
#stacks_in_528_press.press-lite {
    padding: 0;
}
#stacks_in_528_press.press-lite .press-lite-text {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 12px 24px 12px 13px;
}
#stacks_in_528_press.press-lite .press-lite-icon i,
#stacks_in_528_press.press-lite .press-lite-icon img,
#stacks_in_528_press.press-lite .press-lite-icon svg {
    margin: 0;
}
#stacks_in_528_press.press-lite .press-lite-icon {
    padding: 0px;
    display: grid;
    float:left;
    align-content: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-align: center;
}
#stacks_in_528_press.press-lite .press-lite-icon:after {
  content: "";
  color: transparent;
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  background: rgba(15, 128, 255, 1.00);
  border-radius: 4px 0px 0px 4px;
  width: 40px;
  height: 42px;
}
/*  */
/*  */
#stacks_in_528_press.press-lite .press-lite-icon:after {
  border-radius: 4px;
}
#stacks_in_528_press.press-lite:hover .press-lite-icon i,
#stacks_in_528_press.press-lite:hover .press-lite-icon img,
#stacks_in_528_press.press-lite:hover .press-lite-icon svg {
  transform: translateX(12px);
}
#stacks_in_528_press.press-lite:hover .press-lite-icon:after {
  width: 100%;
}
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
#stacks_in_528_press.press-lite {
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
}
#stacks_in_528_press.press-lite:active {
  box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.15);
}
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
#stacks_in_528_press.press-lite .press-lite-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  display: grid;
}
#stacks_in_528_press.press-lite .press-lite-line-t,
#stacks_in_528_press.press-lite .press-lite-line-b {
  position: absolute;
  height: 1px;
  width: 0%;
  background: rgba(0, 0, 0, 1.00);
  transition: all 200ms ease;
}
#stacks_in_528_press.press-lite .press-lite-line-l,
#stacks_in_528_press.press-lite .press-lite-line-r {
  position: absolute;
  width: 1px;
  height: 0%;
  background: rgba(0, 0, 0, 1.00);
  transition: all 200ms ease;
}
#stacks_in_528_press.press-lite .press-lite-line-t {
  top: 0;
}
#stacks_in_528_press.press-lite .press-lite-line-b {
  bottom: 0;
  width: 100%;
}
#stacks_in_528_press.press-lite .press-lite-line-l {
  left: 0;
}
#stacks_in_528_press.press-lite .press-lite-line-r {
  right: 0;
}
/*  */
/*  */
/*  */
/*  */
 .s-container-stacks_in_462_2{ }#s-wrapper-stacks_in_462_2{margin:0; }#s-content-stacks_in_462_2{justify-content:center; padding:0; }.s-bg-stacks_in_462_2{z-index:0}#s-outer-stacks_in_462_2{border-radius:0px 0px 0px 0px}
#stacks_in_462_4{z-index:0;bottom:55px}@media (min-width:600px){#stacks_in_462_4{bottom:75px}}   #divstacks_in_462_11 hr{border-top-style:solid;border-top-width:1px;border-top-color:var(--border-color); width:100%;max-width:100%;margin-top:1.50rem;margin-bottom:1.50rem}
#p-stacks_in_462_9 p{   color:rgba(153, 153, 153, 1.00); }#p-stacks_in_462_9 p.lead{}#p-stacks_in_462_9 a{color:var(--link-color);}#p-stacks_in_462_9 a:hover{color:var(--link-color-hover); }
#p-stacks_in_462_13 p{   color:rgba(153, 153, 153, 1.00); }#p-stacks_in_462_13 p.lead{}#p-stacks_in_462_13 a{color:var(--link-color);}#p-stacks_in_462_13 a:hover{color:var(--link-color-hover); }

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_462_12 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_462_12 {
		display: none !important;
	}
}
