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

 .bp-grow{display:inline-block;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:transform;transition-property:transform;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-grow:hover,.bp-grow:focus,.bp-grow:active{-webkit-transform:scale(1.1);transform:scale(1.1)}.bp-shrink{display:inline-block;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:transform;transition-property:transform;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-shrink:hover,.bp-shrink:focus,.bp-shrink:active{-webkit-transform:scale(0.9);transform:scale(0.9)}@-webkit-keyframes pulse{25%{-webkit-transform:scale(1.1);transform:scale(1.1)}75%{-webkit-transform:scale(0.9);transform:scale(0.9)}}@keyframes pulse{25%{-webkit-transform:scale(1.1);transform:scale(1.1)}75%{-webkit-transform:scale(0.9);transform:scale(0.9)}}.bp-pulse{display:inline-block;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-pulse:hover,.bp-pulse:focus,.bp-pulse:active{-webkit-animation-name:pulse;animation-name:pulse;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}@-webkit-keyframes pulse-grow{to{-webkit-transform:scale(1.1);transform:scale(1.1)}}@keyframes pulse-grow{to{-webkit-transform:scale(1.1);transform:scale(1.1)}}.bp-pulse-grow{display:inline-block;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-pulse-grow:hover,.bp-pulse-grow:focus,.bp-pulse-grow:active{-webkit-animation-name:pulse-grow;animation-name:pulse-grow;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-direction:alternate;animation-direction:alternate}@-webkit-keyframes pulse-shrink{to{-webkit-transform:scale(0.9);transform:scale(0.9)}}@keyframes pulse-shrink{to{-webkit-transform:scale(0.9);transform:scale(0.9)}}.bp-pulse-shrink{display:inline-block;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-pulse-shrink:hover,.bp-pulse-shrink:focus,.bp-pulse-shrink:active{-webkit-animation-name:pulse-shrink;animation-name:pulse-shrink;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-direction:alternate;animation-direction:alternate}@-webkit-keyframes push{50%{-webkit-transform:scale(0.8);transform:scale(0.8)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes push{50%{-webkit-transform:scale(0.8);transform:scale(0.8)}100%{-webkit-transform:scale(1);transform:scale(1)}}.bp-push{display:inline-block;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-push:hover,.bp-push:focus,.bp-push:active{-webkit-animation-name:push;animation-name:push;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:1;animation-iteration-count:1}@-webkit-keyframes pop{50%{-webkit-transform:scale(1.2);transform:scale(1.2)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes pop{50%{-webkit-transform:scale(1.2);transform:scale(1.2)}100%{-webkit-transform:scale(1);transform:scale(1)}}.bp-pop{display:inline-block;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-pop:hover,.bp-pop:focus,.bp-pop:active{-webkit-animation-name:pop;animation-name:pop;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:1;animation-iteration-count:1}.bp-rotate{display:inline-block;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:transform;transition-property:transform;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-rotate:hover,.bp-rotate:focus,.bp-rotate:active{-webkit-transform:rotate(4deg);transform:rotate(4deg)}.bp-grow-rotate{display:inline-block;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:transform;transition-property:transform;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-grow-rotate:hover,.bp-grow-rotate:focus,.bp-grow-rotate:active{-webkit-transform:scale(1.1) rotate(4deg);transform:scale(1.1) rotate(4deg)}.bp-float{display:inline-block;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:transform;transition-property:transform;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}
.bp-float:hover,.bp-float:focus,.bp-float:active{-webkit-transform:translateY(-5px);transform:translateY(-5px)}.bp-sink{display:inline-block;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:transform;transition-property:transform;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-sink:hover,.bp-sink:focus,.bp-sink:active{-webkit-transform:translateY(5px);transform:translateY(5px)}@-webkit-keyframes hover{50%{-webkit-transform:translateY(-3px);transform:translateY(-3px)}100%{-webkit-transform:translateY(-6px);transform:translateY(-6px)}}@keyframes hover{50%{-webkit-transform:translateY(-3px);transform:translateY(-3px)}100%{-webkit-transform:translateY(-6px);transform:translateY(-6px)}}.bp-hover{display:inline-block;-webkit-transition-duration:.5s;transition-duration:.5s;-webkit-transition-property:transform;transition-property:transform;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-hover:hover,.bp-hover:focus,.bp-hover:active{-webkit-transform:translateY(-6px);transform:translateY(-6px);-webkit-animation-name:hover;animation-name:hover;-webkit-animation-duration:1.5s;animation-duration:1.5s;-webkit-animation-delay:.3s;animation-delay:.3s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-direction:alternate;animation-direction:alternate}@-webkit-keyframes hang{50%{-webkit-transform:translateY(3px);transform:translateY(3px)}100%{-webkit-transform:translateY(6px);transform:translateY(6px)}}@keyframes hang{50%{-webkit-transform:translateY(3px);transform:translateY(3px)}100%{-webkit-transform:translateY(6px);transform:translateY(6px)}}.bp-hang{display:inline-block;-webkit-transition-duration:.5s;transition-duration:.5s;-webkit-transition-property:transform;transition-property:transform;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-hang:hover,.bp-hang:focus,.bp-hang:active{-webkit-transform:translateY(6px);transform:translateY(6px);-webkit-animation-name:hang;animation-name:hang;-webkit-animation-duration:1.5s;animation-duration:1.5s;-webkit-animation-delay:.3s;animation-delay:.3s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-direction:alternate;animation-direction:alternate}.bp-skew{display:inline-block;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:transform;transition-property:transform;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-skew:hover,.bp-skew:focus,.bp-skew:active{-webkit-transform:skew(-10deg);transform:skew(-10deg)}.bp-skew-forward{display:inline-block;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:transform;transition-property:transform;-webkit-transform-origin:0 100%;transform-origin:0 100%;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-skew-forward:hover,.bp-skew-forward:focus,.bp-skew-forward:active{-webkit-transform:skew(-10deg);transform:skew(-10deg)}.bp-skew-backward{display:inline-block;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:transform;transition-property:transform;-webkit-transform-origin:0 100%;transform-origin:0 100%;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-skew-backward:hover,.bp-skew-backward:focus,.bp-skew-backward:active{-webkit-transform:skew(10deg);transform:skew(10deg)}@-webkit-keyframes wobble-vertical{16.65%{-webkit-transform:translateY(8px);transform:translateY(8px)}33.3%{-webkit-transform:translateY(-6px);transform:translateY(-6px)}49.95%{-webkit-transform:translateY(4px);transform:translateY(4px)}66.6%{-webkit-transform:translateY(-2px);transform:translateY(-2px)}83.25%{-webkit-transform:translateY(1px);transform:translateY(1px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes wobble-vertical{16.65%{-webkit-transform:translateY(8px);transform:translateY(8px)}33.3%{-webkit-transform:translateY(-6px);transform:translateY(-6px)}49.95%{-webkit-transform:translateY(4px);transform:translateY(4px)}66.6%{-webkit-transform:translateY(-2px);transform:translateY(-2px)}83.25%{-webkit-transform:translateY(1px);transform:translateY(1px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}.bp-wobble-vertical{display:inline-block;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-wobble-vertical:hover,.bp-wobble-vertical:focus,.bp-wobble-vertical:active{-webkit-animation-name:wobble-vertical;animation-name:wobble-vertical;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-iteration-count:1;animation-iteration-count:1}
@-webkit-keyframes wobble-horizontal{16.65%{-webkit-transform:translateX(8px);transform:translateX(8px)}33.3%{-webkit-transform:translateX(-6px);transform:translateX(-6px)}49.95%{-webkit-transform:translateX(4px);transform:translateX(4px)}66.6%{-webkit-transform:translateX(-2px);transform:translateX(-2px)}83.25%{-webkit-transform:translateX(1px);transform:translateX(1px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes wobble-horizontal{16.65%{-webkit-transform:translateX(8px);transform:translateX(8px)}33.3%{-webkit-transform:translateX(-6px);transform:translateX(-6px)}49.95%{-webkit-transform:translateX(4px);transform:translateX(4px)}66.6%{-webkit-transform:translateX(-2px);transform:translateX(-2px)}83.25%{-webkit-transform:translateX(1px);transform:translateX(1px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}.bp-wobble-horizontal{display:inline-block;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-wobble-horizontal:hover,.bp-wobble-horizontal:focus,.bp-wobble-horizontal:active{-webkit-animation-name:wobble-horizontal;animation-name:wobble-horizontal;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-iteration-count:1;animation-iteration-count:1}@-webkit-keyframes wobble-to-bottom-right{16.65%{-webkit-transform:translate(8px,8px);transform:translate(8px,8px)}33.3%{-webkit-transform:translate(-6px,-6px);transform:translate(-6px,-6px)}49.95%{-webkit-transform:translate(4px,4px);transform:translate(4px,4px)}66.6%{-webkit-transform:translate(-2px,-2px);transform:translate(-2px,-2px)}83.25%{-webkit-transform:translate(1px,1px);transform:translate(1px,1px)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@keyframes wobble-to-bottom-right{16.65%{-webkit-transform:translate(8px,8px);transform:translate(8px,8px)}33.3%{-webkit-transform:translate(-6px,-6px);transform:translate(-6px,-6px)}49.95%{-webkit-transform:translate(4px,4px);transform:translate(4px,4px)}66.6%{-webkit-transform:translate(-2px,-2px);transform:translate(-2px,-2px)}83.25%{-webkit-transform:translate(1px,1px);transform:translate(1px,1px)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}.bp-wobble-to-bottom-right{display:inline-block;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-wobble-to-bottom-right:hover,.bp-wobble-to-bottom-right:focus,.bp-wobble-to-bottom-right:active{-webkit-animation-name:wobble-to-bottom-right;animation-name:wobble-to-bottom-right;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-iteration-count:1;animation-iteration-count:1}@-webkit-keyframes wobble-to-top-right{16.65%{-webkit-transform:translate(8px,-8px);transform:translate(8px,-8px)}33.3%{-webkit-transform:translate(-6px,6px);transform:translate(-6px,6px)}49.95%{-webkit-transform:translate(4px,-4px);transform:translate(4px,-4px)}66.6%{-webkit-transform:translate(-2px,2px);transform:translate(-2px,2px)}83.25%{-webkit-transform:translate(1px,-1px);transform:translate(1px,-1px)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@keyframes wobble-to-top-right{16.65%{-webkit-transform:translate(8px,-8px);transform:translate(8px,-8px)}33.3%{-webkit-transform:translate(-6px,6px);transform:translate(-6px,6px)}49.95%{-webkit-transform:translate(4px,-4px);transform:translate(4px,-4px)}66.6%{-webkit-transform:translate(-2px,2px);transform:translate(-2px,2px)}83.25%{-webkit-transform:translate(1px,-1px);transform:translate(1px,-1px)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}.bp-wobble-to-top-right{display:inline-block;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-wobble-to-top-right:hover,.bp-wobble-to-top-right:focus,.bp-wobble-to-top-right:active{-webkit-animation-name:wobble-to-top-right;animation-name:wobble-to-top-right;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-iteration-count:1;animation-iteration-count:1}@-webkit-keyframes wobble-top{16.65%{-webkit-transform:skew(-12deg);transform:skew(-12deg)}33.3%{-webkit-transform:skew(10deg);transform:skew(10deg)}49.95%{-webkit-transform:skew(-6deg);transform:skew(-6deg)}66.6%{-webkit-transform:skew(4deg);transform:skew(4deg)}83.25%{-webkit-transform:skew(-2deg);transform:skew(-2deg)}100%{-webkit-transform:skew(0);transform:skew(0)}}@keyframes wobble-top{16.65%{-webkit-transform:skew(-12deg);transform:skew(-12deg)}33.3%{-webkit-transform:skew(10deg);transform:skew(10deg)}49.95%{-webkit-transform:skew(-6deg);transform:skew(-6deg)}66.6%{-webkit-transform:skew(4deg);transform:skew(4deg)}83.25%{-webkit-transform:skew(-2deg);transform:skew(-2deg)}100%{-webkit-transform:skew(0);transform:skew(0)}
}.bp-wobble-top{display:inline-block;-webkit-transform-origin:0 100%;transform-origin:0 100%;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-wobble-top:hover,.bp-wobble-top:focus,.bp-wobble-top:active{-webkit-animation-name:wobble-top;animation-name:wobble-top;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-iteration-count:1;animation-iteration-count:1}@-webkit-keyframes wobble-bottom{16.65%{-webkit-transform:skew(-12deg);transform:skew(-12deg)}33.3%{-webkit-transform:skew(10deg);transform:skew(10deg)}49.95%{-webkit-transform:skew(-6deg);transform:skew(-6deg)}66.6%{-webkit-transform:skew(4deg);transform:skew(4deg)}83.25%{-webkit-transform:skew(-2deg);transform:skew(-2deg)}100%{-webkit-transform:skew(0);transform:skew(0)}}@keyframes wobble-bottom{16.65%{-webkit-transform:skew(-12deg);transform:skew(-12deg)}33.3%{-webkit-transform:skew(10deg);transform:skew(10deg)}49.95%{-webkit-transform:skew(-6deg);transform:skew(-6deg)}66.6%{-webkit-transform:skew(4deg);transform:skew(4deg)}83.25%{-webkit-transform:skew(-2deg);transform:skew(-2deg)}100%{-webkit-transform:skew(0);transform:skew(0)}}.bp-wobble-bottom{display:inline-block;-webkit-transform-origin:100% 0;transform-origin:100% 0;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-wobble-bottom:hover,.bp-wobble-bottom:focus,.bp-wobble-bottom:active{-webkit-animation-name:wobble-bottom;animation-name:wobble-bottom;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-iteration-count:1;animation-iteration-count:1}@-webkit-keyframes wobble-skew{16.65%{-webkit-transform:skew(-12deg);transform:skew(-12deg)}33.3%{-webkit-transform:skew(10deg);transform:skew(10deg)}49.95%{-webkit-transform:skew(-6deg);transform:skew(-6deg)}66.6%{-webkit-transform:skew(4deg);transform:skew(4deg)}83.25%{-webkit-transform:skew(-2deg);transform:skew(-2deg)}100%{-webkit-transform:skew(0);transform:skew(0)}}@keyframes wobble-skew{16.65%{-webkit-transform:skew(-12deg);transform:skew(-12deg)}33.3%{-webkit-transform:skew(10deg);transform:skew(10deg)}49.95%{-webkit-transform:skew(-6deg);transform:skew(-6deg)}66.6%{-webkit-transform:skew(4deg);transform:skew(4deg)}83.25%{-webkit-transform:skew(-2deg);transform:skew(-2deg)}100%{-webkit-transform:skew(0);transform:skew(0)}}.bp-wobble-skew{display:inline-block;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-wobble-skew:hover,.bp-wobble-skew:focus,.bp-wobble-skew:active{-webkit-animation-name:wobble-skew;animation-name:wobble-skew;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-iteration-count:1;animation-iteration-count:1}@-webkit-keyframes buzz{50%{-webkit-transform:translateX(3px) rotate(2deg);transform:translateX(3px) rotate(2deg)}100%{-webkit-transform:translateX(-3px) rotate(-2deg);transform:translateX(-3px) rotate(-2deg)}}@keyframes buzz{50%{-webkit-transform:translateX(3px) rotate(2deg);transform:translateX(3px) rotate(2deg)}100%{-webkit-transform:translateX(-3px) rotate(-2deg);transform:translateX(-3px) rotate(-2deg)}}.bp-buzz{display:inline-block;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-buzz:hover,.bp-buzz:focus,.bp-buzz:active{-webkit-animation-name:buzz;animation-name:buzz;-webkit-animation-duration:.15s;animation-duration:.15s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}@-webkit-keyframes buzz-out{10%{-webkit-transform:translateX(3px) rotate(2deg);transform:translateX(3px) rotate(2deg)}20%{-webkit-transform:translateX(-3px) rotate(-2deg);transform:translateX(-3px) rotate(-2deg)}30%{-webkit-transform:translateX(3px) rotate(2deg);transform:translateX(3px) rotate(2deg)}40%{-webkit-transform:translateX(-3px) rotate(-2deg);transform:translateX(-3px) rotate(-2deg)}50%{-webkit-transform:translateX(2px) rotate(1deg);transform:translateX(2px) rotate(1deg)}60%{-webkit-transform:translateX(-2px) rotate(-1deg);transform:translateX(-2px) rotate(-1deg)}70%{-webkit-transform:translateX(2px) rotate(1deg);transform:translateX(2px) rotate(1deg)}80%{-webkit-transform:translateX(-2px) rotate(-1deg);transform:translateX(-2px) rotate(-1deg)}90%{-webkit-transform:translateX(1px) rotate(0);transform:translateX(1px) rotate(0)}100%{-webkit-transform:translateX(-1px) rotate(0);transform:translateX(-1px) rotate(0)}}@keyframes buzz-out{10%{-webkit-transform:translateX(3px) rotate(2deg);transform:translateX(3px) rotate(2deg)}20%{-webkit-transform:translateX(-3px) rotate(-2deg);transform:translateX(-3px) rotate(-2deg)}30%{-webkit-transform:translateX(3px) rotate(2deg);transform:translateX(3px) rotate(2deg)}
40%{-webkit-transform:translateX(-3px) rotate(-2deg);transform:translateX(-3px) rotate(-2deg)}50%{-webkit-transform:translateX(2px) rotate(1deg);transform:translateX(2px) rotate(1deg)}60%{-webkit-transform:translateX(-2px) rotate(-1deg);transform:translateX(-2px) rotate(-1deg)}70%{-webkit-transform:translateX(2px) rotate(1deg);transform:translateX(2px) rotate(1deg)}80%{-webkit-transform:translateX(-2px) rotate(-1deg);transform:translateX(-2px) rotate(-1deg)}90%{-webkit-transform:translateX(1px) rotate(0);transform:translateX(1px) rotate(0)}100%{-webkit-transform:translateX(-1px) rotate(0);transform:translateX(-1px) rotate(0)}}.bp-buzz-out{display:inline-block;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-buzz-out:hover,.bp-buzz-out:focus,.bp-buzz-out:active{-webkit-animation-name:buzz-out;animation-name:buzz-out;-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:1;animation-iteration-count:1}.bp-border-fade{display:inline-block;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:box-shadow;transition-property:box-shadow;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:inset 0 0 0 4px #e1e1e1,0 0 1px rgba(0,0,0,0)}.bp-border-fade:hover,.bp-border-fade:focus,.bp-border-fade:active{box-shadow:inset 0 0 0 4px #666,0 0 1px rgba(0,0,0,0)}.bp-hollow{display:inline-block;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:background;transition-property:background;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:inset 0 0 0 4px #e1e1e1,0 0 1px rgba(0,0,0,0)}.bp-hollow:hover,.bp-hollow:focus,.bp-hollow:active{background:none!important}.bp-trim{display:inline-block;position:relative;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-trim:before{content:'';position:absolute;border:white solid 4px;top:4px;left:4px;right:4px;bottom:4px;opacity:0;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:opacity;transition-property:opacity}.bp-trim:hover:before,.bp-trim:focus:before,.bp-trim:active:before{opacity:1}.bp-outline-outward{display:inline-block;position:relative;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-outline-outward:before{content:'';position:absolute;border:#e1e1e1 solid 2px;top:0;right:0;bottom:0;left:0;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:top,right,bottom,left;transition-property:top,right,bottom,left}.bp-outline-outward:hover:before,.bp-outline-outward:focus:before,.bp-outline-outward:active:before{top:-8px;right:-8px;bottom:-8px;left:-8px}.bp-outline-inward{display:inline-block;position:relative;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-outline-inward:before{pointer-events:none;content:'';position:absolute;border:#e1e1e1 solid 2px;top:-10px;right:-10px;bottom:-10px;left:-10px;opacity:0;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:top,right,bottom,left;transition-property:top,right,bottom,left}.bp-outline-inward:hover:before,.bp-outline-inward:focus:before,.bp-outline-inward:active:before{top:-4px;right:-4px;bottom:-4px;left:-4px;opacity:1}.bp-round-corners{display:inline-block;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:border-radius;transition-property:border-radius;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-round-corners:hover,.bp-round-corners:focus,.bp-round-corners:active{border-radius:1em}.bp-glow{display:inline-block;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:box-shadow;transition-property:box-shadow;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-glow:hover,.bp-glow:focus,.bp-glow:active{box-shadow:0 0 8px rgba(0,0,0,0.6)}.bp-glow-light{display:inline-block;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:box-shadow;transition-property:box-shadow;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-glow-light:hover,.bp-glow-light:focus,.bp-glow-light:active{box-shadow:0 0 8px rgba(220,220,220,0.72)}.bp-box-shadow-outset{display:inline-block;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:box-shadow;transition-property:box-shadow;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-box-shadow-outset:hover,.bp-box-shadow-outset:focus,.bp-box-shadow-outset:active{box-shadow:2px 2px 2px rgba(0,0,0,0.6)}.bp-box-shadow-inset{display:inline-block;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:box-shadow;transition-property:box-shadow;box-shadow:inset 0 0 0 rgba(0,0,0,0.6),0 0 1px rgba(0,0,0,0);-webkit-transform:translateZ(0);transform:translateZ(0)}
.bp-box-shadow-inset:hover,.bp-box-shadow-inset:focus,.bp-box-shadow-inset:active{box-shadow:inset 2px 2px 2px rgba(0,0,0,0.6),0 0 1px rgba(0,0,0,0)}.bp-float-shadow{display:inline-block;position:relative;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:transform;transition-property:transform;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-float-shadow:before{pointer-events:none;position:absolute;z-index:-1;content:'';top:100%;left:5%;height:10px;width:90%;opacity:0;background:radial-gradient(ellipse at center,rgba(0,0,0,0.35) 0,rgba(0,0,0,0) 80%);-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:transform,opacity;transition-property:transform,opacity}.bp-float-shadow:hover,.bp-float-shadow:focus,.bp-float-shadow:active{-webkit-transform:translateY(-5px);transform:translateY(-5px)}.bp-float-shadow:hover:before,.bp-float-shadow:focus:before,.bp-float-shadow:active:before{opacity:1;-webkit-transform:translateY(5px);transform:translateY(5px)}@-webkit-keyframes hover{50%{-webkit-transform:translateY(-3px);transform:translateY(-3px)}100%{-webkit-transform:translateY(-6px);transform:translateY(-6px)}}@keyframes hover{50%{-webkit-transform:translateY(-3px);transform:translateY(-3px)}100%{-webkit-transform:translateY(-6px);transform:translateY(-6px)}}@-webkit-keyframes hover-shadow{0%{-webkit-transform:translateY(6px);transform:translateY(6px);opacity:.4}50%{-webkit-transform:translateY(3px);transform:translateY(3px);opacity:1}100%{-webkit-transform:translateY(6px);transform:translateY(6px);opacity:.4}}@keyframes hover-shadow{0%{-webkit-transform:translateY(6px);transform:translateY(6px);opacity:.4}50%{-webkit-transform:translateY(3px);transform:translateY(3px);opacity:1}100%{-webkit-transform:translateY(6px);transform:translateY(6px);opacity:.4}}.bp-hover-shadow{display:inline-block;position:relative;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:transform;transition-property:transform;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-hover-shadow:before{pointer-events:none;position:absolute;z-index:-1;content:'';top:100%;left:5%;height:10px;width:90%;opacity:0;background:radial-gradient(ellipse at center,rgba(0,0,0,0.35) 0,rgba(0,0,0,0) 80%);-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:transform,opacity;transition-property:transform,opacity}.bp-hover-shadow:hover,.bp-hover-shadow:focus,.bp-hover-shadow:active{-webkit-transform:translateY(-6px);transform:translateY(-6px);-webkit-animation-name:hover;animation-name:hover;-webkit-animation-duration:1.5s;animation-duration:1.5s;-webkit-animation-delay:.3s;animation-delay:.3s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-direction:alternate;animation-direction:alternate}.bp-hover-shadow:hover:before,.bp-hover-shadow:focus:before,.bp-hover-shadow:active:before{opacity:.4;-webkit-transform:translateY(6px);transform:translateY(6px);-webkit-animation-name:hover-shadow;animation-name:hover-shadow;-webkit-animation-duration:1.5s;animation-duration:1.5s;-webkit-animation-delay:.3s;animation-delay:.3s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-direction:alternate;animation-direction:alternate}.bp-shadow-radial{display:inline-block;position:relative;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}.bp-shadow-radial:before,.bp-shadow-radial:after{pointer-events:none;position:absolute;content:'';left:0;width:100%;box-sizing:border-box;background-repeat:no-repeat;height:5px;opacity:0;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:opacity;transition-property:opacity}.bp-shadow-radial:before{bottom:100%;background:radial-gradient(ellipse at 50% 150%,rgba(0,0,0,0.6) 0,rgba(0,0,0,0) 80%)}.bp-shadow-radial:after{top:100%;background:radial-gradient(ellipse at 50% -50%,rgba(0,0,0,0.6) 0,rgba(0,0,0,0) 80%)}.bp-shadow-radial:hover:before,.bp-shadow-radial:focus:before,.bp-shadow-radial:active:before,.bp-shadow-radial:hover:after,.bp-shadow-radial:focus:after,.bp-shadow-radial:active:after{opacity:1}.bp-shadow-radial-light{display:inline-block;position:relative;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(240,240,240,0)}.bp-shadow-radial-light:before,.bp-shadow-radial-light:after{pointer-events:none;position:absolute;content:'';left:0;width:100%;box-sizing:border-box;background-repeat:no-repeat;height:5px;opacity:0;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:opacity;transition-property:opacity}
.bp-shadow-radial-light:before{bottom:100%;background:radial-gradient(ellipse at 50% 150%,rgba(240,240,240,0.75) 0,rgba(240,240,240,0) 80%)}.bp-shadow-radial-light:after{top:100%;background:radial-gradient(ellipse at 50% -50%,rgba(240,240,240,0.75) 0,rgba(240,240,240,0) 80%)}.bp-shadow-radial-light:hover:before,.bp-shadow-radial-light:focus:before,.bp-shadow-radial-light:active:before,.bp-shadow-radial-light:hover:after,.bp-shadow-radial-light:focus:after,.bp-shadow-radial-light:active:after{opacity:1}@-webkit-keyframes bp-ripple-out{100%{top:-12px;right:-12px;bottom:-12px;left:-12px;opacity:0}}@keyframes bp-ripple-out{100%{top:-12px;right:-12px;bottom:-12px;left:-12px;opacity:0}}.bp-ripple-out{display:inline-block;vertical-align:middle;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-moz-osx-font-smoothing:grayscale;position:relative}.bp-ripple-out:before{content:'';position:absolute;border:rgba(255,255,255,0) solid 2px;top:-2px;right:-2px;bottom:-2px;left:-2px;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:forwards;-moz-animation-fill-mode:forwards;animation-fill-mode:forwards}.bp-ripple-out:hover:before,.bp-ripple-out:focus:before,.bp-ripple-out:active:before{-webkit-animation-name:bp-ripple-out;animation-name:bp-ripple-out}
.g-recaptcha{margin-bottom:1rem}.g-recaptcha iframe.error{border:1px solid #f04124}
.com_bigwhiteduck_stacks_headerpro_stack .text-center{text-align:center}.com_bigwhiteduck_stacks_headerpro_stack .text-left{text-align:left}.com_bigwhiteduck_stacks_headerpro_stack .text-right{text-align:right}.com_bigwhiteduck_stacks_headerpro_stack .text-justify{text-align:justify}.com_bigwhiteduck_stacks_headerpro_stack .text-inherit{text-align:inherit}
.blu-svg>.svg-link>a{position:absolute;top:0;bottom:0;left:0;right:0;content:"";z-index:999}
.processing-circle{margin:0 auto;width:40px;height:40px;border:4px solid var(--white-color);border-top:4px solid var(--primary);border-radius:50%;-webkit-filter:drop-shadow(0 0 20px rgba(0,0,0,0.6));filter:drop-shadow(0 0 20px rgba(0,0,0,0.6))}.processing-circle.dark{border-color:var(--black-color);border-top-color:var(--primary)}.processing-circle.primary{border-top-color:var(--primary)}.processing-circle.secondary{border-top-color:var(--secondary)}.processing-circle.warning{border-top-color:var(--warning)}.processing-circle.success{border-top-color:var(--success)}.processing-circle.alert{border-top-color:var(--alert)}
.target_stack.width-fill{width:100%}.target_stack.width-auto{width:auto}.target_stack.position-browser{position:fixed !important}.target_stack.position-absolute{position:absolute !important}.target_stack.position-body{position:absolute !important}.target_stack.position-right{float:right}.target_stack.position-left{float:left}.target_stack.vcenter{top:0;height:100%}.target_stack.vcenter > .com_joeworkman_stacks_target_stack{position:relative;top:50%;transform:translateY(-50%)}.target_stack.hcenter > .com_joeworkman_stacks_target_stack{position:relative;left:50%;transform:translateX(-50%)}.target_stack.hcenter.vcenter > .com_joeworkman_stacks_target_stack{transform:translateX(-50%) translateY(-50%)}@media only screen and (min-width:40em){.target_stack.target-small-only{position:relative !important;float:none !important;height:auto !important;left:auto !important;top:auto !important;bottom:auto !important;right:auto !important}.target_stack.target-small-only > .com_joeworkman_stacks_target_stack{left:auto !important;top:auto !important;bottom:auto !important;right:auto !important;transform:none !important}}@media only screen and (max-width:39.9375em){.target_stack.disable-small{position:relative !important;float:none !important;height:auto !important;left:auto !important;top:auto !important;bottom:auto !important;right:auto !important}.target_stack.disable-small > .com_joeworkman_stacks_target_stack{left:auto !important;top:auto !important;bottom:auto !important;right:auto !important;transform:none !important}}@media only screen and (max-width:62.5em){.target_stack.disable-medium{position:relative !important;float:none !important;height:auto !important;left:auto !important;top:auto !important;bottom:auto !important;right:auto !important}.target_stack.disable-medium > .com_joeworkman_stacks_target_stack{left:auto !important;top:auto !important;bottom:auto !important;right:auto !important;transform:none !important}}
.biscuitbox {
  display: none;
  width: 100%;
  bottom: 0;
  position: fixed;
  z-index: 9999; }

.biscuitbox.biscuitbox-display-top {
  bottom: auto;
  top: 0; }

.biscuitbox-wrapper {
  display: flex;
  flex-flow: row wrap; }

.biscuitbox-wrapper > * {
  flex: 1 100%; }

.biscuitbox-button {
  text-align: center; }
.blu-wrap.bwd{overflow:visible}.blu-wrap.bwd>.blueprint-col{padding-top:.1px;padding-bottom:.1px}.blu-wrap.bwd>.blueprint-col,.blu-wrap.bwd>.blueprint-col>.blucol-content{position:relative}.blu-wrap.bwd>.blueprint-col>.blucol-content[class*="style-pro-stacks"].has-z{z-index:1}.blu-wrap.bwd>.blueprint-col>.blucol-content[class*="style-pro-stacks"]::before{z-index:-1}.blu-wrap.bwd>.blueprint-col>.blucol-content[class*="style-pro-stacks"]:not(.full-ovl)::after{z-index:-1}.blu-wrap.bwd>.blueprint-col .blu-cf::before,.blu-wrap.bwd>.blueprint-col .blu-cf::after{content:" ";display:table}.blu-wrap.bwd>.blueprint-col .blu-cf::after{clear:both}.blu-wrap.bwd>.blueprint-col>.blu-link>a{position:absolute;top:0;bottom:0;left:0;right:0;content:"";z-index:999}

  .theme-version{display:block}.theme-version.number-110,#stacks_in_103901_page0{display:none}.stacks_out{overflow:visible !important}.stacks_in{overflow:visible}::-moz-selection{color:rgba(3, 7, 3, 1.00);background:rgba(59, 59, 59, 1.00);}::selection{color:rgba(3, 7, 3, 1.00);background:rgba(59, 59, 59, 1.00);}::-moz-selection{color:rgba(3, 7, 3, 1.00);background:rgba(59, 59, 59, 1.00);}body,.font-family-text{font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;font-weight:400;}h1,.font-family-h1{font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;font-style:normal;font-weight:300;}h1 a,.font-family-h1 a{font-family:inherit}h2,h3,h4,h5,h6,.font-family-h2{font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;font-style:normal;font-weight:300;}h2 a,h3 a,h4 a,h5 a,h6 a,.font-family-h2 a{font-family:inherit}body{background-color:#FFFFFF;}.hide-for-touch,.show-for-touch{display:none}.no-js .hide-for-touch{display:block}.vegas-loading{display:none}.vegas-background{-ms-interpolation-mode:bicubic;image-rendering:optimizeQuality;max-width:none !important}.vegas-overlay,.vegas-background{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.hide-overflow{overflow:hidden !important}.columns > .equalizer.small-up{height:100%}@media only screen and (min-width:40.063em){.columns > .equalizer.medium-up{height:100%}}@media only screen and (min-width:62.563em){.columns > .equalizer.large-up{height:100%}}@media only screen and (max-width:40em){.row.collapse-small > .columns{padding-left:0;padding-right:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){.row.collapse-medium > .columns{padding-left:0;padding-right:0}}@media only screen and (max-width:40em){.row .row.collapse-small{margin:0;width:auto}.row .row.collapse-small::before,.row .row.collapse-small::after{content:" ";display:table}.row .row.collapse-small::after{clear:both}}@media only screen and (min-width:40.063em) and (max-width:62.5em){.row .row.collapse-medium{margin:0;width:auto}.row .row.collapse-medium::before,.row .row.collapse-medium::after{content:" ";display:table}.row .row.collapse-medium::after{clear:both}}.column,.columns{padding-left:0.94rem;padding-right:0.94rem}.row .row{margin:0 -0.94rem}.row.divider > .columns:not(:first-child):before{content:" ";margin:0 -0.94rem;position:absolute}@media only screen and (max-width:40em){.row.divider-medium-up > .columns::before,.row.divider-large-up > .columns::before,.small-12::before{display:none}}@media only screen and (min-width:40.063em) and (max-width:62.5em){.row.divider-large-up > .columns::before,.medium-12::before{display:none}}@media only screen and (min-width:62.563em){.large-12:before{display:none}}.floating-body.radius{border-radius:3px}.floating-body.radius > .columns > .stacks_out:first-child > .stacks_in > .top-bar-wrapper:not(.fixed){border-top-right-radius:3px;border-top-left-radius:3px}.floating-body .top-bar-wrapper.contain-to-grid.fixed{max-width:1000px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.radius{background-clip:padding-box}img{color:#FFFFFF}img.radius{border-radius:3px}img.round{border-radius:1000px}.row{max-width:1000px !important;}.row.max-edge{max-width:100% !important}body{color:rgba(51, 51, 51, 1.00)}a{color:rgba(0, 0, 255, 1.00);-webkit-text-decoration:none;text-decoration:none;font-weight:inherit}a:hover,a:focus{color:rgba(251, 2, 128, 1.00)}a.close,a.close-reveal-modal{text-decoration:none}.alt{color:rgba(3, 7, 3, 1.00)}.alt a{color:rgba(0, 0, 255, 1.00);-webkit-text-decoration:none;text-decoration:none}.alt a:hover,.alt a:focus{color:rgba(249, 196, 41, 1.00)}.alt small{color:rgba(3, 9, 3, 1.00)}h1,h2,h3,h4,h5,h6{color:rgba(3, 7, 3, 1.00);margin-top:0}h1.alt,h2.alt,h3.alt,h4.alt,h5.alt,h6.alt{color:rgba(3, 7, 3, 1.00)}h1.subheader,h2.subheader,h3.subheader,h4.subheader,h5.subheader,h6.subheader{color:rgba(3, 9, 3, 1.00)}h1.subheader.alt,h2.subheader.alt,h3.subheader.alt,h4.subheader.alt,h5.subheader.alt,h6.subheader.alt{color:rgba(3, 9, 3, 1.00)}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-size:30%;color:rgba(66, 66, 66, 1.00)}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:inherit !important}h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover,h6 a:hover{opacity:0.8;color:inherit !important}h1{font-size:3.00rem}h2{font-size:1.00rem}h3{font-size:2.00rem}h4{font-size:1.44rem}h5{font-size:1.12rem}h6{font-size:1.00rem}p,ul li,ol li{font-size:1.00rem}@media only screen and (min-width:40.063em){h1{font-size:3.50rem}h2{font-size:1.20rem}h3{font-size:2.35rem}h4{font-size:1.44rem}h5{font-size:1.12rem}h6{font-size:1.00rem}p,ul li,ol li{font-size:1.00rem}}code{color:rgba(204, 55, 30, 1.00)}hr,blockquote,abbr,acronym,.vcard{border-color:rgba(51, 51, 51, 1.00)}hr.alt,blockquote.alt,abbr.alt,acronym.alt,.vcard.alt{border-color:rgba(255, 255, 255, 1.00)}hr.primary,blockquote.primary,abbr.primary,acronym.primary,.vcard.primary{border-color:rgba(59, 59, 59, 1.00)}hr.primary,blockquote.primary,abbr.primary,acronym.primary,.vcard.primary{border-color:rgba(59, 59, 59, 1.00)}hr.secondary,blockquote.secondary,abbr.secondary,acronym.secondary,.vcard.secondary{border-color:rgba(197, 195, 196, 1.00)}hr.swatch1,blockquote.swatch1,abbr.swatch1,acronym.swatch1,.vcard.swatch1{border-color:rgba(255, 255, 255, 1.00)}hr.swatch2,blockquote.swatch2,abbr.swatch2,acronym.swatch2,.vcard.swatch2{border-color:rgba(34, 34, 34, 1.00)}hr.swatch3,blockquote.swatch3,abbr.swatch3,acronym.swatch3,.vcard.swatch3{border-color:rgba(34, 34, 34, 1.00)}hr.swatch4,blockquote.swatch4,abbr.swatch4,acronym.swatch4,.vcard.swatch4{border-color:rgba(249, 196, 41, 1.00)}hr.swatch5,blockquote.swatch5,abbr.swatch5,acronym.swatch5,.vcard.swatch5{border-color:rgba(102, 102, 102, 1.00)}hr.swatch6,blockquote.swatch6,abbr.swatch6,acronym.swatch6,.vcard.swatch6{border-color:rgba(3, 7, 3, 1.00)}blockquote,blockquote p{color:rgba(66, 66, 66, 1.00)}blockquote cite,blockquote cite a,blockquote p cite,blockquote p cite a{color:rgba(61, 61, 61, 1.00)}blockquote.alt,blockquote.alt p,blockquote p.alt,blockquote p.alt p{color:rgba(3, 9, 3, 1.00)}blockquote.alt cite,blockquote.alt cite a,blockquote.alt p cite,blockquote.alt p cite a,blockquote p.alt cite,blockquote p.alt cite a,blockquote p.alt p cite,blockquote p.alt p cite a{color:rgba(3, 8, 3, 1.00)}.flex-video{margin-bottom:0}.contain-to-grid .top-bar{max-width:1000px}.top-bar .top-bar-section ul li > a.button{background-color:rgba(59, 59, 59, 1.00);color:rgba(3, 7, 3, 1.00)}.top-bar .top-bar-section ul li > a.button:hover{color:rgba(3, 7, 3, 1.00);background-color:rgba(56, 56, 56, 1.00)}.top-bar .top-bar-section ul li > a.button.secondary{background-color:rgba(197, 195, 196, 1.00);color:rgba(51, 51, 51, 1.00)}.top-bar .top-bar-section ul li > a.button.secondary:hover{color:rgba(51, 51, 51, 1.00);background-color:rgba(187, 185, 186, 1.00)}.top-bar .top-bar-section ul li > a.button.alert{background-color:rgba(240, 65, 36, 1.00)}.top-bar .top-bar-section ul li > a.button.alert:hover{background-color:rgba(228, 61, 34, 1.00)}.top-bar .top-bar-section ul li > a.button.success{background-color:rgba(67, 172, 106, 1.00)}.top-bar .top-bar-section ul li > a.button.success:hover{background-color:rgba(63, 163, 100, 1.00)}.top-bar .top-bar-section ul li > a.button.radius{border-radius:3px}.top-bar-wrapper.fn-scheme-primary{background-color:rgba(59, 59, 59, 1.00);color:rgba(3, 7, 3, 1.00)}.top-bar-wrapper.fn-scheme-primary ul:not(.title-area) ul.dropdown{background-color:rgba(59, 59, 59, 1.00)}.top-bar-wrapper.fn-scheme-primary .site-title,.top-bar-wrapper.fn-scheme-primary .site-title small,.top-bar-wrapper.fn-scheme-primary a:not(.button){color:rgba(3, 7, 3, 1.00) !important}.top-bar-wrapper.fn-scheme-primary .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(3, 7, 3, 1.00),0 7px 0 1px rgba(3, 7, 3, 1.00),0 14px 0 1px rgba(3, 7, 3, 1.00);box-shadow:0 0 0 1px rgba(3, 7, 3, 1.00),0 7px 0 1px rgba(3, 7, 3, 1.00),0 14px 0 1px rgba(3, 7, 3, 1.00)}.top-bar-wrapper.fn-scheme-secondary{background-color:rgba(197, 195, 196, 1.00);color:rgba(51, 51, 51, 1.00)}.top-bar-wrapper.fn-scheme-secondary ul:not(.title-area) ul.dropdown{background-color:rgba(197, 195, 196, 1.00)}.top-bar-wrapper.fn-scheme-secondary .site-title,.top-bar-wrapper.fn-scheme-secondary .site-title small,.top-bar-wrapper.fn-scheme-secondary a:not(.button){color:rgba(51, 51, 51, 1.00) !important}.top-bar-wrapper.fn-scheme-secondary .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(51, 51, 51, 1.00),0 7px 0 1px rgba(51, 51, 51, 1.00),0 14px 0 1px rgba(51, 51, 51, 1.00);box-shadow:0 0 0 1px rgba(51, 51, 51, 1.00),0 7px 0 1px rgba(51, 51, 51, 1.00),0 14px 0 1px rgba(51, 51, 51, 1.00)}.top-bar-wrapper.fn-scheme-swatch1{background-color:rgba(255, 255, 255, 1.00);color:rgba(127, 127, 127, 1.00)}.top-bar-wrapper.fn-scheme-swatch1 ul:not(.title-area) ul.dropdown{background-color:rgba(255, 255, 255, 1.00)}.top-bar-wrapper.fn-scheme-swatch1 .site-title,.top-bar-wrapper.fn-scheme-swatch1 .site-title small,.top-bar-wrapper.fn-scheme-swatch1 a:not(.button){color:rgba(127, 127, 127, 1.00) !important}.top-bar-wrapper.fn-scheme-swatch1 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(127, 127, 127, 1.00),0 7px 0 1px rgba(127, 127, 127, 1.00),0 14px 0 1px rgba(127, 127, 127, 1.00);box-shadow:0 0 0 1px rgba(127, 127, 127, 1.00),0 7px 0 1px rgba(127, 127, 127, 1.00),0 14px 0 1px rgba(127, 127, 127, 1.00)}.top-bar-wrapper.fn-scheme-swatch2{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch2 ul:not(.title-area) ul.dropdown{background-color:rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch2 .site-title,.top-bar-wrapper.fn-scheme-swatch2 .site-title small,.top-bar-wrapper.fn-scheme-swatch2 a:not(.button){color:rgba(248, 248, 248, 1.00) !important}.top-bar-wrapper.fn-scheme-swatch2 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(248, 248, 248, 1.00),0 7px 0 1px rgba(248, 248, 248, 1.00),0 14px 0 1px rgba(248, 248, 248, 1.00);box-shadow:0 0 0 1px rgba(248, 248, 248, 1.00),0 7px 0 1px rgba(248, 248, 248, 1.00),0 14px 0 1px rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch3{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch3 ul:not(.title-area) ul.dropdown{background-color:rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch3 .site-title,.top-bar-wrapper.fn-scheme-swatch3 .site-title small,.top-bar-wrapper.fn-scheme-swatch3 a:not(.button){color:rgba(248, 248, 248, 1.00) !important}.top-bar-wrapper.fn-scheme-swatch3 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(248, 248, 248, 1.00),0 7px 0 1px rgba(248, 248, 248, 1.00),0 14px 0 1px rgba(248, 248, 248, 1.00);box-shadow:0 0 0 1px rgba(248, 248, 248, 1.00),0 7px 0 1px rgba(248, 248, 248, 1.00),0 14px 0 1px rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch4{background-color:rgba(249, 196, 41, 1.00);color:rgba(76, 76, 76, 1.00)}.top-bar-wrapper.fn-scheme-swatch4 ul:not(.title-area) ul.dropdown{background-color:rgba(249, 196, 41, 1.00)}.top-bar-wrapper.fn-scheme-swatch4 .site-title,.top-bar-wrapper.fn-scheme-swatch4 .site-title small,.top-bar-wrapper.fn-scheme-swatch4 a:not(.button){color:rgba(76, 76, 76, 1.00) !important}.top-bar-wrapper.fn-scheme-swatch4 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(76, 76, 76, 1.00),0 7px 0 1px rgba(76, 76, 76, 1.00),0 14px 0 1px rgba(76, 76, 76, 1.00);box-shadow:0 0 0 1px rgba(76, 76, 76, 1.00),0 7px 0 1px rgba(76, 76, 76, 1.00),0 14px 0 1px rgba(76, 76, 76, 1.00)}.top-bar-wrapper.fn-scheme-swatch5{background-color:rgba(102, 102, 102, 1.00);color:rgba(255, 255, 255, 1.00)}.top-bar-wrapper.fn-scheme-swatch5 ul:not(.title-area) ul.dropdown{background-color:rgba(102, 102, 102, 1.00)}.top-bar-wrapper.fn-scheme-swatch5 .site-title,.top-bar-wrapper.fn-scheme-swatch5 .site-title small,.top-bar-wrapper.fn-scheme-swatch5 a:not(.button){color:rgba(255, 255, 255, 1.00) !important}.top-bar-wrapper.fn-scheme-swatch5 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(255, 255, 255, 1.00),0 7px 0 1px rgba(255, 255, 255, 1.00),0 14px 0 1px rgba(255, 255, 255, 1.00);box-shadow:0 0 0 1px rgba(255, 255, 255, 1.00),0 7px 0 1px rgba(255, 255, 255, 1.00),0 14px 0 1px rgba(255, 255, 255, 1.00)}.top-bar-wrapper.fn-scheme-swatch6{background-color:rgba(3, 7, 3, 1.00);color:rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch6 ul:not(.title-area) ul.dropdown{background-color:rgba(3, 7, 3, 1.00)}.top-bar-wrapper.fn-scheme-swatch6 .site-title,.top-bar-wrapper.fn-scheme-swatch6 .site-title small,.top-bar-wrapper.fn-scheme-swatch6 a:not(.button){color:rgba(34, 34, 34, 1.00) !important}.top-bar-wrapper.fn-scheme-swatch6 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(34, 34, 34, 1.00),0 7px 0 1px rgba(34, 34, 34, 1.00),0 14px 0 1px rgba(34, 34, 34, 1.00);box-shadow:0 0 0 1px rgba(34, 34, 34, 1.00),0 7px 0 1px rgba(34, 34, 34, 1.00),0 14px 0 1px rgba(34, 34, 34, 1.00)}.alert-box{background-color:rgba(59, 59, 59, 1.00);color:rgba(3, 7, 3, 1.00);border-color:rgba(56, 56, 56, 1.00)}.alert-box a:not(.close){color:rgba(3, 7, 3, 1.00);text-decoration:underline}.alert-box.secondary{background-color:rgba(197, 195, 196, 1.00);color:rgba(51, 51, 51, 1.00);border-color:rgba(187, 185, 186, 1.00)}.alert-box.alert{background-color:rgba(240, 65, 36, 1.00);border-color:rgba(228, 61, 34, 1.00)}.alert-box.success{background-color:rgba(67, 172, 106, 1.00);border-color:rgba(63, 163, 100, 1.00)}.alert-box.warning{background-color:rgba(240, 138, 36, 1.00);border-color:rgba(228, 131, 34, 1.00)}.alert-box.info{background-color:rgba(3, 7, 3, 1.00);color:rgba(76, 76, 76, 1.00);border-color:rgba(2, 6, 2, 1.00)}.alert-box.radius{border-radius:3px}.breadcrumbs{background-color:rgba(197, 195, 196, 1.00);border-color:rgba(187, 185, 186, 1.00);color:rgba(51, 51, 51, 1.00)}.breadcrumbs .current a{color:rgba(51, 51, 51, 1.00)}.breadcrumbs.radius{border-radius:3px}.breadcrumbs header{display:inline}.breadcrumbs .fa{font-size:1em}.breadcrumbs .unavailable{color:rgba(51, 51, 51, 1.00)}.breadcrumbs li:before{color:rgba(76, 76, 76, 1.00)}.breadcrumbs *:first-child:before{margin:0 .75rem}.button{background-color:rgba(59, 59, 59, 1.00);color:rgba(3, 7, 3, 1.00)}.button:hover{color:rgba(3, 7, 3, 1.00);background-color:rgba(56, 56, 56, 1.00)}.button.secondary{background-color:rgba(197, 195, 196, 1.00);color:rgba(51, 51, 51, 1.00)}.button.secondary:hover{color:rgba(51, 51, 51, 1.00);background-color:rgba(187, 185, 186, 1.00)}.button.alert{background-color:rgba(240, 65, 36, 1.00)}.button.alert:hover{background-color:rgba(228, 61, 34, 1.00)}.button.success{background-color:rgba(67, 172, 106, 1.00)}.button.success:hover{background-color:rgba(63, 163, 100, 1.00)}.button.radius{border-radius:3px}.button.ghost{background-color:transparent;border-width:1px;border-color:rgba(59, 59, 59, 1.00);color:rgba(59, 59, 59, 1.00)}.button.ghost:hover{color:rgba(3, 7, 3, 1.00);border-color:rgba(56, 56, 56, 1.00);background-color:rgba(56, 56, 56, 1.00)}.button.ghost.secondary{border-color:rgba(197, 195, 196, 1.00);color:rgba(197, 195, 196, 1.00)}.button.ghost.secondary:hover{color:rgba(51, 51, 51, 1.00);border-color:rgba(187, 185, 186, 1.00);background-color:rgba(187, 185, 186, 1.00)}.button.ghost.alert{border-color:rgba(240, 65, 36, 1.00);color:rgba(240, 65, 36, 1.00)}.button.ghost.alert:hover{color:rgba(3, 7, 3, 1.00);border-color:rgba(228, 61, 34, 1.00);background-color:rgba(228, 61, 34, 1.00)}.button.ghost.success{border-color:rgba(67, 172, 106, 1.00);color:rgba(67, 172, 106, 1.00)}.button.ghost.success:hover{color:rgba(3, 7, 3, 1.00);border-color:rgba(63, 163, 100, 1.00);background-color:rgba(63, 163, 100, 1.00)}.split.button.radius span{border-top-right-radius:3px;border-bottom-right-radius:3px}.split.button span::after{border-top-color:rgba(3, 7, 3, 1.00)}.split.button.secondary span::after{border-top-color:rgba(51, 51, 51, 1.00)}.button-group.radius > *:first-child,.button-group.radius > *:first-child > a,.button-group.radius > *:first-child > button,.button-group.radius > *:first-child > .button{border-bottom-left-radius:3px;border-top-left-radius:3px}.button-group.radius > *:last-child,.button-group.radius > *:last-child > a,.button-group.radius > *:last-child > button,.button-group.radius > *:last-child > .button{border-top-right-radius:3px;border-bottom-right-radius:3px}.button-group.stack > li .button,.button-group.stack-for-small > li .button{border-top:1px solid rgba(255,255,255,0.5)}.icon-bar{background-color:rgba(59, 59, 59, 1.00);color:rgba(3, 7, 3, 1.00)}.icon-bar > .item{cursor:pointer;color:rgba(3, 7, 3, 1.00)}.icon-bar > .item label,.icon-bar > .item i{color:rgba(3, 7, 3, 1.00)}.icon-bar > .item:hover{color:rgba(3, 7, 3, 1.00);background-color:rgba(56, 56, 56, 1.00)}.icon-bar.secondary{background-color:rgba(197, 195, 196, 1.00);color:rgba(51, 51, 51, 1.00)}.icon-bar.secondary > .item{color:rgba(51, 51, 51, 1.00)}.icon-bar.secondary > .item label,.icon-bar.secondary > .item i{color:rgba(51, 51, 51, 1.00)}.icon-bar.secondary > .item:hover{background-color:rgba(187, 185, 186, 1.00);color:rgba(51, 51, 51, 1.00)}form[data-abide] .error label{color:rgba(240, 65, 36, 1.00)}form[data-abide] .error small.error,form[data-abide] .error span.error{background-color:rgba(240, 65, 36, 1.00);color:rgba(3, 7, 3, 1.00)}input[type="radio"]{margin-left:1px}form input[type="text"],form input[type="password"],form input[type="date"],form input[type="datetime"],form input[type="datetime-local"],form input[type="month"],form input[type="week"],form input[type="email"],form input[type="number"],form input[type="search"],form input[type="tel"],form input[type="time"],form input[type="url"],form textarea,form select{font-size:16px;color:rgba(51, 51, 51, 1.00)}form input[type="text"]:focus,form input[type="password"]:focus,form input[type="date"]:focus,form input[type="datetime"]:focus,form input[type="datetime-local"]:focus,form input[type="month"]:focus,form input[type="week"]:focus,form input[type="email"]:focus,form input[type="number"]:focus,form input[type="search"]:focus,form input[type="tel"]:focus,form input[type="time"]:focus,form input[type="url"]:focus,form textarea:focus,form select:focus{border-color:rgba(59, 59, 59, 1.00)}form fieldset{border-color:rgba(51, 51, 51, 1.00)}form legend{background-color:#FFFFFF}form label{color:rgba(61, 61, 61, 1.00)}form.radius input[type="text"],form.radius input[type="password"],form.radius input[type="date"],form.radius input[type="datetime"],form.radius input[type="datetime-local"],form.radius input[type="month"],form.radius input[type="week"],form.radius input[type="email"],form.radius input[type="number"],form.radius input[type="search"],form.radius input[type="tel"],form.radius input[type="time"],form.radius input[type="url"],form.radius textarea,form.radius select,form.radius small.error{border-radius:3px}form.radius span.prefix,form.radius label.prefix{border-bottom-left-radius:3px;border-top-left-radius:3px}form.radius span.postfix,form.radius label.postfix{border-top-right-radius:3px;border-bottom-right-radius:3px}form.radius .input-group > *:first-child,form.radius .input-group > *:first-child *{border-bottom-left-radius:3px;border-top-left-radius:3px}form.radius .input-group > *:last-child,form.radius .input-group > *:last-child *{border-top-right-radius:3px;border-bottom-right-radius:3px}.range-slider,.range-slider.radius,.range-slider.round{background-color:rgba(3, 7, 3, 1.00);border-color:rgba(0, 0, 0, 1.00)}.range-slider .range-slider-handle,.range-slider.radius .range-slider-handle,.range-slider.round .range-slider-handle{background-color:rgba(59, 59, 59, 1.00)}.range-slider .range-slider-handle:hover,.range-slider.radius .range-slider-handle:hover,.range-slider.round .range-slider-handle:hover{background-color:rgba(56, 56, 56, 1.00)}.range-slider .range-slider-active-segment,.range-slider.radius .range-slider-active-segment,.range-slider.round .range-slider-active-segment{background-color:rgba(0, 0, 0, 1.00)}.range-slider.secondary,.range-slider.radius.secondary,.range-slider.round.secondary{background-color:rgba(51, 51, 51, 1.00);border-color:rgba(21, 21, 21, 1.00)}.range-slider.secondary .range-slider-handle,.range-slider.radius.secondary .range-slider-handle,.range-slider.round.secondary .range-slider-handle{background-color:rgba(197, 195, 196, 1.00)}.range-slider.secondary .range-slider-handle:hover,.range-slider.radius.secondary .range-slider-handle:hover,.range-slider.round.secondary .range-slider-handle:hover{background-color:rgba(187, 185, 186, 1.00)}.range-slider.secondary .range-slider-active-segment,.range-slider.radius.secondary .range-slider-active-segment,.range-slider.round.secondary .range-slider-active-segment{background-color:rgba(21, 21, 21, 1.00)}.slider-display{display:block;margin-top:16px}fieldset.switch label{background-color:#e6e6e6}fieldset.switch label::after{background-color:rgba(3, 7, 3, 1.00)}fieldset.switch input:checked + label{background-color:rgba(59, 59, 59, 1.00)}fieldset.switch.secondary label::after{background-color:rgba(51, 51, 51, 1.00)}fieldset.switch.secondary input:checked + label{background-color:rgba(197, 195, 196, 1.00)}fieldset.switch.alert input:checked + label{background-color:rgba(240, 65, 36, 1.00)}fieldset.switch.success input:checked + label{background-color:rgba(67, 172, 106, 1.00)}.label{background-color:rgba(59, 59, 59, 1.00);color:rgba(3, 7, 3, 1.00);margin-bottom:0}.label.secondary{background-color:rgba(197, 195, 196, 1.00);color:rgba(51, 51, 51, 1.00)}.label.alert{background-color:rgba(240, 65, 36, 1.00)}.label.success{background-color:rgba(67, 172, 106, 1.00)}.label.radius{border-radius:3px}.alert-box .close{opacity:0.5}.slideshow-wrapper{min-height:50px;z-index:10}.orbit-container .orbit-bullets li{cursor:pointer;background:rgba(197, 195, 196, 1.00)}.orbit-container .orbit-bullets li.active,.orbit-container .orbit-bullets li:hover{background:rgba(59, 59, 59, 1.00)}.accordion .accordion-navigation > a{background-color:rgba(59, 59, 59, 1.00);color:rgba(3, 7, 3, 1.00)}.accordion .accordion-navigation > a:hover{background-color:rgba(56, 56, 56, 1.00)}.accordion .accordion-navigation > a.radius{border-radius:3px}.accordion .accordion-navigation > a.round{border-radius:1000px}.accordion .accordion-navigation.active > a{background-color:rgba(56, 56, 56, 1.00)}.accordion .accordion-navigation > .content{background-color:transparent !important}.accordion.secondary .accordion-navigation > a{background-color:rgba(197, 195, 196, 1.00);color:rgba(51, 51, 51, 1.00)}.accordion.secondary .accordion-navigation > a:hover{background-color:rgba(187, 185, 186, 1.00)}.accordion.secondary .accordion-navigation.active > a{background-color:rgba(187, 185, 186, 1.00)}.tabs li.tab-title > a{background-color:rgba(59, 59, 59, 1.00);color:rgba(3, 7, 3, 1.00)}.tabs li.tab-title > a:hover{background-color:rgba(56, 56, 56, 1.00)}.tabs li.tab-title.active > a{color:rgba(3, 7, 3, 1.00);background-color:rgba(56, 56, 56, 1.00)}.tabs.secondary li.tab-title > a{background-color:rgba(197, 195, 196, 1.00);color:rgba(51, 51, 51, 1.00)}.tabs.secondary li.tab-title > a:hover{background-color:rgba(187, 185, 186, 1.00)}.tabs.secondary li.tab-title.active > a{color:rgba(51, 51, 51, 1.00);background-color:rgba(187, 185, 186, 1.00)}.tabs.swatch1 li.tab-title > a{background-color:rgba(255, 255, 255, 1.00);color:rgba(127, 127, 127, 1.00)}.tabs.swatch1 li.tab-title > a:hover{background-color:rgba(242, 242, 242, 1.00)}.tabs.swatch1 li.tab-title.active > a{color:rgba(127, 127, 127, 1.00);background-color:rgba(242, 242, 242, 1.00)}.tabs.swatch2 li.tab-title > a{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.tabs.swatch2 li.tab-title > a:hover{background-color:rgba(32, 32, 32, 1.00)}.tabs.swatch2 li.tab-title.active > a{color:rgba(248, 248, 248, 1.00);background-color:rgba(32, 32, 32, 1.00)}.tabs.swatch3 li.tab-title > a{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.tabs.swatch3 li.tab-title > a:hover{background-color:rgba(32, 32, 32, 1.00)}.tabs.swatch3 li.tab-title.active > a{color:rgba(248, 248, 248, 1.00);background-color:rgba(32, 32, 32, 1.00)}.tabs.swatch4 li.tab-title > a{background-color:rgba(249, 196, 41, 1.00);color:rgba(76, 76, 76, 1.00)}.tabs.swatch4 li.tab-title > a:hover{background-color:rgba(236, 186, 38, 1.00)}.tabs.swatch4 li.tab-title.active > a{color:rgba(76, 76, 76, 1.00);background-color:rgba(236, 186, 38, 1.00)}.tabs.swatch5 li.tab-title > a{background-color:rgba(102, 102, 102, 1.00);color:rgba(255, 255, 255, 1.00)}.tabs.swatch5 li.tab-title > a:hover{background-color:rgba(96, 96, 96, 1.00)}.tabs.swatch5 li.tab-title.active > a{color:rgba(255, 255, 255, 1.00);background-color:rgba(96, 96, 96, 1.00)}.tabs.swatch6 li.tab-title > a{background-color:rgba(3, 7, 3, 1.00);color:rgba(34, 34, 34, 1.00)}.tabs.swatch6 li.tab-title > a:hover{background-color:rgba(2, 6, 2, 1.00)}.tabs.swatch6 li.tab-title.active > a{color:rgba(34, 34, 34, 1.00);background-color:rgba(2, 6, 2, 1.00)}.tabs.radius li.tab-title:first-child a{border-bottom-left-radius:3px;border-top-left-radius:3px}.tabs.radius li.tab-title:last-child a{border-top-right-radius:3px;border-bottom-right-radius:3px}.th.radius{border-radius:3px}.th:hover,.th:focus{-webkit-box-shadow:0 0 6px 1px rgba(29, 29, 29, 1.00);box-shadow:0 0 6px 1px rgba(29, 29, 29, 1.00)}.f-dropdown,.f-dropdown.content{background-color:rgba(3, 7, 3, 1.00);border-color:rgba(2, 5, 2, 1.00);color:rgba(51, 51, 51, 1.00)}.f-dropdown::before,.f-dropdown.content::before{border-color:transparent transparent rgba(3, 7, 3, 1.00) transparent}.f-dropdown::after,.f-dropdown.content::after{border-color:transparent transparent rgba(2, 5, 2, 1.00) transparent}.f-dropdown li a,.f-dropdown.content li a{color:rgba(51, 51, 51, 1.00)}.f-dropdown li:hover,.f-dropdown.content li:hover{background-color:rgba(0,0,0,0.1)}.f-dropdown.radius,.f-dropdown.content.radius{border-radius:3px}.tooltip{border-radius:3px;background-color:rgba(51, 51, 51, 1.00);color:rgba(3, 7, 3, 1.00)}.panel{background-color:rgba(206, 204, 205, 1.00);border-color:rgba(187, 185, 186, 1.00)}.panel.radius{border-radius:3px}.panel p{color:rgba(51, 51, 51, 1.00)}.panel p a{color:rgba(0, 0, 255, 1.00)}.panel p.alt{color:rgba(3, 7, 3, 1.00)}.panel p.alt a{color:rgba(0, 0, 255, 1.00)}.panel p.alt a:hover{color:rgba(249, 196, 41, 1.00)}.panel p.alt small{color:rgba(3, 9, 3, 1.00)}.panel h1,.panel h2,.panel h3,.panel h4,.panel h5,.panel h6{color:rgba(3, 7, 3, 1.00)}.panel h1.alt,.panel h2.alt,.panel h3.alt,.panel h4.alt,.panel h5.alt,.panel h6.alt{color:rgba(3, 7, 3, 1.00)}.panel h1.subheader,.panel h2.subheader,.panel h3.subheader,.panel h4.subheader,.panel h5.subheader,.panel h6.subheader{color:rgba(3, 9, 3, 1.00)}.panel h1.subheader.alt,.panel h2.subheader.alt,.panel h3.subheader.alt,.panel h4.subheader.alt,.panel h5.subheader.alt,.panel h6.subheader.alt{color:rgba(3, 9, 3, 1.00)}.pricing-table.primary .title{background-color:rgba(59, 59, 59, 1.00);color:rgba(3, 7, 3, 1.00)}.pricing-table.primary .price{color:rgba(51, 51, 51, 1.00)}.pricing-table.primary .description{color:rgba(51, 51, 51, 1.00)}.pricing-table.primary .bullet-item{color:rgba(51, 51, 51, 1.00)}.pricing-table.secondary .title{background-color:rgba(197, 195, 196, 1.00);color:rgba(51, 51, 51, 1.00)}.pricing-table.secondary .price{color:rgba(51, 51, 51, 1.00)}.pricing-table.secondary .description{color:rgba(51, 51, 51, 1.00)}.pricing-table.secondary .bullet-item{color:rgba(51, 51, 51, 1.00)}.pricing-table.radius{border-radius:3px}.pricing-table.radius .title{border-top-right-radius:3px;border-top-left-radius:3px}.pricing-table.radius .cta-button{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.side-nav li a:not(.button){color:rgba(0, 0, 255, 1.00)}.side-nav li a:not(.button):hover{background-color:rgba(56, 56, 56, 1.00);color:rgba(251, 2, 128, 1.00)}.side-nav li.active > a:first-child:not(.button){color:rgba(0, 0, 255, 1.00)}.side-nav li.active:not(.has-dropdown) a:not(.button){color:rgba(0, 0, 216, 1.00)}.side-nav header{color:rgba(51, 51, 51, 1.00);margin-top:1rem;margin-bottom:0.5rem}.side-nav label{color:rgba(61, 61, 61, 1.00)}.side-nav li.divider{border-top-color:rgba(51, 51, 51, 1.00)}.side-nav.alt li a:not(.button){color:rgba(0, 0, 255, 1.00)}.side-nav.alt li a:not(.button):hover{background-color:rgba(255, 255, 255, 1.00);color:rgba(249, 196, 41, 1.00)}.side-nav.alt li.active > a:first-child:not(.button){color:rgba(0, 0, 255, 1.00)}.side-nav.alt li.active:not(.has-dropdown) a:not(.button){color:rgba(0, 0, 216, 1.00)}.side-nav.alt header{color:rgba(3, 7, 3, 1.00)}.side-nav.alt label{color:rgba(3, 8, 3, 1.00)}.side-nav.alt li.divider{border-top-color:rgba(255, 255, 255, 1.00)}.sub-nav dt,.sub-nav dd,.sub-nav li{float:none;display:inline-block}.sub-nav dt a:not(.button),.sub-nav dd a:not(.button),.sub-nav li a:not(.button){color:rgba(59, 59, 59, 1.00)}.sub-nav dt a:not(.button):hover,.sub-nav dd a:not(.button):hover,.sub-nav li a:not(.button):hover{color:rgba(56, 56, 56, 1.00)}.sub-nav dt.active a:not(.button),.sub-nav dd.active a:not(.button),.sub-nav li.active a:not(.button){color:rgba(3, 7, 3, 1.00);background-color:rgba(59, 59, 59, 1.00)}.sub-nav dt.active a:not(.button):hover,.sub-nav dd.active a:not(.button):hover,.sub-nav li.active a:not(.button):hover{background-color:rgba(56, 56, 56, 1.00)}.sub-nav dt.active a.secondary:not(.button),.sub-nav dd.active a.secondary:not(.button),.sub-nav li.active a.secondary:not(.button){color:rgba(51, 51, 51, 1.00);background-color:rgba(197, 195, 196, 1.00)}.sub-nav dt.active a.secondary:not(.button):hover,.sub-nav dd.active a.secondary:not(.button):hover,.sub-nav li.active a.secondary:not(.button):hover{background-color:rgba(187, 185, 186, 1.00)}.sub-nav.secondary dt a:not(.button),.sub-nav.secondary dd a:not(.button),.sub-nav.secondary li a:not(.button){color:rgba(197, 195, 196, 1.00)}.sub-nav.secondary dt a:not(.button):hover,.sub-nav.secondary dd a:not(.button):hover,.sub-nav.secondary li a:not(.button):hover{color:rgba(187, 185, 186, 1.00)}.sub-nav.secondary dt.active a:not(.button),.sub-nav.secondary dd.active a:not(.button),.sub-nav.secondary li.active a:not(.button){color:rgba(51, 51, 51, 1.00);background-color:rgba(197, 195, 196, 1.00)}.sub-nav.secondary dt.active a:not(.button):hover,.sub-nav.secondary dd.active a:not(.button):hover,.sub-nav.secondary li.active a:not(.button):hover{background-color:rgba(187, 185, 186, 1.00)}.reveal-modal{z-index:9999;background-color:rgba(3, 7, 3, 1.00);color:rgba(51, 51, 51, 1.00);border:none;border-radius:0}@media screen and (max-width:39.9375em){.reveal-modal{border-radius:0 !important}}.reveal-modal.fullscreen{position:fixed;top:0px !important;width:100vw;height:100vh;overflow-y:scroll}.reveal-modal.fullscreen .close-reveal-modal{position:fixed}.reveal-modal.radius{border-radius:3px}.reveal-modal .close-reveal-modal{color:rgba(170, 170, 170, 1.00);font-weight:normal;z-index:99999}.reveal-modal-bg{z-index:9998;background:rgba(0, 0, 0, 0.45)}nav.inline-nav ul.inline-list{margin-left:0}nav.inline-nav ul.inline-list li{float:none;display:inline-block}nav.inline-nav ul.inline-list li:first-child{margin-left:0}nav.inline-nav ul.inline-list li.active{border-width:0 0 1px 0;border-style:solid;border-bottom-color:rgba(0, 0, 255, 1.00)}nav.inline-nav ul.inline-list.alt li.active{border-bottom-color:rgba(0, 0, 255, 1.00)}.clearing-blackout{background-color:rgba(3, 7, 3, 1.00)}.clearing-assembled .clearing-container .visible-img,.clearing-assembled .clearing-container .clearing-caption{background-color:rgba(3, 7, 3, 1.00)}.clearing-assembled .clearing-container .carousel{background-color:rgba(2, 6, 2, 1.00)}.clearing-assembled .clearing-container .clearing-close{color:rgba(170, 170, 170, 1.00)}.clearing-assembled .clearing-container .clearing-close:hover,.clearing-assembled .clearing-container .clearing-close:focus{color:rgba(170, 170, 170, 1.00)}.clearing-assembled .clearing-container .clearing-main-next > span{border-color:transparent;border-left-color:rgba(51, 51, 51, 1.00)}.clearing-assembled .clearing-container .clearing-main-prev > span{border-color:transparent;border-right-color:rgba(51, 51, 51, 1.00)}.clearing-assembled .clearing-container .clearing-caption{color:rgba(51, 51, 51, 1.00)}.copyright{color:rgba(51, 51, 51, 1.00);font-size:0.9rem}.copyright a{color:rgba(0, 0, 255, 1.00)}.copyright a:hover{color:rgba(251, 2, 128, 1.00)}.stacks_s_hidden,.stacks_m_hidden,.stacks_l_hidden{display:block !important}@media only screen and (max-width:40em){.stacks_s_hidden{display:none !important}}@media only screen and (min-width:40.063em) and (max-width:62.5em){.stacks_m_hidden{display:none !important}}@media only screen and (min-width:62.563em){.stacks_l_hidden{display:none !important}}.fn-text-header{color:rgba(3, 7, 3, 1.00)}.fn-text-link a{color:rgba(0, 0, 255, 1.00)}.fn-text-link a:hover{color:rgba(251, 2, 128, 1.00)}.fn-text-text{color:rgba(51, 51, 51, 1.00)}.fn-text-text p,.fn-text-text div{color:rgba(51, 51, 51, 1.00)}.fn-text-accent{color:rgba(51, 51, 51, 1.00)}.fn-text-code-text{color:rgba(204, 55, 30, 1.00)}.fn-text-header-alt{color:rgba(3, 7, 3, 1.00)}.fn-text-link-alt a{color:rgba(0, 0, 255, 1.00)}.fn-text-link-alt a:hover{color:rgba(249, 196, 41, 1.00)}.fn-text-accent-alt{color:rgba(255, 255, 255, 1.00)}.fn-text-primary{color:rgba(59, 59, 59, 1.00)}.fn-text-primary-text{color:rgba(3, 7, 3, 1.00)}.fn-text-primary-text p,.fn-text-primary-text div{color:rgba(3, 7, 3, 1.00)}.fn-text-secondary{color:rgba(197, 195, 196, 1.00)}.fn-text-secondary-text{color:rgba(51, 51, 51, 1.00)}.fn-text-secondary-text p,.fn-text-secondary-text div{color:rgba(51, 51, 51, 1.00)}.fn-text-alert{color:rgba(240, 65, 36, 1.00)}.fn-text-success{color:rgba(67, 172, 106, 1.00)}.fn-text-warning{color:rgba(240, 138, 36, 1.00)}.fn-text-info{color:rgba(3, 7, 3, 1.00)}.fn-text-modal{color:rgba(3, 7, 3, 1.00)}.fn-text-modal-close{color:rgba(170, 170, 170, 1.00)}.fn-text-modal-text{color:rgba(51, 51, 51, 1.00)}.fn-text-modal-text p,.fn-text-modal-text div{color:rgba(51, 51, 51, 1.00)}.fn-text-text-alt{color:rgba(3, 7, 3, 1.00)}.fn-text-text-alt p,.fn-text-text-alt div{color:rgba(3, 7, 3, 1.00)}.fn-text-text-alt h1,.fn-text-text-alt h2,.fn-text-text-alt h3,.fn-text-text-alt h4,.fn-text-text-alt h5,.fn-text-text-alt h6{color:rgba(3, 7, 3, 1.00)}.fn-text-text-alt h1 a,.fn-text-text-alt h2 a,.fn-text-text-alt h3 a,.fn-text-text-alt h4 a,.fn-text-text-alt h5 a,.fn-text-text-alt h6 a{color:rgba(3, 7, 3, 1.00)}.fn-text-text-alt h1 a:hover,.fn-text-text-alt h2 a:hover,.fn-text-text-alt h3 a:hover,.fn-text-text-alt h4 a:hover,.fn-text-text-alt h5 a:hover,.fn-text-text-alt h6 a:hover{color:rgba(3, 9, 3, 1.00)}.fn-text-text-alt h1 small,.fn-text-text-alt h2 small,.fn-text-text-alt h3 small,.fn-text-text-alt h4 small,.fn-text-text-alt h5 small,.fn-text-text-alt h6 small{color:rgba(3, 7, 3, 1.00)}.fn-text-text-alt a{color:rgba(0, 0, 255, 1.00)}.fn-text-text-alt a:hover{color:rgba(249, 196, 41, 1.00)}.fn-text-sw1c1{color:rgba(255, 255, 255, 1.00)}.fn-text-sw1c1 p,.fn-text-sw1c1 div{color:rgba(255, 255, 255, 1.00)}.fn-text-sw1c1 h1,.fn-text-sw1c1 h2,.fn-text-sw1c1 h3,.fn-text-sw1c1 h4,.fn-text-sw1c1 h5,.fn-text-sw1c1 h6,.fn-text-sw1c1 a{color:rgba(127, 127, 127, 1.00)}.fn-text-sw1c1 a:hover{color:rgba(120, 120, 120, 1.00)}.fn-text-sw1c2{color:rgba(127, 127, 127, 1.00)}.fn-text-sw1c2 p,.fn-text-sw1c2 div{color:rgba(127, 127, 127, 1.00)}.fn-text-sw1c2 h1,.fn-text-sw1c2 h2,.fn-text-sw1c2 h3,.fn-text-sw1c2 h4,.fn-text-sw1c2 h5,.fn-text-sw1c2 h6,.fn-text-sw1c2 a{color:rgba(255, 255, 255, 1.00)}.fn-text-sw1c2 a:hover{color:rgba(242, 242, 242, 1.00)}.fn-text-sw2c1{color:rgba(34, 34, 34, 1.00)}.fn-text-sw2c1 p,.fn-text-sw2c1 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw2c1 h1,.fn-text-sw2c1 h2,.fn-text-sw2c1 h3,.fn-text-sw2c1 h4,.fn-text-sw2c1 h5,.fn-text-sw2c1 h6,.fn-text-sw2c1 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw2c1 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-text-sw2c2{color:rgba(248, 248, 248, 1.00)}.fn-text-sw2c2 p,.fn-text-sw2c2 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw2c2 h1,.fn-text-sw2c2 h2,.fn-text-sw2c2 h3,.fn-text-sw2c2 h4,.fn-text-sw2c2 h5,.fn-text-sw2c2 h6,.fn-text-sw2c2 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw2c2 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw3c1{color:rgba(34, 34, 34, 1.00)}.fn-text-sw3c1 p,.fn-text-sw3c1 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw3c1 h1,.fn-text-sw3c1 h2,.fn-text-sw3c1 h3,.fn-text-sw3c1 h4,.fn-text-sw3c1 h5,.fn-text-sw3c1 h6,.fn-text-sw3c1 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw3c1 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-text-sw3c2{color:rgba(248, 248, 248, 1.00)}.fn-text-sw3c2 p,.fn-text-sw3c2 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw3c2 h1,.fn-text-sw3c2 h2,.fn-text-sw3c2 h3,.fn-text-sw3c2 h4,.fn-text-sw3c2 h5,.fn-text-sw3c2 h6,.fn-text-sw3c2 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw3c2 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw4c1{color:rgba(249, 196, 41, 1.00)}.fn-text-sw4c1 p,.fn-text-sw4c1 div{color:rgba(249, 196, 41, 1.00)}.fn-text-sw4c1 h1,.fn-text-sw4c1 h2,.fn-text-sw4c1 h3,.fn-text-sw4c1 h4,.fn-text-sw4c1 h5,.fn-text-sw4c1 h6,.fn-text-sw4c1 a{color:rgba(76, 76, 76, 1.00)}.fn-text-sw4c1 a:hover{color:rgba(72, 72, 72, 1.00)}.fn-text-sw4c2{color:rgba(76, 76, 76, 1.00)}.fn-text-sw4c2 p,.fn-text-sw4c2 div{color:rgba(76, 76, 76, 1.00)}.fn-text-sw4c2 h1,.fn-text-sw4c2 h2,.fn-text-sw4c2 h3,.fn-text-sw4c2 h4,.fn-text-sw4c2 h5,.fn-text-sw4c2 h6,.fn-text-sw4c2 a{color:rgba(249, 196, 41, 1.00)}.fn-text-sw4c2 a:hover{color:rgba(236, 186, 38, 1.00)}.fn-text-sw5c1{color:rgba(102, 102, 102, 1.00)}.fn-text-sw5c1 p,.fn-text-sw5c1 div{color:rgba(102, 102, 102, 1.00)}.fn-text-sw5c1 h1,.fn-text-sw5c1 h2,.fn-text-sw5c1 h3,.fn-text-sw5c1 h4,.fn-text-sw5c1 h5,.fn-text-sw5c1 h6,.fn-text-sw5c1 a{color:rgba(255, 255, 255, 1.00)}.fn-text-sw5c1 a:hover{color:rgba(242, 242, 242, 1.00)}.fn-text-sw5c2{color:rgba(255, 255, 255, 1.00)}.fn-text-sw5c2 p,.fn-text-sw5c2 div{color:rgba(255, 255, 255, 1.00)}.fn-text-sw5c2 h1,.fn-text-sw5c2 h2,.fn-text-sw5c2 h3,.fn-text-sw5c2 h4,.fn-text-sw5c2 h5,.fn-text-sw5c2 h6,.fn-text-sw5c2 a{color:rgba(102, 102, 102, 1.00)}.fn-text-sw5c2 a:hover{color:rgba(96, 96, 96, 1.00)}.fn-text-sw6c1{color:rgba(3, 7, 3, 1.00)}.fn-text-sw6c1 p,.fn-text-sw6c1 div{color:rgba(3, 7, 3, 1.00)}.fn-text-sw6c1 h1,.fn-text-sw6c1 h2,.fn-text-sw6c1 h3,.fn-text-sw6c1 h4,.fn-text-sw6c1 h5,.fn-text-sw6c1 h6,.fn-text-sw6c1 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw6c1 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw6c2{color:rgba(34, 34, 34, 1.00)}.fn-text-sw6c2 p,.fn-text-sw6c2 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw6c2 h1,.fn-text-sw6c2 h2,.fn-text-sw6c2 h3,.fn-text-sw6c2 h4,.fn-text-sw6c2 h5,.fn-text-sw6c2 h6,.fn-text-sw6c2 a{color:rgba(3, 7, 3, 1.00)}.fn-text-sw6c2 a:hover{color:rgba(2, 6, 2, 1.00)}.panel .fn-text-sw1c1{color:rgba(255, 255, 255, 1.00)}.panel .fn-text-sw1c1 p,.panel .fn-text-sw1c1 div{color:rgba(255, 255, 255, 1.00)}.panel .fn-text-sw1c1 h1,.panel .fn-text-sw1c1 h2,.panel .fn-text-sw1c1 h3,.panel .fn-text-sw1c1 h4,.panel .fn-text-sw1c1 h5,.panel .fn-text-sw1c1 h6,.panel .fn-text-sw1c1 a{color:rgba(127, 127, 127, 1.00)}.panel .fn-text-sw1c1 a:hover{color:rgba(120, 120, 120, 1.00)}.panel .fn-text-sw1c2{color:rgba(127, 127, 127, 1.00)}.panel .fn-text-sw1c2 p,.panel .fn-text-sw1c2 div{color:rgba(127, 127, 127, 1.00)}.panel .fn-text-sw1c2 h1,.panel .fn-text-sw1c2 h2,.panel .fn-text-sw1c2 h3,.panel .fn-text-sw1c2 h4,.panel .fn-text-sw1c2 h5,.panel .fn-text-sw1c2 h6,.panel .fn-text-sw1c2 a{color:rgba(255, 255, 255, 1.00)}.panel .fn-text-sw1c2 a:hover{color:rgba(242, 242, 242, 1.00)}.panel .fn-text-sw2c1{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw2c1 p,.panel .fn-text-sw2c1 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw2c1 h1,.panel .fn-text-sw2c1 h2,.panel .fn-text-sw2c1 h3,.panel .fn-text-sw2c1 h4,.panel .fn-text-sw2c1 h5,.panel .fn-text-sw2c1 h6,.panel .fn-text-sw2c1 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw2c1 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw2c2{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw2c2 p,.panel .fn-text-sw2c2 div{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw2c2 h1,.panel .fn-text-sw2c2 h2,.panel .fn-text-sw2c2 h3,.panel .fn-text-sw2c2 h4,.panel .fn-text-sw2c2 h5,.panel .fn-text-sw2c2 h6,.panel .fn-text-sw2c2 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw2c2 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw3c1{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw3c1 p,.panel .fn-text-sw3c1 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw3c1 h1,.panel .fn-text-sw3c1 h2,.panel .fn-text-sw3c1 h3,.panel .fn-text-sw3c1 h4,.panel .fn-text-sw3c1 h5,.panel .fn-text-sw3c1 h6,.panel .fn-text-sw3c1 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw3c1 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw3c2{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw3c2 p,.panel .fn-text-sw3c2 div{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw3c2 h1,.panel .fn-text-sw3c2 h2,.panel .fn-text-sw3c2 h3,.panel .fn-text-sw3c2 h4,.panel .fn-text-sw3c2 h5,.panel .fn-text-sw3c2 h6,.panel .fn-text-sw3c2 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw3c2 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw4c1{color:rgba(249, 196, 41, 1.00)}.panel .fn-text-sw4c1 p,.panel .fn-text-sw4c1 div{color:rgba(249, 196, 41, 1.00)}.panel .fn-text-sw4c1 h1,.panel .fn-text-sw4c1 h2,.panel .fn-text-sw4c1 h3,.panel .fn-text-sw4c1 h4,.panel .fn-text-sw4c1 h5,.panel .fn-text-sw4c1 h6,.panel .fn-text-sw4c1 a{color:rgba(76, 76, 76, 1.00)}.panel .fn-text-sw4c1 a:hover{color:rgba(72, 72, 72, 1.00)}.panel .fn-text-sw4c2{color:rgba(76, 76, 76, 1.00)}.panel .fn-text-sw4c2 p,.panel .fn-text-sw4c2 div{color:rgba(76, 76, 76, 1.00)}.panel .fn-text-sw4c2 h1,.panel .fn-text-sw4c2 h2,.panel .fn-text-sw4c2 h3,.panel .fn-text-sw4c2 h4,.panel .fn-text-sw4c2 h5,.panel .fn-text-sw4c2 h6,.panel .fn-text-sw4c2 a{color:rgba(249, 196, 41, 1.00)}.panel .fn-text-sw4c2 a:hover{color:rgba(236, 186, 38, 1.00)}.panel .fn-text-sw5c1{color:rgba(102, 102, 102, 1.00)}.panel .fn-text-sw5c1 p,.panel .fn-text-sw5c1 div{color:rgba(102, 102, 102, 1.00)}.panel .fn-text-sw5c1 h1,.panel .fn-text-sw5c1 h2,.panel .fn-text-sw5c1 h3,.panel .fn-text-sw5c1 h4,.panel .fn-text-sw5c1 h5,.panel .fn-text-sw5c1 h6,.panel .fn-text-sw5c1 a{color:rgba(255, 255, 255, 1.00)}.panel .fn-text-sw5c1 a:hover{color:rgba(242, 242, 242, 1.00)}.panel .fn-text-sw5c2{color:rgba(255, 255, 255, 1.00)}.panel .fn-text-sw5c2 p,.panel .fn-text-sw5c2 div{color:rgba(255, 255, 255, 1.00)}.panel .fn-text-sw5c2 h1,.panel .fn-text-sw5c2 h2,.panel .fn-text-sw5c2 h3,.panel .fn-text-sw5c2 h4,.panel .fn-text-sw5c2 h5,.panel .fn-text-sw5c2 h6,.panel .fn-text-sw5c2 a{color:rgba(102, 102, 102, 1.00)}.panel .fn-text-sw5c2 a:hover{color:rgba(96, 96, 96, 1.00)}.panel .fn-text-sw6c1{color:rgba(3, 7, 3, 1.00)}.panel .fn-text-sw6c1 p,.panel .fn-text-sw6c1 div{color:rgba(3, 7, 3, 1.00)}.panel .fn-text-sw6c1 h1,.panel .fn-text-sw6c1 h2,.panel .fn-text-sw6c1 h3,.panel .fn-text-sw6c1 h4,.panel .fn-text-sw6c1 h5,.panel .fn-text-sw6c1 h6,.panel .fn-text-sw6c1 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw6c1 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw6c2{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw6c2 p,.panel .fn-text-sw6c2 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw6c2 h1,.panel .fn-text-sw6c2 h2,.panel .fn-text-sw6c2 h3,.panel .fn-text-sw6c2 h4,.panel .fn-text-sw6c2 h5,.panel .fn-text-sw6c2 h6,.panel .fn-text-sw6c2 a{color:rgba(3, 7, 3, 1.00)}.panel .fn-text-sw6c2 a:hover{color:rgba(2, 6, 2, 1.00)}.fn-bg-header{background-color:rgba(3, 7, 3, 1.00)}.fn-bg-text{background-color:rgba(51, 51, 51, 1.00)}.fn-bg-link{background-color:rgba(0, 0, 255, 1.00)}.fn-bg-link-hover{background-color:rgba(251, 2, 128, 1.00)}.fn-bg-accent{background-color:rgba(51, 51, 51, 1.00)}.fn-bg-code-text{background-color:rgba(204, 55, 30, 1.00)}.fn-bg-modal-text{background-color:rgba(51, 51, 51, 1.00)}.fn-bg-header-alt{background-color:rgba(3, 7, 3, 1.00)}.fn-bg-text-alt{background-color:rgba(3, 7, 3, 1.00)}.fn-bg-link-alt{background-color:rgba(0, 0, 255, 1.00)}.fn-bg-link-hover-alt{background-color:rgba(249, 196, 41, 1.00)}.fn-bg-accent-alt{background-color:rgba(255, 255, 255, 1.00)}.fn-bg-primary{background-color:rgba(59, 59, 59, 1.00)}.fn-bg-primary-text{background-color:rgba(3, 7, 3, 1.00)}.fn-bg-secondary{background-color:rgba(197, 195, 196, 1.00)}.fn-bg-secondary-text{background-color:rgba(51, 51, 51, 1.00)}.fn-bg-alert{background-color:rgba(240, 65, 36, 1.00)}.fn-bg-success{background-color:rgba(67, 172, 106, 1.00)}.fn-bg-warning{background-color:rgba(240, 138, 36, 1.00)}.fn-bg-info{background-color:rgba(3, 7, 3, 1.00)}.fn-bg-modal{background-color:rgba(3, 7, 3, 1.00)}.fn-bg-modal-close{background-color:rgba(170, 170, 170, 1.00)}.fn-bg-sw1c1{background-color:rgba(255, 255, 255, 1.00)}.fn-bg-sw1c2{background-color:rgba(127, 127, 127, 1.00)}.fn-bg-sw2c1{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-sw2c2{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw3c1{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-sw3c2{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw4c1{background-color:rgba(249, 196, 41, 1.00)}.fn-bg-sw4c2{background-color:rgba(76, 76, 76, 1.00)}.fn-bg-sw5c1{background-color:rgba(102, 102, 102, 1.00)}.fn-bg-sw5c2{background-color:rgba(255, 255, 255, 1.00)}.fn-bg-sw6c1{background-color:rgba(3, 7, 3, 1.00)}.fn-bg-sw6c2{background-color:rgba(34, 34, 34, 1.00)}.fn-backdrop{background-color:rgba(0, 0, 0, 0.45)}.fn-backdrop-solid{background-color:rgba(0, 0, 0, 0.45)}.fn-scheme-primary{background-color:rgba(59, 59, 59, 1.00);color:rgba(3, 7, 3, 1.00)}.fn-scheme-primary div,.fn-scheme-primary p{color:rgba(3, 7, 3, 1.00)}.fn-scheme-primary.button:hover{background-color:rgba(56, 56, 56, 1.00)}.fn-scheme-secondary{background-color:rgba(197, 195, 196, 1.00);color:rgba(51, 51, 51, 1.00)}.fn-scheme-secondary div,.fn-scheme-secondary p{color:rgba(51, 51, 51, 1.00)}.fn-scheme-secondary.button:hover{background-color:rgba(187, 185, 186, 1.00)}.fn-scheme-modal{background-color:rgba(3, 7, 3, 1.00);color:rgba(51, 51, 51, 1.00)}.fn-scheme-modal div,.fn-scheme-modal p{color:rgba(51, 51, 51, 1.00)}.fn-scheme-modal .close{color:rgba(170, 170, 170, 1.00)}.fn-scheme-swatch1{background-color:rgba(255, 255, 255, 1.00);color:rgba(127, 127, 127, 1.00)}.fn-scheme-swatch1 div,.fn-scheme-swatch1 p{color:rgba(127, 127, 127, 1.00)}.fn-scheme-swatch1.switch{background-color:transparent}.fn-scheme-swatch1.switch label::after{background-color:rgba(127, 127, 127, 1.00)}.fn-scheme-swatch1.switch input:checked + label{background-color:rgba(255, 255, 255, 1.00)}.fn-scheme-swatch1.button:hover{background-color:rgba(242, 242, 242, 1.00)}.fn-scheme-swatch1.ghost{background-color:transparent;border-color:rgba(255, 255, 255, 1.00);color:rgba(255, 255, 255, 1.00)}.fn-scheme-swatch1.ghost.button:hover{color:rgba(127, 127, 127, 1.00);border-color:rgba(242, 242, 242, 1.00);background-color:rgba(242, 242, 242, 1.00)}.fn-scheme-swatch2{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch2 div,.fn-scheme-swatch2 p{color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch2.switch{background-color:transparent}.fn-scheme-swatch2.switch label::after{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch2.switch input:checked + label{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch2.button:hover{background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch2.ghost{background-color:transparent;border-color:rgba(34, 34, 34, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch2.ghost.button:hover{color:rgba(248, 248, 248, 1.00);border-color:rgba(32, 32, 32, 1.00);background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch3{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch3 div,.fn-scheme-swatch3 p{color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch3.switch{background-color:transparent}.fn-scheme-swatch3.switch label::after{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch3.switch input:checked + label{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch3.button:hover{background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch3.ghost{background-color:transparent;border-color:rgba(34, 34, 34, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch3.ghost.button:hover{color:rgba(248, 248, 248, 1.00);border-color:rgba(32, 32, 32, 1.00);background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch4{background-color:rgba(249, 196, 41, 1.00);color:rgba(76, 76, 76, 1.00)}.fn-scheme-swatch4 div,.fn-scheme-swatch4 p{color:rgba(76, 76, 76, 1.00)}.fn-scheme-swatch4.switch{background-color:transparent}.fn-scheme-swatch4.switch label::after{background-color:rgba(127, 127, 127, 1.00)}.fn-scheme-swatch4.switch input:checked + label{background-color:rgba(255, 255, 255, 1.00)}.fn-scheme-swatch4.switch label::after{background-color:rgba(76, 76, 76, 1.00)}.fn-scheme-swatch4.switch input:checked + label{background-color:rgba(249, 196, 41, 1.00)}.fn-scheme-swatch4.button:hover{background-color:rgba(236, 186, 38, 1.00)}.fn-scheme-swatch4.ghost{background-color:transparent;border-color:rgba(249, 196, 41, 1.00);color:rgba(249, 196, 41, 1.00)}.fn-scheme-swatch4.ghost.button:hover{color:rgba(76, 76, 76, 1.00);border-color:rgba(236, 186, 38, 1.00);background-color:rgba(236, 186, 38, 1.00)}.fn-scheme-swatch5{background-color:rgba(102, 102, 102, 1.00);color:rgba(255, 255, 255, 1.00)}.fn-scheme-swatch5 div,.fn-scheme-swatch5 p{color:rgba(255, 255, 255, 1.00)}.fn-scheme-swatch5.button:hover{background-color:rgba(96, 96, 96, 1.00)}.fn-scheme-swatch5.switch{background-color:transparent}.fn-scheme-swatch5.switch label::after{background-color:rgba(255, 255, 255, 1.00)}.fn-scheme-swatch5.switch input:checked + label{background-color:rgba(102, 102, 102, 1.00)}.fn-scheme-swatch5.ghost{background-color:transparent;border-color:rgba(102, 102, 102, 1.00);color:rgba(102, 102, 102, 1.00)}.fn-scheme-swatch5.ghost.button:hover{color:rgba(255, 255, 255, 1.00);border-color:rgba(96, 96, 96, 1.00);background-color:rgba(96, 96, 96, 1.00)}.fn-scheme-swatch6{background-color:rgba(3, 7, 3, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch6 div,.fn-scheme-swatch6 p{color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch6.switch{background-color:transparent}.fn-scheme-swatch6.switch label::after{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch6.switch input:checked + label{background-color:rgba(3, 7, 3, 1.00)}.fn-scheme-swatch6.button:hover{background-color:rgba(2, 6, 2, 1.00)}.fn-scheme-swatch6.ghost{background-color:transparent;border-color:rgba(3, 7, 3, 1.00);color:rgba(3, 7, 3, 1.00)}.fn-scheme-swatch6.ghost.button:hover{color:rgba(34, 34, 34, 1.00);border-color:rgba(2, 6, 2, 1.00);background-color:rgba(2, 6, 2, 1.00)}
    #stacks_out_69851_page0::before,#stacks_out_69851_page0::after{content:" ";display:table}#stacks_out_69851_page0::after{clear:both}#stacks_in_69851_page0 .nav-dots[data-magellan-expedition]{display:none}#stacks_in_69851_page0 .mg-menu{position:relative}#stacks_in_69851_page0 .mg-menu:not(.mag-vertical){height:55px}#stacks_in_69851_page0 .mg-menu .f-dropdown{max-height:calc(100vh - 55px);z-index:1002;margin-top:3px!important}#stacks_in_69851_page0 .mg-menu .f-dropdown::before,#stacks_in_69851_page0 .mg-menu .f-dropdown::after{left:7px!important;z-index:1002!important}#stacks_in_69851_page0 .mg-menu.dd-no-pip .f-dropdown{overflow-y:scroll;margin-top:0!important}#stacks_in_69851_page0 .mg-menu.dd-no-pip .f-dropdown::before,#stacks_in_69851_page0 .mg-menu.dd-no-pip .f-dropdown::after{display:none!important}#stacks_in_69851_page0 .mg-menu.mag-toggle .f-dropdown.small.content.open.f-open-dropdown{left:2vw!important}#stacks_in_69851_page0 [data-magellan-expedition-clone]{display:none!important}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition]{padding:0;background-color:transparent;min-width:10px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-preload{visibility:hidden;-webkit-transition:opacity 0ms linear;transition:opacity 0ms linear;filter:alpha(opacity=0)}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-hidden,#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].hide-landing.mag-landing{opacity:0;-webkit-transition:opacity 100ms linear;transition:opacity 100ms linear;filter:alpha(opacity=0);pointer-events:none}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition]:not(.mag-hidden),#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].hide-landing:not(.mag-landing):not(.mag-hidden){-webkit-transition:opacity 100ms linear;transition:opacity 100ms linear;opacity:1;filter:alpha(opacity=100)}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].bg-none{background:0}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] li a{text-align:center}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-vertical:not(.mag-toggle){padding:6px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-vertical:not(.mag-toggle) .side-nav{padding:6px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-vertical:not(.mag-toggle) li{margin-bottom:0}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-vertical:not(.mag-toggle).width-max{max-width:200px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-vertical:not(.mag-toggle).width-fixed{max-width:140px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-vertical:not(.mag-toggle).width-auto{width:auto}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal{min-width:100%}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal .side-nav{display:block;margin:0;padding:0}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal .side-nav li{margin:0}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal:not(.mag-full-width) .side-nav{text-align:right}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .side-nav.magic-nav li a{font-size:1.20rem;color:rgba(3, 7, 3, 1.00)}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .side-nav.magic-nav li a:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(76, 76, 76, 1.00)}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .side-nav.magic-nav li a,#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .side-nav.magic-nav li a:not(.button){padding:0 .875rem}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .side-nav.magic-nav li.active a{color:rgba(59, 59, 59, 1.00);background-color:rgba(255, 255, 255, 0.10)}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .side-nav.magic-nav li.active a:hover{color:rgba(59, 59, 59, 1.00);background-color:rgba(204, 204, 204, 1.00)}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .side-nav.magic-nav .magic-icon{display:none}
#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-fixed{z-index:1001}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-fixed.fixed-shadow{-webkit-box-shadow:rgba(0,0,0,0.30) 0 1px 15px;box-shadow:rgba(0,0,0,0.30) 0 1px 15px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .side-nav.magic-nav .mag-item a{background:rgba(204, 204, 204, 0.00)}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .side-nav.magic-nav .mag-item.active a{background:rgba(255, 255, 255, 0.10)}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .mag-title-area{list-style-type:none;margin-bottom:0;padding-left:10px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .mag-title-area>.toggle-target{display:none}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .mag-title-area>.mag-name{display:block;position:relative;padding:0 .9375rem;text-align:center}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .mag-title-area>.mag-name.collapse{padding:0}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .mag-title-area>.mag-name a{ display:inline-block}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .mag-title-area>.mag-name span{height:100%;line-height:55px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .mag-title-area>.mag-name img{display:inline-block;width:auto;padding:0px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .mag-title-area>.mag-name .mag-title{display:inline-block;line-height:55px;padding:0 .875rem;margin:0;vertical-align:top;font-size:2.00rem;color:rgba(3, 7, 3, 1.00)}@media screen and (max-width:1199px){#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .mag-title-area>.mag-name .mag-title{line-height:50px}}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .mag-title-area>.mag-name:not(.contained) img{max-height:85px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .mag-title-area>.mag-name.contained img{height:55px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal .mag-title-area{float:left}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-vertical:not(.mag-toggle) .mag-title-area{margin-bottom:1rem;margin-left:0}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-vertical:not(.mag-toggle) .mag-title-area>.mag-name img{display:block;margin:0 auto;width:auto}@media only screen and (min-width:1200px){#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .side-nav.magic-nav.icons-full .magic-icon{display:inline-block}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal.mag-divider .side-nav li:not(:last-of-type){border-right:1px solid rgba(76, 76, 76, 1.00)}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal .side-nav.magic-nav li{display:inline-block;vertical-align:middle}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal .side-nav.magic-nav li a{line-height:55px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal .mag-title-area{float:left}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal.mag-full-width .mag-title-area{display:none}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal.mag-full-width .magic-nav li:first-child:nth-last-child(10),#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal.mag-full-width .magic-nav li:first-child:nth-last-child(10) ~ li{width:10%}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal.mag-full-width .magic-nav li:first-child:nth-last-child(9),#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal.mag-full-width .magic-nav li:first-child:nth-last-child(9) ~ li{width:11.11111%}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal.mag-full-width .magic-nav li:first-child:nth-last-child(8),#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal.mag-full-width .magic-nav li:first-child:nth-last-child(8) ~ li{width:12.5%}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal.mag-full-width .magic-nav li:first-child:nth-last-child(7),#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal.mag-full-width .magic-nav li:first-child:nth-last-child(7) ~ li{width:14.28571%}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal.mag-full-width .magic-nav li:first-child:nth-last-child(6),#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal.mag-full-width .magic-nav li:first-child:nth-last-child(6) ~ li{width:16.66667%}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal.mag-full-width .magic-nav li:first-child:nth-last-child(5),#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal.mag-full-width .magic-nav li:first-child:nth-last-child(5) ~ li{width:20%}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal.mag-full-width .magic-nav li:first-child:nth-last-child(4),#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal.mag-full-width .magic-nav li:first-child:nth-last-child(4) ~ li{width:25%}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal.mag-full-width .magic-nav li:first-child:nth-last-child(3),#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal.mag-full-width .magic-nav li:first-child:nth-last-child(3) ~ li{width:33.33333%}
#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal.mag-full-width .magic-nav li:first-child:nth-last-child(2),#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal.mag-full-width .magic-nav li:first-child:nth-last-child(2) ~ li{width:50%}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal.mag-full-width .magic-nav li:first-child:nth-last-child(1){width:100%}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal.mag-full-width .magic-nav li a{white-space:nowrap;overflow:hidden}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal:not(.mag-full-width) .side-nav.magic-nav.custom-pad li a:not(.button){padding-left:14px;padding-right:14px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-horizontal:not(.mag-full-width) .side-nav.magic-nav.zone-hard-right .mag-item.zone-item{float:right}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-vertical:not(.mag-toggle).mag-divider .side-nav.magic-nav li:not(:first-of-type){border-top:1px solid rgba(76, 76, 76, 1.00)}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-vertical:not(.mag-toggle) .side-nav.magic-nav li:not(:first-of-type){padding-top:0px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-vertical:not(.mag-toggle) .side-nav.magic-nav li:not(:last-of-type){padding-bottom:0px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-vertical:not(.mag-toggle) .side-nav.magic-nav.custom-pad li a:not(.button){padding-top:14px;padding-bottom:14px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-vertical:not(.mag-toggle) .mag-title-area{margin-bottom:1rem;margin-left:0}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-vertical:not(.mag-toggle) .mag-title-area>.mag-name img{display:block;margin:0 auto;width:auto} #stacks_in_69851_page0 .mg-menu[data-magellan-expedition]>.mag-title-area>.mag-name img{vertical-align:middle}#stacks_in_69851_page0>.mg-menu[data-magellan-expedition] .mag-title-area>.mag-name img{vertical-align:middle}#stacks_in_69851_page0>.mg-menu[data-magellan-expedition].mag-fixed{position:fixed}#stacks_in_69851_page0>.mg-menu[data-magellan-expedition].mag-fixed.mag-horizontal{left:0}#stacks_in_69851_page0>.mg-menu[data-magellan-expedition].mag-fixed.mag-vertical:not(.mag-toggle).vert-left{left:0px}#stacks_in_69851_page0>.mg-menu[data-magellan-expedition].mag-fixed.mag-vertical:not(.mag-toggle).vert-right{right:0px}#stacks_in_69851_page0>.mg-menu[data-magellan-expedition].mag-fixed.fixed-top{top:0}#stacks_in_69851_page0>.mg-menu[data-magellan-expedition].mag-fixed.fixed-bottom{bottom:0}#stacks_in_69851_page0>.mg-menu[data-magellan-expedition].mag-fixed.fixed-custom{top:0px}}   #stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-vertical:not(.mag-toggle).vert-left{float:left;margin-left:0px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-vertical:not(.mag-toggle).vert-right{float:right;margin-right:0px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition]::after{position:absolute;content:"";top:0;bottom:0;left:0;right:0;z-index:-1}   #stacks_in_69851_page0 .mg-menu[data-magellan-expedition].onecolor::after{background-color:rgba(165, 255, 255, 1.00);background-image:-webkit-gradient(linear,left top,left bottom,color-stop( + ,%id=gradColors[0]),color-stop(85%,rgba(125, 219, 217, 1.00)));background-image:linear-gradient(to bottom,rgba(165, 255, 255, 1.00),rgba(125, 219, 217, 1.00) 85%)}   @media only screen and (max-width:1199px){#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-fixed.fixed-shadow .side-nav.magic-nav{-webkit-box-shadow:rgba(0,0,0,0.30) 0 1px 15px;box-shadow:rgba(0,0,0,0.30) 0 1px 15px}
#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-toggle{height:50px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-toggle>.row{position:relative}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-toggle>.row>.mag-title-area{position:relative}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-toggle>.row>.mag-title-area>.mag-name{height:50px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-toggle .mag-title-area{padding:0;height:50px;float:none}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-toggle .mag-title-area .toggle-target{display:block;padding:0 12px 0 12px;cursor:pointer}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-toggle .mag-title-area .mag-title.hide-for-mob{display:none!important}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-toggle .mag-title-area.tog-left .toggle-target{float:left}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-toggle .mag-title-area.tog-left .mag-name{float:right}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-toggle .mag-title-area.tog-left .mag-name img{float:right}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-toggle .mag-title-area.tog-right .toggle-target,#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-toggle .mag-title-area.tog-right .burgWrapper{float:right}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-toggle .mag-title-area.tog-right .menu-label{float:right;padding-right:12px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-toggle .mag-title-area.tog-right .mag-name{float:left}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-toggle .mag-title-area.tog-right .mag-name img{float:left}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-toggle .mag-title-area .mag-title{font-size:1.06rem}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-toggle .mag-title-area .menu-label{display:inline-block;line-height:50px;vertical-align:middle;color:rgba(102, 102, 102, 1.00)}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-toggle .mag-title-area .mag-name{text-align:left;display:inline-block}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-toggle .mag-title-area .mag-name img{padding:0px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-toggle .mag-title-area .mag-name:not(.contained) img{max-height:60px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-toggle .mag-title-area .mag-name.contained img{height:50px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-toggle .mag-title-area .mag-name .mag-logo.hide-for-toggle{display:none}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-fixed{position:fixed;left:0;top:0;width:100%}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-fixed.fixed-custom{top:0px}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .side-nav.magic-nav{display:none;position:absolute;max-height:100vh;overflow-y:scroll;-webkit-overflow-scrolling:touch;line-height:1.6;top:100%;width:100%;z-index:-1}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .side-nav.magic-nav .mag-item a:not(.button){font-size:1.00rem;text-align:left;padding:12px .9735rem 12px .9735rem;background-color:transparent}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .side-nav.magic-nav .mag-item a:not(.button):hover{background-color:rgba(76, 76, 76, 1.00)}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .side-nav.magic-nav.icons-mob .magic-icon{display:inline-block}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .side-nav.magic-nav.zone-full-width .mag-item.zone-item a:not(.button)>.dot-tip{display:block}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .burgWrapper{padding-left:0;display:inline-block;width:40px;height:40px;vertical-align:middle}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .burg{position:absolute;top:50%;display:block;height:2px;width:20px;background:rgba(102, 102, 102, 1.00);-webkit-transition:.2s;transition:.2s}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .burg:before{content:'';position:absolute;top:-8px;width:20px;height:2px;background:rgba(102, 102, 102, 1.00);-webkit-transition:200ms;transition:200ms}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition] .burg:after{content:'';position:absolute;top:8px;width:20px;height:2px;background:rgba(102, 102, 102, 1.00);-webkit-transition:200ms;transition:200ms}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].toggle-open .burg{background:transparent}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].toggle-open .burg:before{-webkit-transform:rotate(45deg);top:0}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].toggle-open .burg:after{-webkit-transform:rotate(-45deg);top:0} #stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-toggle .side-nav.magic-nav{background-color:rgba(125, 219, 217, 1.00);border-top:1px solid rgba(3, 7, 3, 1.00)}#stacks_in_69851_page0 .mg-menu[data-magellan-expedition].mag-toggle.mag-divider .side-nav.magic-nav li:not(:first-of-type){border-top:1px solid rgba(76, 76, 76, 1.00)}} 

#stacks_in_69851_page0 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width: 1px 2px 1px 1px;
	-moz-border-radius:  1px;
	-webkit-border-radius:  1px;
	border-radius:  1px;
}
 #stacks_in_104589_page0.blu-svg{text-align:center}#stacks_in_104589_page0.blu-svg svg{width:96.00px}@media screen and (min-width:640px) and (max-width:768px){#stacks_in_104589_page0.blu-svg{text-align:center}#stacks_in_104589_page0.blu-svg svg{width:128.00px}}@media screen and (min-width:768px) and (max-width:1000px){#stacks_in_104589_page0.blu-svg{text-align:center}#stacks_in_104589_page0.blu-svg svg{width:194.00px}}@media screen and (min-width:1000px){#stacks_in_104589_page0.blu-svg{text-align:center}#stacks_in_104589_page0.blu-svg svg{width:256.00px}}  #stacks_in_104589_page0.blu-svg{float:none}#stacks_in_104589_page0 a,#stacks_in_104589_page0 svg{cursor:auto}


     .ovl-vault-1::after{position:absolute;content:"";top:0;left:0;bottom:0;right:0}  .ovl-vault-1::after{  background-image:linear-gradient(35deg,rgba(125, 220, 196, 0.55) 18%,rgba(125, 220, 196, 1.00) 51%);-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(125, 220, 196, 0.55)', endColorStr='rgba(125, 220, 196, 1.00)',GradientType=0)";    }    
   .stacks_out,.stacks_in{overflow:visible!important}  #stacks_in_104563_page0.blu-wrap.flex-bot{margin-top:auto!important}    #stacks_in_104563_page0.blu-wrap{background-color:rgba(255, 255, 255, 0.00)}#stacks_in_104563_page0.blu-wrap>.blueprint-col{}#stacks_in_104563_page0.blu-wrap>.blueprint-col.flex-width.sb-sm-left{margin-right:auto}#stacks_in_104563_page0.blu-wrap>.blueprint-col.flex-width.sb-sm-center{margin-right:auto;margin-left:auto}#stacks_in_104563_page0.blu-wrap>.blueprint-col.flex-width.sb-sm-right{margin-left:auto}#stacks_in_104563_page0.blu-wrap>.blueprint-col>.blucol-content{margin: 0px ;padding:0.00px 0.00px 0.00px 0.00px }#stacks_in_104563_page0.blu-wrap>.blueprint-col>.blucol-content.bg-color{background-color:rgba(3, 7, 3, 1.00)} @media screen and (min-width:640px){#stacks_in_104563_page0.blu-wrap>.blueprint-col{ }#stacks_in_104563_page0.blu-wrap>.blueprint-col.med-flex-width.sb-med-left{margin-right:auto;margin-left:0}#stacks_in_104563_page0.blu-wrap>.blueprint-col.med-flex-width.sb-med-center{margin-right:auto;margin-left:auto}#stacks_in_104563_page0.blu-wrap>.blueprint-col.med-flex-width.sb-med-right{margin-left:auto;margin-right:0}#stacks_in_104563_page0.blu-wrap>.blueprint-col.med-fill-width{width:100%;margin-left:0;margin-right:0}}  @media screen and (min-width:1000px){#stacks_in_104563_page0.blu-wrap>.blueprint-col{ }
#stacks_in_104563_page0.blu-wrap>.blueprint-col.lg-flex-width.sb-lg-left,#stacks_in_104563_page0.blu-wrap>.blueprint-col.med-flex-width.lg-flex-width.sb-lg-left{margin-right:auto;margin-left:0}#stacks_in_104563_page0.blu-wrap>.blueprint-col.lg-flex-width.sb-lg-center,#stacks_in_104563_page0.blu-wrap>.blueprint-col.med-flex-width.lg-flex-width.sb-lg-center{margin-right:auto;margin-left:auto}#stacks_in_104563_page0.blu-wrap>.blueprint-col.lg-flex-width.sb-lg-right,#stacks_in_104563_page0.blu-wrap>.blueprint-col.med-flex-width.lg-flex-width.sb-lg-right{margin-left:auto;margin-right:0}#stacks_in_104563_page0.blu-wrap>.blueprint-col.lg-fill-width,#stacks_in_104563_page0.blu-wrap>.blueprint-col.med-fill-width,#stacks_in_104563_page0.blu-wrap>.blueprint-col .lg-fill-width{width:100%;max-width:none;margin-left:0;margin-right:0}}     


#stacks_in_105178_page0 {
	margin:  20px;
	padding: 20px 20px 0px 20px;
}


#stacks_in_104392_page0 {
	padding:  7px;
}


#stacks_in_104394_page0 {
	margin:  8px;
}

#stacks_out_104394_page0 {
	margin-left:0;
}

#stacks_in_104631_page0 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_104631_page0 > .row > .columns{margin-top:0.00rem;margin-bottom:0.00rem}#stacks_in_104631_page0 > .row.divider > .columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(0, 0, 0, 1.00)}

#stacks_in_104631_page0 {
	margin:  20px;
	padding:  20px;
}
#stacks_in_104628_page0 a{display:block}#stacks_in_104628_page0 img{}
#stacks_in_104396_page0 p,#stacks_in_104396_page0 div{margin-bottom:0}#stacks_in_104396_page0 p,#stacks_in_104396_page0 div,#stacks_in_104396_page0 ul,#stacks_in_104396_page0 ol,#stacks_in_104396_page0 dl{color:rgba(3, 7, 3, 1.00)}#stacks_in_104396_page0 a{color:rgba(0, 140, 186, 1.00)}#stacks_in_104396_page0 a:hover{color:rgba(0, 102, 136, 1.00)}

#stacks_in_104396_page0 {
	padding:  10px;
}
#stacks_in_104399_page0 a{display:block}#stacks_in_104399_page0{margin:0 auto;margin-left:auto !important;margin-right:auto !important;}#stacks_in_104399_page0 .prevent-reflow{padding-bottom:100.00%;position:relative;width:100%}#stacks_in_104399_page0 .prevent-reflow img{display:block;position:absolute;top:0;left:0;width:100%;height:auto;margin:0;padding:0}

#stacks_in_104399_page0 {
	margin: 20px 20px 20px 20px;
	padding:  20px;
}


#stacks_in_p104391_n18673_page0 > .row{padding-top:2.50rem;padding-bottom:1.50rem}#stacks_in_p104391_n18673_page0 > .row > .columns{margin-top:1.00rem;margin-bottom:0.00rem}#stacks_in_p104391_n18673_page0 > .row.divider > .columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(0, 0, 0, 1.00)}

#stacks_in_p104391_n18673_page0 {
	background-image: url("../files/backgroundImage_p104391_n18673.png");
	background-repeat: repeat;
	background-position: center;
}
 .ovl-style-pro-stacks_in_104563_page0::after{position:absolute;top:0;bottom:0;left:0;right:0;content:"";z-index:-1}     .ovl-style-pro-stacks_in_104563_page0:not(.o-bg-vault)::after{  background-image:linear-gradient(35deg,rgba(125, 220, 196, 0.55) 18%,rgba(125, 220, 196, 1.00) 51%);-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(125, 220, 196, 0.55)', endColorStr='rgba(125, 220, 196, 1.00)',GradientType=0)";    }   

    #stacks_in_104601_page0.blu-wrap.flex-bot{margin-top:auto!important}    #stacks_in_104601_page0.blu-wrap{background-color:rgba(255, 255, 255, 0.00)}#stacks_in_104601_page0.blu-wrap>.blueprint-col{}#stacks_in_104601_page0.blu-wrap>.blueprint-col.flex-width.sb-sm-left{margin-right:auto}#stacks_in_104601_page0.blu-wrap>.blueprint-col.flex-width.sb-sm-center{margin-right:auto;margin-left:auto}#stacks_in_104601_page0.blu-wrap>.blueprint-col.flex-width.sb-sm-right{margin-left:auto}#stacks_in_104601_page0.blu-wrap>.blueprint-col>.blucol-content{margin: 0px ;padding: 0px }#stacks_in_104601_page0.blu-wrap>.blueprint-col>.blucol-content.bg-color{background-color:rgba(248, 248, 248, 1.00)} @media screen and (min-width:640px){#stacks_in_104601_page0.blu-wrap>.blueprint-col{ }#stacks_in_104601_page0.blu-wrap>.blueprint-col.med-flex-width.sb-med-left{margin-right:auto;margin-left:0}#stacks_in_104601_page0.blu-wrap>.blueprint-col.med-flex-width.sb-med-center{margin-right:auto;margin-left:auto}#stacks_in_104601_page0.blu-wrap>.blueprint-col.med-flex-width.sb-med-right{margin-left:auto;margin-right:0}#stacks_in_104601_page0.blu-wrap>.blueprint-col.med-fill-width{width:100%;margin-left:0;margin-right:0}}  @media screen and (min-width:1000px){#stacks_in_104601_page0.blu-wrap>.blueprint-col{ }
#stacks_in_104601_page0.blu-wrap>.blueprint-col.lg-flex-width.sb-lg-left,#stacks_in_104601_page0.blu-wrap>.blueprint-col.med-flex-width.lg-flex-width.sb-lg-left{margin-right:auto;margin-left:0}#stacks_in_104601_page0.blu-wrap>.blueprint-col.lg-flex-width.sb-lg-center,#stacks_in_104601_page0.blu-wrap>.blueprint-col.med-flex-width.lg-flex-width.sb-lg-center{margin-right:auto;margin-left:auto}#stacks_in_104601_page0.blu-wrap>.blueprint-col.lg-flex-width.sb-lg-right,#stacks_in_104601_page0.blu-wrap>.blueprint-col.med-flex-width.lg-flex-width.sb-lg-right{margin-left:auto;margin-right:0}#stacks_in_104601_page0.blu-wrap>.blueprint-col.lg-fill-width,#stacks_in_104601_page0.blu-wrap>.blueprint-col.med-fill-width,#stacks_in_104601_page0.blu-wrap>.blueprint-col .lg-fill-width{width:100%;max-width:none;margin-left:0;margin-right:0}}     
   #stacks_in_104599_page0 .sp-bevel{z-index:1}#stacks_in_104599_page0 .sp-bevel::before,#stacks_in_104599_page0 .sp-bevel::after{z-index:-1}     #stacks_in_104599_page0 .bevel-wrap{overflow:hidden;margin-top:0.00px}#stacks_in_104599_page0 .sp-bevel.orient-horiz{padding-bottom:calc( 2%  * 0.90);position:relative;overflow:hidden}#stacks_in_104599_page0 .sp-bevel.orient-horiz::before,#stacks_in_104599_page0 .sp-bevel.orient-horiz::after{position:absolute;z-index:-1;content:"";height:100%;background:rgba(125, 220, 196, 1.00)}#stacks_in_104599_page0 .sp-bevel.orient-horiz::before{left:0;width:50.00%}#stacks_in_104599_page0 .sp-bevel.orient-horiz::after{right:0;width:calc(100% - 50.00%)}#stacks_in_104599_page0 .sp-bevel.orient-horiz.arrow-down.arrow-inward{-webkit-transform:translateY(100%);transform:translateY(100%);overflow:visible}#stacks_in_104599_page0 .sp-bevel.orient-horiz.arrow-down::before,#stacks_in_104599_page0 .sp-bevel.orient-horiz.arrow-down::after{bottom:0}#stacks_in_104599_page0 .sp-bevel.orient-horiz.arrow-down::before{-webkit-transform-origin:100% 100%;transform-origin:100% 100%;-webkit-transform:skew(0,2deg);transform:skew(0,2deg)}#stacks_in_104599_page0 .sp-bevel.orient-horiz.arrow-down::after{-webkit-transform:skew(0,-2deg);transform:skew(0,-2deg);-webkit-transform-origin:0 100%;transform-origin:0 100%}#stacks_in_104599_page0 .sp-bevel.orient-horiz.arrow-up.arrow-inward{-webkit-transform:translateY(-100%);transform:translateY(-100%);overflow:visible}#stacks_in_104599_page0 .sp-bevel.orient-horiz.arrow-up::before,#stacks_in_104599_page0 .sp-bevel.orient-horiz.arrow-up::after{top:0}#stacks_in_104599_page0 .sp-bevel.orient-horiz.arrow-up::before{-webkit-transform-origin:100% 0;transform-origin:100% 0;-webkit-transform:skew(0,-2deg);transform:skew(0,-2deg)}#stacks_in_104599_page0 .sp-bevel.orient-horiz.arrow-up::after{-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:skew(0,2deg);transform:skew(0,2deg)}  
    #stacks_in_104591_page0.blu-wrap.flex-bot{margin-top:auto!important}    #stacks_in_104591_page0.blu-wrap{background-color:rgba(255, 255, 255, 0.00)}#stacks_in_104591_page0.blu-wrap>.blueprint-col{}#stacks_in_104591_page0.blu-wrap>.blueprint-col.flex-width.sb-sm-left{margin-right:auto}#stacks_in_104591_page0.blu-wrap>.blueprint-col.flex-width.sb-sm-center{margin-right:auto;margin-left:auto}#stacks_in_104591_page0.blu-wrap>.blueprint-col.flex-width.sb-sm-right{margin-left:auto}#stacks_in_104591_page0.blu-wrap>.blueprint-col>.blucol-content{margin: 0px ;padding:15.00px 0.00px 0.00px 0.00px }#stacks_in_104591_page0.blu-wrap>.blueprint-col>.blucol-content.bg-color{background-color:rgba(248, 248, 248, 1.00)} @media screen and (min-width:615px){#stacks_in_104591_page0.blu-wrap>.blueprint-col{ }#stacks_in_104591_page0.blu-wrap>.blueprint-col.med-flex-width.sb-med-left{margin-right:auto;margin-left:0}#stacks_in_104591_page0.blu-wrap>.blueprint-col.med-flex-width.sb-med-center{margin-right:auto;margin-left:auto}#stacks_in_104591_page0.blu-wrap>.blueprint-col.med-flex-width.sb-med-right{margin-left:auto;margin-right:0}#stacks_in_104591_page0.blu-wrap>.blueprint-col.med-fill-width{width:100%;margin-left:0;margin-right:0}}  @media screen and (min-width:1000px){#stacks_in_104591_page0.blu-wrap>.blueprint-col{ }
#stacks_in_104591_page0.blu-wrap>.blueprint-col.lg-flex-width.sb-lg-left,#stacks_in_104591_page0.blu-wrap>.blueprint-col.med-flex-width.lg-flex-width.sb-lg-left{margin-right:auto;margin-left:0}#stacks_in_104591_page0.blu-wrap>.blueprint-col.lg-flex-width.sb-lg-center,#stacks_in_104591_page0.blu-wrap>.blueprint-col.med-flex-width.lg-flex-width.sb-lg-center{margin-right:auto;margin-left:auto}#stacks_in_104591_page0.blu-wrap>.blueprint-col.lg-flex-width.sb-lg-right,#stacks_in_104591_page0.blu-wrap>.blueprint-col.med-flex-width.lg-flex-width.sb-lg-right{margin-left:auto;margin-right:0}#stacks_in_104591_page0.blu-wrap>.blueprint-col.lg-fill-width,#stacks_in_104591_page0.blu-wrap>.blueprint-col.med-fill-width,#stacks_in_104591_page0.blu-wrap>.blueprint-col .lg-fill-width{width:100%;max-width:none;margin-left:0;margin-right:0}}     
@-webkit-keyframes mouser-scroll{0%,20%{-webkit-transform:translateY(0px) scaleY(1) scaleX(1) translateZ(0px);transform:translateY(0px) scaleY(1) scaleX(1) translateZ(0px)}20%{-webkit-transform:translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);transform:translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);opacity:1}100%{-webkit-transform:translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);transform:translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);opacity:.1}}@keyframes mouser-scroll{0%,20%{-webkit-transform:translateY(0px) scaleY(1) scaleX(1) translateZ(0px);transform:translateY(0px) scaleY(1) scaleX(1) translateZ(0px)}20%{-webkit-transform:translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);transform:translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);opacity:1}100%{-webkit-transform:translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);transform:translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);opacity:.1}}@-webkit-keyframes mouser-scroll-up{0%{-webkit-transform:translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);transform:translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);opacity:.1}80%{-webkit-transform:translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);transform:translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);opacity:1}100%,80%{-webkit-transform:translateY(0px) scaleY(1) scaleX(1) translateZ(0px);transform:translateY(0px) scaleY(1) scaleX(1) translateZ(0px)}}@keyframes mouser-scroll-up{0%{-webkit-transform:translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);transform:translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);opacity:.1}}100%,80%{-webkit-transform:translateY(0px) scaleY(1) scaleX(1) translateZ(0px);transform:translateY(0px) scaleY(1) scaleX(1) translateZ(0px)}80%{-webkit-transform:translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);transform:translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);opacity:1}@-webkit-keyframes mouser-arrow-flow{0%{opacity:0}50%{opacity:.5}100%{opacity:1}}@keyframes mouser-arrow-flow{0%{opacity:0}50%{opacity:.5}100%{opacity:1}}
#mouser-stacks_in_104588_page0{display:block;margin:0 auto;text-align:center; width:100%; margin:center;padding-bottom:0px}#mouser-stacks_in_104588_page0 .mouser{width:26px;position:relative;margin:auto;cursor:pointer}#mouser-stacks_in_104588_page0 .mouser.m-dz{width:100%}#mouser-stacks_in_104588_page0 .mouser.m-dz .fa,#mouser-stacks_in_104588_page0 .mouser.m-dz p{color:rgba(3, 7, 3, 1.00)!important}#mouser-stacks_in_104588_page0 .scrolltext{color:rgba(204, 204, 204, 1.00);display:block;font-size:12px;text-align:center;cursor:pointer;-webkit-transition:color 140ms ease;transition:color 140ms ease}#mouser-stacks_in_104588_page0 .m-wrap{display:inline-block;text-align:center}#mouser-stacks_in_104588_page0 .m-wrap.m-dz.dz-block{display:block} #mouser-stacks_in_104588_page0 .mouser.m-arrows{height:50px}#mouser-stacks_in_104588_page0 .mouser.m-arrows .mouser_arrows{display:block;border-right:2px solid rgba(3, 7, 3, 1.00);border-bottom:2px solid rgba(3, 7, 3, 1.00);margin:0 0 3px 4px;width:16px;height:16px;-webkit-transition:all 140ms ease;transition:all 140ms ease;-webkit-animation:mouser-arrow-flow 1s infinite;animation:mouser-arrow-flow 1s infinite;-webkit-animation-direction:alternate;animation-direction:alternate}#mouser-stacks_in_104588_page0 .mouser.m-arrows .mouser_arrows.ma1{margin-top:1px}#mouser-stacks_in_104588_page0 .mouser.m-arrows .mouser_arrows.ma2{margin-top:-6px}#mouser-stacks_in_104588_page0 .mouser.m-arrows .mouser_arrows.ma3{margin-top:-6px}#mouser-stacks_in_104588_page0 .mouser.m-arrows.m-dn .mouser_arrows{-webkit-transform:rotate(45deg);transform:rotate(45deg)}#mouser-stacks_in_104588_page0 .mouser.m-arrows.m-dn .mouser_arrows.ma1{-webkit-animation-delay:.1s;animation-delay:.1s}#mouser-stacks_in_104588_page0 .mouser.m-arrows.m-dn .mouser_arrows.ma2{-webkit-animation-delay:.2s;animation-delay:.2s}#mouser-stacks_in_104588_page0 .mouser.m-arrows.m-dn .mouser_arrows.ma3{-webkit-animation-delay:.3s;animation-delay:.3s}#mouser-stacks_in_104588_page0 .mouser.m-arrows.m-up .mouser_arrows{-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}#mouser-stacks_in_104588_page0 .mouser.m-arrows.m-up .mouser_arrows.ma1{-webkit-animation-delay:.3s;animation-delay:.3s}#mouser-stacks_in_104588_page0 .mouser.m-arrows.m-up .mouser_arrows.ma2{-webkit-animation-delay:.2s;animation-delay:.2s}#mouser-stacks_in_104588_page0 .mouser.m-arrows.m-up .mouser_arrows.ma3{-webkit-animation-delay:.1s;animation-delay:.1s}  #mouser-stacks_in_104588_page0 .m-wrap:hover .mouser.m-mouse{border:2px solid rgba(153, 153, 153, 1.00)}#mouser-stacks_in_104588_page0 .m-wrap:hover .mouser.m-mouse::after{background-color:rgba(255, 44, 212, 1.00)}#mouser-stacks_in_104588_page0 .m-wrap:hover .mouser.m-arrows>.mouser_arrows{border-right:2px solid rgba(153, 153, 153, 1.00);border-bottom:2px solid rgba(153, 153, 153, 1.00)}#mouser-stacks_in_104588_page0 .m-wrap:hover .mouser.m-dz .fa,#mouser-stacks_in_104588_page0 .m-wrap:hover .mouser.m-dz p{color:rgba(153, 153, 153, 1.00)!important}#mouser-stacks_in_104588_page0 .m-wrap:hover .scrolltext{color:rgba(102, 102, 102, 1.00)} .mouser .mouser_arrows{display:block;border-right:2px solid rgba(3, 7, 3, 1.00);border-bottom:2px solid rgba(3, 7, 3, 1.00);margin:0 0 3px 4px;width:16px;height:16px;-webkit-animation:mouser-arrow-flow 1s infinite;animation:mouser-arrow-flow 1s infinite;-webkit-animation-direction:alternate;animation-direction:alternate}.mouser .mouser_arrows.ma1{margin-top:1px}.mouser .mouser_arrows.ma2{margin-top:-6px}.mouser .mouser_arrows.ma3{margin-top:-6px}.mouser.m-dn .mouser_arrows{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.mouser.m-dn .mouser_arrows.ma1{-webkit-animation-delay:.1s;animation-delay:.1s}.mouser.m-dn .mouser_arrows.ma2{-webkit-animation-delay:.2s;animation-delay:.2s}.mouser.m-dn .mouser_arrows.ma3{-webkit-animation-delay:.3s;animation-delay:.3s}.mouser.m-up .mouser_arrows{-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}.mouser.m-up .mouser_arrows.ma1{-webkit-animation-delay:.3s;animation-delay:.3s}.mouser.m-up .mouser_arrows.ma2{-webkit-animation-delay:.2s;animation-delay:.2s}.mouser.m-up .mouser_arrows.ma3{-webkit-animation-delay:.1s;animation-delay:.1s}

 #stacks_in_69856_page0 .shear-mag{position:absolute;top:0px}#stacks_in_69856_page0 a.shear-mag.offset-override{top:0px!important} .mg-menu .mgicon-marker1{vertical-align:middle;font-size:1.60rem; padding-right:1.00rem;}    
.ascend-marker.show-marker {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; }

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

#stacks_in_p104635_n2_page0{overflow:hidden}#stacks_in_p104635_n2_page0 hr{opacity:1.00;border-top:1px solid rgba(221, 221, 221, 1.00);margin:3.00rem 0;}
#stacks_in_4098_page0 > .row{padding-top:3.00rem;padding-bottom:0.00rem}#stacks_in_4098_page0 > .row.collapse{padding-left:0;padding-right:0}#stacks_in_4098_page0 > .row.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_4098_page0 > .row > .maxwidth{max-width:500px}#stacks_in_4098_page0 > .hide-overflow{overflow:hidden !important}




#stacks_in_4103_page0 {
	margin:  20px;
}
 #stacks_in_69887_page0 .shear-mag{position:absolute;top:0px}#stacks_in_69887_page0 a.shear-mag.offset-override{top:0px!important} .mg-menu .mgicon-marker4{vertical-align:middle;font-size:1.60rem; padding-right:1.00rem;}    
.ascend-marker.show-marker {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; }

/*  */
#stacks_in_89927_page0 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_89927_page0 > .row.collapse{padding-left:0;padding-right:0}#stacks_in_89927_page0 > .row.padding-detailed{padding:0.00rem 0.00rem 0.00rem 0.00rem}@media only screen and (max-width:40em){#stacks_in_89927_page0 > .row.padding-detailed.padding-medium-up,#stacks_in_89927_page0 > .row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_89927_page0 > .row.padding-detailed.padding-y-medium-up,#stacks_in_89927_page0 > .row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){#stacks_in_89927_page0 > .row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_89927_page0 > .row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}

#stacks_in_89926_page0{overflow:hidden}#stacks_in_89926_page0 hr{opacity:1.00;border-top-style:solid;border-top-width:1px;margin:3.00rem 0;}#stacks_in_89926_page0 hr.custom{border-color:rgba(221, 221, 221, 1.00)}
#stacks_in_p104351_n1_page0 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_p104351_n1_page0 > .row.collapse{padding-left:0;padding-right:0}#stacks_in_p104351_n1_page0 > .row.padding-detailed{padding:0.00rem 0.00rem 0.00rem 0.00rem}@media only screen and (max-width:40em){#stacks_in_p104351_n1_page0 > .row.padding-detailed.padding-medium-up,#stacks_in_p104351_n1_page0 > .row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_p104351_n1_page0 > .row.padding-detailed.padding-y-medium-up,#stacks_in_p104351_n1_page0 > .row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){#stacks_in_p104351_n1_page0 > .row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_p104351_n1_page0 > .row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}





#stacks_in_p104351_n6_page0 {
	padding:  20px;
}
#stacks_in_p104351_n8_page0 *, #stacks_in_p104351_n8_page0 *:after, #stacks_in_p104351_n8_page0 *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; }

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

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

#stacks_in_p104351_n8_page0  {
}

#stacks_in_p104351_n8_page0 .timeline_item {
	position: relative;
}

#stacks_in_p104351_n8_page0 ul.cbp_tmtimeline {
	margin: 0;
}

#stacks_in_p104351_n8_page0 a,
#stacks_in_p104351_n8_page0 a:visited {
	color: #030703;
	text-decoration: none;
}

#stacks_in_p104351_n8_page0 a:hover,
#stacks_in_p104351_n8_page0 a:active {
	color: #030703;
}

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

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

#stacks_in_p104351_n8_page0 .cbp_tmtimeline li {
	margin: 0;
}

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

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

	

	
		left: 20%;
	
	
	
	
	
	

	margin-left: -10px;
}

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

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

#stacks_in_p104351_n8_page0 .cbp_tmtimeline li .cbp_tmtime span.small_label {
	font-size: 12px;
	line-height: 1.2;
	white-space: normal;
	
		color: #030703;
	
}

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

/* Right content */
#stacks_in_p104351_n8_page0 .cbp_tmtimeline li .cbp_tmlabel {
	
		margin: 0 0 15px 25%;
	
	
	
	
	
	
	
		background: #7DDCC4;
		color: #030703;
	
	padding: 2em;
	position: relative;
	border-radius: 5px;
}

#stacks_in_p104351_n8_page0 .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: #030703;
	
}

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


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


/* The icons */
#stacks_in_p104351_n8_page0 .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: #030703 !important;  /* Makes sure the theme isn't overriding the icon color */
		background: #7DDCC4;
		box-shadow: 0 0 0 8px #7F7F7F; /* Border of icon */
	
	border-radius: 50%;
	text-align: center;
	top: 8px;

	
		left: 20%;
	
	
	
	
	
	

	margin: 0 0 0 -25px;

	
}

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



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

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

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

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

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

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

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


	

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

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

	


}





#stacks_in_p104351_n8_page0 {
	padding:  20px;
}




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







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







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







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







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







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




#stacks_in_105281_page0 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_105281_page0 > .row.collapse{padding-left:0;padding-right:0}#stacks_in_105281_page0 > .row.padding-detailed{padding:0.00rem 0.00rem 0.00rem 0.00rem}@media only screen and (max-width:40em){#stacks_in_105281_page0 > .row.padding-detailed.padding-medium-up,#stacks_in_105281_page0 > .row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_105281_page0 > .row.padding-detailed.padding-y-medium-up,#stacks_in_105281_page0 > .row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){#stacks_in_105281_page0 > .row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_105281_page0 > .row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}


.ascend-marker.show-marker {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; }

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

#stacks_in_p105237_n2_page0{overflow:hidden}#stacks_in_p105237_n2_page0 hr{opacity:1.00;border-top:1px solid rgba(221, 221, 221, 1.00);margin:3.00rem 0;}
 #stacks_in_69865_page0 .shear-mag{position:absolute;top:0px}#stacks_in_69865_page0 a.shear-mag.offset-override{top:0px!important} .mg-menu .mgicon-marker3{vertical-align:middle;font-size:1.60rem; padding-right:1.00rem;}    

#stacks_in_105241_page0 h1,#stacks_in_105241_page0 h2,#stacks_in_105241_page0 h3,#stacks_in_105241_page0 h4,#stacks_in_105241_page0 h5,#stacks_in_105241_page0 h6,#stacks_in_105241_page0 div{color:rgba(153, 153, 153, 1.00);font-size:1.44rem;font-weight:300;font-style:normal}#stacks_in_105241_page0 h1 a,#stacks_in_105241_page0 h2 a,#stacks_in_105241_page0 h3 a,#stacks_in_105241_page0 h4 a,#stacks_in_105241_page0 h5 a,#stacks_in_105241_page0 h6 a,#stacks_in_105241_page0 div a{color:rgba(153, 153, 153, 1.00);font-size:1.44rem}#stacks_in_105241_page0 h1 a:hover,#stacks_in_105241_page0 h2 a:hover,#stacks_in_105241_page0 h3 a:hover,#stacks_in_105241_page0 h4 a:hover,#stacks_in_105241_page0 h5 a:hover,#stacks_in_105241_page0 h6 a:hover,#stacks_in_105241_page0 div a:hover{color:rgba(114, 114, 114, 1.00)}@media only screen and (min-width:40.063em){#stacks_in_105241_page0 h1 a,#stacks_in_105241_page0 h2 a,#stacks_in_105241_page0 h3 a,#stacks_in_105241_page0 h4 a,#stacks_in_105241_page0 h5 a,#stacks_in_105241_page0 h6 a,#stacks_in_105241_page0 div a{font-size:1.44rem}}@media only screen and (min-width:40.063em){#stacks_in_105241_page0 h1,#stacks_in_105241_page0 h2,#stacks_in_105241_page0 h3,#stacks_in_105241_page0 h4,#stacks_in_105241_page0 h5,#stacks_in_105241_page0 h6,#stacks_in_105241_page0 div{font-size:1.44rem}}#stacks_in_105241_page0 small,#stacks_in_105241_page0 small div{font-size:60%;color:rgba(111, 111, 111, 1.00)}

#stacks_in_105241_page0 {
	margin:  19px;
	padding:  12px;
}
#stacks_in_105283_page0 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_105283_page0 > .row.collapse{padding-left:0;padding-right:0}#stacks_in_105283_page0 > .row.padding-detailed{padding:0.00rem 0.00rem 0.00rem 0.00rem}@media only screen and (max-width:40em){#stacks_in_105283_page0 > .row.padding-detailed.padding-medium-up,#stacks_in_105283_page0 > .row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_105283_page0 > .row.padding-detailed.padding-y-medium-up,#stacks_in_105283_page0 > .row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){#stacks_in_105283_page0 > .row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_105283_page0 > .row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}


.ascend-marker.show-marker {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; }

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

#stacks_in_p105249_n2_page0{overflow:hidden}#stacks_in_p105249_n2_page0 hr{opacity:1.00;border-top:1px solid rgba(221, 221, 221, 1.00);margin:3.00rem 0;}
 #stacks_in_104539_page0 .shear-mag{position:absolute;top:0px}#stacks_in_104539_page0 a.shear-mag.offset-override{top:0px!important} .mg-menu .mgicon-marker{vertical-align:middle;font-size:1.60rem; padding-right:1.00rem;}    



#stacks_in_105214_page0 {
	margin:  19px;
	padding:  12px;
}
#stacks_in_105285_page0 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_105285_page0 > .row.collapse{padding-left:0;padding-right:0}#stacks_in_105285_page0 > .row.padding-detailed{padding:0.00rem 0.00rem 0.00rem 0.00rem}@media only screen and (max-width:40em){#stacks_in_105285_page0 > .row.padding-detailed.padding-medium-up,#stacks_in_105285_page0 > .row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_105285_page0 > .row.padding-detailed.padding-y-medium-up,#stacks_in_105285_page0 > .row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){#stacks_in_105285_page0 > .row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_105285_page0 > .row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}


.ascend-marker.show-marker {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; }

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

#stacks_in_p105261_n2_page0{overflow:hidden}#stacks_in_p105261_n2_page0 hr{opacity:1.00;border-top:1px solid rgba(221, 221, 221, 1.00);margin:3.00rem 0;}
 #stacks_in_105262_page0 .shear-mag{position:absolute;top:0px}#stacks_in_105262_page0 a.shear-mag.offset-override{top:0px!important} .mg-menu .mgicon-marker2{vertical-align:middle;font-size:1.60rem; padding-right:1.00rem;}    



#stacks_in_104786_page0 {
	margin:  19px;
	padding:  12px;
}
/*  */
#w-panels-stacks_in_105014_page0 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  overflow: hidden;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  max-width: 600px;
  border-radius: 0px; }
  #w-panels-stacks_in_105014_page0.section-active .w-panel:not(.active) {
    overflow: hidden; }
    #w-panels-stacks_in_105014_page0.section-active .w-panel:not(.active) .w-panel-top {
      opacity: 0;
      -webkit-animation: none;
              animation: none;
      -webkit-transform: translateY(100px);
              transform: translateY(100px); }
  #w-panels-stacks_in_105014_page0 .w-panel {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    overflow: hidden;
    position: relative;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    transition: all 0.3s;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 300px;
    background-position: center center; }
    #w-panels-stacks_in_105014_page0 .w-panel:hover:not(.active) {
      width: calc(100% + 300px); }
      #w-panels-stacks_in_105014_page0 .w-panel:hover:not(.active) .w-panel-icon {
        -webkit-animation: pulse-vertical 2s infinite ease;
                animation: pulse-vertical 2s infinite ease; }
      #w-panels-stacks_in_105014_page0 .w-panel:hover:not(.active)::after {
        opacity: 1;
        -webkit-transform: translateY(0%);
                transform: translateY(0%); }
    #w-panels-stacks_in_105014_page0 .w-panel::before {
      z-index: 1;
      content: '';
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      position: absolute; }
    #w-panels-stacks_in_105014_page0 .w-panel::after {
      /*  */
      font-family: "Quicksand";
      /*  */
      color: rgba(102, 102, 102, 1.00);
      font-size: 20px;
      content: "View Details";
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      opacity: 1;
      padding: 10px;
      display: block;
      text-align: center;
      position: absolute;
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
      transition: all 0.3s ease-in-out, opacity 0s; }
    #w-panels-stacks_in_105014_page0 .w-panel-top {
      z-index: 2;
      opacity: 0;
      width: 100%;
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 10px;
      cursor: pointer;
      position: relative;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      box-sizing: border-box;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-animation: top-in 0.3s 0.3s;
              animation: top-in 0.3s 0.3s;
      -webkit-animation-fill-mode: forwards;
              animation-fill-mode: forwards;
      -webkit-transform: translateY(100px);
              transform: translateY(100px);
      transition: all 0.5s, visibility 0s; }
    #w-panels-stacks_in_105014_page0 .w-panel-close {
      display: none;
      width: 24px;
      height: 24px;
      font-size: 24px;
      color: rgba(3, 7, 3, 1.00);
      cursor: pointer;
      position: relative;
      transition: 0.3s ease; }
      #w-panels-stacks_in_105014_page0 .w-panel-close i {
        transition: all 0.3s; }
      #w-panels-stacks_in_105014_page0 .w-panel-close:hover {
        -webkit-animation: close-hover-pulse 1.5s infinite ease-in-out;
                animation: close-hover-pulse 1.5s infinite ease-in-out; }
    #w-panels-stacks_in_105014_page0 .w-panel-icon {
      width: 100px;
      height: 100px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      border-radius: 13px;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      box-sizing: border-box;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      background: rgba(239, 53, 94, 0.70); }
      #w-panels-stacks_in_105014_page0 .w-panel-icon i {
        color: rgba(239, 53, 94, 1.00);
        line-height: 0;
        font-size: 30px; }
    #w-panels-stacks_in_105014_page0 .w-panel-title {
      /*  */
      font-family: "Quicksand";
      /*  */
      text-align: center;
      box-sizing: border-box;
      color: rgba(3, 7, 3, 1.00);
      font-size: 18px;
      margin-top: 38px;
      font-weight: bold; }
    #w-panels-stacks_in_105014_page0 .w-panel-content {
      /*  */
      font-family: "Open Sans";
      /*  */
      z-index: 2;
      height: 0;
      width: 100%;
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto;
      overflow: hidden;
      position: relative;
      box-sizing: border-box;
      color: rgba(3, 7, 3, 1.00);
      background: rgba(0, 0, 0, 0.00);
      transition: all 0.3s ease-in-out; }
      #w-panels-stacks_in_105014_page0 .w-panel-content-inner {
        opacity: 0;
        margin: 0 auto;
        box-sizing: border-box;
        -webkit-transform: translateY(100%);
                transform: translateY(100%);
        transition: all 0.3s 0.3s ease-in-out;
        max-width: 1000px;
        padding: 45px 15px; }
      #w-panels-stacks_in_105014_page0 .w-panel-content h1, #w-panels-stacks_in_105014_page0 .w-panel-content h2, #w-panels-stacks_in_105014_page0 .w-panel-content h3, #w-panels-stacks_in_105014_page0 .w-panel-content h4, #w-panels-stacks_in_105014_page0 .w-panel-content h5, #w-panels-stacks_in_105014_page0 .w-panel-content h6 {
        color: rgba(76, 76, 76, 1.00); }
      #w-panels-stacks_in_105014_page0 .w-panel-content a {
        color: rgba(255, 255, 255, 1.00); }

#w-panels-stacks_in_105014_page0 .w-panel.active {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }
  #w-panels-stacks_in_105014_page0 .w-panel.active::after {
    opacity: 0; }
  #w-panels-stacks_in_105014_page0 .w-panel.active .w-panel-close {
    display: block;
    margin-left: auto; }
  #w-panels-stacks_in_105014_page0 .w-panel.active .w-panel-top {
    padding: 10px;
    background: rgba(0, 0, 0, 0.20);
    opacity: 0;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-animation: top-in-active 0.3s 0.3s;
            animation: top-in-active 0.3s 0.3s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    transition: all 0.5s, visibility 0s, opacity 0s; }
    #w-panels-stacks_in_105014_page0 .w-panel.active .w-panel-top .w-panel-icon {
      width: 50px;
      height: 50px;
      border-radius: 13px; }
      #w-panels-stacks_in_105014_page0 .w-panel.active .w-panel-top .w-panel-icon i {
        font-size: 30px; }
    #w-panels-stacks_in_105014_page0 .w-panel.active .w-panel-top .w-panel-title {
      margin-top: 0;
      margin-left: 38px;
      font-size: 16px; }
  #w-panels-stacks_in_105014_page0 .w-panel.active .w-panel-content-inner {
    -webkit-animation: content-in 0.3s 0.5s;
            animation: content-in 0.3s 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards; }

@media (max-width: 400px) {
  #w-panels-stacks_in_105014_page0 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch; }
    #w-panels-stacks_in_105014_page0.section-active .w-panel:not(.active) {
      height: 0;
      min-height: 0;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      transition-delay: 0.1s; }
    #w-panels-stacks_in_105014_page0 .w-panel {
      height: 0;
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto;
      min-height: 150px; }
      #w-panels-stacks_in_105014_page0 .w-panel.active {
        height: auto; }
      #w-panels-stacks_in_105014_page0 .w-panel:hover:not(.active) {
        width: 100%;
        min-height: calc(150px + 70px); } }

@-webkit-keyframes top-in-active {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@keyframes top-in-active {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@-webkit-keyframes top-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@keyframes top-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@-webkit-keyframes content-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@keyframes content-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@-webkit-keyframes close-hover-pulse {
  0% {
    padding-right: 0px; }
  50% {
    padding-right: 6px; }
  100% {
    padding-right: 0px; } }

@keyframes close-hover-pulse {
  0% {
    padding-right: 0px; }
  50% {
    padding-right: 6px; }
  100% {
    padding-right: 0px; } }

@-webkit-keyframes pulse-vertical {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); } }

@keyframes pulse-vertical {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); } }
#w-panel-stacks_in_105016_page0.w-panel {
  /*  */
  /*  */
  background: #999999;
  background: linear-gradient(to bottom right, #999999, #8FF2F0);
  /*  */
  /*  */ }
  #w-panel-stacks_in_105016_page0.w-panel.image-icon .w-panel-top .w-panel-icon {
    background: url("../files/icon_image_105016.png") no-repeat center center;
    background-size: cover; }
    #w-panel-stacks_in_105016_page0.w-panel.image-icon .w-panel-top .w-panel-icon i {
      display: none; }
  #w-panel-stacks_in_105016_page0.w-panel.image-bg::before {
    display: block;
    background: rgba(125, 220, 196, 1.00); }
  #w-panel-stacks_in_105016_page0.w-panel.custom-icon .w-panel-top .w-panel-icon {
    background: rgba(160, 211, 47, 0.30); }
    #w-panel-stacks_in_105016_page0.w-panel.custom-icon .w-panel-top .w-panel-icon i {
      color: rgba(255, 255, 255, 1.00); }
  #w-panel-stacks_in_105016_page0.w-panel.custom-title .w-panel-top .w-panel-title, #w-panel-stacks_in_105016_page0.w-panel.custom-title .w-panel-top .w-panel-close {
    color: rgba(125, 220, 196, 1.00); }
  #w-panel-stacks_in_105016_page0.w-panel.custom-help-text::after {
    color: rgba(0, 0, 0, 1.00); }
  #w-panel-stacks_in_105016_page0.w-panel.custom-content .w-panel-content {
    color: rgba(3, 7, 3, 1.00);
    background: rgba(255, 255, 255, 1.00); }
    #w-panel-stacks_in_105016_page0.w-panel.custom-content .w-panel-content h1, #w-panel-stacks_in_105016_page0.w-panel.custom-content .w-panel-content h2, #w-panel-stacks_in_105016_page0.w-panel.custom-content .w-panel-content h3, #w-panel-stacks_in_105016_page0.w-panel.custom-content .w-panel-content h4, #w-panel-stacks_in_105016_page0.w-panel.custom-content .w-panel-content h5, #w-panel-stacks_in_105016_page0.w-panel.custom-content .w-panel-content h6 {
      color: rgba(3, 7, 3, 1.00); }
    #w-panel-stacks_in_105016_page0.w-panel.custom-content .w-panel-content a {
      color: rgba(0, 0, 255, 1.00); }

#stacks_in_105019_page0 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_105019_page0 > .row > .columns{margin-top:0.00rem;margin-bottom:0.00rem}#stacks_in_105019_page0 > .row.divider > .columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(0, 0, 0, 1.00)}
#stacks_in_105021_page0 a{display:block}#stacks_in_105021_page0 img{}



#stacks_in_105027_page0 {
	margin:  14px;
	padding:  20px;
}
#w-panel-stacks_in_105029_page0.w-panel {
  /*  */
  /*  */
  background: #999999;
  background: linear-gradient(to bottom right, #999999, #8FF2F0);
  /*  */
  /*  */ }
  #w-panel-stacks_in_105029_page0.w-panel.image-icon .w-panel-top .w-panel-icon {
    background: url("../files/icon_image_105029.png") no-repeat center center;
    background-size: cover; }
    #w-panel-stacks_in_105029_page0.w-panel.image-icon .w-panel-top .w-panel-icon i {
      display: none; }
  #w-panel-stacks_in_105029_page0.w-panel.image-bg::before {
    display: block;
    background: rgba(153, 153, 153, 0.46); }
  #w-panel-stacks_in_105029_page0.w-panel.custom-icon .w-panel-top .w-panel-icon {
    background: rgba(160, 211, 47, 0.30); }
    #w-panel-stacks_in_105029_page0.w-panel.custom-icon .w-panel-top .w-panel-icon i {
      color: rgba(255, 255, 255, 1.00); }
  #w-panel-stacks_in_105029_page0.w-panel.custom-title .w-panel-top .w-panel-title, #w-panel-stacks_in_105029_page0.w-panel.custom-title .w-panel-top .w-panel-close {
    color: rgba(255, 255, 255, 1.00); }
  #w-panel-stacks_in_105029_page0.w-panel.custom-help-text::after {
    color: rgba(0, 0, 0, 1.00); }
  #w-panel-stacks_in_105029_page0.w-panel.custom-content .w-panel-content {
    color: rgba(3, 7, 3, 1.00);
    background: rgba(255, 255, 255, 1.00); }
    #w-panel-stacks_in_105029_page0.w-panel.custom-content .w-panel-content h1, #w-panel-stacks_in_105029_page0.w-panel.custom-content .w-panel-content h2, #w-panel-stacks_in_105029_page0.w-panel.custom-content .w-panel-content h3, #w-panel-stacks_in_105029_page0.w-panel.custom-content .w-panel-content h4, #w-panel-stacks_in_105029_page0.w-panel.custom-content .w-panel-content h5, #w-panel-stacks_in_105029_page0.w-panel.custom-content .w-panel-content h6 {
      color: rgba(3, 7, 3, 1.00); }
    #w-panel-stacks_in_105029_page0.w-panel.custom-content .w-panel-content a {
      color: rgba(0, 0, 255, 1.00); }

#stacks_in_105032_page0 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_105032_page0 > .row > .columns{margin-top:0.00rem;margin-bottom:0.00rem}#stacks_in_105032_page0 > .row.divider > .columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(0, 0, 0, 1.00)}
#stacks_in_105034_page0 a{display:block}#stacks_in_105034_page0 img{}


#stacks_in_105040_page0 {
	margin:  14px;
	padding:  20px;
}
/*  */
#w-panels-stacks_in_105128_page0 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  overflow: hidden;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  max-width: 600px;
  border-radius: 0px; }
  #w-panels-stacks_in_105128_page0.section-active .w-panel:not(.active) {
    overflow: hidden; }
    #w-panels-stacks_in_105128_page0.section-active .w-panel:not(.active) .w-panel-top {
      opacity: 0;
      -webkit-animation: none;
              animation: none;
      -webkit-transform: translateY(100px);
              transform: translateY(100px); }
  #w-panels-stacks_in_105128_page0 .w-panel {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    overflow: hidden;
    position: relative;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    transition: all 0.3s;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 300px;
    background-position: center center; }
    #w-panels-stacks_in_105128_page0 .w-panel:hover:not(.active) {
      width: calc(100% + 300px); }
      #w-panels-stacks_in_105128_page0 .w-panel:hover:not(.active) .w-panel-icon {
        -webkit-animation: pulse-vertical 2s infinite ease;
                animation: pulse-vertical 2s infinite ease; }
      #w-panels-stacks_in_105128_page0 .w-panel:hover:not(.active)::after {
        opacity: 1;
        -webkit-transform: translateY(0%);
                transform: translateY(0%); }
    #w-panels-stacks_in_105128_page0 .w-panel::before {
      z-index: 1;
      content: '';
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      position: absolute; }
    #w-panels-stacks_in_105128_page0 .w-panel::after {
      /*  */
      font-family: "Quicksand";
      /*  */
      color: rgba(102, 102, 102, 1.00);
      font-size: 20px;
      content: "View Details";
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      opacity: 1;
      padding: 10px;
      display: block;
      text-align: center;
      position: absolute;
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
      transition: all 0.3s ease-in-out, opacity 0s; }
    #w-panels-stacks_in_105128_page0 .w-panel-top {
      z-index: 2;
      opacity: 0;
      width: 100%;
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 10px;
      cursor: pointer;
      position: relative;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      box-sizing: border-box;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-animation: top-in 0.3s 0.3s;
              animation: top-in 0.3s 0.3s;
      -webkit-animation-fill-mode: forwards;
              animation-fill-mode: forwards;
      -webkit-transform: translateY(100px);
              transform: translateY(100px);
      transition: all 0.5s, visibility 0s; }
    #w-panels-stacks_in_105128_page0 .w-panel-close {
      display: none;
      width: 24px;
      height: 24px;
      font-size: 24px;
      color: rgba(3, 7, 3, 1.00);
      cursor: pointer;
      position: relative;
      transition: 0.3s ease; }
      #w-panels-stacks_in_105128_page0 .w-panel-close i {
        transition: all 0.3s; }
      #w-panels-stacks_in_105128_page0 .w-panel-close:hover {
        -webkit-animation: close-hover-pulse 1.5s infinite ease-in-out;
                animation: close-hover-pulse 1.5s infinite ease-in-out; }
    #w-panels-stacks_in_105128_page0 .w-panel-icon {
      width: 100px;
      height: 100px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      border-radius: 13px;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      box-sizing: border-box;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      background: rgba(239, 53, 94, 0.70); }
      #w-panels-stacks_in_105128_page0 .w-panel-icon i {
        color: rgba(239, 53, 94, 1.00);
        line-height: 0;
        font-size: 100px; }
    #w-panels-stacks_in_105128_page0 .w-panel-title {
      /*  */
      font-family: "Quicksand";
      /*  */
      text-align: center;
      box-sizing: border-box;
      color: rgba(3, 7, 3, 1.00);
      font-size: 18px;
      margin-top: 38px;
      font-weight: bold; }
    #w-panels-stacks_in_105128_page0 .w-panel-content {
      /*  */
      font-family: "Open Sans";
      /*  */
      z-index: 2;
      height: 0;
      width: 100%;
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto;
      overflow: hidden;
      position: relative;
      box-sizing: border-box;
      color: rgba(3, 7, 3, 1.00);
      background: rgba(0, 0, 0, 0.00);
      transition: all 0.3s ease-in-out; }
      #w-panels-stacks_in_105128_page0 .w-panel-content-inner {
        opacity: 0;
        margin: 0 auto;
        box-sizing: border-box;
        -webkit-transform: translateY(100%);
                transform: translateY(100%);
        transition: all 0.3s 0.3s ease-in-out;
        max-width: 1000px;
        padding: 45px 15px; }
      #w-panels-stacks_in_105128_page0 .w-panel-content h1, #w-panels-stacks_in_105128_page0 .w-panel-content h2, #w-panels-stacks_in_105128_page0 .w-panel-content h3, #w-panels-stacks_in_105128_page0 .w-panel-content h4, #w-panels-stacks_in_105128_page0 .w-panel-content h5, #w-panels-stacks_in_105128_page0 .w-panel-content h6 {
        color: rgba(76, 76, 76, 1.00); }
      #w-panels-stacks_in_105128_page0 .w-panel-content a {
        color: rgba(255, 255, 255, 1.00); }

#w-panels-stacks_in_105128_page0 .w-panel.active {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }
  #w-panels-stacks_in_105128_page0 .w-panel.active::after {
    opacity: 0; }
  #w-panels-stacks_in_105128_page0 .w-panel.active .w-panel-close {
    display: block;
    margin-left: auto; }
  #w-panels-stacks_in_105128_page0 .w-panel.active .w-panel-top {
    padding: 10px;
    background: rgba(0, 0, 0, 0.20);
    opacity: 0;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-animation: top-in-active 0.3s 0.3s;
            animation: top-in-active 0.3s 0.3s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    transition: all 0.5s, visibility 0s, opacity 0s; }
    #w-panels-stacks_in_105128_page0 .w-panel.active .w-panel-top .w-panel-icon {
      width: 50px;
      height: 50px;
      border-radius: 13px; }
      #w-panels-stacks_in_105128_page0 .w-panel.active .w-panel-top .w-panel-icon i {
        font-size: 30px; }
    #w-panels-stacks_in_105128_page0 .w-panel.active .w-panel-top .w-panel-title {
      margin-top: 0;
      margin-left: 38px;
      font-size: 16px; }
  #w-panels-stacks_in_105128_page0 .w-panel.active .w-panel-content-inner {
    -webkit-animation: content-in 0.3s 0.5s;
            animation: content-in 0.3s 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards; }

@media (max-width: 400px) {
  #w-panels-stacks_in_105128_page0 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch; }
    #w-panels-stacks_in_105128_page0.section-active .w-panel:not(.active) {
      height: 0;
      min-height: 0;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      transition-delay: 0.1s; }
    #w-panels-stacks_in_105128_page0 .w-panel {
      height: 0;
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto;
      min-height: 150px; }
      #w-panels-stacks_in_105128_page0 .w-panel.active {
        height: auto; }
      #w-panels-stacks_in_105128_page0 .w-panel:hover:not(.active) {
        width: 100%;
        min-height: calc(150px + 70px); } }

@-webkit-keyframes top-in-active {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@keyframes top-in-active {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@-webkit-keyframes top-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@keyframes top-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@-webkit-keyframes content-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@keyframes content-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@-webkit-keyframes close-hover-pulse {
  0% {
    padding-right: 0px; }
  50% {
    padding-right: 6px; }
  100% {
    padding-right: 0px; } }

@keyframes close-hover-pulse {
  0% {
    padding-right: 0px; }
  50% {
    padding-right: 6px; }
  100% {
    padding-right: 0px; } }

@-webkit-keyframes pulse-vertical {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); } }

@keyframes pulse-vertical {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); } }
#w-panel-stacks_in_105130_page0.w-panel {
  /*  */
  /*  */
  background: #999999;
  background: linear-gradient(to right, #999999, #8FF2F0);
  /*  */
  /*  */ }
  #w-panel-stacks_in_105130_page0.w-panel.image-icon .w-panel-top .w-panel-icon {
    background: url("../files/icon_image_105130.png") no-repeat center center;
    background-size: cover; }
    #w-panel-stacks_in_105130_page0.w-panel.image-icon .w-panel-top .w-panel-icon i {
      display: none; }
  #w-panel-stacks_in_105130_page0.w-panel.image-bg::before {
    display: block;
    background: rgba(153, 153, 153, 0.46); }
  #w-panel-stacks_in_105130_page0.w-panel.custom-icon .w-panel-top .w-panel-icon {
    background: rgba(160, 211, 47, 0.30); }
    #w-panel-stacks_in_105130_page0.w-panel.custom-icon .w-panel-top .w-panel-icon i {
      color: rgba(255, 255, 255, 1.00); }
  #w-panel-stacks_in_105130_page0.w-panel.custom-title .w-panel-top .w-panel-title, #w-panel-stacks_in_105130_page0.w-panel.custom-title .w-panel-top .w-panel-close {
    color: rgba(255, 255, 255, 1.00); }
  #w-panel-stacks_in_105130_page0.w-panel.custom-help-text::after {
    color: rgba(0, 0, 0, 1.00); }
  #w-panel-stacks_in_105130_page0.w-panel.custom-content .w-panel-content {
    color: rgba(3, 7, 3, 1.00);
    background: rgba(255, 255, 255, 1.00); }
    #w-panel-stacks_in_105130_page0.w-panel.custom-content .w-panel-content h1, #w-panel-stacks_in_105130_page0.w-panel.custom-content .w-panel-content h2, #w-panel-stacks_in_105130_page0.w-panel.custom-content .w-panel-content h3, #w-panel-stacks_in_105130_page0.w-panel.custom-content .w-panel-content h4, #w-panel-stacks_in_105130_page0.w-panel.custom-content .w-panel-content h5, #w-panel-stacks_in_105130_page0.w-panel.custom-content .w-panel-content h6 {
      color: rgba(3, 7, 3, 1.00); }
    #w-panel-stacks_in_105130_page0.w-panel.custom-content .w-panel-content a {
      color: rgba(0, 0, 255, 1.00); }

#stacks_in_105133_page0 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_105133_page0 > .row > .columns{margin-top:0.00rem;margin-bottom:0.00rem}#stacks_in_105133_page0 > .row.divider > .columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(0, 0, 0, 1.00)}
#stacks_in_105135_page0 a{display:block}#stacks_in_105135_page0 img{}


#stacks_in_105141_page0 {
	margin:  14px;
	padding:  20px;
}
#w-panel-stacks_in_105143_page0.w-panel {
  /*  */
  /*  */
  background: #999999;
  background: linear-gradient(to bottom left, #999999, #8FF2F0);
  /*  */
  /*  */ }
  #w-panel-stacks_in_105143_page0.w-panel.image-icon .w-panel-top .w-panel-icon {
    background: url("../files/icon_image_105143.png") no-repeat center center;
    background-size: cover; }
    #w-panel-stacks_in_105143_page0.w-panel.image-icon .w-panel-top .w-panel-icon i {
      display: none; }
  #w-panel-stacks_in_105143_page0.w-panel.image-bg::before {
    display: block;
    background: rgba(125, 219, 217, 0.74); }
  #w-panel-stacks_in_105143_page0.w-panel.custom-icon .w-panel-top .w-panel-icon {
    background: rgba(160, 211, 47, 0.30); }
    #w-panel-stacks_in_105143_page0.w-panel.custom-icon .w-panel-top .w-panel-icon i {
      color: rgba(255, 255, 255, 1.00); }
  #w-panel-stacks_in_105143_page0.w-panel.custom-title .w-panel-top .w-panel-title, #w-panel-stacks_in_105143_page0.w-panel.custom-title .w-panel-top .w-panel-close {
    color: rgba(255, 255, 255, 1.00); }
  #w-panel-stacks_in_105143_page0.w-panel.custom-help-text::after {
    color: rgba(0, 0, 0, 1.00); }
  #w-panel-stacks_in_105143_page0.w-panel.custom-content .w-panel-content {
    color: rgba(3, 7, 3, 1.00);
    background: rgba(255, 255, 255, 1.00); }
    #w-panel-stacks_in_105143_page0.w-panel.custom-content .w-panel-content h1, #w-panel-stacks_in_105143_page0.w-panel.custom-content .w-panel-content h2, #w-panel-stacks_in_105143_page0.w-panel.custom-content .w-panel-content h3, #w-panel-stacks_in_105143_page0.w-panel.custom-content .w-panel-content h4, #w-panel-stacks_in_105143_page0.w-panel.custom-content .w-panel-content h5, #w-panel-stacks_in_105143_page0.w-panel.custom-content .w-panel-content h6 {
      color: rgba(3, 7, 3, 1.00); }
    #w-panel-stacks_in_105143_page0.w-panel.custom-content .w-panel-content a {
      color: rgba(0, 0, 255, 1.00); }

#stacks_in_105146_page0 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_105146_page0 > .row > .columns{margin-top:0.00rem;margin-bottom:0.00rem}#stacks_in_105146_page0 > .row.divider > .columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(0, 0, 0, 1.00)}
#stacks_in_105148_page0 a{display:block}#stacks_in_105148_page0 img{}


#stacks_in_105154_page0 {
	margin:  14px;
	padding:  20px;
}


#stacks_in_105172_page0 {
	margin:  12px;
	padding:  20px;
}
/*  */
#w-panels-stacks_in_104801_page0 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  overflow: hidden;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  max-width: 600px;
  border-radius: 0px; }
  #w-panels-stacks_in_104801_page0.section-active .w-panel:not(.active) {
    overflow: hidden; }
    #w-panels-stacks_in_104801_page0.section-active .w-panel:not(.active) .w-panel-top {
      opacity: 0;
      -webkit-animation: none;
              animation: none;
      -webkit-transform: translateY(100px);
              transform: translateY(100px); }
  #w-panels-stacks_in_104801_page0 .w-panel {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    overflow: hidden;
    position: relative;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    transition: all 0.3s;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 300px;
    background-position: center center; }
    #w-panels-stacks_in_104801_page0 .w-panel:hover:not(.active) {
      width: calc(100% + 300px); }
      #w-panels-stacks_in_104801_page0 .w-panel:hover:not(.active) .w-panel-icon {
        -webkit-animation: pulse-vertical 2s infinite ease;
                animation: pulse-vertical 2s infinite ease; }
      #w-panels-stacks_in_104801_page0 .w-panel:hover:not(.active)::after {
        opacity: 1;
        -webkit-transform: translateY(0%);
                transform: translateY(0%); }
    #w-panels-stacks_in_104801_page0 .w-panel::before {
      z-index: 1;
      content: '';
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      position: absolute; }
    #w-panels-stacks_in_104801_page0 .w-panel::after {
      /*  */
      font-family: "Quicksand";
      /*  */
      color: rgba(102, 102, 102, 1.00);
      font-size: 20px;
      content: "View Details";
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      opacity: 1;
      padding: 10px;
      display: block;
      text-align: center;
      position: absolute;
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
      transition: all 0.3s ease-in-out, opacity 0s; }
    #w-panels-stacks_in_104801_page0 .w-panel-top {
      z-index: 2;
      opacity: 0;
      width: 100%;
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 10px;
      cursor: pointer;
      position: relative;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      box-sizing: border-box;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-animation: top-in 0.3s 0.3s;
              animation: top-in 0.3s 0.3s;
      -webkit-animation-fill-mode: forwards;
              animation-fill-mode: forwards;
      -webkit-transform: translateY(100px);
              transform: translateY(100px);
      transition: all 0.5s, visibility 0s; }
    #w-panels-stacks_in_104801_page0 .w-panel-close {
      display: none;
      width: 24px;
      height: 24px;
      font-size: 24px;
      color: rgba(76, 76, 76, 1.00);
      cursor: pointer;
      position: relative;
      transition: 0.3s ease; }
      #w-panels-stacks_in_104801_page0 .w-panel-close i {
        transition: all 0.3s; }
      #w-panels-stacks_in_104801_page0 .w-panel-close:hover {
        -webkit-animation: close-hover-pulse 1.5s infinite ease-in-out;
                animation: close-hover-pulse 1.5s infinite ease-in-out; }
    #w-panels-stacks_in_104801_page0 .w-panel-icon {
      width: 100px;
      height: 100px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      border-radius: 13px;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      box-sizing: border-box;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      background: rgba(239, 53, 94, 0.70); }
      #w-panels-stacks_in_104801_page0 .w-panel-icon i {
        color: rgba(239, 53, 94, 1.00);
        line-height: 0;
        font-size: 30px; }
    #w-panels-stacks_in_104801_page0 .w-panel-title {
      /*  */
      font-family: "Quicksand";
      /*  */
      text-align: center;
      box-sizing: border-box;
      color: rgba(76, 76, 76, 1.00);
      font-size: 18px;
      margin-top: 38px;
      font-weight: bold; }
    #w-panels-stacks_in_104801_page0 .w-panel-content {
      /*  */
      font-family: "Open Sans";
      /*  */
      z-index: 2;
      height: 0;
      width: 100%;
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto;
      overflow: hidden;
      position: relative;
      box-sizing: border-box;
      color: rgba(3, 7, 3, 1.00);
      background: rgba(0, 0, 0, 0.00);
      transition: all 0.3s ease-in-out; }
      #w-panels-stacks_in_104801_page0 .w-panel-content-inner {
        opacity: 0;
        margin: 0 auto;
        box-sizing: border-box;
        -webkit-transform: translateY(100%);
                transform: translateY(100%);
        transition: all 0.3s 0.3s ease-in-out;
        max-width: 1000px;
        padding: 45px 15px; }
      #w-panels-stacks_in_104801_page0 .w-panel-content h1, #w-panels-stacks_in_104801_page0 .w-panel-content h2, #w-panels-stacks_in_104801_page0 .w-panel-content h3, #w-panels-stacks_in_104801_page0 .w-panel-content h4, #w-panels-stacks_in_104801_page0 .w-panel-content h5, #w-panels-stacks_in_104801_page0 .w-panel-content h6 {
        color: rgba(76, 76, 76, 1.00); }
      #w-panels-stacks_in_104801_page0 .w-panel-content a {
        color: rgba(255, 255, 255, 1.00); }

#w-panels-stacks_in_104801_page0 .w-panel.active {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }
  #w-panels-stacks_in_104801_page0 .w-panel.active::after {
    opacity: 0; }
  #w-panels-stacks_in_104801_page0 .w-panel.active .w-panel-close {
    display: block;
    margin-left: auto; }
  #w-panels-stacks_in_104801_page0 .w-panel.active .w-panel-top {
    padding: 10px;
    background: rgba(0, 0, 0, 0.20);
    opacity: 0;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-animation: top-in-active 0.3s 0.3s;
            animation: top-in-active 0.3s 0.3s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    transition: all 0.5s, visibility 0s, opacity 0s; }
    #w-panels-stacks_in_104801_page0 .w-panel.active .w-panel-top .w-panel-icon {
      width: 50px;
      height: 50px;
      border-radius: 13px; }
      #w-panels-stacks_in_104801_page0 .w-panel.active .w-panel-top .w-panel-icon i {
        font-size: 30px; }
    #w-panels-stacks_in_104801_page0 .w-panel.active .w-panel-top .w-panel-title {
      margin-top: 0;
      margin-left: 38px;
      font-size: 16px; }
  #w-panels-stacks_in_104801_page0 .w-panel.active .w-panel-content-inner {
    -webkit-animation: content-in 0.3s 0.5s;
            animation: content-in 0.3s 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards; }

@media (max-width: 400px) {
  #w-panels-stacks_in_104801_page0 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch; }
    #w-panels-stacks_in_104801_page0.section-active .w-panel:not(.active) {
      height: 0;
      min-height: 0;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      transition-delay: 0.1s; }
    #w-panels-stacks_in_104801_page0 .w-panel {
      height: 0;
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto;
      min-height: 150px; }
      #w-panels-stacks_in_104801_page0 .w-panel.active {
        height: auto; }
      #w-panels-stacks_in_104801_page0 .w-panel:hover:not(.active) {
        width: 100%;
        min-height: calc(150px + 70px); } }

@-webkit-keyframes top-in-active {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@keyframes top-in-active {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@-webkit-keyframes top-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@keyframes top-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@-webkit-keyframes content-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@keyframes content-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@-webkit-keyframes close-hover-pulse {
  0% {
    padding-right: 0px; }
  50% {
    padding-right: 6px; }
  100% {
    padding-right: 0px; } }

@keyframes close-hover-pulse {
  0% {
    padding-right: 0px; }
  50% {
    padding-right: 6px; }
  100% {
    padding-right: 0px; } }

@-webkit-keyframes pulse-vertical {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); } }

@keyframes pulse-vertical {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); } }
#w-panel-stacks_in_104803_page0.w-panel {
  /*  */
  /*  */
  background: #999999;
  background: linear-gradient(to bottom right, #999999, #8FF2F0);
  /*  */
  /*  */ }
  #w-panel-stacks_in_104803_page0.w-panel.image-icon .w-panel-top .w-panel-icon {
    background: url("../files/icon_image_104803.png") no-repeat center center;
    background-size: cover; }
    #w-panel-stacks_in_104803_page0.w-panel.image-icon .w-panel-top .w-panel-icon i {
      display: none; }
  #w-panel-stacks_in_104803_page0.w-panel.image-bg::before {
    display: block;
    background: rgba(125, 220, 196, 1.00); }
  #w-panel-stacks_in_104803_page0.w-panel.custom-icon .w-panel-top .w-panel-icon {
    background: rgba(160, 211, 47, 0.30); }
    #w-panel-stacks_in_104803_page0.w-panel.custom-icon .w-panel-top .w-panel-icon i {
      color: rgba(255, 255, 255, 1.00); }
  #w-panel-stacks_in_104803_page0.w-panel.custom-title .w-panel-top .w-panel-title, #w-panel-stacks_in_104803_page0.w-panel.custom-title .w-panel-top .w-panel-close {
    color: rgba(125, 220, 196, 1.00); }
  #w-panel-stacks_in_104803_page0.w-panel.custom-help-text::after {
    color: rgba(0, 0, 0, 1.00); }
  #w-panel-stacks_in_104803_page0.w-panel.custom-content .w-panel-content {
    color: rgba(3, 7, 3, 1.00);
    background: rgba(255, 255, 255, 1.00); }
    #w-panel-stacks_in_104803_page0.w-panel.custom-content .w-panel-content h1, #w-panel-stacks_in_104803_page0.w-panel.custom-content .w-panel-content h2, #w-panel-stacks_in_104803_page0.w-panel.custom-content .w-panel-content h3, #w-panel-stacks_in_104803_page0.w-panel.custom-content .w-panel-content h4, #w-panel-stacks_in_104803_page0.w-panel.custom-content .w-panel-content h5, #w-panel-stacks_in_104803_page0.w-panel.custom-content .w-panel-content h6 {
      color: rgba(3, 7, 3, 1.00); }
    #w-panel-stacks_in_104803_page0.w-panel.custom-content .w-panel-content a {
      color: rgba(0, 0, 255, 1.00); }

#stacks_in_105346_page0 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_105346_page0 > .row > .columns{margin-top:0.00rem;margin-bottom:0.00rem}#stacks_in_105346_page0 > .row.divider > .columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(0, 0, 0, 1.00)}
#stacks_in_104808_page0 a{display:block}#stacks_in_104808_page0 img{}


#stacks_in_105333_page0 {
	margin:  10px;
}

#stacks_in_104814_page0 {
	margin:  14px;
	padding:  20px;
}
#w-panel-stacks_in_104816_page0.w-panel {
  /*  */
  /*  */
  background: #999999;
  background: linear-gradient(to bottom, #999999, #8FF2F0);
  /*  */
  /*  */ }
  #w-panel-stacks_in_104816_page0.w-panel.image-icon .w-panel-top .w-panel-icon {
    background: url("../files/icon_image_104816.png") no-repeat center center;
    background-size: cover; }
    #w-panel-stacks_in_104816_page0.w-panel.image-icon .w-panel-top .w-panel-icon i {
      display: none; }
  #w-panel-stacks_in_104816_page0.w-panel.image-bg::before {
    display: block;
    background: rgba(153, 153, 153, 0.46); }
  #w-panel-stacks_in_104816_page0.w-panel.custom-icon .w-panel-top .w-panel-icon {
    background: rgba(160, 211, 47, 0.30); }
    #w-panel-stacks_in_104816_page0.w-panel.custom-icon .w-panel-top .w-panel-icon i {
      color: rgba(255, 255, 255, 1.00); }
  #w-panel-stacks_in_104816_page0.w-panel.custom-title .w-panel-top .w-panel-title, #w-panel-stacks_in_104816_page0.w-panel.custom-title .w-panel-top .w-panel-close {
    color: rgba(255, 255, 255, 1.00); }
  #w-panel-stacks_in_104816_page0.w-panel.custom-help-text::after {
    color: rgba(0, 0, 0, 1.00); }
  #w-panel-stacks_in_104816_page0.w-panel.custom-content .w-panel-content {
    color: rgba(3, 7, 3, 1.00);
    background: rgba(255, 255, 255, 1.00); }
    #w-panel-stacks_in_104816_page0.w-panel.custom-content .w-panel-content h1, #w-panel-stacks_in_104816_page0.w-panel.custom-content .w-panel-content h2, #w-panel-stacks_in_104816_page0.w-panel.custom-content .w-panel-content h3, #w-panel-stacks_in_104816_page0.w-panel.custom-content .w-panel-content h4, #w-panel-stacks_in_104816_page0.w-panel.custom-content .w-panel-content h5, #w-panel-stacks_in_104816_page0.w-panel.custom-content .w-panel-content h6 {
      color: rgba(3, 7, 3, 1.00); }
    #w-panel-stacks_in_104816_page0.w-panel.custom-content .w-panel-content a {
      color: rgba(0, 0, 255, 1.00); }
#stacks_in_104821_page0 a{display:block}#stacks_in_104821_page0 img{}


#stacks_in_104812_page0 {
	margin:  10px;
}

#stacks_in_104827_page0 {
	margin:  14px;
	padding:  20px;
}
#stacks_in_105287_page0 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_105287_page0 > .row.collapse{padding-left:0;padding-right:0}#stacks_in_105287_page0 > .row.padding-detailed{padding:0.00rem 0.00rem 0.00rem 0.00rem}@media only screen and (max-width:40em){#stacks_in_105287_page0 > .row.padding-detailed.padding-medium-up,#stacks_in_105287_page0 > .row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_105287_page0 > .row.padding-detailed.padding-y-medium-up,#stacks_in_105287_page0 > .row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){#stacks_in_105287_page0 > .row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_105287_page0 > .row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}


.ascend-marker.show-marker {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; }

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

#stacks_in_p105273_n2_page0{overflow:hidden}#stacks_in_p105273_n2_page0 hr{opacity:1.00;border-top:1px solid rgba(221, 221, 221, 1.00);margin:3.00rem 0;}
 #stacks_in_104790_page0 .shear-mag{position:absolute;top:0px}#stacks_in_104790_page0 a.shear-mag.offset-override{top:0px!important} .mg-menu .mgicon-news{vertical-align:middle;font-size:1.60rem; padding-right:1.00rem;}    



#stacks_in_104793_page0 {
	margin: 19px 19px 19px 19px;
	padding: 35px 0px 9px 0px;
}
/*  */
#stacks_in_105270_page0 .stacks_in, #stacks_in_105270_page0 .stacks_out, #stacks_out_104654_page0 .stacks_in, #stacks_out_104654_page0.stacks_out {
  /*  */
  overflow: visible !important;
  /*  */ }

#headliner-stacks_in_104654_page0 {
  z-index: 5000;
  max-width: 800px;
  margin: 0 auto;
  position: relative; }

#headliner-stacks_in_104654_page0 .headline {
  top: 0;
  left: 0;
  z-index: 5;
  opacity: 0;
  width: 100%;
  position: absolute;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  transition: all 0.5s ease-in, opacity 0s; }
  #headliner-stacks_in_104654_page0 .headline * {
    box-sizing: border-box; }
  #headliner-stacks_in_104654_page0 .headline .headline-top {
    position: relative;
    /*  */
    /*  */
    background: rgba(3, 7, 3, 1.00);
    /*  */
    /*  */
    /*  */
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.30);
    border-radius: 2px; }
    #headliner-stacks_in_104654_page0 .headline .headline-top .headline-inner {
      z-index: 2;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      position: relative;
      box-sizing: border-box;
      padding: 15px 15px;
      margin-top: 60px; }
    #headliner-stacks_in_104654_page0 .headline .headline-top::before {
      /*  */ }
  #headliner-stacks_in_104654_page0 .headline .headline-bottom {
    display: none;
    color: rgba(27, 34, 42, 1.00);
    /*  */
    font-family: "Montserrat";
    /*  */
    /*  */
    background: rgba(255, 255, 255, 1.00);
    /*  */
    /*  */ }
    #headliner-stacks_in_104654_page0 .headline .headline-bottom h1, #headliner-stacks_in_104654_page0 .headline .headline-bottom h2, #headliner-stacks_in_104654_page0 .headline .headline-bottom h3, #headliner-stacks_in_104654_page0 .headline .headline-bottom h4, #headliner-stacks_in_104654_page0 .headline .headline-bottom h5, #headliner-stacks_in_104654_page0 .headline .headline-bottom h6 {
      /*  */
      font-family: "Raleway";
      /*  */
      color: rgba(3, 7, 3, 1.00); }
  #headliner-stacks_in_104654_page0 .headline-col-first {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  #headliner-stacks_in_104654_page0 .headline-col-last {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 30px; }
  #headliner-stacks_in_104654_page0 .headline.active {
    z-index: 10;
    -webkit-animation: headline-in-down 0.3s;
            animation: headline-in-down 0.3s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards; }

#headliner-stacks_in_104654_page0 .headline-image {
  width: 200px;
  height: 200px;
  border-radius: 0px;
  margin-bottom: 12px;
  margin-top: -60px;
  box-shadow: 4px 4px 8px 0px rgba(153, 153, 153, 0.73); }

#headliner-stacks_in_104654_page0 .headline-toggle {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  margin-top: auto;
  margin-bottom: auto; }
  #headliner-stacks_in_104654_page0 .headline-toggle a {
    /*  */
    font-family: "Raleway";
    /*  */
    color: rgba(3, 7, 3, 1.00);
    background: rgba(125, 220, 196, 1.00);
    width: 100%;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    padding: 8px 10px;
    border-radius: 30px; }
    #headliner-stacks_in_104654_page0 .headline-toggle a:hover {
      color: rgba(27, 34, 42, 1.00);
      background: rgba(255, 255, 255, 1.00); }
    #headliner-stacks_in_104654_page0 .headline-toggle a::before {
      content: 'More Info';
      display: inline-block; }
  #headliner-stacks_in_104654_page0 .headline-toggle i {
    margin-left: 8px; }

#headliner-stacks_in_104654_page0 .headline-close {
  display: none; }

#headliner-stacks_in_104654_page0 .headline-text {
  /*  */
  font-family: "Raleway";
  /*  */
  color: rgba(255, 255, 255, 1.00);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto 0;
  font-size: 30px;
  line-height: 42.000000px;
  font-weight: bold;
  cursor: pointer;
  letter-spacing: 1px; }
  #headliner-stacks_in_104654_page0 .headline-text:hover {
    text-decoration: underline; }

#headliner-stacks_in_104654_page0 .headline-title {
  /*  */
  font-family: "Montserrat";
  /*  */
  font-weight: bold;
  color: rgba(255, 255, 255, 1.00);
  font-size: 17px;
  margin-bottom: 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  letter-spacing: 1px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase; }
  #headliner-stacks_in_104654_page0 .headline-title::before {
    content: 'Project News';
    display: inline-block; }

#headliner-stacks_in_104654_page0 .headline-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto; }
  #headliner-stacks_in_104654_page0 .headline-controls span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    cursor: pointer;
    box-sizing: border-box;
    color: rgba(143, 242, 240, 1.00);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    #headliner-stacks_in_104654_page0 .headline-controls span:first-child {
      padding-right: 5px; }
    #headliner-stacks_in_104654_page0 .headline-controls span:hover {
      color: rgba(255, 255, 255, 1.00); }
  #headliner-stacks_in_104654_page0 .headline-controls i {
    width: 25px;
    height: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    font-size: 16px;
    border-radius: 25px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }

#headliner-stacks_in_104654_page0.full {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  position: fixed; }
  #headliner-stacks_in_104654_page0.full .headline {
    opacity: 1;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-y: scroll;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    #headliner-stacks_in_104654_page0.full .headline .headline-top {
      border-radius: 0px; }
      #headliner-stacks_in_104654_page0.full .headline .headline-top:hover .headline-text {
        text-decoration: none; }
      #headliner-stacks_in_104654_page0.full .headline .headline-top .headline-inner {
        width: 100%;
        margin-top: 0;
        min-height: 250px; }
    #headliner-stacks_in_104654_page0.full .headline .headline-bottom {
      width: 100%;
      display: block;
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto;
      font-family: "Raleway"; }
      #headliner-stacks_in_104654_page0.full .headline .headline-bottom .headline-inner {
        padding: 40px 20px; }
    #headliner-stacks_in_104654_page0.full .headline-inner {
      margin: 0 auto;
      position: relative;
      max-width: 800px;
      padding-top: 65px; }
    #headliner-stacks_in_104654_page0.full .headline-col-last {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse; }
    #headliner-stacks_in_104654_page0.full .headline-close {
      top: 15px;
      right: 15px;
      position: absolute;
      width: 30px;
      height: 30px;
      font-size: 30px;
      max-width: 800px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      cursor: pointer;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 20px;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      transition: all 0.3s;
      color: rgba(143, 242, 240, 1.00);
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      #headliner-stacks_in_104654_page0.full .headline-close:hover {
        color: rgba(255, 255, 255, 1.00);
        -webkit-transform: scale(1.2);
                transform: scale(1.2); }
    #headliner-stacks_in_104654_page0.full .headline-image {
      width: 200px;
      height: 200px;
      margin-top: auto; }
    #headliner-stacks_in_104654_page0.full .headline-toggle {
      display: none; }
    #headliner-stacks_in_104654_page0.full .headline-title {
      margin-bottom: 20px; }
    #headliner-stacks_in_104654_page0.full .headline-text {
      cursor: normal;
      font-size: 35px;
      line-height: 49.000000px;
      margin-top: auto;
      margin-bottom: 20px; }

@media (max-width: 800px) {
  #headliner-stacks_in_104654_page0:not(.full) .headline .headline-top .headline-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  #headliner-stacks_in_104654_page0:not(.full) .headline-col-first {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  #headliner-stacks_in_104654_page0:not(.full) .headline-col-last {
    padding-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
  #headliner-stacks_in_104654_page0:not(.full) .headline-image {
    width: 100%;
    height: 150px;
    max-width: 150px; }
  #headliner-stacks_in_104654_page0:not(.full) .headline-toggle {
    max-width: 150px;
    margin-bottom: 20px; }
  #headliner-stacks_in_104654_page0:not(.full) .headline-title {
    margin-top: 20px;
    margin-bottom: 0; }
  #headliner-stacks_in_104654_page0:not(.full) .headline-text {
    font-size: 18px;
    line-height: 25.199999px; } }

@media (max-width: 600px) {
  #headliner-stacks_in_104654_page0.full .headline .headline-top .headline-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: %( 30 + 20px)%px; }
  #headliner-stacks_in_104654_page0.full .headline-close {
    top: 15px;
    right: 15px;
    position: absolute; }
  #headliner-stacks_in_104654_page0.full .headline-col-first {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  #headliner-stacks_in_104654_page0.full .headline-col-last {
    padding-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
  #headliner-stacks_in_104654_page0.full .headline-image {
    width: 100%;
    height: 100px;
    max-width: 100px; }
  #headliner-stacks_in_104654_page0.full .headline-title {
    margin-top: 20px;
    margin-bottom: 0; }
  #headliner-stacks_in_104654_page0.full .headline-text {
    font-size: 18px;
    line-height: 25.199999px; } }

#headliner-stacks_in_104654_page0.slide-vert.forwards .headline {
  -webkit-animation: headline-out-down 0.3s;
          animation: headline-out-down 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }
  #headliner-stacks_in_104654_page0.slide-vert.forwards .headline.active {
    -webkit-animation: headline-in-down 0.3s;
            animation: headline-in-down 0.3s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards; }

#headliner-stacks_in_104654_page0.slide-vert.backwards .headline {
  -webkit-animation: headline-out-up 0.3s;
          animation: headline-out-up 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }
  #headliner-stacks_in_104654_page0.slide-vert.backwards .headline.active {
    -webkit-animation: headline-in-up 0.3s;
            animation: headline-in-up 0.3s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards; }

#headliner-stacks_in_104654_page0.slide-horiz.backwards .headline {
  -webkit-animation: headline-out-left 0.3s;
          animation: headline-out-left 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }
  #headliner-stacks_in_104654_page0.slide-horiz.backwards .headline.active {
    -webkit-animation: headline-in-left 0.3s;
            animation: headline-in-left 0.3s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards; }

#headliner-stacks_in_104654_page0.slide-horiz.forwards .headline {
  -webkit-animation: headline-out-right 0.3s;
          animation: headline-out-right 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }
  #headliner-stacks_in_104654_page0.slide-horiz.forwards .headline.active {
    -webkit-animation: headline-in-right 0.3s;
            animation: headline-in-right 0.3s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards; }

#headliner-stacks_in_104654_page0.slide-horiz.full .headline, #headliner-stacks_in_104654_page0.slide-vert.full .headline {
  opacity: 1;
  transition: none;
  -webkit-transform: translateY(100%);
          transform: translateY(100%); }
  #headliner-stacks_in_104654_page0.slide-horiz.full .headline.active, #headliner-stacks_in_104654_page0.slide-vert.full .headline.active {
    opacity: 1;
    -webkit-animation: slide-in-up 0.3s;
            animation: slide-in-up 0.3s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards; }

#headliner-stacks_in_104654_page0.slide-horiz.full.backwards .headline, #headliner-stacks_in_104654_page0.slide-vert.full.backwards .headline {
  opacity: 1;
  -webkit-animation: headline-full-out-left 0.3s;
          animation: headline-full-out-left 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }
  #headliner-stacks_in_104654_page0.slide-horiz.full.backwards .headline.active, #headliner-stacks_in_104654_page0.slide-vert.full.backwards .headline.active {
    -webkit-animation: headline-full-in-left 0.3s;
            animation: headline-full-in-left 0.3s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards; }

#headliner-stacks_in_104654_page0.slide-horiz.full.forwards .headline, #headliner-stacks_in_104654_page0.slide-vert.full.forwards .headline {
  opacity: 1;
  -webkit-animation: headline-full-out-right 0.3s;
          animation: headline-full-out-right 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }
  #headliner-stacks_in_104654_page0.slide-horiz.full.forwards .headline.active, #headliner-stacks_in_104654_page0.slide-vert.full.forwards .headline.active {
    -webkit-animation: headline-full-in-right 0.3s;
            animation: headline-full-in-right 0.3s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards; }

@-webkit-keyframes headline-in-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100%) scale(0.5);
            transform: translateY(-100%) scale(0.5); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%) scale(1);
            transform: translateY(0%) scale(1); } }

@keyframes headline-in-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100%) scale(0.5);
            transform: translateY(-100%) scale(0.5); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%) scale(1);
            transform: translateY(0%) scale(1); } }

@-webkit-keyframes headline-in-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%) scale(0.5);
            transform: translateY(100%) scale(0.5); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%) scale(1);
            transform: translateY(0%) scale(1); } }

@keyframes headline-in-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%) scale(0.5);
            transform: translateY(100%) scale(0.5); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%) scale(1);
            transform: translateY(0%) scale(1); } }

@-webkit-keyframes headline-out-down {
  from {
    opacity: 1;
    -webkit-transform: translateY(0%) scale(1);
            transform: translateY(0%) scale(1); }
  to {
    opacity: 0;
    -webkit-transform: translateY(100%) scale(0.5);
            transform: translateY(100%) scale(0.5); } }

@keyframes headline-out-down {
  from {
    opacity: 1;
    -webkit-transform: translateY(0%) scale(1);
            transform: translateY(0%) scale(1); }
  to {
    opacity: 0;
    -webkit-transform: translateY(100%) scale(0.5);
            transform: translateY(100%) scale(0.5); } }

@-webkit-keyframes headline-out-up {
  from {
    opacity: 1;
    -webkit-transform: translateY(0%) scale(1);
            transform: translateY(0%) scale(1); }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100%) scale(0.5);
            transform: translateY(-100%) scale(0.5); } }

@keyframes headline-out-up {
  from {
    opacity: 1;
    -webkit-transform: translateY(0%) scale(1);
            transform: translateY(0%) scale(1); }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100%) scale(0.5);
            transform: translateY(-100%) scale(0.5); } }

@-webkit-keyframes headline-in-left {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100%) scale(0.5);
            transform: translateX(-100%) scale(0.5); }
  to {
    opacity: 1;
    -webkit-transform: translateX(0%) scale(1);
            transform: translateX(0%) scale(1); } }

@keyframes headline-in-left {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100%) scale(0.5);
            transform: translateX(-100%) scale(0.5); }
  to {
    opacity: 1;
    -webkit-transform: translateX(0%) scale(1);
            transform: translateX(0%) scale(1); } }

@-webkit-keyframes headline-in-right {
  from {
    opacity: 0;
    -webkit-transform: translateX(100%) scale(0.5);
            transform: translateX(100%) scale(0.5); }
  to {
    opacity: 1;
    -webkit-transform: translateX(0%) scale(1);
            transform: translateX(0%) scale(1); } }

@keyframes headline-in-right {
  from {
    opacity: 0;
    -webkit-transform: translateX(100%) scale(0.5);
            transform: translateX(100%) scale(0.5); }
  to {
    opacity: 1;
    -webkit-transform: translateX(0%) scale(1);
            transform: translateX(0%) scale(1); } }

@-webkit-keyframes headline-out-left {
  from {
    opacity: 1;
    -webkit-transform: translateX(0%) scale(1);
            transform: translateX(0%) scale(1); }
  to {
    opacity: 0;
    -webkit-transform: translateX(100%) scale(0.5);
            transform: translateX(100%) scale(0.5); } }

@keyframes headline-out-left {
  from {
    opacity: 1;
    -webkit-transform: translateX(0%) scale(1);
            transform: translateX(0%) scale(1); }
  to {
    opacity: 0;
    -webkit-transform: translateX(100%) scale(0.5);
            transform: translateX(100%) scale(0.5); } }

@-webkit-keyframes headline-out-right {
  from {
    opacity: 1;
    -webkit-transform: translateX(0%) scale(1);
            transform: translateX(0%) scale(1); }
  to {
    opacity: 0;
    -webkit-transform: translateX(-100%) scale(0.5);
            transform: translateX(-100%) scale(0.5); } }

@keyframes headline-out-right {
  from {
    opacity: 1;
    -webkit-transform: translateX(0%) scale(1);
            transform: translateX(0%) scale(1); }
  to {
    opacity: 0;
    -webkit-transform: translateX(-100%) scale(0.5);
            transform: translateX(-100%) scale(0.5); } }

@-webkit-keyframes headline-full-in-left {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%); } }

@keyframes headline-full-in-left {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%); } }

@-webkit-keyframes headline-full-in-right {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%); } }

@keyframes headline-full-in-right {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%); } }

@-webkit-keyframes headline-full-out-left {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%); }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); } }

@keyframes headline-full-out-left {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%); }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); } }

@-webkit-keyframes headline-full-out-right {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%); }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); } }

@keyframes headline-full-out-right {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%); }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); } }

@-webkit-keyframes slide-in-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@keyframes slide-in-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

#stacks_in_104654_page0 {
	margin:  20px;
	padding:  20px;
}
#headline-stacks_in_104657_page0 .headline-image {
  background: url("../files/headline_image_104657.png");
  background-size: cover;
  background-position: center center; }

#headline-stacks_in_104657_page0.custom-title .headline-title {
  color: rgba(255, 255, 255, 0.50); }

#headline-stacks_in_104657_page0.custom-headline .headline-text {
  color: rgba(255, 255, 255, 1.00); }

#headline-stacks_in_104657_page0.custom-toggle .headline-toggle a {
  color: rgba(255, 255, 255, 1.00);
  background: rgba(0, 0, 0, 0.20); }
  #headline-stacks_in_104657_page0.custom-toggle .headline-toggle a:hover {
    color: rgba(27, 34, 42, 1.00);
    background: rgba(255, 255, 255, 1.00); }

#headline-stacks_in_104657_page0.custom-arrows .headline-controls span {
  color: rgba(255, 255, 255, 0.50); }
  #headline-stacks_in_104657_page0.custom-arrows .headline-controls span:hover {
    color: rgba(255, 255, 255, 1.00); }

#headline-stacks_in_104657_page0.custom-content .headline-bottom {
  color: rgba(27, 34, 42, 1.00);
  /*  */
  background: rgba(255, 255, 255, 1.00);
  /*  */
  /*  */ }
  #headline-stacks_in_104657_page0.custom-content .headline-bottom h1, #headline-stacks_in_104657_page0.custom-content .headline-bottom h2, #headline-stacks_in_104657_page0.custom-content .headline-bottom h3, #headline-stacks_in_104657_page0.custom-content .headline-bottom h4, #headline-stacks_in_104657_page0.custom-content .headline-bottom h5, #headline-stacks_in_104657_page0.custom-content .headline-bottom h6 {
    color: rgba(27, 34, 42, 1.00); }

#headline-stacks_in_104657_page0.custom-background .headline-top {
  /*  */
  /*  */
  background: rgba(3, 7, 3, 1.00);
  /*  */
  /*  */
  /*  */ }
  #headline-stacks_in_104657_page0.custom-background .headline-top::before {
    /*  */ }
#stacks_in_104869_page0 a{display:block}#stacks_in_104869_page0 img{}

#stacks_in_104869_page0 {
	margin:  17px;
	padding:  8px;
}
                        

#stacks_in_104882_page0 a{display:block}#stacks_in_104882_page0 img{}
#headline-stacks_in_104875_page0 .headline-image {
  background: url("../files/headline_image_104875.png");
  background-size: cover;
  background-position: center center; }

#headline-stacks_in_104875_page0.custom-title .headline-title {
  color: rgba(255, 255, 255, 0.50); }

#headline-stacks_in_104875_page0.custom-headline .headline-text {
  color: rgba(255, 255, 255, 1.00); }

#headline-stacks_in_104875_page0.custom-toggle .headline-toggle a {
  color: rgba(255, 255, 255, 1.00);
  background: rgba(0, 0, 0, 0.20); }
  #headline-stacks_in_104875_page0.custom-toggle .headline-toggle a:hover {
    color: rgba(27, 34, 42, 1.00);
    background: rgba(255, 255, 255, 1.00); }

#headline-stacks_in_104875_page0.custom-arrows .headline-controls span {
  color: rgba(255, 255, 255, 0.50); }
  #headline-stacks_in_104875_page0.custom-arrows .headline-controls span:hover {
    color: rgba(255, 255, 255, 1.00); }

#headline-stacks_in_104875_page0.custom-content .headline-bottom {
  color: rgba(27, 34, 42, 1.00);
  /*  */
  background: rgba(255, 255, 255, 1.00);
  /*  */
  /*  */ }
  #headline-stacks_in_104875_page0.custom-content .headline-bottom h1, #headline-stacks_in_104875_page0.custom-content .headline-bottom h2, #headline-stacks_in_104875_page0.custom-content .headline-bottom h3, #headline-stacks_in_104875_page0.custom-content .headline-bottom h4, #headline-stacks_in_104875_page0.custom-content .headline-bottom h5, #headline-stacks_in_104875_page0.custom-content .headline-bottom h6 {
    color: rgba(27, 34, 42, 1.00); }

#headline-stacks_in_104875_page0.custom-background .headline-top {
  /*  */
  /*  */
  background: rgba(27, 34, 42, 1.00);
  /*  */
  /*  */
  /*  */ }
  #headline-stacks_in_104875_page0.custom-background .headline-top::before {
    /*  */ }
#reveal_stacks_in_104087_page0,#myReveal10{color:rgba(102, 102, 102, 1.00);background:rgba(125, 220, 196, 1.00)}#reveal_stacks_in_104087_page0 p,#reveal_stacks_in_104087_page0 h1,#reveal_stacks_in_104087_page0 h2,#reveal_stacks_in_104087_page0 h3,#reveal_stacks_in_104087_page0 h4,#reveal_stacks_in_104087_page0 h5,#reveal_stacks_in_104087_page0 h6,#reveal_stacks_in_104087_page0 div,#myReveal10 p,#myReveal10 h1,#myReveal10 h2,#myReveal10 h3,#myReveal10 h4,#myReveal10 h5,#myReveal10 h6,#myReveal10 div{color:rgba(102, 102, 102, 1.00)}#reveal_stacks_in_104087_page0 a.close-reveal-modal,#myReveal10 a.close-reveal-modal{color:rgba(255, 255, 255, 1.00)}.reveal-modal-bg{background:rgba(125, 220, 196, 1.00) !important}#stacks_in_104087_page0 .reveal-launcher{cursor:pointer}

#stacks_in_104087_page0 {
	background-color: rgba(255, 255, 255, 1.00);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	margin:  10px;
	padding:  10px;
}
#stacks_in_104088_page0 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_104088_page0 > .row.collapse{padding-left:0;padding-right:0}#stacks_in_104088_page0 > .row.padding-detailed{padding:0.00rem 0.00rem 0.00rem 0.00rem}@media only screen and (max-width:40em){#stacks_in_104088_page0 > .row.padding-detailed.padding-medium-up,#stacks_in_104088_page0 > .row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_104088_page0 > .row.padding-detailed.padding-y-medium-up,#stacks_in_104088_page0 > .row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){#stacks_in_104088_page0 > .row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_104088_page0 > .row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}


#stacks_in_104088_page0 {
	background-color: rgba(255, 255, 255, 1.00);
	-moz-border-radius: 20px 20px 20px 20px;
	-webkit-border-radius: 20px 20px 20px 20px;
	border-radius: 20px 20px 20px 20px;
	margin:  9px;
}

#stacks_in_104354_page0 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_104354_page0 > .row > .columns{margin-top:0.00rem;margin-bottom:0.00rem}#stacks_in_104354_page0 > .row.divider > .columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(0, 0, 0, 1.00)}

#stacks_in_104354_page0 {
	padding:  20px;
}
#stacks_in_104137_page0 h1,#stacks_in_104137_page0 h2,#stacks_in_104137_page0 h3,#stacks_in_104137_page0 h4,#stacks_in_104137_page0 h5,#stacks_in_104137_page0 h6,#stacks_in_104137_page0 div{color:rgba(3, 7, 3, 1.00);font-size:1.69rem;font-weight:300;font-style:normal}#stacks_in_104137_page0 h1 a,#stacks_in_104137_page0 h2 a,#stacks_in_104137_page0 h3 a,#stacks_in_104137_page0 h4 a,#stacks_in_104137_page0 h5 a,#stacks_in_104137_page0 h6 a,#stacks_in_104137_page0 div a{color:rgba(3, 7, 3, 1.00);font-size:1.69rem}#stacks_in_104137_page0 h1 a:hover,#stacks_in_104137_page0 h2 a:hover,#stacks_in_104137_page0 h3 a:hover,#stacks_in_104137_page0 h4 a:hover,#stacks_in_104137_page0 h5 a:hover,#stacks_in_104137_page0 h6 a:hover,#stacks_in_104137_page0 div a:hover{color:rgba(2, 5, 2, 1.00)}@media only screen and (min-width:40.063em){#stacks_in_104137_page0 h1 a,#stacks_in_104137_page0 h2 a,#stacks_in_104137_page0 h3 a,#stacks_in_104137_page0 h4 a,#stacks_in_104137_page0 h5 a,#stacks_in_104137_page0 h6 a,#stacks_in_104137_page0 div a{font-size:2.50rem}}@media only screen and (min-width:40.063em){#stacks_in_104137_page0 h1,#stacks_in_104137_page0 h2,#stacks_in_104137_page0 h3,#stacks_in_104137_page0 h4,#stacks_in_104137_page0 h5,#stacks_in_104137_page0 h6,#stacks_in_104137_page0 div{font-size:2.50rem}}#stacks_in_104137_page0 small,#stacks_in_104137_page0 small div{font-size:50%;color:rgba(3, 7, 3, 1.00)}

#stacks_in_104137_page0 {
	background-color: rgba(125, 220, 196, 1.00);
	margin: 40px 0px 0px 0px;
}
#stacks_in_104353_page0{text-align:right}#stacks_in_104353_page0 img{max-width:50px;width:100%;height:auto}@media only screen and (min-width:641px){#stacks_in_104353_page0 img{max-width:50px}}@media only screen and (min-width:1024px){#stacks_in_104353_page0 img{max-width:150px}}
#stacks_in_104089_page0 p,#stacks_in_104089_page0 div,#stacks_in_104089_page0 ul,#stacks_in_104089_page0 ol,#stacks_in_104089_page0 dl{line-height:1.60;font-size:1.00rem}

#stacks_in_104089_page0 {
	margin: 0px 20px 20px 20px;
}
#stacks_in_104091_page0 .stacks_out,#stacks_in_104091_page0 .stacks_in{overflow:visible}#stacks_in_104091_page0 textarea{resize:vertical}#stacks_in_104091_page0 .in-progress,#stacks_in_104091_page0 .alert-box{display:none}

#stacks_in_104091_page0 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_104092_page0 {
	margin:  20px;
}

#stacks_in_104093_page0 {
	margin:  20px;
}

#stacks_in_104095_page0 {
	margin:  20px;
	padding: 40px 0px 15px 0px;
}

#stacks_in_104096_page0 {
	margin:  20px;
}

#stacks_in_104094_page0 {
	margin:  20px;
}


#stacks_in_104099_page0 {
	margin:  20px;
}

#stacks_in_105399_page0 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_105399_page0 > .row > .columns{margin-top:0.00rem;margin-bottom:0.00rem}#stacks_in_105399_page0 > .row.divider > .columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(0, 0, 0, 1.00)}

#stacks_in_105399_page0 {
	background-color: rgba(125, 220, 196, 1.00);
	margin:  20px;
}
#stacks_in_105373_page0 h1,#stacks_in_105373_page0 h2,#stacks_in_105373_page0 h3,#stacks_in_105373_page0 h4,#stacks_in_105373_page0 h5,#stacks_in_105373_page0 h6,#stacks_in_105373_page0 div{color:rgba(3, 7, 3, 1.00);font-size:1.00rem;font-weight:100;font-style:normal}#stacks_in_105373_page0 h1 a,#stacks_in_105373_page0 h2 a,#stacks_in_105373_page0 h3 a,#stacks_in_105373_page0 h4 a,#stacks_in_105373_page0 h5 a,#stacks_in_105373_page0 h6 a,#stacks_in_105373_page0 div a{color:rgba(3, 7, 3, 1.00);font-size:1.00rem}#stacks_in_105373_page0 h1 a:hover,#stacks_in_105373_page0 h2 a:hover,#stacks_in_105373_page0 h3 a:hover,#stacks_in_105373_page0 h4 a:hover,#stacks_in_105373_page0 h5 a:hover,#stacks_in_105373_page0 h6 a:hover,#stacks_in_105373_page0 div a:hover{color:rgba(2, 5, 2, 1.00)}@media only screen and (min-width:40.063em){#stacks_in_105373_page0 h1 a,#stacks_in_105373_page0 h2 a,#stacks_in_105373_page0 h3 a,#stacks_in_105373_page0 h4 a,#stacks_in_105373_page0 h5 a,#stacks_in_105373_page0 h6 a,#stacks_in_105373_page0 div a{font-size:1.20rem}}@media only screen and (min-width:40.063em){#stacks_in_105373_page0 h1,#stacks_in_105373_page0 h2,#stacks_in_105373_page0 h3,#stacks_in_105373_page0 h4,#stacks_in_105373_page0 h5,#stacks_in_105373_page0 h6,#stacks_in_105373_page0 div{font-size:1.20rem}}#stacks_in_105373_page0 small,#stacks_in_105373_page0 small div{font-size:60%;color:rgba(111, 111, 111, 1.00)}

#stacks_in_105373_page0 {
	padding:  20px;
}


#stacks_in_105415_page0 {
	background-color: rgba(125, 220, 196, 1.00);
	margin: 20px 20px 0px 20px;
}

#stacks_out_105415_page0 {
	width: 150px;
}
#stacks_in_105206_page0 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_105206_page0 > .row.collapse{padding-left:0;padding-right:0}#stacks_in_105206_page0 > .row.padding-detailed{padding:0.00rem 0.00rem 0.00rem 0.00rem}@media only screen and (max-width:40em){#stacks_in_105206_page0 > .row.padding-detailed.padding-medium-up,#stacks_in_105206_page0 > .row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_105206_page0 > .row.padding-detailed.padding-y-medium-up,#stacks_in_105206_page0 > .row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){#stacks_in_105206_page0 > .row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_105206_page0 > .row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}
#stacks_in_105206_page0 > .row.max-custom{margin:0 auto;max-width:500px !important}#stacks_in_105206_page0 > .row.max-custom.max-left{margin-left:0}#stacks_in_105206_page0 > .row.max-custom.max-right{margin-right:0}

    #stacks_in_p105337_n2_page0 .button{background-color:rgba(3, 7, 3, 1.00);color:rgba(255, 255, 255, 1.00)} #stacks_in_p105337_n2_page0 .button:not(.bp-hover):hover{background-color:rgba(153, 153, 153, 1.00);color:rgba(3, 7, 3, 1.00)!important;-webkit-transition:color 300ms ease;-moz-transition:color 300ms ease;-ms-transition:color 300ms ease;-o-transition:color 300ms ease;transition:color 300ms ease}     #stacks_in_p105337_n2_page0 .button{margin-bottom:0}    .bp-ripple-out:hover:before{border:rgba(153, 153, 153, 1.00) solid 2px}

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

#stacks_in_p105208_n2_page0{overflow:hidden}#stacks_in_p105208_n2_page0 hr{opacity:1.00;border-top:1px solid rgba(221, 221, 221, 1.00);margin:3.00rem 0;}

#stacks_in_104166_page0 {
	margin: 0px 0px 0px 20px;
}
   form #stacks_in_104477_page0 .button.inline{height:37px!important;margin-left:-1px;padding-top:0;padding-bottom:0}  #stacks_in_104477_page0 .button{background-color:rgba(3, 7, 3, 1.00);color:rgba(125, 220, 196, 1.00)} #stacks_in_104477_page0 .button:not(.bp-hover):hover{background-color:rgba(125, 220, 196, 1.00);color:rgba(3, 7, 3, 1.00)!important;-webkit-transition:color 300ms ease;-moz-transition:color 300ms ease;-ms-transition:color 300ms ease;-o-transition:color 300ms ease;transition:color 300ms ease}   #stacks_in_104477_page0 .button .fa{color:rgba(125, 220, 196, 1.00);font-size:1.20rem!important; vertical-align:middle; -webkit-transition:color 300ms ease;-moz-transition:color 300ms ease;-ms-transition:color 300ms ease;-o-transition:color 300ms ease;transition:color 300ms ease} #stacks_in_104477_page0 .button:hover .fa{color:rgba(3, 7, 3, 1.00);-webkit-transition:color 300ms ease;-moz-transition:color 300ms ease;-ms-transition:color 300ms ease;-o-transition:color 300ms ease;transition:color 300ms ease}    #stacks_in_104477_page0 .button{margin-bottom:0}    .bp-ripple-out:hover:before{border:rgba(225, 225, 225, 1.00) solid 2px}

          #stacks_in_104477_page0 .bp-bubble-float-top{display:inline-block;position:relative;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:transform;transition-property:transform;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}#stacks_in_104477_page0 .bp-bubble-float-top:before{position:absolute;z-index:-1;content:'';left:calc(50% - 10px);top:0;border-style:solid;border-width:0 10px 10px 10px;border-color:transparent transparent rgba(3, 7, 3, 1.00) transparent;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:top;transition-property:top}#stacks_in_104477_page0 .bp-bubble-float-top:hover,.bp-bubble-float-top:focus,.bp-bubble-float-top:active{-webkit-transform:translateY(5px) translateZ(0);transform:translateY(5px) translateZ(0)}#stacks_in_104477_page0 .bp-bubble-float-top:hover:before,.bp-bubble-float-top:focus:before,.bp-bubble-float-top:active:before{top:-10px}    
#reveal_stacks_in_105180_page0,#GDPR{color:rgba(51, 51, 51, 1.00);background:rgba(125, 220, 196, 1.00)}#reveal_stacks_in_105180_page0 p,#reveal_stacks_in_105180_page0 h1,#reveal_stacks_in_105180_page0 h2,#reveal_stacks_in_105180_page0 h3,#reveal_stacks_in_105180_page0 h4,#reveal_stacks_in_105180_page0 h5,#reveal_stacks_in_105180_page0 h6,#reveal_stacks_in_105180_page0 div,#GDPR p,#GDPR h1,#GDPR h2,#GDPR h3,#GDPR h4,#GDPR h5,#GDPR h6,#GDPR div{color:rgba(51, 51, 51, 1.00)}#reveal_stacks_in_105180_page0 a.close-reveal-modal,#GDPR a.close-reveal-modal{color:rgba(170, 170, 170, 1.00)}.reveal-modal-bg{background:rgba(0, 0, 0, 0.45) !important}#stacks_in_105180_page0 .reveal-launcher{cursor:pointer}
/*  */
/*  */
.ascend-marker span {
  display: none; }

#ascend-stacks_in_104646_page0 {
  /*  */
  position: fixed;
  visibility: hidden;
  pointer-events: none;
  margin: 50px 30px;
  z-index: 12000;
  /*  */
  box-sizing: border-box; }
  #ascend-stacks_in_104646_page0 * {
    transition: all 0.3s; }

#ascend-stacks_in_104646_page0 .ascend-overlay {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: none;
  position: fixed;
  pointer-events: auto; }

#ascend-stacks_in_104646_page0 .ascend-open {
  /*  */
  background: rgba(3, 7, 3, 1.00);
  /*  */
  /*  */
  cursor: pointer;
  width: 50px;
  height: 50px;
  color: rgba(220, 224, 230, 1.00);
  pointer-events: auto;
  opacity: 0.6;
  padding: 3px;
  border-radius: 4px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.30);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  #ascend-stacks_in_104646_page0 .ascend-open:hover {
    /*  */
    opacity: 1;
    /*  */ }
  #ascend-stacks_in_104646_page0 .ascend-open i {
    line-height: 1;
    font-size: 24px; }
  #ascend-stacks_in_104646_page0 .ascend-open.no-dots .ascend-open-dots {
    display: none; }
  #ascend-stacks_in_104646_page0 .ascend-open-dots {
    width: 28px;
    height: 10px;
    margin-top: 2px;
    position: relative;
    border-radius: 10px;
    background: rgba(4, 215, 95, 0.20); }
    #ascend-stacks_in_104646_page0 .ascend-open-dots::before {
      background: rgba(4, 215, 95, 1.00);
      top: 50%;
      left: 50%;
      content: '';
      width: 4px;
      height: 4px;
      display: block;
      position: absolute;
      border-radius: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      box-shadow: 7px 0 0 0 rgba(4, 215, 95, 1.00), -7px 0 0 0 rgba(4, 215, 95, 1.00); }

#ascend-stacks_in_104646_page0 .ascend-close {
  color: #7DDCC4;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  font-size: 18px;
  text-align: center;
  position: absolute;
  border-radius: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
  box-sizing: border-box;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  #ascend-stacks_in_104646_page0 .ascend-close i {
    z-index: 2;
    width: 26px;
    height: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 0;
    color: inherit;
    font-size: inherit;
    position: relative;
    border-radius: 50%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 3px solid #7DDCC4; }
    #ascend-stacks_in_104646_page0 .ascend-close i::before, #ascend-stacks_in_104646_page0 .ascend-close i::after {
      content: '';
      top: 50%;
      left: 50%;
      width: 26px;
      height: 26px;
      display: block;
      position: absolute;
      border-radius: 50%;
      border-width: 0px;
      border-style: solid;
      border-color: #7DDCC4;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
    #ascend-stacks_in_104646_page0 .ascend-close i::before {
      opacity: 0.3; }
    #ascend-stacks_in_104646_page0 .ascend-close i::after {
      opacity: 0.2; }
  #ascend-stacks_in_104646_page0 .ascend-close::before {
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0.7;
    display: block;
    position: absolute;
    background: #201D2B; }

#ascend-stacks_in_104646_page0 .ascend-menu {
  /*  */
  max-height: calc(100% - 100px);
  /*  */
  /*  */
  background: rgba(44, 44, 59, 1.00);
  /*  */
  /*  */
  /*  */
  font-family: "Maven Pro";
  /*  */
  width: 100%;
  overflow: hidden;
  pointer-events: auto;
  max-width: 250px;
  margin: 50px 30px;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  #ascend-stacks_in_104646_page0 .ascend-menu-header {
    /*  */
    font-family: "Maven Pro";
    /*  */
    text-align: center;
    box-sizing: border-box;
    color: rgba(125, 220, 196, 1.00);
    font-size: 13px;
    padding: 8px 10px;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.20); }
  #ascend-stacks_in_104646_page0 .ascend-menu ul {
    padding: 10px 10px;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style: none; }
    #ascend-stacks_in_104646_page0 .ascend-menu ul li {
      border-bottom: 1px solid rgba(0, 0, 0, 0.10);
      padding-bottom: 3px; }
      #ascend-stacks_in_104646_page0 .ascend-menu ul li:last-child {
        padding-bottom: 0;
        border-bottom: none; }
      #ascend-stacks_in_104646_page0 .ascend-menu ul li a, #ascend-stacks_in_104646_page0 .ascend-menu ul li a:visited {
        padding: 8px 5px;
        color: rgba(255, 255, 255, 0.50);
        font-size: 14px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-decoration: none;
        transition: all 0.3s ease; }
      #ascend-stacks_in_104646_page0 .ascend-menu ul li i {
        color: rgba(255, 255, 255, 0.50);
        font-size: 20px;
        margin-right: 10px;
        transition: all 0.3s ease; }
      #ascend-stacks_in_104646_page0 .ascend-menu ul li:hover a, #ascend-stacks_in_104646_page0 .ascend-menu ul li:hover a:visited {
        /*  */
        color: rgba(4, 215, 95, 1.00);
        /*  */ }
      #ascend-stacks_in_104646_page0 .ascend-menu ul li:hover i {
        /*  */
        color: rgba(4, 215, 95, 1.00);
        /*  */ }

#ascend-stacks_in_104646_page0.menu-list .ascend-menu ul {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }
  #ascend-stacks_in_104646_page0.menu-list .ascend-menu ul li {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto; }

#ascend-stacks_in_104646_page0.menu-grid .ascend-menu ul {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }
  #ascend-stacks_in_104646_page0.menu-grid .ascend-menu ul li {
    width: 50.000000%;
    border: none;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto; }
    #ascend-stacks_in_104646_page0.menu-grid .ascend-menu ul li a {
      text-align: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      font-size: 14px; }
    #ascend-stacks_in_104646_page0.menu-grid .ascend-menu ul li i {
      margin-right: 0;
      font-size: 28px; }

#ascend-stacks_in_104646_page0.ascend-show {
  visibility: visible; }
  #ascend-stacks_in_104646_page0.ascend-show.h-right .ascend-open, #ascend-stacks_in_104646_page0.ascend-show.h-left .ascend-open {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  #ascend-stacks_in_104646_page0.ascend-show.v-top.h-center .ascend-open, #ascend-stacks_in_104646_page0.ascend-show.v-bottom.h-center .ascend-open {
    -webkit-transform: translateY(0);
            transform: translateY(0); }

#ascend-stacks_in_104646_page0.open .ascend-overlay {
  display: block; }

#ascend-stacks_in_104646_page0.open .ascend-menu {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.40); }

#ascend-stacks_in_104646_page0.open.ascend-show.v-top .ascend-menu, #ascend-stacks_in_104646_page0.open.ascend-show.v-bottom .ascend-menu {
  -webkit-transform: translateY(0);
          transform: translateY(0); }

#ascend-stacks_in_104646_page0.close-focus .ascend-close {
  opacity: 1; }
  #ascend-stacks_in_104646_page0.close-focus .ascend-close i::before {
    -webkit-animation: ascend-close-pulse-one-stacks_in_104646_page0 2s infinite;
            animation: ascend-close-pulse-one-stacks_in_104646_page0 2s infinite; }
  #ascend-stacks_in_104646_page0.close-focus .ascend-close i::after {
    -webkit-animation: ascend-close-pulse-two-stacks_in_104646_page0 2s infinite;
            animation: ascend-close-pulse-two-stacks_in_104646_page0 2s infinite; }

#ascend-stacks_in_104646_page0.close-focus .ascend-menu.inline-close-button .ascend-close i {
  border: 3px solid #7DDCC4; }

#ascend-stacks_in_104646_page0.v-top {
  top: 0; }
  #ascend-stacks_in_104646_page0.v-top .ascend-menu {
    top: 0;
    -webkit-transform: translateY(calc(-100% - 50px));
            transform: translateY(calc(-100% - 50px)); }
  #ascend-stacks_in_104646_page0.v-top.h-center .ascend-open {
    -webkit-transform: translateY(calc(-100% - 50px));
            transform: translateY(calc(-100% - 50px)); }

#ascend-stacks_in_104646_page0.v-bottom {
  bottom: 0; }
  #ascend-stacks_in_104646_page0.v-bottom .ascend-menu {
    bottom: 0;
    -webkit-transform: translateY(calc(100% + 50px));
            transform: translateY(calc(100% + 50px)); }
  #ascend-stacks_in_104646_page0.v-bottom.h-center .ascend-open {
    -webkit-transform: translateY(calc(100% + 50px));
            transform: translateY(calc(100% + 50px)); }

#ascend-stacks_in_104646_page0.h-left {
  left: 0; }
  #ascend-stacks_in_104646_page0.h-left .ascend-open {
    -webkit-transform: translateX(calc(-100% - 50px));
            transform: translateX(calc(-100% - 50px)); }
  #ascend-stacks_in_104646_page0.h-left .ascend-menu {
    left: 0; }

#ascend-stacks_in_104646_page0.h-right {
  right: 0; }
  #ascend-stacks_in_104646_page0.h-right .ascend-open {
    -webkit-transform: translateX(calc(100% + 50px));
            transform: translateX(calc(100% + 50px)); }
  #ascend-stacks_in_104646_page0.h-right .ascend-menu {
    right: 0; }

#ascend-stacks_in_104646_page0.h-center {
  /*  */
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*  */ }
  #ascend-stacks_in_104646_page0.h-center .ascend-menu {
    left: 0;
    right: 0;
    margin: 50px auto; }

#ascend-stacks_in_104646_page0 .ascend-menu ul.allow-scroll {
  overflow-y: scroll; }

#ascend-stacks_in_104646_page0 .ascend-menu ul.no-top-item li.ascend-top-item {
  display: none; }

#ascend-stacks_in_104646_page0 .ascend-menu ul.no-item-icons li i {
  display: none;
  margin-right: 0; }

#ascend-stacks_in_104646_page0 .ascend-menu.no-header .ascend-menu-header {
  padding: 0; }
  #ascend-stacks_in_104646_page0 .ascend-menu.no-header .ascend-menu-header span {
    display: none; }

#ascend-stacks_in_104646_page0 .ascend-menu.inline-close-button.no-header .ascend-menu-header {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 8px 10px; }

#ascend-stacks_in_104646_page0 .ascend-menu.inline-close-button .ascend-menu-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

#ascend-stacks_in_104646_page0 .ascend-menu.inline-close-button .ascend-close {
  opacity: 1;
  width: auto;
  height: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  pointer-events: auto; }
  #ascend-stacks_in_104646_page0 .ascend-menu.inline-close-button .ascend-close i {
    border-color: transparent; }
  #ascend-stacks_in_104646_page0 .ascend-menu.inline-close-button .ascend-close::before {
    display: none; }

@media (min-width: 768px) {
  #ascend-stacks_in_104646_page0.open.ascend-on-hover .ascend-overlay {
    display: none; } }

@-webkit-keyframes ascend-close-pulse-one-stacks_in_104646_page0 {
  0% {
    border-width: 0px; }
  50% {
    border-width: 8px; }
  100% {
    border-width: 0px; } }

@keyframes ascend-close-pulse-one-stacks_in_104646_page0 {
  0% {
    border-width: 0px; }
  50% {
    border-width: 8px; }
  100% {
    border-width: 0px; } }

@-webkit-keyframes ascend-close-pulse-two-stacks_in_104646_page0 {
  0% {
    border-width: 0px; }
  50% {
    border-width: 12px; }
  100% {
    border-width: 0px; } }

@keyframes ascend-close-pulse-two-stacks_in_104646_page0 {
  0% {
    border-width: 0px; }
  50% {
    border-width: 12px; }
  100% {
    border-width: 0px; } }

#stacks_in_7122_page0 > .row{padding-top:1.50rem;padding-bottom:0.50rem}#stacks_in_7122_page0 > .row > .columns{margin-top:1.00rem}

#stacks_in_7122_page0 {
	background-color: rgba(125, 220, 196, 1.00);
	background-image: url("../files/backgroundImage_7122.png");
	background-repeat: repeat;
	background-position: left top;
}


#stacks_in_4475_page0 {
	margin:  8px;
}
 #stacks_in_p104479_n1_page0{text-align:center}    #stacks_in_p104479_n1_page0 .button{background-color:rgba(3, 7, 3, 1.00);color:rgba(125, 220, 196, 1.00)} #stacks_in_p104479_n1_page0 .button:not(.bp-hover):hover{background-color:rgba(153, 153, 153, 1.00);color:rgba(3, 7, 3, 1.00)!important;-webkit-transition:color 300ms ease;-moz-transition:color 300ms ease;-ms-transition:color 300ms ease;-o-transition:color 300ms ease;transition:color 300ms ease}   #stacks_in_p104479_n1_page0 .button .fa{color:rgba(125, 220, 196, 1.00);font-size:1.25rem!important; vertical-align:middle; -webkit-transition:color 300ms ease;-moz-transition:color 300ms ease;-ms-transition:color 300ms ease;-o-transition:color 300ms ease;transition:color 300ms ease} #stacks_in_p104479_n1_page0 .button:hover .fa{color:rgba(3, 7, 3, 1.00);-webkit-transition:color 300ms ease;-moz-transition:color 300ms ease;-ms-transition:color 300ms ease;-o-transition:color 300ms ease;transition:color 300ms ease}       .bp-ripple-out:hover:before{border:rgba(225, 225, 225, 1.00) solid 2px}

      #stacks_in_p104479_n1_page0 .bp-bubble-top{display:inline-block;position:relative;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0)}#stacks_in_p104479_n1_page0 .bp-bubble-top:before{pointer-events:none;position:absolute;z-index:-1;content:'';border-style:solid;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:top;transition-property:top;left:calc(50% - 10px);top:0;border-width:0 10px 10px 10px;border-color:transparent transparent rgba(3, 7, 3, 1.00) transparent}#stacks_in_p104479_n1_page0 .bp-bubble-top:hover:before,.bubble-top:focus:before,.bubble-top:active:before{top:-10px}        
#stacks_in_104143_page0 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_104143_page0 > .row.collapse{padding-left:0;padding-right:0}#stacks_in_104143_page0 > .row.padding-detailed{padding:0.00rem 0.00rem 0.00rem 0.00rem}@media only screen and (max-width:40em){#stacks_in_104143_page0 > .row.padding-detailed.padding-medium-up,#stacks_in_104143_page0 > .row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_104143_page0 > .row.padding-detailed.padding-y-medium-up,#stacks_in_104143_page0 > .row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){#stacks_in_104143_page0 > .row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_104143_page0 > .row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}


#stacks_in_104143_page0 {
	background-color: rgba(125, 220, 196, 1.00);
	background-image: url("../files/backgroundImage_104143.png");
	background-repeat: repeat;
	background-position: center;
}
#stacks_in_104141_page0{overflow:hidden}#stacks_in_104141_page0 hr{opacity:1.00;border-top-style:solid;border-top-width:1px;margin:1.00rem 0;}#stacks_in_104141_page0 hr.custom{border-color:rgba(221, 221, 221, 1.00)}

#stacks_in_104141_page0 {
	background-color: rgba(125, 220, 196, 1.00);
	background-image: url("../files/backgroundImage_104141.png");
	background-repeat: repeat;
	background-position: center;
}
 #stacks_in_92245_page0 .magic-zone{width:0;height:0;visibility:hidden}  .mg-menu .mgicon-id-stacks_in_92245_page0{vertical-align:middle;font-size:1.50rem;}.mg-menu .mgicon-id-stacks_in_92245_page0.fa{display:inline!important} .mg-menu .mgicon-id-stacks_in_92245_page0{color:rgba(3, 7, 3, 1.00)}.mg-menu .mag-item:hover .mgicon-id-stacks_in_92245_page0{color:rgba(255, 255, 255, 1.00)}   
.target_stacks_in_103910_page0{}.target_stacks_in_103910_page0.rotate{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:center center;-moz-transform-origin:center center;-ms-transform-origin:center center;-o-transform-origin:center center;transform-origin:center center}.target_stacks_in_103910_page0.width-flexible{width:100%}.target_stacks_in_103910_page0.width-fixed{width:250px}.target_stacks_in_103910_page0.height-flexible{height:100%}.target_stacks_in_103910_page0.height-fixed{height:250px}.target_stacks_in_103910_page0.top_pt{top:30%}.target_stacks_in_103910_page0.top_px{top:30px}.target_stacks_in_103910_page0.bottom_pt{bottom:30%}.target_stacks_in_103910_page0.bottom_px{bottom:30px}.target_stacks_in_103910_page0.right_pt{right:0%}.target_stacks_in_103910_page0.right_px{right:0px}.target_stacks_in_103910_page0.left_pt{left:0%}.target_stacks_in_103910_page0.left_px{left:0px}
#stacks_in_p103911_n91762_page0 .icon-bar .item{padding:0.50rem}#stacks_in_p103911_n91762_page0 .icon-bar .item label{font-size:0.20rem}#stacks_in_p103911_n91762_page0 .icon-bar .item i{font-size:1.50rem}#stacks_in_p103911_n91762_page0 .icon-bar{background-color:rgba(125, 220, 196, 1.00);color:rgba(3, 7, 3, 1.00)}#stacks_in_p103911_n91762_page0 .icon-bar .item{color:rgba(3, 7, 3, 1.00)}#stacks_in_p103911_n91762_page0 .icon-bar .item label,#stacks_in_p103911_n91762_page0 .icon-bar .item i{color:rgba(3, 7, 3, 1.00)}#stacks_in_p103911_n91762_page0 .icon-bar .item:hover{color:rgba(125, 220, 196, 1.00);background-color:rgba(3, 7, 3, 1.00)}#stacks_in_p103911_n91762_page0 .icon-bar .item:hover label,#stacks_in_p103911_n91762_page0 .icon-bar .item:hover i{color:rgba(125, 220, 196, 1.00)}
#com_barthpartners_biscuitbox_stacks_in_104929_page0.biscuitbox {
  justify-content: center;
  z-index: 9999; }

#com_barthpartners_biscuitbox_stacks_in_104929_page0 .biscuitbox-wrapper {
  align-items: center;
  background-color: #8ff2f0;
  padding: 20px;
  width: 1000px; }

@media screen and (max-width: 600px) {
  .biscuitbox-info-text {
    padding-bottom: 1em; }
  .biscuitbox-btnaccept {
    padding-bottom: 5px; } }

@media screen and (min-width: 600px) {
  .biscuitbox-info-text {
    padding-bottom: 1em; }
  .biscuitbox-button {
    flex: 1 auto; } }

@media screen and (min-width: 800px) {
  .biscuitbox-info-text {
    padding-bottom: 1em; }
  .biscuitbox-btnaccept {
    order: 1; }
  .biscuitbox-btndecline {
    order: 2; } }

#stacks_in_104940_page0 {
	margin:  20px;
	padding:  19px;
}
#stacks_in_104943_page0{text-align:center}@media only screen and (max-width:40em){#stacks_in_104943_page0{text-align:center}#stacks_in_104943_page0 .button{float:none !important}}
#stacks_in_104942_page0{text-align:center}@media only screen and (max-width:40em){#stacks_in_104942_page0{text-align:center}#stacks_in_104942_page0 .button{float:none !important}}
.target_stacks_in_95067_page0{}.target_stacks_in_95067_page0.rotate{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:center center;-moz-transform-origin:center center;-ms-transform-origin:center center;-o-transform-origin:center center;transform-origin:center center}.target_stacks_in_95067_page0.width-flexible{width:100%}.target_stacks_in_95067_page0.width-fixed{width:250px}.target_stacks_in_95067_page0.height-flexible{height:100%}.target_stacks_in_95067_page0.height-fixed{height:250px}.target_stacks_in_95067_page0.top_pt{top:0%}.target_stacks_in_95067_page0.top_px{top:0px}.target_stacks_in_95067_page0.bottom_pt{bottom:0%}.target_stacks_in_95067_page0.bottom_px{bottom:0px}.target_stacks_in_95067_page0.right_pt{right:0%}.target_stacks_in_95067_page0.right_px{right:0px}.target_stacks_in_95067_page0.left_pt{left:0%}.target_stacks_in_95067_page0.left_px{left:0px}


#stacks_in_95095_page0 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_95095_page0 > .row > .columns{margin-top:0.00rem;margin-bottom:0.00rem}#stacks_in_95095_page0 > .row.divider > .columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(3, 7, 3, 1.00)}

#stacks_in_95095_page0 {
	background-color: rgba(125, 220, 196, 1.00);
	background-image: url("../files/backgroundImage_95095.png");
	background-repeat: repeat;
	background-position: center;
	padding:  11px;
}


#stacks_in_95104_page0 {
	margin: 10px 0px 0px 0px;
	padding:  10px;
}
/* -- Start Twitterwidget Each css Template -- */


.stacks_in_105175_page0outerWrapper{
	max-width: 520px;
	margin: 0 auto;
}



/* -- End Twitterwidget Each css Template -- */

#stacks_in_95082_page0 {
	margin: 10px 0px 0px 0px;
	padding:  10px;
}

#stacks_in_95107_page0{overflow:hidden}#stacks_in_95107_page0 hr{opacity:1.00;border-top-style:solid;border-top-width:1px;margin:1.25rem 0;}#stacks_in_95107_page0 hr.custom{border-color:rgba(221, 221, 221, 1.00)}

#stacks_in_95073_page0 .icon-bar .item{padding:0.00rem}#stacks_in_95073_page0 .icon-bar .item label{font-size:1.00rem}#stacks_in_95073_page0 .icon-bar .item i{font-size:2.00rem}#stacks_in_95073_page0 .icon-bar{background-color:rgba(127, 127, 127, 0.00);color:rgba(3, 7, 3, 1.00)}#stacks_in_95073_page0 .icon-bar .item{color:rgba(3, 7, 3, 1.00)}#stacks_in_95073_page0 .icon-bar .item label,#stacks_in_95073_page0 .icon-bar .item i{color:rgba(3, 7, 3, 1.00)}#stacks_in_95073_page0 .icon-bar .item:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(76, 76, 76, 1.00)}#stacks_in_95073_page0 .icon-bar .item:hover label,#stacks_in_95073_page0 .icon-bar .item:hover i{color:rgba(255, 255, 255, 1.00)}

#stacks_in_95073_page0 {
	margin:  10px;
	padding: 1px 1px 1px 15px;
}

#stacks_out_95073_page0 {
	width: 200px;
}
#stacks_in_105174_page0{overflow:hidden}#stacks_in_105174_page0 hr{opacity:1.00;border-top-style:solid;border-top-width:1px;margin:1.25rem 0;}#stacks_in_105174_page0 hr.custom{border-color:rgba(221, 221, 221, 1.00)}
    #stacks_in_p105338_n2_page0 .button{background-color:rgba(3, 7, 3, 1.00);color:rgba(255, 255, 255, 1.00)} #stacks_in_p105338_n2_page0 .button:not(.bp-hover):hover{background-color:rgba(153, 153, 153, 1.00);color:rgba(3, 7, 3, 1.00)!important;-webkit-transition:color 300ms ease;-moz-transition:color 300ms ease;-ms-transition:color 300ms ease;-o-transition:color 300ms ease;transition:color 300ms ease}     #stacks_in_p105338_n2_page0 .button{margin-bottom:0}    .bp-ripple-out:hover:before{border:rgba(153, 153, 153, 1.00) solid 2px}

             

#stacks_in_95087_page0 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_95087_page0 > .row > .columns{margin-top:0.00rem;margin-bottom:0.00rem}#stacks_in_95087_page0 > .row.divider > .columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(255, 255, 255, 1.00)}

#stacks_in_95087_page0 {
	background-color: rgba(3, 7, 3, 1.00);
	padding:  7px;
}
#stacks_in_95089_page0 .copyright{color:rgba(125, 220, 196, 1.00);font-size:0.90rem}#stacks_in_95089_page0 .copyright a{color:rgba(125, 220, 196, 1.00)}#stacks_in_95089_page0 .copyright a:hover{color:rgba(3, 7, 3, 1.00)}#stacks_in_95089_page0 .copyright{margin-bottom:0}

#stacks_in_95089_page0 {
	padding: 10px 0px 0px 0px;
}
#stacks_in_95091_page0{text-align:center}#stacks_in_95091_page0 img{max-width:50px;width:100%;height:auto}@media only screen and (min-width:641px){#stacks_in_95091_page0 img{max-width:20px}}@media only screen and (min-width:1024px){#stacks_in_95091_page0 img{max-width:30px}}

#stacks_in_95091_page0 {
	margin:  2px;
}
.ascend-marker.show-marker {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; }

/*  */
