/*
 * 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_paragraphpro_stack p.text-center{text-align:center}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-left{text-align:left}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-right{text-align:right}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-justify{text-align:justify}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-inherit{text-align:inherit}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_paragraphpro_stack p.small-only-text-center{text-align:center}.com_bigwhiteduck_stacks_paragraphpro_stack p.small-only-text-center + ul{display:table;margin:0 auto;text-align:left}}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_paragraphpro_stack p.text-justify.small-only-just-left{text-align:left !important}}
.font-weight-100{font-weight:100}.font-weight-200{font-weight:200}.font-weight-300{font-weight:300}.font-weight-400{font-weight:400}.font-weight-500{font-weight:500}.font-weight-600{font-weight:600}.font-weight-700{font-weight:700}.font-weight-800{font-weight:800}.font-weight-900{font-weight:900}.font-style-normal{font-style:normal}.font-style-italic{font-style:italic}
.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}
/* 
WHW edits
- Remove retina @media block at the bottom
- Remove '.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading { background: url(icons/loading.gif) no-repeat 50% 50%; }'
- Remove 'background-image: url(icons/next.png);'
- Remove 'background-image: url(icons/prev.png);'
- Remove 'background: url(icons/close.png) no-repeat 5px 5px;'
- Remove default theme
*/


/*
 * Nivo Lightbox v1.2.0
 * http://dev7studios.com/nivo-lightbox
 *
 * Copyright 2013, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

.nivo-lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99998;
	width: 100%;
	height: 100%;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.nivo-lightbox-overlay.nivo-lightbox-open {
	visibility: visible;
	opacity: 1;
}
.nivo-lightbox-wrap  {
	position: absolute;
	top: 10%;
	bottom: 10%;
	left: 10%;
	right: 10%;
}
.nivo-lightbox-content {
	width: 100%;
	height: 100%;
}
.nivo-lightbox-title-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 99999;
	text-align: center;
}
.nivo-lightbox-nav { display: none; }
.nivo-lightbox-prev {
	position: absolute;
	top: 50%;
	left: 0;
}
.nivo-lightbox-next {
	position: absolute;
	top: 50%;
	right: 0;
}
.nivo-lightbox-close {
	position: absolute;
	top: 2%;
	right: 2%;
}

.nivo-lightbox-image { text-align: center; }
.nivo-lightbox-image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	vertical-align: middle;
}

.nivo-lightbox-html5audio {
	width: 100%;
}

.nivo-lightbox-html5video {
	background: #000;
}

.nivo-lightbox-html5audio,
.nivo-lightbox-html5video {
	position: absolute;
	z-index: 99999;
	max-width: 100%;
	max-height: 100%;
	display: inline-block;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	-ms-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	vertical-align: middle;
}

.nivo-lightbox-content iframe {
	width: 100%;
	height: 100%;
}
.nivo-lightbox-inline,
.nivo-lightbox-ajax {
	max-height: 100%;
	overflow: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/* https://bugzilla.mozilla.org/show_bug.cgi?id=308801 */
}
.nivo-lightbox-error {
	display: table;
	text-align: center;
	width: 100%;
	height: 100%;
	color: #fff;
	text-shadow: 0 1px 1px #000;
}
.nivo-lightbox-error p {
	display: table-cell;
	vertical-align: middle;
}

/* Effects
 **********************************************/
.nivo-lightbox-notouch .nivo-lightbox-effect-fade,
.nivo-lightbox-notouch .nivo-lightbox-effect-fadeScale,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideLeft,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideRight,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideUp,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideDown,
.nivo-lightbox-notouch .nivo-lightbox-effect-fall {
	-webkit-transition: all 0.2s ease-in-out;
	   -moz-transition: all 0.2s ease-in-out;
	    -ms-transition: all 0.2s ease-in-out;
	     -o-transition: all 0.2s ease-in-out;
	        transition: all 0.2s ease-in-out;
}

/* fadeScale */
.nivo-lightbox-effect-fadeScale .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	     -o-transition: all 0.3s;
	        transition: all 0.3s;
	-webkit-transform: scale(0.7);
	   -moz-transform: scale(0.7);
	    -ms-transform: scale(0.7);
	        transform: scale(0.7);
}
.nivo-lightbox-effect-fadeScale.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: scale(1);
	   -moz-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}

/* slideLeft / slideRight / slideUp / slideDown */
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	   -moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	    -ms-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	     -o-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	        transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap {
	-webkit-transform: translateX(-10%);
	   -moz-transform: translateX(-10%);
	    -ms-transform: translateX(-10%);
	        transform: translateX(-10%);
}
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap {
	-webkit-transform: translateX(10%);
	   -moz-transform: translateX(10%);
	    -ms-transform: translateX(10%);
	        transform: translateX(10%);
}
.nivo-lightbox-effect-slideLeft.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateX(0);
	   -moz-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
}
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
	-webkit-transform: translateY(-10%);
	   -moz-transform: translateY(-10%);
	    -ms-transform: translateY(-10%);
	        transform: translateY(-10%);
}
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap {
	-webkit-transform: translateY(10%);
	   -moz-transform: translateY(10%);
	    -ms-transform: translateY(10%);
	        transform: translateY(10%);
}
.nivo-lightbox-effect-slideUp.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateY(0);
	   -moz-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}

/* fall */
.nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall {
	-webkit-perspective: 1000px;
	   -moz-perspective: 1000px;
	        perspective: 1000px;
}
.nivo-lightbox-effect-fall .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	    -ms-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;
	-webkit-transform: translateZ(300px);
	   -moz-transform: translateZ(300px);
	    -ms-transform: translateZ(300px);
	        transform: translateZ(300px);
}
.nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
	    -ms-transform: translateZ(0);
	        transform: translateZ(0);
}a.anchor{height:0 !important;font-size:0 !important;line-height:0 !important;padding:0 !important;margin:0 !important;display:block !important}
/* 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'; } /* '' *//* https://github.com/una/CSSgram */

/* The MIT License (MIT)

Copyright (c) 2015 Una Kravets

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. */

.aden{position:relative;-webkit-filter:hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2);filter:hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2)}.aden:after,.aden:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.aden img{width:100%;z-index:1}.aden:before{z-index:2}.aden:after{z-index:3}.aden::after{background:-webkit-linear-gradient(left,rgba(66,10,14,.2),transparent);background:linear-gradient(to right,rgba(66,10,14,.2),transparent);mix-blend-mode:darken}.gingham::after,.perpetua::after,.reyes::after{mix-blend-mode:soft-light}.inkwell{position:relative;-webkit-filter:sepia(.3) contrast(1.1) brightness(1.1) grayscale(1);filter:sepia(.3) contrast(1.1) brightness(1.1) grayscale(1)}.inkwell:after,.inkwell:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.inkwell img{width:100%;z-index:1}.inkwell:before{z-index:2}.inkwell:after{z-index:3}.perpetua{position:relative}.perpetua:after,.perpetua:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.perpetua img{width:100%;z-index:1}.perpetua:before{z-index:2}.perpetua:after{z-index:3}.perpetua::after{background:-webkit-linear-gradient(top,#005b9a,#e6c13d);background:linear-gradient(to bottom,#005b9a,#e6c13d);opacity:.5}.reyes{position:relative;-webkit-filter:sepia(.22) brightness(1.1) contrast(.85) saturate(.75);filter:sepia(.22) brightness(1.1) contrast(.85) saturate(.75)}.reyes:after,.reyes:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.reyes img{width:100%;z-index:1}.reyes:before{z-index:2}.reyes:after{z-index:3}.reyes::after{background:#efcdad;opacity:.5}.gingham{position:relative;-webkit-filter:brightness(1.05) hue-rotate(-10deg);filter:brightness(1.05) hue-rotate(-10deg)}.gingham:after,.gingham:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.gingham img{width:100%;z-index:1}.gingham:before{z-index:2}.gingham:after{z-index:3}.gingham::after{background:#e6e6fa}.toaster{position:relative;-webkit-filter:contrast(1.5) brightness(.9);filter:contrast(1.5) brightness(.9)}.toaster:after,.toaster:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.toaster img{width:100%;z-index:1}.toaster:before{z-index:2}.toaster:after{z-index:3}.toaster::after{background:-webkit-radial-gradient(circle,#804e0f,#3b003b);background:radial-gradient(circle,#804e0f,#3b003b);mix-blend-mode:screen}.walden{position:relative;-webkit-filter:brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6);filter:brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6)}.walden:after,.walden:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.walden img{width:100%;z-index:1}.walden:before{z-index:2}.walden:after{z-index:3}.walden::after{background:#04c;mix-blend-mode:screen;opacity:.3}.hudson{position:relative;-webkit-filter:brightness(1.2) contrast(.9) saturate(1.1);filter:brightness(1.2) contrast(.9) saturate(1.1)}.hudson:after,.hudson:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.hudson img{width:100%;z-index:1}.hudson:before{z-index:2}.hudson:after{z-index:3}.hudson::after{background:-webkit-radial-gradient(circle,#a6b1ff 50%,#342134);background:radial-gradient(circle,#a6b1ff 50%,#342134);mix-blend-mode:multiply;opacity:.5}.earlybird{position:relative;-webkit-filter:contrast(.9) sepia(.2);filter:contrast(.9) sepia(.2)}.earlybird:after,.earlybird:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.earlybird img{width:100%;z-index:1}.earlybird:before{z-index:2}.earlybird:after{z-index:3}.earlybird::after{background:-webkit-radial-gradient(circle,#d0ba8e 20%,#360309 85%,#1d0210 100%);background:radial-gradient(circle,#d0ba8e 20%,#360309 85%,#1d0210 100%);mix-blend-mode:overlay}.mayfair{position:relative;-webkit-filter:contrast(1.1) saturate(1.1);filter:contrast(1.1) saturate(1.1)}.mayfair:after,.mayfair:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.mayfair img{width:100%;z-index:1}.mayfair:before{z-index:2}.mayfair:after{z-index:3}.mayfair::after{background:-webkit-radial-gradient(40% 40%,circle,rgba(255,255,255,.8),rgba(255,200,200,.6),#111 60%);background:radial-gradient(circle at 40% 40%,rgba(255,255,255,.8),rgba(255,200,200,.6),#111 60%);mix-blend-mode:overlay;opacity:.4}.lofi{position:relative;-webkit-filter:saturate(1.1) contrast(1.5);filter:saturate(1.1) contrast(1.5)}.lofi:after,.lofi:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.lofi img{width:100%;z-index:1}.lofi:before{z-index:2}.lofi:after{z-index:3}.lofi::after{background:-webkit-radial-gradient(circle,transparent 70%,#222 150%);background:radial-gradient(circle,transparent 70%,#222 150%);mix-blend-mode:multiply}._1977{position:relative;-webkit-filter:contrast(1.1) brightness(1.1) saturate(1.3);filter:contrast(1.1) brightness(1.1) saturate(1.3)}._1977:after,._1977:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}._1977 img{width:100%;z-index:1}._1977:before{z-index:2}._1977:after{z-index:3;background:rgba(243,106,188,.3);mix-blend-mode:screen}.brooklyn{position:relative;-webkit-filter:contrast(.9) brightness(1.1);filter:contrast(.9) brightness(1.1)}.brooklyn:after,.brooklyn:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.brooklyn img{width:100%;z-index:1}.brooklyn:before{z-index:2}.brooklyn:after{z-index:3}.brooklyn::after{background:-webkit-radial-gradient(circle,rgba(168,223,193,.4) 70%,#c4b7c8);background:radial-gradient(circle,rgba(168,223,193,.4) 70%,#c4b7c8);mix-blend-mode:overlay}.xpro2{position:relative;-webkit-filter:sepia(.3);filter:sepia(.3)}.xpro2:after,.xpro2:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.xpro2 img{width:100%;z-index:1}.xpro2:before{z-index:2}.xpro2:after{z-index:3}.xpro2::after{background:-webkit-radial-gradient(circle,#e6e7e0 40%,rgba(43,42,161,.6) 110%);background:radial-gradient(circle,#e6e7e0 40%,rgba(43,42,161,.6) 110%);mix-blend-mode:color-burn}.nashville{position:relative;-webkit-filter:sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2);filter:sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2)}.nashville:after,.nashville:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.nashville img{width:100%;z-index:1}.nashville:before{z-index:2}.nashville:after{z-index:3}.nashville::after{background:rgba(0,70,150,.4);mix-blend-mode:lighten}.nashville::before{background:rgba(247,176,153,.56);mix-blend-mode:darken}.lark{position:relative;-webkit-filter:contrast(.9);filter:contrast(.9)}.lark:after,.lark:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.lark img{width:100%;z-index:1}.lark:before{z-index:2}.lark:after{z-index:3}.lark::after{background:rgba(242,242,242,.8);mix-blend-mode:darken}.lark::before{background:#22253f;mix-blend-mode:color-dodge}.moon{position:relative;-webkit-filter:grayscale(1) contrast(1.1) brightness(1.1);filter:grayscale(1) contrast(1.1) brightness(1.1)}.moon:after,.moon:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.moon img{width:100%;z-index:1}.moon:before{z-index:2}.moon:after{z-index:3}.moon::before{background:#a0a0a0;mix-blend-mode:soft-light}.moon::after{background:#383838;mix-blend-mode:lighten}.clarendon{position:relative;-webkit-filter:contrast(1.2) saturate(1.35);filter:contrast(1.2) saturate(1.35)}.clarendon:after,.clarendon:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.clarendon img{width:100%;z-index:1}.clarendon:before{z-index:2;background:rgba(127,187,227,.2);mix-blend-mode:overlay}.clarendon:after{z-index:3}.willow{position:relative;-webkit-filter:grayscale(.5) contrast(.95) brightness(.9);filter:grayscale(.5) contrast(.95) brightness(.9)}.willow:after,.willow:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.willow img{width:100%;z-index:1}.willow:before{z-index:2}.willow:after{z-index:3}.willow::before{background-color:radial-gradient(40%,circle,#d4a9af 55%,#000 150%);mix-blend-mode:overlay}.willow::after{background-color:#d8cdcb;mix-blend-mode:color}.rise{position:relative;-webkit-filter:brightness(1.05) sepia(.2) contrast(.9) saturate(.9);filter:brightness(1.05) sepia(.2) contrast(.9) saturate(.9)}.rise:after,.rise:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.rise img{width:100%;z-index:1}.rise:before{z-index:2}.rise:after{z-index:3}.rise::after{background:-webkit-radial-gradient(circle,rgba(232,197,152,.8),transparent 90%);background:radial-gradient(circle,rgba(232,197,152,.8),transparent 90%);mix-blend-mode:overlay;opacity:.6}.rise::before{background:-webkit-radial-gradient(circle,rgba(236,205,169,.15) 55%,rgba(50,30,7,.4));background:radial-gradient(circle,rgba(236,205,169,.15) 55%,rgba(50,30,7,.4));mix-blend-mode:multiply}.slumber{position:relative;-webkit-filter:saturate(.66) brightness(1.05);filter:saturate(.66) brightness(1.05)}.slumber:after,.slumber:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.slumber img{width:100%;z-index:1}.slumber:before{z-index:2}.slumber:after{z-index:3}.slumber::after{background:rgba(125,105,24,.5);mix-blend-mode:soft-light}.slumber::before{background:rgba(69,41,12,.4);mix-blend-mode:lighten}.brannan{position:relative;-webkit-filter:sepia(.5) contrast(1.4);filter:sepia(.5) contrast(1.4)}.brannan:after,.brannan:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.brannan img{width:100%;z-index:1}.brannan:before{z-index:2}.brannan:after{z-index:3}.brannan::after{background-color:rgba(161,44,199,.31);mix-blend-mode:lighten}.valencia{position:relative;-webkit-filter:contrast(1.08) brightness(1.08) sepia(.08);filter:contrast(1.08) brightness(1.08) sepia(.08)}.valencia:after,.valencia:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.valencia img{width:100%;z-index:1}.valencia:before{z-index:2}.valencia:after{z-index:3}.valencia::after{background:#3a0339;mix-blend-mode:exclusion;opacity:.5}.kelvin{position:relative}.kelvin:after,.kelvin:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.kelvin img{width:100%;z-index:1}.kelvin:before{z-index:2}.kelvin:after{z-index:3}.kelvin::after{background:#b77d21;mix-blend-mode:overlay}.kelvin::before{background:#382c34;mix-blend-mode:color-dodge}.maven{position:relative;-webkit-filter:sepia(.25) brightness(.95) contrast(.95) saturate(1.5);filter:sepia(.25) brightness(.95) contrast(.95) saturate(1.5)}.maven:after,.maven:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.maven img{width:100%;z-index:1}.maven:before{z-index:2}.maven:after{z-index:3;background:rgba(3,230,26,.2);mix-blend-mode:hue}.stinson{position:relative;-webkit-filter:contrast(.75) saturate(.85) brightness(1.15);filter:contrast(.75) saturate(.85) brightness(1.15)}.stinson:after,.stinson:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.stinson img{width:100%;z-index:1}.stinson:before{z-index:2}.stinson:after{z-index:3}.stinson::before{background:rgba(240,149,128,.2);mix-blend-mode:soft-light}

#stacks_in_3698 p,#stacks_in_3698 div,#stacks_in_3698 ul,#stacks_in_3698 ol,#stacks_in_3698 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3698 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_3698 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3698{}}



@font-face{font-family:eames-black-italic;font-style:normal;font-weight:normal;src:url("https://theduckinnchicago.com/resources/EamesCenturyModern-BlackItalic.woff") format("woff")}
 .font-vault-1 > a, .font-vault-1,.font-vault-1 > li,   .fontpro-stacks_in_4874{font-family:"eames-black-italic",serif }

@font-face{font-family:font-family;font-style:normal;font-weight:normal;src:url("https://theduckinnchicago.com/resources/EamesCenturyModern-Book.woff") format("woff")}
 .eames, .fontpro-stacks_in_4876{font-family:"font-family",sans-serif }
/* Tabs */

#tabs_stacks_in_1190 {
	
	padding: 20px 0px 36px;
}

#tabs_stacks_in_1190 ul.etabs {
	padding: 0px;
}

.etabs {
	padding: 0; 
	text-align: center;
	overflow: inherit;
	margin: 0px 0 0;
}

.tabstacks_in_1190 { 
	margin: 0px 5px; 
	padding:0; 
	display: inline-block; 
	zoom:1; 
	*display:inline; 
	border-bottom: none; 
	top:1px;
	position: relative;
	z-index: 1;
}

.tabstacks_in_1190 a { 
	display: block; 
	padding: 7px 12px;  
	border: 3px solid #ECE1CD;
	text-decoration: none;
}

.tabstacks_in_1190 a:link {
	color: #ECE1CD!important;
}

.tabstacks_in_1190 a.active { 
	color: #ECE1CD;
	border: 3px solid #1C9B9D;
}

.tabstacks_in_1190 a:hover { 
	color: #FFFFFF!important;
	border: 3px solid #1C9B9D;
}

.tabstacks_in_1190.active {
	position: relative; 
	z-index: 3;
	background-color: #1C9B9D;
}

.tab-containerstacks_in_1190 .panel-container {
	position: relative;
	z-index: 1;
	padding: 30px 0px 0;
	text-align: left;
	
}

.panel-container { 
	margin-bottom: 10px; 
}

/* @end */


/* Tablet and Mobile */
@media only screen and (max-width:767px) {

	.tabstacks_in_1190 {
		padding:0; 
		display: block;
		zoom:1; 
		*display:inline; 
		border-bottom: none; 
		top:0;
		position: relative;
		z-index: 1;
		margin: 10px 0;
	}
	
	.tabstacks_in_1190 a { 
		display: block; 
		padding: 7px 12px;  		
	}
	
	.tabstacks_in_1190.active { 
		position: relative; 
		z-index: 3;
	}
	
	.tab-container .panel-container { 
		padding: 30px 20px 0 20px;
		position: relative;
		z-index: 1;
	}
	
	.panel-container { 
		margin-bottom: 10px; 
	}
		
}

/* Edit Mode UI  */


#stacks_in_1190 {
	-moz-border-radius: 7px 7px 7px 7px;
	-webkit-border-radius: 7px 7px 7px 7px;
	border-radius: 7px 7px 7px 7px;
}
@media only screen and (min-width:0px){#stacks_in_3717 h1,#stacks_in_3717 div{line-height:1.20}}#stacks_in_3717 h1,#stacks_in_3717 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3717 h1 a,#stacks_in_3717 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3717 h1 a:hover,#stacks_in_3717 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3717 small,#stacks_in_3717 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3717 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_3717 {
	padding: 0px 0px 6px 0px;
}
#stacks_in_3723 *, #stacks_in_3723 *:after, #stacks_in_3723 *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; }

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

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

#stacks_in_3723  {
}

#stacks_in_3723 .timeline_item {
	position: relative;
}

#stacks_in_3723 ul.cbp_tmtimeline {
	margin: 0;
}

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

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

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

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

#stacks_in_3723 .cbp_tmtimeline li {
	margin: 0;
}

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

		
			background: #262626;
		

	

	
		left: 20%;
	
	
	
	
	
	

	margin-left: -10px;
}

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

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

#stacks_in_3723 .cbp_tmtimeline li .cbp_tmtime span.small_label {
	font-size: 16px;
	line-height: 1.2;
	white-space: normal;
	
		color: #BDBDBD;
	
}

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

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

#stacks_in_3723 .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_3723 .timeline_content {
	margin-top: 20px;
}


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


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

	
		left: 20%;
	
	
	
	
	
	

	margin: 0 0 0 -25px;

	
}

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



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

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

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

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

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

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

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


	

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

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

	


}








	#stacks_in_3703 .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_3703 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_4526 h1,#stacks_in_4526 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_4526 h1,#stacks_in_4526 .hTxt:not(.segment) div{font-size:1.80rem}}@media only screen and (min-width:0px){#stacks_in_4526 h1,#stacks_in_4526 div{line-height:1.10}}#stacks_in_4526 h1,#stacks_in_4526 div{color:rgba(209, 0, 14, 1.00)}#stacks_in_4526 h1 a,#stacks_in_4526 div a{color:rgba(209, 0, 14, 1.00)}#stacks_in_4526 h1 a:hover,#stacks_in_4526 div a:hover{color:rgba(156, 0, 10, 1.00)}#stacks_in_4526 small,#stacks_in_4526 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_4526 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3743 h6,#stacks_in_3743 .hTxt:not(.segment) div{font-size:1.20rem}@media all and (max-width:640px){#stacks_in_3743 h6,#stacks_in_3743 .hTxt:not(.segment) div{font-size:1.00rem}}@media only screen and (min-width:0px){#stacks_in_3743 h6,#stacks_in_3743 div{line-height:1.20}}#stacks_in_3743 h6,#stacks_in_3743 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3743 h6 a,#stacks_in_3743 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3743 h6 a:hover,#stacks_in_3743 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3743 small,#stacks_in_3743 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3743 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_3743 {
	margin: 0px 0px 16px 0px;
}
/* Smart2columns2 stack v2.4.2 */#stacks_in_3705 .s2c_stacks_in_3705_cw {	display: table;	table-layout: fixed;	width: 100%;}#stacks_in_3705 .s2c_stacks_in_3705_cw, #stacks_in_3705 .s2c_stacks_in_3705_cw * {	-webkit-box-sizing: border-box;	   -moz-box-sizing: border-box;	        box-sizing: border-box;}#stacks_in_3705 .s2c_stacks_in_3705_cw [class^="s2c_stacks_in_3705_col"] {	display: table-cell;	overflow: hidden;	background-clip: padding-box;}#stacks_in_3705 .s2c_stacks_in_3705_col1 {			vertical-align: top;  	  	border-radius: 0px;		}#stacks_in_3705 .s2c_stacks_in_3705_col2 {		vertical-align: middle;   	  	border-radius: 0px;		}#stacks_in_3705 .s2c_stacks_in_3705_cw .s2c_stacks_in_3705_spacer {	display: table-cell;	width: 5%;}@media only screen and (max-width: 750px) {		#stacks_in_3705 .s2c_stacks_in_3705_cw {		display: block;		table-layout: auto;	}		#stacks_in_3705 .s2c_stacks_in_3705_cw [class^="s2c_stacks_in_3705_col"] {		display: block;		width: 100%;	}	 	#stacks_in_3705 .s2c_stacks_in_3705_cw .s2c_stacks_in_3705_spacer {		display: block;		height: 24px;		order: 2;	}		}			/* End of Smart2columns2 stack */.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .92);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 30px;
	border-radius: 7px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 7px;
}






/* Solid colour fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
	background: rgba(0, 0, 0, 1.00);
}
















.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(235, 91, 37, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 700ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
	display: none !important;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_4749 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_4749 #topBoxTriggerstacks_in_4749 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_4749 #topBoxTriggerContentstacks_in_4749 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_4749 #topBoxTriggerContentstacks_in_4749 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_4749 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_4749 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_4749 h1,
#topBoxContentWrapperstacks_in_4749 h2,
#topBoxContentWrapperstacks_in_4749 h3,
#topBoxContentWrapperstacks_in_4749 h4,
#topBoxContentWrapperstacks_in_4749 h5,
#topBoxContentWrapperstacks_in_4749 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_4749 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 700ms ease-in-out;
}

#topBoxContentWrapperstacks_in_4749 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_4749 a:hover,
#topBoxContentWrapperstacks_in_4749 a:focus,
#topBoxContentWrapperstacks_in_4749 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_4749 .topBoxAudio,
#topBoxContentWrapperstacks_in_4749 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_4749.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_4749 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_4749 .trackName,
#topBoxContentWrapperstacks_in_4749 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_4749 {
	display: none;
}










#badger_ribbon_stacks_in_4752 {
  width: auto;
  white-space: nowrap;
  padding: 0.5rem 4rem;
  overflow: hidden;
  position: absolute;
  top: 0.58rem;
  right: -8.20rem;
  z-index: 99999;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.40);
  transition: all 300ms;
  
  border: 1px ridge rgba(255, 0, 17, 1.00);
  
}

@media (prefers-color-scheme: dark) {
  #badger_ribbon_stacks_in_4752 {
    box-shadow: 0 0 10px 3px rgba(255, 255, 255, 0.15);
    
    border: 1px ridge rgba(255, 0, 17, 1.00);
    
  }
}


@media print {
  #badger_ribbon_stacks_in_4752 {
    display: none;
  }
}



#badger_ribbon_stacks_in_4752 {
  opacity: 0;
  animation-name: badgerFadeIn;
  animation-delay: 3000ms;
  animation-duration: 900ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes badgerFadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

















#badger_ribbon_stacks_in_4752 {
  background-color: rgba(168, 0, 11, 1.00);
}
@media (prefers-color-scheme: dark) {
  #badger_ribbon_stacks_in_4752 {
    background-color: rgba(168, 0, 11, 1.00);
  }
}




#badger_ribbon_content_stacks_in_4752 {
  display: flex;
  align-items: center;
  gap: 0.50rem;
  width: 100%;
  padding: 0.5rem 4rem;
  color: rgba(255, 255, 255, 1.00);
  font-size: .9rem;
  line-height: 1.2;
  text-align: center;
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  font-weight: bold;
  
  
}



@media (prefers-color-scheme: dark) {
  #badger_ribbon_content_stacks_in_4752 {
    color: rgba(255, 255, 255, 1.00);
  }
}

#badger_ribbon_content_stacks_in_4752 a,
#badger_ribbon_content_stacks_in_4752 a:visited,
#badger_ribbon_content_stacks_in_4752 a:hover,
#badger_ribbon_content_stacks_in_4752 a:active {
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
  font-weight: bold;
  
  
  color: rgba(255, 255, 255, 1.00);
  border: none;
}

@media (prefers-color-scheme: dark) {
  #badger_ribbon_content_stacks_in_4752 a,
  #badger_ribbon_content_stacks_in_4752 a:visited,
  #badger_ribbon_content_stacks_in_4752 a:hover,
  #badger_ribbon_content_stacks_in_4752 a:active {
    color: rgba(255, 255, 255, 1.00);
  }
}



#badger_container_stacks_in_4752 {
  position: relative;
  overflow: hidden;
}

#badger_container_stacks_stacks_in_4752 {
  position: relative;
  z-index: 1;
}






/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_4751 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_4751 {
	position: relative;
}

#imageWizardstacks_in_4751 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	margin: 0 auto 0 0;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */
#stacks_in_4756 h2,#stacks_in_4756 .hTxt:not(.segment) div{font-size:1.60rem}@media all and (max-width:640px){#stacks_in_4756 h2,#stacks_in_4756 .hTxt:not(.segment) div{font-size:1.30rem}}@media only screen and (min-width:0px){#stacks_in_4756 h2,#stacks_in_4756 div{line-height:1.10}}#stacks_in_4756 h2,#stacks_in_4756 div{color:rgba(219, 0, 0, 1.00)}#stacks_in_4756 h2 a,#stacks_in_4756 div a{color:rgba(219, 0, 0, 1.00)}#stacks_in_4756 h2 a:hover,#stacks_in_4756 div a:hover{color:rgba(164, 0, 0, 1.00)}#stacks_in_4756 small,#stacks_in_4756 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_4756 h2.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_4762 p,#stacks_in_4762 div{margin-bottom:0}#stacks_in_4762 p,#stacks_in_4762 div,#stacks_in_4762 ul,#stacks_in_4762 ol,#stacks_in_4762 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_4762 a{color:rgba(255, 0, 17, 1.00)}#stacks_in_4762 a:hover{color:rgba(0, 210, 0, 1.00)}@media only screen and (min-width:0px){#stacks_in_4762{}}





	#stacks_in_4700 .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_4700 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_4702 h1,#stacks_in_4702 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_4702 h1,#stacks_in_4702 .hTxt:not(.segment) div{font-size:1.80rem}}@media only screen and (min-width:0px){#stacks_in_4702 h1,#stacks_in_4702 div{line-height:1.10}}#stacks_in_4702 h1,#stacks_in_4702 div{color:rgba(167, 182, 105, 1.00)}#stacks_in_4702 h1 a,#stacks_in_4702 div a{color:rgba(167, 182, 105, 1.00)}#stacks_in_4702 h1 a:hover,#stacks_in_4702 div a:hover{color:rgba(125, 136, 78, 1.00)}#stacks_in_4702 small,#stacks_in_4702 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_4702 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_4709 h6,#stacks_in_4709 .hTxt:not(.segment) div{font-size:1.20rem}@media all and (max-width:640px){#stacks_in_4709 h6,#stacks_in_4709 .hTxt:not(.segment) div{font-size:1.00rem}}@media only screen and (min-width:0px){#stacks_in_4709 h6,#stacks_in_4709 div{line-height:1.20}}#stacks_in_4709 h6,#stacks_in_4709 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_4709 h6 a,#stacks_in_4709 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_4709 h6 a:hover,#stacks_in_4709 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_4709 small,#stacks_in_4709 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_4709 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_4709 {
	margin: 0px 0px 16px 0px;
}
/* Smart2columns2 stack v2.4.2 */#stacks_in_4715 .s2c_stacks_in_4715_cw {	display: table;	table-layout: fixed;	width: 100%;}#stacks_in_4715 .s2c_stacks_in_4715_cw, #stacks_in_4715 .s2c_stacks_in_4715_cw * {	-webkit-box-sizing: border-box;	   -moz-box-sizing: border-box;	        box-sizing: border-box;}#stacks_in_4715 .s2c_stacks_in_4715_cw [class^="s2c_stacks_in_4715_col"] {	display: table-cell;	overflow: hidden;	background-clip: padding-box;}#stacks_in_4715 .s2c_stacks_in_4715_col1 {			vertical-align: top;  	  	border-radius: 0px;		}#stacks_in_4715 .s2c_stacks_in_4715_col2 {		vertical-align: middle;   	  	border-radius: 0px;		}#stacks_in_4715 .s2c_stacks_in_4715_cw .s2c_stacks_in_4715_spacer {	display: table-cell;	width: 5%;}@media only screen and (max-width: 750px) {		#stacks_in_4715 .s2c_stacks_in_4715_cw {		display: block;		table-layout: auto;	}		#stacks_in_4715 .s2c_stacks_in_4715_cw [class^="s2c_stacks_in_4715_col"] {		display: block;		width: 100%;	}	 	#stacks_in_4715 .s2c_stacks_in_4715_cw .s2c_stacks_in_4715_spacer {		display: block;		height: 24px;		order: 2;	}		}			/* End of Smart2columns2 stack */.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .92);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 30px;
	border-radius: 7px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 7px;
}






/* Solid colour fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
	background: rgba(0, 0, 0, 1.00);
}
















.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(235, 91, 37, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 700ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
	display: none !important;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_4728 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_4728 #topBoxTriggerstacks_in_4728 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_4728 #topBoxTriggerContentstacks_in_4728 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_4728 #topBoxTriggerContentstacks_in_4728 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_4728 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_4728 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_4728 h1,
#topBoxContentWrapperstacks_in_4728 h2,
#topBoxContentWrapperstacks_in_4728 h3,
#topBoxContentWrapperstacks_in_4728 h4,
#topBoxContentWrapperstacks_in_4728 h5,
#topBoxContentWrapperstacks_in_4728 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_4728 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 700ms ease-in-out;
}

#topBoxContentWrapperstacks_in_4728 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_4728 a:hover,
#topBoxContentWrapperstacks_in_4728 a:focus,
#topBoxContentWrapperstacks_in_4728 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_4728 .topBoxAudio,
#topBoxContentWrapperstacks_in_4728 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_4728.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_4728 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_4728 .trackName,
#topBoxContentWrapperstacks_in_4728 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_4728 {
	display: none;
}







/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_4729 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_4729 {
	position: relative;
}

#imageWizardstacks_in_4729 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	margin: 0 auto 0 0;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */


#imageWizardstacks_in_4729,
#imageWizardstacks_in_4729 #glassstacks_in_4729,
#imageWizardstacks_in_4729 a,
#imageWizardstacks_in_4729 img {
	cursor: pointer;
}


/* @group Edit Mode Styling */

/*  */

/* @end */
#stacks_in_4719 h2,#stacks_in_4719 .hTxt:not(.segment) div{font-size:1.60rem}@media all and (max-width:640px){#stacks_in_4719 h2,#stacks_in_4719 .hTxt:not(.segment) div{font-size:1.30rem}}@media only screen and (min-width:0px){#stacks_in_4719 h2,#stacks_in_4719 div{line-height:1.10}}#stacks_in_4719 h2,#stacks_in_4719 div{color:rgba(147, 171, 75, 1.00)}#stacks_in_4719 h2 a,#stacks_in_4719 div a{color:rgba(147, 171, 75, 1.00)}#stacks_in_4719 h2 a:hover,#stacks_in_4719 div a:hover{color:rgba(110, 128, 56, 1.00)}#stacks_in_4719 small,#stacks_in_4719 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_4719 h2.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_4725 p,#stacks_in_4725 div{margin-bottom:0}#stacks_in_4725 p,#stacks_in_4725 div,#stacks_in_4725 ul,#stacks_in_4725 ol,#stacks_in_4725 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_4725 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_4725 a:hover{color:rgba(255, 130, 1, 1.00)}@media only screen and (min-width:0px){#stacks_in_4725{}}





	#stacks_in_4595 .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_4595 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_4597 h1,#stacks_in_4597 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_4597 h1,#stacks_in_4597 .hTxt:not(.segment) div{font-size:1.80rem}}@media only screen and (min-width:0px){#stacks_in_4597 h1,#stacks_in_4597 div{line-height:1.10}}#stacks_in_4597 h1,#stacks_in_4597 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_4597 h1 a,#stacks_in_4597 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_4597 h1 a:hover,#stacks_in_4597 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_4597 small,#stacks_in_4597 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_4597 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_4597 .primary,#stacks_in_4597 .segment{display:inline-block}#stacks_in_4597 .primary.sub-title,#stacks_in_4597 .segment.sub-title{display:block}#stacks_in_4597 [data-seg="segment2"].last-title{display:block}#stacks_in_4597 .segment.no-shadow{text-shadow:none !important}#stacks_in_4597 .segment *{}#stacks_in_4597 .hTxt.primary{vertical-align:baseline}#stacks_in_4597 .segment[data-seg="segment1"]{font-size:75%;color:rgba(28, 155, 157, 1.00);padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;vertical-align:baseline;}#stacks_in_4597 .segment[data-seg="segment1"] div{color:rgba(28, 155, 157, 1.00)}#stacks_in_4597 .segment[data-seg="segment1"] div.mez{font-size:75%}

#stacks_in_4604 h6,#stacks_in_4604 .hTxt:not(.segment) div{font-size:1.20rem}@media all and (max-width:640px){#stacks_in_4604 h6,#stacks_in_4604 .hTxt:not(.segment) div{font-size:1.00rem}}@media only screen and (min-width:0px){#stacks_in_4604 h6,#stacks_in_4604 div{line-height:1.20}}#stacks_in_4604 h6,#stacks_in_4604 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_4604 h6 a,#stacks_in_4604 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_4604 h6 a:hover,#stacks_in_4604 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_4604 small,#stacks_in_4604 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_4604 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_4604 {
	margin: 0px 0px 16px 0px;
}
/* Smart2columns2 stack v2.4.2 */#stacks_in_4610 .s2c_stacks_in_4610_cw {	display: table;	table-layout: fixed;	width: 100%;}#stacks_in_4610 .s2c_stacks_in_4610_cw, #stacks_in_4610 .s2c_stacks_in_4610_cw * {	-webkit-box-sizing: border-box;	   -moz-box-sizing: border-box;	        box-sizing: border-box;}#stacks_in_4610 .s2c_stacks_in_4610_cw [class^="s2c_stacks_in_4610_col"] {	display: table-cell;	overflow: hidden;	background-clip: padding-box;}#stacks_in_4610 .s2c_stacks_in_4610_col1 {			vertical-align: top;  	  	border-radius: 0px;		}#stacks_in_4610 .s2c_stacks_in_4610_col2 {		vertical-align: middle;   	  	border-radius: 0px;		}#stacks_in_4610 .s2c_stacks_in_4610_cw .s2c_stacks_in_4610_spacer {	display: table-cell;	width: 5%;}@media only screen and (max-width: 750px) {		#stacks_in_4610 .s2c_stacks_in_4610_cw {		display: block;		table-layout: auto;	}		#stacks_in_4610 .s2c_stacks_in_4610_cw [class^="s2c_stacks_in_4610_col"] {		display: block;		width: 100%;	}	 	#stacks_in_4610 .s2c_stacks_in_4610_cw .s2c_stacks_in_4610_spacer {		display: block;		height: 24px;		order: 2;	}		}			/* End of Smart2columns2 stack */.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .92);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 30px;
	border-radius: 7px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 7px;
}






/* Solid colour fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
	background: rgba(0, 0, 0, 1.00);
}
















.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(235, 91, 37, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 700ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
	display: none !important;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_4623 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_4623 #topBoxTriggerstacks_in_4623 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_4623 #topBoxTriggerContentstacks_in_4623 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_4623 #topBoxTriggerContentstacks_in_4623 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_4623 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_4623 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_4623 h1,
#topBoxContentWrapperstacks_in_4623 h2,
#topBoxContentWrapperstacks_in_4623 h3,
#topBoxContentWrapperstacks_in_4623 h4,
#topBoxContentWrapperstacks_in_4623 h5,
#topBoxContentWrapperstacks_in_4623 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_4623 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 700ms ease-in-out;
}

#topBoxContentWrapperstacks_in_4623 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_4623 a:hover,
#topBoxContentWrapperstacks_in_4623 a:focus,
#topBoxContentWrapperstacks_in_4623 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_4623 .topBoxAudio,
#topBoxContentWrapperstacks_in_4623 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_4623.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_4623 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_4623 .trackName,
#topBoxContentWrapperstacks_in_4623 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_4623 {
	display: none;
}










#badger_ribbon_stacks_in_4625 {
  width: auto;
  white-space: nowrap;
  padding: 0.5rem 4rem;
  overflow: hidden;
  position: absolute;
  top: 0.58rem;
  right: -8.20rem;
  z-index: 99999;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.30);
  transition: all 300ms;
  
  border: 1px ridge rgba(255, 255, 255, 1.00);
  
}

@media (prefers-color-scheme: dark) {
  #badger_ribbon_stacks_in_4625 {
    box-shadow: 0 0 10px 3px rgba(255, 255, 255, 0.15);
    
    border: 1px ridge rgba(255, 255, 255, 1.00);
    
  }
}


@media print {
  #badger_ribbon_stacks_in_4625 {
    display: none;
  }
}



#badger_ribbon_stacks_in_4625 {
  opacity: 0;
  animation-name: badgerFadeIn;
  animation-delay: 2000ms;
  animation-duration: 750ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes badgerFadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

















#badger_ribbon_stacks_in_4625 {
  background-color: rgba(236, 160, 68, 1.00);
}
@media (prefers-color-scheme: dark) {
  #badger_ribbon_stacks_in_4625 {
    background-color: rgba(236, 160, 68, 1.00);
  }
}




#badger_ribbon_content_stacks_in_4625 {
  display: flex;
  align-items: center;
  gap: 0.50rem;
  width: 100%;
  padding: 0.5rem 4rem;
  color: rgba(255, 255, 255, 1.00);
  font-size: .9rem;
  line-height: 1.2;
  text-align: center;
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  font-weight: bold;
  
  
}



@media (prefers-color-scheme: dark) {
  #badger_ribbon_content_stacks_in_4625 {
    color: rgba(255, 255, 255, 1.00);
  }
}

#badger_ribbon_content_stacks_in_4625 a,
#badger_ribbon_content_stacks_in_4625 a:visited,
#badger_ribbon_content_stacks_in_4625 a:hover,
#badger_ribbon_content_stacks_in_4625 a:active {
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
  font-weight: bold;
  
  
  color: rgba(255, 255, 255, 1.00);
  border: none;
}

@media (prefers-color-scheme: dark) {
  #badger_ribbon_content_stacks_in_4625 a,
  #badger_ribbon_content_stacks_in_4625 a:visited,
  #badger_ribbon_content_stacks_in_4625 a:hover,
  #badger_ribbon_content_stacks_in_4625 a:active {
    color: rgba(255, 255, 255, 1.00);
  }
}



#badger_container_stacks_in_4625 {
  position: relative;
  overflow: hidden;
}

#badger_container_stacks_stacks_in_4625 {
  position: relative;
  z-index: 1;
}






/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_4624 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_4624 {
	position: relative;
}

#imageWizardstacks_in_4624 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	margin: 0 auto 0 0;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */


#imageWizardstacks_in_4624,
#imageWizardstacks_in_4624 #glassstacks_in_4624,
#imageWizardstacks_in_4624 a,
#imageWizardstacks_in_4624 img {
	cursor: pointer;
}


/* @group Edit Mode Styling */

/*  */

/* @end */
#stacks_in_4614 h2,#stacks_in_4614 .hTxt:not(.segment) div{font-size:1.60rem}@media all and (max-width:640px){#stacks_in_4614 h2,#stacks_in_4614 .hTxt:not(.segment) div{font-size:1.30rem}}@media only screen and (min-width:0px){#stacks_in_4614 h2,#stacks_in_4614 div{line-height:1.10}}#stacks_in_4614 h2,#stacks_in_4614 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_4614 h2 a,#stacks_in_4614 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_4614 h2 a:hover,#stacks_in_4614 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_4614 small,#stacks_in_4614 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_4614 h2.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_4620 p,#stacks_in_4620 div{margin-bottom:0}#stacks_in_4620 p,#stacks_in_4620 div,#stacks_in_4620 ul,#stacks_in_4620 ol,#stacks_in_4620 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_4620 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_4620 a:hover{color:rgba(255, 130, 1, 1.00)}@media only screen and (min-width:0px){#stacks_in_4620{}}





	#stacks_in_4480 .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_4480 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_4482 h1,#stacks_in_4482 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_4482 h1,#stacks_in_4482 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_4482 h1,#stacks_in_4482 div{line-height:1.10}}#stacks_in_4482 h1,#stacks_in_4482 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_4482 h1 a,#stacks_in_4482 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_4482 h1 a:hover,#stacks_in_4482 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_4482 small,#stacks_in_4482 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_4482 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_4488 h6,#stacks_in_4488 .hTxt:not(.segment) div{font-size:1.20rem}@media all and (max-width:640px){#stacks_in_4488 h6,#stacks_in_4488 .hTxt:not(.segment) div{font-size:1.00rem}}@media only screen and (min-width:0px){#stacks_in_4488 h6,#stacks_in_4488 div{line-height:1.20}}#stacks_in_4488 h6,#stacks_in_4488 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_4488 h6 a,#stacks_in_4488 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_4488 h6 a:hover,#stacks_in_4488 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_4488 small,#stacks_in_4488 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_4488 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_4488 {
	margin: 0px 0px 16px 0px;
}
/* Smart2columns2 stack v2.4.2 */#stacks_in_4494 .s2c_stacks_in_4494_cw {	display: table;	table-layout: fixed;	width: 100%;}#stacks_in_4494 .s2c_stacks_in_4494_cw, #stacks_in_4494 .s2c_stacks_in_4494_cw * {	-webkit-box-sizing: border-box;	   -moz-box-sizing: border-box;	        box-sizing: border-box;}#stacks_in_4494 .s2c_stacks_in_4494_cw [class^="s2c_stacks_in_4494_col"] {	display: table-cell;	overflow: hidden;	background-clip: padding-box;}#stacks_in_4494 .s2c_stacks_in_4494_col1 {			vertical-align: top;  	  	border-radius: 0px;		}#stacks_in_4494 .s2c_stacks_in_4494_col2 {		vertical-align: middle;   	  	border-radius: 0px;		}#stacks_in_4494 .s2c_stacks_in_4494_cw .s2c_stacks_in_4494_spacer {	display: table-cell;	width: 5%;}@media only screen and (max-width: 750px) {		#stacks_in_4494 .s2c_stacks_in_4494_cw {		display: block;		table-layout: auto;	}		#stacks_in_4494 .s2c_stacks_in_4494_cw [class^="s2c_stacks_in_4494_col"] {		display: block;		width: 100%;	}	 	#stacks_in_4494 .s2c_stacks_in_4494_cw .s2c_stacks_in_4494_spacer {		display: block;		height: 24px;		order: 2;	}		}			/* End of Smart2columns2 stack *//* @group ImageWizard Basic Styling */

#imageWizardstacks_in_4502 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_4502 {
	position: relative;
}

#imageWizardstacks_in_4502 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	margin: 0 auto 0 0;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */
#stacks_in_4498 p,#stacks_in_4498 div{margin-bottom:0}#stacks_in_4498 p,#stacks_in_4498 div,#stacks_in_4498 ul,#stacks_in_4498 ol,#stacks_in_4498 dl{color:rgba(169, 162, 165, 1.00)}#stacks_in_4498 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_4498 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_4498{}}

#stacks_in_4504 p,#stacks_in_4504 div{margin-bottom:0}#stacks_in_4504 p,#stacks_in_4504 div,#stacks_in_4504 ul,#stacks_in_4504 ol,#stacks_in_4504 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_4504 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_4504 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_4504{}}


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




	#stacks_in_4400 .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_4400 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_4402 h1,#stacks_in_4402 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_4402 h1,#stacks_in_4402 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_4402 h1,#stacks_in_4402 div{line-height:1.10}}#stacks_in_4402 h1,#stacks_in_4402 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_4402 h1 a,#stacks_in_4402 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_4402 h1 a:hover,#stacks_in_4402 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_4402 small,#stacks_in_4402 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_4402 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_4408 h6,#stacks_in_4408 .hTxt:not(.segment) div{font-size:1.20rem}@media all and (max-width:640px){#stacks_in_4408 h6,#stacks_in_4408 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_4408 h6,#stacks_in_4408 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_4408 h6 a,#stacks_in_4408 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_4408 h6 a:hover,#stacks_in_4408 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_4408 small,#stacks_in_4408 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_4408 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_4408 {
	margin: 0px 0px 16px 0px;
}
/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_4413 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_4413 {
	position: relative;
}

#imageWizardstacks_in_4413 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	margin: 0 auto 0 0;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_4417 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_4417 .pullquote:before, #stacks_in_4417 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_4417 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_4417 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_4417 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_4417 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}
#stacks_in_4417 {
	margin: 14px 12px 0px 12px;
}
#stacks_in_4429 p,#stacks_in_4429 div{margin-bottom:0}#stacks_in_4429 p,#stacks_in_4429 div,#stacks_in_4429 ul,#stacks_in_4429 ol,#stacks_in_4429 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_4429 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_4429 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_4429{}}





	#stacks_in_4251 .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_4251 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_4253 h1,#stacks_in_4253 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_4253 h1,#stacks_in_4253 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_4253 h1,#stacks_in_4253 div{line-height:1.10}}#stacks_in_4253 h1,#stacks_in_4253 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_4253 h1 a,#stacks_in_4253 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_4253 h1 a:hover,#stacks_in_4253 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_4253 small,#stacks_in_4253 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_4253 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_4343 h6,#stacks_in_4343 .hTxt:not(.segment) div{font-size:1.20rem}@media all and (max-width:640px){#stacks_in_4343 h6,#stacks_in_4343 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_4343 h6,#stacks_in_4343 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_4343 h6 a,#stacks_in_4343 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_4343 h6 a:hover,#stacks_in_4343 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_4343 small,#stacks_in_4343 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_4343 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_4343 {
	margin: 0px 0px 16px 0px;
}
/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_4264 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_4264 {
	position: relative;
}

#imageWizardstacks_in_4264 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	margin: 0 auto 0 0;
}



/* @end */

/* @group Hyperlink */

/*  */

#imageWizardLinkstacks_in_4264 {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: transparent url('../files/imageWizardAssets/glass.gif') repeat;
	z-index: 100;
}

#imageWizardLinkstacks_in_4264 a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 102;
	outline: none;
}

#linkIconstacks_in_4264 {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	text-align: center;
	top: 0;
	left: 0;
	z-index: 101;
}

#linkIconstacks_in_4264 [class^="fa fa-"] {
	color: #ffffff;
	font-size: 50px;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0.99;
	transition: all 300ms ease-in-out;
}

#imageWizardstacks_in_4264:hover #linkIconstacks_in_4264 [class^="fa fa-"] {
	opacity: 0.50;
}

#linkShadestacks_in_4264 {
	background: #000000;
	opacity: 0.0;
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	transition: all 300ms ease-in-out;
}

#imageWizardstacks_in_4264:hover #linkShadestacks_in_4264 {
	opacity: 0.0;
}

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */
#stacks_in_4331 p,#stacks_in_4331 div{margin-bottom:0}#stacks_in_4331 p,#stacks_in_4331 div,#stacks_in_4331 ul,#stacks_in_4331 ol,#stacks_in_4331 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_4331 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_4331 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_4331{}}


#stacks_in_4331 {
	margin: 26px 0px 0px 0px;
}

#stacks_in_4271 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_4271 .pullquote:before, #stacks_in_4271 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_4271 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_4271 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_4271 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_4271 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}
#stacks_in_4271 {
	margin: 8px 12px 0px 12px;
}




	#stacks_in_4371 .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_4371 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_4373 h1,#stacks_in_4373 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_4373 h1,#stacks_in_4373 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_4373 h1,#stacks_in_4373 div{line-height:1.10}}#stacks_in_4373 h1,#stacks_in_4373 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_4373 h1 a,#stacks_in_4373 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_4373 h1 a:hover,#stacks_in_4373 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_4373 small,#stacks_in_4373 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_4373 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_4379 h6,#stacks_in_4379 .hTxt:not(.segment) div{font-size:1.20rem}@media all and (max-width:640px){#stacks_in_4379 h6,#stacks_in_4379 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_4379 h6,#stacks_in_4379 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_4379 h6 a,#stacks_in_4379 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_4379 h6 a:hover,#stacks_in_4379 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_4379 small,#stacks_in_4379 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_4379 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_4379 {
	margin: 0px 0px 16px 0px;
}
/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_4384 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_4384 {
	position: relative;
}

#imageWizardstacks_in_4384 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	margin: 0 auto 0 0;
}



/* @end */

/* @group Hyperlink */

/*  */

#imageWizardLinkstacks_in_4384 {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: transparent url('../files/imageWizardAssets/glass.gif') repeat;
	z-index: 100;
}

#imageWizardLinkstacks_in_4384 a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 102;
	outline: none;
}

#linkIconstacks_in_4384 {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	text-align: center;
	top: 0;
	left: 0;
	z-index: 101;
}

#linkIconstacks_in_4384 [class^="fa fa-"] {
	color: #ffffff;
	font-size: 50px;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0.99;
	transition: all 300ms ease-in-out;
}

#imageWizardstacks_in_4384:hover #linkIconstacks_in_4384 [class^="fa fa-"] {
	opacity: 0.50;
}

#linkShadestacks_in_4384 {
	background: #000000;
	opacity: 0.0;
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	transition: all 300ms ease-in-out;
}

#imageWizardstacks_in_4384:hover #linkShadestacks_in_4384 {
	opacity: 0.0;
}

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */
#stacks_in_4397 p,#stacks_in_4397 div{margin-bottom:0}#stacks_in_4397 p,#stacks_in_4397 div,#stacks_in_4397 ul,#stacks_in_4397 ol,#stacks_in_4397 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_4397 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_4397 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_4397{}}


#stacks_in_4397 {
	margin: 26px 0px 0px 0px;
}




	#stacks_in_4176 .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_4176 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_4178 h1,#stacks_in_4178 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_4178 h1,#stacks_in_4178 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_4178 h1,#stacks_in_4178 div{line-height:1.10}}#stacks_in_4178 h1,#stacks_in_4178 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_4178 h1 a,#stacks_in_4178 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_4178 h1 a:hover,#stacks_in_4178 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_4178 small,#stacks_in_4178 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_4178 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_4184 h6,#stacks_in_4184 .hTxt:not(.segment) div{font-size:1.20rem}@media all and (max-width:640px){#stacks_in_4184 h6,#stacks_in_4184 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_4184 h6,#stacks_in_4184 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_4184 h6 a,#stacks_in_4184 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_4184 h6 a:hover,#stacks_in_4184 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_4184 small,#stacks_in_4184 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_4184 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_4184 {
	margin: 0px 0px 16px 0px;
}
/* Smart2columns2 stack v2.4.2 */#stacks_in_4190 .s2c_stacks_in_4190_cw {	display: table;	table-layout: fixed;	width: 100%;}#stacks_in_4190 .s2c_stacks_in_4190_cw, #stacks_in_4190 .s2c_stacks_in_4190_cw * {	-webkit-box-sizing: border-box;	   -moz-box-sizing: border-box;	        box-sizing: border-box;}#stacks_in_4190 .s2c_stacks_in_4190_cw [class^="s2c_stacks_in_4190_col"] {	display: table-cell;	overflow: hidden;	background-clip: padding-box;}#stacks_in_4190 .s2c_stacks_in_4190_col1 {			vertical-align: top;  	  	border-radius: 0px;		}#stacks_in_4190 .s2c_stacks_in_4190_col2 {		vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_4190 .s2c_stacks_in_4190_cw .s2c_stacks_in_4190_spacer {	display: table-cell;	width: 5%;}@media only screen and (max-width: 750px) {		#stacks_in_4190 .s2c_stacks_in_4190_cw {		display: block;		table-layout: auto;	}		#stacks_in_4190 .s2c_stacks_in_4190_cw [class^="s2c_stacks_in_4190_col"] {		display: block;		width: 100%;	}	 	#stacks_in_4190 .s2c_stacks_in_4190_cw .s2c_stacks_in_4190_spacer {		display: block;		height: 24px;		order: 2;	}		}			/* End of Smart2columns2 stack *//* @group ImageWizard Basic Styling */

#imageWizardstacks_in_4211 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_4211 {
	position: relative;
}

#imageWizardstacks_in_4211 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	margin: 0 auto 0 0;
}



/* @end */

/* @group Hyperlink */

/*  */

#imageWizardLinkstacks_in_4211 {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: transparent url('../files/imageWizardAssets/glass.gif') repeat;
	z-index: 100;
}

#imageWizardLinkstacks_in_4211 a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 102;
	outline: none;
}

#linkIconstacks_in_4211 {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	text-align: center;
	top: 0;
	left: 0;
	z-index: 101;
}

#linkIconstacks_in_4211 [class^="fa fa-"] {
	color: #ffffff;
	font-size: 50px;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0.99;
	transition: all 300ms ease-in-out;
}

#imageWizardstacks_in_4211:hover #linkIconstacks_in_4211 [class^="fa fa-"] {
	opacity: 0.50;
}

#linkShadestacks_in_4211 {
	background: #000000;
	opacity: 0.0;
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	transition: all 300ms ease-in-out;
}

#imageWizardstacks_in_4211:hover #linkShadestacks_in_4211 {
	opacity: 0.0;
}

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_4220 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_4220 .pullquote:before, #stacks_in_4220 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_4220 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_4220 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_4220 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_4220 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}#stacks_in_4223 p,#stacks_in_4223 div{margin-bottom:0}#stacks_in_4223 p,#stacks_in_4223 div,#stacks_in_4223 ul,#stacks_in_4223 ol,#stacks_in_4223 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_4223 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_4223 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_4223{}}





	#stacks_in_3702 .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_3702 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3725 h1,#stacks_in_3725 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3725 h1,#stacks_in_3725 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3725 h1,#stacks_in_3725 div{line-height:1.10}}#stacks_in_3725 h1,#stacks_in_3725 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3725 h1 a,#stacks_in_3725 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3725 h1 a:hover,#stacks_in_3725 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3725 small,#stacks_in_3725 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3725 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3731 h6,#stacks_in_3731 .hTxt:not(.segment) div{font-size:1.20rem}@media all and (max-width:640px){#stacks_in_3731 h6,#stacks_in_3731 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_3731 h6,#stacks_in_3731 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3731 h6 a,#stacks_in_3731 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3731 h6 a:hover,#stacks_in_3731 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3731 small,#stacks_in_3731 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3731 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_3731 {
	margin: 0px 0px 16px 0px;
}
/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_4009 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_4009 {
	position: relative;
}

#imageWizardstacks_in_4009 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	margin: 0 auto 0 0;
}



/* @end */

/* @group Hyperlink */

/*  */

#imageWizardLinkstacks_in_4009 {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: transparent url('../files/imageWizardAssets/glass.gif') repeat;
	z-index: 100;
}

#imageWizardLinkstacks_in_4009 a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 102;
	outline: none;
}

#linkIconstacks_in_4009 {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	text-align: center;
	top: 0;
	left: 0;
	z-index: 101;
}

#linkIconstacks_in_4009 [class^="fa fa-"] {
	color: #ffffff;
	font-size: 50px;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0.99;
	transition: all 300ms ease-in-out;
}

#imageWizardstacks_in_4009:hover #linkIconstacks_in_4009 [class^="fa fa-"] {
	opacity: 0.50;
}

#linkShadestacks_in_4009 {
	background: #000000;
	opacity: 0.0;
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	transition: all 300ms ease-in-out;
}

#imageWizardstacks_in_4009:hover #linkShadestacks_in_4009 {
	opacity: 0.0;
}

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3740 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_3740 .pullquote:before, #stacks_in_3740 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_3740 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_3740 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_3740 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_3740 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}
#stacks_in_3740 {
	margin: 14px 12px 0px 12px;
}
#stacks_in_4340 p,#stacks_in_4340 div{margin-bottom:0}#stacks_in_4340 p,#stacks_in_4340 div,#stacks_in_4340 ul,#stacks_in_4340 ol,#stacks_in_4340 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_4340 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_4340 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_4340{}}





	#stacks_in_4305 .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_4305 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_4307 h1,#stacks_in_4307 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_4307 h1,#stacks_in_4307 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_4307 h1,#stacks_in_4307 div{line-height:1.10}}#stacks_in_4307 h1,#stacks_in_4307 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_4307 h1 a,#stacks_in_4307 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_4307 h1 a:hover,#stacks_in_4307 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_4307 small,#stacks_in_4307 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_4307 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_4313 h6,#stacks_in_4313 .hTxt:not(.segment) div{font-size:1.20rem}@media all and (max-width:640px){#stacks_in_4313 h6,#stacks_in_4313 .hTxt:not(.segment) div{font-size:1.00rem}}#stacks_in_4313 h6,#stacks_in_4313 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_4313 h6 a,#stacks_in_4313 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_4313 h6 a:hover,#stacks_in_4313 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_4313 small,#stacks_in_4313 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_4313 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_4313 {
	margin: 0px 0px 16px 0px;
}
/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_4318 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_4318 {
	position: relative;
}

#imageWizardstacks_in_4318 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	margin: 0 auto 0 0;
}



/* @end */

/* @group Hyperlink */

/*  */

#imageWizardLinkstacks_in_4318 {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: transparent url('../files/imageWizardAssets/glass.gif') repeat;
	z-index: 100;
}

#imageWizardLinkstacks_in_4318 a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 102;
	outline: none;
}

#linkIconstacks_in_4318 {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	text-align: center;
	top: 0;
	left: 0;
	z-index: 101;
}

#linkIconstacks_in_4318 [class^="fa fa-"] {
	color: #ffffff;
	font-size: 50px;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0.99;
	transition: all 300ms ease-in-out;
}

#imageWizardstacks_in_4318:hover #linkIconstacks_in_4318 [class^="fa fa-"] {
	opacity: 0.50;
}

#linkShadestacks_in_4318 {
	background: #000000;
	opacity: 0.0;
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	transition: all 300ms ease-in-out;
}

#imageWizardstacks_in_4318:hover #linkShadestacks_in_4318 {
	opacity: 0.0;
}

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */
#stacks_in_4334 p,#stacks_in_4334 div{margin-bottom:0}#stacks_in_4334 p,#stacks_in_4334 div,#stacks_in_4334 ul,#stacks_in_4334 ol,#stacks_in_4334 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_4334 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_4334 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_4334{}}


#stacks_in_4334 {
	margin: 26px 0px 0px 0px;
}
#stacks_in_4337 p,#stacks_in_4337 div{margin-bottom:0}#stacks_in_4337 p,#stacks_in_4337 div,#stacks_in_4337 ul,#stacks_in_4337 ol,#stacks_in_4337 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_4337 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_4337 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_4337{}}


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

@media only screen and (min-width:0px){#stacks_in_3378_5 h1,#stacks_in_3378_5 div{line-height:1.20}}#stacks_in_3378_5 h1,#stacks_in_3378_5 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3378_5 h1 a,#stacks_in_3378_5 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3378_5 h1 a:hover,#stacks_in_3378_5 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3378_5 small,#stacks_in_3378_5 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3378_5 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_3378_5 {
	padding: 0px 0px 6px 0px;
}
#stacks_in_3378_12 *, #stacks_in_3378_12 *:after, #stacks_in_3378_12 *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; }

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

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

#stacks_in_3378_12  {
}

#stacks_in_3378_12 .timeline_item {
	position: relative;
}

#stacks_in_3378_12 ul.cbp_tmtimeline {
	margin: 0;
}

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

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

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

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

#stacks_in_3378_12 .cbp_tmtimeline li {
	margin: 0;
}

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

		
			background: #262626;
		

	

	
		left: 20%;
	
	
	
	
	
	

	margin-left: -10px;
}

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

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

#stacks_in_3378_12 .cbp_tmtimeline li .cbp_tmtime span.small_label {
	font-size: 16px;
	line-height: 1.2;
	white-space: normal;
	
		color: #BDBDBD;
	
}

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

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

#stacks_in_3378_12 .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_3378_12 .timeline_content {
	margin-top: 20px;
}


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


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

	
		left: 20%;
	
	
	
	
	
	

	margin: 0 0 0 -25px;

	
}

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



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

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

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

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

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

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

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


	

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

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

	


}








	#stacks_in_3378_389 .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_3378_389 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3378_391 h1,#stacks_in_3378_391 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3378_391 h1,#stacks_in_3378_391 .hTxt:not(.segment) div{font-size:1.20rem}}@media only screen and (min-width:0px){#stacks_in_3378_391 h1,#stacks_in_3378_391 div{line-height:1.20}}#stacks_in_3378_391 h1,#stacks_in_3378_391 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3378_391 h1 a,#stacks_in_3378_391 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3378_391 h1 a:hover,#stacks_in_3378_391 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3378_391 small,#stacks_in_3378_391 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3378_391 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3378_397 h6,#stacks_in_3378_397 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_397 h6 a,#stacks_in_3378_397 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_397 h6 a:hover,#stacks_in_3378_397 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3378_397 small,#stacks_in_3378_397 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3378_397 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_3378_397 {
	margin: 0px 0px 14px 0px;
}
/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3378_402 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3378_402 {
	position: relative;
}

#imageWizardstacks_in_3378_402 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */
#stacks_in_3378_415 p,#stacks_in_3378_415 div{margin-bottom:0}#stacks_in_3378_415 p,#stacks_in_3378_415 div,#stacks_in_3378_415 ul,#stacks_in_3378_415 ol,#stacks_in_3378_415 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_415 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_3378_415 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3378_415{}}


#stacks_in_3378_415 {
	margin: 26px 0px 0px 0px;
}
#stacks_in_3378_418 p,#stacks_in_3378_418 div{margin-bottom:0}#stacks_in_3378_418 p,#stacks_in_3378_418 div,#stacks_in_3378_418 ul,#stacks_in_3378_418 ol,#stacks_in_3378_418 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_418 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_3378_418 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3378_418{}}


#stacks_in_3378_406 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_3378_406 .pullquote:before, #stacks_in_3378_406 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_3378_406 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_3378_406 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_3378_406 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_3378_406 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}
#stacks_in_3378_406 {
	margin: 20px 0px 0px 0px;
}




	#stacks_in_3378_534 .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_3378_534 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3378_536 h1,#stacks_in_3378_536 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3378_536 h1,#stacks_in_3378_536 .hTxt:not(.segment) div{font-size:1.20rem}}@media only screen and (min-width:0px){#stacks_in_3378_536 h1,#stacks_in_3378_536 div{line-height:1.10}}#stacks_in_3378_536 h1,#stacks_in_3378_536 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3378_536 h1 a,#stacks_in_3378_536 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3378_536 h1 a:hover,#stacks_in_3378_536 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3378_536 small,#stacks_in_3378_536 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3378_536 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3378_536 .primary,#stacks_in_3378_536 .segment{display:inline-block}#stacks_in_3378_536 .primary.sub-title,#stacks_in_3378_536 .segment.sub-title{display:block}#stacks_in_3378_536 [data-seg="segment2"].last-title{display:block}#stacks_in_3378_536 .segment.no-shadow{text-shadow:none !important}#stacks_in_3378_536 .segment *{}#stacks_in_3378_536 .hTxt.primary{vertical-align:baseline}#stacks_in_3378_536 .segment[data-seg="segment1"]{font-size:75%;color:rgba(28, 155, 157, 1.00);padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;vertical-align:baseline;}#stacks_in_3378_536 .segment[data-seg="segment1"] div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3378_536 .segment[data-seg="segment1"] div.mez{font-size:75%}

#stacks_in_3378_542 h6,#stacks_in_3378_542 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_542 h6 a,#stacks_in_3378_542 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_542 h6 a:hover,#stacks_in_3378_542 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3378_542 small,#stacks_in_3378_542 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3378_542 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_3378_542 {
	margin: 0px 0px 14px 0px;
}
/* Smart2columns2 stack v2.4.2 */#stacks_in_3378_547 .s2c_stacks_in_3378_547_cw {	display: table;	table-layout: fixed;	width: 100%;}#stacks_in_3378_547 .s2c_stacks_in_3378_547_cw, #stacks_in_3378_547 .s2c_stacks_in_3378_547_cw * {	-webkit-box-sizing: border-box;	   -moz-box-sizing: border-box;	        box-sizing: border-box;}#stacks_in_3378_547 .s2c_stacks_in_3378_547_cw [class^="s2c_stacks_in_3378_547_col"] {	display: table-cell;	overflow: hidden;	background-clip: padding-box;}#stacks_in_3378_547 .s2c_stacks_in_3378_547_col1 {			vertical-align: top;  	  	border-radius: 0px;		}#stacks_in_3378_547 .s2c_stacks_in_3378_547_col2 {		vertical-align: middle;   	  	border-radius: 0px;		}#stacks_in_3378_547 .s2c_stacks_in_3378_547_cw .s2c_stacks_in_3378_547_spacer {	display: table-cell;	width: 5%;}@media only screen and (max-width: 750px) {		#stacks_in_3378_547 .s2c_stacks_in_3378_547_cw {		display: block;		table-layout: auto;	}		#stacks_in_3378_547 .s2c_stacks_in_3378_547_cw [class^="s2c_stacks_in_3378_547_col"] {		display: block;		width: 100%;	}	 	#stacks_in_3378_547 .s2c_stacks_in_3378_547_cw .s2c_stacks_in_3378_547_spacer {		display: block;		height: 24px;		order: 2;	}		}			/* End of Smart2columns2 stack *//* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3378_617 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3378_617 {
	position: relative;
}

#imageWizardstacks_in_3378_617 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	margin: 0 auto 0 0;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */
#stacks_in_3378_550 p,#stacks_in_3378_550 div{margin-bottom:0}#stacks_in_3378_550 p,#stacks_in_3378_550 div,#stacks_in_3378_550 ul,#stacks_in_3378_550 ol,#stacks_in_3378_550 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_550 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_3378_550 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3378_550{}}

#stacks_in_3378_612 p,#stacks_in_3378_612 div{margin-bottom:0}#stacks_in_3378_612 p,#stacks_in_3378_612 div,#stacks_in_3378_612 ul,#stacks_in_3378_612 ol,#stacks_in_3378_612 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_612 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_3378_612 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3378_612{}}


#stacks_in_3378_612 {
	margin: 12px 0px 0px 0px;
}




	#stacks_in_3378_124 .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_3378_124 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3378_126 h1,#stacks_in_3378_126 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3378_126 h1,#stacks_in_3378_126 .hTxt:not(.segment) div{font-size:1.20rem}}@media only screen and (min-width:0px){#stacks_in_3378_126 h1,#stacks_in_3378_126 div{line-height:1.20}}#stacks_in_3378_126 h1,#stacks_in_3378_126 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3378_126 h1 a,#stacks_in_3378_126 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3378_126 h1 a:hover,#stacks_in_3378_126 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3378_126 small,#stacks_in_3378_126 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3378_126 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3378_132 h6,#stacks_in_3378_132 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_132 h6 a,#stacks_in_3378_132 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_132 h6 a:hover,#stacks_in_3378_132 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3378_132 small,#stacks_in_3378_132 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3378_132 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_3378_132 {
	margin: 0px 0px 14px 0px;
}
/* Smart2columns2 stack v2.4.2 */#stacks_in_3378_291 .s2c_stacks_in_3378_291_cw {	display: table;	table-layout: fixed;	width: 100%;}#stacks_in_3378_291 .s2c_stacks_in_3378_291_cw, #stacks_in_3378_291 .s2c_stacks_in_3378_291_cw * {	-webkit-box-sizing: border-box;	   -moz-box-sizing: border-box;	        box-sizing: border-box;}#stacks_in_3378_291 .s2c_stacks_in_3378_291_cw [class^="s2c_stacks_in_3378_291_col"] {	display: table-cell;	overflow: hidden;	background-clip: padding-box;}#stacks_in_3378_291 .s2c_stacks_in_3378_291_col1 {			vertical-align: top;  	  	border-radius: 0px;		}#stacks_in_3378_291 .s2c_stacks_in_3378_291_col2 {		vertical-align: middle;   	  	border-radius: 0px;		}#stacks_in_3378_291 .s2c_stacks_in_3378_291_cw .s2c_stacks_in_3378_291_spacer {	display: table-cell;	width: 5%;}@media only screen and (max-width: 750px) {		#stacks_in_3378_291 .s2c_stacks_in_3378_291_cw {		display: block;		table-layout: auto;	}		#stacks_in_3378_291 .s2c_stacks_in_3378_291_cw [class^="s2c_stacks_in_3378_291_col"] {		display: block;		width: 100%;	}	 	#stacks_in_3378_291 .s2c_stacks_in_3378_291_cw .s2c_stacks_in_3378_291_spacer {		display: block;		height: 24px;		order: 2;	}		}			/* End of Smart2columns2 stack *//* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3378_301 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3378_301 {
	position: relative;
}

#imageWizardstacks_in_3378_301 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	margin: 0 auto 0 0;
}



/* @end */

/* @group Hyperlink */

/*  */

#imageWizardLinkstacks_in_3378_301 {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: transparent url('../files/imageWizardAssets/glass.gif') repeat;
	z-index: 100;
}

#imageWizardLinkstacks_in_3378_301 a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 102;
	outline: none;
}

#linkIconstacks_in_3378_301 {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	text-align: center;
	top: 0;
	left: 0;
	z-index: 101;
}

#linkIconstacks_in_3378_301 [class^="fa fa-"] {
	color: #ffffff;
	font-size: 50px;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0.99;
	transition: all 300ms ease-in-out;
}

#imageWizardstacks_in_3378_301:hover #linkIconstacks_in_3378_301 [class^="fa fa-"] {
	opacity: 0.50;
}

#linkShadestacks_in_3378_301 {
	background: #000000;
	opacity: 0.0;
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	transition: all 300ms ease-in-out;
}

#imageWizardstacks_in_3378_301:hover #linkShadestacks_in_3378_301 {
	opacity: 0.0;
}

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */
#stacks_in_3378_294 p,#stacks_in_3378_294 div{margin-bottom:0}#stacks_in_3378_294 p,#stacks_in_3378_294 div,#stacks_in_3378_294 ul,#stacks_in_3378_294 ol,#stacks_in_3378_294 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_294 a{color:rgba(235, 91, 37, 1.00)}#stacks_in_3378_294 a:hover{color:rgba(236, 160, 68, 1.00)}@media only screen and (min-width:0px){#stacks_in_3378_294{}}

#stacks_in_3378_298 p,#stacks_in_3378_298 div{margin-bottom:0}#stacks_in_3378_298 p,#stacks_in_3378_298 div,#stacks_in_3378_298 ul,#stacks_in_3378_298 ol,#stacks_in_3378_298 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_298 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_3378_298 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3378_298{}}


#stacks_in_3378_298 {
	margin: 12px 0px 0px 0px;
}

#stacks_in_3378_141 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_3378_141 .pullquote:before, #stacks_in_3378_141 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_3378_141 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_3378_141 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_3378_141 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_3378_141 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}
#stacks_in_3378_141 {
	margin: 20px 0px 0px 0px;
}




	#stacks_in_3378_343 .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_3378_343 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3378_345 h1,#stacks_in_3378_345 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3378_345 h1,#stacks_in_3378_345 .hTxt:not(.segment) div{font-size:1.20rem}}@media only screen and (min-width:0px){#stacks_in_3378_345 h1,#stacks_in_3378_345 div{line-height:1.20}}#stacks_in_3378_345 h1,#stacks_in_3378_345 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3378_345 h1 a,#stacks_in_3378_345 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3378_345 h1 a:hover,#stacks_in_3378_345 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3378_345 small,#stacks_in_3378_345 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3378_345 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3378_351 h6,#stacks_in_3378_351 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_351 h6 a,#stacks_in_3378_351 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_351 h6 a:hover,#stacks_in_3378_351 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3378_351 small,#stacks_in_3378_351 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3378_351 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_3378_351 {
	margin: 0px 0px 14px 0px;
}
/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3378_356 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3378_356 {
	position: relative;
}

#imageWizardstacks_in_3378_356 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */
#stacks_in_3378_357 p,#stacks_in_3378_357 div{margin-bottom:0}#stacks_in_3378_357 p,#stacks_in_3378_357 div,#stacks_in_3378_357 ul,#stacks_in_3378_357 ol,#stacks_in_3378_357 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_357 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_3378_357 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3378_357{}}


#stacks_in_3378_357 {
	margin: 26px 0px 0px 0px;
}

#stacks_in_3378_360 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_3378_360 .pullquote:before, #stacks_in_3378_360 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_3378_360 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_3378_360 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_3378_360 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_3378_360 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}
#stacks_in_3378_360 {
	margin: 20px 0px 0px 0px;
}




	#stacks_in_3378_249 .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_3378_249 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3378_251 h1,#stacks_in_3378_251 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3378_251 h1,#stacks_in_3378_251 .hTxt:not(.segment) div{font-size:1.20rem}}@media only screen and (min-width:0px){#stacks_in_3378_251 h1,#stacks_in_3378_251 div{line-height:1.20}}#stacks_in_3378_251 h1,#stacks_in_3378_251 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3378_251 h1 a,#stacks_in_3378_251 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3378_251 h1 a:hover,#stacks_in_3378_251 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3378_251 small,#stacks_in_3378_251 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3378_251 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3378_257 h6,#stacks_in_3378_257 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_257 h6 a,#stacks_in_3378_257 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_257 h6 a:hover,#stacks_in_3378_257 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3378_257 small,#stacks_in_3378_257 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3378_257 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_3378_257 {
	margin: 0px 0px 14px 0px;
}
/* Smart2columns2 stack v2.4.2 */#stacks_in_3378_262 .s2c_stacks_in_3378_262_cw {	display: table;	table-layout: fixed;	width: 100%;}#stacks_in_3378_262 .s2c_stacks_in_3378_262_cw, #stacks_in_3378_262 .s2c_stacks_in_3378_262_cw * {	-webkit-box-sizing: border-box;	   -moz-box-sizing: border-box;	        box-sizing: border-box;}#stacks_in_3378_262 .s2c_stacks_in_3378_262_cw [class^="s2c_stacks_in_3378_262_col"] {	display: table-cell;	overflow: hidden;	background-clip: padding-box;}#stacks_in_3378_262 .s2c_stacks_in_3378_262_col1 {			vertical-align: top;  	  	border-radius: 0px;		}#stacks_in_3378_262 .s2c_stacks_in_3378_262_col2 {		vertical-align: middle;   	  	border-radius: 0px;		}#stacks_in_3378_262 .s2c_stacks_in_3378_262_cw .s2c_stacks_in_3378_262_spacer {	display: table-cell;	width: 5%;}@media only screen and (max-width: 750px) {		#stacks_in_3378_262 .s2c_stacks_in_3378_262_cw {		display: block;		table-layout: auto;	}		#stacks_in_3378_262 .s2c_stacks_in_3378_262_cw [class^="s2c_stacks_in_3378_262_col"] {		display: block;		width: 100%;	}	 	#stacks_in_3378_262 .s2c_stacks_in_3378_262_cw .s2c_stacks_in_3378_262_spacer {		display: block;		height: 24px;		order: 2;	}		}			/* End of Smart2columns2 stack *//* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3378_272 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3378_272 {
	position: relative;
}

#imageWizardstacks_in_3378_272 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	margin: 0 auto 0 0;
}



/* @end */

/* @group Hyperlink */

/*  */

#imageWizardLinkstacks_in_3378_272 {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: transparent url('../files/imageWizardAssets/glass.gif') repeat;
	z-index: 100;
}

#imageWizardLinkstacks_in_3378_272 a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 102;
	outline: none;
}

#linkIconstacks_in_3378_272 {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	text-align: center;
	top: 0;
	left: 0;
	z-index: 101;
}

#linkIconstacks_in_3378_272 [class^="fa fa-"] {
	color: #ffffff;
	font-size: 50px;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0.99;
	transition: all 300ms ease-in-out;
}

#imageWizardstacks_in_3378_272:hover #linkIconstacks_in_3378_272 [class^="fa fa-"] {
	opacity: 0.50;
}

#linkShadestacks_in_3378_272 {
	background: #000000;
	opacity: 0.0;
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	transition: all 300ms ease-in-out;
}

#imageWizardstacks_in_3378_272:hover #linkShadestacks_in_3378_272 {
	opacity: 0.0;
}

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */
#stacks_in_3378_265 p,#stacks_in_3378_265 div{margin-bottom:0}#stacks_in_3378_265 p,#stacks_in_3378_265 div,#stacks_in_3378_265 ul,#stacks_in_3378_265 ol,#stacks_in_3378_265 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_265 a{color:rgba(235, 91, 37, 1.00)}#stacks_in_3378_265 a:hover{color:rgba(236, 160, 68, 1.00)}@media only screen and (min-width:0px){#stacks_in_3378_265{}}

#stacks_in_3378_269 p,#stacks_in_3378_269 div{margin-bottom:0}#stacks_in_3378_269 p,#stacks_in_3378_269 div,#stacks_in_3378_269 ul,#stacks_in_3378_269 ol,#stacks_in_3378_269 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_269 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_3378_269 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3378_269{}}


#stacks_in_3378_269 {
	margin: 12px 0px 0px 0px;
}

#stacks_in_3378_274 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_3378_274 .pullquote:before, #stacks_in_3378_274 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_3378_274 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_3378_274 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_3378_274 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_3378_274 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}
#stacks_in_3378_274 {
	margin: 20px 0px 0px 0px;
}




	#stacks_in_3378_14 .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_3378_14 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3378_17 h1,#stacks_in_3378_17 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3378_17 h1,#stacks_in_3378_17 .hTxt:not(.segment) div{font-size:1.20rem}}@media only screen and (min-width:0px){#stacks_in_3378_17 h1,#stacks_in_3378_17 div{line-height:1.20}}#stacks_in_3378_17 h1,#stacks_in_3378_17 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3378_17 h1 a,#stacks_in_3378_17 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3378_17 h1 a:hover,#stacks_in_3378_17 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3378_17 small,#stacks_in_3378_17 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3378_17 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3378_24 h6,#stacks_in_3378_24 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_24 h6 a,#stacks_in_3378_24 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_24 h6 a:hover,#stacks_in_3378_24 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3378_24 small,#stacks_in_3378_24 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3378_24 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_3378_24 {
	margin: 0px 0px 14px 0px;
}
/* Smart2columns2 stack v2.4.2 */#stacks_in_3378_201 .s2c_stacks_in_3378_201_cw {	display: table;	table-layout: fixed;	width: 100%;}#stacks_in_3378_201 .s2c_stacks_in_3378_201_cw, #stacks_in_3378_201 .s2c_stacks_in_3378_201_cw * {	-webkit-box-sizing: border-box;	   -moz-box-sizing: border-box;	        box-sizing: border-box;}#stacks_in_3378_201 .s2c_stacks_in_3378_201_cw [class^="s2c_stacks_in_3378_201_col"] {	display: table-cell;	overflow: hidden;	background-clip: padding-box;}#stacks_in_3378_201 .s2c_stacks_in_3378_201_col1 {			vertical-align: top;  	  	border-radius: 0px;		}#stacks_in_3378_201 .s2c_stacks_in_3378_201_col2 {		vertical-align: middle;   	  	border-radius: 0px;		}#stacks_in_3378_201 .s2c_stacks_in_3378_201_cw .s2c_stacks_in_3378_201_spacer {	display: table-cell;	width: 5%;}@media only screen and (max-width: 750px) {		#stacks_in_3378_201 .s2c_stacks_in_3378_201_cw {		display: block;		table-layout: auto;	}		#stacks_in_3378_201 .s2c_stacks_in_3378_201_cw [class^="s2c_stacks_in_3378_201_col"] {		display: block;		width: 100%;	}	 	#stacks_in_3378_201 .s2c_stacks_in_3378_201_cw .s2c_stacks_in_3378_201_spacer {		display: block;		height: 24px;		order: 2;	}		}			/* End of Smart2columns2 stack */


#badger_ribbon_stacks_in_3378_31 {
  width: auto;
  white-space: nowrap;
  padding: 0.5rem 4rem;
  overflow: hidden;
  position: absolute;
  top: 0.58rem;
  right: -8.20rem;
  z-index: 99999;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.40);
  transition: all 300ms;
  
  border: 1px ridge rgba(28, 155, 157, 1.00);
  
}

@media (prefers-color-scheme: dark) {
  #badger_ribbon_stacks_in_3378_31 {
    box-shadow: 0 0 10px 3px rgba(255, 255, 255, 0.15);
    
    border: 1px ridge rgba(28, 155, 157, 1.00);
    
  }
}


@media print {
  #badger_ribbon_stacks_in_3378_31 {
    display: none;
  }
}



















#badger_ribbon_stacks_in_3378_31 {
  background-color: rgba(28, 155, 157, 1.00);
}
@media (prefers-color-scheme: dark) {
  #badger_ribbon_stacks_in_3378_31 {
    background-color: rgba(28, 155, 157, 1.00);
  }
}




#badger_ribbon_content_stacks_in_3378_31 {
  display: flex;
  align-items: center;
  gap: 0.50rem;
  width: 100%;
  padding: 0.5rem 4rem;
  color: rgba(255, 255, 255, 1.00);
  font-size: .9rem;
  line-height: 1.2;
  text-align: center;
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  font-weight: bold;
  
  
}



@media (prefers-color-scheme: dark) {
  #badger_ribbon_content_stacks_in_3378_31 {
    color: rgba(255, 255, 255, 1.00);
  }
}

#badger_ribbon_content_stacks_in_3378_31 a,
#badger_ribbon_content_stacks_in_3378_31 a:visited,
#badger_ribbon_content_stacks_in_3378_31 a:hover,
#badger_ribbon_content_stacks_in_3378_31 a:active {
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
  font-weight: bold;
  
  
  color: rgba(255, 255, 255, 1.00);
  border: none;
}

@media (prefers-color-scheme: dark) {
  #badger_ribbon_content_stacks_in_3378_31 a,
  #badger_ribbon_content_stacks_in_3378_31 a:visited,
  #badger_ribbon_content_stacks_in_3378_31 a:hover,
  #badger_ribbon_content_stacks_in_3378_31 a:active {
    color: rgba(255, 255, 255, 1.00);
  }
}



#badger_container_stacks_in_3378_31 {
  position: relative;
  overflow: hidden;
}

#badger_container_stacks_stacks_in_3378_31 {
  position: relative;
  z-index: 1;
}






/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3378_33 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3378_33 {
	position: relative;
}

#imageWizardstacks_in_3378_33 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	margin: 0 auto 0 0;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */
#stacks_in_3378_36 p,#stacks_in_3378_36 div{margin-bottom:0}#stacks_in_3378_36 p,#stacks_in_3378_36 div,#stacks_in_3378_36 ul,#stacks_in_3378_36 ol,#stacks_in_3378_36 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_36 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3378_36 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3378_36{}}





	#stacks_in_3378_39 .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_3378_39 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3378_42 h1,#stacks_in_3378_42 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3378_42 h1,#stacks_in_3378_42 .hTxt:not(.segment) div{font-size:1.20rem}}@media only screen and (min-width:0px){#stacks_in_3378_42 h1,#stacks_in_3378_42 div{line-height:1.20}}#stacks_in_3378_42 h1,#stacks_in_3378_42 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3378_42 h1 a,#stacks_in_3378_42 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3378_42 h1 a:hover,#stacks_in_3378_42 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3378_42 small,#stacks_in_3378_42 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3378_42 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3378_49 h6,#stacks_in_3378_49 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_49 h6 a,#stacks_in_3378_49 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_49 h6 a:hover,#stacks_in_3378_49 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3378_49 small,#stacks_in_3378_49 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3378_49 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_3378_49 {
	margin: 0px 0px 14px 0px;
}
/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3378_56 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3378_56 {
	position: relative;
}

#imageWizardstacks_in_3378_56 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */
#stacks_in_3378_59 p,#stacks_in_3378_59 div{margin-bottom:0}#stacks_in_3378_59 p,#stacks_in_3378_59 div,#stacks_in_3378_59 ul,#stacks_in_3378_59 ol,#stacks_in_3378_59 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_59 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_3378_59 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3378_59{}}


#stacks_in_3378_59 {
	margin: 26px 0px 0px 0px;
}

#stacks_in_3378_62 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_3378_62 .pullquote:before, #stacks_in_3378_62 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_3378_62 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_3378_62 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_3378_62 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_3378_62 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}
#stacks_in_3378_62 {
	margin: 20px 0px 0px 0px;
}




	#stacks_in_3378_65 .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_3378_65 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3378_68 h1,#stacks_in_3378_68 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3378_68 h1,#stacks_in_3378_68 .hTxt:not(.segment) div{font-size:1.20rem}}@media only screen and (min-width:0px){#stacks_in_3378_68 h1,#stacks_in_3378_68 div{line-height:1.20}}#stacks_in_3378_68 h1,#stacks_in_3378_68 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3378_68 h1 a,#stacks_in_3378_68 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3378_68 h1 a:hover,#stacks_in_3378_68 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3378_68 small,#stacks_in_3378_68 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3378_68 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3378_75 h6,#stacks_in_3378_75 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_75 h6 a,#stacks_in_3378_75 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_75 h6 a:hover,#stacks_in_3378_75 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3378_75 small,#stacks_in_3378_75 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3378_75 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3378_82 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3378_82 {
	position: relative;
}

#imageWizardstacks_in_3378_82 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3378_82 {
	margin: 14px 0px 0px 0px;
}

#stacks_in_3378_85 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_3378_85 .pullquote:before, #stacks_in_3378_85 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_3378_85 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_3378_85 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_3378_85 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_3378_85 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}
#stacks_in_3378_85 {
	margin: 20px 0px 0px 0px;
}
#stacks_in_3378_88 p,#stacks_in_3378_88 div{margin-bottom:0}#stacks_in_3378_88 p,#stacks_in_3378_88 div,#stacks_in_3378_88 ul,#stacks_in_3378_88 ol,#stacks_in_3378_88 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3378_88 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_3378_88 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3378_88{}}


@media only screen and (min-width:0px){#stacks_in_3315_3 h1,#stacks_in_3315_3 div{line-height:1.20}}#stacks_in_3315_3 h1,#stacks_in_3315_3 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3315_3 h1 a,#stacks_in_3315_3 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3315_3 h1 a:hover,#stacks_in_3315_3 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3315_3 small,#stacks_in_3315_3 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3315_3 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_3315_3 {
	padding: 0px 0px 6px 0px;
}
#stacks_in_3315_11 *, #stacks_in_3315_11 *:after, #stacks_in_3315_11 *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; }

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

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

#stacks_in_3315_11  {
}

#stacks_in_3315_11 .timeline_item {
	position: relative;
}

#stacks_in_3315_11 ul.cbp_tmtimeline {
	margin: 0;
}

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

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

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

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

#stacks_in_3315_11 .cbp_tmtimeline li {
	margin: 0;
}

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

		
			background: #262626;
		

	

	
		left: 20%;
	
	
	
	
	
	

	margin-left: -10px;
}

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

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

#stacks_in_3315_11 .cbp_tmtimeline li .cbp_tmtime span.small_label {
	font-size: 16px;
	line-height: 1.2;
	white-space: normal;
	
		color: #BDBDBD;
	
}

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

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

#stacks_in_3315_11 .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_3315_11 .timeline_content {
	margin-top: 20px;
}


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


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

	
		left: 20%;
	
	
	
	
	
	

	margin: 0 0 0 -25px;

	
}

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



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

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

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

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

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

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

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


	

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

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

	


}








	#stacks_in_3315_13 .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_3315_13 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3315_16 h1,#stacks_in_3315_16 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3315_16 h1,#stacks_in_3315_16 .hTxt:not(.segment) div{font-size:1.20rem}}@media only screen and (min-width:0px){#stacks_in_3315_16 h1,#stacks_in_3315_16 div{line-height:1.20}}#stacks_in_3315_16 h1,#stacks_in_3315_16 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3315_16 h1 a,#stacks_in_3315_16 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3315_16 h1 a:hover,#stacks_in_3315_16 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3315_16 small,#stacks_in_3315_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3315_16 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3315_23 h6,#stacks_in_3315_23 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_23 h6 a,#stacks_in_3315_23 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_23 h6 a:hover,#stacks_in_3315_23 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3315_23 small,#stacks_in_3315_23 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3315_23 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3315_30 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3315_30 {
	position: relative;
}

#imageWizardstacks_in_3315_30 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3315_30 {
	margin: 14px 0px 26px 0px;
}

#stacks_in_3315_33 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_3315_33 .pullquote:before, #stacks_in_3315_33 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_3315_33 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_3315_33 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_3315_33 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_3315_33 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}#stacks_in_3315_36 p,#stacks_in_3315_36 div{margin-bottom:0}#stacks_in_3315_36 p,#stacks_in_3315_36 div,#stacks_in_3315_36 ul,#stacks_in_3315_36 ol,#stacks_in_3315_36 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_36 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_3315_36 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3315_36{}}


#stacks_in_3315_39 {
	margin:  2px;
	padding:  5px;
}




	#stacks_in_3315_40 .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_3315_40 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3315_43 h1,#stacks_in_3315_43 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3315_43 h1,#stacks_in_3315_43 .hTxt:not(.segment) div{font-size:1.20rem}}@media only screen and (min-width:0px){#stacks_in_3315_43 h1,#stacks_in_3315_43 div{line-height:1.20}}#stacks_in_3315_43 h1,#stacks_in_3315_43 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3315_43 h1 a,#stacks_in_3315_43 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3315_43 h1 a:hover,#stacks_in_3315_43 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3315_43 small,#stacks_in_3315_43 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3315_43 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3315_50 h6,#stacks_in_3315_50 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_50 h6 a,#stacks_in_3315_50 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_50 h6 a:hover,#stacks_in_3315_50 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3315_50 small,#stacks_in_3315_50 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3315_50 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3315_57 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3315_57 {
	position: relative;
}

#imageWizardstacks_in_3315_57 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3315_57 {
	margin: 14px 0px 26px 0px;
}

#stacks_in_3315_60 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_3315_60 .pullquote:before, #stacks_in_3315_60 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_3315_60 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_3315_60 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_3315_60 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_3315_60 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}#stacks_in_3315_63 p,#stacks_in_3315_63 div{margin-bottom:0}#stacks_in_3315_63 p,#stacks_in_3315_63 div,#stacks_in_3315_63 ul,#stacks_in_3315_63 ol,#stacks_in_3315_63 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_63 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_3315_63 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3315_63{}}





	#stacks_in_3315_66 .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_3315_66 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3315_69 h1,#stacks_in_3315_69 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3315_69 h1,#stacks_in_3315_69 .hTxt:not(.segment) div{font-size:1.20rem}}@media only screen and (min-width:0px){#stacks_in_3315_69 h1,#stacks_in_3315_69 div{line-height:1.20}}#stacks_in_3315_69 h1,#stacks_in_3315_69 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3315_69 h1 a,#stacks_in_3315_69 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3315_69 h1 a:hover,#stacks_in_3315_69 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3315_69 small,#stacks_in_3315_69 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3315_69 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3315_76 h6,#stacks_in_3315_76 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_76 h6 a,#stacks_in_3315_76 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_76 h6 a:hover,#stacks_in_3315_76 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3315_76 small,#stacks_in_3315_76 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3315_76 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3315_83 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3315_83 {
	position: relative;
}

#imageWizardstacks_in_3315_83 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3315_83 {
	margin: 14px 0px 26px 0px;
}

#stacks_in_3315_86 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_3315_86 .pullquote:before, #stacks_in_3315_86 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_3315_86 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_3315_86 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_3315_86 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_3315_86 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}#stacks_in_3315_89 p,#stacks_in_3315_89 div{margin-bottom:0}#stacks_in_3315_89 p,#stacks_in_3315_89 div,#stacks_in_3315_89 ul,#stacks_in_3315_89 ol,#stacks_in_3315_89 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_89 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_3315_89 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3315_89{}}





	#stacks_in_3315_92 .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_3315_92 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3315_95 h1,#stacks_in_3315_95 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3315_95 h1,#stacks_in_3315_95 .hTxt:not(.segment) div{font-size:1.20rem}}@media only screen and (min-width:0px){#stacks_in_3315_95 h1,#stacks_in_3315_95 div{line-height:1.20}}#stacks_in_3315_95 h1,#stacks_in_3315_95 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3315_95 h1 a,#stacks_in_3315_95 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3315_95 h1 a:hover,#stacks_in_3315_95 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3315_95 small,#stacks_in_3315_95 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3315_95 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3315_102 h6,#stacks_in_3315_102 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_102 h6 a,#stacks_in_3315_102 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_102 h6 a:hover,#stacks_in_3315_102 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3315_102 small,#stacks_in_3315_102 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3315_102 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3315_109 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3315_109 {
	position: relative;
}

#imageWizardstacks_in_3315_109 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3315_109 {
	margin: 14px 0px 26px 0px;
}

#stacks_in_3315_112 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_3315_112 .pullquote:before, #stacks_in_3315_112 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_3315_112 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_3315_112 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_3315_112 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_3315_112 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}#stacks_in_3315_115 p,#stacks_in_3315_115 div{margin-bottom:0}#stacks_in_3315_115 p,#stacks_in_3315_115 div,#stacks_in_3315_115 ul,#stacks_in_3315_115 ol,#stacks_in_3315_115 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_115 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_3315_115 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3315_115{}}





	#stacks_in_3315_118 .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_3315_118 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3315_121 h1,#stacks_in_3315_121 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3315_121 h1,#stacks_in_3315_121 .hTxt:not(.segment) div{font-size:1.20rem}}@media only screen and (min-width:0px){#stacks_in_3315_121 h1,#stacks_in_3315_121 div{line-height:1.20}}#stacks_in_3315_121 h1,#stacks_in_3315_121 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3315_121 h1 a,#stacks_in_3315_121 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3315_121 h1 a:hover,#stacks_in_3315_121 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3315_121 small,#stacks_in_3315_121 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3315_121 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3315_128 h6,#stacks_in_3315_128 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_128 h6 a,#stacks_in_3315_128 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_128 h6 a:hover,#stacks_in_3315_128 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3315_128 small,#stacks_in_3315_128 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3315_128 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3315_135 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3315_135 {
	position: relative;
}

#imageWizardstacks_in_3315_135 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3315_135 {
	margin: 14px 0px 26px 0px;
}

#stacks_in_3315_138 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_3315_138 .pullquote:before, #stacks_in_3315_138 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_3315_138 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_3315_138 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_3315_138 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_3315_138 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}#stacks_in_3315_141 p,#stacks_in_3315_141 div{margin-bottom:0}#stacks_in_3315_141 p,#stacks_in_3315_141 div,#stacks_in_3315_141 ul,#stacks_in_3315_141 ol,#stacks_in_3315_141 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_141 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_3315_141 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3315_141{}}





	#stacks_in_3315_144 .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_3315_144 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3315_147 h1,#stacks_in_3315_147 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3315_147 h1,#stacks_in_3315_147 .hTxt:not(.segment) div{font-size:1.20rem}}@media only screen and (min-width:0px){#stacks_in_3315_147 h1,#stacks_in_3315_147 div{line-height:1.20}}#stacks_in_3315_147 h1,#stacks_in_3315_147 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3315_147 h1 a,#stacks_in_3315_147 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3315_147 h1 a:hover,#stacks_in_3315_147 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3315_147 small,#stacks_in_3315_147 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3315_147 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3315_154 h6,#stacks_in_3315_154 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_154 h6 a,#stacks_in_3315_154 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_154 h6 a:hover,#stacks_in_3315_154 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3315_154 small,#stacks_in_3315_154 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3315_154 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3315_161 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3315_161 {
	position: relative;
}

#imageWizardstacks_in_3315_161 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3315_161 {
	margin: 14px 0px 26px 0px;
}

#stacks_in_3315_164 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_3315_164 .pullquote:before, #stacks_in_3315_164 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_3315_164 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_3315_164 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_3315_164 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_3315_164 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}#stacks_in_3315_167 p,#stacks_in_3315_167 div{margin-bottom:0}#stacks_in_3315_167 p,#stacks_in_3315_167 div,#stacks_in_3315_167 ul,#stacks_in_3315_167 ol,#stacks_in_3315_167 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_167 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_3315_167 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3315_167{}}





	#stacks_in_3315_170 .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_3315_170 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3315_173 h1,#stacks_in_3315_173 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3315_173 h1,#stacks_in_3315_173 .hTxt:not(.segment) div{font-size:1.20rem}}@media only screen and (min-width:0px){#stacks_in_3315_173 h1,#stacks_in_3315_173 div{line-height:1.20}}#stacks_in_3315_173 h1,#stacks_in_3315_173 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3315_173 h1 a,#stacks_in_3315_173 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3315_173 h1 a:hover,#stacks_in_3315_173 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3315_173 small,#stacks_in_3315_173 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3315_173 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3315_180 h6,#stacks_in_3315_180 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_180 h6 a,#stacks_in_3315_180 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_180 h6 a:hover,#stacks_in_3315_180 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3315_180 small,#stacks_in_3315_180 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3315_180 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3315_187 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3315_187 {
	position: relative;
}

#imageWizardstacks_in_3315_187 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3315_187 {
	margin: 14px 0px 26px 0px;
}

#stacks_in_3315_190 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_3315_190 .pullquote:before, #stacks_in_3315_190 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_3315_190 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_3315_190 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_3315_190 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_3315_190 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}#stacks_in_3315_193 p,#stacks_in_3315_193 div{margin-bottom:0}#stacks_in_3315_193 p,#stacks_in_3315_193 div,#stacks_in_3315_193 ul,#stacks_in_3315_193 ol,#stacks_in_3315_193 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_193 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_3315_193 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3315_193{}}





	#stacks_in_3315_196 .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_3315_196 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3315_199 h1,#stacks_in_3315_199 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3315_199 h1,#stacks_in_3315_199 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3315_199 h1,#stacks_in_3315_199 div{line-height:1.20}}#stacks_in_3315_199 h1,#stacks_in_3315_199 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3315_199 h1 a,#stacks_in_3315_199 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3315_199 h1 a:hover,#stacks_in_3315_199 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3315_199 small,#stacks_in_3315_199 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3315_199 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3315_206 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3315_206 {
	position: relative;
}

#imageWizardstacks_in_3315_206 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3315_206 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3315_209 p,#stacks_in_3315_209 div{margin-bottom:0}#stacks_in_3315_209 p,#stacks_in_3315_209 div,#stacks_in_3315_209 ul,#stacks_in_3315_209 ol,#stacks_in_3315_209 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_209 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_3315_209 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3315_209{}}





	#stacks_in_3315_212 .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_3315_212 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3315_215 h1,#stacks_in_3315_215 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3315_215 h1,#stacks_in_3315_215 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3315_215 h1,#stacks_in_3315_215 div{line-height:1.20}}#stacks_in_3315_215 h1,#stacks_in_3315_215 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3315_215 h1 a,#stacks_in_3315_215 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3315_215 h1 a:hover,#stacks_in_3315_215 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3315_215 small,#stacks_in_3315_215 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3315_215 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3315_222 h6,#stacks_in_3315_222 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_222 h6 a,#stacks_in_3315_222 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_222 h6 a:hover,#stacks_in_3315_222 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3315_222 small,#stacks_in_3315_222 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3315_222 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3315_229 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3315_229 {
	position: relative;
}

#imageWizardstacks_in_3315_229 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3315_229 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3315_232 p,#stacks_in_3315_232 div{margin-bottom:0}#stacks_in_3315_232 p,#stacks_in_3315_232 div,#stacks_in_3315_232 ul,#stacks_in_3315_232 ol,#stacks_in_3315_232 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_232 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3315_232 a:hover{color:rgba(255, 255, 255, 1.00)}@media only screen and (min-width:0px){#stacks_in_3315_232{}}

#stacks_in_3315_235 p,#stacks_in_3315_235 div{margin-bottom:0}#stacks_in_3315_235 p,#stacks_in_3315_235 div,#stacks_in_3315_235 ul,#stacks_in_3315_235 ol,#stacks_in_3315_235 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3315_235 a{color:rgba(236, 160, 68, 1.00)}#stacks_in_3315_235 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3315_235{}}


@media only screen and (min-width:0px){#stacks_in_3385_4 h1,#stacks_in_3385_4 div{line-height:1.20}}#stacks_in_3385_4 h1,#stacks_in_3385_4 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_4 h1 a,#stacks_in_3385_4 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_4 h1 a:hover,#stacks_in_3385_4 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3385_4 small,#stacks_in_3385_4 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_4 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_3385_4 {
	padding: 0px 0px 6px 0px;
}
#stacks_in_3385_11 *, #stacks_in_3385_11 *:after, #stacks_in_3385_11 *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; }

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

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

#stacks_in_3385_11  {
}

#stacks_in_3385_11 .timeline_item {
	position: relative;
}

#stacks_in_3385_11 ul.cbp_tmtimeline {
	margin: 0;
}

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

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

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

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

#stacks_in_3385_11 .cbp_tmtimeline li {
	margin: 0;
}

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

		
			background: #262626;
		

	

	
		left: 20%;
	
	
	
	
	
	

	margin-left: -10px;
}

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

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

#stacks_in_3385_11 .cbp_tmtimeline li .cbp_tmtime span.small_label {
	font-size: 16px;
	line-height: 1.2;
	white-space: normal;
	
		color: #BDBDBD;
	
}

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

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

#stacks_in_3385_11 .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_3385_11 .timeline_content {
	margin-top: 20px;
}


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


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

	
		left: 20%;
	
	
	
	
	
	

	margin: 0 0 0 -25px;

	
}

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



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

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

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

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

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

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

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


	

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

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

	


}








	#stacks_in_3385_13 .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_3385_13 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3385_16 h1,#stacks_in_3385_16 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3385_16 h1,#stacks_in_3385_16 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3385_16 h1,#stacks_in_3385_16 div{line-height:1.20}}#stacks_in_3385_16 h1,#stacks_in_3385_16 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_16 h1 a,#stacks_in_3385_16 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_16 h1 a:hover,#stacks_in_3385_16 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3385_16 small,#stacks_in_3385_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_16 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3385_23 h6,#stacks_in_3385_23 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_23 h6 a,#stacks_in_3385_23 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_23 h6 a:hover,#stacks_in_3385_23 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3385_23 small,#stacks_in_3385_23 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_23 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3385_30 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3385_30 {
	position: relative;
}

#imageWizardstacks_in_3385_30 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3385_30 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3385_33 p,#stacks_in_3385_33 div{margin-bottom:0}#stacks_in_3385_33 p,#stacks_in_3385_33 div,#stacks_in_3385_33 ul,#stacks_in_3385_33 ol,#stacks_in_3385_33 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_33 a{color:rgba(235, 91, 37, 1.00)}#stacks_in_3385_33 a:hover{color:rgba(236, 160, 68, 1.00)}@media only screen and (min-width:0px){#stacks_in_3385_33{}}

#stacks_in_3385_36 p,#stacks_in_3385_36 div{margin-bottom:0}#stacks_in_3385_36 p,#stacks_in_3385_36 div,#stacks_in_3385_36 ul,#stacks_in_3385_36 ol,#stacks_in_3385_36 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_36 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_36 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3385_36{}}





	#stacks_in_3385_39 .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_3385_39 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3385_42 h1,#stacks_in_3385_42 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3385_42 h1,#stacks_in_3385_42 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3385_42 h1,#stacks_in_3385_42 div{line-height:1.20}}#stacks_in_3385_42 h1,#stacks_in_3385_42 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_42 h1 a,#stacks_in_3385_42 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_42 h1 a:hover,#stacks_in_3385_42 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3385_42 small,#stacks_in_3385_42 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_42 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3385_49 h6,#stacks_in_3385_49 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_49 h6 a,#stacks_in_3385_49 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_49 h6 a:hover,#stacks_in_3385_49 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3385_49 small,#stacks_in_3385_49 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_49 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3385_56 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3385_56 {
	position: relative;
}

#imageWizardstacks_in_3385_56 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3385_56 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3385_59 p,#stacks_in_3385_59 div{margin-bottom:0}#stacks_in_3385_59 p,#stacks_in_3385_59 div,#stacks_in_3385_59 ul,#stacks_in_3385_59 ol,#stacks_in_3385_59 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_59 a{color:rgba(235, 91, 37, 1.00)}#stacks_in_3385_59 a:hover{color:rgba(236, 160, 68, 1.00)}@media only screen and (min-width:0px){#stacks_in_3385_59{}}

#stacks_in_3385_62 p,#stacks_in_3385_62 div{margin-bottom:0}#stacks_in_3385_62 p,#stacks_in_3385_62 div,#stacks_in_3385_62 ul,#stacks_in_3385_62 ol,#stacks_in_3385_62 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_62 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_62 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3385_62{}}





	#stacks_in_3385_65 .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_3385_65 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3385_68 h1,#stacks_in_3385_68 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3385_68 h1,#stacks_in_3385_68 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3385_68 h1,#stacks_in_3385_68 div{line-height:1.20}}#stacks_in_3385_68 h1,#stacks_in_3385_68 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_68 h1 a,#stacks_in_3385_68 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_68 h1 a:hover,#stacks_in_3385_68 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3385_68 small,#stacks_in_3385_68 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_68 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3385_75 h6,#stacks_in_3385_75 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_75 h6 a,#stacks_in_3385_75 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_75 h6 a:hover,#stacks_in_3385_75 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3385_75 small,#stacks_in_3385_75 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_75 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3385_82 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3385_82 {
	position: relative;
}

#imageWizardstacks_in_3385_82 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3385_82 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3385_85 p,#stacks_in_3385_85 div{margin-bottom:0}#stacks_in_3385_85 p,#stacks_in_3385_85 div,#stacks_in_3385_85 ul,#stacks_in_3385_85 ol,#stacks_in_3385_85 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_85 a{color:rgba(235, 91, 37, 1.00)}#stacks_in_3385_85 a:hover{color:rgba(236, 160, 68, 1.00)}@media only screen and (min-width:0px){#stacks_in_3385_85{}}

#stacks_in_3385_88 p,#stacks_in_3385_88 div{margin-bottom:0}#stacks_in_3385_88 p,#stacks_in_3385_88 div,#stacks_in_3385_88 ul,#stacks_in_3385_88 ol,#stacks_in_3385_88 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_88 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_88 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3385_88{}}





	#stacks_in_3385_91 .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_3385_91 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3385_94 h1,#stacks_in_3385_94 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3385_94 h1,#stacks_in_3385_94 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3385_94 h1,#stacks_in_3385_94 div{line-height:1.20}}#stacks_in_3385_94 h1,#stacks_in_3385_94 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_94 h1 a,#stacks_in_3385_94 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_94 h1 a:hover,#stacks_in_3385_94 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3385_94 small,#stacks_in_3385_94 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_94 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3385_101 h6,#stacks_in_3385_101 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_101 h6 a,#stacks_in_3385_101 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_101 h6 a:hover,#stacks_in_3385_101 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3385_101 small,#stacks_in_3385_101 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_101 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3385_108 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3385_108 {
	position: relative;
}

#imageWizardstacks_in_3385_108 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3385_108 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3385_111 p,#stacks_in_3385_111 div{margin-bottom:0}#stacks_in_3385_111 p,#stacks_in_3385_111 div,#stacks_in_3385_111 ul,#stacks_in_3385_111 ol,#stacks_in_3385_111 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_111 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_111 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3385_111{}}





	#stacks_in_3385_114 .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_3385_114 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3385_117 h1,#stacks_in_3385_117 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3385_117 h1,#stacks_in_3385_117 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3385_117 h1,#stacks_in_3385_117 div{line-height:1.20}}#stacks_in_3385_117 h1,#stacks_in_3385_117 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_117 h1 a,#stacks_in_3385_117 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_117 h1 a:hover,#stacks_in_3385_117 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3385_117 small,#stacks_in_3385_117 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_117 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3385_124 h6,#stacks_in_3385_124 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_124 h6 a,#stacks_in_3385_124 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_124 h6 a:hover,#stacks_in_3385_124 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3385_124 small,#stacks_in_3385_124 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_124 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3385_131 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3385_131 {
	position: relative;
}

#imageWizardstacks_in_3385_131 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3385_131 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3385_134 p,#stacks_in_3385_134 div{margin-bottom:0}#stacks_in_3385_134 p,#stacks_in_3385_134 div,#stacks_in_3385_134 ul,#stacks_in_3385_134 ol,#stacks_in_3385_134 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_134 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_134 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3385_134{}}





	#stacks_in_3385_137 .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_3385_137 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3385_140 h1,#stacks_in_3385_140 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3385_140 h1,#stacks_in_3385_140 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3385_140 h1,#stacks_in_3385_140 div{line-height:1.20}}#stacks_in_3385_140 h1,#stacks_in_3385_140 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_140 h1 a,#stacks_in_3385_140 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_140 h1 a:hover,#stacks_in_3385_140 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3385_140 small,#stacks_in_3385_140 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_140 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3385_147 h6,#stacks_in_3385_147 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_147 h6 a,#stacks_in_3385_147 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_147 h6 a:hover,#stacks_in_3385_147 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3385_147 small,#stacks_in_3385_147 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_147 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3385_154 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3385_154 {
	position: relative;
}

#imageWizardstacks_in_3385_154 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3385_154 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3385_157 p,#stacks_in_3385_157 div{margin-bottom:0}#stacks_in_3385_157 p,#stacks_in_3385_157 div,#stacks_in_3385_157 ul,#stacks_in_3385_157 ol,#stacks_in_3385_157 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_157 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_157 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3385_157{}}





	#stacks_in_3385_160 .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_3385_160 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3385_163 h1,#stacks_in_3385_163 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3385_163 h1,#stacks_in_3385_163 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3385_163 h1,#stacks_in_3385_163 div{line-height:1.20}}#stacks_in_3385_163 h1,#stacks_in_3385_163 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_163 h1 a,#stacks_in_3385_163 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_163 h1 a:hover,#stacks_in_3385_163 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3385_163 small,#stacks_in_3385_163 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_163 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3385_170 h6,#stacks_in_3385_170 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_170 h6 a,#stacks_in_3385_170 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_170 h6 a:hover,#stacks_in_3385_170 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3385_170 small,#stacks_in_3385_170 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_170 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3385_177 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3385_177 {
	position: relative;
}

#imageWizardstacks_in_3385_177 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3385_177 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3385_180 p,#stacks_in_3385_180 div{margin-bottom:0}#stacks_in_3385_180 p,#stacks_in_3385_180 div,#stacks_in_3385_180 ul,#stacks_in_3385_180 ol,#stacks_in_3385_180 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_180 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_180 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3385_180{}}





	#stacks_in_3385_183 .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_3385_183 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3385_186 h1,#stacks_in_3385_186 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3385_186 h1,#stacks_in_3385_186 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3385_186 h1,#stacks_in_3385_186 div{line-height:1.20}}#stacks_in_3385_186 h1,#stacks_in_3385_186 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_186 h1 a,#stacks_in_3385_186 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_186 h1 a:hover,#stacks_in_3385_186 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3385_186 small,#stacks_in_3385_186 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_186 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3385_193 h6,#stacks_in_3385_193 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_193 h6 a,#stacks_in_3385_193 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_193 h6 a:hover,#stacks_in_3385_193 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3385_193 small,#stacks_in_3385_193 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_193 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3385_200 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3385_200 {
	position: relative;
}

#imageWizardstacks_in_3385_200 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3385_200 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3385_203 p,#stacks_in_3385_203 div{margin-bottom:0}#stacks_in_3385_203 p,#stacks_in_3385_203 div,#stacks_in_3385_203 ul,#stacks_in_3385_203 ol,#stacks_in_3385_203 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_203 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_203 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3385_203{}}





	#stacks_in_3385_206 .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_3385_206 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3385_209 h1,#stacks_in_3385_209 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3385_209 h1,#stacks_in_3385_209 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3385_209 h1,#stacks_in_3385_209 div{line-height:1.20}}#stacks_in_3385_209 h1,#stacks_in_3385_209 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_209 h1 a,#stacks_in_3385_209 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_209 h1 a:hover,#stacks_in_3385_209 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3385_209 small,#stacks_in_3385_209 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_209 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3385_216 h6,#stacks_in_3385_216 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_216 h6 a,#stacks_in_3385_216 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_216 h6 a:hover,#stacks_in_3385_216 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3385_216 small,#stacks_in_3385_216 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_216 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3385_223 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3385_223 {
	position: relative;
}

#imageWizardstacks_in_3385_223 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3385_223 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3385_226 p,#stacks_in_3385_226 div{margin-bottom:0}#stacks_in_3385_226 p,#stacks_in_3385_226 div,#stacks_in_3385_226 ul,#stacks_in_3385_226 ol,#stacks_in_3385_226 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_226 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_226 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3385_226{}}





	#stacks_in_3385_229 .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_3385_229 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3385_232 h1,#stacks_in_3385_232 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3385_232 h1,#stacks_in_3385_232 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3385_232 h1,#stacks_in_3385_232 div{line-height:1.20}}#stacks_in_3385_232 h1,#stacks_in_3385_232 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_232 h1 a,#stacks_in_3385_232 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_232 h1 a:hover,#stacks_in_3385_232 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3385_232 small,#stacks_in_3385_232 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_232 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3385_239 h6,#stacks_in_3385_239 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_239 h6 a,#stacks_in_3385_239 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_239 h6 a:hover,#stacks_in_3385_239 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3385_239 small,#stacks_in_3385_239 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_239 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3385_246 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3385_246 {
	position: relative;
}

#imageWizardstacks_in_3385_246 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3385_246 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3385_249 p,#stacks_in_3385_249 div{margin-bottom:0}#stacks_in_3385_249 p,#stacks_in_3385_249 div,#stacks_in_3385_249 ul,#stacks_in_3385_249 ol,#stacks_in_3385_249 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_249 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_249 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3385_249{}}





	#stacks_in_3385_252 .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_3385_252 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3385_255 h1,#stacks_in_3385_255 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3385_255 h1,#stacks_in_3385_255 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3385_255 h1,#stacks_in_3385_255 div{line-height:1.20}}#stacks_in_3385_255 h1,#stacks_in_3385_255 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_255 h1 a,#stacks_in_3385_255 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_255 h1 a:hover,#stacks_in_3385_255 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3385_255 small,#stacks_in_3385_255 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_255 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3385_262 h6,#stacks_in_3385_262 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_262 h6 a,#stacks_in_3385_262 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_262 h6 a:hover,#stacks_in_3385_262 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3385_262 small,#stacks_in_3385_262 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_262 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3385_269 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3385_269 {
	position: relative;
}

#imageWizardstacks_in_3385_269 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3385_269 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3385_272 p,#stacks_in_3385_272 div{margin-bottom:0}#stacks_in_3385_272 p,#stacks_in_3385_272 div,#stacks_in_3385_272 ul,#stacks_in_3385_272 ol,#stacks_in_3385_272 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_272 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_272 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3385_272{}}





	#stacks_in_3385_275 .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_3385_275 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3385_278 h1,#stacks_in_3385_278 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3385_278 h1,#stacks_in_3385_278 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3385_278 h1,#stacks_in_3385_278 div{line-height:1.20}}#stacks_in_3385_278 h1,#stacks_in_3385_278 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_278 h1 a,#stacks_in_3385_278 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_278 h1 a:hover,#stacks_in_3385_278 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3385_278 small,#stacks_in_3385_278 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_278 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3385_285 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3385_285 {
	position: relative;
}

#imageWizardstacks_in_3385_285 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3385_285 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3385_288 p,#stacks_in_3385_288 div{margin-bottom:0}#stacks_in_3385_288 p,#stacks_in_3385_288 div,#stacks_in_3385_288 ul,#stacks_in_3385_288 ol,#stacks_in_3385_288 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_288 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_288 a:hover{color:rgba(255, 255, 255, 1.00)}@media only screen and (min-width:0px){#stacks_in_3385_288{}}


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

.myID {
	position: relative;
	
	
}






	
	#stacks_in_3385_291 .cpsl_myID {
		padding: 0px;
	}
	




#stacks_in_3385_293 p,#stacks_in_3385_293 div{margin-bottom:0}#stacks_in_3385_293 p,#stacks_in_3385_293 div,#stacks_in_3385_293 ul,#stacks_in_3385_293 ol,#stacks_in_3385_293 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_293 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_293 a:hover{color:rgba(255, 255, 255, 1.00)}@media only screen and (min-width:0px){#stacks_in_3385_293{}}

#stacks_in_3385_296 .trigger_myID {
	cursor: pointer;
	display: inline-block;
	color: #515151;

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

	padding-left: 1px;
}

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

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

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

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



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

#stacks_in_3385_296 .trigger_label,
#stacks_in_3385_296 .trigger_label_open {
	font-size: 13px;
	color: #515151;
	margin-left: 4px;
	
	line-height: 20px;
	vertical-align: top;
	
}

#stacks_in_3385_296 .trigger_label_open {
	display: none;
}

#stacks_in_3385_296 {
	margin: 8px 0px 0px 0px;
}




	#stacks_in_3385_297 .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_3385_297 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3385_300 h1,#stacks_in_3385_300 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3385_300 h1,#stacks_in_3385_300 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3385_300 h1,#stacks_in_3385_300 div{line-height:1.20}}#stacks_in_3385_300 h1,#stacks_in_3385_300 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_300 h1 a,#stacks_in_3385_300 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_300 h1 a:hover,#stacks_in_3385_300 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3385_300 small,#stacks_in_3385_300 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_300 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3385_307 h6,#stacks_in_3385_307 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_307 h6 a,#stacks_in_3385_307 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_307 h6 a:hover,#stacks_in_3385_307 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3385_307 small,#stacks_in_3385_307 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_307 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3385_314 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3385_314 {
	position: relative;
}

#imageWizardstacks_in_3385_314 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3385_314 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3385_317 p,#stacks_in_3385_317 div{margin-bottom:0}#stacks_in_3385_317 p,#stacks_in_3385_317 div,#stacks_in_3385_317 ul,#stacks_in_3385_317 ol,#stacks_in_3385_317 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_317 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_317 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3385_317{}}





	#stacks_in_3385_320 .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_3385_320 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3385_323 h1,#stacks_in_3385_323 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3385_323 h1,#stacks_in_3385_323 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3385_323 h1,#stacks_in_3385_323 div{line-height:1.20}}#stacks_in_3385_323 h1,#stacks_in_3385_323 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_323 h1 a,#stacks_in_3385_323 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_323 h1 a:hover,#stacks_in_3385_323 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3385_323 small,#stacks_in_3385_323 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_323 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3385_330 h6,#stacks_in_3385_330 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_330 h6 a,#stacks_in_3385_330 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_330 h6 a:hover,#stacks_in_3385_330 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3385_330 small,#stacks_in_3385_330 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3385_330 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3385_337 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3385_337 {
	position: relative;
}

#imageWizardstacks_in_3385_337 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3385_337 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3385_340 p,#stacks_in_3385_340 div{margin-bottom:0}#stacks_in_3385_340 p,#stacks_in_3385_340 div,#stacks_in_3385_340 ul,#stacks_in_3385_340 ol,#stacks_in_3385_340 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3385_340 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3385_340 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3385_340{}}


@media only screen and (min-width:0px){#stacks_in_3384_4 h1,#stacks_in_3384_4 div{line-height:1.20}}#stacks_in_3384_4 h1,#stacks_in_3384_4 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_4 h1 a,#stacks_in_3384_4 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_4 h1 a:hover,#stacks_in_3384_4 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_4 small,#stacks_in_3384_4 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_4 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_3384_4 {
	padding: 0px 0px 6px 0px;
}
#stacks_in_3384_11 *, #stacks_in_3384_11 *:after, #stacks_in_3384_11 *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; }

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

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

#stacks_in_3384_11  {
}

#stacks_in_3384_11 .timeline_item {
	position: relative;
}

#stacks_in_3384_11 ul.cbp_tmtimeline {
	margin: 0;
}

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

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

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

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

#stacks_in_3384_11 .cbp_tmtimeline li {
	margin: 0;
}

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

		
			background: #262626;
		

	

	
		left: 20%;
	
	
	
	
	
	

	margin-left: -10px;
}

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

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

#stacks_in_3384_11 .cbp_tmtimeline li .cbp_tmtime span.small_label {
	font-size: 16px;
	line-height: 1.2;
	white-space: normal;
	
		color: #BDBDBD;
	
}

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

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

#stacks_in_3384_11 .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_3384_11 .timeline_content {
	margin-top: 20px;
}


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


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

	
		left: 20%;
	
	
	
	
	
	

	margin: 0 0 0 -25px;

	
}

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



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

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

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

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

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

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

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


	

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

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

	


}








	#stacks_in_3384_13 .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_3384_13 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_16 h1,#stacks_in_3384_16 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_16 h1,#stacks_in_3384_16 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_16 h1,#stacks_in_3384_16 div{line-height:1.20}}#stacks_in_3384_16 h1,#stacks_in_3384_16 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_16 h1 a,#stacks_in_3384_16 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_16 h1 a:hover,#stacks_in_3384_16 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_16 small,#stacks_in_3384_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_16 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_23 h6,#stacks_in_3384_23 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_23 h6 a,#stacks_in_3384_23 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_23 h6 a:hover,#stacks_in_3384_23 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_23 small,#stacks_in_3384_23 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_23 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_30 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_30 {
	position: relative;
}

#imageWizardstacks_in_3384_30 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_30 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_33 p,#stacks_in_3384_33 div{margin-bottom:0}#stacks_in_3384_33 p,#stacks_in_3384_33 div,#stacks_in_3384_33 ul,#stacks_in_3384_33 ol,#stacks_in_3384_33 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_33 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_33 a:hover{color:rgba(255, 255, 255, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_33{}}





	#stacks_in_3384_36 .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_3384_36 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_39 h1,#stacks_in_3384_39 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_39 h1,#stacks_in_3384_39 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_39 h1,#stacks_in_3384_39 div{line-height:1.20}}#stacks_in_3384_39 h1,#stacks_in_3384_39 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_39 h1 a,#stacks_in_3384_39 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_39 h1 a:hover,#stacks_in_3384_39 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_39 small,#stacks_in_3384_39 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_39 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_46 h6,#stacks_in_3384_46 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_46 h6 a,#stacks_in_3384_46 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_46 h6 a:hover,#stacks_in_3384_46 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_46 small,#stacks_in_3384_46 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_46 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_53 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_53 {
	position: relative;
}

#imageWizardstacks_in_3384_53 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_53 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_56 p,#stacks_in_3384_56 div{margin-bottom:0}#stacks_in_3384_56 p,#stacks_in_3384_56 div,#stacks_in_3384_56 ul,#stacks_in_3384_56 ol,#stacks_in_3384_56 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_56 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_56 a:hover{color:rgba(255, 255, 255, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_56{}}





	#stacks_in_3384_59 .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_3384_59 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_62 h1,#stacks_in_3384_62 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_62 h1,#stacks_in_3384_62 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_62 h1,#stacks_in_3384_62 div{line-height:1.20}}#stacks_in_3384_62 h1,#stacks_in_3384_62 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_62 h1 a,#stacks_in_3384_62 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_62 h1 a:hover,#stacks_in_3384_62 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_62 small,#stacks_in_3384_62 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_62 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_69 h6,#stacks_in_3384_69 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_69 h6 a,#stacks_in_3384_69 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_69 h6 a:hover,#stacks_in_3384_69 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_69 small,#stacks_in_3384_69 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_69 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_76 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_76 {
	position: relative;
}

#imageWizardstacks_in_3384_76 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_76 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_79 p,#stacks_in_3384_79 div{margin-bottom:0}#stacks_in_3384_79 p,#stacks_in_3384_79 div,#stacks_in_3384_79 ul,#stacks_in_3384_79 ol,#stacks_in_3384_79 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_79 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_79 a:hover{color:rgba(255, 255, 255, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_79{}}





	#stacks_in_3384_82 .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_3384_82 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_85 h1,#stacks_in_3384_85 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_85 h1,#stacks_in_3384_85 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_85 h1,#stacks_in_3384_85 div{line-height:1.20}}#stacks_in_3384_85 h1,#stacks_in_3384_85 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_85 h1 a,#stacks_in_3384_85 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_85 h1 a:hover,#stacks_in_3384_85 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_85 small,#stacks_in_3384_85 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_85 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_92 h6,#stacks_in_3384_92 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_92 h6 a,#stacks_in_3384_92 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_92 h6 a:hover,#stacks_in_3384_92 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_92 small,#stacks_in_3384_92 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_92 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_3384_92 {
	padding: 0px 0px 12px 0px;
}

#stacks_in_3384_99 {
	padding: 0px 0px 12px 0px;
}
#stacks_in_3384_101 p,#stacks_in_3384_101 div{margin-bottom:0}#stacks_in_3384_101 p,#stacks_in_3384_101 div,#stacks_in_3384_101 ul,#stacks_in_3384_101 ol,#stacks_in_3384_101 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_101 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_101 a:hover{color:rgba(255, 255, 255, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_101{}}





	#stacks_in_3384_104 .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_3384_104 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_107 h1,#stacks_in_3384_107 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_107 h1,#stacks_in_3384_107 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_107 h1,#stacks_in_3384_107 div{line-height:1.20}}#stacks_in_3384_107 h1,#stacks_in_3384_107 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_107 h1 a,#stacks_in_3384_107 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_107 h1 a:hover,#stacks_in_3384_107 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_107 small,#stacks_in_3384_107 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_107 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_114 h6,#stacks_in_3384_114 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_114 h6 a,#stacks_in_3384_114 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_114 h6 a:hover,#stacks_in_3384_114 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_114 small,#stacks_in_3384_114 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_114 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_121 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_121 {
	position: relative;
}

#imageWizardstacks_in_3384_121 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_121 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_124 p,#stacks_in_3384_124 div{margin-bottom:0}#stacks_in_3384_124 p,#stacks_in_3384_124 div,#stacks_in_3384_124 ul,#stacks_in_3384_124 ol,#stacks_in_3384_124 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_124 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_124 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_124{}}





	#stacks_in_3384_127 .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_3384_127 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_130 h1,#stacks_in_3384_130 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_130 h1,#stacks_in_3384_130 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_130 h1,#stacks_in_3384_130 div{line-height:1.20}}#stacks_in_3384_130 h1,#stacks_in_3384_130 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_130 h1 a,#stacks_in_3384_130 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_130 h1 a:hover,#stacks_in_3384_130 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_130 small,#stacks_in_3384_130 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_130 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_137 h6,#stacks_in_3384_137 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_137 h6 a,#stacks_in_3384_137 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_137 h6 a:hover,#stacks_in_3384_137 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_137 small,#stacks_in_3384_137 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_137 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_144 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_144 {
	position: relative;
}

#imageWizardstacks_in_3384_144 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_144 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_147 p,#stacks_in_3384_147 div{margin-bottom:0}#stacks_in_3384_147 p,#stacks_in_3384_147 div,#stacks_in_3384_147 ul,#stacks_in_3384_147 ol,#stacks_in_3384_147 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_147 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_147 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_147{}}





	#stacks_in_3384_150 .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_3384_150 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_153 h1,#stacks_in_3384_153 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_153 h1,#stacks_in_3384_153 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_153 h1,#stacks_in_3384_153 div{line-height:1.20}}#stacks_in_3384_153 h1,#stacks_in_3384_153 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_153 h1 a,#stacks_in_3384_153 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_153 h1 a:hover,#stacks_in_3384_153 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_153 small,#stacks_in_3384_153 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_153 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_160 h6,#stacks_in_3384_160 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_160 h6 a,#stacks_in_3384_160 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_160 h6 a:hover,#stacks_in_3384_160 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_160 small,#stacks_in_3384_160 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_160 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_167 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_167 {
	position: relative;
}

#imageWizardstacks_in_3384_167 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_167 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_170 p,#stacks_in_3384_170 div{margin-bottom:0}#stacks_in_3384_170 p,#stacks_in_3384_170 div,#stacks_in_3384_170 ul,#stacks_in_3384_170 ol,#stacks_in_3384_170 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_170 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_170 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_170{}}





	#stacks_in_3384_173 .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_3384_173 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_176 h1,#stacks_in_3384_176 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_176 h1,#stacks_in_3384_176 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_176 h1,#stacks_in_3384_176 div{line-height:1.20}}#stacks_in_3384_176 h1,#stacks_in_3384_176 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_176 h1 a,#stacks_in_3384_176 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_176 h1 a:hover,#stacks_in_3384_176 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_176 small,#stacks_in_3384_176 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_176 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_183 h6,#stacks_in_3384_183 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_183 h6 a,#stacks_in_3384_183 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_183 h6 a:hover,#stacks_in_3384_183 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_183 small,#stacks_in_3384_183 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_183 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_190 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_190 {
	position: relative;
}

#imageWizardstacks_in_3384_190 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_190 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_193 p,#stacks_in_3384_193 div{margin-bottom:0}#stacks_in_3384_193 p,#stacks_in_3384_193 div,#stacks_in_3384_193 ul,#stacks_in_3384_193 ol,#stacks_in_3384_193 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_193 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_193 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_193{}}





	#stacks_in_3384_196 .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_3384_196 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_199 h1,#stacks_in_3384_199 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_199 h1,#stacks_in_3384_199 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_199 h1,#stacks_in_3384_199 div{line-height:1.20}}#stacks_in_3384_199 h1,#stacks_in_3384_199 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_199 h1 a,#stacks_in_3384_199 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_199 h1 a:hover,#stacks_in_3384_199 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_199 small,#stacks_in_3384_199 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_199 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_206 h6,#stacks_in_3384_206 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_206 h6 a,#stacks_in_3384_206 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_206 h6 a:hover,#stacks_in_3384_206 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_206 small,#stacks_in_3384_206 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_206 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_213 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_213 {
	position: relative;
}

#imageWizardstacks_in_3384_213 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_213 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_216 p,#stacks_in_3384_216 div{margin-bottom:0}#stacks_in_3384_216 p,#stacks_in_3384_216 div,#stacks_in_3384_216 ul,#stacks_in_3384_216 ol,#stacks_in_3384_216 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_216 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_216 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_216{}}





	#stacks_in_3384_219 .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_3384_219 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_222 h1,#stacks_in_3384_222 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_222 h1,#stacks_in_3384_222 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_222 h1,#stacks_in_3384_222 div{line-height:1.20}}#stacks_in_3384_222 h1,#stacks_in_3384_222 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_222 h1 a,#stacks_in_3384_222 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_222 h1 a:hover,#stacks_in_3384_222 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_222 small,#stacks_in_3384_222 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_222 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_229 h6,#stacks_in_3384_229 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_229 h6 a,#stacks_in_3384_229 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_229 h6 a:hover,#stacks_in_3384_229 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_229 small,#stacks_in_3384_229 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_229 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_236 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_236 {
	position: relative;
}

#imageWizardstacks_in_3384_236 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_236 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_239 p,#stacks_in_3384_239 div{margin-bottom:0}#stacks_in_3384_239 p,#stacks_in_3384_239 div,#stacks_in_3384_239 ul,#stacks_in_3384_239 ol,#stacks_in_3384_239 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_239 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_239 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_239{}}





	#stacks_in_3384_242 .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_3384_242 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_245 h1,#stacks_in_3384_245 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_245 h1,#stacks_in_3384_245 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_245 h1,#stacks_in_3384_245 div{line-height:1.20}}#stacks_in_3384_245 h1,#stacks_in_3384_245 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_245 h1 a,#stacks_in_3384_245 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_245 h1 a:hover,#stacks_in_3384_245 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_245 small,#stacks_in_3384_245 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_245 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_252 h6,#stacks_in_3384_252 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_252 h6 a,#stacks_in_3384_252 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_252 h6 a:hover,#stacks_in_3384_252 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_252 small,#stacks_in_3384_252 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_252 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_259 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_259 {
	position: relative;
}

#imageWizardstacks_in_3384_259 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_259 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_262 p,#stacks_in_3384_262 div{margin-bottom:0}#stacks_in_3384_262 p,#stacks_in_3384_262 div,#stacks_in_3384_262 ul,#stacks_in_3384_262 ol,#stacks_in_3384_262 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_262 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_262 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_262{}}


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

.myID-heirloomburrata-2016 {
	position: relative;
	
	
}






	
	#stacks_in_3384_265 .cpsl_myID-heirloomburrata-2016 {
		padding: 0px;
	}
	




/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_269 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_269 {
	position: relative;
}

#imageWizardstacks_in_3384_269 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_269 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_272 p,#stacks_in_3384_272 div{margin-bottom:0}#stacks_in_3384_272 p,#stacks_in_3384_272 div,#stacks_in_3384_272 ul,#stacks_in_3384_272 ol,#stacks_in_3384_272 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_272 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_272 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_272{}}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_275 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_275 {
	position: relative;
}

#imageWizardstacks_in_3384_275 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_275 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_278 .trigger_myID-heirloomburrata-2016 {
	cursor: pointer;
	display: inline-block;
	color: #515151;

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

	padding-left: 1px;
}

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

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

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

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



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

#stacks_in_3384_278 .trigger_label,
#stacks_in_3384_278 .trigger_label_open {
	font-size: 13px;
	color: #515151;
	margin-left: 4px;
	
	line-height: 20px;
	vertical-align: top;
	
}

#stacks_in_3384_278 .trigger_label_open {
	display: none;
}

#stacks_in_3384_278 {
	margin: 8px 0px 0px 0px;
}




	#stacks_in_3384_279 .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_3384_279 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_282 h1,#stacks_in_3384_282 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_282 h1,#stacks_in_3384_282 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_282 h1,#stacks_in_3384_282 div{line-height:1.20}}#stacks_in_3384_282 h1,#stacks_in_3384_282 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_282 h1 a,#stacks_in_3384_282 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_282 h1 a:hover,#stacks_in_3384_282 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_282 small,#stacks_in_3384_282 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_282 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_289 h6,#stacks_in_3384_289 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_289 h6 a,#stacks_in_3384_289 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_289 h6 a:hover,#stacks_in_3384_289 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_289 small,#stacks_in_3384_289 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_289 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_296 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_296 {
	position: relative;
}

#imageWizardstacks_in_3384_296 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_296 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_299 p,#stacks_in_3384_299 div{margin-bottom:0}#stacks_in_3384_299 p,#stacks_in_3384_299 div,#stacks_in_3384_299 ul,#stacks_in_3384_299 ol,#stacks_in_3384_299 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_299 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_299 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_299{}}





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

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



#stacks_in_3384_305 h1,#stacks_in_3384_305 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_305 h1,#stacks_in_3384_305 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_305 h1,#stacks_in_3384_305 div{line-height:1.20}}#stacks_in_3384_305 h1,#stacks_in_3384_305 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_305 h1 a,#stacks_in_3384_305 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_305 h1 a:hover,#stacks_in_3384_305 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_305 small,#stacks_in_3384_305 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_305 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_312 h6,#stacks_in_3384_312 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_312 h6 a,#stacks_in_3384_312 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_312 h6 a:hover,#stacks_in_3384_312 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_312 small,#stacks_in_3384_312 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_312 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_319 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_319 {
	position: relative;
}

#imageWizardstacks_in_3384_319 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_319 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_322 p,#stacks_in_3384_322 div{margin-bottom:0}#stacks_in_3384_322 p,#stacks_in_3384_322 div,#stacks_in_3384_322 ul,#stacks_in_3384_322 ol,#stacks_in_3384_322 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_322 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_322 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_322{}}





	#stacks_in_3384_325 .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_3384_325 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_328 h1,#stacks_in_3384_328 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_328 h1,#stacks_in_3384_328 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_328 h1,#stacks_in_3384_328 div{line-height:1.20}}#stacks_in_3384_328 h1,#stacks_in_3384_328 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_328 h1 a,#stacks_in_3384_328 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_328 h1 a:hover,#stacks_in_3384_328 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_328 small,#stacks_in_3384_328 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_328 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_335 h6,#stacks_in_3384_335 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_335 h6 a,#stacks_in_3384_335 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_335 h6 a:hover,#stacks_in_3384_335 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_335 small,#stacks_in_3384_335 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_335 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_342 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_342 {
	position: relative;
}

#imageWizardstacks_in_3384_342 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_342 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_345 p,#stacks_in_3384_345 div{margin-bottom:0}#stacks_in_3384_345 p,#stacks_in_3384_345 div,#stacks_in_3384_345 ul,#stacks_in_3384_345 ol,#stacks_in_3384_345 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_345 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_345 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_345{}}





	#stacks_in_3384_348 .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_3384_348 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_351 h1,#stacks_in_3384_351 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_351 h1,#stacks_in_3384_351 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_351 h1,#stacks_in_3384_351 div{line-height:1.20}}#stacks_in_3384_351 h1,#stacks_in_3384_351 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_351 h1 a,#stacks_in_3384_351 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_351 h1 a:hover,#stacks_in_3384_351 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_351 small,#stacks_in_3384_351 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_351 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_358 h6,#stacks_in_3384_358 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_358 h6 a,#stacks_in_3384_358 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_358 h6 a:hover,#stacks_in_3384_358 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_358 small,#stacks_in_3384_358 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_358 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_365 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_365 {
	position: relative;
}

#imageWizardstacks_in_3384_365 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_365 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_368 p,#stacks_in_3384_368 div{margin-bottom:0}#stacks_in_3384_368 p,#stacks_in_3384_368 div,#stacks_in_3384_368 ul,#stacks_in_3384_368 ol,#stacks_in_3384_368 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_368 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_368 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_368{}}


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

.myID-19thBBQ-2016 {
	position: relative;
	
	
}






	
	#stacks_in_3384_371 .cpsl_myID-19thBBQ-2016 {
		padding: 0px;
	}
	




#stacks_in_3384_375 p,#stacks_in_3384_375 div{margin-bottom:0}#stacks_in_3384_375 p,#stacks_in_3384_375 div,#stacks_in_3384_375 ul,#stacks_in_3384_375 ol,#stacks_in_3384_375 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_375 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_375 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_375{}}

#stacks_in_3384_378 .trigger_myID-19thBBQ-2016 {
	cursor: pointer;
	display: inline-block;
	color: #515151;

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

	padding-left: 1px;
}

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

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

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

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



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

#stacks_in_3384_378 .trigger_label,
#stacks_in_3384_378 .trigger_label_open {
	font-size: 13px;
	color: #515151;
	margin-left: 4px;
	
	line-height: 20px;
	vertical-align: top;
	
}

#stacks_in_3384_378 .trigger_label_open {
	display: none;
}

#stacks_in_3384_378 {
	margin: 8px 0px 0px 0px;
}




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

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



#stacks_in_3384_382 h1,#stacks_in_3384_382 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_382 h1,#stacks_in_3384_382 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_382 h1,#stacks_in_3384_382 div{line-height:1.20}}#stacks_in_3384_382 h1,#stacks_in_3384_382 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_382 h1 a,#stacks_in_3384_382 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_382 h1 a:hover,#stacks_in_3384_382 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_382 small,#stacks_in_3384_382 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_382 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_389 h6,#stacks_in_3384_389 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_389 h6 a,#stacks_in_3384_389 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_389 h6 a:hover,#stacks_in_3384_389 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_389 small,#stacks_in_3384_389 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_389 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_396 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_396 {
	position: relative;
}

#imageWizardstacks_in_3384_396 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_396 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_399 p,#stacks_in_3384_399 div{margin-bottom:0}#stacks_in_3384_399 p,#stacks_in_3384_399 div,#stacks_in_3384_399 ul,#stacks_in_3384_399 ol,#stacks_in_3384_399 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_399 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_399 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_399{}}


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

.myID-celebtaste-2016 {
	position: relative;
	
	
}






	
	#stacks_in_3384_402 .cpsl_myID-celebtaste-2016 {
		padding: 0px;
	}
	




#stacks_in_3384_406 p,#stacks_in_3384_406 div{margin-bottom:0}#stacks_in_3384_406 p,#stacks_in_3384_406 div,#stacks_in_3384_406 ul,#stacks_in_3384_406 ol,#stacks_in_3384_406 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_406 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_406 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_406{}}

#stacks_in_3384_409 .trigger_myID-celebtaste-2016 {
	cursor: pointer;
	display: inline-block;
	color: #515151;

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

	padding-left: 1px;
}

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

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

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

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



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

#stacks_in_3384_409 .trigger_label,
#stacks_in_3384_409 .trigger_label_open {
	font-size: 13px;
	color: #515151;
	margin-left: 4px;
	
	line-height: 20px;
	vertical-align: top;
	
}

#stacks_in_3384_409 .trigger_label_open {
	display: none;
}

#stacks_in_3384_409 {
	margin: 8px 0px 0px 0px;
}




	#stacks_in_3384_410 .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_3384_410 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_413 h1,#stacks_in_3384_413 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_413 h1,#stacks_in_3384_413 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_413 h1,#stacks_in_3384_413 div{line-height:1.20}}#stacks_in_3384_413 h1,#stacks_in_3384_413 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_413 h1 a,#stacks_in_3384_413 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_413 h1 a:hover,#stacks_in_3384_413 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_413 small,#stacks_in_3384_413 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_413 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_420 h6,#stacks_in_3384_420 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_420 h6 a,#stacks_in_3384_420 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_420 h6 a:hover,#stacks_in_3384_420 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_420 small,#stacks_in_3384_420 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_420 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_427 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_427 {
	position: relative;
}

#imageWizardstacks_in_3384_427 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_427 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_430 p,#stacks_in_3384_430 div{margin-bottom:0}#stacks_in_3384_430 p,#stacks_in_3384_430 div,#stacks_in_3384_430 ul,#stacks_in_3384_430 ol,#stacks_in_3384_430 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_430 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_430 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_430{}}





	#stacks_in_3384_433 .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_3384_433 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_436 h1,#stacks_in_3384_436 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_436 h1,#stacks_in_3384_436 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_436 h1,#stacks_in_3384_436 div{line-height:1.20}}#stacks_in_3384_436 h1,#stacks_in_3384_436 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_436 h1 a,#stacks_in_3384_436 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_436 h1 a:hover,#stacks_in_3384_436 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_436 small,#stacks_in_3384_436 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_436 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_443 h6,#stacks_in_3384_443 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_443 h6 a,#stacks_in_3384_443 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_443 h6 a:hover,#stacks_in_3384_443 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_443 small,#stacks_in_3384_443 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_443 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_450 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_450 {
	position: relative;
}

#imageWizardstacks_in_3384_450 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_450 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_453 p,#stacks_in_3384_453 div{margin-bottom:0}#stacks_in_3384_453 p,#stacks_in_3384_453 div,#stacks_in_3384_453 ul,#stacks_in_3384_453 ol,#stacks_in_3384_453 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_453 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_453 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_453{}}





	#stacks_in_3384_456 .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_3384_456 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_459 h1,#stacks_in_3384_459 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_459 h1,#stacks_in_3384_459 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_459 h1,#stacks_in_3384_459 div{line-height:1.20}}#stacks_in_3384_459 h1,#stacks_in_3384_459 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_459 h1 a,#stacks_in_3384_459 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_459 h1 a:hover,#stacks_in_3384_459 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_459 small,#stacks_in_3384_459 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_459 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_466 h6,#stacks_in_3384_466 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_466 h6 a,#stacks_in_3384_466 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_466 h6 a:hover,#stacks_in_3384_466 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_466 small,#stacks_in_3384_466 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_466 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_473 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_473 {
	position: relative;
}

#imageWizardstacks_in_3384_473 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_473 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_476 p,#stacks_in_3384_476 div{margin-bottom:0}#stacks_in_3384_476 p,#stacks_in_3384_476 div,#stacks_in_3384_476 ul,#stacks_in_3384_476 ol,#stacks_in_3384_476 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_476 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_476 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_476{}}





	#stacks_in_3384_479 .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_3384_479 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_482 h1,#stacks_in_3384_482 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_482 h1,#stacks_in_3384_482 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_482 h1,#stacks_in_3384_482 div{line-height:1.20}}#stacks_in_3384_482 h1,#stacks_in_3384_482 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_482 h1 a,#stacks_in_3384_482 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_482 h1 a:hover,#stacks_in_3384_482 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_482 small,#stacks_in_3384_482 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_482 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_489 h6,#stacks_in_3384_489 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_489 h6 a,#stacks_in_3384_489 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_489 h6 a:hover,#stacks_in_3384_489 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_489 small,#stacks_in_3384_489 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_489 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_496 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_496 {
	position: relative;
}

#imageWizardstacks_in_3384_496 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_496 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_499 p,#stacks_in_3384_499 div{margin-bottom:0}#stacks_in_3384_499 p,#stacks_in_3384_499 div,#stacks_in_3384_499 ul,#stacks_in_3384_499 ol,#stacks_in_3384_499 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_499 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_499 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_499{}}





	#stacks_in_3384_502 .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_3384_502 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_505 h1,#stacks_in_3384_505 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_505 h1,#stacks_in_3384_505 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_505 h1,#stacks_in_3384_505 div{line-height:1.20}}#stacks_in_3384_505 h1,#stacks_in_3384_505 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_505 h1 a,#stacks_in_3384_505 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_505 h1 a:hover,#stacks_in_3384_505 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_505 small,#stacks_in_3384_505 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_505 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_512 h6,#stacks_in_3384_512 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_512 h6 a,#stacks_in_3384_512 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_512 h6 a:hover,#stacks_in_3384_512 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_512 small,#stacks_in_3384_512 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_512 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_519 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_519 {
	position: relative;
}

#imageWizardstacks_in_3384_519 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_519 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_522 p,#stacks_in_3384_522 div{margin-bottom:0}#stacks_in_3384_522 p,#stacks_in_3384_522 div,#stacks_in_3384_522 ul,#stacks_in_3384_522 ol,#stacks_in_3384_522 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_522 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_522 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_522{}}


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

.myID-belle-2016 {
	position: relative;
	
	
}






	
	#stacks_in_3384_525 .cpsl_myID-belle-2016 {
		padding: 0px;
	}
	




#stacks_in_3384_529 p,#stacks_in_3384_529 div{margin-bottom:0}#stacks_in_3384_529 p,#stacks_in_3384_529 div,#stacks_in_3384_529 ul,#stacks_in_3384_529 ol,#stacks_in_3384_529 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_529 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_529 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_529{}}

#stacks_in_3384_532 .trigger_myID-belle-2016 {
	cursor: pointer;
	display: inline-block;
	color: #515151;

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

	padding-left: 1px;
}

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

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

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

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



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

#stacks_in_3384_532 .trigger_label,
#stacks_in_3384_532 .trigger_label_open {
	font-size: 13px;
	color: #515151;
	margin-left: 4px;
	
	line-height: 20px;
	vertical-align: top;
	
}

#stacks_in_3384_532 .trigger_label_open {
	display: none;
}

#stacks_in_3384_532 {
	margin: 8px 0px 0px 0px;
}




	#stacks_in_3384_533 .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_3384_533 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_536 h1,#stacks_in_3384_536 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_536 h1,#stacks_in_3384_536 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_536 h1,#stacks_in_3384_536 div{line-height:1.20}}#stacks_in_3384_536 h1,#stacks_in_3384_536 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_536 h1 a,#stacks_in_3384_536 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_536 h1 a:hover,#stacks_in_3384_536 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_536 small,#stacks_in_3384_536 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_536 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_543 h6,#stacks_in_3384_543 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_543 h6 a,#stacks_in_3384_543 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_543 h6 a:hover,#stacks_in_3384_543 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_543 small,#stacks_in_3384_543 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_543 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_550 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_550 {
	position: relative;
}

#imageWizardstacks_in_3384_550 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_550 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_553 p,#stacks_in_3384_553 div{margin-bottom:0}#stacks_in_3384_553 p,#stacks_in_3384_553 div,#stacks_in_3384_553 ul,#stacks_in_3384_553 ol,#stacks_in_3384_553 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_553 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_553 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_553{}}





	#stacks_in_3384_556 .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_3384_556 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_559 h1,#stacks_in_3384_559 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_559 h1,#stacks_in_3384_559 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_559 h1,#stacks_in_3384_559 div{line-height:1.20}}#stacks_in_3384_559 h1,#stacks_in_3384_559 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_559 h1 a,#stacks_in_3384_559 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_559 h1 a:hover,#stacks_in_3384_559 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_559 small,#stacks_in_3384_559 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_559 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_566 h6,#stacks_in_3384_566 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_566 h6 a,#stacks_in_3384_566 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_566 h6 a:hover,#stacks_in_3384_566 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_566 small,#stacks_in_3384_566 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_566 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_573 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_573 {
	position: relative;
}

#imageWizardstacks_in_3384_573 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_573 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_576 p,#stacks_in_3384_576 div{margin-bottom:0}#stacks_in_3384_576 p,#stacks_in_3384_576 div,#stacks_in_3384_576 ul,#stacks_in_3384_576 ol,#stacks_in_3384_576 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_576 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_576 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_576{}}





	#stacks_in_3384_579 .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_3384_579 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_582 h1,#stacks_in_3384_582 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_582 h1,#stacks_in_3384_582 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_582 h1,#stacks_in_3384_582 div{line-height:1.20}}#stacks_in_3384_582 h1,#stacks_in_3384_582 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_582 h1 a,#stacks_in_3384_582 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_582 h1 a:hover,#stacks_in_3384_582 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_582 small,#stacks_in_3384_582 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_582 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_589 h6,#stacks_in_3384_589 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_589 h6 a,#stacks_in_3384_589 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_589 h6 a:hover,#stacks_in_3384_589 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_589 small,#stacks_in_3384_589 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_589 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_596 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_596 {
	position: relative;
}

#imageWizardstacks_in_3384_596 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_596 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_599 p,#stacks_in_3384_599 div{margin-bottom:0}#stacks_in_3384_599 p,#stacks_in_3384_599 div,#stacks_in_3384_599 ul,#stacks_in_3384_599 ol,#stacks_in_3384_599 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_599 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_599 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_599{}}


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

.myID-fabfood-2016 {
	position: relative;
	
	
}






	
	#stacks_in_3384_602 .cpsl_myID-fabfood-2016 {
		padding: 0px;
	}
	




#stacks_in_3384_606 p,#stacks_in_3384_606 div{margin-bottom:0}#stacks_in_3384_606 p,#stacks_in_3384_606 div,#stacks_in_3384_606 ul,#stacks_in_3384_606 ol,#stacks_in_3384_606 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_606 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_606 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_606{}}

#stacks_in_3384_609 .trigger_myID-fabfood-2016 {
	cursor: pointer;
	display: inline-block;
	color: #515151;

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

	padding-left: 1px;
}

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

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

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

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



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

#stacks_in_3384_609 .trigger_label,
#stacks_in_3384_609 .trigger_label_open {
	font-size: 13px;
	color: #515151;
	margin-left: 4px;
	
	line-height: 20px;
	vertical-align: top;
	
}

#stacks_in_3384_609 .trigger_label_open {
	display: none;
}

#stacks_in_3384_609 {
	margin: 8px 0px 0px 0px;
}




	#stacks_in_3384_610 .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_3384_610 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_613 h1,#stacks_in_3384_613 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_613 h1,#stacks_in_3384_613 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_613 h1,#stacks_in_3384_613 div{line-height:1.20}}#stacks_in_3384_613 h1,#stacks_in_3384_613 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_613 h1 a,#stacks_in_3384_613 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_613 h1 a:hover,#stacks_in_3384_613 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_613 small,#stacks_in_3384_613 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_613 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_620 h6,#stacks_in_3384_620 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_620 h6 a,#stacks_in_3384_620 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_620 h6 a:hover,#stacks_in_3384_620 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_620 small,#stacks_in_3384_620 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_620 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_627 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_627 {
	position: relative;
}

#imageWizardstacks_in_3384_627 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_627 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_630 p,#stacks_in_3384_630 div{margin-bottom:0}#stacks_in_3384_630 p,#stacks_in_3384_630 div,#stacks_in_3384_630 ul,#stacks_in_3384_630 ol,#stacks_in_3384_630 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_630 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_630 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_630{}}





	#stacks_in_3384_633 .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_3384_633 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_636 h1,#stacks_in_3384_636 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_636 h1,#stacks_in_3384_636 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_636 h1,#stacks_in_3384_636 div{line-height:1.20}}#stacks_in_3384_636 h1,#stacks_in_3384_636 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_636 h1 a,#stacks_in_3384_636 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_636 h1 a:hover,#stacks_in_3384_636 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_636 small,#stacks_in_3384_636 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_636 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_643 h6,#stacks_in_3384_643 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_643 h6 a,#stacks_in_3384_643 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_643 h6 a:hover,#stacks_in_3384_643 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_643 small,#stacks_in_3384_643 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_643 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_650 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_650 {
	position: relative;
}

#imageWizardstacks_in_3384_650 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_650 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_653 p,#stacks_in_3384_653 div{margin-bottom:0}#stacks_in_3384_653 p,#stacks_in_3384_653 div,#stacks_in_3384_653 ul,#stacks_in_3384_653 ol,#stacks_in_3384_653 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_653 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_653 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_653{}}





	#stacks_in_3384_656 .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_3384_656 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_659 h1,#stacks_in_3384_659 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_659 h1,#stacks_in_3384_659 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_659 h1,#stacks_in_3384_659 div{line-height:1.20}}#stacks_in_3384_659 h1,#stacks_in_3384_659 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_659 h1 a,#stacks_in_3384_659 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_659 h1 a:hover,#stacks_in_3384_659 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_659 small,#stacks_in_3384_659 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_659 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_666 h6,#stacks_in_3384_666 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_666 h6 a,#stacks_in_3384_666 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_666 h6 a:hover,#stacks_in_3384_666 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_666 small,#stacks_in_3384_666 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_666 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_673 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_673 {
	position: relative;
}

#imageWizardstacks_in_3384_673 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_673 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_676 p,#stacks_in_3384_676 div{margin-bottom:0}#stacks_in_3384_676 p,#stacks_in_3384_676 div,#stacks_in_3384_676 ul,#stacks_in_3384_676 ol,#stacks_in_3384_676 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_676 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_676 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_676{}}





	#stacks_in_3384_679 .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_3384_679 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_682 h1,#stacks_in_3384_682 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_682 h1,#stacks_in_3384_682 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_682 h1,#stacks_in_3384_682 div{line-height:1.20}}#stacks_in_3384_682 h1,#stacks_in_3384_682 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_682 h1 a,#stacks_in_3384_682 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_682 h1 a:hover,#stacks_in_3384_682 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_682 small,#stacks_in_3384_682 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_682 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_689 h6,#stacks_in_3384_689 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_689 h6 a,#stacks_in_3384_689 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_689 h6 a:hover,#stacks_in_3384_689 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_689 small,#stacks_in_3384_689 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_689 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_696 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_696 {
	position: relative;
}

#imageWizardstacks_in_3384_696 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_696 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_699 p,#stacks_in_3384_699 div{margin-bottom:0}#stacks_in_3384_699 p,#stacks_in_3384_699 div,#stacks_in_3384_699 ul,#stacks_in_3384_699 ol,#stacks_in_3384_699 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_699 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_699 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_699{}}





	#stacks_in_3384_702 .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_3384_702 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_705 h1,#stacks_in_3384_705 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_705 h1,#stacks_in_3384_705 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_705 h1,#stacks_in_3384_705 div{line-height:1.20}}#stacks_in_3384_705 h1,#stacks_in_3384_705 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_705 h1 a,#stacks_in_3384_705 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_705 h1 a:hover,#stacks_in_3384_705 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_705 small,#stacks_in_3384_705 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_705 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_712 h6,#stacks_in_3384_712 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_712 h6 a,#stacks_in_3384_712 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_712 h6 a:hover,#stacks_in_3384_712 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_712 small,#stacks_in_3384_712 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_712 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_719 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_719 {
	position: relative;
}

#imageWizardstacks_in_3384_719 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_719 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_722 p,#stacks_in_3384_722 div{margin-bottom:0}#stacks_in_3384_722 p,#stacks_in_3384_722 div,#stacks_in_3384_722 ul,#stacks_in_3384_722 ol,#stacks_in_3384_722 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_722 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_722 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_722{}}





	#stacks_in_3384_725 .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_3384_725 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_728 h1,#stacks_in_3384_728 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_728 h1,#stacks_in_3384_728 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_728 h1,#stacks_in_3384_728 div{line-height:1.20}}#stacks_in_3384_728 h1,#stacks_in_3384_728 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_728 h1 a,#stacks_in_3384_728 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_728 h1 a:hover,#stacks_in_3384_728 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_728 small,#stacks_in_3384_728 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_728 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_735 h6,#stacks_in_3384_735 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_735 h6 a,#stacks_in_3384_735 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_735 h6 a:hover,#stacks_in_3384_735 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_735 small,#stacks_in_3384_735 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_735 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_742 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_742 {
	position: relative;
}

#imageWizardstacks_in_3384_742 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_742 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_745 p,#stacks_in_3384_745 div{margin-bottom:0}#stacks_in_3384_745 p,#stacks_in_3384_745 div,#stacks_in_3384_745 ul,#stacks_in_3384_745 ol,#stacks_in_3384_745 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_745 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_745 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_745{}}





	#stacks_in_3384_748 .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_3384_748 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_751 h1,#stacks_in_3384_751 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_751 h1,#stacks_in_3384_751 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_751 h1,#stacks_in_3384_751 div{line-height:1.20}}#stacks_in_3384_751 h1,#stacks_in_3384_751 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_751 h1 a,#stacks_in_3384_751 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_751 h1 a:hover,#stacks_in_3384_751 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_751 small,#stacks_in_3384_751 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_751 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_758 h6,#stacks_in_3384_758 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_758 h6 a,#stacks_in_3384_758 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_758 h6 a:hover,#stacks_in_3384_758 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_758 small,#stacks_in_3384_758 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_758 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_765 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_765 {
	position: relative;
}

#imageWizardstacks_in_3384_765 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_765 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_768 p,#stacks_in_3384_768 div{margin-bottom:0}#stacks_in_3384_768 p,#stacks_in_3384_768 div,#stacks_in_3384_768 ul,#stacks_in_3384_768 ol,#stacks_in_3384_768 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_768 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_768 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_768{}}


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

.myID-fabfood-2016 {
	position: relative;
	
	
}






	
	#stacks_in_3384_771 .cpsl_myID-fabfood-2016 {
		padding: 0px;
	}
	




#stacks_in_3384_775 p,#stacks_in_3384_775 div{margin-bottom:0}#stacks_in_3384_775 p,#stacks_in_3384_775 div,#stacks_in_3384_775 ul,#stacks_in_3384_775 ol,#stacks_in_3384_775 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_775 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_775 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_775{}}

#stacks_in_3384_778 .trigger_myID-fabfood-2016 {
	cursor: pointer;
	display: inline-block;
	color: #515151;

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

	padding-left: 1px;
}

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

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

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

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



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

#stacks_in_3384_778 .trigger_label,
#stacks_in_3384_778 .trigger_label_open {
	font-size: 13px;
	color: #515151;
	margin-left: 4px;
	
	line-height: 20px;
	vertical-align: top;
	
}

#stacks_in_3384_778 .trigger_label_open {
	display: none;
}

#stacks_in_3384_778 {
	margin: 8px 0px 0px 0px;
}




	#stacks_in_3384_779 .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_3384_779 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_782 h1,#stacks_in_3384_782 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_782 h1,#stacks_in_3384_782 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_782 h1,#stacks_in_3384_782 div{line-height:1.20}}#stacks_in_3384_782 h1,#stacks_in_3384_782 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_782 h1 a,#stacks_in_3384_782 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_782 h1 a:hover,#stacks_in_3384_782 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_782 small,#stacks_in_3384_782 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_782 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_789 h6,#stacks_in_3384_789 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_789 h6 a,#stacks_in_3384_789 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_789 h6 a:hover,#stacks_in_3384_789 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_789 small,#stacks_in_3384_789 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_789 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_3384_796 {
	padding: 14px 0px 26px 0px;
}
#stacks_in_3384_798 p,#stacks_in_3384_798 div{margin-bottom:0}#stacks_in_3384_798 p,#stacks_in_3384_798 div,#stacks_in_3384_798 ul,#stacks_in_3384_798 ol,#stacks_in_3384_798 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_798 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_798 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_798{}}


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

.myID-checkplease-2016 {
	position: relative;
	
	
}






	
	#stacks_in_3384_801 .cpsl_myID-checkplease-2016 {
		padding: 0px;
	}
	




#stacks_in_3384_805 p,#stacks_in_3384_805 div{margin-bottom:0}#stacks_in_3384_805 p,#stacks_in_3384_805 div,#stacks_in_3384_805 ul,#stacks_in_3384_805 ol,#stacks_in_3384_805 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_805 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_805 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_805{}}

#stacks_in_3384_808 .trigger_myID-checkplease-2016 {
	cursor: pointer;
	display: inline-block;
	color: #515151;

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

	padding-left: 1px;
}

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

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

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

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



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

#stacks_in_3384_808 .trigger_label,
#stacks_in_3384_808 .trigger_label_open {
	font-size: 13px;
	color: #515151;
	margin-left: 4px;
	
	line-height: 20px;
	vertical-align: top;
	
}

#stacks_in_3384_808 .trigger_label_open {
	display: none;
}

#stacks_in_3384_808 {
	margin: 8px 0px 0px 0px;
}




	#stacks_in_3384_809 .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_3384_809 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_812 h1,#stacks_in_3384_812 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_812 h1,#stacks_in_3384_812 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_812 h1,#stacks_in_3384_812 div{line-height:1.20}}#stacks_in_3384_812 h1,#stacks_in_3384_812 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_812 h1 a,#stacks_in_3384_812 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_812 h1 a:hover,#stacks_in_3384_812 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_812 small,#stacks_in_3384_812 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_812 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_819 h6,#stacks_in_3384_819 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_819 h6 a,#stacks_in_3384_819 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_819 h6 a:hover,#stacks_in_3384_819 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_819 small,#stacks_in_3384_819 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_819 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_826 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_826 {
	position: relative;
}

#imageWizardstacks_in_3384_826 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_826 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_829 p,#stacks_in_3384_829 div{margin-bottom:0}#stacks_in_3384_829 p,#stacks_in_3384_829 div,#stacks_in_3384_829 ul,#stacks_in_3384_829 ol,#stacks_in_3384_829 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_829 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_829 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_829{}}





	#stacks_in_3384_832 .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_3384_832 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_835 h1,#stacks_in_3384_835 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_835 h1,#stacks_in_3384_835 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_835 h1,#stacks_in_3384_835 div{line-height:1.20}}#stacks_in_3384_835 h1,#stacks_in_3384_835 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_835 h1 a,#stacks_in_3384_835 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_835 h1 a:hover,#stacks_in_3384_835 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_835 small,#stacks_in_3384_835 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_835 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_842 h6,#stacks_in_3384_842 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_842 h6 a,#stacks_in_3384_842 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_842 h6 a:hover,#stacks_in_3384_842 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_842 small,#stacks_in_3384_842 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_842 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_849 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_849 {
	position: relative;
}

#imageWizardstacks_in_3384_849 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_849 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_852 p,#stacks_in_3384_852 div{margin-bottom:0}#stacks_in_3384_852 p,#stacks_in_3384_852 div,#stacks_in_3384_852 ul,#stacks_in_3384_852 ol,#stacks_in_3384_852 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_852 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_852 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_852{}}





	#stacks_in_3384_855 .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_3384_855 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_858 h1,#stacks_in_3384_858 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_858 h1,#stacks_in_3384_858 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_858 h1,#stacks_in_3384_858 div{line-height:1.20}}#stacks_in_3384_858 h1,#stacks_in_3384_858 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_858 h1 a,#stacks_in_3384_858 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_858 h1 a:hover,#stacks_in_3384_858 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_858 small,#stacks_in_3384_858 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_858 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_865 h6,#stacks_in_3384_865 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_865 h6 a,#stacks_in_3384_865 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_865 h6 a:hover,#stacks_in_3384_865 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_865 small,#stacks_in_3384_865 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_865 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_3384_872 {
	padding: 0px 0px 26px 0px;
}
#stacks_in_3384_874 p,#stacks_in_3384_874 div{margin-bottom:0}#stacks_in_3384_874 p,#stacks_in_3384_874 div,#stacks_in_3384_874 ul,#stacks_in_3384_874 ol,#stacks_in_3384_874 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_874 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_874 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_874{}}





	#stacks_in_3384_877 .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_3384_877 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_880 h1,#stacks_in_3384_880 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_880 h1,#stacks_in_3384_880 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_880 h1,#stacks_in_3384_880 div{line-height:1.20}}#stacks_in_3384_880 h1,#stacks_in_3384_880 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_880 h1 a,#stacks_in_3384_880 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_880 h1 a:hover,#stacks_in_3384_880 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_880 small,#stacks_in_3384_880 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_880 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_887 h6,#stacks_in_3384_887 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_887 h6 a,#stacks_in_3384_887 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_887 h6 a:hover,#stacks_in_3384_887 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_887 small,#stacks_in_3384_887 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_887 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_894 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_894 {
	position: relative;
}

#imageWizardstacks_in_3384_894 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_894 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_897 p,#stacks_in_3384_897 div{margin-bottom:0}#stacks_in_3384_897 p,#stacks_in_3384_897 div,#stacks_in_3384_897 ul,#stacks_in_3384_897 ol,#stacks_in_3384_897 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_897 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_897 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_897{}}





	#stacks_in_3384_900 .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_3384_900 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3384_903 h1,#stacks_in_3384_903 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3384_903 h1,#stacks_in_3384_903 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3384_903 h1,#stacks_in_3384_903 div{line-height:1.20}}#stacks_in_3384_903 h1,#stacks_in_3384_903 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_903 h1 a,#stacks_in_3384_903 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_903 h1 a:hover,#stacks_in_3384_903 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3384_903 small,#stacks_in_3384_903 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_903 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3384_910 h6,#stacks_in_3384_910 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_910 h6 a,#stacks_in_3384_910 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_910 h6 a:hover,#stacks_in_3384_910 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3384_910 small,#stacks_in_3384_910 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3384_910 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3384_917 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3384_917 {
	position: relative;
}

#imageWizardstacks_in_3384_917 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3384_917 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3384_920 p,#stacks_in_3384_920 div{margin-bottom:0}#stacks_in_3384_920 p,#stacks_in_3384_920 div,#stacks_in_3384_920 ul,#stacks_in_3384_920 ol,#stacks_in_3384_920 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3384_920 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3384_920 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3384_920{}}


@media only screen and (min-width:0px){#stacks_in_3383_4 h1,#stacks_in_3383_4 div{line-height:1.20}}#stacks_in_3383_4 h1,#stacks_in_3383_4 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_4 h1 a,#stacks_in_3383_4 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_4 h1 a:hover,#stacks_in_3383_4 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_4 small,#stacks_in_3383_4 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_4 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_3383_4 {
	padding: 0px 0px 6px 0px;
}
#stacks_in_3383_11 *, #stacks_in_3383_11 *:after, #stacks_in_3383_11 *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; }

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

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

#stacks_in_3383_11  {
}

#stacks_in_3383_11 .timeline_item {
	position: relative;
}

#stacks_in_3383_11 ul.cbp_tmtimeline {
	margin: 0;
}

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

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

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

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

#stacks_in_3383_11 .cbp_tmtimeline li {
	margin: 0;
}

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

		
			background: #262626;
		

	

	
		left: 20%;
	
	
	
	
	
	

	margin-left: -10px;
}

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

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

#stacks_in_3383_11 .cbp_tmtimeline li .cbp_tmtime span.small_label {
	font-size: 16px;
	line-height: 1.2;
	white-space: normal;
	
		color: #BDBDBD;
	
}

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

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

#stacks_in_3383_11 .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_3383_11 .timeline_content {
	margin-top: 20px;
}


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


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

	
		left: 20%;
	
	
	
	
	
	

	margin: 0 0 0 -25px;

	
}

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



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

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

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

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

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

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

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


	

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

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

	


}








	#stacks_in_3383_13 .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_3383_13 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3383_16 h1,#stacks_in_3383_16 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_16 h1,#stacks_in_3383_16 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_16 h1,#stacks_in_3383_16 div{line-height:1.20}}#stacks_in_3383_16 h1,#stacks_in_3383_16 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_16 h1 a,#stacks_in_3383_16 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_16 h1 a:hover,#stacks_in_3383_16 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_16 small,#stacks_in_3383_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_16 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_23 h6,#stacks_in_3383_23 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_23 h6 a,#stacks_in_3383_23 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_23 h6 a:hover,#stacks_in_3383_23 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_23 small,#stacks_in_3383_23 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_23 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3383_30 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3383_30 {
	position: relative;
}

#imageWizardstacks_in_3383_30 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3383_30 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3383_33 p,#stacks_in_3383_33 div{margin-bottom:0}#stacks_in_3383_33 p,#stacks_in_3383_33 div,#stacks_in_3383_33 ul,#stacks_in_3383_33 ol,#stacks_in_3383_33 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_33 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_33 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_33{}}





	#stacks_in_3383_36 .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_3383_36 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3383_39 h1,#stacks_in_3383_39 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_39 h1,#stacks_in_3383_39 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_39 h1,#stacks_in_3383_39 div{line-height:1.20}}#stacks_in_3383_39 h1,#stacks_in_3383_39 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_39 h1 a,#stacks_in_3383_39 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_39 h1 a:hover,#stacks_in_3383_39 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_39 small,#stacks_in_3383_39 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_39 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_46 h6,#stacks_in_3383_46 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_46 h6 a,#stacks_in_3383_46 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_46 h6 a:hover,#stacks_in_3383_46 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_46 small,#stacks_in_3383_46 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_46 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3383_53 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3383_53 {
	position: relative;
}

#imageWizardstacks_in_3383_53 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3383_53 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3383_56 p,#stacks_in_3383_56 div{margin-bottom:0}#stacks_in_3383_56 p,#stacks_in_3383_56 div,#stacks_in_3383_56 ul,#stacks_in_3383_56 ol,#stacks_in_3383_56 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_56 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_56 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_56{}}





	#stacks_in_3383_59 .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_3383_59 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3383_62 h1,#stacks_in_3383_62 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_62 h1,#stacks_in_3383_62 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_62 h1,#stacks_in_3383_62 div{line-height:1.20}}#stacks_in_3383_62 h1,#stacks_in_3383_62 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_62 h1 a,#stacks_in_3383_62 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_62 h1 a:hover,#stacks_in_3383_62 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_62 small,#stacks_in_3383_62 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_62 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_69 h6,#stacks_in_3383_69 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_69 h6 a,#stacks_in_3383_69 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_69 h6 a:hover,#stacks_in_3383_69 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_69 small,#stacks_in_3383_69 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_69 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3383_76 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3383_76 {
	position: relative;
}

#imageWizardstacks_in_3383_76 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3383_76 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3383_79 p,#stacks_in_3383_79 div{margin-bottom:0}#stacks_in_3383_79 p,#stacks_in_3383_79 div,#stacks_in_3383_79 ul,#stacks_in_3383_79 ol,#stacks_in_3383_79 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_79 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_79 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_79{}}





	#stacks_in_3383_82 .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_3383_82 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3383_85 h1,#stacks_in_3383_85 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_85 h1,#stacks_in_3383_85 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_85 h1,#stacks_in_3383_85 div{line-height:1.20}}#stacks_in_3383_85 h1,#stacks_in_3383_85 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_85 h1 a,#stacks_in_3383_85 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_85 h1 a:hover,#stacks_in_3383_85 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_85 small,#stacks_in_3383_85 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_85 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_92 h6,#stacks_in_3383_92 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_92 h6 a,#stacks_in_3383_92 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_92 h6 a:hover,#stacks_in_3383_92 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_92 small,#stacks_in_3383_92 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_92 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3383_99 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3383_99 {
	position: relative;
}

#imageWizardstacks_in_3383_99 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3383_99 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3383_102 p,#stacks_in_3383_102 div{margin-bottom:0}#stacks_in_3383_102 p,#stacks_in_3383_102 div,#stacks_in_3383_102 ul,#stacks_in_3383_102 ol,#stacks_in_3383_102 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_102 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_102 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_102{}}





	#stacks_in_3383_105 .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_3383_105 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3383_108 h1,#stacks_in_3383_108 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_108 h1,#stacks_in_3383_108 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_108 h1,#stacks_in_3383_108 div{line-height:1.20}}#stacks_in_3383_108 h1,#stacks_in_3383_108 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_108 h1 a,#stacks_in_3383_108 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_108 h1 a:hover,#stacks_in_3383_108 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_108 small,#stacks_in_3383_108 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_108 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_115 h6,#stacks_in_3383_115 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_115 h6 a,#stacks_in_3383_115 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_115 h6 a:hover,#stacks_in_3383_115 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_115 small,#stacks_in_3383_115 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_115 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3383_122 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3383_122 {
	position: relative;
}

#imageWizardstacks_in_3383_122 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3383_122 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3383_125 p,#stacks_in_3383_125 div{margin-bottom:0}#stacks_in_3383_125 p,#stacks_in_3383_125 div,#stacks_in_3383_125 ul,#stacks_in_3383_125 ol,#stacks_in_3383_125 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_125 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_125 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_125{}}





	#stacks_in_3383_128 .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_3383_128 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3383_131 h1,#stacks_in_3383_131 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_131 h1,#stacks_in_3383_131 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_131 h1,#stacks_in_3383_131 div{line-height:1.20}}#stacks_in_3383_131 h1,#stacks_in_3383_131 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_131 h1 a,#stacks_in_3383_131 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_131 h1 a:hover,#stacks_in_3383_131 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_131 small,#stacks_in_3383_131 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_131 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_138 h6,#stacks_in_3383_138 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_138 h6 a,#stacks_in_3383_138 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_138 h6 a:hover,#stacks_in_3383_138 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_138 small,#stacks_in_3383_138 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_138 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3383_145 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3383_145 {
	position: relative;
}

#imageWizardstacks_in_3383_145 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3383_145 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3383_148 p,#stacks_in_3383_148 div{margin-bottom:0}#stacks_in_3383_148 p,#stacks_in_3383_148 div,#stacks_in_3383_148 ul,#stacks_in_3383_148 ol,#stacks_in_3383_148 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_148 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_148 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_148{}}





	#stacks_in_3383_151 .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_3383_151 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3383_154 h1,#stacks_in_3383_154 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_154 h1,#stacks_in_3383_154 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_154 h1,#stacks_in_3383_154 div{line-height:1.20}}#stacks_in_3383_154 h1,#stacks_in_3383_154 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_154 h1 a,#stacks_in_3383_154 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_154 h1 a:hover,#stacks_in_3383_154 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_154 small,#stacks_in_3383_154 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_154 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_161 h6,#stacks_in_3383_161 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_161 h6 a,#stacks_in_3383_161 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_161 h6 a:hover,#stacks_in_3383_161 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_161 small,#stacks_in_3383_161 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_161 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3383_168 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3383_168 {
	position: relative;
}

#imageWizardstacks_in_3383_168 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3383_168 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3383_171 p,#stacks_in_3383_171 div{margin-bottom:0}#stacks_in_3383_171 p,#stacks_in_3383_171 div,#stacks_in_3383_171 ul,#stacks_in_3383_171 ol,#stacks_in_3383_171 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_171 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_171 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_171{}}





	#stacks_in_3383_174 .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_3383_174 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3383_177 h1,#stacks_in_3383_177 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_177 h1,#stacks_in_3383_177 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_177 h1,#stacks_in_3383_177 div{line-height:1.20}}#stacks_in_3383_177 h1,#stacks_in_3383_177 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_177 h1 a,#stacks_in_3383_177 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_177 h1 a:hover,#stacks_in_3383_177 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_177 small,#stacks_in_3383_177 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_177 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_184 h6,#stacks_in_3383_184 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_184 h6 a,#stacks_in_3383_184 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_184 h6 a:hover,#stacks_in_3383_184 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_184 small,#stacks_in_3383_184 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_184 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3383_191 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3383_191 {
	position: relative;
}

#imageWizardstacks_in_3383_191 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3383_191 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3383_194 p,#stacks_in_3383_194 div{margin-bottom:0}#stacks_in_3383_194 p,#stacks_in_3383_194 div,#stacks_in_3383_194 ul,#stacks_in_3383_194 ol,#stacks_in_3383_194 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_194 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_194 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_194{}}


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

.myID-bibgourmand-2015 {
	position: relative;
	
	
}






	
	#stacks_in_3383_197 .cpsl_myID-bibgourmand-2015 {
		padding: 0px;
	}
	




#stacks_in_3383_201 p,#stacks_in_3383_201 div{margin-bottom:0}#stacks_in_3383_201 p,#stacks_in_3383_201 div,#stacks_in_3383_201 ul,#stacks_in_3383_201 ol,#stacks_in_3383_201 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_201 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_201 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_201{}}

#stacks_in_3383_204 .trigger_myID-bibgourmand-2015 {
	cursor: pointer;
	display: inline-block;
	color: #515151;

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

	padding-left: 1px;
}

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

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

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

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



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

#stacks_in_3383_204 .trigger_label,
#stacks_in_3383_204 .trigger_label_open {
	font-size: 13px;
	color: #515151;
	margin-left: 4px;
	
	line-height: 20px;
	vertical-align: top;
	
}

#stacks_in_3383_204 .trigger_label_open {
	display: none;
}

#stacks_in_3383_204 {
	margin: 8px 0px 0px 0px;
}




	#stacks_in_3383_205 .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_3383_205 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3383_208 h1,#stacks_in_3383_208 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_208 h1,#stacks_in_3383_208 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_208 h1,#stacks_in_3383_208 div{line-height:1.20}}#stacks_in_3383_208 h1,#stacks_in_3383_208 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_208 h1 a,#stacks_in_3383_208 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_208 h1 a:hover,#stacks_in_3383_208 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_208 small,#stacks_in_3383_208 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_208 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_215 h6,#stacks_in_3383_215 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_215 h6 a,#stacks_in_3383_215 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_215 h6 a:hover,#stacks_in_3383_215 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_215 small,#stacks_in_3383_215 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_215 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3383_222 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3383_222 {
	position: relative;
}

#imageWizardstacks_in_3383_222 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3383_222 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3383_225 p,#stacks_in_3383_225 div{margin-bottom:0}#stacks_in_3383_225 p,#stacks_in_3383_225 div,#stacks_in_3383_225 ul,#stacks_in_3383_225 ol,#stacks_in_3383_225 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_225 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_225 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_225{}}





	#stacks_in_3383_228 .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_3383_228 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3383_231 h1,#stacks_in_3383_231 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_231 h1,#stacks_in_3383_231 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_231 h1,#stacks_in_3383_231 div{line-height:1.20}}#stacks_in_3383_231 h1,#stacks_in_3383_231 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_231 h1 a,#stacks_in_3383_231 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_231 h1 a:hover,#stacks_in_3383_231 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_231 small,#stacks_in_3383_231 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_231 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_238 h6,#stacks_in_3383_238 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_238 h6 a,#stacks_in_3383_238 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_238 h6 a:hover,#stacks_in_3383_238 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_238 small,#stacks_in_3383_238 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_238 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

 :root{--mejs-background:#000;--mejs-color:#fff;--mejs-controls:url('https://theduckinnchicago.com/rw_common/plugins/stacks/mejs-controls.svg')}.stacks_in_3383_245{overflow:hidden;width:100%;text-align:center;height:auto;}.stacks_in_3383_245 div:focus{outline:none}.stacks_in_3383_245 .html5video,.stacks_in_3383_245 img,.stacks_in_3383_245 video.html5video{outline:none;margin:0 auto;display:block;width:100% !important;height:auto;}.stacks_in_3383_245 button{box-shadow:none;border-width:0;border-style:none}.stacks_in_3383_245 .mejs__container .mejs__overlay-play,.stacks_in_3383_245 .mejs__container .mejs__overlay-loading{}.stacks_in_3383_245 .mejs__container .mejs__controls{}.stacks_in_3383_245 .mejs__container .mejs__controls .mejs__time-rail .mejs__time-total{}.stacks_in_3383_245 .mejs__container .mejs__controls .mejs__time-rail .mejs__time-total .mejs__time-loaded{}.stacks_in_3383_245 .mejs__container .mejs__controls .mejs__time-rail .mejs__time-total .mejs__time-current{} 

#stacks_in_3383_245 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3383_246 p,#stacks_in_3383_246 div{margin-bottom:0}#stacks_in_3383_246 p,#stacks_in_3383_246 div,#stacks_in_3383_246 ul,#stacks_in_3383_246 ol,#stacks_in_3383_246 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_246 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_246 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_246{}}





	#stacks_in_3383_249 .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_3383_249 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3383_252 h1,#stacks_in_3383_252 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_252 h1,#stacks_in_3383_252 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_252 h1,#stacks_in_3383_252 div{line-height:1.20}}#stacks_in_3383_252 h1,#stacks_in_3383_252 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_252 h1 a,#stacks_in_3383_252 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_252 h1 a:hover,#stacks_in_3383_252 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_252 small,#stacks_in_3383_252 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_252 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_259 h6,#stacks_in_3383_259 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_259 h6 a,#stacks_in_3383_259 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_259 h6 a:hover,#stacks_in_3383_259 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_259 small,#stacks_in_3383_259 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_259 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3383_266 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3383_266 {
	position: relative;
}

#imageWizardstacks_in_3383_266 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3383_266 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3383_269 p,#stacks_in_3383_269 div{margin-bottom:0}#stacks_in_3383_269 p,#stacks_in_3383_269 div,#stacks_in_3383_269 ul,#stacks_in_3383_269 ol,#stacks_in_3383_269 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_269 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_269 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_269{}}





	#stacks_in_3383_272 .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_3383_272 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3383_275 h1,#stacks_in_3383_275 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_275 h1,#stacks_in_3383_275 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_275 h1,#stacks_in_3383_275 div{line-height:1.20}}#stacks_in_3383_275 h1,#stacks_in_3383_275 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_275 h1 a,#stacks_in_3383_275 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_275 h1 a:hover,#stacks_in_3383_275 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_275 small,#stacks_in_3383_275 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_275 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_282 h6,#stacks_in_3383_282 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_282 h6 a,#stacks_in_3383_282 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_282 h6 a:hover,#stacks_in_3383_282 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_282 small,#stacks_in_3383_282 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_282 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3383_289 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3383_289 {
	position: relative;
}

#imageWizardstacks_in_3383_289 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3383_289 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3383_292 p,#stacks_in_3383_292 div{margin-bottom:0}#stacks_in_3383_292 p,#stacks_in_3383_292 div,#stacks_in_3383_292 ul,#stacks_in_3383_292 ol,#stacks_in_3383_292 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_292 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_292 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_292{}}





	#stacks_in_3383_295 .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_3383_295 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3383_298 h1,#stacks_in_3383_298 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_298 h1,#stacks_in_3383_298 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_298 h1,#stacks_in_3383_298 div{line-height:1.20}}#stacks_in_3383_298 h1,#stacks_in_3383_298 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_298 h1 a,#stacks_in_3383_298 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_298 h1 a:hover,#stacks_in_3383_298 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_298 small,#stacks_in_3383_298 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_298 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_305 h6,#stacks_in_3383_305 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_305 h6 a,#stacks_in_3383_305 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_305 h6 a:hover,#stacks_in_3383_305 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_305 small,#stacks_in_3383_305 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_305 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3383_312 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3383_312 {
	position: relative;
}

#imageWizardstacks_in_3383_312 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3383_312 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3383_315 p,#stacks_in_3383_315 div{margin-bottom:0}#stacks_in_3383_315 p,#stacks_in_3383_315 div,#stacks_in_3383_315 ul,#stacks_in_3383_315 ol,#stacks_in_3383_315 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_315 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_315 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_315{}}





	#stacks_in_3383_318 .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_3383_318 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3383_321 h1,#stacks_in_3383_321 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_321 h1,#stacks_in_3383_321 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_321 h1,#stacks_in_3383_321 div{line-height:1.20}}#stacks_in_3383_321 h1,#stacks_in_3383_321 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_321 h1 a,#stacks_in_3383_321 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_321 h1 a:hover,#stacks_in_3383_321 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_321 small,#stacks_in_3383_321 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_321 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_328 h6,#stacks_in_3383_328 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_328 h6 a,#stacks_in_3383_328 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_328 h6 a:hover,#stacks_in_3383_328 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_328 small,#stacks_in_3383_328 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_328 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3383_335 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3383_335 {
	position: relative;
}

#imageWizardstacks_in_3383_335 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3383_335 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3383_338 p,#stacks_in_3383_338 div{margin-bottom:0}#stacks_in_3383_338 p,#stacks_in_3383_338 div,#stacks_in_3383_338 ul,#stacks_in_3383_338 ol,#stacks_in_3383_338 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_338 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_338 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_338{}}





	#stacks_in_3383_341 .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_3383_341 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3383_344 h1,#stacks_in_3383_344 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_344 h1,#stacks_in_3383_344 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_344 h1,#stacks_in_3383_344 div{line-height:1.20}}#stacks_in_3383_344 h1,#stacks_in_3383_344 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_344 h1 a,#stacks_in_3383_344 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_344 h1 a:hover,#stacks_in_3383_344 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_344 small,#stacks_in_3383_344 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_344 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_351 h6,#stacks_in_3383_351 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_351 h6 a,#stacks_in_3383_351 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_351 h6 a:hover,#stacks_in_3383_351 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_351 small,#stacks_in_3383_351 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_351 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3383_358 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3383_358 {
	position: relative;
}

#imageWizardstacks_in_3383_358 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3383_358 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3383_361 p,#stacks_in_3383_361 div{margin-bottom:0}#stacks_in_3383_361 p,#stacks_in_3383_361 div,#stacks_in_3383_361 ul,#stacks_in_3383_361 ol,#stacks_in_3383_361 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_361 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_361 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_361{}}





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

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



#stacks_in_3383_367 h1,#stacks_in_3383_367 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_367 h1,#stacks_in_3383_367 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_367 h1,#stacks_in_3383_367 div{line-height:1.20}}#stacks_in_3383_367 h1,#stacks_in_3383_367 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_367 h1 a,#stacks_in_3383_367 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_367 h1 a:hover,#stacks_in_3383_367 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_367 small,#stacks_in_3383_367 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_367 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_374 h6,#stacks_in_3383_374 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_374 h6 a,#stacks_in_3383_374 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_374 h6 a:hover,#stacks_in_3383_374 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_374 small,#stacks_in_3383_374 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_374 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3383_381 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3383_381 {
	position: relative;
}

#imageWizardstacks_in_3383_381 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3383_381 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3383_384 p,#stacks_in_3383_384 div{margin-bottom:0}#stacks_in_3383_384 p,#stacks_in_3383_384 div,#stacks_in_3383_384 ul,#stacks_in_3383_384 ol,#stacks_in_3383_384 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_384 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_384 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_384{}}





	#stacks_in_3383_387 .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_3383_387 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3383_390 h1,#stacks_in_3383_390 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_390 h1,#stacks_in_3383_390 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_390 h1,#stacks_in_3383_390 div{line-height:1.20}}#stacks_in_3383_390 h1,#stacks_in_3383_390 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_390 h1 a,#stacks_in_3383_390 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_390 h1 a:hover,#stacks_in_3383_390 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_390 small,#stacks_in_3383_390 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_390 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_397 h6,#stacks_in_3383_397 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_397 h6 a,#stacks_in_3383_397 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_397 h6 a:hover,#stacks_in_3383_397 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_397 small,#stacks_in_3383_397 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_397 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3383_404 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3383_404 {
	position: relative;
}

#imageWizardstacks_in_3383_404 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3383_404 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3383_407 p,#stacks_in_3383_407 div{margin-bottom:0}#stacks_in_3383_407 p,#stacks_in_3383_407 div,#stacks_in_3383_407 ul,#stacks_in_3383_407 ol,#stacks_in_3383_407 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_407 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_407 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_407{}}





	#stacks_in_3383_410 .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_3383_410 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3383_413 h1,#stacks_in_3383_413 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_413 h1,#stacks_in_3383_413 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_413 h1,#stacks_in_3383_413 div{line-height:1.20}}#stacks_in_3383_413 h1,#stacks_in_3383_413 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_413 h1 a,#stacks_in_3383_413 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_413 h1 a:hover,#stacks_in_3383_413 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_413 small,#stacks_in_3383_413 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_413 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_420 h6,#stacks_in_3383_420 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_420 h6 a,#stacks_in_3383_420 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_420 h6 a:hover,#stacks_in_3383_420 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_420 small,#stacks_in_3383_420 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_420 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_3383_427 {
	margin: 14px 0px 12px 0px;
}
#stacks_in_3383_429 p,#stacks_in_3383_429 div{margin-bottom:0}#stacks_in_3383_429 p,#stacks_in_3383_429 div,#stacks_in_3383_429 ul,#stacks_in_3383_429 ol,#stacks_in_3383_429 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_429 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_429 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_429{}}





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

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



#stacks_in_3383_435 h1,#stacks_in_3383_435 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_435 h1,#stacks_in_3383_435 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_435 h1,#stacks_in_3383_435 div{line-height:1.20}}#stacks_in_3383_435 h1,#stacks_in_3383_435 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_435 h1 a,#stacks_in_3383_435 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_435 h1 a:hover,#stacks_in_3383_435 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_435 small,#stacks_in_3383_435 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_435 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_442 h6,#stacks_in_3383_442 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_442 h6 a,#stacks_in_3383_442 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_442 h6 a:hover,#stacks_in_3383_442 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_442 small,#stacks_in_3383_442 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_442 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3383_449 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3383_449 {
	position: relative;
}

#imageWizardstacks_in_3383_449 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3383_449 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3383_452 p,#stacks_in_3383_452 div{margin-bottom:0}#stacks_in_3383_452 p,#stacks_in_3383_452 div,#stacks_in_3383_452 ul,#stacks_in_3383_452 ol,#stacks_in_3383_452 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_452 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_452 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_452{}}





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

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



#stacks_in_3383_458 h1,#stacks_in_3383_458 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_458 h1,#stacks_in_3383_458 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_458 h1,#stacks_in_3383_458 div{line-height:1.20}}#stacks_in_3383_458 h1,#stacks_in_3383_458 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_458 h1 a,#stacks_in_3383_458 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_458 h1 a:hover,#stacks_in_3383_458 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_458 small,#stacks_in_3383_458 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_458 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_465 h6,#stacks_in_3383_465 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_465 h6 a,#stacks_in_3383_465 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_465 h6 a:hover,#stacks_in_3383_465 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_465 small,#stacks_in_3383_465 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_465 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3383_472 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3383_472 {
	position: relative;
}

#imageWizardstacks_in_3383_472 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3383_472 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3383_475 p,#stacks_in_3383_475 div{margin-bottom:0}#stacks_in_3383_475 p,#stacks_in_3383_475 div,#stacks_in_3383_475 ul,#stacks_in_3383_475 ol,#stacks_in_3383_475 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_475 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_475 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_475{}}


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

.myID-tribreview-2015 {
	position: relative;
	
	
}






	
	#stacks_in_3383_478 .cpsl_myID-tribreview-2015 {
		padding: 0px;
	}
	




#stacks_in_3383_482 p,#stacks_in_3383_482 div{margin-bottom:0}#stacks_in_3383_482 p,#stacks_in_3383_482 div,#stacks_in_3383_482 ul,#stacks_in_3383_482 ol,#stacks_in_3383_482 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_482 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_482 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_482{}}

#stacks_in_3383_485 .trigger_myID-tribreview-2015 {
	cursor: pointer;
	display: inline-block;
	color: #515151;

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

	padding-left: 1px;
}

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

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

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

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



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

#stacks_in_3383_485 .trigger_label,
#stacks_in_3383_485 .trigger_label_open {
	font-size: 13px;
	color: #515151;
	margin-left: 4px;
	
	line-height: 20px;
	vertical-align: top;
	
}

#stacks_in_3383_485 .trigger_label_open {
	display: none;
}

#stacks_in_3383_485 {
	margin: 8px 0px 0px 0px;
}




	#stacks_in_3383_486 .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_3383_486 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3383_489 h1,#stacks_in_3383_489 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_489 h1,#stacks_in_3383_489 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_489 h1,#stacks_in_3383_489 div{line-height:1.20}}#stacks_in_3383_489 h1,#stacks_in_3383_489 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_489 h1 a,#stacks_in_3383_489 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_489 h1 a:hover,#stacks_in_3383_489 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_489 small,#stacks_in_3383_489 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_489 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_496 h6,#stacks_in_3383_496 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_496 h6 a,#stacks_in_3383_496 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_496 h6 a:hover,#stacks_in_3383_496 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_496 small,#stacks_in_3383_496 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_496 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3383_503 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3383_503 {
	position: relative;
}

#imageWizardstacks_in_3383_503 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3383_503 {
	margin: 14px 0px 26px 0px;
}
@media only screen and (min-width:0px){#stacks_in_3383_506 h2,#stacks_in_3383_506 div{line-height:1.20}}#stacks_in_3383_506 h2,#stacks_in_3383_506 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_506 h2 a,#stacks_in_3383_506 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_506 h2 a:hover,#stacks_in_3383_506 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_506 small,#stacks_in_3383_506 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_506 h2.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_513 p,#stacks_in_3383_513 div{margin-bottom:0}#stacks_in_3383_513 p,#stacks_in_3383_513 div,#stacks_in_3383_513 ul,#stacks_in_3383_513 ol,#stacks_in_3383_513 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_513 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_513 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_513{}}





	#stacks_in_3383_516 .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_3383_516 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3383_519 h1,#stacks_in_3383_519 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_519 h1,#stacks_in_3383_519 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_519 h1,#stacks_in_3383_519 div{line-height:1.20}}#stacks_in_3383_519 h1,#stacks_in_3383_519 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_519 h1 a,#stacks_in_3383_519 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_519 h1 a:hover,#stacks_in_3383_519 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_519 small,#stacks_in_3383_519 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_519 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_526 h6,#stacks_in_3383_526 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_526 h6 a,#stacks_in_3383_526 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_526 h6 a:hover,#stacks_in_3383_526 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_526 small,#stacks_in_3383_526 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_526 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3383_533 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3383_533 {
	position: relative;
}

#imageWizardstacks_in_3383_533 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3383_533 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3383_536 p,#stacks_in_3383_536 div{margin-bottom:0}#stacks_in_3383_536 p,#stacks_in_3383_536 div,#stacks_in_3383_536 ul,#stacks_in_3383_536 ol,#stacks_in_3383_536 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_536 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_536 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_536{}}





	#stacks_in_3383_539 .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_3383_539 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3383_542 h1,#stacks_in_3383_542 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_542 h1,#stacks_in_3383_542 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_542 h1,#stacks_in_3383_542 div{line-height:1.20}}#stacks_in_3383_542 h1,#stacks_in_3383_542 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_542 h1 a,#stacks_in_3383_542 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_542 h1 a:hover,#stacks_in_3383_542 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_542 small,#stacks_in_3383_542 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_542 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_549 h6,#stacks_in_3383_549 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_549 h6 a,#stacks_in_3383_549 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_549 h6 a:hover,#stacks_in_3383_549 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_549 small,#stacks_in_3383_549 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_549 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3383_556 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3383_556 {
	position: relative;
}

#imageWizardstacks_in_3383_556 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3383_556 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3383_559 p,#stacks_in_3383_559 div{margin-bottom:0}#stacks_in_3383_559 p,#stacks_in_3383_559 div,#stacks_in_3383_559 ul,#stacks_in_3383_559 ol,#stacks_in_3383_559 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_559 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_559 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_559{}}





	#stacks_in_3383_562 .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_3383_562 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3383_565 h1,#stacks_in_3383_565 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_565 h1,#stacks_in_3383_565 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_565 h1,#stacks_in_3383_565 div{line-height:1.20}}#stacks_in_3383_565 h1,#stacks_in_3383_565 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_565 h1 a,#stacks_in_3383_565 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_565 h1 a:hover,#stacks_in_3383_565 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_565 small,#stacks_in_3383_565 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_565 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_572 h6,#stacks_in_3383_572 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_572 h6 a,#stacks_in_3383_572 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_572 h6 a:hover,#stacks_in_3383_572 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_572 small,#stacks_in_3383_572 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_572 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3383_579 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3383_579 {
	position: relative;
}

#imageWizardstacks_in_3383_579 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3383_579 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3383_582 p,#stacks_in_3383_582 div{margin-bottom:0}#stacks_in_3383_582 p,#stacks_in_3383_582 div,#stacks_in_3383_582 ul,#stacks_in_3383_582 ol,#stacks_in_3383_582 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_582 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_582 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_582{}}


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

.myID-tribreview-2015 {
	position: relative;
	
	
}






	
	#stacks_in_3383_585 .cpsl_myID-tribreview-2015 {
		padding: 0px;
	}
	




#stacks_in_3383_589 p,#stacks_in_3383_589 div{margin-bottom:0}#stacks_in_3383_589 p,#stacks_in_3383_589 div,#stacks_in_3383_589 ul,#stacks_in_3383_589 ol,#stacks_in_3383_589 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_589 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_589 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_589{}}

#stacks_in_3383_592 .trigger_myID-tribreview-2015 {
	cursor: pointer;
	display: inline-block;
	color: #515151;

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

	padding-left: 1px;
}

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

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

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

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



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

#stacks_in_3383_592 .trigger_label,
#stacks_in_3383_592 .trigger_label_open {
	font-size: 13px;
	color: #515151;
	margin-left: 4px;
	
	line-height: 20px;
	vertical-align: top;
	
}

#stacks_in_3383_592 .trigger_label_open {
	display: none;
}

#stacks_in_3383_592 {
	margin: 8px 0px 0px 0px;
}




	#stacks_in_3383_593 .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_3383_593 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3383_596 h1,#stacks_in_3383_596 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3383_596 h1,#stacks_in_3383_596 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3383_596 h1,#stacks_in_3383_596 div{line-height:1.20}}#stacks_in_3383_596 h1,#stacks_in_3383_596 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_596 h1 a,#stacks_in_3383_596 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_596 h1 a:hover,#stacks_in_3383_596 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3383_596 small,#stacks_in_3383_596 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_596 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3383_603 h6,#stacks_in_3383_603 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_603 h6 a,#stacks_in_3383_603 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_603 h6 a:hover,#stacks_in_3383_603 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3383_603 small,#stacks_in_3383_603 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3383_603 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3383_610 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3383_610 {
	position: relative;
}

#imageWizardstacks_in_3383_610 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3383_610 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3383_613 p,#stacks_in_3383_613 div{margin-bottom:0}#stacks_in_3383_613 p,#stacks_in_3383_613 div,#stacks_in_3383_613 ul,#stacks_in_3383_613 ol,#stacks_in_3383_613 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_613 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_613 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_613{}}


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

.myID-huffpost-2015 {
	position: relative;
	
	
}






	
	#stacks_in_3383_616 .cpsl_myID-huffpost-2015 {
		padding: 0px;
	}
	




#stacks_in_3383_620 p,#stacks_in_3383_620 div{margin-bottom:0}#stacks_in_3383_620 p,#stacks_in_3383_620 div,#stacks_in_3383_620 ul,#stacks_in_3383_620 ol,#stacks_in_3383_620 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3383_620 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3383_620 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3383_620{}}

#uTubestacks_in_3383_623 {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

#uTubestacks_in_3383_623 a,
#uTubestacks_in_3383_623 a:hover,
#uTubestacks_in_3383_623 a:active,
#uTubestacks_in_3383_623 a:focus {
	text-decoration: none;
	outline: none;
}

#uTubestacks_in_3383_623 iframe,
#uTubestacks_in_3383_623 object,
#uTubestacks_in_3383_623 embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	border: none;
	outline: none;
}

#uTubestacks_in_3383_623 .uTubeLocalImage,
#uTubestacks_in_3383_623 .uTubeWarehousedImage {
	display: none;
}

#uTubestacks_in_3383_623 .uTubeLocalImage img,
#uTubestacks_in_3383_623 .uTubeWarehousedImage img {
	max-width: none;
	width: 100%;
	height: auto;
}

@media print {
	#uTubestacks_in_3383_623 {
		display: none;
	}
}

/*  */

/* @group Mobile Behavior */

/*  */

/*  */

/*  */

/* @end */

/* @group Edit Mode Styling */

/*  */


/* @end */



#stacks_in_3383_623 {
	margin: 22px 0px 0px 0px;
}
#uTubestacks_in_3383_625 {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

#uTubestacks_in_3383_625 a,
#uTubestacks_in_3383_625 a:hover,
#uTubestacks_in_3383_625 a:active,
#uTubestacks_in_3383_625 a:focus {
	text-decoration: none;
	outline: none;
}

#uTubestacks_in_3383_625 iframe,
#uTubestacks_in_3383_625 object,
#uTubestacks_in_3383_625 embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	border: none;
	outline: none;
}

#uTubestacks_in_3383_625 .uTubeLocalImage,
#uTubestacks_in_3383_625 .uTubeWarehousedImage {
	display: none;
}

#uTubestacks_in_3383_625 .uTubeLocalImage img,
#uTubestacks_in_3383_625 .uTubeWarehousedImage img {
	max-width: none;
	width: 100%;
	height: auto;
}

@media print {
	#uTubestacks_in_3383_625 {
		display: none;
	}
}

/*  */

/* @group Mobile Behavior */

/*  */

/*  */

/*  */

/* @end */

/* @group Edit Mode Styling */

/*  */


/* @end */



#stacks_in_3383_625 {
	margin: 32px 0px 24px 0px;
}
#stacks_in_3383_627 .trigger_myID-huffpost-2015 {
	cursor: pointer;
	display: inline-block;
	color: #515151;

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

	padding-left: 1px;
}

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

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

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

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



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

#stacks_in_3383_627 .trigger_label,
#stacks_in_3383_627 .trigger_label_open {
	font-size: 13px;
	color: #515151;
	margin-left: 4px;
	
	line-height: 20px;
	vertical-align: top;
	
}

#stacks_in_3383_627 .trigger_label_open {
	display: none;
}

#stacks_in_3383_627 {
	margin: 8px 0px 0px 0px;
}

@media only screen and (min-width:0px){#stacks_in_3382_4 h1,#stacks_in_3382_4 div{line-height:1.20}}#stacks_in_3382_4 h1,#stacks_in_3382_4 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_4 h1 a,#stacks_in_3382_4 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_4 h1 a:hover,#stacks_in_3382_4 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3382_4 small,#stacks_in_3382_4 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3382_4 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_3382_4 {
	padding: 0px 0px 6px 0px;
}
#stacks_in_3382_11 *, #stacks_in_3382_11 *:after, #stacks_in_3382_11 *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; }

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

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

#stacks_in_3382_11  {
}

#stacks_in_3382_11 .timeline_item {
	position: relative;
}

#stacks_in_3382_11 ul.cbp_tmtimeline {
	margin: 0;
}

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

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

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

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

#stacks_in_3382_11 .cbp_tmtimeline li {
	margin: 0;
}

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

		
			background: #262626;
		

	

	
		left: 20%;
	
	
	
	
	
	

	margin-left: -10px;
}

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

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

#stacks_in_3382_11 .cbp_tmtimeline li .cbp_tmtime span.small_label {
	font-size: 16px;
	line-height: 1.2;
	white-space: normal;
	
		color: #BDBDBD;
	
}

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

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

#stacks_in_3382_11 .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_3382_11 .timeline_content {
	margin-top: 20px;
}


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


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

	
		left: 20%;
	
	
	
	
	
	

	margin: 0 0 0 -25px;

	
}

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



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

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

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

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

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

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

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


	

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

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

	


}








	#stacks_in_3382_13 .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_3382_13 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3382_16 h1,#stacks_in_3382_16 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3382_16 h1,#stacks_in_3382_16 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3382_16 h1,#stacks_in_3382_16 div{line-height:1.20}}#stacks_in_3382_16 h1,#stacks_in_3382_16 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_16 h1 a,#stacks_in_3382_16 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_16 h1 a:hover,#stacks_in_3382_16 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3382_16 small,#stacks_in_3382_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3382_16 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3382_23 h6,#stacks_in_3382_23 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_23 h6 a,#stacks_in_3382_23 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_23 h6 a:hover,#stacks_in_3382_23 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3382_23 small,#stacks_in_3382_23 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3382_23 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3382_30 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3382_30 {
	position: relative;
}

#imageWizardstacks_in_3382_30 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3382_30 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3382_33 p,#stacks_in_3382_33 div{margin-bottom:0}#stacks_in_3382_33 p,#stacks_in_3382_33 div,#stacks_in_3382_33 ul,#stacks_in_3382_33 ol,#stacks_in_3382_33 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_33 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_33 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3382_33{}}


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

.myID-huffpost-2015 {
	position: relative;
	
	
}






	
	#stacks_in_3382_36 .cpsl_myID-huffpost-2015 {
		padding: 0px;
	}
	




#stacks_in_3382_40 p,#stacks_in_3382_40 div{margin-bottom:0}#stacks_in_3382_40 p,#stacks_in_3382_40 div,#stacks_in_3382_40 ul,#stacks_in_3382_40 ol,#stacks_in_3382_40 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_40 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_40 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3382_40{}}

#uTubestacks_in_3382_43 {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

#uTubestacks_in_3382_43 a,
#uTubestacks_in_3382_43 a:hover,
#uTubestacks_in_3382_43 a:active,
#uTubestacks_in_3382_43 a:focus {
	text-decoration: none;
	outline: none;
}

#uTubestacks_in_3382_43 iframe,
#uTubestacks_in_3382_43 object,
#uTubestacks_in_3382_43 embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	border: none;
	outline: none;
}

#uTubestacks_in_3382_43 .uTubeLocalImage,
#uTubestacks_in_3382_43 .uTubeWarehousedImage {
	display: none;
}

#uTubestacks_in_3382_43 .uTubeLocalImage img,
#uTubestacks_in_3382_43 .uTubeWarehousedImage img {
	max-width: none;
	width: 100%;
	height: auto;
}

@media print {
	#uTubestacks_in_3382_43 {
		display: none;
	}
}

/*  */

/* @group Mobile Behavior */

/*  */

/*  */

/*  */

/* @end */

/* @group Edit Mode Styling */

/*  */


/* @end */



#stacks_in_3382_43 {
	margin: 22px 0px 0px 0px;
}
#uTubestacks_in_3382_45 {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

#uTubestacks_in_3382_45 a,
#uTubestacks_in_3382_45 a:hover,
#uTubestacks_in_3382_45 a:active,
#uTubestacks_in_3382_45 a:focus {
	text-decoration: none;
	outline: none;
}

#uTubestacks_in_3382_45 iframe,
#uTubestacks_in_3382_45 object,
#uTubestacks_in_3382_45 embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	border: none;
	outline: none;
}

#uTubestacks_in_3382_45 .uTubeLocalImage,
#uTubestacks_in_3382_45 .uTubeWarehousedImage {
	display: none;
}

#uTubestacks_in_3382_45 .uTubeLocalImage img,
#uTubestacks_in_3382_45 .uTubeWarehousedImage img {
	max-width: none;
	width: 100%;
	height: auto;
}

@media print {
	#uTubestacks_in_3382_45 {
		display: none;
	}
}

/*  */

/* @group Mobile Behavior */

/*  */

/*  */

/*  */

/* @end */

/* @group Edit Mode Styling */

/*  */


/* @end */



#stacks_in_3382_45 {
	margin: 32px 0px 24px 0px;
}
#stacks_in_3382_47 .trigger_myID-huffpost-2015 {
	cursor: pointer;
	display: inline-block;
	color: #515151;

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

	padding-left: 1px;
}

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

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

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

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



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

#stacks_in_3382_47 .trigger_label,
#stacks_in_3382_47 .trigger_label_open {
	font-size: 13px;
	color: #515151;
	margin-left: 4px;
	
	line-height: 20px;
	vertical-align: top;
	
}

#stacks_in_3382_47 .trigger_label_open {
	display: none;
}

#stacks_in_3382_47 {
	margin: 8px 0px 0px 0px;
}




	#stacks_in_3382_48 .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_3382_48 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3382_51 h1,#stacks_in_3382_51 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3382_51 h1,#stacks_in_3382_51 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3382_51 h1,#stacks_in_3382_51 div{line-height:1.20}}#stacks_in_3382_51 h1,#stacks_in_3382_51 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_51 h1 a,#stacks_in_3382_51 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_51 h1 a:hover,#stacks_in_3382_51 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3382_51 small,#stacks_in_3382_51 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3382_51 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3382_58 h6,#stacks_in_3382_58 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_58 h6 a,#stacks_in_3382_58 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_58 h6 a:hover,#stacks_in_3382_58 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3382_58 small,#stacks_in_3382_58 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3382_58 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3382_65 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3382_65 {
	position: relative;
}

#imageWizardstacks_in_3382_65 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3382_65 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3382_68 p,#stacks_in_3382_68 div{margin-bottom:0}#stacks_in_3382_68 p,#stacks_in_3382_68 div,#stacks_in_3382_68 ul,#stacks_in_3382_68 ol,#stacks_in_3382_68 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_68 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_68 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3382_68{}}


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

.myID-roots-2014 {
	position: relative;
	
	
}






	
	#stacks_in_3382_71 .cpsl_myID-roots-2014 {
		padding: 0px;
	}
	




#stacks_in_3382_75 p,#stacks_in_3382_75 div{margin-bottom:0}#stacks_in_3382_75 p,#stacks_in_3382_75 div,#stacks_in_3382_75 ul,#stacks_in_3382_75 ol,#stacks_in_3382_75 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_75 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_75 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3382_75{}}

#stacks_in_3382_78 .trigger_myID-roots-2014 {
	cursor: pointer;
	display: inline-block;
	color: #515151;

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

	padding-left: 1px;
}

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

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

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

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



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

#stacks_in_3382_78 .trigger_label,
#stacks_in_3382_78 .trigger_label_open {
	font-size: 13px;
	color: #515151;
	margin-left: 4px;
	
	line-height: 20px;
	vertical-align: top;
	
}

#stacks_in_3382_78 .trigger_label_open {
	display: none;
}

#stacks_in_3382_78 {
	margin: 8px 0px 0px 0px;
}




	#stacks_in_3382_79 .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_3382_79 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3382_82 h1,#stacks_in_3382_82 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3382_82 h1,#stacks_in_3382_82 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3382_82 h1,#stacks_in_3382_82 div{line-height:1.20}}#stacks_in_3382_82 h1,#stacks_in_3382_82 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_82 h1 a,#stacks_in_3382_82 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_82 h1 a:hover,#stacks_in_3382_82 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3382_82 small,#stacks_in_3382_82 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3382_82 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3382_89 h6,#stacks_in_3382_89 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_89 h6 a,#stacks_in_3382_89 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_89 h6 a:hover,#stacks_in_3382_89 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3382_89 small,#stacks_in_3382_89 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3382_89 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3382_96 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3382_96 {
	position: relative;
}

#imageWizardstacks_in_3382_96 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3382_96 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3382_99 p,#stacks_in_3382_99 div{margin-bottom:0}#stacks_in_3382_99 p,#stacks_in_3382_99 div,#stacks_in_3382_99 ul,#stacks_in_3382_99 ol,#stacks_in_3382_99 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_99 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_99 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3382_99{}}





	#stacks_in_3382_102 .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_3382_102 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3382_105 h1,#stacks_in_3382_105 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3382_105 h1,#stacks_in_3382_105 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3382_105 h1,#stacks_in_3382_105 div{line-height:1.20}}#stacks_in_3382_105 h1,#stacks_in_3382_105 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_105 h1 a,#stacks_in_3382_105 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_105 h1 a:hover,#stacks_in_3382_105 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3382_105 small,#stacks_in_3382_105 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3382_105 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3382_112 h6,#stacks_in_3382_112 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_112 h6 a,#stacks_in_3382_112 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_112 h6 a:hover,#stacks_in_3382_112 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3382_112 small,#stacks_in_3382_112 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3382_112 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3382_119 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3382_119 {
	position: relative;
}

#imageWizardstacks_in_3382_119 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3382_119 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3382_122 p,#stacks_in_3382_122 div{margin-bottom:0}#stacks_in_3382_122 p,#stacks_in_3382_122 div,#stacks_in_3382_122 ul,#stacks_in_3382_122 ol,#stacks_in_3382_122 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_122 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_122 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3382_122{}}





	#stacks_in_3382_125 .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_3382_125 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3382_128 h1,#stacks_in_3382_128 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3382_128 h1,#stacks_in_3382_128 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3382_128 h1,#stacks_in_3382_128 div{line-height:1.20}}#stacks_in_3382_128 h1,#stacks_in_3382_128 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_128 h1 a,#stacks_in_3382_128 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_128 h1 a:hover,#stacks_in_3382_128 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3382_128 small,#stacks_in_3382_128 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3382_128 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3382_135 h6,#stacks_in_3382_135 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_135 h6 a,#stacks_in_3382_135 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_135 h6 a:hover,#stacks_in_3382_135 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3382_135 small,#stacks_in_3382_135 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3382_135 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3382_142 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3382_142 {
	position: relative;
}

#imageWizardstacks_in_3382_142 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3382_142 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3382_145 p,#stacks_in_3382_145 div{margin-bottom:0}#stacks_in_3382_145 p,#stacks_in_3382_145 div,#stacks_in_3382_145 ul,#stacks_in_3382_145 ol,#stacks_in_3382_145 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_145 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_145 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3382_145{}}


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

.myID-ready-2014 {
	position: relative;
	
	
}






	
	#stacks_in_3382_148 .cpsl_myID-ready-2014 {
		padding: 0px;
	}
	




#stacks_in_3382_152 p,#stacks_in_3382_152 div{margin-bottom:0}#stacks_in_3382_152 p,#stacks_in_3382_152 div,#stacks_in_3382_152 ul,#stacks_in_3382_152 ol,#stacks_in_3382_152 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_152 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_152 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3382_152{}}

#stacks_in_3382_155 .trigger_myID-ready-2014 {
	cursor: pointer;
	display: inline-block;
	color: #515151;

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

	padding-left: 1px;
}

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

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

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

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



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

#stacks_in_3382_155 .trigger_label,
#stacks_in_3382_155 .trigger_label_open {
	font-size: 13px;
	color: #515151;
	margin-left: 4px;
	
	line-height: 20px;
	vertical-align: top;
	
}

#stacks_in_3382_155 .trigger_label_open {
	display: none;
}

#stacks_in_3382_155 {
	margin: 8px 0px 0px 0px;
}




	#stacks_in_3382_156 .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_3382_156 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3382_159 h1,#stacks_in_3382_159 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3382_159 h1,#stacks_in_3382_159 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3382_159 h1,#stacks_in_3382_159 div{line-height:1.20}}#stacks_in_3382_159 h1,#stacks_in_3382_159 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_159 h1 a,#stacks_in_3382_159 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_159 h1 a:hover,#stacks_in_3382_159 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3382_159 small,#stacks_in_3382_159 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3382_159 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3382_166 h6,#stacks_in_3382_166 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_166 h6 a,#stacks_in_3382_166 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_166 h6 a:hover,#stacks_in_3382_166 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3382_166 small,#stacks_in_3382_166 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3382_166 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3382_173 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3382_173 {
	position: relative;
}

#imageWizardstacks_in_3382_173 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3382_173 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3382_176 p,#stacks_in_3382_176 div{margin-bottom:0}#stacks_in_3382_176 p,#stacks_in_3382_176 div,#stacks_in_3382_176 ul,#stacks_in_3382_176 ol,#stacks_in_3382_176 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_176 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_176 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3382_176{}}


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

.myID-homecoming-2014 {
	position: relative;
	
	
}






	
	#stacks_in_3382_179 .cpsl_myID-homecoming-2014 {
		padding: 0px;
	}
	




#stacks_in_3382_183 p,#stacks_in_3382_183 div{margin-bottom:0}#stacks_in_3382_183 p,#stacks_in_3382_183 div,#stacks_in_3382_183 ul,#stacks_in_3382_183 ol,#stacks_in_3382_183 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_183 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_183 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3382_183{}}

#stacks_in_3382_186 .trigger_myID-homecoming-2014 {
	cursor: pointer;
	display: inline-block;
	color: #515151;

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

	padding-left: 1px;
}

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

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

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

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



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

#stacks_in_3382_186 .trigger_label,
#stacks_in_3382_186 .trigger_label_open {
	font-size: 13px;
	color: #515151;
	margin-left: 4px;
	
	line-height: 20px;
	vertical-align: top;
	
}

#stacks_in_3382_186 .trigger_label_open {
	display: none;
}

#stacks_in_3382_186 {
	margin: 8px 0px 0px 0px;
}




	#stacks_in_3382_187 .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_3382_187 .timeline_content {
		margin-top: 0px;
	}



#stacks_in_3382_190 h1,#stacks_in_3382_190 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_3382_190 h1,#stacks_in_3382_190 .hTxt:not(.segment) div{font-size:1.40rem}}@media only screen and (min-width:0px){#stacks_in_3382_190 h1,#stacks_in_3382_190 div{line-height:1.20}}#stacks_in_3382_190 h1,#stacks_in_3382_190 div{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_190 h1 a,#stacks_in_3382_190 div a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_190 h1 a:hover,#stacks_in_3382_190 div a:hover{color:rgba(21, 116, 117, 1.00)}#stacks_in_3382_190 small,#stacks_in_3382_190 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3382_190 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

#stacks_in_3382_197 h6,#stacks_in_3382_197 div{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_197 h6 a,#stacks_in_3382_197 div a{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_197 h6 a:hover,#stacks_in_3382_197 div a:hover{color:rgba(177, 168, 153, 1.00)}#stacks_in_3382_197 small,#stacks_in_3382_197 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3382_197 h6.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}

/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_3382_204 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_3382_204 {
	position: relative;
}

#imageWizardstacks_in_3382_204 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_3382_204 {
	margin: 14px 0px 26px 0px;
}
#stacks_in_3382_207 p,#stacks_in_3382_207 div{margin-bottom:0}#stacks_in_3382_207 p,#stacks_in_3382_207 div,#stacks_in_3382_207 ul,#stacks_in_3382_207 ol,#stacks_in_3382_207 dl{color:rgba(236, 225, 205, 1.00)}#stacks_in_3382_207 a{color:rgba(28, 155, 157, 1.00)}#stacks_in_3382_207 a:hover{color:rgba(235, 91, 37, 1.00)}@media only screen and (min-width:0px){#stacks_in_3382_207{}}

#toTop{--elevator-image:url(../../rw_common/plugins/stacks/elevator-images/top.png);--elevator-size:50px;display:none;text-decoration:none;position:fixed;bottom:10px;right:10px;overflow:hidden;width:var(--elevator-size);height:var(--elevator-size);border:none;text-indent:-9999px;background-image:var(--elevator-image);background-repeat:no-repeat;background-position:left top;z-index:9988}#toTop:active,#toTop:focus{outline:none}#toTop:hover{background-position:left calc(var(--elevator-size) * -1)}

.spacerStack {
	height: 50.00px!important;
}

#spacerStackstacks_in_558 {
	height: 50.00px;
}




























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