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

.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}
/* TRIGGER FONT */

@font-face {
  font-family: 'trigger';
  src: url('../files/trigger_font/trigger.eot?57958819');
  src: url('../files/trigger_font/trigger.eot?57958819#iefix') format('embedded-opentype'),
       url('../files/trigger_font/trigger.woff?57958819') format('woff'),
       url('../files/trigger_font/trigger.ttf?57958819') format('truetype'),
       url('../files/trigger_font/trigger.svg?57958819#trigger') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'trigger';
    src: url('../font/trigger.svg?60643705#trigger') format('svg');
  }
}
*/

 
 [class^="trigger-"]:before, [class*=" trigger-"]:before {
  font-family: "trigger";
  font-style: normal;
  font-weight: normal;
  speak: none;
 
     
  /* fix buttons height, for twitter bootstrap */
  /*line-height: 1em;*/
 
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  /*margin-left: .2em;*/
 
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
 
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
 
.trigger-plus-squared:before { content: '\e800'; } /* '' */
.trigger-minus-squared:before { content: '\e801'; } /* '' */
.trigger-plus-squared-alt:before { content: '\e802'; } /* '' */
.trigger-minus-squared-alt:before { content: '\e803'; } /* '' */
.trigger-cancel-1:before { content: '\e804'; } /* '' */
.trigger-ok:before { content: '\e805'; } /* '' */
.trigger-ok-circled:before { content: '\e806'; } /* '' */
.trigger-cancel-circled:before { content: '\e807'; } /* '' */
.trigger-ok-circled2:before { content: '\e808'; } /* '' */
.trigger-cancel-circled2:before { content: '\e809'; } /* '' */
.trigger-ok-squared:before { content: '\e80a'; } /* '' */
.trigger-plus-circled:before { content: '\e80b'; } /* '' */
.trigger-minus-circled:before { content: '\e80c'; } /* '' */
.trigger-toggle-off:before { content: '\e80d'; } /* '' */
.trigger-toggle-on:before { content: '\e80e'; } /* '' */
.trigger-cog:before { content: '\e80f'; } /* '' */
.trigger-info-circled:before { content: '\e810'; } /* '' */
.trigger-help-circled:before { content: '\e811'; } /* '' */
.trigger-eye:before { content: '\e812'; } /* '' */
.trigger-eye-off:before { content: '\e813'; } /* '' */
.trigger-code-1:before { content: '\e814'; } /* '' */
.trigger-chat:before { content: '\e815'; } /* '' */
.trigger-chat-empty:before { content: '\e816'; } /* '' */
.trigger-down-open-1:before { content: '\e817'; } /* '' */
.trigger-up-open-1:before { content: '\e818'; } /* '' */
.trigger-star:before { content: '\e819'; } /* '' */
.trigger-star-empty:before { content: '\e81a'; } /* '' */
.trigger-heart:before { content: '\e81b'; } /* '' */
.trigger-heart-empty:before { content: '\e81c'; } /* '' */
.trigger-plus-1:before { content: '\e81d'; } /* '' */
.trigger-minus-1:before { content: '\e81e'; } /* '' */
.trigger-help-1:before { content: '\e81f'; } /* '' */
.trigger-info-1:before { content: '\e820'; } /* '' */
.trigger-mail:before { content: '\e821'; } /* '' */
.trigger-mail-squared:before { content: '\e822'; } /* '' */
.trigger-export-alt:before { content: '\e823'; } /* '' */
.trigger-export:before { content: '\e824'; } /* '' */
.trigger-menu-1:before { content: '\e825'; } /* '' */:root{--animate-duration:1s;--animate-delay:1s;--animate-repeat:1}.animated{-webkit-animation-duration:var(--animate-duration);animation-duration:var(--animate-duration);-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.repeat-1{-webkit-animation-iteration-count:var(--animate-repeat);animation-iteration-count:var(--animate-repeat)}.animated.repeat-2{-webkit-animation-iteration-count:calc(var(--animate-repeat) * 2);animation-iteration-count:calc(var(--animate-repeat) * 2)}.animated.repeat-3{-webkit-animation-iteration-count:calc(var(--animate-repeat) * 3);animation-iteration-count:calc(var(--animate-repeat) * 3)}.animated.delay-1s{-webkit-animation-delay:var(--animate-delay);animation-delay:var(--animate-delay)}.animated.delay-2s{-webkit-animation-delay:calc(var(--animate-delay) * 2);animation-delay:calc(var(--animate-delay) * 2)}.animated.delay-3s{-webkit-animation-delay:calc(var(--animate-delay) * 3);animation-delay:calc(var(--animate-delay) * 3)}.animated.delay-4s{-webkit-animation-delay:calc(var(--animate-delay) * 4);animation-delay:calc(var(--animate-delay) * 4)}.animated.delay-5s{-webkit-animation-delay:calc(var(--animate-delay) * 5);animation-delay:calc(var(--animate-delay) * 5)}.animated.faster{-webkit-animation-duration:calc(var(--animate-duration) / 2);animation-duration:calc(var(--animate-duration) / 2)}.animated.fast{-webkit-animation-duration:calc(var(--animate-duration) * 0.8);animation-duration:calc(var(--animate-duration) * 0.8)}.animated.slow{-webkit-animation-duration:calc(var(--animate-duration) * 2);animation-duration:calc(var(--animate-duration) * 2)}.animated.slower{-webkit-animation-duration:calc(var(--animate-duration) * 3);animation-duration:calc(var(--animate-duration) * 3)}@media print,(prefers-reduced-motion:reduce){.animated{-webkit-animation-duration:1ms !important;animation-duration:1ms !important;-webkit-transition-duration:1ms !important;transition-duration:1ms !important;-webkit-animation-iteration-count:1 !important;animation-iteration-count:1 !important}.animated[class*='Out']{opacity:0}}@-webkit-keyframes bounce{from,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06);animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06);animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(0.215,0.61,0.355,1);transition-timing-function:cubic-bezier(0.215,0.61,0.355,1);-webkit-transform:translate3d(0,0,0) scaleY(0.95);transform:translate3d(0,0,0) scaleY(0.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}@keyframes bounce{from,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06);animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06);animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(0.215,0.61,0.355,1);transition-timing-function:cubic-bezier(0.215,0.61,0.355,1);-webkit-transform:translate3d(0,0,0) scaleY(0.95);transform:translate3d(0,0,0) scaleY(0.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}.bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{from,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{from,50%,to{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes pulse{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes rubberBand{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,0.75,1);transform:scale3d(1.25,0.75,1)}40%{-webkit-transform:scale3d(0.75,1.25,1);transform:scale3d(0.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,0.85,1);transform:scale3d(1.15,0.85,1)}65%{-webkit-transform:scale3d(0.95,1.05,1);transform:scale3d(0.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,0.95,1);transform:scale3d(1.05,0.95,1)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes rubberBand{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,0.75,1);transform:scale3d(1.25,0.75,1)}40%{-webkit-transform:scale3d(0.75,1.25,1);transform:scale3d(0.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,0.85,1);transform:scale3d(1.15,0.85,1)}65%{-webkit-transform:scale3d(0.95,1.05,1);transform:scale3d(0.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,0.95,1);transform:scale3d(1.05,0.95,1)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shakeX{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shakeX{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.shakeX{-webkit-animation-name:shakeX;animation-name:shakeX}@-webkit-keyframes shakeY{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}@keyframes shakeY{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}.shakeY{-webkit-animation-name:shakeY;animation-name:shakeY}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}@keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}.swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(0.9,0.9,0.9) rotate3d(0,0,1,-3deg);transform:scale3d(0.9,0.9,0.9) rotate3d(0,0,1,-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(0.9,0.9,0.9) rotate3d(0,0,1,-3deg);transform:scale3d(0.9,0.9,0.9) rotate3d(0,0,1,-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes wobble{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{from,11.1%,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-0.78125deg) skewY(-0.78125deg);transform:skewX(-0.78125deg) skewY(-0.78125deg)}77.7%{-webkit-transform:skewX(0.390625deg) skewY(0.390625deg);transform:skewX(0.390625deg) skewY(0.390625deg)}88.8%{-webkit-transform:skewX(-0.1953125deg) skewY(-0.1953125deg);transform:skewX(-0.1953125deg) skewY(-0.1953125deg)}}@keyframes jello{from,11.1%,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-0.78125deg) skewY(-0.78125deg);transform:skewX(-0.78125deg) skewY(-0.78125deg)}77.7%{-webkit-transform:skewX(0.390625deg) skewY(0.390625deg);transform:skewX(0.390625deg) skewY(0.390625deg)}88.8%{-webkit-transform:skewX(-0.1953125deg) skewY(-0.1953125deg);transform:skewX(-0.1953125deg) skewY(-0.1953125deg)}}.jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}.heartBeat{-webkit-animation-name:heartBeat;animation-name:heartBeat;-webkit-animation-duration:calc(var(--animate-duration) * 1.3);animation-duration:calc(var(--animate-duration) * 1.3);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(0.7);transform:translateY(-1200px) scale(0.7);opacity:0.7}80%{-webkit-transform:translateY(0px) scale(0.7);transform:translateY(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(0.7);transform:translateY(-1200px) scale(0.7);opacity:0.7}80%{-webkit-transform:translateY(0px) scale(0.7);transform:translateY(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.backInDown{-webkit-animation-name:backInDown;animation-name:backInDown}@-webkit-keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(0.7);transform:translateX(-2000px) scale(0.7);opacity:0.7}80%{-webkit-transform:translateX(0px) scale(0.7);transform:translateX(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(0.7);transform:translateX(-2000px) scale(0.7);opacity:0.7}80%{-webkit-transform:translateX(0px) scale(0.7);transform:translateX(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.backInLeft{-webkit-animation-name:backInLeft;animation-name:backInLeft}@-webkit-keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(0.7);transform:translateX(2000px) scale(0.7);opacity:0.7}80%{-webkit-transform:translateX(0px) scale(0.7);transform:translateX(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(0.7);transform:translateX(2000px) scale(0.7);opacity:0.7}80%{-webkit-transform:translateX(0px) scale(0.7);transform:translateX(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.backInRight{-webkit-animation-name:backInRight;animation-name:backInRight}@-webkit-keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(0.7);transform:translateY(1200px) scale(0.7);opacity:0.7}80%{-webkit-transform:translateY(0px) scale(0.7);transform:translateY(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(0.7);transform:translateY(1200px) scale(0.7);opacity:0.7}80%{-webkit-transform:translateY(0px) scale(0.7);transform:translateY(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.backInUp{-webkit-animation-name:backInUp;animation-name:backInUp}@-webkit-keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0px) scale(0.7);transform:translateY(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:translateY(700px) scale(0.7);transform:translateY(700px) scale(0.7);opacity:0.7}}@keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0px) scale(0.7);transform:translateY(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:translateY(700px) scale(0.7);transform:translateY(700px) scale(0.7);opacity:0.7}}.backOutDown{-webkit-animation-name:backOutDown;animation-name:backOutDown}@-webkit-keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0px) scale(0.7);transform:translateX(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:translateX(-2000px) scale(0.7);transform:translateX(-2000px) scale(0.7);opacity:0.7}}@keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0px) scale(0.7);transform:translateX(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:translateX(-2000px) scale(0.7);transform:translateX(-2000px) scale(0.7);opacity:0.7}}.backOutLeft{-webkit-animation-name:backOutLeft;animation-name:backOutLeft}@-webkit-keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0px) scale(0.7);transform:translateX(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:translateX(2000px) scale(0.7);transform:translateX(2000px) scale(0.7);opacity:0.7}}@keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0px) scale(0.7);transform:translateX(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:translateX(2000px) scale(0.7);transform:translateX(2000px) scale(0.7);opacity:0.7}}.backOutRight{-webkit-animation-name:backOutRight;animation-name:backOutRight}@-webkit-keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0px) scale(0.7);transform:translateY(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:translateY(-700px) scale(0.7);transform:translateY(-700px) scale(0.7);opacity:0.7}}@keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0px) scale(0.7);transform:translateY(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:translateY(-700px) scale(0.7);transform:translateY(-700px) scale(0.7);opacity:0.7}}.backOutUp{-webkit-animation-name:backOutUp;animation-name:backOutUp}@-webkit-keyframes bounceIn{from,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}0%{opacity:0;-webkit-transform:scale3d(0.3,0.3,0.3);transform:scale3d(0.3,0.3,0.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(0.9,0.9,0.9);transform:scale3d(0.9,0.9,0.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(0.97,0.97,0.97);transform:scale3d(0.97,0.97,0.97)}to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes bounceIn{from,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}0%{opacity:0;-webkit-transform:scale3d(0.3,0.3,0.3);transform:scale3d(0.3,0.3,0.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(0.9,0.9,0.9);transform:scale3d(0.9,0.9,0.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(0.97,0.97,0.97);transform:scale3d(0.97,0.97,0.97)}to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.bounceIn{-webkit-animation-duration:calc(var(--animate-duration) * 0.75);animation-duration:calc(var(--animate-duration) * 0.75);-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(0.9);transform:translate3d(0,25px,0) scaleY(0.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(0.95);transform:translate3d(0,-10px,0) scaleY(0.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(0.985);transform:translate3d(0,5px,0) scaleY(0.985)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInDown{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(0.9);transform:translate3d(0,25px,0) scaleY(0.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(0.95);transform:translate3d(0,-10px,0) scaleY(0.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(0.985);transform:translate3d(0,5px,0) scaleY(0.985)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(0.98);transform:translate3d(-10px,0,0) scaleX(0.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(0.995);transform:translate3d(5px,0,0) scaleX(0.995)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInLeft{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(0.98);transform:translate3d(-10px,0,0) scaleX(0.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(0.995);transform:translate3d(5px,0,0) scaleX(0.995)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(0.98);transform:translate3d(10px,0,0) scaleX(0.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(0.995);transform:translate3d(-5px,0,0) scaleX(0.995)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInRight{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(0.98);transform:translate3d(10px,0,0) scaleX(0.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(0.995);transform:translate3d(-5px,0,0) scaleX(0.995)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}from{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(0.9);transform:translate3d(0,-20px,0) scaleY(0.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(0.95);transform:translate3d(0,10px,0) scaleY(0.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(0.985);transform:translate3d(0,-5px,0) scaleY(0.985)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInUp{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}from{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(0.9);transform:translate3d(0,-20px,0) scaleY(0.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(0.95);transform:translate3d(0,10px,0) scaleY(0.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(0.985);transform:translate3d(0,-5px,0) scaleY(0.985)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(0.9,0.9,0.9);transform:scale3d(0.9,0.9,0.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(0.3,0.3,0.3);transform:scale3d(0.3,0.3,0.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(0.9,0.9,0.9);transform:scale3d(0.9,0.9,0.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(0.3,0.3,0.3);transform:scale3d(0.3,0.3,0.3)}}.bounceOut{-webkit-animation-duration:calc(var(--animate-duration) * 0.75);animation-duration:calc(var(--animate-duration) * 0.75);-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(0.985);transform:translate3d(0,10px,0) scaleY(0.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(0.9);transform:translate3d(0,-20px,0) scaleY(0.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(0.985);transform:translate3d(0,10px,0) scaleY(0.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(0.9);transform:translate3d(0,-20px,0) scaleY(0.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(0.9);transform:translate3d(20px,0,0) scaleX(0.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(0.9);transform:translate3d(20px,0,0) scaleX(0.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(0.9);transform:translate3d(-20px,0,0) scaleX(0.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(0.9);transform:translate3d(-20px,0,0) scaleX(0.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(0.985);transform:translate3d(0,-10px,0) scaleY(0.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(0.9);transform:translate3d(0,20px,0) scaleY(0.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(0.985);transform:translate3d(0,-10px,0) scaleY(0.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(0.9);transform:translate3d(0,20px,0) scaleY(0.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeInTopLeft{from{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInTopLeft{from{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInTopLeft{-webkit-animation-name:fadeInTopLeft;animation-name:fadeInTopLeft}@-webkit-keyframes fadeInTopRight{from{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInTopRight{from{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInTopRight{-webkit-animation-name:fadeInTopRight;animation-name:fadeInTopRight}@-webkit-keyframes fadeInBottomLeft{from{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInBottomLeft{from{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInBottomLeft{-webkit-animation-name:fadeInBottomLeft;animation-name:fadeInBottomLeft}@-webkit-keyframes fadeInBottomRight{from{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInBottomRight{from{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInBottomRight{-webkit-animation-name:fadeInBottomRight;animation-name:fadeInBottomRight}@-webkit-keyframes fadeOut{from{opacity:1}to{opacity:0}}@keyframes fadeOut{from{opacity:1}to{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes fadeOutTopLeft{from{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}@keyframes fadeOutTopLeft{from{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}.fadeOutTopLeft{-webkit-animation-name:fadeOutTopLeft;animation-name:fadeOutTopLeft}@-webkit-keyframes fadeOutTopRight{from{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}@keyframes fadeOutTopRight{from{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}.fadeOutTopRight{-webkit-animation-name:fadeOutTopRight;animation-name:fadeOutTopRight}@-webkit-keyframes fadeOutBottomRight{from{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}@keyframes fadeOutBottomRight{from{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}.fadeOutBottomRight{-webkit-animation-name:fadeOutBottomRight;animation-name:fadeOutBottomRight}@-webkit-keyframes fadeOutBottomLeft{from{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}@keyframes fadeOutBottomLeft{from{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}.fadeOutBottomLeft{-webkit-animation-name:fadeOutBottomLeft;animation-name:fadeOutBottomLeft}@-webkit-keyframes flip{from{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) scale3d(1,1,1) 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) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) scale3d(1,1,1) 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(0.95,0.95,0.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);transform:perspective(400px) scale3d(0.95,0.95,0.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{from{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) scale3d(1,1,1) 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) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) scale3d(1,1,1) 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(0.95,0.95,0.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);transform:perspective(400px) scale3d(0.95,0.95,0.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{opacity:1;-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{opacity:1;-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInX{-webkit-backface-visibility:visible !important;backface-visibility:visible !important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}to{opacity:1;-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}to{opacity:1;-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInY{-webkit-backface-visibility:visible !important;backface-visibility:visible !important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}@keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}.flipOutX{-webkit-animation-duration:calc(var(--animate-duration) * 0.75);animation-duration:calc(var(--animate-duration) * 0.75);-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible !important;backface-visibility:visible !important}@-webkit-keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}@keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}.flipOutY{-webkit-animation-duration:calc(var(--animate-duration) * 0.75);animation-duration:calc(var(--animate-duration) * 0.75);-webkit-backface-visibility:visible !important;backface-visibility:visible !important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedInRight{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes lightSpeedInRight{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.lightSpeedInRight{-webkit-animation-name:lightSpeedInRight;animation-name:lightSpeedInRight;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedInLeft{from{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes lightSpeedInLeft{from{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.lightSpeedInLeft{-webkit-animation-name:lightSpeedInLeft;animation-name:lightSpeedInLeft;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOutRight{from{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOutRight{from{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.lightSpeedOutRight{-webkit-animation-name:lightSpeedOutRight;animation-name:lightSpeedOutRight;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes lightSpeedOutLeft{from{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}@keyframes lightSpeedOutLeft{from{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}.lightSpeedOutLeft{-webkit-animation-name:lightSpeedOutLeft;animation-name:lightSpeedOutLeft;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{from{-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateIn{from{-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateInDownLeft{from{-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInDownLeft{from{-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInDownRight{from{-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInDownRight{from{-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateInUpLeft{from{-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInUpLeft{from{-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInUpRight{from{-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInUpRight{from{-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOut{from{opacity:1}to{-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}@keyframes rotateOut{from{opacity:1}to{-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateOutDownLeft{from{opacity:1}to{-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}@keyframes rotateOutDownLeft{from{opacity:1}to{-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutDownRight{from{opacity:1}to{-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutDownRight{from{opacity:1}to{-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOutUpLeft{from{opacity:1}to{-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutUpLeft{from{opacity:1}to{-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutUpRight{from{opacity:1}to{-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}@keyframes rotateOutUpRight{from{opacity:1}to{-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes hinge{0%{-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-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-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-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-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-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.hinge{-webkit-animation-duration:calc(var(--animate-duration) * 2);animation-duration:calc(var(--animate-duration) * 2);-webkit-animation-name:hinge;animation-name:hinge;-webkit-transform-origin:top left;transform-origin:top left}@-webkit-keyframes jackInTheBox{from{opacity:0;-webkit-transform:scale(0.1) rotate(30deg);transform:scale(0.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes jackInTheBox{from{opacity:0;-webkit-transform:scale(0.1) rotate(30deg);transform:scale(0.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}@-webkit-keyframes rollIn{from{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes rollIn{from{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}@keyframes rollOut{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(0.3,0.3,0.3);transform:scale3d(0.3,0.3,0.3)}50%{opacity:1}to{opacity:1}}@keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(0.3,0.3,0.3);transform:scale3d(0.3,0.3,0.3)}50%{opacity:1}to{opacity:1}}.zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{from{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(0,-1000px,0);transform:scale3d(0.1,0.1,0.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}60%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(0,60px,0);transform:scale3d(0.475,0.475,0.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}to{opacity:1}}@keyframes zoomInDown{from{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(0,-1000px,0);transform:scale3d(0.1,0.1,0.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}60%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(0,60px,0);transform:scale3d(0.475,0.475,0.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}to{opacity:1}}.zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(-1000px,0,0);transform:scale3d(0.1,0.1,0.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}60%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(10px,0,0);transform:scale3d(0.475,0.475,0.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}to{opacity:1}}@keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(-1000px,0,0);transform:scale3d(0.1,0.1,0.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}60%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(10px,0,0);transform:scale3d(0.475,0.475,0.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}to{opacity:1}}.zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(1000px,0,0);transform:scale3d(0.1,0.1,0.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}60%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(-10px,0,0);transform:scale3d(0.475,0.475,0.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}to{opacity:1}}@keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(1000px,0,0);transform:scale3d(0.1,0.1,0.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}60%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(-10px,0,0);transform:scale3d(0.475,0.475,0.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}to{opacity:1}}.zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{from{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(0,1000px,0);transform:scale3d(0.1,0.1,0.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}60%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);transform:scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}to{opacity:1}}@keyframes zoomInUp{from{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(0,1000px,0);transform:scale3d(0.1,0.1,0.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}60%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);transform:scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}to{opacity:1}}.zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(0.3,0.3,0.3);transform:scale3d(0.3,0.3,0.3)}to{opacity:0}}@keyframes zoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(0.3,0.3,0.3);transform:scale3d(0.3,0.3,0.3)}to{opacity:0}}.zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);transform:scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}to{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(0,2000px,0);transform:scale3d(0.1,0.1,0.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);transform:scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}to{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(0,2000px,0);transform:scale3d(0.1,0.1,0.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}}.zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(42px,0,0);transform:scale3d(0.475,0.475,0.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(0.1) translate3d(-2000px,0,0);transform:scale(0.1) translate3d(-2000px,0,0)}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(42px,0,0);transform:scale3d(0.475,0.475,0.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(0.1) translate3d(-2000px,0,0);transform:scale(0.1) translate3d(-2000px,0,0)}}.zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft;-webkit-transform-origin:left center;transform-origin:left center}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(-42px,0,0);transform:scale3d(0.475,0.475,0.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(0.1) translate3d(2000px,0,0);transform:scale(0.1) translate3d(2000px,0,0)}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(-42px,0,0);transform:scale3d(0.475,0.475,0.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(0.1) translate3d(2000px,0,0);transform:scale(0.1) translate3d(2000px,0,0)}}.zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight;-webkit-transform-origin:right center;transform-origin:right center}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(0,60px,0);transform:scale3d(0.475,0.475,0.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}to{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(0,-2000px,0);transform:scale3d(0.1,0.1,0.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(0,60px,0);transform:scale3d(0.475,0.475,0.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}to{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(0,-2000px,0);transform:scale3d(0.1,0.1,0.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}}.zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}
.com_joeworkman_stacks_link_stack a{display:block;text-decoration:none !important;padding:0;margin:0}


#stacks_in_67228 {
	padding:  10px;
}

#stacks_in_66786 {
	margin: 0px 10px 10px 0px;
}

#stacks_out_66786 {
	width: 250px;
}
 #stacks_in_67227 hr{border:0;height:0;width:100%;margin:0;padding:0}#stacks_in_67227 hr.gradient{height:1px;background:#333;background-image:-webkit-linear-gradient(left,#FFE478,#FF391E,#FFE478);background-image:-moz-linear-gradient(left,#FFE478,#FF391E,#FFE478);background-image:-ms-linear-gradient(left,#FFE478,#FF391E,#FFE478);background-image:-o-linear-gradient(left,#FFE478,#FF391E,#FFE478);background-image:linear-gradient(left,#FFE478,#FF391E,#FFE478)}#stacks_in_67227 hr.faded{height:1px;background-image:-webkit-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-moz-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-ms-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-o-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0))}#stacks_in_67227 hr.dashed_fade{border-bottom:1px dashed #FF8469;background:#FF391E}#stacks_in_67227 hr.dotted_fade{border-bottom:1px dotted #FF8469;background:#FF391E}#stacks_in_67227 hr.dashed{border-bottom:1px dashed #FF391E}#stacks_in_67227 hr.dotted{border-bottom:1px dotted #FF8469}#stacks_in_67227 hr.shadow{height:1px;box-shadow:inset 0 1px 1px -1px rgba(0,0,0,0.5)}#stacks_in_67227 hr.cloudy{margin:1px 0;box-shadow:0 0 1px 1px #FF391E}#stacks_in_67227 hr.cloudy:after{content:"\00a0"}#stacks_in_67227 hr.inset{border-top:1px solid rgba(0,0,0,0.1);border-bottom:1px solid rgba(255,255,255,0.3)}#stacks_in_67227 hr.inset_two{border-top:1px solid #FFE478;border-bottom:1px solid #FF391E}#stacks_in_67227 hr.inset_three{border-top:1px solid #FF391E;border-bottom:1px solid #FFE478}#stacks_in_67227 hr.inset_four{border-top:1px solid #FF391E;border-bottom:1px solid #CCCCCC}#stacks_in_67227 hr.flared{height:30px;border-style:solid;border-color:#FF391E;border-width:1px 0 0 0;border-radius:20px;margin-top:12px}#stacks_in_67227 hr.flared:before{display:block;content:"";height:30px;margin-top:-31px;border-style:solid;border-color:#FF391E;border-width:0 0 1px 0;border-radius:20px}#stacks_in_67227 hr.glyph{padding:0;border:0;border-top:1px double #FF391E;color:#FF391E;text-align:center;margin:1em 0}#stacks_in_67227 hr.glyph:after{content:"§";display:inline-block;position:relative;top:-0.00em;font-size:1.5em;padding:0 .25em;background:#FFFFFF} 

#stacks_in_67227 {
	margin: 0px 20px 20px 20px;
}
/*-- twitter fetcher stack by weaverthemes.com --*/


	#stacks_in_2438 ul {padding: 0;margin: 0}
	#stacks_in_2438 ul li {overflow: hidden;margin-bottom: 10px;list-style: none;color: #333333}
	#stacks_in_2438 div.user {overflow: hidden;margin-bottom: 10px;
		padding: 5px;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		-webkit-box-shadow: 0px 0px 5px rgba(50, 50, 50, 0.4);
		-moz-box-shadow: 0px 0px 5px rgba(50, 50, 50, 0.4);
		box-shadow: 0px 0px 5px rgba(50, 50, 50, 0.4);
		background-color: #CEC6B7;
		background-image: -o-linear-gradient(90deg , #FFFDF0 0%, #CEC6B7 100%);
		background-image: -moz-linear-gradient(90deg , #FFFDF0 0%, #CEC6B7 100%);
		background-image: -webkit-linear-gradient(90deg , #FFFDF0 0%, #CEC6B7 100%);
		background-image: -ms-linear-gradient(90deg , #FFFDF0 0%, #CEC6B7 100%);
		background-image: linear-gradient(90deg , #FFFDF0 0%, #CEC6B7 100%);
	}
	#stacks_in_2438 div.user a {color: #7E7765}
	#stacks_in_2438 div.user img {float: left;margin-right: 10px;
		width: 48px;height: 48px;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
	}
	#stacks_in_2438 div.user span {display: block;line-height: 16px}
	#stacks_in_2438 div.user span[data-scribe="element:name"] {padding-top: 8px}
	#stacks_in_2438 p {padding: 0;margin: 0;display: inline}
	#stacks_in_2438 p.tweet img {width: 20px;}
	#stacks_in_2438 p.tweet a {color: #7E7866}
	#stacks_in_2438 p.timePosted{margin-left: 5px}
	#stacks_in_2438 p.timePosted a{color: #7E7866 !important}
	#stacks_in_2438 div.media {margin: 10px 0;}
	#stacks_in_2438 div.media img {max-width: 100%;display: block;}
	#stacks_in_2438 p.interact{display: none}


/*-- end twitter fetcher stack --*/
#stacks_in_2438 {
	margin: 0px 20px 0px 20px;
}
 #stacks_in_67226 hr{border:0;height:0;width:100%;margin:0;padding:0}#stacks_in_67226 hr.gradient{height:1px;background:#333;background-image:-webkit-linear-gradient(left,#FFE478,#FF391E,#FFE478);background-image:-moz-linear-gradient(left,#FFE478,#FF391E,#FFE478);background-image:-ms-linear-gradient(left,#FFE478,#FF391E,#FFE478);background-image:-o-linear-gradient(left,#FFE478,#FF391E,#FFE478);background-image:linear-gradient(left,#FFE478,#FF391E,#FFE478)}#stacks_in_67226 hr.faded{height:1px;background-image:-webkit-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-moz-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-ms-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-o-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0))}#stacks_in_67226 hr.dashed_fade{border-bottom:1px dashed #FF8469;background:#FF391E}#stacks_in_67226 hr.dotted_fade{border-bottom:1px dotted #FF8469;background:#FF391E}#stacks_in_67226 hr.dashed{border-bottom:1px dashed #FF391E}#stacks_in_67226 hr.dotted{border-bottom:1px dotted #FF8469}#stacks_in_67226 hr.shadow{height:1px;box-shadow:inset 0 1px 1px -1px rgba(0,0,0,0.5)}#stacks_in_67226 hr.cloudy{margin:1px 0;box-shadow:0 0 1px 1px #FF391E}#stacks_in_67226 hr.cloudy:after{content:"\00a0"}#stacks_in_67226 hr.inset{border-top:1px solid rgba(0,0,0,0.1);border-bottom:1px solid rgba(255,255,255,0.3)}#stacks_in_67226 hr.inset_two{border-top:1px solid #FFE478;border-bottom:1px solid #FF391E}#stacks_in_67226 hr.inset_three{border-top:1px solid #FF391E;border-bottom:1px solid #FFE478}#stacks_in_67226 hr.inset_four{border-top:1px solid #FF391E;border-bottom:1px solid #CCCCCC}#stacks_in_67226 hr.flared{height:30px;border-style:solid;border-color:#FF391E;border-width:1px 0 0 0;border-radius:20px;margin-top:12px}#stacks_in_67226 hr.flared:before{display:block;content:"";height:30px;margin-top:-31px;border-style:solid;border-color:#FF391E;border-width:0 0 1px 0;border-radius:20px}#stacks_in_67226 hr.glyph{padding:0;border:0;border-top:1px double #FF391E;color:#FF391E;text-align:center;margin:1em 0}#stacks_in_67226 hr.glyph:after{content:"§";display:inline-block;position:relative;top:-0.00em;font-size:1.5em;padding:0 .25em;background:#FFFFFF} 

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

#stacks_in_2440 {
	margin: 10px 0px 0px 0px;
}

#stacks_in_2442 {
	padding: 5px 0px 0px 0px;
}

#stacks_in_2444 {
	padding: 5px 0px 0px 0px;
}
/* FiveShadowThing by RapidWeaver Central  */

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

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

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

/* Shadow Style 0 - Both Shadows */

#stacks_in_67266 .shadow-style0stacks_in_67266 {
	position: relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 0 3px 15px 3px;
	background: #FFFEF9;
}

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

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

/* Shadow Style 1 - Left Shadow */

#stacks_in_67266 .shadow-style1stacks_in_67266 {
	position: relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 0 3px 15px 3px;
	background: #FFFEF9;
}

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

/* Shadow Style 2 - Right Shadow */

#stacks_in_67266 .shadow-style2stacks_in_67266 {
	position: relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 0 3px 15px 3px;
	background: #FFFEF9;
}

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

/* Shadow Style 3 - Inset */

#stacks_in_67266 .shadow-style3stacks_in_67266 {
	position: relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 0 3px 15px 3px;
	background: #FFFEF9;
}

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

#stacks_in_67266 .shadow-style4stacks_in_67266 {
	position: relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 0 3px 15px 3px;
	background: #FFFEF9;
}

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

/* Shadow Style 5 - Side Curves */

#stacks_in_67266 .shadow-style5stacks_in_67266 {
    position:relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 3px 15px 3px 15px;
	background: #FFFEF9;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	    	box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

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

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

#stacks_in_67266 .shadow-style5stacks_in_67266:before {
    right:0;
}

/* Shadow Style 6 - Left Side Curve */

#stacks_in_67266 .shadow-style6stacks_in_67266 {
   position:relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 3px 3px 3px 15px;
	background: #FFFEF9;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	    	box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

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

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

/* Shadow Style 7 - Right Side Curve */

#stacks_in_67266 .shadow-style7stacks_in_67266 {
   position:relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 3px 15px 3px 3px;
	background: #FFFEF9;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	    	box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

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

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

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

#stacks_in_67266 .shadow-style8stacks_in_67266 {
   position:relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 15px 3px;
	background: #FFFEF9;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	    	box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

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

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

/* Shadow Style 9 - Divider Line 1 */

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

#stacks_in_67266 .shadow-style9stacks_in_67266 span {
	text-align: center !important;
}

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

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

/* Shadow Style 10 - Divider Line 2 */

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



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




#stacks_in_67266 {
	margin: 10px 0px 0px 0px;
}

#stacks_in_2940 {
	padding:  15px;
}



#stacks_in_69911 {
	margin: 0px 0px 10px 0px;
}
 #stacks_in_67236 hr{border:0;height:0;width:100%;margin:0;padding:0}#stacks_in_67236 hr.gradient{height:1px;background:#333;background-image:-webkit-linear-gradient(left,#FFE478,#FF391E,#FFE478);background-image:-moz-linear-gradient(left,#FFE478,#FF391E,#FFE478);background-image:-ms-linear-gradient(left,#FFE478,#FF391E,#FFE478);background-image:-o-linear-gradient(left,#FFE478,#FF391E,#FFE478);background-image:linear-gradient(left,#FFE478,#FF391E,#FFE478)}#stacks_in_67236 hr.faded{height:1px;background-image:-webkit-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-moz-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-ms-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-o-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0))}#stacks_in_67236 hr.dashed_fade{border-bottom:1px dashed #FF8469;background:#FF391E}#stacks_in_67236 hr.dotted_fade{border-bottom:1px dotted #FF8469;background:#FF391E}#stacks_in_67236 hr.dashed{border-bottom:1px dashed #FF391E}#stacks_in_67236 hr.dotted{border-bottom:1px dotted #FF8469}#stacks_in_67236 hr.shadow{height:1px;box-shadow:inset 0 1px 1px -1px rgba(0,0,0,0.5)}#stacks_in_67236 hr.cloudy{margin:1px 0;box-shadow:0 0 1px 1px #FF391E}#stacks_in_67236 hr.cloudy:after{content:"\00a0"}#stacks_in_67236 hr.inset{border-top:1px solid rgba(0,0,0,0.1);border-bottom:1px solid rgba(255,255,255,0.3)}#stacks_in_67236 hr.inset_two{border-top:1px solid #FFE478;border-bottom:1px solid #FF391E}#stacks_in_67236 hr.inset_three{border-top:1px solid #FF391E;border-bottom:1px solid #FFE478}#stacks_in_67236 hr.inset_four{border-top:1px solid #FF391E;border-bottom:1px solid #CCCCCC}#stacks_in_67236 hr.flared{height:30px;border-style:solid;border-color:#FF391E;border-width:1px 0 0 0;border-radius:20px;margin-top:12px}#stacks_in_67236 hr.flared:before{display:block;content:"";height:30px;margin-top:-31px;border-style:solid;border-color:#FF391E;border-width:0 0 1px 0;border-radius:20px}#stacks_in_67236 hr.glyph{padding:0;border:0;border-top:1px double #FF391E;color:#FF391E;text-align:center;margin:1em 0}#stacks_in_67236 hr.glyph:after{content:"§";display:inline-block;position:relative;top:-0.00em;font-size:1.5em;padding:0 .25em;background:#FFFFFF} 

#stacks_in_67236 {
	margin: 0px 20px 20px 20px;
}
#stacks_in_67688 *, #stacks_in_67688 *:after, #stacks_in_67688 *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; }

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

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

#stacks_in_67688  {
}

#stacks_in_67688 .timeline_item {
	position: relative;
}

#stacks_in_67688 ul.cbp_tmtimeline {
	margin: 0;
}

#stacks_in_67688 a,
#stacks_in_67688 a:visited {
	color: #BAB5A9;
	text-decoration: none;
}

#stacks_in_67688 a:hover,
#stacks_in_67688 a:active {
	color: #BAB5A9;
}

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

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

#stacks_in_67688 .cbp_tmtimeline li {
	margin: 0;
}

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

		
			background: #E9E8E0;
		

	

	
		left: 20%;
	
	
	
	
	
	

	margin-left: -10px;
}

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

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

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

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

/* Right content */
#stacks_in_67688 .cbp_tmtimeline li .cbp_tmlabel {
	
		margin: 0 0 15px 25%;
	
	
	
	
	
	
	
		background: #EEEDE7;
		color: #9B58EB;
	
	padding: 2em;
	position: relative;
	border-radius: 5px;
}

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

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


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


/* The icons */
#stacks_in_67688 .cbp_tmtimeline li .cbp_tmicon {
	width: 40px;
	height: 40px;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	font-size: 1.4em;
	line-height: 40px;
	-webkit-font-smoothing: antialiased;
	position: absolute;
	
		color: #FFFFFF !important;  /* Makes sure the theme isn't overriding the icon color */
		background: #2C230F;
		box-shadow: 0 0 0 8px #EAE9E0; /* Border of icon */
	
	border-radius: 50%;
	text-align: center;
	top: 8px;

	
		left: 20%;
	
	
	
	
	
	

	margin: 0 0 0 -25px;

	
}

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



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

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

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

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

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

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

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


	

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

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

	


}








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

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







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

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







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

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







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

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







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

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







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

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




#stacks_in_67713 {
	position: relative;
	display: block;
}

.JDBnews {
	position: relative;
	
	
}






	
	#stacks_in_67713 .cpsl_JDBnews {
		padding: 0px;
	}
	




#stacks_in_67716 *, #stacks_in_67716 *:after, #stacks_in_67716 *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; }

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

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

#stacks_in_67716  {
}

#stacks_in_67716 .timeline_item {
	position: relative;
}

#stacks_in_67716 ul.cbp_tmtimeline {
	margin: 0;
}

#stacks_in_67716 a,
#stacks_in_67716 a:visited {
	color: #BAB5A9;
	text-decoration: none;
}

#stacks_in_67716 a:hover,
#stacks_in_67716 a:active {
	color: #BAB5A9;
}

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

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

#stacks_in_67716 .cbp_tmtimeline li {
	margin: 0;
}

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

		
			background: #E9E8E0;
		

	

	
		left: 20%;
	
	
	
	
	
	

	margin-left: -10px;
}

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

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

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

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

/* Right content */
#stacks_in_67716 .cbp_tmtimeline li .cbp_tmlabel {
	
		margin: 0 0 15px 25%;
	
	
	
	
	
	
	
		background: #EEEDE7;
		color: #9B58EB;
	
	padding: 2em;
	position: relative;
	border-radius: 5px;
}

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

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


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


/* The icons */
#stacks_in_67716 .cbp_tmtimeline li .cbp_tmicon {
	width: 40px;
	height: 40px;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	font-size: 1.4em;
	line-height: 40px;
	-webkit-font-smoothing: antialiased;
	position: absolute;
	
		color: #FFFFFF !important;  /* Makes sure the theme isn't overriding the icon color */
		background: #241D0C;
		box-shadow: 0 0 0 8px #E9E8E0; /* Border of icon */
	
	border-radius: 50%;
	text-align: center;
	top: 8px;

	
		left: 20%;
	
	
	
	
	
	

	margin: 0 0 0 -25px;

	
}

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



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

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

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

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

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

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

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


	

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

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

	


}








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

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







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

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







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

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







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

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







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

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







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

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







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

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







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

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







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

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







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

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







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

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



#stacks_in_67715 .trigger_JDBnews {
	cursor: pointer;
	display: inline-block;
	color: #515151;

	
	font-size: 26px;
	line-height: 26px;
	

	padding-left: 1px;
}

#stacks_in_67715 .toggle_open .closed_icon {
	display: none;
}

#stacks_in_67715 .toggle_closed .open_icon {
	display: none;
}

#stacks_in_67715 .toggle_open .closed_image {
	display: none;
}

#stacks_in_67715 .toggle_closed .open_image {
	display: none;
}



#stacks_in_67715 {
	position: relative;
	text-align: center;
}

#stacks_in_67715 .trigger_label,
#stacks_in_67715 .trigger_label_open {
	font-size: 18px;
	color: #515151;
	margin-left: 4px;
	
	line-height: 26px;
	vertical-align: top;
	
}

#stacks_in_67715 .trigger_label_open {
	display: none;
}
/* FiveShadowThing by RapidWeaver Central  */

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

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

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

/* Shadow Style 0 - Both Shadows */

#stacks_in_67677 .shadow-style0stacks_in_67677 {
	position: relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 0 3px 15px 3px;
	background: #FFFEF9;
}

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

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

/* Shadow Style 1 - Left Shadow */

#stacks_in_67677 .shadow-style1stacks_in_67677 {
	position: relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 0 3px 15px 3px;
	background: #FFFEF9;
}

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

/* Shadow Style 2 - Right Shadow */

#stacks_in_67677 .shadow-style2stacks_in_67677 {
	position: relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 0 3px 15px 3px;
	background: #FFFEF9;
}

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

/* Shadow Style 3 - Inset */

#stacks_in_67677 .shadow-style3stacks_in_67677 {
	position: relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 0 3px 15px 3px;
	background: #FFFEF9;
}

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

#stacks_in_67677 .shadow-style4stacks_in_67677 {
	position: relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 0 3px 15px 3px;
	background: #FFFEF9;
}

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

/* Shadow Style 5 - Side Curves */

#stacks_in_67677 .shadow-style5stacks_in_67677 {
    position:relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 3px 15px 3px 15px;
	background: #FFFEF9;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	    	box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

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

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

#stacks_in_67677 .shadow-style5stacks_in_67677:before {
    right:0;
}

/* Shadow Style 6 - Left Side Curve */

#stacks_in_67677 .shadow-style6stacks_in_67677 {
   position:relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 3px 3px 3px 15px;
	background: #FFFEF9;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	    	box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

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

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

/* Shadow Style 7 - Right Side Curve */

#stacks_in_67677 .shadow-style7stacks_in_67677 {
   position:relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 3px 15px 3px 3px;
	background: #FFFEF9;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	    	box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

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

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

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

#stacks_in_67677 .shadow-style8stacks_in_67677 {
   position:relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 15px 3px;
	background: #FFFEF9;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	    	box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

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

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

/* Shadow Style 9 - Divider Line 1 */

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

#stacks_in_67677 .shadow-style9stacks_in_67677 span {
	text-align: center !important;
}

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

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

/* Shadow Style 10 - Divider Line 2 */

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



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




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

#stacks_in_1518 {
	padding: 15px 15px 0px 15px;
}



#stacks_in_69915 {
	margin: 0px 0px 10px 0px;
}
 #stacks_in_67237 hr{border:0;height:0;width:100%;margin:0;padding:0}#stacks_in_67237 hr.gradient{height:1px;background:#333;background-image:-webkit-linear-gradient(left,#FFE478,#FF391E,#FFE478);background-image:-moz-linear-gradient(left,#FFE478,#FF391E,#FFE478);background-image:-ms-linear-gradient(left,#FFE478,#FF391E,#FFE478);background-image:-o-linear-gradient(left,#FFE478,#FF391E,#FFE478);background-image:linear-gradient(left,#FFE478,#FF391E,#FFE478)}#stacks_in_67237 hr.faded{height:1px;background-image:-webkit-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-moz-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-ms-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-o-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0))}#stacks_in_67237 hr.dashed_fade{border-bottom:1px dashed #FF8469;background:#FF391E}#stacks_in_67237 hr.dotted_fade{border-bottom:1px dotted #FF8469;background:#FF391E}#stacks_in_67237 hr.dashed{border-bottom:1px dashed #FF391E}#stacks_in_67237 hr.dotted{border-bottom:1px dotted #FF8469}#stacks_in_67237 hr.shadow{height:1px;box-shadow:inset 0 1px 1px -1px rgba(0,0,0,0.5)}#stacks_in_67237 hr.cloudy{margin:1px 0;box-shadow:0 0 1px 1px #FF391E}#stacks_in_67237 hr.cloudy:after{content:"\00a0"}#stacks_in_67237 hr.inset{border-top:1px solid rgba(0,0,0,0.1);border-bottom:1px solid rgba(255,255,255,0.3)}#stacks_in_67237 hr.inset_two{border-top:1px solid #FFE478;border-bottom:1px solid #FF391E}#stacks_in_67237 hr.inset_three{border-top:1px solid #FF391E;border-bottom:1px solid #FFE478}#stacks_in_67237 hr.inset_four{border-top:1px solid #FF391E;border-bottom:1px solid #CCCCCC}#stacks_in_67237 hr.flared{height:30px;border-style:solid;border-color:#FF391E;border-width:1px 0 0 0;border-radius:20px;margin-top:12px}#stacks_in_67237 hr.flared:before{display:block;content:"";height:30px;margin-top:-31px;border-style:solid;border-color:#FF391E;border-width:0 0 1px 0;border-radius:20px}#stacks_in_67237 hr.glyph{padding:0;border:0;border-top:1px double #FF391E;color:#FF391E;text-align:center;margin:1em 0}#stacks_in_67237 hr.glyph:after{content:"§";display:inline-block;position:relative;top:-0.00em;font-size:1.5em;padding:0 .25em;background:#FFFFFF} 

#stacks_in_67237 {
	margin: 0px 20px 0px 20px;
}
#stacks_in_69774 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_69774 .jwresp_col{overflow:hidden;margin:0;width:49%; float:left;}#stacks_in_69774 #jwresp_col2_stacks_in_69774{ float:right; width:49%}@media screen and (max-width:500px){#stacks_in_69774 #jwresp_col1_stacks_in_69774,#stacks_in_69774 #jwresp_col2_stacks_in_69774{width:100%;float:none;display:block}#stacks_in_69774 #jwresp_col1_stacks_in_69774{margin-bottom:15px}}

#stacks_in_69774 {
	margin: 30px 0px 0px 0px;
}
#stacks_in_69777>.s3_row {
	margin: 0 -10px;
}

#stacks_in_69777>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_69777>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_69777>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_69777>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_69777>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}






#stacks_out_69783 {
	width: 40%;
}

#stacks_in_69791 {
	margin: 5px 0px 0px 0px;
}

#stacks_out_69785 {
	width: 38%;
}

#stacks_in_69793 {
	margin: 7px 0px 0px 0px;
}
#stacks_in_69780>.s3_row {
	margin: 0 -10px;
}

#stacks_in_69780>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_69780>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_69780>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_69780>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_69780>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}






#stacks_in_69787 {
	margin: 4px 0px 0px 0px;
}

#stacks_out_69787 {
	width: 40%;
}

#stacks_in_69795 {
	margin: 5px 0px 0px 0px;
}

#stacks_out_69789 {
	width: 40%;
}

#stacks_in_69797 {
	margin: 5px 0px 0px 0px;
}
#stacks_in_69768 .ls-wrapper{margin:0 auto;clear:both;overflow:auto;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;max-width:none !important}#stacks_in_69768 .ls-wrapper .ls-preloader{background:url(../rw_common/plugins/stacks/tabulous-images/loading.gif) #FFFFFF no-repeat center 75px;opacity:0.9;width:100%;height:200%;position:absolute;top:0;left:0}#stacks_in_69768 .ls-wrapper .liquid-slider{width:100%;margin:0;float:left;overflow:hidden;position:relative;-webkit-backface-visibility:hidden;border-radius:0px;}#stacks_in_69768 .ls-wrapper .panel-container{position:relative}#stacks_in_69768 .ls-wrapper .panel-container .fadeClass{position:absolute;top:0;left:0;display:none}#stacks_in_69768 .ls-wrapper .panel-container .panel{width:1030px;display:block;float:left;border:none;margin-bottom:0;padding:0;background:transparent;-webkit-backface-visibility:hidden}#stacks_in_69768 .ls-wrapper .panel-container .panel.fade{position:absolute;top:0;opacity:0}#stacks_in_69768 .ls-wrapper .panel-container .panel .panel-wrapper{padding:20px 20px 0px 20px;position:relative}#stacks_in_69768 .ls-wrapper .panel-container .panel .panel-wrapper .tab-title{display:none;}#stacks_in_69768 .ls-wrapper .ls-nav{overflow:hidden;clear:both}@media screen and (max-width:600px){#stacks_in_69768 .ls-wrapper .ls-nav{margin-bottom:0;margin-top:0;padding:0}}#stacks_in_69768 .ls-wrapper .ls-nav ul{padding:0;clear:both;display:block;margin:auto;overflow:auto;-webkit-box-sizing:content-box;box-sizing:content-box;margin-bottom:0px;}#stacks_in_69768 .ls-wrapper .ls-nav ul li{display:inline;margin:0;-webkit-box-sizing:content-box;box-sizing:content-box}#stacks_in_69768 .ls-wrapper .ls-nav ul li a{display:block;float:left;text-decoration:none;margin-right:0px;color:#FFFFFF;font-size:14px;height:auto !important;-webkit-transition-property:background,color;transition-property:background,color;-webkit-transition-duration:250ms;transition-duration:250ms;-webkit-transition-timing-function:ease-in-out;transition-timing-function:ease-in-out;background:#000000;padding:0px;}#stacks_in_69768 .ls-wrapper .ls-nav ul li a:hover{background:#359BCA;color:#FFFFFF}#stacks_in_69768 .ls-wrapper .ls-nav ul li a.current{background:#359BCA;color:#FFFFFF}#stacks_in_69768 .ls-wrapper .ls-nav ul li a.current h1,#stacks_in_69768 .ls-wrapper .ls-nav ul li a.current h2,#stacks_in_69768 .ls-wrapper .ls-nav ul li a.current h3,#stacks_in_69768 .ls-wrapper .ls-nav ul li a.current h4,#stacks_in_69768 .ls-wrapper .ls-nav ul li a.current h5,#stacks_in_69768 .ls-wrapper .ls-nav ul li a.current h6,#stacks_in_69768 .ls-wrapper .ls-nav ul li a.current span{color:#FFFFFF}#stacks_in_69768 .ls-wrapper .ls-nav ul li a h1,#stacks_in_69768 .ls-wrapper .ls-nav ul li a h2,#stacks_in_69768 .ls-wrapper .ls-nav ul li a h3,#stacks_in_69768 .ls-wrapper .ls-nav ul li a h4,#stacks_in_69768 .ls-wrapper .ls-nav ul li a h5,#stacks_in_69768 .ls-wrapper .ls-nav ul li a h6,#stacks_in_69768 .ls-wrapper .ls-nav ul li a span{display:inline;font-size:14px;color:#FFFFFF;margin:0}#stacks_in_69768 .ls-wrapper .ls-nav ul li:first-child a{border-top-left-radius:0px;border-bottom-left-radius:0px;}#stacks_in_69768 .ls-wrapper .ls-nav ul li:last-child a{margin-right:0;border-top-right-radius:0px;border-bottom-right-radius:0px;}#stacks_in_69768 .ls-wrapper .ls-select-box{width:100%;height:35px;overflow:hidden;color:#FFFFFF;background:url(../files/menuImage-69768.png) no-repeat 98% 50% #359BCA;border-top-left-radius:0px;border-top-right-radius:0px;}#stacks_in_69768 .ls-wrapper .ls-select-box select{width:110%;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;padding:5px 10px;font-size:110%;border:1px solid #2187B6;height:35px;cursor:pointer;color:#FFFFFF;border-radius:0;border-top-left-radius:0px;border-top-right-radius:0px;}#stacks_in_69768 .ls-wrapper .ls-select-box select option{font-weight:normal;color:#000000}#stacks_in_69768 .ls-wrapper .ls-nav-left,#stacks_in_69768 .ls-wrapper .ls-nav-right,#stacks_in_69768 .ls-wrapper .ls-nav-left-arrow,#stacks_in_69768 .ls-wrapper .ls-nav-right-arrow{cursor:pointer;position:absolute;top:50px;z-index:100;opacity:0.3 !important;filter:alpha(opacity=30) !important;-webkit-transition:opacity 250ms ease-in-out 0;transition:opacity 250ms ease-in-out 0;background-repeat:no-repeat;background-size:100%}#stacks_in_69768 .ls-wrapper .ls-nav-left a,#stacks_in_69768 .ls-wrapper .ls-nav-right a,#stacks_in_69768 .ls-wrapper .ls-nav-left-arrow a,#stacks_in_69768 .ls-wrapper .ls-nav-right-arrow a{display:block;font-size:0px;color:#000000;text-decoration:none}#stacks_in_69768 .ls-wrapper .ls-nav-left:hover,#stacks_in_69768 .ls-wrapper .ls-nav-right:hover,#stacks_in_69768 .ls-wrapper .ls-nav-left-arrow:hover,#stacks_in_69768 .ls-wrapper .ls-nav-right-arrow:hover{opacity:1.0 !important;filter:alpha(opacity=100) !important}#stacks_in_69768 .ls-wrapper .ls-nav-right,#stacks_in_69768 .ls-wrapper .ls-nav-right-arrow{right:5px}#stacks_in_69768 .ls-wrapper .ls-nav-left,#stacks_in_69768 .ls-wrapper .ls-nav-left-arrow{left:5px}#stacks_in_69768 .ls-wrapper .ls-nav-left-arrow,#stacks_in_69768 .ls-wrapper .ls-nav-right-arrow{width:0px;height:0px}#stacks_in_69768 .ls-wrapper .ls-nav-right-arrow{background-image:url(../files/tabulous-images/arrow-right.png);background-position:top right}#stacks_in_69768 .ls-wrapper .ls-nav-left-arrow{background-image:url(../files/tabulous-images/arrow-left.png);background-position:top left}@media screen and (max-width:600px){#stacks_in_69768 .liquid-slider{border-top-left-radius:0!important;border-top-right-radius:0!important}}
#stacks_in_67262 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_67262 .jwresp_col{overflow:hidden;margin:0;width:50%; float:left;}#stacks_in_67262 #jwresp_col2_stacks_in_67262{ float:right; width:50%}@media screen and (max-width:500px){#stacks_in_67262 #jwresp_col1_stacks_in_67262,#stacks_in_67262 #jwresp_col2_stacks_in_67262{width:100%;float:none;display:block}#stacks_in_67262 #jwresp_col1_stacks_in_67262{margin-bottom:15px}}

#stacks_in_67262 {
	margin: 15px 0px 0px 0px;
}
/*
1.3.0.2
- add ability to use manually imported icon font (item stack)
- updated woff2 file, old file was causing odd display bugs
*/
@charset "UTF-8";
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(listify-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(listify-files/MaterialIcons-2021.woff2) format('woff2'),
    url(listify-files/MaterialIcons-Regular.woff) format('woff'),
    url(listify-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("listify-files/ionicons.eot?v=2.0.1");src:url("listify-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("listify-files/ionicons.ttf?v=2.0.1") format("truetype"),url("listify-files/ionicons.woff?v=2.0.1") format("woff"),url("listify-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}

#listify_stacks_in_68413 {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
  /**
 * Remove default margin. */
  /* HTML5 display definitions
 * ========================================================================== */
  /**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
  /**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
  /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices. */
  /**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
  /* Links
 * ========================================================================== */
  /**
 * Remove the gray background color from active links in IE 10. */
  /**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
  /* Text-level semantics
 * ========================================================================== */
  /**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
  /**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in Safari and Chrome. */
  /**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in IE 8/9. */
  /**
 * Address inconsistent and variable font size in all browsers. */
  /**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  /* Embedded content
 * ========================================================================== */
  /**
 * Remove border when inside `a` element in IE 8/9/10. */
  /**
 * Correct overflow not hidden in IE 9/10/11. */
  /* Grouping content
 * ========================================================================== */
  /**
 * Address margin not present in IE 8/9 and Safari. */
  /**
 * Address differences between Firefox and other browsers. */
  /**
 * Contain overflow in all browsers. */
  /**
 * Address odd `em`-unit font size rendering in all browsers. */
  /* Forms
 * ========================================================================== */
  /**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
  /**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
  /**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
  /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox. */
  /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector */
  /**
 * Re-set default cursor for disabled elements. */
  /**
 * Remove inner padding and border in Firefox 4+. */
  /**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet. */
  /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
  /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
  /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */
  /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
  /**
 * Define consistent border, margin, and padding. */
  /**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. */
  /**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
  /**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
  /* Tables
 * ========================================================================== */
  /**
 * Remove most spacing between table cells. */
  /**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`. */
  /**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox. */
  /**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll. */
  /* .w-lightbox-content */
  /*
 * 1. Remove default margin set by user-agent on the <figure> element. */
  /**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling. */
  /**
 * 1. Reset if style is set by user on "All Images" */
  /*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) */
  /**
 * 1. All IE versions add extra space at the bottom without this. */
  /*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior. */
  /*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track. */
  /*
 * Utility classes */ }
  #listify_stacks_in_68413 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_68413 body {
    margin: 0; }
  #listify_stacks_in_68413 article, #listify_stacks_in_68413 aside, #listify_stacks_in_68413 details, #listify_stacks_in_68413 figcaption, #listify_stacks_in_68413 figure, #listify_stacks_in_68413 footer, #listify_stacks_in_68413 header, #listify_stacks_in_68413 hgroup, #listify_stacks_in_68413 main, #listify_stacks_in_68413 menu, #listify_stacks_in_68413 nav, #listify_stacks_in_68413 section, #listify_stacks_in_68413 summary {
    display: block; }
  #listify_stacks_in_68413 audio, #listify_stacks_in_68413 canvas, #listify_stacks_in_68413 progress, #listify_stacks_in_68413 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_68413 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_68413 [hidden], #listify_stacks_in_68413 template {
    display: none; }
  #listify_stacks_in_68413 a {
    background-color: transparent; }
    #listify_stacks_in_68413 a:active, #listify_stacks_in_68413 a:hover {
      outline: 0; }
  #listify_stacks_in_68413 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_68413 b, #listify_stacks_in_68413 strong {
    font-weight: bold; }
  #listify_stacks_in_68413 dfn {
    font-style: italic; }
  #listify_stacks_in_68413 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_68413 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_68413 small {
    font-size: 80%; }
  #listify_stacks_in_68413 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_68413 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_68413 sub {
    bottom: -0.25em; }
  #listify_stacks_in_68413 img {
    border: 0; }
  #listify_stacks_in_68413 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_68413 figure {
    margin: 1em 40px; }
  #listify_stacks_in_68413 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_68413 pre {
    overflow: auto; }
  #listify_stacks_in_68413 code, #listify_stacks_in_68413 kbd, #listify_stacks_in_68413 pre, #listify_stacks_in_68413 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_68413 button, #listify_stacks_in_68413 input, #listify_stacks_in_68413 optgroup, #listify_stacks_in_68413 select, #listify_stacks_in_68413 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_68413 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_68413 select {
    text-transform: none; }
  #listify_stacks_in_68413 button, #listify_stacks_in_68413 html input[type="button"], #listify_stacks_in_68413 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_68413 button[disabled], #listify_stacks_in_68413 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_68413 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_68413 input {
    line-height: normal; }
    #listify_stacks_in_68413 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_68413 input[type="checkbox"], #listify_stacks_in_68413 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_68413 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_68413 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_68413 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_68413 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_68413 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_68413 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_68413 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_68413 textarea {
    overflow: auto; }
  #listify_stacks_in_68413 optgroup {
    font-weight: bold; }
  #listify_stacks_in_68413 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_68413 td, #listify_stacks_in_68413 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_68413 {
    font-family: 'webflow-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
    font-weight: normal;
    font-style: normal; } }
  #listify_stacks_in_68413 [class^="w-icon-"], #listify_stacks_in_68413 [class*=" w-icon-"] {
    font-family: 'webflow-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #listify_stacks_in_68413 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_68413 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_68413 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_68413 .w-icon-arrow-down:before, #listify_stacks_in_68413 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_68413 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_68413 html {
    height: 100%; }
  #listify_stacks_in_68413 body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333; }
  #listify_stacks_in_68413 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_68413 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_68413 .w-block {
    display: block; }
  #listify_stacks_in_68413 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_68413 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_68413 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_68413 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_68413 .w-hidden {
    display: none; }
  #listify_stacks_in_68413 .w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0; }
  #listify_stacks_in_68413 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_68413 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_68413 .w-webflow-badge {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    border: 0 none transparent;
    border-radius: 0;
    background: none;
    background-image: none;
    background-position: 0% 0%;
    background-size: auto auto;
    background-repeat: repeat;
    background-origin: padding-box;
    background-clip: border-box;
    background-attachment: scroll;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1.0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    list-style-type: disc;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #AAADB0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 6px !important;
    font-size: 12px !important;
    opacity: 1.0 !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); }
    #listify_stacks_in_68413 .w-webflow-badge * {
      position: static;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      z-index: auto;
      display: block;
      visibility: visible;
      overflow: visible;
      overflow-x: visible;
      overflow-y: visible;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: auto;
      height: auto;
      max-height: none;
      max-width: none;
      min-height: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      float: none;
      clear: none;
      border: 0 none transparent;
      border-radius: 0;
      background: none;
      background-image: none;
      background-position: 0% 0%;
      background-size: auto auto;
      background-repeat: repeat;
      background-origin: padding-box;
      background-clip: border-box;
      background-attachment: scroll;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      opacity: 1.0;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: none;
      transition: none;
      direction: ltr;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-style: inherit;
      font-variant: inherit;
      text-align: inherit;
      letter-spacing: inherit;
      text-decoration: inherit;
      text-indent: 0;
      text-transform: inherit;
      list-style-type: disc;
      text-shadow: none;
      font-smoothing: auto;
      vertical-align: baseline;
      cursor: inherit;
      white-space: inherit;
      word-break: normal;
      word-spacing: normal;
      word-wrap: normal; }
    #listify_stacks_in_68413 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_68413 h1, #listify_stacks_in_68413 h2, #listify_stacks_in_68413 h3, #listify_stacks_in_68413 h4, #listify_stacks_in_68413 h5, #listify_stacks_in_68413 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_68413 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_68413 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_68413 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_68413 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_68413 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_68413 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_68413 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_68413 a:focus {
    outline: 0; }
  #listify_stacks_in_68413 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_68413 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_68413 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_68413 ul, #listify_stacks_in_68413 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_68413 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_68413 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_68413 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_68413 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_68413 .w-video iframe, #listify_stacks_in_68413 .w-video object, #listify_stacks_in_68413 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_68413 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_68413 button, #listify_stacks_in_68413 html input[type="button"], #listify_stacks_in_68413 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_68413 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_68413 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_68413 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_68413 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_68413 .w-input, #listify_stacks_in_68413 .w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc; }
  #listify_stacks_in_68413 .w-input:-moz-placeholder, #listify_stacks_in_68413 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_68413 .w-input::-moz-placeholder, #listify_stacks_in_68413 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_68413 .w-input:-ms-input-placeholder, #listify_stacks_in_68413 .w-select:-ms-input-placeholder, #listify_stacks_in_68413 .w-input::-webkit-input-placeholder, #listify_stacks_in_68413 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_68413 .w-input:focus, #listify_stacks_in_68413 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_68413 .w-input[disabled], #listify_stacks_in_68413 .w-select[disabled], #listify_stacks_in_68413 .w-input[readonly], #listify_stacks_in_68413 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_68413 fieldset[disabled] .w-input, #listify_stacks_in_68413 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_68413 textarea.w-input, #listify_stacks_in_68413 textarea.w-select {
    height: auto; }
  #listify_stacks_in_68413 .w-select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f3f3f3));
    background-image: linear-gradient(white 0%, #f3f3f3 100%); }
    #listify_stacks_in_68413 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_68413 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_68413 .w-checkbox, #listify_stacks_in_68413 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_68413 .w-checkbox:before, #listify_stacks_in_68413 .w-radio:before, #listify_stacks_in_68413 .w-checkbox:after, #listify_stacks_in_68413 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_68413 .w-checkbox:after, #listify_stacks_in_68413 .w-radio:after {
    clear: both; }
  #listify_stacks_in_68413 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_68413 .w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px;
    margin-top: 3px; }
  #listify_stacks_in_68413 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_68413 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_68413 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_68413 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_68413 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_68413 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_68413 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_68413 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_68413 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_68413 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_68413 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_68413 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_68413 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_68413 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_68413 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_68413 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_68413 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_68413 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_68413 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_68413 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_68413 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_68413 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_68413 .w-container {
      max-width: 728px; }
    #listify_stacks_in_68413 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_68413 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_68413 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_68413 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_68413 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_68413 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_68413 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_68413 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_68413 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_68413 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_68413 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_68413 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_68413 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_68413 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_68413 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_68413 .w-hidden-main, #listify_stacks_in_68413 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_68413 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_68413 .w-row, #listify_stacks_in_68413 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_68413 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_68413 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_68413 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_68413 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_68413 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_68413 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_68413 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_68413 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_68413 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_68413 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_68413 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_68413 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_68413 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_68413 .w-container {
      max-width: none; }
    #listify_stacks_in_68413 .w-hidden-main, #listify_stacks_in_68413 .w-hidden-medium, #listify_stacks_in_68413 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_68413 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_68413 .w-col {
      width: 100%; }
    #listify_stacks_in_68413 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_68413 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_68413 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_68413 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_68413 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_68413 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_68413 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_68413 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_68413 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_68413 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_68413 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_68413 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_68413 .w-widget {
    position: relative; }
  #listify_stacks_in_68413 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_68413 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_68413 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_68413 .w-widget-map .gm-style-iw {
      width: 90% !important;
      height: auto !important;
      top: 7px !important;
      left: 6% !important;
      display: inline;
      text-align: center;
      overflow: hidden; }
      #listify_stacks_in_68413 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_68413 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_68413 .w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px; }
    #listify_stacks_in_68413 .w-widget-twitter-count-shim * {
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    #listify_stacks_in_68413 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
      position: relative;
      font-size: 15px;
      line-height: 12px;
      text-align: center;
      color: #999;
      font-family: serif; }
    #listify_stacks_in_68413 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_68413 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_68413 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_68413 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_68413 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_68413 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_68413 .w-widget-twitter-count-shim:not(.w--vertical):after {
        top: 50%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_68413 .w-widget-twitter-count-shim:not(.w--vertical):before {
        border-color: rgba(117, 134, 150, 0);
        border-right-color: #5d6c7b;
        border-width: 4px;
        margin-left: -9px;
        margin-top: -4px; }
      #listify_stacks_in_68413 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_68413 .w-widget-twitter-count-shim:not(.w--vertical):after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: white;
        border-width: 4px;
        margin-left: -8px;
        margin-top: -4px; }
      #listify_stacks_in_68413 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_68413 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_68413 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_68413 .w-widget-twitter-count-shim.w--vertical:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_68413 .w-widget-twitter-count-shim.w--vertical:before {
        border-color: rgba(117, 134, 150, 0);
        border-top-color: #5d6c7b;
        border-width: 5px;
        margin-left: -5px; }
      #listify_stacks_in_68413 .w-widget-twitter-count-shim.w--vertical:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: white;
        border-width: 4px;
        margin-left: -4px; }
      #listify_stacks_in_68413 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_68413 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_68413 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_68413 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_68413 .w-background-video > video {
      background-size: cover;
      background-position: 50% 50%;
      position: absolute;
      right: -100%;
      bottom: -100%;
      top: -100%;
      left: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%;
      z-index: -100; }
  #listify_stacks_in_68413 .w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
  #listify_stacks_in_68413 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_68413 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_68413 .w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
    #listify_stacks_in_68413 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_68413 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_68413 .w-slider-nav.w-shadow > div {
      -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
      box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); }
  #listify_stacks_in_68413 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_68413 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_68413 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_68413 .w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    -webkit-transition: background-color 100ms, color 100ms;
    transition: background-color 100ms, color 100ms; }
    #listify_stacks_in_68413 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_68413 .w-slider-arrow-left, #listify_stacks_in_68413 .w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #listify_stacks_in_68413 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_68413 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_68413 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_68413 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_68413 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_68413 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_68413 .w-icon-slider-left, #listify_stacks_in_68413 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_68413 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_68413 .w-dropdown-btn, #listify_stacks_in_68413 .w-dropdown-toggle, #listify_stacks_in_68413 .w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; }
  #listify_stacks_in_68413 .w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px; }
    #listify_stacks_in_68413 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_68413 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_68413 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_68413 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_68413 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_68413 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_68413 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_68413 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_68413 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_68413 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_68413 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_68413 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_68413 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_68413 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_68413 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_68413 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_68413 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_68413 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_68413 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_68413 .w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_68413 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_68413 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_68413 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_68413 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_68413 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_68413 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_68413 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_68413 .w-lightbox-frame, #listify_stacks_in_68413 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_68413 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_68413 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_68413 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_68413 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_68413 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_68413 .w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  #listify_stacks_in_68413 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_68413 .w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
  #listify_stacks_in_68413 .w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); }
  #listify_stacks_in_68413 .w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); }
  #listify_stacks_in_68413 .w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px; }
  #listify_stacks_in_68413 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_68413 .w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */ }
  #listify_stacks_in_68413 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_68413 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_68413 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_68413 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_68413 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_68413 .w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear; }
    #listify_stacks_in_68413 .w-lightbox-spinner:after {
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      bottom: -4px;
      left: -4px;
      border: 3px solid transparent;
      border-bottom-color: #fff;
      border-radius: 50%; }
  #listify_stacks_in_68413 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_68413 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_68413 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_68413 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_68413 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_68413 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_68413 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_68413 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_68413 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_68413 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_68413 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_68413 .w-lightbox-left, #listify_stacks_in_68413 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_68413 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_68413 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_68413 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_68413 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_68413 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_68413 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_68413 .w-richtext ol, #listify_stacks_in_68413 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_68413 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_68413 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_68413 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_68413 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_68413 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_68413 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_68413 .w-richtext figure[data-rt-type="video"] > div:before {
      content: '';
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    #listify_stacks_in_68413 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_68413 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_68413 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_68413 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_68413 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_68413 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_68413 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_68413 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_68413 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_68413 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_68413 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_68413 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_68413 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_68413 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_68413 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_68413 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_68413 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_68413 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_68413 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_68413 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_68413 .w-richtext figure.w-richtext-align-fullwidth {
      width: 100%;
      max-width: 100%;
      text-align: center;
      clear: both;
      display: block;
      margin-right: auto;
      margin-left: auto; }
      #listify_stacks_in_68413 .w-richtext figure.w-richtext-align-fullwidth > div {
        display: inline-block;
        /* padding-bottom is used for aspect ratios in video figures
           *  we want the div to inherit that so hover/selection borders in the designer-canvas
           *  fit right */
        padding-bottom: inherit; }
      #listify_stacks_in_68413 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_68413 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_68413 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_68413 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_68413 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_68413 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_68413 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_68413 .w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto; }
    #listify_stacks_in_68413 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_68413 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_68413 .w--nav-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px; }
  #listify_stacks_in_68413 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_68413 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_68413 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_68413 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_68413 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_68413 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_68413 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_68413 .w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #listify_stacks_in_68413 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_68413 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_68413 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_68413 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_68413 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_68413 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_68413 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_68413 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_68413 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_68413 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_68413 .w-tabs {
    position: relative; }
    #listify_stacks_in_68413 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_68413 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_68413 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_68413 .w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd; }
    #listify_stacks_in_68413 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_68413 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_68413 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_68413 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_68413 .w-tab-link {
      display: block; } }
  #listify_stacks_in_68413 .w-ix-emptyfix:after {
    content: ""; }

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

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  #listify_stacks_in_68413 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_68413 .w-dyn-bind-empty, #listify_stacks_in_68413 .w-condition-invisible {
    display: none !important; }

.list-container {
  margin-top: 0px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex; }

.section {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 0px;
  position: absolute;
  padding-bottom: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox; }
  .section.main {
    display: none; }

.container {
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center; }

#listify_stacks_in_68413 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_68413 .list {
    overflow: hidden;
    margin: 10px 0px 0px 0px;
    padding: 0px 10px 10px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_68413 .list-item {
    list-style-type: none;
    margin-bottom: 0px; }
    #listify_stacks_in_68413 .list-item ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68413 .list-item ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68413 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68413 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68413 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68413 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68413 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68413 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68413 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68413 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68413 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_68413 .list-item-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 0px auto 0px auto;
    padding: 8px 8px 0px 8px;
    border-radius: 5px;
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_68413 .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_68413 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_68413 .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_68413 .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -ms-grid-row-align: center;
        align-self: center;
    word-wrap: break-word;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 16px;
    line-height: 22px;
    font-family: inherit;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Raleway";
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_68413 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_68413 .list-item-inner {
  margin: 10px 0px 0px 0px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_68413.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_68413.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_68413.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_68543.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_68543.list-item {
  margin-bottom: 20px; }

#listifyItem_stacks_in_68543.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_68543.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_68543.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_68543.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 0px;
    line-height: 1;
    border-radius: 0px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 20px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    align-self: flex-start;
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    background: url(../files/list_icon_bg_image_choice-68543.png) no-repeat center center;
    background-size: cover;
    /*  */ }
  #listifyItem_stacks_in_68543.list-item .list-item-inner .list-item-icon i {
    color: rgba(155, 88, 235, 1.00);
    font-size: 50px;
    vertical-align: middle;
    /*  */
    /*  */
    opacity: 0;
    visibility: hidden;
    /*  */
    /*  */ }
  #listifyItem_stacks_in_68543.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Droid Sans";
    /*  */ }
  #listifyItem_stacks_in_68543.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_68543.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_68543.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_68543.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_68547.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_68547.list-item {
  margin-bottom: 20px; }

#listifyItem_stacks_in_68547.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_68547.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_68547.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 8px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_68547.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 0px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 20px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    align-self: flex-start;
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    background: url(../files/list_icon_bg_image_choice-68547.png) no-repeat center center;
    background-size: cover;
    /*  */ }
  #listifyItem_stacks_in_68547.list-item .list-item-inner .list-item-icon i {
    color: rgba(155, 88, 235, 1.00);
    font-size: 40px;
    vertical-align: middle;
    /*  */
    /*  */
    opacity: 0;
    visibility: hidden;
    /*  */
    /*  */ }
  #listifyItem_stacks_in_68547.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Droid Sans";
    /*  */ }
  #listifyItem_stacks_in_68547.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_68547.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_68547.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_68547.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_69848.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_69848.list-item {
  margin-bottom: 20px; }

#listifyItem_stacks_in_69848.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_69848.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_69848.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 8px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_69848.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 0px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 20px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    align-self: flex-start;
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    background: url(../files/list_icon_bg_image_choice-69848.png) no-repeat center center;
    background-size: cover;
    /*  */ }
  #listifyItem_stacks_in_69848.list-item .list-item-inner .list-item-icon i {
    color: rgba(155, 88, 235, 1.00);
    font-size: 40px;
    vertical-align: middle;
    /*  */
    /*  */
    opacity: 0;
    visibility: hidden;
    /*  */
    /*  */ }
  #listifyItem_stacks_in_69848.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Droid Sans";
    /*  */ }
  #listifyItem_stacks_in_69848.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_69848.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_69848.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_69848.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_69858.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_69858.list-item {
  margin-bottom: 20px; }

#listifyItem_stacks_in_69858.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_69858.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_69858.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 8px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_69858.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 0px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 20px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    align-self: flex-start;
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    background: url(../files/list_icon_bg_image_choice-69858.png) no-repeat center center;
    background-size: cover;
    /*  */ }
  #listifyItem_stacks_in_69858.list-item .list-item-inner .list-item-icon i {
    color: rgba(155, 88, 235, 1.00);
    font-size: 40px;
    vertical-align: middle;
    /*  */
    /*  */
    opacity: 0;
    visibility: hidden;
    /*  */
    /*  */ }
  #listifyItem_stacks_in_69858.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Droid Sans";
    /*  */ }
  #listifyItem_stacks_in_69858.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_69858.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_69858.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_69858.hide-d {
    display: none; } }

/*  */
/*
1.3.0.2
- add ability to use manually imported icon font (item stack)
- updated woff2 file, old file was causing odd display bugs
*/
@charset "UTF-8";
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(listify-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(listify-files/MaterialIcons-2021.woff2) format('woff2'),
    url(listify-files/MaterialIcons-Regular.woff) format('woff'),
    url(listify-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("listify-files/ionicons.eot?v=2.0.1");src:url("listify-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("listify-files/ionicons.ttf?v=2.0.1") format("truetype"),url("listify-files/ionicons.woff?v=2.0.1") format("woff"),url("listify-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}

#listify_stacks_in_68483 {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
  /**
 * Remove default margin. */
  /* HTML5 display definitions
 * ========================================================================== */
  /**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
  /**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
  /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices. */
  /**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
  /* Links
 * ========================================================================== */
  /**
 * Remove the gray background color from active links in IE 10. */
  /**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
  /* Text-level semantics
 * ========================================================================== */
  /**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
  /**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in Safari and Chrome. */
  /**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in IE 8/9. */
  /**
 * Address inconsistent and variable font size in all browsers. */
  /**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  /* Embedded content
 * ========================================================================== */
  /**
 * Remove border when inside `a` element in IE 8/9/10. */
  /**
 * Correct overflow not hidden in IE 9/10/11. */
  /* Grouping content
 * ========================================================================== */
  /**
 * Address margin not present in IE 8/9 and Safari. */
  /**
 * Address differences between Firefox and other browsers. */
  /**
 * Contain overflow in all browsers. */
  /**
 * Address odd `em`-unit font size rendering in all browsers. */
  /* Forms
 * ========================================================================== */
  /**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
  /**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
  /**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
  /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox. */
  /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector */
  /**
 * Re-set default cursor for disabled elements. */
  /**
 * Remove inner padding and border in Firefox 4+. */
  /**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet. */
  /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
  /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
  /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */
  /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
  /**
 * Define consistent border, margin, and padding. */
  /**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. */
  /**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
  /**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
  /* Tables
 * ========================================================================== */
  /**
 * Remove most spacing between table cells. */
  /**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`. */
  /**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox. */
  /**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll. */
  /* .w-lightbox-content */
  /*
 * 1. Remove default margin set by user-agent on the <figure> element. */
  /**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling. */
  /**
 * 1. Reset if style is set by user on "All Images" */
  /*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) */
  /**
 * 1. All IE versions add extra space at the bottom without this. */
  /*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior. */
  /*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track. */
  /*
 * Utility classes */ }
  #listify_stacks_in_68483 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_68483 body {
    margin: 0; }
  #listify_stacks_in_68483 article, #listify_stacks_in_68483 aside, #listify_stacks_in_68483 details, #listify_stacks_in_68483 figcaption, #listify_stacks_in_68483 figure, #listify_stacks_in_68483 footer, #listify_stacks_in_68483 header, #listify_stacks_in_68483 hgroup, #listify_stacks_in_68483 main, #listify_stacks_in_68483 menu, #listify_stacks_in_68483 nav, #listify_stacks_in_68483 section, #listify_stacks_in_68483 summary {
    display: block; }
  #listify_stacks_in_68483 audio, #listify_stacks_in_68483 canvas, #listify_stacks_in_68483 progress, #listify_stacks_in_68483 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_68483 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_68483 [hidden], #listify_stacks_in_68483 template {
    display: none; }
  #listify_stacks_in_68483 a {
    background-color: transparent; }
    #listify_stacks_in_68483 a:active, #listify_stacks_in_68483 a:hover {
      outline: 0; }
  #listify_stacks_in_68483 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_68483 b, #listify_stacks_in_68483 strong {
    font-weight: bold; }
  #listify_stacks_in_68483 dfn {
    font-style: italic; }
  #listify_stacks_in_68483 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_68483 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_68483 small {
    font-size: 80%; }
  #listify_stacks_in_68483 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_68483 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_68483 sub {
    bottom: -0.25em; }
  #listify_stacks_in_68483 img {
    border: 0; }
  #listify_stacks_in_68483 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_68483 figure {
    margin: 1em 40px; }
  #listify_stacks_in_68483 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_68483 pre {
    overflow: auto; }
  #listify_stacks_in_68483 code, #listify_stacks_in_68483 kbd, #listify_stacks_in_68483 pre, #listify_stacks_in_68483 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_68483 button, #listify_stacks_in_68483 input, #listify_stacks_in_68483 optgroup, #listify_stacks_in_68483 select, #listify_stacks_in_68483 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_68483 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_68483 select {
    text-transform: none; }
  #listify_stacks_in_68483 button, #listify_stacks_in_68483 html input[type="button"], #listify_stacks_in_68483 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_68483 button[disabled], #listify_stacks_in_68483 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_68483 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_68483 input {
    line-height: normal; }
    #listify_stacks_in_68483 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_68483 input[type="checkbox"], #listify_stacks_in_68483 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_68483 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_68483 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_68483 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_68483 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_68483 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_68483 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_68483 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_68483 textarea {
    overflow: auto; }
  #listify_stacks_in_68483 optgroup {
    font-weight: bold; }
  #listify_stacks_in_68483 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_68483 td, #listify_stacks_in_68483 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_68483 {
    font-family: 'webflow-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
    font-weight: normal;
    font-style: normal; } }
  #listify_stacks_in_68483 [class^="w-icon-"], #listify_stacks_in_68483 [class*=" w-icon-"] {
    font-family: 'webflow-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #listify_stacks_in_68483 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_68483 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_68483 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_68483 .w-icon-arrow-down:before, #listify_stacks_in_68483 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_68483 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_68483 html {
    height: 100%; }
  #listify_stacks_in_68483 body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333; }
  #listify_stacks_in_68483 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_68483 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_68483 .w-block {
    display: block; }
  #listify_stacks_in_68483 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_68483 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_68483 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_68483 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_68483 .w-hidden {
    display: none; }
  #listify_stacks_in_68483 .w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0; }
  #listify_stacks_in_68483 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_68483 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_68483 .w-webflow-badge {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    border: 0 none transparent;
    border-radius: 0;
    background: none;
    background-image: none;
    background-position: 0% 0%;
    background-size: auto auto;
    background-repeat: repeat;
    background-origin: padding-box;
    background-clip: border-box;
    background-attachment: scroll;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1.0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    list-style-type: disc;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #AAADB0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 6px !important;
    font-size: 12px !important;
    opacity: 1.0 !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); }
    #listify_stacks_in_68483 .w-webflow-badge * {
      position: static;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      z-index: auto;
      display: block;
      visibility: visible;
      overflow: visible;
      overflow-x: visible;
      overflow-y: visible;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: auto;
      height: auto;
      max-height: none;
      max-width: none;
      min-height: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      float: none;
      clear: none;
      border: 0 none transparent;
      border-radius: 0;
      background: none;
      background-image: none;
      background-position: 0% 0%;
      background-size: auto auto;
      background-repeat: repeat;
      background-origin: padding-box;
      background-clip: border-box;
      background-attachment: scroll;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      opacity: 1.0;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: none;
      transition: none;
      direction: ltr;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-style: inherit;
      font-variant: inherit;
      text-align: inherit;
      letter-spacing: inherit;
      text-decoration: inherit;
      text-indent: 0;
      text-transform: inherit;
      list-style-type: disc;
      text-shadow: none;
      font-smoothing: auto;
      vertical-align: baseline;
      cursor: inherit;
      white-space: inherit;
      word-break: normal;
      word-spacing: normal;
      word-wrap: normal; }
    #listify_stacks_in_68483 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_68483 h1, #listify_stacks_in_68483 h2, #listify_stacks_in_68483 h3, #listify_stacks_in_68483 h4, #listify_stacks_in_68483 h5, #listify_stacks_in_68483 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_68483 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_68483 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_68483 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_68483 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_68483 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_68483 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_68483 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_68483 a:focus {
    outline: 0; }
  #listify_stacks_in_68483 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_68483 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_68483 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_68483 ul, #listify_stacks_in_68483 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_68483 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_68483 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_68483 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_68483 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_68483 .w-video iframe, #listify_stacks_in_68483 .w-video object, #listify_stacks_in_68483 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_68483 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_68483 button, #listify_stacks_in_68483 html input[type="button"], #listify_stacks_in_68483 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_68483 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_68483 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_68483 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_68483 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_68483 .w-input, #listify_stacks_in_68483 .w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc; }
  #listify_stacks_in_68483 .w-input:-moz-placeholder, #listify_stacks_in_68483 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_68483 .w-input::-moz-placeholder, #listify_stacks_in_68483 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_68483 .w-input:-ms-input-placeholder, #listify_stacks_in_68483 .w-select:-ms-input-placeholder, #listify_stacks_in_68483 .w-input::-webkit-input-placeholder, #listify_stacks_in_68483 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_68483 .w-input:focus, #listify_stacks_in_68483 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_68483 .w-input[disabled], #listify_stacks_in_68483 .w-select[disabled], #listify_stacks_in_68483 .w-input[readonly], #listify_stacks_in_68483 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_68483 fieldset[disabled] .w-input, #listify_stacks_in_68483 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_68483 textarea.w-input, #listify_stacks_in_68483 textarea.w-select {
    height: auto; }
  #listify_stacks_in_68483 .w-select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f3f3f3));
    background-image: linear-gradient(white 0%, #f3f3f3 100%); }
    #listify_stacks_in_68483 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_68483 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_68483 .w-checkbox, #listify_stacks_in_68483 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_68483 .w-checkbox:before, #listify_stacks_in_68483 .w-radio:before, #listify_stacks_in_68483 .w-checkbox:after, #listify_stacks_in_68483 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_68483 .w-checkbox:after, #listify_stacks_in_68483 .w-radio:after {
    clear: both; }
  #listify_stacks_in_68483 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_68483 .w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px;
    margin-top: 3px; }
  #listify_stacks_in_68483 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_68483 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_68483 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_68483 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_68483 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_68483 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_68483 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_68483 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_68483 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_68483 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_68483 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_68483 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_68483 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_68483 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_68483 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_68483 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_68483 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_68483 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_68483 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_68483 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_68483 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_68483 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_68483 .w-container {
      max-width: 728px; }
    #listify_stacks_in_68483 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_68483 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_68483 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_68483 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_68483 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_68483 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_68483 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_68483 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_68483 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_68483 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_68483 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_68483 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_68483 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_68483 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_68483 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_68483 .w-hidden-main, #listify_stacks_in_68483 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_68483 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_68483 .w-row, #listify_stacks_in_68483 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_68483 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_68483 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_68483 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_68483 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_68483 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_68483 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_68483 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_68483 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_68483 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_68483 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_68483 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_68483 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_68483 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_68483 .w-container {
      max-width: none; }
    #listify_stacks_in_68483 .w-hidden-main, #listify_stacks_in_68483 .w-hidden-medium, #listify_stacks_in_68483 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_68483 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_68483 .w-col {
      width: 100%; }
    #listify_stacks_in_68483 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_68483 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_68483 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_68483 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_68483 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_68483 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_68483 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_68483 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_68483 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_68483 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_68483 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_68483 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_68483 .w-widget {
    position: relative; }
  #listify_stacks_in_68483 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_68483 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_68483 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_68483 .w-widget-map .gm-style-iw {
      width: 90% !important;
      height: auto !important;
      top: 7px !important;
      left: 6% !important;
      display: inline;
      text-align: center;
      overflow: hidden; }
      #listify_stacks_in_68483 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_68483 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_68483 .w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px; }
    #listify_stacks_in_68483 .w-widget-twitter-count-shim * {
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    #listify_stacks_in_68483 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
      position: relative;
      font-size: 15px;
      line-height: 12px;
      text-align: center;
      color: #999;
      font-family: serif; }
    #listify_stacks_in_68483 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_68483 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_68483 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_68483 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_68483 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_68483 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_68483 .w-widget-twitter-count-shim:not(.w--vertical):after {
        top: 50%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_68483 .w-widget-twitter-count-shim:not(.w--vertical):before {
        border-color: rgba(117, 134, 150, 0);
        border-right-color: #5d6c7b;
        border-width: 4px;
        margin-left: -9px;
        margin-top: -4px; }
      #listify_stacks_in_68483 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_68483 .w-widget-twitter-count-shim:not(.w--vertical):after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: white;
        border-width: 4px;
        margin-left: -8px;
        margin-top: -4px; }
      #listify_stacks_in_68483 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_68483 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_68483 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_68483 .w-widget-twitter-count-shim.w--vertical:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_68483 .w-widget-twitter-count-shim.w--vertical:before {
        border-color: rgba(117, 134, 150, 0);
        border-top-color: #5d6c7b;
        border-width: 5px;
        margin-left: -5px; }
      #listify_stacks_in_68483 .w-widget-twitter-count-shim.w--vertical:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: white;
        border-width: 4px;
        margin-left: -4px; }
      #listify_stacks_in_68483 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_68483 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_68483 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_68483 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_68483 .w-background-video > video {
      background-size: cover;
      background-position: 50% 50%;
      position: absolute;
      right: -100%;
      bottom: -100%;
      top: -100%;
      left: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%;
      z-index: -100; }
  #listify_stacks_in_68483 .w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
  #listify_stacks_in_68483 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_68483 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_68483 .w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
    #listify_stacks_in_68483 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_68483 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_68483 .w-slider-nav.w-shadow > div {
      -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
      box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); }
  #listify_stacks_in_68483 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_68483 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_68483 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_68483 .w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    -webkit-transition: background-color 100ms, color 100ms;
    transition: background-color 100ms, color 100ms; }
    #listify_stacks_in_68483 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_68483 .w-slider-arrow-left, #listify_stacks_in_68483 .w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #listify_stacks_in_68483 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_68483 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_68483 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_68483 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_68483 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_68483 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_68483 .w-icon-slider-left, #listify_stacks_in_68483 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_68483 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_68483 .w-dropdown-btn, #listify_stacks_in_68483 .w-dropdown-toggle, #listify_stacks_in_68483 .w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; }
  #listify_stacks_in_68483 .w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px; }
    #listify_stacks_in_68483 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_68483 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_68483 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_68483 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_68483 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_68483 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_68483 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_68483 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_68483 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_68483 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_68483 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_68483 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_68483 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_68483 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_68483 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_68483 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_68483 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_68483 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_68483 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_68483 .w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_68483 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_68483 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_68483 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_68483 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_68483 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_68483 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_68483 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_68483 .w-lightbox-frame, #listify_stacks_in_68483 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_68483 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_68483 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_68483 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_68483 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_68483 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_68483 .w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  #listify_stacks_in_68483 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_68483 .w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
  #listify_stacks_in_68483 .w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); }
  #listify_stacks_in_68483 .w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); }
  #listify_stacks_in_68483 .w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px; }
  #listify_stacks_in_68483 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_68483 .w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */ }
  #listify_stacks_in_68483 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_68483 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_68483 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_68483 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_68483 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_68483 .w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear; }
    #listify_stacks_in_68483 .w-lightbox-spinner:after {
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      bottom: -4px;
      left: -4px;
      border: 3px solid transparent;
      border-bottom-color: #fff;
      border-radius: 50%; }
  #listify_stacks_in_68483 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_68483 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_68483 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_68483 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_68483 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_68483 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_68483 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_68483 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_68483 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_68483 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_68483 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_68483 .w-lightbox-left, #listify_stacks_in_68483 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_68483 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_68483 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_68483 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_68483 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_68483 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_68483 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_68483 .w-richtext ol, #listify_stacks_in_68483 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_68483 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_68483 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_68483 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_68483 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_68483 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_68483 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_68483 .w-richtext figure[data-rt-type="video"] > div:before {
      content: '';
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    #listify_stacks_in_68483 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_68483 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_68483 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_68483 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_68483 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_68483 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_68483 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_68483 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_68483 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_68483 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_68483 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_68483 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_68483 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_68483 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_68483 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_68483 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_68483 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_68483 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_68483 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_68483 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_68483 .w-richtext figure.w-richtext-align-fullwidth {
      width: 100%;
      max-width: 100%;
      text-align: center;
      clear: both;
      display: block;
      margin-right: auto;
      margin-left: auto; }
      #listify_stacks_in_68483 .w-richtext figure.w-richtext-align-fullwidth > div {
        display: inline-block;
        /* padding-bottom is used for aspect ratios in video figures
           *  we want the div to inherit that so hover/selection borders in the designer-canvas
           *  fit right */
        padding-bottom: inherit; }
      #listify_stacks_in_68483 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_68483 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_68483 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_68483 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_68483 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_68483 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_68483 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_68483 .w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto; }
    #listify_stacks_in_68483 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_68483 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_68483 .w--nav-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px; }
  #listify_stacks_in_68483 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_68483 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_68483 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_68483 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_68483 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_68483 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_68483 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_68483 .w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #listify_stacks_in_68483 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_68483 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_68483 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_68483 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_68483 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_68483 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_68483 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_68483 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_68483 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_68483 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_68483 .w-tabs {
    position: relative; }
    #listify_stacks_in_68483 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_68483 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_68483 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_68483 .w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd; }
    #listify_stacks_in_68483 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_68483 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_68483 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_68483 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_68483 .w-tab-link {
      display: block; } }
  #listify_stacks_in_68483 .w-ix-emptyfix:after {
    content: ""; }

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

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  #listify_stacks_in_68483 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_68483 .w-dyn-bind-empty, #listify_stacks_in_68483 .w-condition-invisible {
    display: none !important; }

.list-container {
  margin-top: 0px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex; }

.section {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 0px;
  position: absolute;
  padding-bottom: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox; }
  .section.main {
    display: none; }

.container {
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center; }

#listify_stacks_in_68483 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_68483 .list {
    overflow: hidden;
    margin: 10px 0px 0px 0px;
    padding: 0px 10px 10px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_68483 .list-item {
    list-style-type: none;
    margin-bottom: 5px; }
    #listify_stacks_in_68483 .list-item ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68483 .list-item ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68483 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68483 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68483 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68483 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68483 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68483 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68483 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68483 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68483 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_68483 .list-item-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 0px auto 0px auto;
    padding: 8px 8px 0px 8px;
    border-radius: 5px;
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_68483 .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_68483 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_68483 .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_68483 .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -ms-grid-row-align: center;
        align-self: center;
    word-wrap: break-word;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 16px;
    line-height: 22px;
    font-family: inherit;
    /*  */
    /*  */
    /*  */
    font-family: "Roboto";
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_68483 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_68483 .list-item-inner {
  margin: 10px 0px 0px 0px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_68483.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_68483.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_68483.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_68540.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_68540.list-item {
  margin-bottom: 20px; }

#listifyItem_stacks_in_68540.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_68540.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_68540.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 8px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_68540.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 0px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 20px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    align-self: flex-start;
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    background: url(../files/list_icon_bg_image_choice-68540.png) no-repeat center center;
    background-size: cover;
    /*  */ }
  #listifyItem_stacks_in_68540.list-item .list-item-inner .list-item-icon i {
    color: rgba(155, 88, 235, 1.00);
    font-size: 40px;
    vertical-align: middle;
    /*  */
    /*  */
    opacity: 0;
    visibility: hidden;
    /*  */
    /*  */ }
  #listifyItem_stacks_in_68540.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Droid Sans";
    /*  */ }
  #listifyItem_stacks_in_68540.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_68540.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_68540.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_68540.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_68556.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_68556.list-item {
  margin-bottom: 20px; }

#listifyItem_stacks_in_68556.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_68556.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_68556.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 8px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_68556.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 0px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 20px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    align-self: flex-start;
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    background: url(../files/list_icon_bg_image_choice-68556.png) no-repeat center center;
    background-size: cover;
    /*  */ }
  #listifyItem_stacks_in_68556.list-item .list-item-inner .list-item-icon i {
    color: rgba(155, 88, 235, 1.00);
    font-size: 40px;
    vertical-align: middle;
    /*  */
    /*  */
    opacity: 0;
    visibility: hidden;
    /*  */
    /*  */ }
  #listifyItem_stacks_in_68556.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Droid Sans";
    /*  */ }
  #listifyItem_stacks_in_68556.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_68556.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_68556.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_68556.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_69852.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_69852.list-item {
  margin-bottom: 20px; }

#listifyItem_stacks_in_69852.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_69852.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_69852.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 8px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_69852.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 0px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 20px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    align-self: flex-start;
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    background: url(../files/list_icon_bg_image_choice-69852.png) no-repeat center center;
    background-size: cover;
    /*  */ }
  #listifyItem_stacks_in_69852.list-item .list-item-inner .list-item-icon i {
    color: rgba(155, 88, 235, 1.00);
    font-size: 40px;
    vertical-align: middle;
    /*  */
    /*  */
    opacity: 0;
    visibility: hidden;
    /*  */
    /*  */ }
  #listifyItem_stacks_in_69852.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Droid Sans";
    /*  */ }
  #listifyItem_stacks_in_69852.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_69852.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_69852.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_69852.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_69856.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_69856.list-item {
  margin-bottom: 20px; }

#listifyItem_stacks_in_69856.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_69856.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_69856.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_69856.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 0px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 20px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    align-self: flex-start;
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    background: url(../files/list_icon_bg_image_choice-69856.png) no-repeat center center;
    background-size: cover;
    /*  */ }
  #listifyItem_stacks_in_69856.list-item .list-item-inner .list-item-icon i {
    color: rgba(155, 88, 235, 1.00);
    font-size: 40px;
    vertical-align: middle;
    /*  */
    /*  */
    opacity: 0;
    visibility: hidden;
    /*  */
    /*  */ }
  #listifyItem_stacks_in_69856.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Droid Sans";
    /*  */ }
  #listifyItem_stacks_in_69856.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_69856.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_69856.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_69856.hide-d {
    display: none; } }

/*  */
#stacks_in_68585 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_68585 .jwresp_col{overflow:hidden;margin:0;width:50%; float:left;}#stacks_in_68585 #jwresp_col2_stacks_in_68585{ float:right; width:50%}@media screen and (max-width:500px){#stacks_in_68585 #jwresp_col1_stacks_in_68585,#stacks_in_68585 #jwresp_col2_stacks_in_68585{width:100%;float:none;display:block}#stacks_in_68585 #jwresp_col1_stacks_in_68585{margin-bottom:15px}}

#stacks_in_68585 {
	margin: 15px 0px 0px 0px;
}
/*
1.3.0.2
- add ability to use manually imported icon font (item stack)
- updated woff2 file, old file was causing odd display bugs
*/
@charset "UTF-8";
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(listify-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(listify-files/MaterialIcons-2021.woff2) format('woff2'),
    url(listify-files/MaterialIcons-Regular.woff) format('woff'),
    url(listify-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("listify-files/ionicons.eot?v=2.0.1");src:url("listify-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("listify-files/ionicons.ttf?v=2.0.1") format("truetype"),url("listify-files/ionicons.woff?v=2.0.1") format("woff"),url("listify-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}

#listify_stacks_in_68586 {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
  /**
 * Remove default margin. */
  /* HTML5 display definitions
 * ========================================================================== */
  /**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
  /**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
  /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices. */
  /**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
  /* Links
 * ========================================================================== */
  /**
 * Remove the gray background color from active links in IE 10. */
  /**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
  /* Text-level semantics
 * ========================================================================== */
  /**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
  /**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in Safari and Chrome. */
  /**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in IE 8/9. */
  /**
 * Address inconsistent and variable font size in all browsers. */
  /**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  /* Embedded content
 * ========================================================================== */
  /**
 * Remove border when inside `a` element in IE 8/9/10. */
  /**
 * Correct overflow not hidden in IE 9/10/11. */
  /* Grouping content
 * ========================================================================== */
  /**
 * Address margin not present in IE 8/9 and Safari. */
  /**
 * Address differences between Firefox and other browsers. */
  /**
 * Contain overflow in all browsers. */
  /**
 * Address odd `em`-unit font size rendering in all browsers. */
  /* Forms
 * ========================================================================== */
  /**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
  /**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
  /**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
  /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox. */
  /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector */
  /**
 * Re-set default cursor for disabled elements. */
  /**
 * Remove inner padding and border in Firefox 4+. */
  /**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet. */
  /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
  /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
  /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */
  /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
  /**
 * Define consistent border, margin, and padding. */
  /**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. */
  /**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
  /**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
  /* Tables
 * ========================================================================== */
  /**
 * Remove most spacing between table cells. */
  /**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`. */
  /**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox. */
  /**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll. */
  /* .w-lightbox-content */
  /*
 * 1. Remove default margin set by user-agent on the <figure> element. */
  /**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling. */
  /**
 * 1. Reset if style is set by user on "All Images" */
  /*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) */
  /**
 * 1. All IE versions add extra space at the bottom without this. */
  /*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior. */
  /*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track. */
  /*
 * Utility classes */ }
  #listify_stacks_in_68586 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_68586 body {
    margin: 0; }
  #listify_stacks_in_68586 article, #listify_stacks_in_68586 aside, #listify_stacks_in_68586 details, #listify_stacks_in_68586 figcaption, #listify_stacks_in_68586 figure, #listify_stacks_in_68586 footer, #listify_stacks_in_68586 header, #listify_stacks_in_68586 hgroup, #listify_stacks_in_68586 main, #listify_stacks_in_68586 menu, #listify_stacks_in_68586 nav, #listify_stacks_in_68586 section, #listify_stacks_in_68586 summary {
    display: block; }
  #listify_stacks_in_68586 audio, #listify_stacks_in_68586 canvas, #listify_stacks_in_68586 progress, #listify_stacks_in_68586 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_68586 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_68586 [hidden], #listify_stacks_in_68586 template {
    display: none; }
  #listify_stacks_in_68586 a {
    background-color: transparent; }
    #listify_stacks_in_68586 a:active, #listify_stacks_in_68586 a:hover {
      outline: 0; }
  #listify_stacks_in_68586 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_68586 b, #listify_stacks_in_68586 strong {
    font-weight: bold; }
  #listify_stacks_in_68586 dfn {
    font-style: italic; }
  #listify_stacks_in_68586 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_68586 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_68586 small {
    font-size: 80%; }
  #listify_stacks_in_68586 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_68586 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_68586 sub {
    bottom: -0.25em; }
  #listify_stacks_in_68586 img {
    border: 0; }
  #listify_stacks_in_68586 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_68586 figure {
    margin: 1em 40px; }
  #listify_stacks_in_68586 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_68586 pre {
    overflow: auto; }
  #listify_stacks_in_68586 code, #listify_stacks_in_68586 kbd, #listify_stacks_in_68586 pre, #listify_stacks_in_68586 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_68586 button, #listify_stacks_in_68586 input, #listify_stacks_in_68586 optgroup, #listify_stacks_in_68586 select, #listify_stacks_in_68586 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_68586 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_68586 select {
    text-transform: none; }
  #listify_stacks_in_68586 button, #listify_stacks_in_68586 html input[type="button"], #listify_stacks_in_68586 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_68586 button[disabled], #listify_stacks_in_68586 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_68586 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_68586 input {
    line-height: normal; }
    #listify_stacks_in_68586 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_68586 input[type="checkbox"], #listify_stacks_in_68586 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_68586 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_68586 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_68586 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_68586 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_68586 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_68586 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_68586 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_68586 textarea {
    overflow: auto; }
  #listify_stacks_in_68586 optgroup {
    font-weight: bold; }
  #listify_stacks_in_68586 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_68586 td, #listify_stacks_in_68586 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_68586 {
    font-family: 'webflow-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
    font-weight: normal;
    font-style: normal; } }
  #listify_stacks_in_68586 [class^="w-icon-"], #listify_stacks_in_68586 [class*=" w-icon-"] {
    font-family: 'webflow-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #listify_stacks_in_68586 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_68586 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_68586 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_68586 .w-icon-arrow-down:before, #listify_stacks_in_68586 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_68586 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_68586 html {
    height: 100%; }
  #listify_stacks_in_68586 body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333; }
  #listify_stacks_in_68586 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_68586 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_68586 .w-block {
    display: block; }
  #listify_stacks_in_68586 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_68586 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_68586 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_68586 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_68586 .w-hidden {
    display: none; }
  #listify_stacks_in_68586 .w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0; }
  #listify_stacks_in_68586 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_68586 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_68586 .w-webflow-badge {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    border: 0 none transparent;
    border-radius: 0;
    background: none;
    background-image: none;
    background-position: 0% 0%;
    background-size: auto auto;
    background-repeat: repeat;
    background-origin: padding-box;
    background-clip: border-box;
    background-attachment: scroll;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1.0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    list-style-type: disc;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #AAADB0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 6px !important;
    font-size: 12px !important;
    opacity: 1.0 !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); }
    #listify_stacks_in_68586 .w-webflow-badge * {
      position: static;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      z-index: auto;
      display: block;
      visibility: visible;
      overflow: visible;
      overflow-x: visible;
      overflow-y: visible;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: auto;
      height: auto;
      max-height: none;
      max-width: none;
      min-height: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      float: none;
      clear: none;
      border: 0 none transparent;
      border-radius: 0;
      background: none;
      background-image: none;
      background-position: 0% 0%;
      background-size: auto auto;
      background-repeat: repeat;
      background-origin: padding-box;
      background-clip: border-box;
      background-attachment: scroll;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      opacity: 1.0;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: none;
      transition: none;
      direction: ltr;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-style: inherit;
      font-variant: inherit;
      text-align: inherit;
      letter-spacing: inherit;
      text-decoration: inherit;
      text-indent: 0;
      text-transform: inherit;
      list-style-type: disc;
      text-shadow: none;
      font-smoothing: auto;
      vertical-align: baseline;
      cursor: inherit;
      white-space: inherit;
      word-break: normal;
      word-spacing: normal;
      word-wrap: normal; }
    #listify_stacks_in_68586 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_68586 h1, #listify_stacks_in_68586 h2, #listify_stacks_in_68586 h3, #listify_stacks_in_68586 h4, #listify_stacks_in_68586 h5, #listify_stacks_in_68586 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_68586 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_68586 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_68586 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_68586 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_68586 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_68586 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_68586 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_68586 a:focus {
    outline: 0; }
  #listify_stacks_in_68586 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_68586 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_68586 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_68586 ul, #listify_stacks_in_68586 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_68586 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_68586 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_68586 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_68586 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_68586 .w-video iframe, #listify_stacks_in_68586 .w-video object, #listify_stacks_in_68586 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_68586 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_68586 button, #listify_stacks_in_68586 html input[type="button"], #listify_stacks_in_68586 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_68586 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_68586 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_68586 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_68586 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_68586 .w-input, #listify_stacks_in_68586 .w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc; }
  #listify_stacks_in_68586 .w-input:-moz-placeholder, #listify_stacks_in_68586 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_68586 .w-input::-moz-placeholder, #listify_stacks_in_68586 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_68586 .w-input:-ms-input-placeholder, #listify_stacks_in_68586 .w-select:-ms-input-placeholder, #listify_stacks_in_68586 .w-input::-webkit-input-placeholder, #listify_stacks_in_68586 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_68586 .w-input:focus, #listify_stacks_in_68586 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_68586 .w-input[disabled], #listify_stacks_in_68586 .w-select[disabled], #listify_stacks_in_68586 .w-input[readonly], #listify_stacks_in_68586 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_68586 fieldset[disabled] .w-input, #listify_stacks_in_68586 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_68586 textarea.w-input, #listify_stacks_in_68586 textarea.w-select {
    height: auto; }
  #listify_stacks_in_68586 .w-select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f3f3f3));
    background-image: linear-gradient(white 0%, #f3f3f3 100%); }
    #listify_stacks_in_68586 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_68586 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_68586 .w-checkbox, #listify_stacks_in_68586 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_68586 .w-checkbox:before, #listify_stacks_in_68586 .w-radio:before, #listify_stacks_in_68586 .w-checkbox:after, #listify_stacks_in_68586 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_68586 .w-checkbox:after, #listify_stacks_in_68586 .w-radio:after {
    clear: both; }
  #listify_stacks_in_68586 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_68586 .w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px;
    margin-top: 3px; }
  #listify_stacks_in_68586 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_68586 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_68586 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_68586 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_68586 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_68586 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_68586 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_68586 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_68586 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_68586 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_68586 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_68586 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_68586 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_68586 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_68586 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_68586 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_68586 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_68586 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_68586 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_68586 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_68586 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_68586 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_68586 .w-container {
      max-width: 728px; }
    #listify_stacks_in_68586 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_68586 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_68586 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_68586 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_68586 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_68586 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_68586 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_68586 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_68586 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_68586 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_68586 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_68586 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_68586 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_68586 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_68586 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_68586 .w-hidden-main, #listify_stacks_in_68586 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_68586 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_68586 .w-row, #listify_stacks_in_68586 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_68586 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_68586 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_68586 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_68586 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_68586 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_68586 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_68586 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_68586 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_68586 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_68586 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_68586 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_68586 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_68586 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_68586 .w-container {
      max-width: none; }
    #listify_stacks_in_68586 .w-hidden-main, #listify_stacks_in_68586 .w-hidden-medium, #listify_stacks_in_68586 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_68586 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_68586 .w-col {
      width: 100%; }
    #listify_stacks_in_68586 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_68586 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_68586 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_68586 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_68586 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_68586 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_68586 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_68586 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_68586 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_68586 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_68586 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_68586 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_68586 .w-widget {
    position: relative; }
  #listify_stacks_in_68586 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_68586 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_68586 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_68586 .w-widget-map .gm-style-iw {
      width: 90% !important;
      height: auto !important;
      top: 7px !important;
      left: 6% !important;
      display: inline;
      text-align: center;
      overflow: hidden; }
      #listify_stacks_in_68586 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_68586 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_68586 .w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px; }
    #listify_stacks_in_68586 .w-widget-twitter-count-shim * {
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    #listify_stacks_in_68586 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
      position: relative;
      font-size: 15px;
      line-height: 12px;
      text-align: center;
      color: #999;
      font-family: serif; }
    #listify_stacks_in_68586 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_68586 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_68586 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_68586 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_68586 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_68586 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_68586 .w-widget-twitter-count-shim:not(.w--vertical):after {
        top: 50%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_68586 .w-widget-twitter-count-shim:not(.w--vertical):before {
        border-color: rgba(117, 134, 150, 0);
        border-right-color: #5d6c7b;
        border-width: 4px;
        margin-left: -9px;
        margin-top: -4px; }
      #listify_stacks_in_68586 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_68586 .w-widget-twitter-count-shim:not(.w--vertical):after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: white;
        border-width: 4px;
        margin-left: -8px;
        margin-top: -4px; }
      #listify_stacks_in_68586 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_68586 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_68586 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_68586 .w-widget-twitter-count-shim.w--vertical:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_68586 .w-widget-twitter-count-shim.w--vertical:before {
        border-color: rgba(117, 134, 150, 0);
        border-top-color: #5d6c7b;
        border-width: 5px;
        margin-left: -5px; }
      #listify_stacks_in_68586 .w-widget-twitter-count-shim.w--vertical:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: white;
        border-width: 4px;
        margin-left: -4px; }
      #listify_stacks_in_68586 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_68586 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_68586 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_68586 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_68586 .w-background-video > video {
      background-size: cover;
      background-position: 50% 50%;
      position: absolute;
      right: -100%;
      bottom: -100%;
      top: -100%;
      left: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%;
      z-index: -100; }
  #listify_stacks_in_68586 .w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
  #listify_stacks_in_68586 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_68586 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_68586 .w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
    #listify_stacks_in_68586 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_68586 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_68586 .w-slider-nav.w-shadow > div {
      -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
      box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); }
  #listify_stacks_in_68586 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_68586 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_68586 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_68586 .w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    -webkit-transition: background-color 100ms, color 100ms;
    transition: background-color 100ms, color 100ms; }
    #listify_stacks_in_68586 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_68586 .w-slider-arrow-left, #listify_stacks_in_68586 .w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #listify_stacks_in_68586 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_68586 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_68586 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_68586 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_68586 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_68586 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_68586 .w-icon-slider-left, #listify_stacks_in_68586 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_68586 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_68586 .w-dropdown-btn, #listify_stacks_in_68586 .w-dropdown-toggle, #listify_stacks_in_68586 .w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; }
  #listify_stacks_in_68586 .w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px; }
    #listify_stacks_in_68586 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_68586 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_68586 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_68586 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_68586 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_68586 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_68586 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_68586 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_68586 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_68586 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_68586 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_68586 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_68586 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_68586 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_68586 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_68586 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_68586 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_68586 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_68586 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_68586 .w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_68586 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_68586 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_68586 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_68586 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_68586 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_68586 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_68586 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_68586 .w-lightbox-frame, #listify_stacks_in_68586 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_68586 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_68586 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_68586 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_68586 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_68586 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_68586 .w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  #listify_stacks_in_68586 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_68586 .w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
  #listify_stacks_in_68586 .w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); }
  #listify_stacks_in_68586 .w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); }
  #listify_stacks_in_68586 .w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px; }
  #listify_stacks_in_68586 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_68586 .w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */ }
  #listify_stacks_in_68586 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_68586 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_68586 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_68586 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_68586 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_68586 .w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear; }
    #listify_stacks_in_68586 .w-lightbox-spinner:after {
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      bottom: -4px;
      left: -4px;
      border: 3px solid transparent;
      border-bottom-color: #fff;
      border-radius: 50%; }
  #listify_stacks_in_68586 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_68586 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_68586 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_68586 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_68586 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_68586 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_68586 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_68586 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_68586 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_68586 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_68586 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_68586 .w-lightbox-left, #listify_stacks_in_68586 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_68586 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_68586 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_68586 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_68586 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_68586 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_68586 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_68586 .w-richtext ol, #listify_stacks_in_68586 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_68586 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_68586 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_68586 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_68586 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_68586 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_68586 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_68586 .w-richtext figure[data-rt-type="video"] > div:before {
      content: '';
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    #listify_stacks_in_68586 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_68586 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_68586 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_68586 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_68586 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_68586 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_68586 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_68586 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_68586 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_68586 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_68586 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_68586 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_68586 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_68586 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_68586 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_68586 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_68586 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_68586 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_68586 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_68586 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_68586 .w-richtext figure.w-richtext-align-fullwidth {
      width: 100%;
      max-width: 100%;
      text-align: center;
      clear: both;
      display: block;
      margin-right: auto;
      margin-left: auto; }
      #listify_stacks_in_68586 .w-richtext figure.w-richtext-align-fullwidth > div {
        display: inline-block;
        /* padding-bottom is used for aspect ratios in video figures
           *  we want the div to inherit that so hover/selection borders in the designer-canvas
           *  fit right */
        padding-bottom: inherit; }
      #listify_stacks_in_68586 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_68586 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_68586 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_68586 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_68586 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_68586 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_68586 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_68586 .w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto; }
    #listify_stacks_in_68586 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_68586 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_68586 .w--nav-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px; }
  #listify_stacks_in_68586 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_68586 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_68586 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_68586 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_68586 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_68586 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_68586 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_68586 .w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #listify_stacks_in_68586 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_68586 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_68586 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_68586 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_68586 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_68586 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_68586 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_68586 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_68586 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_68586 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_68586 .w-tabs {
    position: relative; }
    #listify_stacks_in_68586 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_68586 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_68586 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_68586 .w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd; }
    #listify_stacks_in_68586 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_68586 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_68586 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_68586 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_68586 .w-tab-link {
      display: block; } }
  #listify_stacks_in_68586 .w-ix-emptyfix:after {
    content: ""; }

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

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  #listify_stacks_in_68586 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_68586 .w-dyn-bind-empty, #listify_stacks_in_68586 .w-condition-invisible {
    display: none !important; }

.list-container {
  margin-top: 0px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex; }

.section {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 0px;
  position: absolute;
  padding-bottom: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox; }
  .section.main {
    display: none; }

.container {
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center; }

#listify_stacks_in_68586 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_68586 .list {
    overflow: hidden;
    margin: 0px 0px 10px 0px;
    padding: 0px 10px 10px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_68586 .list-item {
    list-style-type: none;
    margin-bottom: 0px; }
    #listify_stacks_in_68586 .list-item ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68586 .list-item ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68586 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68586 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68586 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68586 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68586 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68586 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68586 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68586 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68586 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_68586 .list-item-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 0px auto 0px auto;
    padding: 0px 8px 8px 8px;
    border-radius: 5px;
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_68586 .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_68586 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_68586 .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_68586 .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -ms-grid-row-align: center;
        align-self: center;
    word-wrap: break-word;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 16px;
    line-height: 22px;
    font-family: inherit;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Raleway";
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_68586 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_68586 .list-item-inner {
  margin: 0px 0px 10px 0px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_68586.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_68586.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_68586.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_68595.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_68595.list-item {
  margin-bottom: 20px; }

#listifyItem_stacks_in_68595.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_68595.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_68595.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 8px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_68595.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 0px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 20px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    align-self: flex-start;
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    background: url(../files/list_icon_bg_image_choice-68595.png) no-repeat center center;
    background-size: cover;
    /*  */ }
  #listifyItem_stacks_in_68595.list-item .list-item-inner .list-item-icon i {
    color: rgba(155, 88, 235, 1.00);
    font-size: 40px;
    vertical-align: middle;
    /*  */
    /*  */
    opacity: 0;
    visibility: hidden;
    /*  */
    /*  */ }
  #listifyItem_stacks_in_68595.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Droid Sans";
    /*  */ }
  #listifyItem_stacks_in_68595.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_68595.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_68595.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_68595.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_68597.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_68597.list-item {
  margin-bottom: 20px; }

#listifyItem_stacks_in_68597.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_68597.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_68597.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 8px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_68597.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 0px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 20px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    align-self: flex-start;
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    background: url(../files/list_icon_bg_image_choice-68597.png) no-repeat center center;
    background-size: cover;
    /*  */ }
  #listifyItem_stacks_in_68597.list-item .list-item-inner .list-item-icon i {
    color: rgba(155, 88, 235, 1.00);
    font-size: 40px;
    vertical-align: middle;
    /*  */
    /*  */
    opacity: 0;
    visibility: hidden;
    /*  */
    /*  */ }
  #listifyItem_stacks_in_68597.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Droid Sans";
    /*  */ }
  #listifyItem_stacks_in_68597.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_68597.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_68597.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_68597.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_68599.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_68599.list-item {
  margin-bottom: 20px; }

#listifyItem_stacks_in_68599.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_68599.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_68599.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 8px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_68599.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 0px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 20px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    align-self: flex-start;
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    background: url(../files/list_icon_bg_image_choice-68599.png) no-repeat center center;
    background-size: cover;
    /*  */ }
  #listifyItem_stacks_in_68599.list-item .list-item-inner .list-item-icon i {
    color: rgba(155, 88, 235, 1.00);
    font-size: 40px;
    vertical-align: middle;
    /*  */
    /*  */
    opacity: 0;
    visibility: hidden;
    /*  */
    /*  */ }
  #listifyItem_stacks_in_68599.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Droid Sans";
    /*  */ }
  #listifyItem_stacks_in_68599.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_68599.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_68599.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_68599.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_68559.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_68559.list-item {
  margin-bottom: 20px; }

#listifyItem_stacks_in_68559.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_68559.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_68559.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 8px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_68559.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 0px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 20px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    align-self: flex-start;
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    background: url(../files/list_icon_bg_image_choice-68559.png) no-repeat center center;
    background-size: cover;
    /*  */ }
  #listifyItem_stacks_in_68559.list-item .list-item-inner .list-item-icon i {
    color: rgba(155, 88, 235, 1.00);
    font-size: 40px;
    vertical-align: middle;
    /*  */
    /*  */
    opacity: 0;
    visibility: hidden;
    /*  */
    /*  */ }
  #listifyItem_stacks_in_68559.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Droid Sans";
    /*  */ }
  #listifyItem_stacks_in_68559.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_68559.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_68559.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_68559.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_69868.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_69868.list-item {
  margin-bottom: 20px; }

#listifyItem_stacks_in_69868.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_69868.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_69868.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 8px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_69868.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 0px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 20px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    align-self: flex-start;
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    background: url(../files/list_icon_bg_image_choice-69868.png) no-repeat center center;
    background-size: cover;
    /*  */ }
  #listifyItem_stacks_in_69868.list-item .list-item-inner .list-item-icon i {
    color: rgba(155, 88, 235, 1.00);
    font-size: 40px;
    vertical-align: middle;
    /*  */
    /*  */
    opacity: 0;
    visibility: hidden;
    /*  */
    /*  */ }
  #listifyItem_stacks_in_69868.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Droid Sans";
    /*  */ }
  #listifyItem_stacks_in_69868.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_69868.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_69868.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_69868.hide-d {
    display: none; } }

/*  */
/*
1.3.0.2
- add ability to use manually imported icon font (item stack)
- updated woff2 file, old file was causing odd display bugs
*/
@charset "UTF-8";
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(listify-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(listify-files/MaterialIcons-2021.woff2) format('woff2'),
    url(listify-files/MaterialIcons-Regular.woff) format('woff'),
    url(listify-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("listify-files/ionicons.eot?v=2.0.1");src:url("listify-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("listify-files/ionicons.ttf?v=2.0.1") format("truetype"),url("listify-files/ionicons.woff?v=2.0.1") format("woff"),url("listify-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}

#listify_stacks_in_68603 {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
  /**
 * Remove default margin. */
  /* HTML5 display definitions
 * ========================================================================== */
  /**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
  /**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
  /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices. */
  /**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
  /* Links
 * ========================================================================== */
  /**
 * Remove the gray background color from active links in IE 10. */
  /**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
  /* Text-level semantics
 * ========================================================================== */
  /**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
  /**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in Safari and Chrome. */
  /**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in IE 8/9. */
  /**
 * Address inconsistent and variable font size in all browsers. */
  /**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  /* Embedded content
 * ========================================================================== */
  /**
 * Remove border when inside `a` element in IE 8/9/10. */
  /**
 * Correct overflow not hidden in IE 9/10/11. */
  /* Grouping content
 * ========================================================================== */
  /**
 * Address margin not present in IE 8/9 and Safari. */
  /**
 * Address differences between Firefox and other browsers. */
  /**
 * Contain overflow in all browsers. */
  /**
 * Address odd `em`-unit font size rendering in all browsers. */
  /* Forms
 * ========================================================================== */
  /**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
  /**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
  /**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
  /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox. */
  /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector */
  /**
 * Re-set default cursor for disabled elements. */
  /**
 * Remove inner padding and border in Firefox 4+. */
  /**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet. */
  /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
  /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
  /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */
  /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
  /**
 * Define consistent border, margin, and padding. */
  /**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. */
  /**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
  /**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
  /* Tables
 * ========================================================================== */
  /**
 * Remove most spacing between table cells. */
  /**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`. */
  /**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox. */
  /**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll. */
  /* .w-lightbox-content */
  /*
 * 1. Remove default margin set by user-agent on the <figure> element. */
  /**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling. */
  /**
 * 1. Reset if style is set by user on "All Images" */
  /*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) */
  /**
 * 1. All IE versions add extra space at the bottom without this. */
  /*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior. */
  /*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track. */
  /*
 * Utility classes */ }
  #listify_stacks_in_68603 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_68603 body {
    margin: 0; }
  #listify_stacks_in_68603 article, #listify_stacks_in_68603 aside, #listify_stacks_in_68603 details, #listify_stacks_in_68603 figcaption, #listify_stacks_in_68603 figure, #listify_stacks_in_68603 footer, #listify_stacks_in_68603 header, #listify_stacks_in_68603 hgroup, #listify_stacks_in_68603 main, #listify_stacks_in_68603 menu, #listify_stacks_in_68603 nav, #listify_stacks_in_68603 section, #listify_stacks_in_68603 summary {
    display: block; }
  #listify_stacks_in_68603 audio, #listify_stacks_in_68603 canvas, #listify_stacks_in_68603 progress, #listify_stacks_in_68603 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_68603 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_68603 [hidden], #listify_stacks_in_68603 template {
    display: none; }
  #listify_stacks_in_68603 a {
    background-color: transparent; }
    #listify_stacks_in_68603 a:active, #listify_stacks_in_68603 a:hover {
      outline: 0; }
  #listify_stacks_in_68603 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_68603 b, #listify_stacks_in_68603 strong {
    font-weight: bold; }
  #listify_stacks_in_68603 dfn {
    font-style: italic; }
  #listify_stacks_in_68603 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_68603 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_68603 small {
    font-size: 80%; }
  #listify_stacks_in_68603 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_68603 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_68603 sub {
    bottom: -0.25em; }
  #listify_stacks_in_68603 img {
    border: 0; }
  #listify_stacks_in_68603 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_68603 figure {
    margin: 1em 40px; }
  #listify_stacks_in_68603 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_68603 pre {
    overflow: auto; }
  #listify_stacks_in_68603 code, #listify_stacks_in_68603 kbd, #listify_stacks_in_68603 pre, #listify_stacks_in_68603 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_68603 button, #listify_stacks_in_68603 input, #listify_stacks_in_68603 optgroup, #listify_stacks_in_68603 select, #listify_stacks_in_68603 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_68603 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_68603 select {
    text-transform: none; }
  #listify_stacks_in_68603 button, #listify_stacks_in_68603 html input[type="button"], #listify_stacks_in_68603 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_68603 button[disabled], #listify_stacks_in_68603 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_68603 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_68603 input {
    line-height: normal; }
    #listify_stacks_in_68603 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_68603 input[type="checkbox"], #listify_stacks_in_68603 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_68603 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_68603 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_68603 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_68603 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_68603 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_68603 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_68603 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_68603 textarea {
    overflow: auto; }
  #listify_stacks_in_68603 optgroup {
    font-weight: bold; }
  #listify_stacks_in_68603 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_68603 td, #listify_stacks_in_68603 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_68603 {
    font-family: 'webflow-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
    font-weight: normal;
    font-style: normal; } }
  #listify_stacks_in_68603 [class^="w-icon-"], #listify_stacks_in_68603 [class*=" w-icon-"] {
    font-family: 'webflow-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #listify_stacks_in_68603 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_68603 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_68603 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_68603 .w-icon-arrow-down:before, #listify_stacks_in_68603 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_68603 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_68603 html {
    height: 100%; }
  #listify_stacks_in_68603 body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333; }
  #listify_stacks_in_68603 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_68603 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_68603 .w-block {
    display: block; }
  #listify_stacks_in_68603 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_68603 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_68603 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_68603 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_68603 .w-hidden {
    display: none; }
  #listify_stacks_in_68603 .w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0; }
  #listify_stacks_in_68603 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_68603 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_68603 .w-webflow-badge {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    border: 0 none transparent;
    border-radius: 0;
    background: none;
    background-image: none;
    background-position: 0% 0%;
    background-size: auto auto;
    background-repeat: repeat;
    background-origin: padding-box;
    background-clip: border-box;
    background-attachment: scroll;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1.0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    list-style-type: disc;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #AAADB0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 6px !important;
    font-size: 12px !important;
    opacity: 1.0 !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); }
    #listify_stacks_in_68603 .w-webflow-badge * {
      position: static;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      z-index: auto;
      display: block;
      visibility: visible;
      overflow: visible;
      overflow-x: visible;
      overflow-y: visible;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: auto;
      height: auto;
      max-height: none;
      max-width: none;
      min-height: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      float: none;
      clear: none;
      border: 0 none transparent;
      border-radius: 0;
      background: none;
      background-image: none;
      background-position: 0% 0%;
      background-size: auto auto;
      background-repeat: repeat;
      background-origin: padding-box;
      background-clip: border-box;
      background-attachment: scroll;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      opacity: 1.0;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: none;
      transition: none;
      direction: ltr;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-style: inherit;
      font-variant: inherit;
      text-align: inherit;
      letter-spacing: inherit;
      text-decoration: inherit;
      text-indent: 0;
      text-transform: inherit;
      list-style-type: disc;
      text-shadow: none;
      font-smoothing: auto;
      vertical-align: baseline;
      cursor: inherit;
      white-space: inherit;
      word-break: normal;
      word-spacing: normal;
      word-wrap: normal; }
    #listify_stacks_in_68603 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_68603 h1, #listify_stacks_in_68603 h2, #listify_stacks_in_68603 h3, #listify_stacks_in_68603 h4, #listify_stacks_in_68603 h5, #listify_stacks_in_68603 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_68603 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_68603 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_68603 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_68603 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_68603 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_68603 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_68603 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_68603 a:focus {
    outline: 0; }
  #listify_stacks_in_68603 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_68603 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_68603 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_68603 ul, #listify_stacks_in_68603 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_68603 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_68603 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_68603 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_68603 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_68603 .w-video iframe, #listify_stacks_in_68603 .w-video object, #listify_stacks_in_68603 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_68603 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_68603 button, #listify_stacks_in_68603 html input[type="button"], #listify_stacks_in_68603 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_68603 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_68603 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_68603 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_68603 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_68603 .w-input, #listify_stacks_in_68603 .w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc; }
  #listify_stacks_in_68603 .w-input:-moz-placeholder, #listify_stacks_in_68603 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_68603 .w-input::-moz-placeholder, #listify_stacks_in_68603 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_68603 .w-input:-ms-input-placeholder, #listify_stacks_in_68603 .w-select:-ms-input-placeholder, #listify_stacks_in_68603 .w-input::-webkit-input-placeholder, #listify_stacks_in_68603 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_68603 .w-input:focus, #listify_stacks_in_68603 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_68603 .w-input[disabled], #listify_stacks_in_68603 .w-select[disabled], #listify_stacks_in_68603 .w-input[readonly], #listify_stacks_in_68603 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_68603 fieldset[disabled] .w-input, #listify_stacks_in_68603 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_68603 textarea.w-input, #listify_stacks_in_68603 textarea.w-select {
    height: auto; }
  #listify_stacks_in_68603 .w-select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f3f3f3));
    background-image: linear-gradient(white 0%, #f3f3f3 100%); }
    #listify_stacks_in_68603 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_68603 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_68603 .w-checkbox, #listify_stacks_in_68603 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_68603 .w-checkbox:before, #listify_stacks_in_68603 .w-radio:before, #listify_stacks_in_68603 .w-checkbox:after, #listify_stacks_in_68603 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_68603 .w-checkbox:after, #listify_stacks_in_68603 .w-radio:after {
    clear: both; }
  #listify_stacks_in_68603 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_68603 .w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px;
    margin-top: 3px; }
  #listify_stacks_in_68603 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_68603 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_68603 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_68603 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_68603 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_68603 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_68603 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_68603 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_68603 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_68603 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_68603 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_68603 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_68603 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_68603 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_68603 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_68603 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_68603 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_68603 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_68603 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_68603 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_68603 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_68603 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_68603 .w-container {
      max-width: 728px; }
    #listify_stacks_in_68603 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_68603 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_68603 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_68603 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_68603 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_68603 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_68603 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_68603 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_68603 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_68603 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_68603 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_68603 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_68603 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_68603 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_68603 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_68603 .w-hidden-main, #listify_stacks_in_68603 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_68603 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_68603 .w-row, #listify_stacks_in_68603 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_68603 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_68603 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_68603 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_68603 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_68603 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_68603 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_68603 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_68603 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_68603 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_68603 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_68603 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_68603 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_68603 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_68603 .w-container {
      max-width: none; }
    #listify_stacks_in_68603 .w-hidden-main, #listify_stacks_in_68603 .w-hidden-medium, #listify_stacks_in_68603 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_68603 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_68603 .w-col {
      width: 100%; }
    #listify_stacks_in_68603 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_68603 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_68603 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_68603 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_68603 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_68603 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_68603 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_68603 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_68603 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_68603 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_68603 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_68603 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_68603 .w-widget {
    position: relative; }
  #listify_stacks_in_68603 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_68603 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_68603 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_68603 .w-widget-map .gm-style-iw {
      width: 90% !important;
      height: auto !important;
      top: 7px !important;
      left: 6% !important;
      display: inline;
      text-align: center;
      overflow: hidden; }
      #listify_stacks_in_68603 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_68603 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_68603 .w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px; }
    #listify_stacks_in_68603 .w-widget-twitter-count-shim * {
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    #listify_stacks_in_68603 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
      position: relative;
      font-size: 15px;
      line-height: 12px;
      text-align: center;
      color: #999;
      font-family: serif; }
    #listify_stacks_in_68603 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_68603 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_68603 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_68603 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_68603 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_68603 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_68603 .w-widget-twitter-count-shim:not(.w--vertical):after {
        top: 50%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_68603 .w-widget-twitter-count-shim:not(.w--vertical):before {
        border-color: rgba(117, 134, 150, 0);
        border-right-color: #5d6c7b;
        border-width: 4px;
        margin-left: -9px;
        margin-top: -4px; }
      #listify_stacks_in_68603 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_68603 .w-widget-twitter-count-shim:not(.w--vertical):after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: white;
        border-width: 4px;
        margin-left: -8px;
        margin-top: -4px; }
      #listify_stacks_in_68603 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_68603 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_68603 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_68603 .w-widget-twitter-count-shim.w--vertical:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_68603 .w-widget-twitter-count-shim.w--vertical:before {
        border-color: rgba(117, 134, 150, 0);
        border-top-color: #5d6c7b;
        border-width: 5px;
        margin-left: -5px; }
      #listify_stacks_in_68603 .w-widget-twitter-count-shim.w--vertical:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: white;
        border-width: 4px;
        margin-left: -4px; }
      #listify_stacks_in_68603 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_68603 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_68603 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_68603 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_68603 .w-background-video > video {
      background-size: cover;
      background-position: 50% 50%;
      position: absolute;
      right: -100%;
      bottom: -100%;
      top: -100%;
      left: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%;
      z-index: -100; }
  #listify_stacks_in_68603 .w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
  #listify_stacks_in_68603 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_68603 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_68603 .w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
    #listify_stacks_in_68603 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_68603 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_68603 .w-slider-nav.w-shadow > div {
      -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
      box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); }
  #listify_stacks_in_68603 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_68603 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_68603 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_68603 .w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    -webkit-transition: background-color 100ms, color 100ms;
    transition: background-color 100ms, color 100ms; }
    #listify_stacks_in_68603 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_68603 .w-slider-arrow-left, #listify_stacks_in_68603 .w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #listify_stacks_in_68603 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_68603 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_68603 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_68603 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_68603 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_68603 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_68603 .w-icon-slider-left, #listify_stacks_in_68603 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_68603 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_68603 .w-dropdown-btn, #listify_stacks_in_68603 .w-dropdown-toggle, #listify_stacks_in_68603 .w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; }
  #listify_stacks_in_68603 .w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px; }
    #listify_stacks_in_68603 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_68603 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_68603 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_68603 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_68603 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_68603 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_68603 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_68603 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_68603 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_68603 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_68603 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_68603 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_68603 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_68603 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_68603 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_68603 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_68603 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_68603 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_68603 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_68603 .w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_68603 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_68603 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_68603 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_68603 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_68603 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_68603 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_68603 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_68603 .w-lightbox-frame, #listify_stacks_in_68603 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_68603 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_68603 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_68603 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_68603 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_68603 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_68603 .w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  #listify_stacks_in_68603 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_68603 .w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
  #listify_stacks_in_68603 .w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); }
  #listify_stacks_in_68603 .w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); }
  #listify_stacks_in_68603 .w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px; }
  #listify_stacks_in_68603 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_68603 .w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */ }
  #listify_stacks_in_68603 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_68603 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_68603 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_68603 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_68603 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_68603 .w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear; }
    #listify_stacks_in_68603 .w-lightbox-spinner:after {
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      bottom: -4px;
      left: -4px;
      border: 3px solid transparent;
      border-bottom-color: #fff;
      border-radius: 50%; }
  #listify_stacks_in_68603 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_68603 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_68603 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_68603 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_68603 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_68603 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_68603 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_68603 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_68603 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_68603 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_68603 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_68603 .w-lightbox-left, #listify_stacks_in_68603 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_68603 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_68603 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_68603 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_68603 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_68603 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_68603 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_68603 .w-richtext ol, #listify_stacks_in_68603 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_68603 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_68603 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_68603 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_68603 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_68603 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_68603 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_68603 .w-richtext figure[data-rt-type="video"] > div:before {
      content: '';
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    #listify_stacks_in_68603 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_68603 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_68603 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_68603 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_68603 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_68603 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_68603 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_68603 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_68603 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_68603 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_68603 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_68603 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_68603 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_68603 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_68603 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_68603 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_68603 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_68603 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_68603 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_68603 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_68603 .w-richtext figure.w-richtext-align-fullwidth {
      width: 100%;
      max-width: 100%;
      text-align: center;
      clear: both;
      display: block;
      margin-right: auto;
      margin-left: auto; }
      #listify_stacks_in_68603 .w-richtext figure.w-richtext-align-fullwidth > div {
        display: inline-block;
        /* padding-bottom is used for aspect ratios in video figures
           *  we want the div to inherit that so hover/selection borders in the designer-canvas
           *  fit right */
        padding-bottom: inherit; }
      #listify_stacks_in_68603 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_68603 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_68603 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_68603 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_68603 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_68603 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_68603 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_68603 .w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto; }
    #listify_stacks_in_68603 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_68603 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_68603 .w--nav-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px; }
  #listify_stacks_in_68603 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_68603 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_68603 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_68603 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_68603 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_68603 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_68603 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_68603 .w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #listify_stacks_in_68603 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_68603 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_68603 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_68603 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_68603 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_68603 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_68603 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_68603 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_68603 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_68603 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_68603 .w-tabs {
    position: relative; }
    #listify_stacks_in_68603 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_68603 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_68603 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_68603 .w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd; }
    #listify_stacks_in_68603 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_68603 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_68603 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_68603 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_68603 .w-tab-link {
      display: block; } }
  #listify_stacks_in_68603 .w-ix-emptyfix:after {
    content: ""; }

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

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  #listify_stacks_in_68603 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_68603 .w-dyn-bind-empty, #listify_stacks_in_68603 .w-condition-invisible {
    display: none !important; }

.list-container {
  margin-top: 0px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex; }

.section {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 0px;
  position: absolute;
  padding-bottom: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox; }
  .section.main {
    display: none; }

.container {
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center; }

#listify_stacks_in_68603 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_68603 .list {
    overflow: hidden;
    margin: 0px 0px 10px 0px;
    padding: 0px 10px 10px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_68603 .list-item {
    list-style-type: none;
    margin-bottom: 5px; }
    #listify_stacks_in_68603 .list-item ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68603 .list-item ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68603 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68603 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68603 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68603 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68603 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68603 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68603 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68603 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_68603 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_68603 .list-item-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 0px auto 0px auto;
    padding: 0px 8px 8px 8px;
    border-radius: 5px;
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_68603 .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_68603 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_68603 .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_68603 .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -ms-grid-row-align: center;
        align-self: center;
    word-wrap: break-word;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 16px;
    line-height: 22px;
    font-family: inherit;
    /*  */
    /*  */
    /*  */
    font-family: "Roboto";
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_68603 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_68603 .list-item-inner {
  margin: 0px 0px 10px 0px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_68603.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_68603.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_68603.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_68562.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_68562.list-item {
  margin-bottom: 20px; }

#listifyItem_stacks_in_68562.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_68562.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_68562.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_68562.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 0px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 20px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    align-self: flex-start;
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    background: url(../files/list_icon_bg_image_choice-68562.png) no-repeat center center;
    background-size: cover;
    /*  */ }
  #listifyItem_stacks_in_68562.list-item .list-item-inner .list-item-icon i {
    color: rgba(155, 88, 235, 1.00);
    font-size: 40px;
    vertical-align: middle;
    /*  */
    /*  */
    opacity: 0;
    visibility: hidden;
    /*  */
    /*  */ }
  #listifyItem_stacks_in_68562.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Droid Sans";
    /*  */ }
  #listifyItem_stacks_in_68562.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_68562.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_68562.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_68562.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_68612.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_68612.list-item {
  margin-bottom: 20px; }

#listifyItem_stacks_in_68612.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_68612.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_68612.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 8px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_68612.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 0px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 20px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    align-self: flex-start;
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    background: url(../files/list_icon_bg_image_choice-68612.png) no-repeat center center;
    background-size: cover;
    /*  */ }
  #listifyItem_stacks_in_68612.list-item .list-item-inner .list-item-icon i {
    color: rgba(155, 88, 235, 1.00);
    font-size: 40px;
    vertical-align: middle;
    /*  */
    /*  */
    opacity: 0;
    visibility: hidden;
    /*  */
    /*  */ }
  #listifyItem_stacks_in_68612.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Droid Sans";
    /*  */ }
  #listifyItem_stacks_in_68612.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_68612.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_68612.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_68612.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_68614.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_68614.list-item {
  margin-bottom: 20px; }

#listifyItem_stacks_in_68614.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_68614.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_68614.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 8px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_68614.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 0px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 20px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    align-self: flex-start;
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    background: url(../files/list_icon_bg_image_choice-68614.png) no-repeat center center;
    background-size: cover;
    /*  */ }
  #listifyItem_stacks_in_68614.list-item .list-item-inner .list-item-icon i {
    color: rgba(155, 88, 235, 1.00);
    font-size: 40px;
    vertical-align: middle;
    /*  */
    /*  */
    opacity: 0;
    visibility: hidden;
    /*  */
    /*  */ }
  #listifyItem_stacks_in_68614.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Droid Sans";
    /*  */ }
  #listifyItem_stacks_in_68614.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_68614.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_68614.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_68614.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_69860.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_69860.list-item {
  margin-bottom: 20px; }

#listifyItem_stacks_in_69860.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_69860.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_69860.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 8px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_69860.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 0px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 20px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    align-self: flex-start;
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    background: url(../files/list_icon_bg_image_choice-69860.png) no-repeat center center;
    background-size: cover;
    /*  */ }
  #listifyItem_stacks_in_69860.list-item .list-item-inner .list-item-icon i {
    color: rgba(155, 88, 235, 1.00);
    font-size: 40px;
    vertical-align: middle;
    /*  */
    /*  */
    opacity: 0;
    visibility: hidden;
    /*  */
    /*  */ }
  #listifyItem_stacks_in_69860.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Droid Sans";
    /*  */ }
  #listifyItem_stacks_in_69860.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_69860.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_69860.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_69860.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_69870.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_69870.list-item {
  margin-bottom: 20px; }

#listifyItem_stacks_in_69870.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_69870.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_69870.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 8px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_69870.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 0px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 20px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    align-self: flex-start;
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    background: url(../files/list_icon_bg_image_choice-69870.png) no-repeat center center;
    background-size: cover;
    /*  */ }
  #listifyItem_stacks_in_69870.list-item .list-item-inner .list-item-icon i {
    color: rgba(155, 88, 235, 1.00);
    font-size: 40px;
    vertical-align: middle;
    /*  */
    /*  */
    opacity: 0;
    visibility: hidden;
    /*  */
    /*  */ }
  #listifyItem_stacks_in_69870.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Droid Sans";
    /*  */ }
  #listifyItem_stacks_in_69870.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_69870.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_69870.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_69870.hide-d {
    display: none; } }

/*  */
#stacks_in_69803 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_69803 .jwresp_col{overflow:hidden;margin:0;width:50%; float:left;}#stacks_in_69803 #jwresp_col2_stacks_in_69803{ float:right; width:50%}@media screen and (max-width:500px){#stacks_in_69803 #jwresp_col1_stacks_in_69803,#stacks_in_69803 #jwresp_col2_stacks_in_69803{width:100%;float:none;display:block}#stacks_in_69803 #jwresp_col1_stacks_in_69803{margin-bottom:15px}}

#stacks_in_69803 {
	margin: 15px 0px 0px 0px;
}
/*
1.3.0.2
- add ability to use manually imported icon font (item stack)
- updated woff2 file, old file was causing odd display bugs
*/
@charset "UTF-8";
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(listify-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(listify-files/MaterialIcons-2021.woff2) format('woff2'),
    url(listify-files/MaterialIcons-Regular.woff) format('woff'),
    url(listify-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("listify-files/ionicons.eot?v=2.0.1");src:url("listify-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("listify-files/ionicons.ttf?v=2.0.1") format("truetype"),url("listify-files/ionicons.woff?v=2.0.1") format("woff"),url("listify-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}

#listify_stacks_in_69804 {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
  /**
 * Remove default margin. */
  /* HTML5 display definitions
 * ========================================================================== */
  /**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
  /**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
  /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices. */
  /**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
  /* Links
 * ========================================================================== */
  /**
 * Remove the gray background color from active links in IE 10. */
  /**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
  /* Text-level semantics
 * ========================================================================== */
  /**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
  /**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in Safari and Chrome. */
  /**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in IE 8/9. */
  /**
 * Address inconsistent and variable font size in all browsers. */
  /**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  /* Embedded content
 * ========================================================================== */
  /**
 * Remove border when inside `a` element in IE 8/9/10. */
  /**
 * Correct overflow not hidden in IE 9/10/11. */
  /* Grouping content
 * ========================================================================== */
  /**
 * Address margin not present in IE 8/9 and Safari. */
  /**
 * Address differences between Firefox and other browsers. */
  /**
 * Contain overflow in all browsers. */
  /**
 * Address odd `em`-unit font size rendering in all browsers. */
  /* Forms
 * ========================================================================== */
  /**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
  /**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
  /**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
  /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox. */
  /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector */
  /**
 * Re-set default cursor for disabled elements. */
  /**
 * Remove inner padding and border in Firefox 4+. */
  /**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet. */
  /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
  /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
  /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */
  /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
  /**
 * Define consistent border, margin, and padding. */
  /**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. */
  /**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
  /**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
  /* Tables
 * ========================================================================== */
  /**
 * Remove most spacing between table cells. */
  /**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`. */
  /**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox. */
  /**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll. */
  /* .w-lightbox-content */
  /*
 * 1. Remove default margin set by user-agent on the <figure> element. */
  /**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling. */
  /**
 * 1. Reset if style is set by user on "All Images" */
  /*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) */
  /**
 * 1. All IE versions add extra space at the bottom without this. */
  /*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior. */
  /*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track. */
  /*
 * Utility classes */ }
  #listify_stacks_in_69804 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_69804 body {
    margin: 0; }
  #listify_stacks_in_69804 article, #listify_stacks_in_69804 aside, #listify_stacks_in_69804 details, #listify_stacks_in_69804 figcaption, #listify_stacks_in_69804 figure, #listify_stacks_in_69804 footer, #listify_stacks_in_69804 header, #listify_stacks_in_69804 hgroup, #listify_stacks_in_69804 main, #listify_stacks_in_69804 menu, #listify_stacks_in_69804 nav, #listify_stacks_in_69804 section, #listify_stacks_in_69804 summary {
    display: block; }
  #listify_stacks_in_69804 audio, #listify_stacks_in_69804 canvas, #listify_stacks_in_69804 progress, #listify_stacks_in_69804 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_69804 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_69804 [hidden], #listify_stacks_in_69804 template {
    display: none; }
  #listify_stacks_in_69804 a {
    background-color: transparent; }
    #listify_stacks_in_69804 a:active, #listify_stacks_in_69804 a:hover {
      outline: 0; }
  #listify_stacks_in_69804 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_69804 b, #listify_stacks_in_69804 strong {
    font-weight: bold; }
  #listify_stacks_in_69804 dfn {
    font-style: italic; }
  #listify_stacks_in_69804 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_69804 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_69804 small {
    font-size: 80%; }
  #listify_stacks_in_69804 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_69804 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_69804 sub {
    bottom: -0.25em; }
  #listify_stacks_in_69804 img {
    border: 0; }
  #listify_stacks_in_69804 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_69804 figure {
    margin: 1em 40px; }
  #listify_stacks_in_69804 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_69804 pre {
    overflow: auto; }
  #listify_stacks_in_69804 code, #listify_stacks_in_69804 kbd, #listify_stacks_in_69804 pre, #listify_stacks_in_69804 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_69804 button, #listify_stacks_in_69804 input, #listify_stacks_in_69804 optgroup, #listify_stacks_in_69804 select, #listify_stacks_in_69804 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_69804 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_69804 select {
    text-transform: none; }
  #listify_stacks_in_69804 button, #listify_stacks_in_69804 html input[type="button"], #listify_stacks_in_69804 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_69804 button[disabled], #listify_stacks_in_69804 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_69804 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_69804 input {
    line-height: normal; }
    #listify_stacks_in_69804 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_69804 input[type="checkbox"], #listify_stacks_in_69804 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_69804 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_69804 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_69804 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_69804 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_69804 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_69804 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_69804 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_69804 textarea {
    overflow: auto; }
  #listify_stacks_in_69804 optgroup {
    font-weight: bold; }
  #listify_stacks_in_69804 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_69804 td, #listify_stacks_in_69804 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_69804 {
    font-family: 'webflow-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
    font-weight: normal;
    font-style: normal; } }
  #listify_stacks_in_69804 [class^="w-icon-"], #listify_stacks_in_69804 [class*=" w-icon-"] {
    font-family: 'webflow-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #listify_stacks_in_69804 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_69804 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_69804 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_69804 .w-icon-arrow-down:before, #listify_stacks_in_69804 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_69804 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_69804 html {
    height: 100%; }
  #listify_stacks_in_69804 body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333; }
  #listify_stacks_in_69804 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_69804 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_69804 .w-block {
    display: block; }
  #listify_stacks_in_69804 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_69804 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_69804 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_69804 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_69804 .w-hidden {
    display: none; }
  #listify_stacks_in_69804 .w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0; }
  #listify_stacks_in_69804 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_69804 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_69804 .w-webflow-badge {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    border: 0 none transparent;
    border-radius: 0;
    background: none;
    background-image: none;
    background-position: 0% 0%;
    background-size: auto auto;
    background-repeat: repeat;
    background-origin: padding-box;
    background-clip: border-box;
    background-attachment: scroll;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1.0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    list-style-type: disc;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #AAADB0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 6px !important;
    font-size: 12px !important;
    opacity: 1.0 !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); }
    #listify_stacks_in_69804 .w-webflow-badge * {
      position: static;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      z-index: auto;
      display: block;
      visibility: visible;
      overflow: visible;
      overflow-x: visible;
      overflow-y: visible;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: auto;
      height: auto;
      max-height: none;
      max-width: none;
      min-height: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      float: none;
      clear: none;
      border: 0 none transparent;
      border-radius: 0;
      background: none;
      background-image: none;
      background-position: 0% 0%;
      background-size: auto auto;
      background-repeat: repeat;
      background-origin: padding-box;
      background-clip: border-box;
      background-attachment: scroll;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      opacity: 1.0;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: none;
      transition: none;
      direction: ltr;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-style: inherit;
      font-variant: inherit;
      text-align: inherit;
      letter-spacing: inherit;
      text-decoration: inherit;
      text-indent: 0;
      text-transform: inherit;
      list-style-type: disc;
      text-shadow: none;
      font-smoothing: auto;
      vertical-align: baseline;
      cursor: inherit;
      white-space: inherit;
      word-break: normal;
      word-spacing: normal;
      word-wrap: normal; }
    #listify_stacks_in_69804 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_69804 h1, #listify_stacks_in_69804 h2, #listify_stacks_in_69804 h3, #listify_stacks_in_69804 h4, #listify_stacks_in_69804 h5, #listify_stacks_in_69804 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_69804 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_69804 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_69804 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_69804 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_69804 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_69804 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_69804 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_69804 a:focus {
    outline: 0; }
  #listify_stacks_in_69804 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_69804 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_69804 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_69804 ul, #listify_stacks_in_69804 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_69804 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_69804 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_69804 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_69804 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_69804 .w-video iframe, #listify_stacks_in_69804 .w-video object, #listify_stacks_in_69804 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_69804 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_69804 button, #listify_stacks_in_69804 html input[type="button"], #listify_stacks_in_69804 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_69804 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_69804 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_69804 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_69804 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_69804 .w-input, #listify_stacks_in_69804 .w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc; }
  #listify_stacks_in_69804 .w-input:-moz-placeholder, #listify_stacks_in_69804 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_69804 .w-input::-moz-placeholder, #listify_stacks_in_69804 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_69804 .w-input:-ms-input-placeholder, #listify_stacks_in_69804 .w-select:-ms-input-placeholder, #listify_stacks_in_69804 .w-input::-webkit-input-placeholder, #listify_stacks_in_69804 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_69804 .w-input:focus, #listify_stacks_in_69804 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_69804 .w-input[disabled], #listify_stacks_in_69804 .w-select[disabled], #listify_stacks_in_69804 .w-input[readonly], #listify_stacks_in_69804 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_69804 fieldset[disabled] .w-input, #listify_stacks_in_69804 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_69804 textarea.w-input, #listify_stacks_in_69804 textarea.w-select {
    height: auto; }
  #listify_stacks_in_69804 .w-select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f3f3f3));
    background-image: linear-gradient(white 0%, #f3f3f3 100%); }
    #listify_stacks_in_69804 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_69804 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_69804 .w-checkbox, #listify_stacks_in_69804 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_69804 .w-checkbox:before, #listify_stacks_in_69804 .w-radio:before, #listify_stacks_in_69804 .w-checkbox:after, #listify_stacks_in_69804 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_69804 .w-checkbox:after, #listify_stacks_in_69804 .w-radio:after {
    clear: both; }
  #listify_stacks_in_69804 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_69804 .w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px;
    margin-top: 3px; }
  #listify_stacks_in_69804 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_69804 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_69804 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_69804 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_69804 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_69804 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_69804 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_69804 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_69804 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_69804 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_69804 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_69804 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_69804 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_69804 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_69804 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_69804 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_69804 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_69804 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_69804 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_69804 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_69804 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_69804 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_69804 .w-container {
      max-width: 728px; }
    #listify_stacks_in_69804 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_69804 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_69804 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_69804 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_69804 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_69804 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_69804 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_69804 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_69804 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_69804 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_69804 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_69804 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_69804 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_69804 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_69804 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_69804 .w-hidden-main, #listify_stacks_in_69804 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_69804 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_69804 .w-row, #listify_stacks_in_69804 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_69804 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_69804 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_69804 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_69804 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_69804 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_69804 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_69804 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_69804 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_69804 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_69804 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_69804 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_69804 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_69804 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_69804 .w-container {
      max-width: none; }
    #listify_stacks_in_69804 .w-hidden-main, #listify_stacks_in_69804 .w-hidden-medium, #listify_stacks_in_69804 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_69804 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_69804 .w-col {
      width: 100%; }
    #listify_stacks_in_69804 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_69804 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_69804 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_69804 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_69804 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_69804 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_69804 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_69804 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_69804 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_69804 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_69804 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_69804 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_69804 .w-widget {
    position: relative; }
  #listify_stacks_in_69804 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_69804 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_69804 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_69804 .w-widget-map .gm-style-iw {
      width: 90% !important;
      height: auto !important;
      top: 7px !important;
      left: 6% !important;
      display: inline;
      text-align: center;
      overflow: hidden; }
      #listify_stacks_in_69804 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_69804 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_69804 .w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px; }
    #listify_stacks_in_69804 .w-widget-twitter-count-shim * {
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    #listify_stacks_in_69804 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
      position: relative;
      font-size: 15px;
      line-height: 12px;
      text-align: center;
      color: #999;
      font-family: serif; }
    #listify_stacks_in_69804 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_69804 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_69804 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_69804 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_69804 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_69804 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_69804 .w-widget-twitter-count-shim:not(.w--vertical):after {
        top: 50%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_69804 .w-widget-twitter-count-shim:not(.w--vertical):before {
        border-color: rgba(117, 134, 150, 0);
        border-right-color: #5d6c7b;
        border-width: 4px;
        margin-left: -9px;
        margin-top: -4px; }
      #listify_stacks_in_69804 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_69804 .w-widget-twitter-count-shim:not(.w--vertical):after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: white;
        border-width: 4px;
        margin-left: -8px;
        margin-top: -4px; }
      #listify_stacks_in_69804 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_69804 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_69804 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_69804 .w-widget-twitter-count-shim.w--vertical:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_69804 .w-widget-twitter-count-shim.w--vertical:before {
        border-color: rgba(117, 134, 150, 0);
        border-top-color: #5d6c7b;
        border-width: 5px;
        margin-left: -5px; }
      #listify_stacks_in_69804 .w-widget-twitter-count-shim.w--vertical:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: white;
        border-width: 4px;
        margin-left: -4px; }
      #listify_stacks_in_69804 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_69804 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_69804 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_69804 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_69804 .w-background-video > video {
      background-size: cover;
      background-position: 50% 50%;
      position: absolute;
      right: -100%;
      bottom: -100%;
      top: -100%;
      left: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%;
      z-index: -100; }
  #listify_stacks_in_69804 .w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
  #listify_stacks_in_69804 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_69804 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_69804 .w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
    #listify_stacks_in_69804 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_69804 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_69804 .w-slider-nav.w-shadow > div {
      -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
      box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); }
  #listify_stacks_in_69804 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_69804 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_69804 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_69804 .w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    -webkit-transition: background-color 100ms, color 100ms;
    transition: background-color 100ms, color 100ms; }
    #listify_stacks_in_69804 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_69804 .w-slider-arrow-left, #listify_stacks_in_69804 .w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #listify_stacks_in_69804 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_69804 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_69804 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_69804 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_69804 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_69804 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_69804 .w-icon-slider-left, #listify_stacks_in_69804 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_69804 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_69804 .w-dropdown-btn, #listify_stacks_in_69804 .w-dropdown-toggle, #listify_stacks_in_69804 .w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; }
  #listify_stacks_in_69804 .w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px; }
    #listify_stacks_in_69804 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_69804 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_69804 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_69804 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_69804 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_69804 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_69804 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_69804 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_69804 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_69804 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_69804 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_69804 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_69804 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_69804 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_69804 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_69804 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_69804 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_69804 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_69804 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_69804 .w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_69804 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_69804 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_69804 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_69804 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_69804 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_69804 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_69804 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_69804 .w-lightbox-frame, #listify_stacks_in_69804 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_69804 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_69804 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_69804 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_69804 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_69804 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_69804 .w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  #listify_stacks_in_69804 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_69804 .w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
  #listify_stacks_in_69804 .w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); }
  #listify_stacks_in_69804 .w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); }
  #listify_stacks_in_69804 .w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px; }
  #listify_stacks_in_69804 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_69804 .w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */ }
  #listify_stacks_in_69804 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_69804 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_69804 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_69804 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_69804 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_69804 .w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear; }
    #listify_stacks_in_69804 .w-lightbox-spinner:after {
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      bottom: -4px;
      left: -4px;
      border: 3px solid transparent;
      border-bottom-color: #fff;
      border-radius: 50%; }
  #listify_stacks_in_69804 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_69804 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_69804 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_69804 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_69804 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_69804 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_69804 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_69804 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_69804 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_69804 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_69804 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_69804 .w-lightbox-left, #listify_stacks_in_69804 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_69804 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_69804 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_69804 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_69804 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_69804 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_69804 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_69804 .w-richtext ol, #listify_stacks_in_69804 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_69804 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_69804 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_69804 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_69804 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_69804 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_69804 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_69804 .w-richtext figure[data-rt-type="video"] > div:before {
      content: '';
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    #listify_stacks_in_69804 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_69804 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_69804 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_69804 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_69804 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_69804 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_69804 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_69804 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_69804 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_69804 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_69804 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_69804 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_69804 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_69804 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_69804 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_69804 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_69804 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_69804 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_69804 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_69804 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_69804 .w-richtext figure.w-richtext-align-fullwidth {
      width: 100%;
      max-width: 100%;
      text-align: center;
      clear: both;
      display: block;
      margin-right: auto;
      margin-left: auto; }
      #listify_stacks_in_69804 .w-richtext figure.w-richtext-align-fullwidth > div {
        display: inline-block;
        /* padding-bottom is used for aspect ratios in video figures
           *  we want the div to inherit that so hover/selection borders in the designer-canvas
           *  fit right */
        padding-bottom: inherit; }
      #listify_stacks_in_69804 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_69804 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_69804 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_69804 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_69804 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_69804 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_69804 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_69804 .w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto; }
    #listify_stacks_in_69804 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_69804 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_69804 .w--nav-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px; }
  #listify_stacks_in_69804 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_69804 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_69804 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_69804 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_69804 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_69804 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_69804 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_69804 .w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #listify_stacks_in_69804 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_69804 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_69804 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_69804 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_69804 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_69804 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_69804 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_69804 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_69804 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_69804 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_69804 .w-tabs {
    position: relative; }
    #listify_stacks_in_69804 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_69804 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_69804 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_69804 .w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd; }
    #listify_stacks_in_69804 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_69804 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_69804 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_69804 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_69804 .w-tab-link {
      display: block; } }
  #listify_stacks_in_69804 .w-ix-emptyfix:after {
    content: ""; }

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

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  #listify_stacks_in_69804 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_69804 .w-dyn-bind-empty, #listify_stacks_in_69804 .w-condition-invisible {
    display: none !important; }

.list-container {
  margin-top: 0px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex; }

.section {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 0px;
  position: absolute;
  padding-bottom: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox; }
  .section.main {
    display: none; }

.container {
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center; }

#listify_stacks_in_69804 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_69804 .list {
    overflow: hidden;
    margin: 0px 0px 10px 0px;
    padding: 0px 10px 10px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_69804 .list-item {
    list-style-type: none;
    margin-bottom: 0px; }
    #listify_stacks_in_69804 .list-item ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69804 .list-item ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69804 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69804 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69804 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69804 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69804 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69804 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69804 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69804 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69804 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_69804 .list-item-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 0px auto 0px auto;
    padding: 0px 8px 8px 8px;
    border-radius: 5px;
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_69804 .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_69804 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_69804 .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_69804 .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -ms-grid-row-align: center;
        align-self: center;
    word-wrap: break-word;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 16px;
    line-height: 22px;
    font-family: inherit;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Raleway";
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_69804 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_69804 .list-item-inner {
  margin: 0px 0px 10px 0px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_69804.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_69804.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_69804.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_68545.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_68545.list-item {
  margin-bottom: 20px; }

#listifyItem_stacks_in_68545.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_68545.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_68545.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 8px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_68545.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 0px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 20px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    align-self: flex-start;
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    background: url(../files/list_icon_bg_image_choice-68545.png) no-repeat center center;
    background-size: cover;
    /*  */ }
  #listifyItem_stacks_in_68545.list-item .list-item-inner .list-item-icon i {
    color: rgba(155, 88, 235, 1.00);
    font-size: 40px;
    vertical-align: middle;
    /*  */
    /*  */
    opacity: 0;
    visibility: hidden;
    /*  */
    /*  */ }
  #listifyItem_stacks_in_68545.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Droid Sans";
    /*  */ }
  #listifyItem_stacks_in_68545.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_68545.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_68545.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_68545.hide-d {
    display: none; } }

/*  */
/*
1.3.0.2
- add ability to use manually imported icon font (item stack)
- updated woff2 file, old file was causing odd display bugs
*/
@charset "UTF-8";
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(listify-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(listify-files/MaterialIcons-2021.woff2) format('woff2'),
    url(listify-files/MaterialIcons-Regular.woff) format('woff'),
    url(listify-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("listify-files/ionicons.eot?v=2.0.1");src:url("listify-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("listify-files/ionicons.ttf?v=2.0.1") format("truetype"),url("listify-files/ionicons.woff?v=2.0.1") format("woff"),url("listify-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}

#listify_stacks_in_69813 {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
  /**
 * Remove default margin. */
  /* HTML5 display definitions
 * ========================================================================== */
  /**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
  /**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
  /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices. */
  /**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
  /* Links
 * ========================================================================== */
  /**
 * Remove the gray background color from active links in IE 10. */
  /**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
  /* Text-level semantics
 * ========================================================================== */
  /**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
  /**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in Safari and Chrome. */
  /**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in IE 8/9. */
  /**
 * Address inconsistent and variable font size in all browsers. */
  /**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  /* Embedded content
 * ========================================================================== */
  /**
 * Remove border when inside `a` element in IE 8/9/10. */
  /**
 * Correct overflow not hidden in IE 9/10/11. */
  /* Grouping content
 * ========================================================================== */
  /**
 * Address margin not present in IE 8/9 and Safari. */
  /**
 * Address differences between Firefox and other browsers. */
  /**
 * Contain overflow in all browsers. */
  /**
 * Address odd `em`-unit font size rendering in all browsers. */
  /* Forms
 * ========================================================================== */
  /**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
  /**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
  /**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
  /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox. */
  /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector */
  /**
 * Re-set default cursor for disabled elements. */
  /**
 * Remove inner padding and border in Firefox 4+. */
  /**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet. */
  /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
  /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
  /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */
  /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
  /**
 * Define consistent border, margin, and padding. */
  /**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. */
  /**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
  /**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
  /* Tables
 * ========================================================================== */
  /**
 * Remove most spacing between table cells. */
  /**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`. */
  /**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox. */
  /**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll. */
  /* .w-lightbox-content */
  /*
 * 1. Remove default margin set by user-agent on the <figure> element. */
  /**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling. */
  /**
 * 1. Reset if style is set by user on "All Images" */
  /*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) */
  /**
 * 1. All IE versions add extra space at the bottom without this. */
  /*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior. */
  /*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track. */
  /*
 * Utility classes */ }
  #listify_stacks_in_69813 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_69813 body {
    margin: 0; }
  #listify_stacks_in_69813 article, #listify_stacks_in_69813 aside, #listify_stacks_in_69813 details, #listify_stacks_in_69813 figcaption, #listify_stacks_in_69813 figure, #listify_stacks_in_69813 footer, #listify_stacks_in_69813 header, #listify_stacks_in_69813 hgroup, #listify_stacks_in_69813 main, #listify_stacks_in_69813 menu, #listify_stacks_in_69813 nav, #listify_stacks_in_69813 section, #listify_stacks_in_69813 summary {
    display: block; }
  #listify_stacks_in_69813 audio, #listify_stacks_in_69813 canvas, #listify_stacks_in_69813 progress, #listify_stacks_in_69813 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_69813 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_69813 [hidden], #listify_stacks_in_69813 template {
    display: none; }
  #listify_stacks_in_69813 a {
    background-color: transparent; }
    #listify_stacks_in_69813 a:active, #listify_stacks_in_69813 a:hover {
      outline: 0; }
  #listify_stacks_in_69813 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_69813 b, #listify_stacks_in_69813 strong {
    font-weight: bold; }
  #listify_stacks_in_69813 dfn {
    font-style: italic; }
  #listify_stacks_in_69813 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_69813 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_69813 small {
    font-size: 80%; }
  #listify_stacks_in_69813 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_69813 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_69813 sub {
    bottom: -0.25em; }
  #listify_stacks_in_69813 img {
    border: 0; }
  #listify_stacks_in_69813 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_69813 figure {
    margin: 1em 40px; }
  #listify_stacks_in_69813 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_69813 pre {
    overflow: auto; }
  #listify_stacks_in_69813 code, #listify_stacks_in_69813 kbd, #listify_stacks_in_69813 pre, #listify_stacks_in_69813 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_69813 button, #listify_stacks_in_69813 input, #listify_stacks_in_69813 optgroup, #listify_stacks_in_69813 select, #listify_stacks_in_69813 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_69813 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_69813 select {
    text-transform: none; }
  #listify_stacks_in_69813 button, #listify_stacks_in_69813 html input[type="button"], #listify_stacks_in_69813 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_69813 button[disabled], #listify_stacks_in_69813 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_69813 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_69813 input {
    line-height: normal; }
    #listify_stacks_in_69813 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_69813 input[type="checkbox"], #listify_stacks_in_69813 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_69813 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_69813 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_69813 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_69813 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_69813 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_69813 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_69813 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_69813 textarea {
    overflow: auto; }
  #listify_stacks_in_69813 optgroup {
    font-weight: bold; }
  #listify_stacks_in_69813 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_69813 td, #listify_stacks_in_69813 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_69813 {
    font-family: 'webflow-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
    font-weight: normal;
    font-style: normal; } }
  #listify_stacks_in_69813 [class^="w-icon-"], #listify_stacks_in_69813 [class*=" w-icon-"] {
    font-family: 'webflow-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #listify_stacks_in_69813 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_69813 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_69813 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_69813 .w-icon-arrow-down:before, #listify_stacks_in_69813 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_69813 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_69813 html {
    height: 100%; }
  #listify_stacks_in_69813 body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333; }
  #listify_stacks_in_69813 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_69813 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_69813 .w-block {
    display: block; }
  #listify_stacks_in_69813 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_69813 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_69813 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_69813 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_69813 .w-hidden {
    display: none; }
  #listify_stacks_in_69813 .w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0; }
  #listify_stacks_in_69813 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_69813 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_69813 .w-webflow-badge {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    border: 0 none transparent;
    border-radius: 0;
    background: none;
    background-image: none;
    background-position: 0% 0%;
    background-size: auto auto;
    background-repeat: repeat;
    background-origin: padding-box;
    background-clip: border-box;
    background-attachment: scroll;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1.0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    list-style-type: disc;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #AAADB0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 6px !important;
    font-size: 12px !important;
    opacity: 1.0 !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); }
    #listify_stacks_in_69813 .w-webflow-badge * {
      position: static;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      z-index: auto;
      display: block;
      visibility: visible;
      overflow: visible;
      overflow-x: visible;
      overflow-y: visible;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: auto;
      height: auto;
      max-height: none;
      max-width: none;
      min-height: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      float: none;
      clear: none;
      border: 0 none transparent;
      border-radius: 0;
      background: none;
      background-image: none;
      background-position: 0% 0%;
      background-size: auto auto;
      background-repeat: repeat;
      background-origin: padding-box;
      background-clip: border-box;
      background-attachment: scroll;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      opacity: 1.0;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: none;
      transition: none;
      direction: ltr;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-style: inherit;
      font-variant: inherit;
      text-align: inherit;
      letter-spacing: inherit;
      text-decoration: inherit;
      text-indent: 0;
      text-transform: inherit;
      list-style-type: disc;
      text-shadow: none;
      font-smoothing: auto;
      vertical-align: baseline;
      cursor: inherit;
      white-space: inherit;
      word-break: normal;
      word-spacing: normal;
      word-wrap: normal; }
    #listify_stacks_in_69813 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_69813 h1, #listify_stacks_in_69813 h2, #listify_stacks_in_69813 h3, #listify_stacks_in_69813 h4, #listify_stacks_in_69813 h5, #listify_stacks_in_69813 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_69813 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_69813 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_69813 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_69813 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_69813 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_69813 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_69813 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_69813 a:focus {
    outline: 0; }
  #listify_stacks_in_69813 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_69813 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_69813 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_69813 ul, #listify_stacks_in_69813 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_69813 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_69813 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_69813 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_69813 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_69813 .w-video iframe, #listify_stacks_in_69813 .w-video object, #listify_stacks_in_69813 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_69813 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_69813 button, #listify_stacks_in_69813 html input[type="button"], #listify_stacks_in_69813 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_69813 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_69813 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_69813 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_69813 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_69813 .w-input, #listify_stacks_in_69813 .w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc; }
  #listify_stacks_in_69813 .w-input:-moz-placeholder, #listify_stacks_in_69813 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_69813 .w-input::-moz-placeholder, #listify_stacks_in_69813 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_69813 .w-input:-ms-input-placeholder, #listify_stacks_in_69813 .w-select:-ms-input-placeholder, #listify_stacks_in_69813 .w-input::-webkit-input-placeholder, #listify_stacks_in_69813 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_69813 .w-input:focus, #listify_stacks_in_69813 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_69813 .w-input[disabled], #listify_stacks_in_69813 .w-select[disabled], #listify_stacks_in_69813 .w-input[readonly], #listify_stacks_in_69813 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_69813 fieldset[disabled] .w-input, #listify_stacks_in_69813 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_69813 textarea.w-input, #listify_stacks_in_69813 textarea.w-select {
    height: auto; }
  #listify_stacks_in_69813 .w-select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f3f3f3));
    background-image: linear-gradient(white 0%, #f3f3f3 100%); }
    #listify_stacks_in_69813 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_69813 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_69813 .w-checkbox, #listify_stacks_in_69813 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_69813 .w-checkbox:before, #listify_stacks_in_69813 .w-radio:before, #listify_stacks_in_69813 .w-checkbox:after, #listify_stacks_in_69813 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_69813 .w-checkbox:after, #listify_stacks_in_69813 .w-radio:after {
    clear: both; }
  #listify_stacks_in_69813 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_69813 .w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px;
    margin-top: 3px; }
  #listify_stacks_in_69813 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_69813 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_69813 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_69813 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_69813 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_69813 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_69813 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_69813 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_69813 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_69813 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_69813 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_69813 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_69813 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_69813 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_69813 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_69813 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_69813 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_69813 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_69813 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_69813 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_69813 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_69813 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_69813 .w-container {
      max-width: 728px; }
    #listify_stacks_in_69813 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_69813 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_69813 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_69813 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_69813 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_69813 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_69813 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_69813 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_69813 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_69813 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_69813 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_69813 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_69813 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_69813 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_69813 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_69813 .w-hidden-main, #listify_stacks_in_69813 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_69813 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_69813 .w-row, #listify_stacks_in_69813 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_69813 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_69813 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_69813 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_69813 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_69813 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_69813 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_69813 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_69813 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_69813 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_69813 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_69813 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_69813 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_69813 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_69813 .w-container {
      max-width: none; }
    #listify_stacks_in_69813 .w-hidden-main, #listify_stacks_in_69813 .w-hidden-medium, #listify_stacks_in_69813 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_69813 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_69813 .w-col {
      width: 100%; }
    #listify_stacks_in_69813 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_69813 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_69813 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_69813 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_69813 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_69813 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_69813 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_69813 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_69813 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_69813 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_69813 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_69813 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_69813 .w-widget {
    position: relative; }
  #listify_stacks_in_69813 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_69813 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_69813 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_69813 .w-widget-map .gm-style-iw {
      width: 90% !important;
      height: auto !important;
      top: 7px !important;
      left: 6% !important;
      display: inline;
      text-align: center;
      overflow: hidden; }
      #listify_stacks_in_69813 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_69813 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_69813 .w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px; }
    #listify_stacks_in_69813 .w-widget-twitter-count-shim * {
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    #listify_stacks_in_69813 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
      position: relative;
      font-size: 15px;
      line-height: 12px;
      text-align: center;
      color: #999;
      font-family: serif; }
    #listify_stacks_in_69813 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_69813 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_69813 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_69813 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_69813 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_69813 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_69813 .w-widget-twitter-count-shim:not(.w--vertical):after {
        top: 50%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_69813 .w-widget-twitter-count-shim:not(.w--vertical):before {
        border-color: rgba(117, 134, 150, 0);
        border-right-color: #5d6c7b;
        border-width: 4px;
        margin-left: -9px;
        margin-top: -4px; }
      #listify_stacks_in_69813 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_69813 .w-widget-twitter-count-shim:not(.w--vertical):after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: white;
        border-width: 4px;
        margin-left: -8px;
        margin-top: -4px; }
      #listify_stacks_in_69813 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_69813 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_69813 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_69813 .w-widget-twitter-count-shim.w--vertical:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_69813 .w-widget-twitter-count-shim.w--vertical:before {
        border-color: rgba(117, 134, 150, 0);
        border-top-color: #5d6c7b;
        border-width: 5px;
        margin-left: -5px; }
      #listify_stacks_in_69813 .w-widget-twitter-count-shim.w--vertical:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: white;
        border-width: 4px;
        margin-left: -4px; }
      #listify_stacks_in_69813 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_69813 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_69813 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_69813 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_69813 .w-background-video > video {
      background-size: cover;
      background-position: 50% 50%;
      position: absolute;
      right: -100%;
      bottom: -100%;
      top: -100%;
      left: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%;
      z-index: -100; }
  #listify_stacks_in_69813 .w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
  #listify_stacks_in_69813 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_69813 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_69813 .w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
    #listify_stacks_in_69813 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_69813 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_69813 .w-slider-nav.w-shadow > div {
      -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
      box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); }
  #listify_stacks_in_69813 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_69813 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_69813 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_69813 .w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    -webkit-transition: background-color 100ms, color 100ms;
    transition: background-color 100ms, color 100ms; }
    #listify_stacks_in_69813 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_69813 .w-slider-arrow-left, #listify_stacks_in_69813 .w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #listify_stacks_in_69813 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_69813 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_69813 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_69813 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_69813 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_69813 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_69813 .w-icon-slider-left, #listify_stacks_in_69813 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_69813 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_69813 .w-dropdown-btn, #listify_stacks_in_69813 .w-dropdown-toggle, #listify_stacks_in_69813 .w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; }
  #listify_stacks_in_69813 .w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px; }
    #listify_stacks_in_69813 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_69813 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_69813 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_69813 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_69813 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_69813 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_69813 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_69813 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_69813 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_69813 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_69813 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_69813 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_69813 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_69813 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_69813 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_69813 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_69813 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_69813 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_69813 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_69813 .w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_69813 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_69813 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_69813 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_69813 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_69813 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_69813 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_69813 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_69813 .w-lightbox-frame, #listify_stacks_in_69813 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_69813 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_69813 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_69813 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_69813 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_69813 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_69813 .w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  #listify_stacks_in_69813 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_69813 .w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
  #listify_stacks_in_69813 .w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); }
  #listify_stacks_in_69813 .w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); }
  #listify_stacks_in_69813 .w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px; }
  #listify_stacks_in_69813 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_69813 .w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */ }
  #listify_stacks_in_69813 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_69813 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_69813 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_69813 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_69813 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_69813 .w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear; }
    #listify_stacks_in_69813 .w-lightbox-spinner:after {
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      bottom: -4px;
      left: -4px;
      border: 3px solid transparent;
      border-bottom-color: #fff;
      border-radius: 50%; }
  #listify_stacks_in_69813 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_69813 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_69813 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_69813 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_69813 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_69813 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_69813 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_69813 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_69813 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_69813 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_69813 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_69813 .w-lightbox-left, #listify_stacks_in_69813 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_69813 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_69813 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_69813 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_69813 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_69813 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_69813 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_69813 .w-richtext ol, #listify_stacks_in_69813 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_69813 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_69813 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_69813 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_69813 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_69813 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_69813 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_69813 .w-richtext figure[data-rt-type="video"] > div:before {
      content: '';
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    #listify_stacks_in_69813 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_69813 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_69813 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_69813 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_69813 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_69813 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_69813 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_69813 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_69813 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_69813 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_69813 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_69813 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_69813 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_69813 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_69813 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_69813 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_69813 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_69813 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_69813 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_69813 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_69813 .w-richtext figure.w-richtext-align-fullwidth {
      width: 100%;
      max-width: 100%;
      text-align: center;
      clear: both;
      display: block;
      margin-right: auto;
      margin-left: auto; }
      #listify_stacks_in_69813 .w-richtext figure.w-richtext-align-fullwidth > div {
        display: inline-block;
        /* padding-bottom is used for aspect ratios in video figures
           *  we want the div to inherit that so hover/selection borders in the designer-canvas
           *  fit right */
        padding-bottom: inherit; }
      #listify_stacks_in_69813 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_69813 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_69813 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_69813 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_69813 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_69813 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_69813 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_69813 .w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto; }
    #listify_stacks_in_69813 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_69813 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_69813 .w--nav-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px; }
  #listify_stacks_in_69813 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_69813 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_69813 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_69813 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_69813 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_69813 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_69813 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_69813 .w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #listify_stacks_in_69813 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_69813 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_69813 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_69813 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_69813 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_69813 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_69813 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_69813 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_69813 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_69813 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_69813 .w-tabs {
    position: relative; }
    #listify_stacks_in_69813 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_69813 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_69813 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_69813 .w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd; }
    #listify_stacks_in_69813 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_69813 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_69813 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_69813 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_69813 .w-tab-link {
      display: block; } }
  #listify_stacks_in_69813 .w-ix-emptyfix:after {
    content: ""; }

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

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  #listify_stacks_in_69813 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_69813 .w-dyn-bind-empty, #listify_stacks_in_69813 .w-condition-invisible {
    display: none !important; }

.list-container {
  margin-top: 0px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex; }

.section {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 0px;
  position: absolute;
  padding-bottom: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox; }
  .section.main {
    display: none; }

.container {
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center; }

#listify_stacks_in_69813 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_69813 .list {
    overflow: hidden;
    margin: 0px 0px 10px 0px;
    padding: 0px 10px 10px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_69813 .list-item {
    list-style-type: none;
    margin-bottom: 5px; }
    #listify_stacks_in_69813 .list-item ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69813 .list-item ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69813 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69813 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69813 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69813 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69813 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69813 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69813 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69813 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69813 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_69813 .list-item-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 0px auto 0px auto;
    padding: 0px 8px 8px 8px;
    border-radius: 5px;
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_69813 .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_69813 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_69813 .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_69813 .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -ms-grid-row-align: center;
        align-self: center;
    word-wrap: break-word;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 16px;
    line-height: 22px;
    font-family: inherit;
    /*  */
    /*  */
    /*  */
    font-family: "Roboto";
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_69813 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_69813 .list-item-inner {
  margin: 0px 0px 10px 0px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_69813.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_69813.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_69813.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_68549.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_68549.list-item {
  margin-bottom: 20px; }

#listifyItem_stacks_in_68549.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_68549.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_68549.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 8px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_68549.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 0px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 20px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    align-self: flex-start;
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    background: url(../files/list_icon_bg_image_choice-68549.png) no-repeat center center;
    background-size: cover;
    /*  */ }
  #listifyItem_stacks_in_68549.list-item .list-item-inner .list-item-icon i {
    color: rgba(155, 88, 235, 1.00);
    font-size: 40px;
    vertical-align: middle;
    /*  */
    /*  */
    opacity: 0;
    visibility: hidden;
    /*  */
    /*  */ }
  #listifyItem_stacks_in_68549.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Droid Sans";
    /*  */ }
  #listifyItem_stacks_in_68549.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_68549.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_68549.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_68549.hide-d {
    display: none; } }

/*  */
#stacks_in_69822 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_69822 .jwresp_col{overflow:hidden;margin:0;width:50%; float:left;}#stacks_in_69822 #jwresp_col2_stacks_in_69822{ float:right; width:50%}@media screen and (max-width:500px){#stacks_in_69822 #jwresp_col1_stacks_in_69822,#stacks_in_69822 #jwresp_col2_stacks_in_69822{width:100%;float:none;display:block}#stacks_in_69822 #jwresp_col1_stacks_in_69822{margin-bottom:15px}}

#stacks_in_69822 {
	margin: 15px 0px 0px 0px;
}
/*
1.3.0.2
- add ability to use manually imported icon font (item stack)
- updated woff2 file, old file was causing odd display bugs
*/
@charset "UTF-8";
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(listify-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(listify-files/MaterialIcons-2021.woff2) format('woff2'),
    url(listify-files/MaterialIcons-Regular.woff) format('woff'),
    url(listify-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("listify-files/ionicons.eot?v=2.0.1");src:url("listify-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("listify-files/ionicons.ttf?v=2.0.1") format("truetype"),url("listify-files/ionicons.woff?v=2.0.1") format("woff"),url("listify-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}

#listify_stacks_in_69872 {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
  /**
 * Remove default margin. */
  /* HTML5 display definitions
 * ========================================================================== */
  /**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
  /**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
  /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices. */
  /**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
  /* Links
 * ========================================================================== */
  /**
 * Remove the gray background color from active links in IE 10. */
  /**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
  /* Text-level semantics
 * ========================================================================== */
  /**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
  /**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in Safari and Chrome. */
  /**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in IE 8/9. */
  /**
 * Address inconsistent and variable font size in all browsers. */
  /**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  /* Embedded content
 * ========================================================================== */
  /**
 * Remove border when inside `a` element in IE 8/9/10. */
  /**
 * Correct overflow not hidden in IE 9/10/11. */
  /* Grouping content
 * ========================================================================== */
  /**
 * Address margin not present in IE 8/9 and Safari. */
  /**
 * Address differences between Firefox and other browsers. */
  /**
 * Contain overflow in all browsers. */
  /**
 * Address odd `em`-unit font size rendering in all browsers. */
  /* Forms
 * ========================================================================== */
  /**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
  /**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
  /**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
  /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox. */
  /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector */
  /**
 * Re-set default cursor for disabled elements. */
  /**
 * Remove inner padding and border in Firefox 4+. */
  /**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet. */
  /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
  /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
  /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */
  /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
  /**
 * Define consistent border, margin, and padding. */
  /**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. */
  /**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
  /**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
  /* Tables
 * ========================================================================== */
  /**
 * Remove most spacing between table cells. */
  /**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`. */
  /**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox. */
  /**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll. */
  /* .w-lightbox-content */
  /*
 * 1. Remove default margin set by user-agent on the <figure> element. */
  /**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling. */
  /**
 * 1. Reset if style is set by user on "All Images" */
  /*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) */
  /**
 * 1. All IE versions add extra space at the bottom without this. */
  /*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior. */
  /*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track. */
  /*
 * Utility classes */ }
  #listify_stacks_in_69872 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_69872 body {
    margin: 0; }
  #listify_stacks_in_69872 article, #listify_stacks_in_69872 aside, #listify_stacks_in_69872 details, #listify_stacks_in_69872 figcaption, #listify_stacks_in_69872 figure, #listify_stacks_in_69872 footer, #listify_stacks_in_69872 header, #listify_stacks_in_69872 hgroup, #listify_stacks_in_69872 main, #listify_stacks_in_69872 menu, #listify_stacks_in_69872 nav, #listify_stacks_in_69872 section, #listify_stacks_in_69872 summary {
    display: block; }
  #listify_stacks_in_69872 audio, #listify_stacks_in_69872 canvas, #listify_stacks_in_69872 progress, #listify_stacks_in_69872 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_69872 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_69872 [hidden], #listify_stacks_in_69872 template {
    display: none; }
  #listify_stacks_in_69872 a {
    background-color: transparent; }
    #listify_stacks_in_69872 a:active, #listify_stacks_in_69872 a:hover {
      outline: 0; }
  #listify_stacks_in_69872 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_69872 b, #listify_stacks_in_69872 strong {
    font-weight: bold; }
  #listify_stacks_in_69872 dfn {
    font-style: italic; }
  #listify_stacks_in_69872 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_69872 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_69872 small {
    font-size: 80%; }
  #listify_stacks_in_69872 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_69872 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_69872 sub {
    bottom: -0.25em; }
  #listify_stacks_in_69872 img {
    border: 0; }
  #listify_stacks_in_69872 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_69872 figure {
    margin: 1em 40px; }
  #listify_stacks_in_69872 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_69872 pre {
    overflow: auto; }
  #listify_stacks_in_69872 code, #listify_stacks_in_69872 kbd, #listify_stacks_in_69872 pre, #listify_stacks_in_69872 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_69872 button, #listify_stacks_in_69872 input, #listify_stacks_in_69872 optgroup, #listify_stacks_in_69872 select, #listify_stacks_in_69872 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_69872 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_69872 select {
    text-transform: none; }
  #listify_stacks_in_69872 button, #listify_stacks_in_69872 html input[type="button"], #listify_stacks_in_69872 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_69872 button[disabled], #listify_stacks_in_69872 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_69872 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_69872 input {
    line-height: normal; }
    #listify_stacks_in_69872 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_69872 input[type="checkbox"], #listify_stacks_in_69872 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_69872 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_69872 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_69872 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_69872 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_69872 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_69872 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_69872 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_69872 textarea {
    overflow: auto; }
  #listify_stacks_in_69872 optgroup {
    font-weight: bold; }
  #listify_stacks_in_69872 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_69872 td, #listify_stacks_in_69872 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_69872 {
    font-family: 'webflow-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
    font-weight: normal;
    font-style: normal; } }
  #listify_stacks_in_69872 [class^="w-icon-"], #listify_stacks_in_69872 [class*=" w-icon-"] {
    font-family: 'webflow-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #listify_stacks_in_69872 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_69872 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_69872 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_69872 .w-icon-arrow-down:before, #listify_stacks_in_69872 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_69872 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_69872 html {
    height: 100%; }
  #listify_stacks_in_69872 body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333; }
  #listify_stacks_in_69872 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_69872 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_69872 .w-block {
    display: block; }
  #listify_stacks_in_69872 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_69872 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_69872 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_69872 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_69872 .w-hidden {
    display: none; }
  #listify_stacks_in_69872 .w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0; }
  #listify_stacks_in_69872 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_69872 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_69872 .w-webflow-badge {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    border: 0 none transparent;
    border-radius: 0;
    background: none;
    background-image: none;
    background-position: 0% 0%;
    background-size: auto auto;
    background-repeat: repeat;
    background-origin: padding-box;
    background-clip: border-box;
    background-attachment: scroll;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1.0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    list-style-type: disc;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #AAADB0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 6px !important;
    font-size: 12px !important;
    opacity: 1.0 !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); }
    #listify_stacks_in_69872 .w-webflow-badge * {
      position: static;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      z-index: auto;
      display: block;
      visibility: visible;
      overflow: visible;
      overflow-x: visible;
      overflow-y: visible;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: auto;
      height: auto;
      max-height: none;
      max-width: none;
      min-height: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      float: none;
      clear: none;
      border: 0 none transparent;
      border-radius: 0;
      background: none;
      background-image: none;
      background-position: 0% 0%;
      background-size: auto auto;
      background-repeat: repeat;
      background-origin: padding-box;
      background-clip: border-box;
      background-attachment: scroll;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      opacity: 1.0;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: none;
      transition: none;
      direction: ltr;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-style: inherit;
      font-variant: inherit;
      text-align: inherit;
      letter-spacing: inherit;
      text-decoration: inherit;
      text-indent: 0;
      text-transform: inherit;
      list-style-type: disc;
      text-shadow: none;
      font-smoothing: auto;
      vertical-align: baseline;
      cursor: inherit;
      white-space: inherit;
      word-break: normal;
      word-spacing: normal;
      word-wrap: normal; }
    #listify_stacks_in_69872 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_69872 h1, #listify_stacks_in_69872 h2, #listify_stacks_in_69872 h3, #listify_stacks_in_69872 h4, #listify_stacks_in_69872 h5, #listify_stacks_in_69872 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_69872 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_69872 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_69872 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_69872 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_69872 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_69872 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_69872 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_69872 a:focus {
    outline: 0; }
  #listify_stacks_in_69872 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_69872 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_69872 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_69872 ul, #listify_stacks_in_69872 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_69872 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_69872 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_69872 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_69872 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_69872 .w-video iframe, #listify_stacks_in_69872 .w-video object, #listify_stacks_in_69872 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_69872 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_69872 button, #listify_stacks_in_69872 html input[type="button"], #listify_stacks_in_69872 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_69872 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_69872 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_69872 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_69872 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_69872 .w-input, #listify_stacks_in_69872 .w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc; }
  #listify_stacks_in_69872 .w-input:-moz-placeholder, #listify_stacks_in_69872 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_69872 .w-input::-moz-placeholder, #listify_stacks_in_69872 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_69872 .w-input:-ms-input-placeholder, #listify_stacks_in_69872 .w-select:-ms-input-placeholder, #listify_stacks_in_69872 .w-input::-webkit-input-placeholder, #listify_stacks_in_69872 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_69872 .w-input:focus, #listify_stacks_in_69872 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_69872 .w-input[disabled], #listify_stacks_in_69872 .w-select[disabled], #listify_stacks_in_69872 .w-input[readonly], #listify_stacks_in_69872 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_69872 fieldset[disabled] .w-input, #listify_stacks_in_69872 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_69872 textarea.w-input, #listify_stacks_in_69872 textarea.w-select {
    height: auto; }
  #listify_stacks_in_69872 .w-select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f3f3f3));
    background-image: linear-gradient(white 0%, #f3f3f3 100%); }
    #listify_stacks_in_69872 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_69872 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_69872 .w-checkbox, #listify_stacks_in_69872 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_69872 .w-checkbox:before, #listify_stacks_in_69872 .w-radio:before, #listify_stacks_in_69872 .w-checkbox:after, #listify_stacks_in_69872 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_69872 .w-checkbox:after, #listify_stacks_in_69872 .w-radio:after {
    clear: both; }
  #listify_stacks_in_69872 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_69872 .w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px;
    margin-top: 3px; }
  #listify_stacks_in_69872 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_69872 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_69872 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_69872 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_69872 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_69872 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_69872 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_69872 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_69872 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_69872 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_69872 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_69872 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_69872 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_69872 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_69872 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_69872 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_69872 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_69872 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_69872 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_69872 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_69872 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_69872 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_69872 .w-container {
      max-width: 728px; }
    #listify_stacks_in_69872 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_69872 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_69872 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_69872 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_69872 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_69872 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_69872 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_69872 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_69872 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_69872 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_69872 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_69872 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_69872 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_69872 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_69872 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_69872 .w-hidden-main, #listify_stacks_in_69872 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_69872 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_69872 .w-row, #listify_stacks_in_69872 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_69872 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_69872 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_69872 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_69872 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_69872 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_69872 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_69872 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_69872 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_69872 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_69872 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_69872 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_69872 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_69872 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_69872 .w-container {
      max-width: none; }
    #listify_stacks_in_69872 .w-hidden-main, #listify_stacks_in_69872 .w-hidden-medium, #listify_stacks_in_69872 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_69872 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_69872 .w-col {
      width: 100%; }
    #listify_stacks_in_69872 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_69872 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_69872 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_69872 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_69872 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_69872 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_69872 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_69872 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_69872 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_69872 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_69872 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_69872 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_69872 .w-widget {
    position: relative; }
  #listify_stacks_in_69872 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_69872 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_69872 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_69872 .w-widget-map .gm-style-iw {
      width: 90% !important;
      height: auto !important;
      top: 7px !important;
      left: 6% !important;
      display: inline;
      text-align: center;
      overflow: hidden; }
      #listify_stacks_in_69872 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_69872 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_69872 .w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px; }
    #listify_stacks_in_69872 .w-widget-twitter-count-shim * {
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    #listify_stacks_in_69872 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
      position: relative;
      font-size: 15px;
      line-height: 12px;
      text-align: center;
      color: #999;
      font-family: serif; }
    #listify_stacks_in_69872 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_69872 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_69872 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_69872 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_69872 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_69872 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_69872 .w-widget-twitter-count-shim:not(.w--vertical):after {
        top: 50%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_69872 .w-widget-twitter-count-shim:not(.w--vertical):before {
        border-color: rgba(117, 134, 150, 0);
        border-right-color: #5d6c7b;
        border-width: 4px;
        margin-left: -9px;
        margin-top: -4px; }
      #listify_stacks_in_69872 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_69872 .w-widget-twitter-count-shim:not(.w--vertical):after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: white;
        border-width: 4px;
        margin-left: -8px;
        margin-top: -4px; }
      #listify_stacks_in_69872 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_69872 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_69872 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_69872 .w-widget-twitter-count-shim.w--vertical:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_69872 .w-widget-twitter-count-shim.w--vertical:before {
        border-color: rgba(117, 134, 150, 0);
        border-top-color: #5d6c7b;
        border-width: 5px;
        margin-left: -5px; }
      #listify_stacks_in_69872 .w-widget-twitter-count-shim.w--vertical:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: white;
        border-width: 4px;
        margin-left: -4px; }
      #listify_stacks_in_69872 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_69872 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_69872 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_69872 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_69872 .w-background-video > video {
      background-size: cover;
      background-position: 50% 50%;
      position: absolute;
      right: -100%;
      bottom: -100%;
      top: -100%;
      left: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%;
      z-index: -100; }
  #listify_stacks_in_69872 .w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
  #listify_stacks_in_69872 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_69872 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_69872 .w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
    #listify_stacks_in_69872 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_69872 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_69872 .w-slider-nav.w-shadow > div {
      -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
      box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); }
  #listify_stacks_in_69872 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_69872 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_69872 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_69872 .w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    -webkit-transition: background-color 100ms, color 100ms;
    transition: background-color 100ms, color 100ms; }
    #listify_stacks_in_69872 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_69872 .w-slider-arrow-left, #listify_stacks_in_69872 .w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #listify_stacks_in_69872 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_69872 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_69872 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_69872 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_69872 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_69872 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_69872 .w-icon-slider-left, #listify_stacks_in_69872 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_69872 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_69872 .w-dropdown-btn, #listify_stacks_in_69872 .w-dropdown-toggle, #listify_stacks_in_69872 .w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; }
  #listify_stacks_in_69872 .w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px; }
    #listify_stacks_in_69872 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_69872 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_69872 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_69872 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_69872 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_69872 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_69872 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_69872 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_69872 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_69872 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_69872 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_69872 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_69872 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_69872 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_69872 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_69872 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_69872 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_69872 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_69872 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_69872 .w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_69872 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_69872 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_69872 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_69872 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_69872 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_69872 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_69872 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_69872 .w-lightbox-frame, #listify_stacks_in_69872 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_69872 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_69872 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_69872 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_69872 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_69872 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_69872 .w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  #listify_stacks_in_69872 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_69872 .w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
  #listify_stacks_in_69872 .w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); }
  #listify_stacks_in_69872 .w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); }
  #listify_stacks_in_69872 .w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px; }
  #listify_stacks_in_69872 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_69872 .w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */ }
  #listify_stacks_in_69872 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_69872 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_69872 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_69872 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_69872 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_69872 .w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear; }
    #listify_stacks_in_69872 .w-lightbox-spinner:after {
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      bottom: -4px;
      left: -4px;
      border: 3px solid transparent;
      border-bottom-color: #fff;
      border-radius: 50%; }
  #listify_stacks_in_69872 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_69872 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_69872 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_69872 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_69872 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_69872 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_69872 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_69872 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_69872 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_69872 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_69872 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_69872 .w-lightbox-left, #listify_stacks_in_69872 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_69872 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_69872 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_69872 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_69872 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_69872 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_69872 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_69872 .w-richtext ol, #listify_stacks_in_69872 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_69872 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_69872 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_69872 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_69872 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_69872 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_69872 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_69872 .w-richtext figure[data-rt-type="video"] > div:before {
      content: '';
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    #listify_stacks_in_69872 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_69872 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_69872 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_69872 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_69872 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_69872 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_69872 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_69872 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_69872 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_69872 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_69872 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_69872 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_69872 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_69872 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_69872 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_69872 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_69872 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_69872 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_69872 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_69872 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_69872 .w-richtext figure.w-richtext-align-fullwidth {
      width: 100%;
      max-width: 100%;
      text-align: center;
      clear: both;
      display: block;
      margin-right: auto;
      margin-left: auto; }
      #listify_stacks_in_69872 .w-richtext figure.w-richtext-align-fullwidth > div {
        display: inline-block;
        /* padding-bottom is used for aspect ratios in video figures
           *  we want the div to inherit that so hover/selection borders in the designer-canvas
           *  fit right */
        padding-bottom: inherit; }
      #listify_stacks_in_69872 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_69872 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_69872 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_69872 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_69872 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_69872 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_69872 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_69872 .w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto; }
    #listify_stacks_in_69872 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_69872 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_69872 .w--nav-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px; }
  #listify_stacks_in_69872 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_69872 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_69872 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_69872 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_69872 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_69872 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_69872 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_69872 .w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #listify_stacks_in_69872 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_69872 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_69872 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_69872 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_69872 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_69872 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_69872 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_69872 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_69872 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_69872 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_69872 .w-tabs {
    position: relative; }
    #listify_stacks_in_69872 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_69872 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_69872 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_69872 .w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd; }
    #listify_stacks_in_69872 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_69872 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_69872 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_69872 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_69872 .w-tab-link {
      display: block; } }
  #listify_stacks_in_69872 .w-ix-emptyfix:after {
    content: ""; }

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

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  #listify_stacks_in_69872 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_69872 .w-dyn-bind-empty, #listify_stacks_in_69872 .w-condition-invisible {
    display: none !important; }

.list-container {
  margin-top: 0px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex; }

.section {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 0px;
  position: absolute;
  padding-bottom: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox; }
  .section.main {
    display: none; }

.container {
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center; }

#listify_stacks_in_69872 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_69872 .list {
    overflow: hidden;
    margin: 0px 0px 10px 0px;
    padding: 0px 10px 10px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_69872 .list-item {
    list-style-type: none;
    margin-bottom: 0px; }
    #listify_stacks_in_69872 .list-item ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69872 .list-item ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69872 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69872 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69872 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69872 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69872 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69872 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69872 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69872 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69872 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_69872 .list-item-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 0px auto 0px auto;
    padding: 0px 8px 8px 8px;
    border-radius: 5px;
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_69872 .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_69872 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_69872 .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_69872 .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -ms-grid-row-align: center;
        align-self: center;
    word-wrap: break-word;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 16px;
    line-height: 22px;
    font-family: inherit;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Raleway";
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_69872 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_69872 .list-item-inner {
  margin: 0px 0px 10px 0px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_69872.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_69872.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_69872.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_69873.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_69873.list-item {
  margin-bottom: 20px; }

#listifyItem_stacks_in_69873.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_69873.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_69873.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 8px 8px 8px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_69873.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 0px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 20px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    align-self: flex-start;
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    background: url(../files/list_icon_bg_image_choice-69873.png) no-repeat center center;
    background-size: cover;
    /*  */ }
  #listifyItem_stacks_in_69873.list-item .list-item-inner .list-item-icon i {
    color: rgba(155, 88, 235, 1.00);
    font-size: 40px;
    vertical-align: middle;
    /*  */
    /*  */
    opacity: 0;
    visibility: hidden;
    /*  */
    /*  */ }
  #listifyItem_stacks_in_69873.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    font-family: "Droid Sans";
    /*  */ }
  #listifyItem_stacks_in_69873.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_69873.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_69873.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_69873.hide-d {
    display: none; } }

/*  */
/*
1.3.0.2
- add ability to use manually imported icon font (item stack)
- updated woff2 file, old file was causing odd display bugs
*/
@charset "UTF-8";
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(listify-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(listify-files/MaterialIcons-2021.woff2) format('woff2'),
    url(listify-files/MaterialIcons-Regular.woff) format('woff'),
    url(listify-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("listify-files/ionicons.eot?v=2.0.1");src:url("listify-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("listify-files/ionicons.ttf?v=2.0.1") format("truetype"),url("listify-files/ionicons.woff?v=2.0.1") format("woff"),url("listify-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}

#listify_stacks_in_69832 {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
  /**
 * Remove default margin. */
  /* HTML5 display definitions
 * ========================================================================== */
  /**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
  /**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
  /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices. */
  /**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
  /* Links
 * ========================================================================== */
  /**
 * Remove the gray background color from active links in IE 10. */
  /**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
  /* Text-level semantics
 * ========================================================================== */
  /**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
  /**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in Safari and Chrome. */
  /**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in IE 8/9. */
  /**
 * Address inconsistent and variable font size in all browsers. */
  /**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  /* Embedded content
 * ========================================================================== */
  /**
 * Remove border when inside `a` element in IE 8/9/10. */
  /**
 * Correct overflow not hidden in IE 9/10/11. */
  /* Grouping content
 * ========================================================================== */
  /**
 * Address margin not present in IE 8/9 and Safari. */
  /**
 * Address differences between Firefox and other browsers. */
  /**
 * Contain overflow in all browsers. */
  /**
 * Address odd `em`-unit font size rendering in all browsers. */
  /* Forms
 * ========================================================================== */
  /**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
  /**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
  /**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
  /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox. */
  /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector */
  /**
 * Re-set default cursor for disabled elements. */
  /**
 * Remove inner padding and border in Firefox 4+. */
  /**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet. */
  /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
  /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
  /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */
  /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
  /**
 * Define consistent border, margin, and padding. */
  /**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. */
  /**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
  /**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
  /* Tables
 * ========================================================================== */
  /**
 * Remove most spacing between table cells. */
  /**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`. */
  /**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox. */
  /**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll. */
  /* .w-lightbox-content */
  /*
 * 1. Remove default margin set by user-agent on the <figure> element. */
  /**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling. */
  /**
 * 1. Reset if style is set by user on "All Images" */
  /*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) */
  /**
 * 1. All IE versions add extra space at the bottom without this. */
  /*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior. */
  /*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track. */
  /*
 * Utility classes */ }
  #listify_stacks_in_69832 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_69832 body {
    margin: 0; }
  #listify_stacks_in_69832 article, #listify_stacks_in_69832 aside, #listify_stacks_in_69832 details, #listify_stacks_in_69832 figcaption, #listify_stacks_in_69832 figure, #listify_stacks_in_69832 footer, #listify_stacks_in_69832 header, #listify_stacks_in_69832 hgroup, #listify_stacks_in_69832 main, #listify_stacks_in_69832 menu, #listify_stacks_in_69832 nav, #listify_stacks_in_69832 section, #listify_stacks_in_69832 summary {
    display: block; }
  #listify_stacks_in_69832 audio, #listify_stacks_in_69832 canvas, #listify_stacks_in_69832 progress, #listify_stacks_in_69832 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_69832 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_69832 [hidden], #listify_stacks_in_69832 template {
    display: none; }
  #listify_stacks_in_69832 a {
    background-color: transparent; }
    #listify_stacks_in_69832 a:active, #listify_stacks_in_69832 a:hover {
      outline: 0; }
  #listify_stacks_in_69832 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_69832 b, #listify_stacks_in_69832 strong {
    font-weight: bold; }
  #listify_stacks_in_69832 dfn {
    font-style: italic; }
  #listify_stacks_in_69832 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_69832 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_69832 small {
    font-size: 80%; }
  #listify_stacks_in_69832 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_69832 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_69832 sub {
    bottom: -0.25em; }
  #listify_stacks_in_69832 img {
    border: 0; }
  #listify_stacks_in_69832 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_69832 figure {
    margin: 1em 40px; }
  #listify_stacks_in_69832 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_69832 pre {
    overflow: auto; }
  #listify_stacks_in_69832 code, #listify_stacks_in_69832 kbd, #listify_stacks_in_69832 pre, #listify_stacks_in_69832 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_69832 button, #listify_stacks_in_69832 input, #listify_stacks_in_69832 optgroup, #listify_stacks_in_69832 select, #listify_stacks_in_69832 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_69832 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_69832 select {
    text-transform: none; }
  #listify_stacks_in_69832 button, #listify_stacks_in_69832 html input[type="button"], #listify_stacks_in_69832 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_69832 button[disabled], #listify_stacks_in_69832 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_69832 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_69832 input {
    line-height: normal; }
    #listify_stacks_in_69832 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_69832 input[type="checkbox"], #listify_stacks_in_69832 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_69832 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_69832 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_69832 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_69832 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_69832 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_69832 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_69832 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_69832 textarea {
    overflow: auto; }
  #listify_stacks_in_69832 optgroup {
    font-weight: bold; }
  #listify_stacks_in_69832 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_69832 td, #listify_stacks_in_69832 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_69832 {
    font-family: 'webflow-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
    font-weight: normal;
    font-style: normal; } }
  #listify_stacks_in_69832 [class^="w-icon-"], #listify_stacks_in_69832 [class*=" w-icon-"] {
    font-family: 'webflow-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #listify_stacks_in_69832 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_69832 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_69832 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_69832 .w-icon-arrow-down:before, #listify_stacks_in_69832 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_69832 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_69832 html {
    height: 100%; }
  #listify_stacks_in_69832 body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333; }
  #listify_stacks_in_69832 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_69832 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_69832 .w-block {
    display: block; }
  #listify_stacks_in_69832 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_69832 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_69832 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_69832 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_69832 .w-hidden {
    display: none; }
  #listify_stacks_in_69832 .w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0; }
  #listify_stacks_in_69832 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_69832 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_69832 .w-webflow-badge {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    border: 0 none transparent;
    border-radius: 0;
    background: none;
    background-image: none;
    background-position: 0% 0%;
    background-size: auto auto;
    background-repeat: repeat;
    background-origin: padding-box;
    background-clip: border-box;
    background-attachment: scroll;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1.0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    list-style-type: disc;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #AAADB0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 6px !important;
    font-size: 12px !important;
    opacity: 1.0 !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); }
    #listify_stacks_in_69832 .w-webflow-badge * {
      position: static;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      z-index: auto;
      display: block;
      visibility: visible;
      overflow: visible;
      overflow-x: visible;
      overflow-y: visible;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: auto;
      height: auto;
      max-height: none;
      max-width: none;
      min-height: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      float: none;
      clear: none;
      border: 0 none transparent;
      border-radius: 0;
      background: none;
      background-image: none;
      background-position: 0% 0%;
      background-size: auto auto;
      background-repeat: repeat;
      background-origin: padding-box;
      background-clip: border-box;
      background-attachment: scroll;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      opacity: 1.0;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: none;
      transition: none;
      direction: ltr;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-style: inherit;
      font-variant: inherit;
      text-align: inherit;
      letter-spacing: inherit;
      text-decoration: inherit;
      text-indent: 0;
      text-transform: inherit;
      list-style-type: disc;
      text-shadow: none;
      font-smoothing: auto;
      vertical-align: baseline;
      cursor: inherit;
      white-space: inherit;
      word-break: normal;
      word-spacing: normal;
      word-wrap: normal; }
    #listify_stacks_in_69832 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_69832 h1, #listify_stacks_in_69832 h2, #listify_stacks_in_69832 h3, #listify_stacks_in_69832 h4, #listify_stacks_in_69832 h5, #listify_stacks_in_69832 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_69832 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_69832 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_69832 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_69832 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_69832 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_69832 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_69832 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_69832 a:focus {
    outline: 0; }
  #listify_stacks_in_69832 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_69832 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_69832 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_69832 ul, #listify_stacks_in_69832 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_69832 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_69832 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_69832 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_69832 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_69832 .w-video iframe, #listify_stacks_in_69832 .w-video object, #listify_stacks_in_69832 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_69832 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_69832 button, #listify_stacks_in_69832 html input[type="button"], #listify_stacks_in_69832 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_69832 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_69832 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_69832 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_69832 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_69832 .w-input, #listify_stacks_in_69832 .w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc; }
  #listify_stacks_in_69832 .w-input:-moz-placeholder, #listify_stacks_in_69832 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_69832 .w-input::-moz-placeholder, #listify_stacks_in_69832 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_69832 .w-input:-ms-input-placeholder, #listify_stacks_in_69832 .w-select:-ms-input-placeholder, #listify_stacks_in_69832 .w-input::-webkit-input-placeholder, #listify_stacks_in_69832 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_69832 .w-input:focus, #listify_stacks_in_69832 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_69832 .w-input[disabled], #listify_stacks_in_69832 .w-select[disabled], #listify_stacks_in_69832 .w-input[readonly], #listify_stacks_in_69832 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_69832 fieldset[disabled] .w-input, #listify_stacks_in_69832 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_69832 textarea.w-input, #listify_stacks_in_69832 textarea.w-select {
    height: auto; }
  #listify_stacks_in_69832 .w-select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f3f3f3));
    background-image: linear-gradient(white 0%, #f3f3f3 100%); }
    #listify_stacks_in_69832 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_69832 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_69832 .w-checkbox, #listify_stacks_in_69832 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_69832 .w-checkbox:before, #listify_stacks_in_69832 .w-radio:before, #listify_stacks_in_69832 .w-checkbox:after, #listify_stacks_in_69832 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_69832 .w-checkbox:after, #listify_stacks_in_69832 .w-radio:after {
    clear: both; }
  #listify_stacks_in_69832 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_69832 .w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px;
    margin-top: 3px; }
  #listify_stacks_in_69832 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_69832 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_69832 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_69832 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_69832 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_69832 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_69832 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_69832 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_69832 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_69832 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_69832 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_69832 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_69832 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_69832 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_69832 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_69832 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_69832 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_69832 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_69832 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_69832 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_69832 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_69832 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_69832 .w-container {
      max-width: 728px; }
    #listify_stacks_in_69832 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_69832 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_69832 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_69832 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_69832 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_69832 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_69832 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_69832 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_69832 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_69832 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_69832 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_69832 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_69832 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_69832 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_69832 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_69832 .w-hidden-main, #listify_stacks_in_69832 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_69832 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_69832 .w-row, #listify_stacks_in_69832 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_69832 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_69832 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_69832 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_69832 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_69832 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_69832 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_69832 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_69832 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_69832 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_69832 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_69832 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_69832 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_69832 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_69832 .w-container {
      max-width: none; }
    #listify_stacks_in_69832 .w-hidden-main, #listify_stacks_in_69832 .w-hidden-medium, #listify_stacks_in_69832 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_69832 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_69832 .w-col {
      width: 100%; }
    #listify_stacks_in_69832 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_69832 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_69832 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_69832 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_69832 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_69832 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_69832 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_69832 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_69832 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_69832 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_69832 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_69832 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_69832 .w-widget {
    position: relative; }
  #listify_stacks_in_69832 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_69832 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_69832 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_69832 .w-widget-map .gm-style-iw {
      width: 90% !important;
      height: auto !important;
      top: 7px !important;
      left: 6% !important;
      display: inline;
      text-align: center;
      overflow: hidden; }
      #listify_stacks_in_69832 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_69832 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_69832 .w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px; }
    #listify_stacks_in_69832 .w-widget-twitter-count-shim * {
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    #listify_stacks_in_69832 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
      position: relative;
      font-size: 15px;
      line-height: 12px;
      text-align: center;
      color: #999;
      font-family: serif; }
    #listify_stacks_in_69832 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_69832 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_69832 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_69832 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_69832 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_69832 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_69832 .w-widget-twitter-count-shim:not(.w--vertical):after {
        top: 50%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_69832 .w-widget-twitter-count-shim:not(.w--vertical):before {
        border-color: rgba(117, 134, 150, 0);
        border-right-color: #5d6c7b;
        border-width: 4px;
        margin-left: -9px;
        margin-top: -4px; }
      #listify_stacks_in_69832 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_69832 .w-widget-twitter-count-shim:not(.w--vertical):after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: white;
        border-width: 4px;
        margin-left: -8px;
        margin-top: -4px; }
      #listify_stacks_in_69832 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_69832 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_69832 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_69832 .w-widget-twitter-count-shim.w--vertical:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_69832 .w-widget-twitter-count-shim.w--vertical:before {
        border-color: rgba(117, 134, 150, 0);
        border-top-color: #5d6c7b;
        border-width: 5px;
        margin-left: -5px; }
      #listify_stacks_in_69832 .w-widget-twitter-count-shim.w--vertical:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: white;
        border-width: 4px;
        margin-left: -4px; }
      #listify_stacks_in_69832 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_69832 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_69832 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_69832 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_69832 .w-background-video > video {
      background-size: cover;
      background-position: 50% 50%;
      position: absolute;
      right: -100%;
      bottom: -100%;
      top: -100%;
      left: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%;
      z-index: -100; }
  #listify_stacks_in_69832 .w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
  #listify_stacks_in_69832 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_69832 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_69832 .w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
    #listify_stacks_in_69832 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_69832 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_69832 .w-slider-nav.w-shadow > div {
      -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
      box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); }
  #listify_stacks_in_69832 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_69832 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_69832 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_69832 .w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    -webkit-transition: background-color 100ms, color 100ms;
    transition: background-color 100ms, color 100ms; }
    #listify_stacks_in_69832 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_69832 .w-slider-arrow-left, #listify_stacks_in_69832 .w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #listify_stacks_in_69832 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_69832 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_69832 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_69832 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_69832 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_69832 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_69832 .w-icon-slider-left, #listify_stacks_in_69832 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_69832 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_69832 .w-dropdown-btn, #listify_stacks_in_69832 .w-dropdown-toggle, #listify_stacks_in_69832 .w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; }
  #listify_stacks_in_69832 .w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px; }
    #listify_stacks_in_69832 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_69832 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_69832 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_69832 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_69832 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_69832 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_69832 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_69832 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_69832 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_69832 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_69832 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_69832 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_69832 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_69832 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_69832 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_69832 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_69832 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_69832 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_69832 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_69832 .w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_69832 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_69832 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_69832 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_69832 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_69832 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_69832 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_69832 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_69832 .w-lightbox-frame, #listify_stacks_in_69832 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_69832 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_69832 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_69832 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_69832 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_69832 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_69832 .w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  #listify_stacks_in_69832 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_69832 .w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
  #listify_stacks_in_69832 .w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); }
  #listify_stacks_in_69832 .w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); }
  #listify_stacks_in_69832 .w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px; }
  #listify_stacks_in_69832 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_69832 .w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */ }
  #listify_stacks_in_69832 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_69832 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_69832 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_69832 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_69832 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_69832 .w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear; }
    #listify_stacks_in_69832 .w-lightbox-spinner:after {
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      bottom: -4px;
      left: -4px;
      border: 3px solid transparent;
      border-bottom-color: #fff;
      border-radius: 50%; }
  #listify_stacks_in_69832 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_69832 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_69832 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_69832 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_69832 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_69832 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_69832 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_69832 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_69832 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_69832 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_69832 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_69832 .w-lightbox-left, #listify_stacks_in_69832 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_69832 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_69832 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_69832 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_69832 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_69832 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_69832 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_69832 .w-richtext ol, #listify_stacks_in_69832 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_69832 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_69832 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_69832 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_69832 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_69832 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_69832 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_69832 .w-richtext figure[data-rt-type="video"] > div:before {
      content: '';
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    #listify_stacks_in_69832 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_69832 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_69832 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_69832 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_69832 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_69832 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_69832 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_69832 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_69832 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_69832 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_69832 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_69832 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_69832 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_69832 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_69832 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_69832 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_69832 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_69832 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_69832 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_69832 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_69832 .w-richtext figure.w-richtext-align-fullwidth {
      width: 100%;
      max-width: 100%;
      text-align: center;
      clear: both;
      display: block;
      margin-right: auto;
      margin-left: auto; }
      #listify_stacks_in_69832 .w-richtext figure.w-richtext-align-fullwidth > div {
        display: inline-block;
        /* padding-bottom is used for aspect ratios in video figures
           *  we want the div to inherit that so hover/selection borders in the designer-canvas
           *  fit right */
        padding-bottom: inherit; }
      #listify_stacks_in_69832 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_69832 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_69832 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_69832 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_69832 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_69832 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_69832 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_69832 .w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto; }
    #listify_stacks_in_69832 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_69832 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_69832 .w--nav-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px; }
  #listify_stacks_in_69832 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_69832 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_69832 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_69832 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_69832 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_69832 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_69832 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_69832 .w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #listify_stacks_in_69832 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_69832 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_69832 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_69832 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_69832 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_69832 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_69832 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_69832 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_69832 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_69832 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_69832 .w-tabs {
    position: relative; }
    #listify_stacks_in_69832 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_69832 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_69832 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_69832 .w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd; }
    #listify_stacks_in_69832 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_69832 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_69832 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_69832 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_69832 .w-tab-link {
      display: block; } }
  #listify_stacks_in_69832 .w-ix-emptyfix:after {
    content: ""; }

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

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  #listify_stacks_in_69832 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_69832 .w-dyn-bind-empty, #listify_stacks_in_69832 .w-condition-invisible {
    display: none !important; }

.list-container {
  margin-top: 0px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex; }

.section {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 0px;
  position: absolute;
  padding-bottom: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox; }
  .section.main {
    display: none; }

.container {
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center; }

#listify_stacks_in_69832 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_69832 .list {
    overflow: hidden;
    margin: 0px 0px 10px 0px;
    padding: 0px 10px 10px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_69832 .list-item {
    list-style-type: none;
    margin-bottom: 5px; }
    #listify_stacks_in_69832 .list-item ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69832 .list-item ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69832 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69832 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69832 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69832 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69832 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69832 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69832 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69832 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 15px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_69832 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_69832 .list-item-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 0px auto 0px auto;
    padding: 0px 8px 8px 8px;
    border-radius: 5px;
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_69832 .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_69832 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_69832 .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_69832 .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -ms-grid-row-align: center;
        align-self: center;
    word-wrap: break-word;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 16px;
    line-height: 22px;
    font-family: inherit;
    /*  */
    /*  */
    /*  */
    font-family: "Roboto";
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_69832 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_69832 .list-item-inner {
  margin: 0px 0px 10px 0px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_69832.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_69832.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_69832.hide-d {
    display: none; } }

/*  */
#stacks_in_69919 .primary,#stacks_in_69919 .hp-img{display:inline-block}#stacks_in_69919 .hp-img.leader{vertical-align:middle;margin-top:-8px;margin-right:8px;height:20px}@media screen and (min-width:640px){#stacks_in_69919 .hp-img.leader{height:30px}}#stacks_in_69919 .hp-img.leader.toggle-off,#stacks_in_69919 .hp-img.leader.toggle-Off,#stacks_in_69919 .hp-img.leader.toggle-OFF,#stacks_in_69919 .hp-img.leader.toggle-NO,#stacks_in_69919 .hp-img.leader.toggle-No,#stacks_in_69919 .hp-img.leader.toggle-no,#stacks_in_69919 .hp-img.leader.toggle-false{display:none}


#stacks_in_69919 {
	margin: 0px 0px 10px 0px;
}
#stacks_in_69759_1{visibility:hidden}
/* FiveShadowThing by RapidWeaver Central  */

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

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

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

/* Shadow Style 0 - Both Shadows */

#stacks_in_69759_2 .shadow-style0stacks_in_69759_2 {
	position: relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 0 3px 15px 3px;
	background: #FFFEF9;
}

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

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

/* Shadow Style 1 - Left Shadow */

#stacks_in_69759_2 .shadow-style1stacks_in_69759_2 {
	position: relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 0 3px 15px 3px;
	background: #FFFEF9;
}

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

/* Shadow Style 2 - Right Shadow */

#stacks_in_69759_2 .shadow-style2stacks_in_69759_2 {
	position: relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 0 3px 15px 3px;
	background: #FFFEF9;
}

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

/* Shadow Style 3 - Inset */

#stacks_in_69759_2 .shadow-style3stacks_in_69759_2 {
	position: relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 0 3px 15px 3px;
	background: #FFFEF9;
}

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

#stacks_in_69759_2 .shadow-style4stacks_in_69759_2 {
	position: relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 0 3px 15px 3px;
	background: #FFFEF9;
}

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

/* Shadow Style 5 - Side Curves */

#stacks_in_69759_2 .shadow-style5stacks_in_69759_2 {
    position:relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 3px 15px 3px 15px;
	background: #FFFEF9;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	    	box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

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

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

#stacks_in_69759_2 .shadow-style5stacks_in_69759_2:before {
    right:0;
}

/* Shadow Style 6 - Left Side Curve */

#stacks_in_69759_2 .shadow-style6stacks_in_69759_2 {
   position:relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 3px 3px 3px 15px;
	background: #FFFEF9;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	    	box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

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

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

/* Shadow Style 7 - Right Side Curve */

#stacks_in_69759_2 .shadow-style7stacks_in_69759_2 {
   position:relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 3px 15px 3px 3px;
	background: #FFFEF9;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	    	box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

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

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

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

#stacks_in_69759_2 .shadow-style8stacks_in_69759_2 {
   position:relative;
	width: px;
	height: auto;
	padding: 0;
	border: 1px solid #D1D1D1;
	margin: 15px 3px;
	background: #FFFEF9;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	    	box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

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

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

/* Shadow Style 9 - Divider Line 1 */

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

#stacks_in_69759_2 .shadow-style9stacks_in_69759_2 span {
	text-align: center !important;
}

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

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

/* Shadow Style 10 - Divider Line 2 */

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



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



#stacks_in_69759_3 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_69759_3 .jwresp_col{float:none} #stacks_in_69759_3 #jwresp_col2_stacks_in_69759_3{position:relative;margin:0 auto;width:34%;float:none}#stacks_in_69759_3 #jwresp_col1_stacks_in_69759_3,#stacks_in_69759_3 #jwresp_col3_stacks_in_69759_3{width:33%}#stacks_in_69759_3 #jwresp_col1_stacks_in_69759_3{float:left}#stacks_in_69759_3 #jwresp_col3_stacks_in_69759_3{float:right} @media screen and (max-width:770px){#stacks_in_69759_3 #jwresp_col1_stacks_in_69759_3,#stacks_in_69759_3 #jwresp_col3_stacks_in_69759_3{margin-bottom:20px}#stacks_in_69759_3 #jwresp_col1_stacks_in_69759_3{width:50%}#stacks_in_69759_3 #jwresp_col3_stacks_in_69759_3{width:50%}#stacks_in_69759_3 #jwresp_col2_stacks_in_69759_3{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_69759_3 #jwresp_col1_stacks_in_69759_3,#stacks_in_69759_3 #jwresp_col3_stacks_in_69759_3,#stacks_in_69759_3 #jwresp_col2_stacks_in_69759_3{float:none;width:100%;display:block}#stacks_in_69759_3 #jwresp_col1_stacks_in_69759_3,#stacks_in_69759_3 #jwresp_col3_stacks_in_69759_3{margin-bottom:20px}} 

#stacks_in_69759_3 {
    background-image: url("BB19F758-365E-4812-9A8E-BE6555C09CEA.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 15px 30px 15px 30px;
}

#stacks_in_69759_4 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width: 0px 0px 1px 0px;
	margin: 0px 10px 20px 0px;
	padding: 0px 10px 10px 0px;
}

#stacks_out_69759_4 {
	width: 250px;
}
/* LinkListerThing Stack— B3: Bigfoot Responsive by RapidWeaver Central */




/* LINK LISTS 
====================== */


#stacks_in_69759_6 #linklisterThingstacks_in_69759_6 {
	display: block;
	position: relative;
	width: 100%;
	overflow: hidden;
  	-webkit-backface-visibility: hidden;
  	-webkit-transform: rotate(0deg) skewY(0deg);
}

#stacks_in_69759_6 #listthingstacks_in_69759_6 {
	display: block;
	position: relative;
}

#stacks_in_69759_6 #listthingstacks_in_69759_6 ul {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

#stacks_in_69759_6 #listthingstacks_in_69759_6 li {
	
	border-bottom: 1px solid #CEC6B7;
 		
	color: #241D0C;
	font-size: 100%;
	margin: 0;
	padding: 0 0 0 20px;
	position: relative;
	text-decoration:none;
	line-height: 30px;
}

#stacks_in_69759_6 #listthingstacks_in_69759_6 li a {
	color: #241D0C;
	text-decoration:none;
}

#stacks_in_69759_6 #listthingstacks_in_69759_6 li:hover, #stacks_in_69759_6 #listthingstacks_in_69759_6 li a:hover, #stacks_in_69759_6 #listthingstacks_in_69759_6 li:hover a  {
	text-decoration:none;
	color: #000000 !important;
}

#stacks_in_69759_6 .icon-bookmark {
	
	color:  #241D0C !important;
	font-size: 100%;
 		
}

#stacks_in_69759_6  .text_padding_left a {
	padding-left: 10px;
	color:  #241D0C;
}

#stacks_in_69759_6 #listthingstacks_in_69759_6 li:hover span.icon-bookmark, #stacks_in_69759_6 #listthingstacks_in_69759_6 li:hover  span.text_padding_left    {
	color: #000000 !important;
}

/* LINK EFFECTS 
====================== */

/*  0. No Background  */

.hover_effect0stacks_in_69759_6 {
	background: transparent;
}

/*  1. Rollover   */

.hover_effect1stacks_in_69759_6 {
	background: #A1EBF9;
}

.hover_effect1stacks_in_69759_6:hover {
	background: #DA4453;
}



/*  4.  Brackets Effect  */

.hover_effect4stacks_in_69759_6  {
	position: relative;
	padding: 0;
 	-webkit-backface-visibility: hidden;
  	-webkit-transform: rotate(0deg) skewY(0deg);
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
    		 box-sizing: border-box;
}

.hover_effect4stacks_in_69759_6 a::before,
.hover_effect4stacks_in_69759_6 a::after {
	display: inline-block;
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
	   -moz-transition: -moz-transform 0.3s, opacity 0.2s;
			transition: transform 0.3s, opacity 0.2s;
}

.hover_effect4stacks_in_69759_6 a::before {
	margin-right: 10px;
	content: '[';
	-webkit-transform: translateX(20px);
	   -moz-transform: translateX(20px);
			transform: translateX(20px);
}

.hover_effect4stacks_in_69759_6 a::after {
	margin-left: 10px;
	content: ']';
	-webkit-transform: translateX(-20px);
	   -moz-transform: translateX(-20px);
			transform: translateX(-20px);
}

.hover_effect4stacks_in_69759_6 a:hover::before,
.hover_effect4stacks_in_69759_6 a:hover::after,
.hover_effect4stacks_in_69759_6 a:focus::before,
.hover_effect4stacks_in_69759_6 a:focus::after {
	opacity: 1;
	color: ;
	-webkit-transform: translateX(0px);
	   -moz-transform: translateX(0px);
			transform: translateX(0px);
}

/*  5. Animated  Slide Effect */

.hover_effect5stacks_in_69759_6 a:hover {
 	text-decoration: none;
}

.hover_effect5stacks_in_69759_6 a:active {
 	text-decoration: none;
}

.hover_effect5stacks_in_69759_6 a:before, 
.hover_effect5stacks_in_69759_6 a:after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 100%;
	width: 0;
	height: 100%;
	background: #DA4453;
	-webkit-transition: width 300ms ease;
	transition: width 300ms ease;
	z-index: -1;
}

.hover_effect5stacks_in_69759_6 a:after {
	left: 100%;
	left: 0;
}

.hover_effect5stacks_in_69759_6 a:hover:before, 
.hover_effect5stacks_in_69759_6 a:hover:after {
	width: 100%;
}

/*  6 Sandwich  Effect */

.hover_effect6stacks_in_69759_6 {
}

.hover_effect6stacks_in_69759_6 a {
	padding: 10px 10px 10px 0;
	color: #241D0C;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

.hover_effect6stacks_in_69759_6 a::before,
.hover_effect6stacks_in_69759_6 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #241D0C;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.hover_effect6stacks_in_69759_6 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.hover_effect6stacks_in_69759_6 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.hover_effect6stacks_in_69759_6 a:hover,
.hover_effect6stacks_in_69759_6 a:focus {
	color: #fff;
}

.hover_effect6stacks_in_69759_6 a:hover::before,
.hover_effect6stacks_in_69759_6 a:focus::before,
.hover_effect6stacks_in_69759_6 a:hover::after,
.hover_effect6stacks_in_69759_6 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

/*
*
* ## Entypo 
* Copyright (C) 2012 by Daniel Bruce
* Author:    Daniel Bruce
* License:  CC BY-SA (http://creativecommons.org/licenses/by-sa/2.0/)
* Homepage:  http://www.entypo.com
*
* ## Zocial 
* Copyright (C) 2012 by Sam Collins
* Author:    Sam Collins
* License:   MIT (http://opensource.org/licenses/mit-license.php)
* Homepage:  http://zocial.smcllns.com/
*
*/

/* EntypoThing Fonts */         


@font-face {
  font-family: 'entypothing';
  src: url('../files/font/entypothing.eot?24089826');
  src: url('../files/font/entypothing.eot?24089826#iefix') format('embedded-opentype'),
       url('../files/font/entypothing.woff?24089826') format('woff'),
       url('../files/font/entypothing.ttf?24089826') format('truetype'),
       url('../files/font/entypothing.svg?24089826#entypothing') format('svg');
  font-weight: normal;
  font-style: normal;
}
 
  #stacks_in_69759_6 [class^="icon-bookmark"]:before, #stacks_in_69759_6 [class*="icon-bookmark"]:before {
  font-family: "entypothing";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height:  30px;
  margin-left: .2em;
}
 
.icon-note:before { content: '\e83d'; } /* 'Ó†Ω' */
.icon-stackoverflow:before { content: '\e83c'; } /* 'Ó†º' */
.icon-music:before { content: '\e84a'; } /* 'Ó°ä' */
.icon-search:before { content: '\e84b'; } /* 'Ó°ã' */
.icon-flashlight:before { content: '\e84c'; } /* 'Ó°å' */
.icon-mail:before { content: '\e84d'; } /* 'Ó°ç' */
.icon-heart:before { content: '\e84e'; } /* 'Ó°é' */
.icon-heart-empty:before { content: '\e84f'; } /* 'Ó°è' */
.icon-star:before { content: '\e850'; } /* 'Ó°ê' */
.icon-star-empty:before { content: '\e851'; } /* 'Ó°ë' */
.icon-user:before { content: '\e852'; } /* 'Ó°í' */
.icon-users:before { content: '\e853'; } /* 'Ó°ì' */
.icon-user-add:before { content: '\e854'; } /* 'Ó°î' */
.icon-video:before { content: '\e855'; } /* 'Ó°ï' */
.icon-picture:before { content: '\e856'; } /* 'Ó°ñ' */
.icon-camera:before { content: '\e848'; } /* 'Ó°à' */
.icon-layout:before { content: '\e845'; } /* 'Ó°Ö' */
.icon-menu:before { content: '\e844'; } /* 'Ó°Ñ' */
.icon-check:before { content: '\e841'; } /* 'Ó°Å' */
.icon-cancel:before { content: '\e83f'; } /* 'Ó†ø' */
.icon-cancel-circled:before { content: '\e865'; } /* 'Ó°•' */
.icon-cancel-squared:before { content: '\e864'; } /* 'Ó°§' */
.icon-plus:before { content: '\e863'; } /* 'Ó°£' */
.icon-plus-circled:before { content: '\e862'; } /* 'Ó°¢' */
.icon-plus-squared:before { content: '\e861'; } /* 'Ó°°' */
.icon-minus:before { content: '\e860'; } /* 'Ó°†' */
.icon-minus-circled:before { content: '\e85f'; } /* 'Ó°ü' */
.icon-minus-squared:before { content: '\e85e'; } /* 'Ó°û' */
.icon-help:before { content: '\e85d'; } /* 'Ó°ù' */
.icon-help-circled:before { content: '\e85c'; } /* 'Ó°ú' */
.icon-info:before { content: '\e85b'; } /* 'Ó°õ' */
.icon-info-circled:before { content: '\e85a'; } /* 'Ó°ö' */
.icon-back:before { content: '\e859'; } /* 'Ó°ô' */
.icon-home:before { content: '\e858'; } /* 'Ó°ò' */
.icon-link:before { content: '\e857'; } /* 'Ó°ó' */
.icon-attach:before { content: '\e847'; } /* 'Ó°á' */
.icon-lock:before { content: '\e846'; } /* 'Ó°Ü' */
.icon-lock-open:before { content: '\e843'; } /* 'Ó°É' */
.icon-eye:before { content: '\e842'; } /* 'Ó°Ç' */
.icon-tag:before { content: '\e840'; } /* 'Ó°Ä' */
.icon-bookmark:before { content: '\e866'; } /* 'Ó°¶' */
.icon-bookmarks:before { content: '\e867'; } /* 'Ó°ß' */
.icon-flag:before { content: '\e868'; } /* 'Ó°®' */
.icon-thumbs-up:before { content: '\e869'; } /* 'Ó°©' */
.icon-thumbs-down:before { content: '\e874'; } /* 'Ó°¥' */
.icon-download:before { content: '\e877'; } /* 'Ó°∑' */
.icon-upload:before { content: '\e878'; } /* 'Ó°∏' */
.icon-upload-cloud:before { content: '\e87c'; } /* 'Ó°º' */
.icon-reply:before { content: '\e87d'; } /* 'Ó°Ω' */
.icon-reply-all:before { content: '\e883'; } /* 'Ó¢É' */
.icon-forward:before { content: '\e886'; } /* 'Ó¢Ü' */
.icon-quote:before { content: '\e887'; } /* 'Ó¢á' */
.icon-code:before { content: '\e88c'; } /* 'Ó¢å' */
.icon-export:before { content: '\e88d'; } /* 'Ó¢ç' */
.icon-pencil:before { content: '\e892'; } /* 'Ó¢í' */
.icon-feather:before { content: '\e893'; } /* 'Ó¢ì' */
.icon-print-1:before { content: '\e898'; } /* 'Ó¢ò' */
.icon-retweet:before { content: '\e899'; } /* 'Ó¢ô' */
.icon-keyboard:before { content: '\e89e'; } /* 'Ó¢û' */
.icon-comment:before { content: '\e89f'; } /* 'Ó¢ü' */
.icon-chat:before { content: '\e86a'; } /* 'Ó°™' */
.icon-bell:before { content: '\e871'; } /* 'Ó°±' */
.icon-attention:before { content: '\e86d'; } /* 'Ó°≠' */
.icon-alert:before { content: '\e870'; } /* 'Ó°∞' */
.icon-vcard:before { content: '\e873'; } /* 'Ó°≥' */
.icon-address:before { content: '\e872'; } /* 'Ó°≤' */
.icon-location:before { content: '\e879'; } /* 'Ó°π' */
.icon-map:before { content: '\e87e'; } /* 'Ó°æ' */
.icon-direction:before { content: '\e87f'; } /* 'Ó°ø' */
.icon-compass:before { content: '\e882'; } /* 'Ó¢Ç' */
.icon-cup:before { content: '\e884'; } /* 'Ó¢Ñ' */
.icon-trash:before { content: '\e888'; } /* 'Ó¢à' */
.icon-doc:before { content: '\e88b'; } /* 'Ó¢ã' */
.icon-docs:before { content: '\e88e'; } /* 'Ó¢é' */
.icon-doc-landscape:before { content: '\e891'; } /* 'Ó¢ë' */
.icon-doc-text:before { content: '\e894'; } /* 'Ó¢î' */
.icon-doc-text-inv:before { content: '\e897'; } /* 'Ó¢ó' */
.icon-newspaper:before { content: '\e89a'; } /* 'Ó¢ö' */
.icon-book-open:before { content: '\e89d'; } /* 'Ó¢ù' */
.icon-book:before { content: '\e8a0'; } /* 'Ó¢†' */
.icon-folder:before { content: '\e86b'; } /* 'Ó°´' */
.icon-archive:before { content: '\e86c'; } /* 'Ó°¨' */
.icon-box:before { content: '\e86e'; } /* 'Ó°Æ' */
.icon-rss-1:before { content: '\e86f'; } /* 'Ó°Ø' */
.icon-phone:before { content: '\e875'; } /* 'Ó°µ' */
.icon-cog:before { content: '\e876'; } /* 'Ó°∂' */
.icon-tools:before { content: '\e87b'; } /* 'Ó°ª' */
.icon-share:before { content: '\e87a'; } /* 'Ó°∫' */
.icon-shareable:before { content: '\e880'; } /* 'Ó¢Ä' */
.icon-basket:before { content: '\e881'; } /* 'Ó¢Å' */
.icon-bag:before { content: '\e885'; } /* 'Ó¢Ö' */
.icon-calendar-1:before { content: '\e889'; } /* 'Ó¢â' */
.icon-login:before { content: '\e88a'; } /* 'Ó¢ä' */
.icon-logout:before { content: '\e88f'; } /* 'Ó¢è' */
.icon-mic:before { content: '\e890'; } /* 'Ó¢ê' */
.icon-mute:before { content: '\e895'; } /* 'Ó¢ï' */
.icon-sound:before { content: '\e896'; } /* 'Ó¢ñ' */
.icon-volume:before { content: '\e89b'; } /* 'Ó¢õ' */
.icon-clock:before { content: '\e89c'; } /* 'Ó¢ú' */
.icon-hourglass:before { content: '\e8a1'; } /* 'Ó¢°' */
.icon-lamp:before { content: '\e8b5'; } /* 'Ó¢µ' */
.icon-light-down:before { content: '\e8b4'; } /* 'Ó¢¥' */
.icon-light-up:before { content: '\e8b3'; } /* 'Ó¢≥' */
.icon-adjust:before { content: '\e8b2'; } /* 'Ó¢≤' */
.icon-block:before { content: '\e8b1'; } /* 'Ó¢±' */
.icon-resize-full:before { content: '\e8b0'; } /* 'Ó¢∞' */
.icon-resize-small:before { content: '\e8af'; } /* 'Ó¢Ø' */
.icon-popup:before { content: '\e8ae'; } /* 'Ó¢Æ' */
.icon-publish:before { content: '\e8ad'; } /* 'Ó¢≠' */
.icon-window:before { content: '\e8ac'; } /* 'Ó¢¨' */
.icon-arrow-combo:before { content: '\e8ab'; } /* 'Ó¢´' */
.icon-down-circled:before { content: '\e8aa'; } /* 'Ó¢™' */
.icon-left-circled:before { content: '\e8a9'; } /* 'Ó¢©' */
.icon-right-circled:before { content: '\e8a8'; } /* 'Ó¢®' */
.icon-up-circled:before { content: '\e8a7'; } /* 'Ó¢ß' */
.icon-down-open:before { content: '\e8a6'; } /* 'Ó¢¶' */
.icon-left-open:before { content: '\e8a5'; } /* 'Ó¢•' */
.icon-right-open:before { content: '\e8a4'; } /* 'Ó¢§' */
.icon-up-open:before { content: '\e8a3'; } /* 'Ó¢£' */
.icon-down-open-mini:before { content: '\e8a2'; } /* 'Ó¢¢' */
.icon-left-open-mini:before { content: '\e8b6'; } /* 'Ó¢∂' */
.icon-right-open-mini:before { content: '\e8b7'; } /* 'Ó¢∑' */
.icon-up-open-mini:before { content: '\e8b8'; } /* 'Ó¢∏' */
.icon-down-open-big:before { content: '\e8b9'; } /* 'Ó¢π' */
.icon-left-open-big:before { content: '\e8ba'; } /* 'Ó¢∫' */
.icon-right-open-big:before { content: '\e8bb'; } /* 'Ó¢ª' */
.icon-up-open-big:before { content: '\e8bc'; } /* 'Ó¢º' */
.icon-down:before { content: '\e8bd'; } /* 'Ó¢Ω' */
.icon-left:before { content: '\e8be'; } /* 'Ó¢æ' */
.icon-right:before { content: '\e8bf'; } /* 'Ó¢ø' */
.icon-up:before { content: '\e8c0'; } /* 'Ó£Ä' */
.icon-down-dir:before { content: '\e8c1'; } /* 'Ó£Å' */
.icon-left-dir:before { content: '\e8c2'; } /* 'Ó£Ç' */
.icon-right-dir:before { content: '\e8c3'; } /* 'Ó£É' */
.icon-up-dir:before { content: '\e8c4'; } /* 'Ó£Ñ' */
.icon-down-bold:before { content: '\e8c5'; } /* 'Ó£Ö' */
.icon-left-bold:before { content: '\e8c6'; } /* 'Ó£Ü' */
.icon-right-bold:before { content: '\e8c7'; } /* 'Ó£á' */
.icon-up-bold:before { content: '\e8c8'; } /* 'Ó£à' */
.icon-down-thin:before { content: '\e8c9'; } /* 'Ó£â' */
.icon-left-thin:before { content: '\e8dd'; } /* 'Ó£ù' */
.icon-right-thin:before { content: '\e8dc'; } /* 'Ó£ú' */
.icon-up-thin:before { content: '\e8db'; } /* 'Ó£õ' */
.icon-ccw:before { content: '\e8da'; } /* 'Ó£ö' */
.icon-cw:before { content: '\e8d9'; } /* 'Ó£ô' */
.icon-arrows-ccw:before { content: '\e8d8'; } /* 'Ó£ò' */
.icon-level-down:before { content: '\e8d7'; } /* 'Ó£ó' */
.icon-level-up:before { content: '\e8d6'; } /* 'Ó£ñ' */
.icon-shuffle:before { content: '\e8d5'; } /* 'Ó£ï' */
.icon-loop:before { content: '\e8d4'; } /* 'Ó£î' */
.icon-switch:before { content: '\e8d3'; } /* 'Ó£ì' */
.icon-play:before { content: '\e8d2'; } /* 'Ó£í' */
.icon-stop:before { content: '\e8d1'; } /* 'Ó£ë' */
.icon-pause:before { content: '\e8d0'; } /* 'Ó£ê' */
.icon-record:before { content: '\e8cf'; } /* 'Ó£è' */
.icon-to-end:before { content: '\e8ce'; } /* 'Ó£é' */
.icon-to-start:before { content: '\e8cd'; } /* 'Ó£ç' */
.icon-fast-forward:before { content: '\e8cc'; } /* 'Ó£å' */
.icon-fast-backward:before { content: '\e8cb'; } /* 'Ó£ã' */
.icon-progress-0:before { content: '\e8ca'; } /* 'Ó£ä' */
.icon-progress-1:before { content: '\e8de'; } /* 'Ó£û' */
.icon-progress-2:before { content: '\e8df'; } /* 'Ó£ü' */
.icon-progress-3:before { content: '\e8e0'; } /* 'Ó£†' */
.icon-target:before { content: '\e8e1'; } /* 'Ó£°' */
.icon-palette:before { content: '\e8e2'; } /* 'Ó£¢' */
.icon-list:before { content: '\e8e3'; } /* 'Ó££' */
.icon-list-add:before { content: '\e8e4'; } /* 'Ó£§' */
.icon-signal:before { content: '\e8e5'; } /* 'Ó£•' */
.icon-trophy:before { content: '\e8e6'; } /* 'Ó£¶' */
.icon-battery:before { content: '\e8e7'; } /* 'Ó£ß' */
.icon-back-in-time:before { content: '\e8e8'; } /* 'Ó£®' */
.icon-monitor:before { content: '\e8e9'; } /* 'Ó£©' */
.icon-note-beamed:before { content: '\e849'; } /* 'Ó°â' */
.icon-network:before { content: '\e8eb'; } /* 'Ó£´' */
.icon-cd:before { content: '\e8ec'; } /* 'Ó£¨' */
.icon-inbox:before { content: '\e8ed'; } /* 'Ó£≠' */
.icon-install:before { content: '\e8ee'; } /* 'Ó£Æ' */
.icon-globe:before { content: '\e8ef'; } /* 'Ó£Ø' */
.icon-cloud:before { content: '\e8f0'; } /* 'Ó£∞' */
.icon-cloud-thunder:before { content: '\e8f1'; } /* 'Ó£±' */
.icon-flash:before { content: '\e905'; } /* 'Ó§Ö' */
.icon-moon:before { content: '\e904'; } /* 'Ó§Ñ' */
.icon-flight:before { content: '\e903'; } /* 'Ó§É' */
.icon-paper-plane:before { content: '\e902'; } /* 'Ó§Ç' */
.icon-leaf:before { content: '\e901'; } /* 'Ó§Å' */
.icon-lifebuoy:before { content: '\e900'; } /* 'Ó§Ä' */
.icon-mouse:before { content: '\e8ff'; } /* 'Ó£ø' */
.icon-briefcase:before { content: '\e8fe'; } /* 'Ó£æ' */
.icon-suitcase:before { content: '\e8fd'; } /* 'Ó£Ω' */
.icon-dot:before { content: '\e8fb'; } /* 'Ó£ª' */
.icon-dot-2:before { content: '\e8fc'; } /* 'Ó£º' */
.icon-dot-3:before { content: '\e8fa'; } /* 'Ó£∫' */
.icon-brush:before { content: '\e8f9'; } /* 'Ó£π' */
.icon-magnet:before { content: '\e8f8'; } /* 'Ó£∏' */
.icon-infinity:before { content: '\e8f7'; } /* 'Ó£∑' */
.icon-erase:before { content: '\e8f6'; } /* 'Ó£∂' */
.icon-chart-pie:before { content: '\e8f5'; } /* 'Ó£µ' */
.icon-chart-line:before { content: '\e8f4'; } /* 'Ó£¥' */
.icon-chart-bar:before { content: '\e8f3'; } /* 'Ó£≥' */
.icon-chart-area:before { content: '\e8f2'; } /* 'Ó£≤' */
.icon-tape:before { content: '\e906'; } /* 'Ó§Ü' */
.icon-graduation-cap:before { content: '\e907'; } /* 'Ó§á' */
.icon-language:before { content: '\e908'; } /* 'Ó§à' */
.icon-ticket:before { content: '\e909'; } /* 'Ó§â' */
.icon-water:before { content: '\e90a'; } /* 'Ó§ä' */
.icon-droplet:before { content: '\e90b'; } /* 'Ó§ã' */
.icon-air:before { content: '\e90c'; } /* 'Ó§å' */
.icon-credit-card:before { content: '\e90d'; } /* 'Ó§ç' */
.icon-floppy:before { content: '\e90e'; } /* 'Ó§é' */
.icon-clipboard:before { content: '\e90f'; } /* 'Ó§è' */
.icon-megaphone:before { content: '\e910'; } /* 'Ó§ê' */
.icon-database:before { content: '\e911'; } /* 'Ó§ë' */
.icon-drive:before { content: '\e912'; } /* 'Ó§í' */
.icon-bucket:before { content: '\e913'; } /* 'Ó§ì' */
.icon-thermometer:before { content: '\e914'; } /* 'Ó§î' */
.icon-key:before { content: '\e915'; } /* 'Ó§ï' */
.icon-flow-cascade:before { content: '\e916'; } /* 'Ó§ñ' */
.icon-flow-branch:before { content: '\e917'; } /* 'Ó§ó' */
.icon-flow-tree:before { content: '\e918'; } /* 'Ó§ò' */
.icon-flow-line:before { content: '\e919'; } /* 'Ó§ô' */
.icon-flow-parallel:before { content: '\e92d'; } /* 'Ó§≠' */
.icon-rocket:before { content: '\e92c'; } /* 'Ó§¨' */
.icon-gauge:before { content: '\e92b'; } /* 'Ó§´' */
.icon-traffic-cone:before { content: '\e92a'; } /* 'Ó§™' */
.icon-cc-1:before { content: '\e929'; } /* 'Ó§©' */
.icon-cc-by:before { content: '\e928'; } /* 'Ó§®' */
.icon-cc-nc:before { content: '\e927'; } /* 'Ó§ß' */
.icon-cc-nc-eu:before { content: '\e926'; } /* 'Ó§¶' */
.icon-cc-nc-jp:before { content: '\e925'; } /* 'Ó§•' */
.icon-cc-sa:before { content: '\e924'; } /* 'Ó§§' */
.icon-cc-nd:before { content: '\e923'; } /* 'Ó§£' */
.icon-cc-pd:before { content: '\e922'; } /* 'Ó§¢' */
.icon-cc-zero:before { content: '\e921'; } /* 'Ó§°' */
.icon-cc-share:before { content: '\e920'; } /* 'Ó§†' */
.icon-cc-remix:before { content: '\e91f'; } /* 'Ó§ü' */
.icon-github-1:before { content: '\e91e'; } /* 'Ó§û' */
.icon-github-circled-1:before { content: '\e91d'; } /* 'Ó§ù' */
.icon-flickr-1:before { content: '\e91c'; } /* 'Ó§ú' */
.icon-flickr-circled:before { content: '\e91b'; } /* 'Ó§õ' */
.icon-vimeo-1:before { content: '\e91a'; } /* 'Ó§ö' */
.icon-vimeo-circled:before { content: '\e92e'; } /* 'Ó§Æ' */
.icon-twitter-1:before { content: '\e92f'; } /* 'Ó§Ø' */
.icon-twitter-circled:before { content: '\e930'; } /* 'Ó§∞' */
.icon-facebook-1:before { content: '\e931'; } /* 'Ó§±' */
.icon-facebook-circled:before { content: '\e932'; } /* 'Ó§≤' */
.icon-facebook-squared:before { content: '\e933'; } /* 'Ó§≥' */
.icon-gplus-1:before { content: '\e934'; } /* 'Ó§¥' */
.icon-gplus-circled:before { content: '\e935'; } /* 'Ó§µ' */
.icon-pinterest-1:before { content: '\e936'; } /* 'Ó§∂' */
.icon-pinterest-circled:before { content: '\e937'; } /* 'Ó§∑' */
.icon-tumblr-1:before { content: '\e938'; } /* 'Ó§∏' */
.icon-tumblr-circled:before { content: '\e939'; } /* 'Ó§π' */
.icon-linkedin-1:before { content: '\e93a'; } /* 'Ó§∫' */
.icon-linkedin-circled:before { content: '\e93b'; } /* 'Ó§ª' */
.icon-dribbble-1:before { content: '\e93c'; } /* 'Ó§º' */
.icon-dribbble-circled:before { content: '\e93d'; } /* 'Ó§Ω' */
.icon-stumbleupon-1:before { content: '\e93e'; } /* 'Ó§æ' */
.icon-stumbleupon-circled:before { content: '\e93f'; } /* 'Ó§ø' */
.icon-lastfm:before { content: '\e940'; } /* 'Ó•Ä' */
.icon-lastfm-circled:before { content: '\e941'; } /* 'Ó•Å' */
.icon-rdio:before { content: '\e954'; } /* 'Ó•î' */
.icon-rdio-circled:before { content: '\e953'; } /* 'Ó•ì' */
.icon-spotify:before { content: '\e952'; } /* 'Ó•í' */
.icon-qq:before { content: '\e951'; } /* 'Ó•ë' */
.icon-instagram-1:before { content: '\e950'; } /* 'Ó•ê' */
.icon-dropbox-1:before { content: '\e94f'; } /* 'Ó•è' */
.icon-evernote-1:before { content: '\e94e'; } /* 'Ó•é' */
.icon-flattr:before { content: '\e94d'; } /* 'Ó•ç' */
.icon-skype-1:before { content: '\e94c'; } /* 'Ó•å' */
.icon-skype-circled:before { content: '\e94b'; } /* 'Ó•ã' */
.icon-renren:before { content: '\e94a'; } /* 'Ó•ä' */
.icon-sina-weibo:before { content: '\e949'; } /* 'Ó•â' */
.icon-paypal-1:before { content: '\e948'; } /* 'Ó•à' */
.icon-picasa:before { content: '\e947'; } /* 'Ó•á' */
.icon-soundcloud-1:before { content: '\e946'; } /* 'Ó•Ü' */
.icon-mixi:before { content: '\e945'; } /* 'Ó•Ö' */
.icon-behance:before { content: '\e944'; } /* 'Ó•Ñ' */
.icon-google-circles:before { content: '\e943'; } /* 'Ó•É' */
.icon-vkontakte:before { content: '\e942'; } /* 'Ó•Ç' */
.icon-smashing:before { content: '\e955'; } /* 'Ó•ï' */
.icon-sweden:before { content: '\e956'; } /* 'Ó•ñ' */
.icon-db-shape:before { content: '\e957'; } /* 'Ó•ó' */
.icon-logo-db:before { content: '\e83e'; } /* 'Ó†æ' */
.icon-paypal:before { content: '\e800'; } /* 'Ó†Ä' */
.icon-eventful:before { content: '\e801'; } /* 'Ó†Å' */
.icon-smashmag:before { content: '\e802'; } /* 'Ó†Ç' */
.icon-gplus:before { content: '\e803'; } /* 'Ó†É' */
.icon-wikipedia:before { content: '\e804'; } /* 'Ó†Ñ' */
.icon-calendar:before { content: '\e805'; } /* 'Ó†Ö' */
.icon-stumbleupon:before { content: '\e806'; } /* 'Ó†Ü' */
.icon-fivehundredpx:before { content: '\e807'; } /* 'Ó†á' */
.icon-pinterest:before { content: '\e808'; } /* 'Ó†à' */
.icon-w3c:before { content: '\e809'; } /* 'Ó†â' */
.icon-foursquare:before { content: '\e80a'; } /* 'Ó†ä' */
.icon-html5:before { content: '\e80b'; } /* 'Ó†ã' */
.icon-ie:before { content: '\e80c'; } /* 'Ó†å' */
.icon-call:before { content: '\e80d'; } /* 'Ó†ç' */
.icon-digg:before { content: '\e80e'; } /* 'Ó†é' */
.icon-reddit:before { content: '\e80f'; } /* 'Ó†è' */
.icon-appstore:before { content: '\e810'; } /* 'Ó†ê' */
.icon-blogger:before { content: '\e811'; } /* 'Ó†ë' */
.icon-cc:before { content: '\e812'; } /* 'Ó†í' */
.icon-dribbble:before { content: '\e813'; } /* 'Ó†ì' */
.icon-evernote:before { content: '\e814'; } /* 'Ó†î' */
.icon-flickr:before { content: '\e815'; } /* 'Ó†ï' */
.icon-google:before { content: '\e816'; } /* 'Ó†ñ' */
.icon-instapaper:before { content: '\e817'; } /* 'Ó†ó' */
.icon-weibo:before { content: '\e818'; } /* 'Ó†ò' */
.icon-linkedin:before { content: '\e826'; } /* 'Ó†¶' */
.icon-disqus:before { content: '\e825'; } /* 'Ó†•' */
.icon-rss:before { content: '\e824'; } /* 'Ó†§' */
.icon-skype:before { content: '\e823'; } /* 'Ó†£' */
.icon-twitter:before { content: '\e822'; } /* 'Ó†¢' */
.icon-youtube:before { content: '\e821'; } /* 'Ó†°' */
.icon-vimeo:before { content: '\e820'; } /* 'Ó††' */
.icon-windows:before { content: '\e81f'; } /* 'Ó†ü' */
.icon-xing:before { content: '\e81e'; } /* 'Ó†û' */
.icon-yahoo:before { content: '\e81d'; } /* 'Ó†ù' */
.icon-email:before { content: '\e81c'; } /* 'Ó†ú' */
.icon-macstore:before { content: '\e81b'; } /* 'Ó†õ' */
.icon-podcast:before { content: '\e81a'; } /* 'Ó†ö' */
.icon-amazon:before { content: '\e819'; } /* 'Ó†ô' */
.icon-cloudapp:before { content: '\e827'; } /* 'Ó†ß' */
.icon-dropbox:before { content: '\e828'; } /* 'Ó†®' */
.icon-ebay:before { content: '\e829'; } /* 'Ó†©' */
.icon-facebook:before { content: '\e82a'; } /* 'Ó†™' */
.icon-github:before { content: '\e82b'; } /* 'Ó†´' */
.icon-github-circled:before { content: '\e82c'; } /* 'Ó†¨' */
.icon-googleplay:before { content: '\e82d'; } /* 'Ó†≠' */
.icon-itunes:before { content: '\e82e'; } /* 'Ó†Æ' */
.icon-gmail:before { content: '\e82f'; } /* 'Ó†Ø' */
.icon-soundcloud:before { content: '\e830'; } /* 'Ó†∞' */
.icon-tumblr:before { content: '\e831'; } /* 'Ó†±' */
.icon-eventbrite:before { content: '\e83b'; } /* 'Ó†ª' */
.icon-scribd:before { content: '\e83a'; } /* 'Ó†∫' */
.icon-posterous:before { content: '\e839'; } /* 'Ó†π' */
.icon-stripe:before { content: '\e838'; } /* 'Ó†∏' */
.icon-cart:before { content: '\e837'; } /* 'Ó†∑' */
.icon-print:before { content: '\e836'; } /* 'Ó†∂' */
.icon-instagram:before { content: '\e835'; } /* 'Ó†µ' */
.icon-appnet:before { content: '\e834'; } /* 'Ó†¥' */
.icon-buffer:before { content: '\e833'; } /* 'Ó†≥' */
.icon-pocket:before { content: '\e832'; } /* 'Ó†≤' */
.icon-mobile:before { content: '\e8ea'; } /* 'Ó£™' */
#stacks_in_69759_19 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width: 0px 0px 1px 0px;
	margin: 0px 10px 20px 0px;
	padding: 0px 10px 10px 0px;
}

#stacks_out_69759_19 {
	width: 250px;
}
/*
* Responsive Bigfoot 1 Column
* Adapted for Responsive Bigfoot by RapidWeaver Central 
*/

/*
*
* Lemonade v1.1
* Copyright 2013, Joey
* lemonade.im
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
*
*/


/* Targets all elements */

[#stacks_in_69759_21 class*='bit-'] {
	float: left;
	padding: 10px;
}

/* Floats last ".bit-" to the right */

[#stacks_in_69759_21 class*='bit-']:last-of-type {
	padding-right: 10px;
	float: right;
}

/* Clearfix */

#stacks_in_69759_21 .frameThing:after {
	content: "";
	display: table;
	clear: both;
}

/* Main Widths */

#stacks_in_69759_21 .bit-1 {
	width: 100%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}

#stacks_in_69759_21 .bit-2 {
	width: 50%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;}

#stacks_in_69759_21 .bit-3 {
	width: 33.33%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}

#stacks_in_69759_21 .bit-4 {
	width: 25%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}

#stacks_in_69759_21 .bit-5 {
	width: 20%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}

#stacks_in_69759_21 .bit-6 {
	width: 16.6666666667%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}


/* Landscape mobile & down
===============================*/

@media (max-width: 480px) {

#stacks_in_69759_21 .bit-1,
#stacks_in_69759_21 .bit-2,
#stacks_in_69759_21 .bit-3,
#stacks_in_69759_21 .bit-4,
#stacks_in_69759_21 .bit-5,
#stacks_in_69759_21 .bit-6 {
	width: 100%;
}

#stacks_in_69759_21 .frameThing .bit-4:nth-child(2) {
	float: right;
}

#stacks_in_69759_21 .frameThing .bit-4:nth-child(3) {
	clear: both;
	float: left;
}

#stacks_in_69759_21 .frameThing .bit-4:nth-child(4) {
	float: right;
  }
}

/* Mobile to Tablet Portrait
===============================*/

@media (min-width: 480px) and (max-width: 800px) {

#stacks_in_69759_21 .bit-4,
#stacks_in_69759_21 .bit-6 {
	width: 50%;
}

#stacks_in_69759_21 .bit-1,
#stacks_in_69759_21 .bit-2,
#stacks_in_69759_21 .bit-3,
#stacks_in_69759_21 .bit-5 {
	width: 100%;
}

}

/* Landscape Tablet to Desktop
===============================*/

@media (min-width: 800px) and (max-width: 1200px) {

#stacks_in_69759_21 .bit-2 {
	width: 100%;
}

#stacks_in_69759_21 .bit-4 {
	width: 50%;
}

}

#stacks_in_69759_21 {
	margin: 2px 0px 0px 0px;
}

#stacks_out_69759_22 {
	width: 250px;
}

#stacks_in_69759_24 {
	margin: 4px 0px 0px 0px;
}

#stacks_out_69759_24 {
	width: 250px;
}

#stacks_in_69759_25 {
	line-height: 2em;
}
/*
* Responsive Bigfoot 1 Column
* Adapted for Responsive Bigfoot by RapidWeaver Central 
*/

/*
*
* Lemonade v1.1
* Copyright 2013, Joey
* lemonade.im
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
*
*/


/* Targets all elements */

[#stacks_in_69759_27 class*='bit-'] {
	float: left;
	padding: 10px;
}

/* Floats last ".bit-" to the right */

[#stacks_in_69759_27 class*='bit-']:last-of-type {
	padding-right: 10px;
	float: right;
}

/* Clearfix */

#stacks_in_69759_27 .frameThing:after {
	content: "";
	display: table;
	clear: both;
}

/* Main Widths */

#stacks_in_69759_27 .bit-1 {
	width: 100%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}

#stacks_in_69759_27 .bit-2 {
	width: 50%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;}

#stacks_in_69759_27 .bit-3 {
	width: 33.33%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}

#stacks_in_69759_27 .bit-4 {
	width: 25%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}

#stacks_in_69759_27 .bit-5 {
	width: 20%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}

#stacks_in_69759_27 .bit-6 {
	width: 16.6666666667%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}


/* Landscape mobile & down
===============================*/

@media (max-width: 480px) {

#stacks_in_69759_27 .bit-1,
#stacks_in_69759_27 .bit-2,
#stacks_in_69759_27 .bit-3,
#stacks_in_69759_27 .bit-4,
#stacks_in_69759_27 .bit-5,
#stacks_in_69759_27 .bit-6 {
	width: 100%;
}

#stacks_in_69759_27 .frameThing .bit-4:nth-child(2) {
	float: right;
}

#stacks_in_69759_27 .frameThing .bit-4:nth-child(3) {
	clear: both;
	float: left;
}

#stacks_in_69759_27 .frameThing .bit-4:nth-child(4) {
	float: right;
  }
}

/* Mobile to Tablet Portrait
===============================*/

@media (min-width: 480px) and (max-width: 800px) {

#stacks_in_69759_27 .bit-4,
#stacks_in_69759_27 .bit-6 {
	width: 50%;
}

#stacks_in_69759_27 .bit-1,
#stacks_in_69759_27 .bit-2,
#stacks_in_69759_27 .bit-3,
#stacks_in_69759_27 .bit-5 {
	width: 100%;
}

}

/* Landscape Tablet to Desktop
===============================*/

@media (min-width: 800px) and (max-width: 1200px) {

#stacks_in_69759_27 .bit-2 {
	width: 100%;
}

#stacks_in_69759_27 .bit-4 {
	width: 50%;
}

}

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

#stacks_out_69759_28 {
	width: 250px;
}

#stacks_in_69759_30 {
	margin: 5px 0px 0px 0px;
}

#stacks_out_69759_30 {
	width: 250px;
}

#stacks_in_69759_31 {
	line-height: 2em;
}

#stacks_in_69759_33 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width: 0px 0px 1px 0px;
	margin: 55px 10px 20px 0px;
	padding: 0px 10px 10px 0px;
}
#stacks_in_69759_35>.s3_row {
	margin: 0 -2px;
}

#stacks_in_69759_35>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_69759_35>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_69759_35>.s3_row>.s3_column_right {
	width: 33.33%;
}

#stacks_in_69759_35>.s3_row>.s3_column {
	padding: 0 2px;
}








@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_69759_35>.s3_row  {
		margin: -2px 0;
	}
	#stacks_in_69759_35>.s3_row>.s3_column {
		padding: 2px 0;
		width:100%;
	}


}



/* Start GrayScale 2 stack CSS code */


 
 #stacks_in_69759_36 .grayscalenormal img {filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%);}
    
  #stacks_in_69759_36  .grayscalenormal img:hover { filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);}
    
  #stacks_in_69759_36  .grayscalereverse img {
   filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);
}
    
  #stacks_in_69759_36  .grayscalereverse img:hover {filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%);}
    
  #stacks_in_69759_36  .grayscalealways img {filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%);}
    
 #stacks_in_69759_36   .sepianormal img {-webkit-filter: sepia(100%); -moz-filter: sepia(100%);
-ms-filter: sepia(100%); -o-filter: sepia(100%);
filter: url(sepia.svg#sepia); -webkit-filter: sepia(1);
background-color: #5E2612; filter: alpha(opacity = 50);
filter: sepia(100%); zoom:1;}
    
  #stacks_in_69759_36  .sepianormal img:hover {-webkit-filter: sepia(0); -moz-filter: sepia(0);
-ms-filter: sepia(0); -o-filter: sepia(0); -webkit-filter: sepia(0);
filter: alpha(opacity = 0); filter: sepia(0); zoom:1; filter: none;
}
    
  #stacks_in_69759_36  .sepiareverse img {-webkit-filter: sepia(0); -moz-filter: sepia(0);
-ms-filter: sepia(0); -o-filter: sepia(0); -webkit-filter: sepia(0);
filter: alpha(opacity = 0); filter: sepia(0); zoom:1; filter: none;}
    
  #stacks_in_69759_36  .sepiareverse img:hover {-webkit-filter: sepia(100%); -moz-filter: sepia(100%);
-ms-filter: sepia(100%); -o-filter: sepia(100%);
filter: url(sepia.svg#sepia); -webkit-filter: sepia(1);
background-color: #5E2612; filter: alpha(opacity = 50);
filter: sepia(100%); zoom:1;}
    
  #stacks_in_69759_36  .sepiaalways img {-webkit-filter: sepia(100%); -moz-filter: sepia(100%);
-ms-filter: sepia(100%); -o-filter: sepia(100%);
filter: url(sepia.svg#sepia); -webkit-filter: sepia(1);
background-color: #5E2612; filter: alpha(opacity = 50);
filter: sepia(100%); zoom:1;}

/* End GrayScale 2 stack CSS code */#stacks_in_69759_37 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:25px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_69759_37 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_69759_37 .fluid-image.unlimited img{width:100% !important}#stacks_in_69759_37 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_69759_37 .fluid-image.align-left img{float:left}#stacks_in_69759_37 .fluid-image.align-right img{float:right}
/* Start GrayScale 2 stack CSS code */


 
 #stacks_in_69759_41 .grayscalenormal img {filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%);}
    
  #stacks_in_69759_41  .grayscalenormal img:hover { filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);}
    
  #stacks_in_69759_41  .grayscalereverse img {
   filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);
}
    
  #stacks_in_69759_41  .grayscalereverse img:hover {filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%);}
    
  #stacks_in_69759_41  .grayscalealways img {filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%);}
    
 #stacks_in_69759_41   .sepianormal img {-webkit-filter: sepia(100%); -moz-filter: sepia(100%);
-ms-filter: sepia(100%); -o-filter: sepia(100%);
filter: url(sepia.svg#sepia); -webkit-filter: sepia(1);
background-color: #5E2612; filter: alpha(opacity = 50);
filter: sepia(100%); zoom:1;}
    
  #stacks_in_69759_41  .sepianormal img:hover {-webkit-filter: sepia(0); -moz-filter: sepia(0);
-ms-filter: sepia(0); -o-filter: sepia(0); -webkit-filter: sepia(0);
filter: alpha(opacity = 0); filter: sepia(0); zoom:1; filter: none;
}
    
  #stacks_in_69759_41  .sepiareverse img {-webkit-filter: sepia(0); -moz-filter: sepia(0);
-ms-filter: sepia(0); -o-filter: sepia(0); -webkit-filter: sepia(0);
filter: alpha(opacity = 0); filter: sepia(0); zoom:1; filter: none;}
    
  #stacks_in_69759_41  .sepiareverse img:hover {-webkit-filter: sepia(100%); -moz-filter: sepia(100%);
-ms-filter: sepia(100%); -o-filter: sepia(100%);
filter: url(sepia.svg#sepia); -webkit-filter: sepia(1);
background-color: #5E2612; filter: alpha(opacity = 50);
filter: sepia(100%); zoom:1;}
    
  #stacks_in_69759_41  .sepiaalways img {-webkit-filter: sepia(100%); -moz-filter: sepia(100%);
-ms-filter: sepia(100%); -o-filter: sepia(100%);
filter: url(sepia.svg#sepia); -webkit-filter: sepia(1);
background-color: #5E2612; filter: alpha(opacity = 50);
filter: sepia(100%); zoom:1;}

/* End GrayScale 2 stack CSS code */#stacks_in_69759_42 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:25px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_69759_42 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_69759_42 .fluid-image.unlimited img{width:100% !important}#stacks_in_69759_42 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_69759_42 .fluid-image.align-left img{float:left}#stacks_in_69759_42 .fluid-image.align-right img{float:right}
/* Start GrayScale 2 stack CSS code */


 
 #stacks_in_69759_46 .grayscalenormal img {filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%);}
    
  #stacks_in_69759_46  .grayscalenormal img:hover { filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);}
    
  #stacks_in_69759_46  .grayscalereverse img {
   filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);
}
    
  #stacks_in_69759_46  .grayscalereverse img:hover {filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%);}
    
  #stacks_in_69759_46  .grayscalealways img {filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%);}
    
 #stacks_in_69759_46   .sepianormal img {-webkit-filter: sepia(100%); -moz-filter: sepia(100%);
-ms-filter: sepia(100%); -o-filter: sepia(100%);
filter: url(sepia.svg#sepia); -webkit-filter: sepia(1);
background-color: #5E2612; filter: alpha(opacity = 50);
filter: sepia(100%); zoom:1;}
    
  #stacks_in_69759_46  .sepianormal img:hover {-webkit-filter: sepia(0); -moz-filter: sepia(0);
-ms-filter: sepia(0); -o-filter: sepia(0); -webkit-filter: sepia(0);
filter: alpha(opacity = 0); filter: sepia(0); zoom:1; filter: none;
}
    
  #stacks_in_69759_46  .sepiareverse img {-webkit-filter: sepia(0); -moz-filter: sepia(0);
-ms-filter: sepia(0); -o-filter: sepia(0); -webkit-filter: sepia(0);
filter: alpha(opacity = 0); filter: sepia(0); zoom:1; filter: none;}
    
  #stacks_in_69759_46  .sepiareverse img:hover {-webkit-filter: sepia(100%); -moz-filter: sepia(100%);
-ms-filter: sepia(100%); -o-filter: sepia(100%);
filter: url(sepia.svg#sepia); -webkit-filter: sepia(1);
background-color: #5E2612; filter: alpha(opacity = 50);
filter: sepia(100%); zoom:1;}
    
  #stacks_in_69759_46  .sepiaalways img {-webkit-filter: sepia(100%); -moz-filter: sepia(100%);
-ms-filter: sepia(100%); -o-filter: sepia(100%);
filter: url(sepia.svg#sepia); -webkit-filter: sepia(1);
background-color: #5E2612; filter: alpha(opacity = 50);
filter: sepia(100%); zoom:1;}

/* End GrayScale 2 stack CSS code */#stacks_in_69759_47 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:25px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_69759_47 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_69759_47 .fluid-image.unlimited img{width:100% !important}#stacks_in_69759_47 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_69759_47 .fluid-image.align-left img{float:left}#stacks_in_69759_47 .fluid-image.align-right img{float:right}

#stacks_in_69759_52 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width: 0px 0px 1px 0px;
	margin: 0px 10px 20px 0px;
	padding: 0px 10px 10px 0px;
}

#stacks_out_69759_52 {
	width: 250px;
}
/*
* Responsive Bigfoot 1 Column
* Adapted for Responsive Bigfoot by RapidWeaver Central 
*/

/*
*
* Lemonade v1.1
* Copyright 2013, Joey
* lemonade.im
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
*
*/


/* Targets all elements */

[#stacks_in_69759_54 class*='bit-'] {
	float: left;
	padding: 10px;
}

/* Floats last ".bit-" to the right */

[#stacks_in_69759_54 class*='bit-']:last-of-type {
	padding-right: 10px;
	float: right;
}

/* Clearfix */

#stacks_in_69759_54 .frameThing:after {
	content: "";
	display: table;
	clear: both;
}

/* Main Widths */

#stacks_in_69759_54 .bit-1 {
	width: 100%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}

#stacks_in_69759_54 .bit-2 {
	width: 50%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;}

#stacks_in_69759_54 .bit-3 {
	width: 33.33%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}

#stacks_in_69759_54 .bit-4 {
	width: 25%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}

#stacks_in_69759_54 .bit-5 {
	width: 20%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}

#stacks_in_69759_54 .bit-6 {
	width: 16.6666666667%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}


/* Landscape mobile & down
===============================*/

@media (max-width: 480px) {

#stacks_in_69759_54 .bit-1,
#stacks_in_69759_54 .bit-2,
#stacks_in_69759_54 .bit-3,
#stacks_in_69759_54 .bit-4,
#stacks_in_69759_54 .bit-5,
#stacks_in_69759_54 .bit-6 {
	width: 100%;
}

#stacks_in_69759_54 .frameThing .bit-4:nth-child(2) {
	float: right;
}

#stacks_in_69759_54 .frameThing .bit-4:nth-child(3) {
	clear: both;
	float: left;
}

#stacks_in_69759_54 .frameThing .bit-4:nth-child(4) {
	float: right;
  }
}

/* Mobile to Tablet Portrait
===============================*/

@media (min-width: 480px) and (max-width: 800px) {

#stacks_in_69759_54 .bit-4,
#stacks_in_69759_54 .bit-6 {
	width: 50%;
}

#stacks_in_69759_54 .bit-1,
#stacks_in_69759_54 .bit-2,
#stacks_in_69759_54 .bit-3,
#stacks_in_69759_54 .bit-5 {
	width: 100%;
}

}

/* Landscape Tablet to Desktop
===============================*/

@media (min-width: 800px) and (max-width: 1200px) {

#stacks_in_69759_54 .bit-2 {
	width: 100%;
}

#stacks_in_69759_54 .bit-4 {
	width: 50%;
}

}

#stacks_out_69759_55 {
	width: 250px;
}

#stacks_in_69759_56 {
	font-size: 140%;
}

#stacks_in_69759_57 {
	margin: 10px 0px 0px 0px;
}

#stacks_out_69759_57 {
	width: 250px;
}

#stacks_in_69759_58 {
	display:inline-block; width:100%; line-height: 1.400000em;
}
/*
* Responsive Bigfoot 1 Column
* Adapted for Responsive Bigfoot by RapidWeaver Central 
*/

/*
*
* Lemonade v1.1
* Copyright 2013, Joey
* lemonade.im
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
*
*/


/* Targets all elements */

[#stacks_in_69759_60 class*='bit-'] {
	float: left;
	padding: 10px;
}

/* Floats last ".bit-" to the right */

[#stacks_in_69759_60 class*='bit-']:last-of-type {
	padding-right: 10px;
	float: right;
}

/* Clearfix */

#stacks_in_69759_60 .frameThing:after {
	content: "";
	display: table;
	clear: both;
}

/* Main Widths */

#stacks_in_69759_60 .bit-1 {
	width: 100%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}

#stacks_in_69759_60 .bit-2 {
	width: 50%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;}

#stacks_in_69759_60 .bit-3 {
	width: 33.33%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}

#stacks_in_69759_60 .bit-4 {
	width: 25%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}

#stacks_in_69759_60 .bit-5 {
	width: 20%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}

#stacks_in_69759_60 .bit-6 {
	width: 16.6666666667%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}


/* Landscape mobile & down
===============================*/

@media (max-width: 480px) {

#stacks_in_69759_60 .bit-1,
#stacks_in_69759_60 .bit-2,
#stacks_in_69759_60 .bit-3,
#stacks_in_69759_60 .bit-4,
#stacks_in_69759_60 .bit-5,
#stacks_in_69759_60 .bit-6 {
	width: 100%;
}

#stacks_in_69759_60 .frameThing .bit-4:nth-child(2) {
	float: right;
}

#stacks_in_69759_60 .frameThing .bit-4:nth-child(3) {
	clear: both;
	float: left;
}

#stacks_in_69759_60 .frameThing .bit-4:nth-child(4) {
	float: right;
  }
}

/* Mobile to Tablet Portrait
===============================*/

@media (min-width: 480px) and (max-width: 800px) {

#stacks_in_69759_60 .bit-4,
#stacks_in_69759_60 .bit-6 {
	width: 50%;
}

#stacks_in_69759_60 .bit-1,
#stacks_in_69759_60 .bit-2,
#stacks_in_69759_60 .bit-3,
#stacks_in_69759_60 .bit-5 {
	width: 100%;
}

}

/* Landscape Tablet to Desktop
===============================*/

@media (min-width: 800px) and (max-width: 1200px) {

#stacks_in_69759_60 .bit-2 {
	width: 100%;
}

#stacks_in_69759_60 .bit-4 {
	width: 50%;
}

}

#stacks_in_69759_60 {
	margin: 15px 0px 15px 0px;
}

#stacks_out_69759_60 {
	width: 81%;
}

#stacks_in_69759_61 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width: 0px 0px 1px 0px;
	margin: 0px 10px 20px 0px;
	padding: 0px 10px 10px 0px;
}

#stacks_out_69759_61 {
	width: 250px;
}
/* LinkListerThing Stack— B3: Bigfoot Responsive by RapidWeaver Central */




/* LINK LISTS 
====================== */


#stacks_in_69759_63 #linklisterThingstacks_in_69759_63 {
	display: block;
	position: relative;
	width: 100%;
	overflow: hidden;
  	-webkit-backface-visibility: hidden;
  	-webkit-transform: rotate(0deg) skewY(0deg);
}

#stacks_in_69759_63 #listthingstacks_in_69759_63 {
	display: block;
	position: relative;
}

#stacks_in_69759_63 #listthingstacks_in_69759_63 ul {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

#stacks_in_69759_63 #listthingstacks_in_69759_63 li {
	
	border-bottom: 1px solid #CEC6B7;
 		
	color: #241D0C;
	font-size: 100%;
	margin: 0;
	padding: 0 0 0 20px;
	position: relative;
	text-decoration:none;
	line-height: 30px;
}

#stacks_in_69759_63 #listthingstacks_in_69759_63 li a {
	color: #241D0C;
	text-decoration:none;
}

#stacks_in_69759_63 #listthingstacks_in_69759_63 li:hover, #stacks_in_69759_63 #listthingstacks_in_69759_63 li a:hover, #stacks_in_69759_63 #listthingstacks_in_69759_63 li:hover a  {
	text-decoration:none;
	color: #000000 !important;
}

#stacks_in_69759_63 .icon-newspaper {
	
	color:  #241D0C !important;
	font-size: 100%;
 		
}

#stacks_in_69759_63  .text_padding_left a {
	padding-left: 10px;
	color:  #241D0C;
}

#stacks_in_69759_63 #listthingstacks_in_69759_63 li:hover span.icon-newspaper, #stacks_in_69759_63 #listthingstacks_in_69759_63 li:hover  span.text_padding_left    {
	color: #000000 !important;
}

/* LINK EFFECTS 
====================== */

/*  0. No Background  */

.hover_effect0stacks_in_69759_63 {
	background: transparent;
}

/*  1. Rollover   */

.hover_effect1stacks_in_69759_63 {
	background: #A1EBF9;
}

.hover_effect1stacks_in_69759_63:hover {
	background: #DA4453;
}



/*  4.  Brackets Effect  */

.hover_effect4stacks_in_69759_63  {
	position: relative;
	padding: 0;
 	-webkit-backface-visibility: hidden;
  	-webkit-transform: rotate(0deg) skewY(0deg);
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
    		 box-sizing: border-box;
}

.hover_effect4stacks_in_69759_63 a::before,
.hover_effect4stacks_in_69759_63 a::after {
	display: inline-block;
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
	   -moz-transition: -moz-transform 0.3s, opacity 0.2s;
			transition: transform 0.3s, opacity 0.2s;
}

.hover_effect4stacks_in_69759_63 a::before {
	margin-right: 10px;
	content: '[';
	-webkit-transform: translateX(20px);
	   -moz-transform: translateX(20px);
			transform: translateX(20px);
}

.hover_effect4stacks_in_69759_63 a::after {
	margin-left: 10px;
	content: ']';
	-webkit-transform: translateX(-20px);
	   -moz-transform: translateX(-20px);
			transform: translateX(-20px);
}

.hover_effect4stacks_in_69759_63 a:hover::before,
.hover_effect4stacks_in_69759_63 a:hover::after,
.hover_effect4stacks_in_69759_63 a:focus::before,
.hover_effect4stacks_in_69759_63 a:focus::after {
	opacity: 1;
	color: ;
	-webkit-transform: translateX(0px);
	   -moz-transform: translateX(0px);
			transform: translateX(0px);
}

/*  5. Animated  Slide Effect */

.hover_effect5stacks_in_69759_63 a:hover {
 	text-decoration: none;
}

.hover_effect5stacks_in_69759_63 a:active {
 	text-decoration: none;
}

.hover_effect5stacks_in_69759_63 a:before, 
.hover_effect5stacks_in_69759_63 a:after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 100%;
	width: 0;
	height: 100%;
	background: #DA4453;
	-webkit-transition: width 300ms ease;
	transition: width 300ms ease;
	z-index: -1;
}

.hover_effect5stacks_in_69759_63 a:after {
	left: 100%;
	left: 0;
}

.hover_effect5stacks_in_69759_63 a:hover:before, 
.hover_effect5stacks_in_69759_63 a:hover:after {
	width: 100%;
}

/*  6 Sandwich  Effect */

.hover_effect6stacks_in_69759_63 {
}

.hover_effect6stacks_in_69759_63 a {
	padding: 10px 10px 10px 0;
	color: #241D0C;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

.hover_effect6stacks_in_69759_63 a::before,
.hover_effect6stacks_in_69759_63 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #241D0C;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.hover_effect6stacks_in_69759_63 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.hover_effect6stacks_in_69759_63 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.hover_effect6stacks_in_69759_63 a:hover,
.hover_effect6stacks_in_69759_63 a:focus {
	color: #fff;
}

.hover_effect6stacks_in_69759_63 a:hover::before,
.hover_effect6stacks_in_69759_63 a:focus::before,
.hover_effect6stacks_in_69759_63 a:hover::after,
.hover_effect6stacks_in_69759_63 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

/*
*
* ## Entypo 
* Copyright (C) 2012 by Daniel Bruce
* Author:    Daniel Bruce
* License:  CC BY-SA (http://creativecommons.org/licenses/by-sa/2.0/)
* Homepage:  http://www.entypo.com
*
* ## Zocial 
* Copyright (C) 2012 by Sam Collins
* Author:    Sam Collins
* License:   MIT (http://opensource.org/licenses/mit-license.php)
* Homepage:  http://zocial.smcllns.com/
*
*/

/* EntypoThing Fonts */         


@font-face {
  font-family: 'entypothing';
  src: url('../files/font/entypothing.eot?24089826');
  src: url('../files/font/entypothing.eot?24089826#iefix') format('embedded-opentype'),
       url('../files/font/entypothing.woff?24089826') format('woff'),
       url('../files/font/entypothing.ttf?24089826') format('truetype'),
       url('../files/font/entypothing.svg?24089826#entypothing') format('svg');
  font-weight: normal;
  font-style: normal;
}
 
  #stacks_in_69759_63 [class^="icon-newspaper"]:before, #stacks_in_69759_63 [class*="icon-newspaper"]:before {
  font-family: "entypothing";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height:  30px;
  margin-left: .2em;
}
 
.icon-note:before { content: '\e83d'; } /* 'Ó†Ω' */
.icon-stackoverflow:before { content: '\e83c'; } /* 'Ó†º' */
.icon-music:before { content: '\e84a'; } /* 'Ó°ä' */
.icon-search:before { content: '\e84b'; } /* 'Ó°ã' */
.icon-flashlight:before { content: '\e84c'; } /* 'Ó°å' */
.icon-mail:before { content: '\e84d'; } /* 'Ó°ç' */
.icon-heart:before { content: '\e84e'; } /* 'Ó°é' */
.icon-heart-empty:before { content: '\e84f'; } /* 'Ó°è' */
.icon-star:before { content: '\e850'; } /* 'Ó°ê' */
.icon-star-empty:before { content: '\e851'; } /* 'Ó°ë' */
.icon-user:before { content: '\e852'; } /* 'Ó°í' */
.icon-users:before { content: '\e853'; } /* 'Ó°ì' */
.icon-user-add:before { content: '\e854'; } /* 'Ó°î' */
.icon-video:before { content: '\e855'; } /* 'Ó°ï' */
.icon-picture:before { content: '\e856'; } /* 'Ó°ñ' */
.icon-camera:before { content: '\e848'; } /* 'Ó°à' */
.icon-layout:before { content: '\e845'; } /* 'Ó°Ö' */
.icon-menu:before { content: '\e844'; } /* 'Ó°Ñ' */
.icon-check:before { content: '\e841'; } /* 'Ó°Å' */
.icon-cancel:before { content: '\e83f'; } /* 'Ó†ø' */
.icon-cancel-circled:before { content: '\e865'; } /* 'Ó°•' */
.icon-cancel-squared:before { content: '\e864'; } /* 'Ó°§' */
.icon-plus:before { content: '\e863'; } /* 'Ó°£' */
.icon-plus-circled:before { content: '\e862'; } /* 'Ó°¢' */
.icon-plus-squared:before { content: '\e861'; } /* 'Ó°°' */
.icon-minus:before { content: '\e860'; } /* 'Ó°†' */
.icon-minus-circled:before { content: '\e85f'; } /* 'Ó°ü' */
.icon-minus-squared:before { content: '\e85e'; } /* 'Ó°û' */
.icon-help:before { content: '\e85d'; } /* 'Ó°ù' */
.icon-help-circled:before { content: '\e85c'; } /* 'Ó°ú' */
.icon-info:before { content: '\e85b'; } /* 'Ó°õ' */
.icon-info-circled:before { content: '\e85a'; } /* 'Ó°ö' */
.icon-back:before { content: '\e859'; } /* 'Ó°ô' */
.icon-home:before { content: '\e858'; } /* 'Ó°ò' */
.icon-link:before { content: '\e857'; } /* 'Ó°ó' */
.icon-attach:before { content: '\e847'; } /* 'Ó°á' */
.icon-lock:before { content: '\e846'; } /* 'Ó°Ü' */
.icon-lock-open:before { content: '\e843'; } /* 'Ó°É' */
.icon-eye:before { content: '\e842'; } /* 'Ó°Ç' */
.icon-tag:before { content: '\e840'; } /* 'Ó°Ä' */
.icon-bookmark:before { content: '\e866'; } /* 'Ó°¶' */
.icon-bookmarks:before { content: '\e867'; } /* 'Ó°ß' */
.icon-flag:before { content: '\e868'; } /* 'Ó°®' */
.icon-thumbs-up:before { content: '\e869'; } /* 'Ó°©' */
.icon-thumbs-down:before { content: '\e874'; } /* 'Ó°¥' */
.icon-download:before { content: '\e877'; } /* 'Ó°∑' */
.icon-upload:before { content: '\e878'; } /* 'Ó°∏' */
.icon-upload-cloud:before { content: '\e87c'; } /* 'Ó°º' */
.icon-reply:before { content: '\e87d'; } /* 'Ó°Ω' */
.icon-reply-all:before { content: '\e883'; } /* 'Ó¢É' */
.icon-forward:before { content: '\e886'; } /* 'Ó¢Ü' */
.icon-quote:before { content: '\e887'; } /* 'Ó¢á' */
.icon-code:before { content: '\e88c'; } /* 'Ó¢å' */
.icon-export:before { content: '\e88d'; } /* 'Ó¢ç' */
.icon-pencil:before { content: '\e892'; } /* 'Ó¢í' */
.icon-feather:before { content: '\e893'; } /* 'Ó¢ì' */
.icon-print-1:before { content: '\e898'; } /* 'Ó¢ò' */
.icon-retweet:before { content: '\e899'; } /* 'Ó¢ô' */
.icon-keyboard:before { content: '\e89e'; } /* 'Ó¢û' */
.icon-comment:before { content: '\e89f'; } /* 'Ó¢ü' */
.icon-chat:before { content: '\e86a'; } /* 'Ó°™' */
.icon-bell:before { content: '\e871'; } /* 'Ó°±' */
.icon-attention:before { content: '\e86d'; } /* 'Ó°≠' */
.icon-alert:before { content: '\e870'; } /* 'Ó°∞' */
.icon-vcard:before { content: '\e873'; } /* 'Ó°≥' */
.icon-address:before { content: '\e872'; } /* 'Ó°≤' */
.icon-location:before { content: '\e879'; } /* 'Ó°π' */
.icon-map:before { content: '\e87e'; } /* 'Ó°æ' */
.icon-direction:before { content: '\e87f'; } /* 'Ó°ø' */
.icon-compass:before { content: '\e882'; } /* 'Ó¢Ç' */
.icon-cup:before { content: '\e884'; } /* 'Ó¢Ñ' */
.icon-trash:before { content: '\e888'; } /* 'Ó¢à' */
.icon-doc:before { content: '\e88b'; } /* 'Ó¢ã' */
.icon-docs:before { content: '\e88e'; } /* 'Ó¢é' */
.icon-doc-landscape:before { content: '\e891'; } /* 'Ó¢ë' */
.icon-doc-text:before { content: '\e894'; } /* 'Ó¢î' */
.icon-doc-text-inv:before { content: '\e897'; } /* 'Ó¢ó' */
.icon-newspaper:before { content: '\e89a'; } /* 'Ó¢ö' */
.icon-book-open:before { content: '\e89d'; } /* 'Ó¢ù' */
.icon-book:before { content: '\e8a0'; } /* 'Ó¢†' */
.icon-folder:before { content: '\e86b'; } /* 'Ó°´' */
.icon-archive:before { content: '\e86c'; } /* 'Ó°¨' */
.icon-box:before { content: '\e86e'; } /* 'Ó°Æ' */
.icon-rss-1:before { content: '\e86f'; } /* 'Ó°Ø' */
.icon-phone:before { content: '\e875'; } /* 'Ó°µ' */
.icon-cog:before { content: '\e876'; } /* 'Ó°∂' */
.icon-tools:before { content: '\e87b'; } /* 'Ó°ª' */
.icon-share:before { content: '\e87a'; } /* 'Ó°∫' */
.icon-shareable:before { content: '\e880'; } /* 'Ó¢Ä' */
.icon-basket:before { content: '\e881'; } /* 'Ó¢Å' */
.icon-bag:before { content: '\e885'; } /* 'Ó¢Ö' */
.icon-calendar-1:before { content: '\e889'; } /* 'Ó¢â' */
.icon-login:before { content: '\e88a'; } /* 'Ó¢ä' */
.icon-logout:before { content: '\e88f'; } /* 'Ó¢è' */
.icon-mic:before { content: '\e890'; } /* 'Ó¢ê' */
.icon-mute:before { content: '\e895'; } /* 'Ó¢ï' */
.icon-sound:before { content: '\e896'; } /* 'Ó¢ñ' */
.icon-volume:before { content: '\e89b'; } /* 'Ó¢õ' */
.icon-clock:before { content: '\e89c'; } /* 'Ó¢ú' */
.icon-hourglass:before { content: '\e8a1'; } /* 'Ó¢°' */
.icon-lamp:before { content: '\e8b5'; } /* 'Ó¢µ' */
.icon-light-down:before { content: '\e8b4'; } /* 'Ó¢¥' */
.icon-light-up:before { content: '\e8b3'; } /* 'Ó¢≥' */
.icon-adjust:before { content: '\e8b2'; } /* 'Ó¢≤' */
.icon-block:before { content: '\e8b1'; } /* 'Ó¢±' */
.icon-resize-full:before { content: '\e8b0'; } /* 'Ó¢∞' */
.icon-resize-small:before { content: '\e8af'; } /* 'Ó¢Ø' */
.icon-popup:before { content: '\e8ae'; } /* 'Ó¢Æ' */
.icon-publish:before { content: '\e8ad'; } /* 'Ó¢≠' */
.icon-window:before { content: '\e8ac'; } /* 'Ó¢¨' */
.icon-arrow-combo:before { content: '\e8ab'; } /* 'Ó¢´' */
.icon-down-circled:before { content: '\e8aa'; } /* 'Ó¢™' */
.icon-left-circled:before { content: '\e8a9'; } /* 'Ó¢©' */
.icon-right-circled:before { content: '\e8a8'; } /* 'Ó¢®' */
.icon-up-circled:before { content: '\e8a7'; } /* 'Ó¢ß' */
.icon-down-open:before { content: '\e8a6'; } /* 'Ó¢¶' */
.icon-left-open:before { content: '\e8a5'; } /* 'Ó¢•' */
.icon-right-open:before { content: '\e8a4'; } /* 'Ó¢§' */
.icon-up-open:before { content: '\e8a3'; } /* 'Ó¢£' */
.icon-down-open-mini:before { content: '\e8a2'; } /* 'Ó¢¢' */
.icon-left-open-mini:before { content: '\e8b6'; } /* 'Ó¢∂' */
.icon-right-open-mini:before { content: '\e8b7'; } /* 'Ó¢∑' */
.icon-up-open-mini:before { content: '\e8b8'; } /* 'Ó¢∏' */
.icon-down-open-big:before { content: '\e8b9'; } /* 'Ó¢π' */
.icon-left-open-big:before { content: '\e8ba'; } /* 'Ó¢∫' */
.icon-right-open-big:before { content: '\e8bb'; } /* 'Ó¢ª' */
.icon-up-open-big:before { content: '\e8bc'; } /* 'Ó¢º' */
.icon-down:before { content: '\e8bd'; } /* 'Ó¢Ω' */
.icon-left:before { content: '\e8be'; } /* 'Ó¢æ' */
.icon-right:before { content: '\e8bf'; } /* 'Ó¢ø' */
.icon-up:before { content: '\e8c0'; } /* 'Ó£Ä' */
.icon-down-dir:before { content: '\e8c1'; } /* 'Ó£Å' */
.icon-left-dir:before { content: '\e8c2'; } /* 'Ó£Ç' */
.icon-right-dir:before { content: '\e8c3'; } /* 'Ó£É' */
.icon-up-dir:before { content: '\e8c4'; } /* 'Ó£Ñ' */
.icon-down-bold:before { content: '\e8c5'; } /* 'Ó£Ö' */
.icon-left-bold:before { content: '\e8c6'; } /* 'Ó£Ü' */
.icon-right-bold:before { content: '\e8c7'; } /* 'Ó£á' */
.icon-up-bold:before { content: '\e8c8'; } /* 'Ó£à' */
.icon-down-thin:before { content: '\e8c9'; } /* 'Ó£â' */
.icon-left-thin:before { content: '\e8dd'; } /* 'Ó£ù' */
.icon-right-thin:before { content: '\e8dc'; } /* 'Ó£ú' */
.icon-up-thin:before { content: '\e8db'; } /* 'Ó£õ' */
.icon-ccw:before { content: '\e8da'; } /* 'Ó£ö' */
.icon-cw:before { content: '\e8d9'; } /* 'Ó£ô' */
.icon-arrows-ccw:before { content: '\e8d8'; } /* 'Ó£ò' */
.icon-level-down:before { content: '\e8d7'; } /* 'Ó£ó' */
.icon-level-up:before { content: '\e8d6'; } /* 'Ó£ñ' */
.icon-shuffle:before { content: '\e8d5'; } /* 'Ó£ï' */
.icon-loop:before { content: '\e8d4'; } /* 'Ó£î' */
.icon-switch:before { content: '\e8d3'; } /* 'Ó£ì' */
.icon-play:before { content: '\e8d2'; } /* 'Ó£í' */
.icon-stop:before { content: '\e8d1'; } /* 'Ó£ë' */
.icon-pause:before { content: '\e8d0'; } /* 'Ó£ê' */
.icon-record:before { content: '\e8cf'; } /* 'Ó£è' */
.icon-to-end:before { content: '\e8ce'; } /* 'Ó£é' */
.icon-to-start:before { content: '\e8cd'; } /* 'Ó£ç' */
.icon-fast-forward:before { content: '\e8cc'; } /* 'Ó£å' */
.icon-fast-backward:before { content: '\e8cb'; } /* 'Ó£ã' */
.icon-progress-0:before { content: '\e8ca'; } /* 'Ó£ä' */
.icon-progress-1:before { content: '\e8de'; } /* 'Ó£û' */
.icon-progress-2:before { content: '\e8df'; } /* 'Ó£ü' */
.icon-progress-3:before { content: '\e8e0'; } /* 'Ó£†' */
.icon-target:before { content: '\e8e1'; } /* 'Ó£°' */
.icon-palette:before { content: '\e8e2'; } /* 'Ó£¢' */
.icon-list:before { content: '\e8e3'; } /* 'Ó££' */
.icon-list-add:before { content: '\e8e4'; } /* 'Ó£§' */
.icon-signal:before { content: '\e8e5'; } /* 'Ó£•' */
.icon-trophy:before { content: '\e8e6'; } /* 'Ó£¶' */
.icon-battery:before { content: '\e8e7'; } /* 'Ó£ß' */
.icon-back-in-time:before { content: '\e8e8'; } /* 'Ó£®' */
.icon-monitor:before { content: '\e8e9'; } /* 'Ó£©' */
.icon-note-beamed:before { content: '\e849'; } /* 'Ó°â' */
.icon-network:before { content: '\e8eb'; } /* 'Ó£´' */
.icon-cd:before { content: '\e8ec'; } /* 'Ó£¨' */
.icon-inbox:before { content: '\e8ed'; } /* 'Ó£≠' */
.icon-install:before { content: '\e8ee'; } /* 'Ó£Æ' */
.icon-globe:before { content: '\e8ef'; } /* 'Ó£Ø' */
.icon-cloud:before { content: '\e8f0'; } /* 'Ó£∞' */
.icon-cloud-thunder:before { content: '\e8f1'; } /* 'Ó£±' */
.icon-flash:before { content: '\e905'; } /* 'Ó§Ö' */
.icon-moon:before { content: '\e904'; } /* 'Ó§Ñ' */
.icon-flight:before { content: '\e903'; } /* 'Ó§É' */
.icon-paper-plane:before { content: '\e902'; } /* 'Ó§Ç' */
.icon-leaf:before { content: '\e901'; } /* 'Ó§Å' */
.icon-lifebuoy:before { content: '\e900'; } /* 'Ó§Ä' */
.icon-mouse:before { content: '\e8ff'; } /* 'Ó£ø' */
.icon-briefcase:before { content: '\e8fe'; } /* 'Ó£æ' */
.icon-suitcase:before { content: '\e8fd'; } /* 'Ó£Ω' */
.icon-dot:before { content: '\e8fb'; } /* 'Ó£ª' */
.icon-dot-2:before { content: '\e8fc'; } /* 'Ó£º' */
.icon-dot-3:before { content: '\e8fa'; } /* 'Ó£∫' */
.icon-brush:before { content: '\e8f9'; } /* 'Ó£π' */
.icon-magnet:before { content: '\e8f8'; } /* 'Ó£∏' */
.icon-infinity:before { content: '\e8f7'; } /* 'Ó£∑' */
.icon-erase:before { content: '\e8f6'; } /* 'Ó£∂' */
.icon-chart-pie:before { content: '\e8f5'; } /* 'Ó£µ' */
.icon-chart-line:before { content: '\e8f4'; } /* 'Ó£¥' */
.icon-chart-bar:before { content: '\e8f3'; } /* 'Ó£≥' */
.icon-chart-area:before { content: '\e8f2'; } /* 'Ó£≤' */
.icon-tape:before { content: '\e906'; } /* 'Ó§Ü' */
.icon-graduation-cap:before { content: '\e907'; } /* 'Ó§á' */
.icon-language:before { content: '\e908'; } /* 'Ó§à' */
.icon-ticket:before { content: '\e909'; } /* 'Ó§â' */
.icon-water:before { content: '\e90a'; } /* 'Ó§ä' */
.icon-droplet:before { content: '\e90b'; } /* 'Ó§ã' */
.icon-air:before { content: '\e90c'; } /* 'Ó§å' */
.icon-credit-card:before { content: '\e90d'; } /* 'Ó§ç' */
.icon-floppy:before { content: '\e90e'; } /* 'Ó§é' */
.icon-clipboard:before { content: '\e90f'; } /* 'Ó§è' */
.icon-megaphone:before { content: '\e910'; } /* 'Ó§ê' */
.icon-database:before { content: '\e911'; } /* 'Ó§ë' */
.icon-drive:before { content: '\e912'; } /* 'Ó§í' */
.icon-bucket:before { content: '\e913'; } /* 'Ó§ì' */
.icon-thermometer:before { content: '\e914'; } /* 'Ó§î' */
.icon-key:before { content: '\e915'; } /* 'Ó§ï' */
.icon-flow-cascade:before { content: '\e916'; } /* 'Ó§ñ' */
.icon-flow-branch:before { content: '\e917'; } /* 'Ó§ó' */
.icon-flow-tree:before { content: '\e918'; } /* 'Ó§ò' */
.icon-flow-line:before { content: '\e919'; } /* 'Ó§ô' */
.icon-flow-parallel:before { content: '\e92d'; } /* 'Ó§≠' */
.icon-rocket:before { content: '\e92c'; } /* 'Ó§¨' */
.icon-gauge:before { content: '\e92b'; } /* 'Ó§´' */
.icon-traffic-cone:before { content: '\e92a'; } /* 'Ó§™' */
.icon-cc-1:before { content: '\e929'; } /* 'Ó§©' */
.icon-cc-by:before { content: '\e928'; } /* 'Ó§®' */
.icon-cc-nc:before { content: '\e927'; } /* 'Ó§ß' */
.icon-cc-nc-eu:before { content: '\e926'; } /* 'Ó§¶' */
.icon-cc-nc-jp:before { content: '\e925'; } /* 'Ó§•' */
.icon-cc-sa:before { content: '\e924'; } /* 'Ó§§' */
.icon-cc-nd:before { content: '\e923'; } /* 'Ó§£' */
.icon-cc-pd:before { content: '\e922'; } /* 'Ó§¢' */
.icon-cc-zero:before { content: '\e921'; } /* 'Ó§°' */
.icon-cc-share:before { content: '\e920'; } /* 'Ó§†' */
.icon-cc-remix:before { content: '\e91f'; } /* 'Ó§ü' */
.icon-github-1:before { content: '\e91e'; } /* 'Ó§û' */
.icon-github-circled-1:before { content: '\e91d'; } /* 'Ó§ù' */
.icon-flickr-1:before { content: '\e91c'; } /* 'Ó§ú' */
.icon-flickr-circled:before { content: '\e91b'; } /* 'Ó§õ' */
.icon-vimeo-1:before { content: '\e91a'; } /* 'Ó§ö' */
.icon-vimeo-circled:before { content: '\e92e'; } /* 'Ó§Æ' */
.icon-twitter-1:before { content: '\e92f'; } /* 'Ó§Ø' */
.icon-twitter-circled:before { content: '\e930'; } /* 'Ó§∞' */
.icon-facebook-1:before { content: '\e931'; } /* 'Ó§±' */
.icon-facebook-circled:before { content: '\e932'; } /* 'Ó§≤' */
.icon-facebook-squared:before { content: '\e933'; } /* 'Ó§≥' */
.icon-gplus-1:before { content: '\e934'; } /* 'Ó§¥' */
.icon-gplus-circled:before { content: '\e935'; } /* 'Ó§µ' */
.icon-pinterest-1:before { content: '\e936'; } /* 'Ó§∂' */
.icon-pinterest-circled:before { content: '\e937'; } /* 'Ó§∑' */
.icon-tumblr-1:before { content: '\e938'; } /* 'Ó§∏' */
.icon-tumblr-circled:before { content: '\e939'; } /* 'Ó§π' */
.icon-linkedin-1:before { content: '\e93a'; } /* 'Ó§∫' */
.icon-linkedin-circled:before { content: '\e93b'; } /* 'Ó§ª' */
.icon-dribbble-1:before { content: '\e93c'; } /* 'Ó§º' */
.icon-dribbble-circled:before { content: '\e93d'; } /* 'Ó§Ω' */
.icon-stumbleupon-1:before { content: '\e93e'; } /* 'Ó§æ' */
.icon-stumbleupon-circled:before { content: '\e93f'; } /* 'Ó§ø' */
.icon-lastfm:before { content: '\e940'; } /* 'Ó•Ä' */
.icon-lastfm-circled:before { content: '\e941'; } /* 'Ó•Å' */
.icon-rdio:before { content: '\e954'; } /* 'Ó•î' */
.icon-rdio-circled:before { content: '\e953'; } /* 'Ó•ì' */
.icon-spotify:before { content: '\e952'; } /* 'Ó•í' */
.icon-qq:before { content: '\e951'; } /* 'Ó•ë' */
.icon-instagram-1:before { content: '\e950'; } /* 'Ó•ê' */
.icon-dropbox-1:before { content: '\e94f'; } /* 'Ó•è' */
.icon-evernote-1:before { content: '\e94e'; } /* 'Ó•é' */
.icon-flattr:before { content: '\e94d'; } /* 'Ó•ç' */
.icon-skype-1:before { content: '\e94c'; } /* 'Ó•å' */
.icon-skype-circled:before { content: '\e94b'; } /* 'Ó•ã' */
.icon-renren:before { content: '\e94a'; } /* 'Ó•ä' */
.icon-sina-weibo:before { content: '\e949'; } /* 'Ó•â' */
.icon-paypal-1:before { content: '\e948'; } /* 'Ó•à' */
.icon-picasa:before { content: '\e947'; } /* 'Ó•á' */
.icon-soundcloud-1:before { content: '\e946'; } /* 'Ó•Ü' */
.icon-mixi:before { content: '\e945'; } /* 'Ó•Ö' */
.icon-behance:before { content: '\e944'; } /* 'Ó•Ñ' */
.icon-google-circles:before { content: '\e943'; } /* 'Ó•É' */
.icon-vkontakte:before { content: '\e942'; } /* 'Ó•Ç' */
.icon-smashing:before { content: '\e955'; } /* 'Ó•ï' */
.icon-sweden:before { content: '\e956'; } /* 'Ó•ñ' */
.icon-db-shape:before { content: '\e957'; } /* 'Ó•ó' */
.icon-logo-db:before { content: '\e83e'; } /* 'Ó†æ' */
.icon-paypal:before { content: '\e800'; } /* 'Ó†Ä' */
.icon-eventful:before { content: '\e801'; } /* 'Ó†Å' */
.icon-smashmag:before { content: '\e802'; } /* 'Ó†Ç' */
.icon-gplus:before { content: '\e803'; } /* 'Ó†É' */
.icon-wikipedia:before { content: '\e804'; } /* 'Ó†Ñ' */
.icon-calendar:before { content: '\e805'; } /* 'Ó†Ö' */
.icon-stumbleupon:before { content: '\e806'; } /* 'Ó†Ü' */
.icon-fivehundredpx:before { content: '\e807'; } /* 'Ó†á' */
.icon-pinterest:before { content: '\e808'; } /* 'Ó†à' */
.icon-w3c:before { content: '\e809'; } /* 'Ó†â' */
.icon-foursquare:before { content: '\e80a'; } /* 'Ó†ä' */
.icon-html5:before { content: '\e80b'; } /* 'Ó†ã' */
.icon-ie:before { content: '\e80c'; } /* 'Ó†å' */
.icon-call:before { content: '\e80d'; } /* 'Ó†ç' */
.icon-digg:before { content: '\e80e'; } /* 'Ó†é' */
.icon-reddit:before { content: '\e80f'; } /* 'Ó†è' */
.icon-appstore:before { content: '\e810'; } /* 'Ó†ê' */
.icon-blogger:before { content: '\e811'; } /* 'Ó†ë' */
.icon-cc:before { content: '\e812'; } /* 'Ó†í' */
.icon-dribbble:before { content: '\e813'; } /* 'Ó†ì' */
.icon-evernote:before { content: '\e814'; } /* 'Ó†î' */
.icon-flickr:before { content: '\e815'; } /* 'Ó†ï' */
.icon-google:before { content: '\e816'; } /* 'Ó†ñ' */
.icon-instapaper:before { content: '\e817'; } /* 'Ó†ó' */
.icon-weibo:before { content: '\e818'; } /* 'Ó†ò' */
.icon-linkedin:before { content: '\e826'; } /* 'Ó†¶' */
.icon-disqus:before { content: '\e825'; } /* 'Ó†•' */
.icon-rss:before { content: '\e824'; } /* 'Ó†§' */
.icon-skype:before { content: '\e823'; } /* 'Ó†£' */
.icon-twitter:before { content: '\e822'; } /* 'Ó†¢' */
.icon-youtube:before { content: '\e821'; } /* 'Ó†°' */
.icon-vimeo:before { content: '\e820'; } /* 'Ó††' */
.icon-windows:before { content: '\e81f'; } /* 'Ó†ü' */
.icon-xing:before { content: '\e81e'; } /* 'Ó†û' */
.icon-yahoo:before { content: '\e81d'; } /* 'Ó†ù' */
.icon-email:before { content: '\e81c'; } /* 'Ó†ú' */
.icon-macstore:before { content: '\e81b'; } /* 'Ó†õ' */
.icon-podcast:before { content: '\e81a'; } /* 'Ó†ö' */
.icon-amazon:before { content: '\e819'; } /* 'Ó†ô' */
.icon-cloudapp:before { content: '\e827'; } /* 'Ó†ß' */
.icon-dropbox:before { content: '\e828'; } /* 'Ó†®' */
.icon-ebay:before { content: '\e829'; } /* 'Ó†©' */
.icon-facebook:before { content: '\e82a'; } /* 'Ó†™' */
.icon-github:before { content: '\e82b'; } /* 'Ó†´' */
.icon-github-circled:before { content: '\e82c'; } /* 'Ó†¨' */
.icon-googleplay:before { content: '\e82d'; } /* 'Ó†≠' */
.icon-itunes:before { content: '\e82e'; } /* 'Ó†Æ' */
.icon-gmail:before { content: '\e82f'; } /* 'Ó†Ø' */
.icon-soundcloud:before { content: '\e830'; } /* 'Ó†∞' */
.icon-tumblr:before { content: '\e831'; } /* 'Ó†±' */
.icon-eventbrite:before { content: '\e83b'; } /* 'Ó†ª' */
.icon-scribd:before { content: '\e83a'; } /* 'Ó†∫' */
.icon-posterous:before { content: '\e839'; } /* 'Ó†π' */
.icon-stripe:before { content: '\e838'; } /* 'Ó†∏' */
.icon-cart:before { content: '\e837'; } /* 'Ó†∑' */
.icon-print:before { content: '\e836'; } /* 'Ó†∂' */
.icon-instagram:before { content: '\e835'; } /* 'Ó†µ' */
.icon-appnet:before { content: '\e834'; } /* 'Ó†¥' */
.icon-buffer:before { content: '\e833'; } /* 'Ó†≥' */
.icon-pocket:before { content: '\e832'; } /* 'Ó†≤' */
.icon-mobile:before { content: '\e8ea'; } /* 'Ó£™' */