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

@-webkit-keyframes animatedJackBackgroundtoTop{from{background-position:0 0}to{background-position:0 -500%}}@-moz-keyframes animatedJackBackgroundtoTop{from{background-position:0 0}to{background-position:0 -500%}}@keyframes animatedJackBackgroundtoTop{from{background-position:0 0}to{background-position:0 -500%}}@-webkit-keyframes animatedJackBackgroundtoBottom{from{background-position:0 0}to{background-position:0 500%}}@-moz-keyframes animatedJackBackgroundtoBottom{from{background-position:0 0}to{background-position:0 500%}}@keyframes animatedJackBackgroundtoBottom{from{background-position:0 0}to{background-position:0 500%}}@-webkit-keyframes animatedJackBackgroundtoRight{from{background-position:0 0}to{background-position:500% 0}}@-moz-keyframes animatedJackBackgroundtoRight{from{background-position:0 0}to{background-position:500% 0}}@keyframes animatedJackBackgroundtoRight{from{background-position:0 0}to{background-position:500% 0}}@-webkit-keyframes animatedJackBackgroundtoLeft{from{background-position:0 0}to{background-position:-500% 0}}@-moz-keyframes animatedJackBackgroundtoLeft{from{background-position:0 0}to{background-position:-500% 0}}@keyframes animatedJackBackgroundtoLeft{from{background-position:0 0}to{background-position:-500% 0}}@-webkit-keyframes animatedJackBackgroundtoBottomRight{from{background-position:0 0}to{background-position:500% 500%}}@-moz-keyframes animatedJackBackgroundtoBottomRight{from{background-position:0 0}to{background-position:500% 500%}}@keyframes animatedJackBackgroundtoBottomRight{from{background-position:0 0}to{background-position:500% 500%}}@-webkit-keyframes animatedJackBackgroundtoTopRight{from{background-position:0 0}to{background-position:500% -500%}}@-moz-keyframes animatedJackBackgroundtoTopRight{from{background-position:0 0}to{background-position:500% -500%}}@keyframes animatedJackBackgroundtoTopRight{from{background-position:0 0}to{background-position:500% -500%}}@-webkit-keyframes animatedJackBackgroundtoTopLeft{from{background-position:0 0}to{background-position:-500% -500%}}@-moz-keyframes animatedJackBackgroundtoTopLeft{from{background-position:0 0}to{background-position:-500% -500%}}@keyframes animatedJackBackgroundtoTopLeft{from{background-position:0 0}to{background-position:-500% -500%}}@-webkit-keyframes animatedJackBackgroundtoBottomLeft{from{background-position:0 0}to{background-position:-500% 500%}}@-moz-keyframes animatedJackBackgroundtoBottomLeft{from{background-position:0 0}to{background-position:-500% 500%}}@keyframes animatedJackBackgroundtoBottomLeft{from{background-position:0 0}to{background-position:-500% 500%}}.com_joeworkman_stacks_jack4_stack>.jack{margin:0;padding:0;border:0;background:0;background-color:transparent;position:relative;display:block;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.com_joeworkman_stacks_jack4_stack>.jack.align-center{margin-left:auto!important;margin-right:auto!important}.com_joeworkman_stacks_jack4_stack>.jack.align-right{margin-left:auto!important}.com_joeworkman_stacks_jack4_stack>.jack.align-left{margin-right:auto!important}.com_joeworkman_stacks_jack4_stack>.jack.touch-device{background-attachment:scroll!important}.com_joeworkman_stacks_jack4_stack>.jack.bg-image{background-size:auto}.com_joeworkman_stacks_jack4_stack>.jack.bg-image.glass{z-index:1}.com_joeworkman_stacks_jack4_stack>.jack.bg-image.glass::after{background-size:auto;content:"";top:0;left:0;bottom:0;right:0;height:100%;position:absolute;z-index:-1}.com_joeworkman_stacks_jack4_stack>.jack.bg-image.bg-size-cover,.com_joeworkman_stacks_jack4_stack>.jack.bg-image.bg-size-cover.glass::after{background-size:cover}.com_joeworkman_stacks_jack4_stack>.jack.bg-image.bg-size-contain,.com_joeworkman_stacks_jack4_stack>.jack.bg-image.bg-size-contain.glass::after{background-size:contain}.com_joeworkman_stacks_jack4_stack>.jack.bg-image.bg-size-fill,.com_joeworkman_stacks_jack4_stack>.jack.bg-image.bg-size-fill.glass::after{background-size:100% 100%}.com_joeworkman_stacks_jack4_stack>.jack.corner-shadow::before,.com_joeworkman_stacks_jack4_stack>.jack.corner-shadow::after,.com_joeworkman_stacks_jack4_stack>.jack.peek-shadow::before,.com_joeworkman_stacks_jack4_stack>.jack.peek-shadow::after{z-index:-1;position:absolute;content:"";height:auto;background-color:transparent}.com_joeworkman_stacks_jack4_stack>.jack.corner-shadow::before,.com_joeworkman_stacks_jack4_stack>.jack.corner-shadow::after{width:50%;top:50%} .com_joeworkman_stacks_jack4_stack>.jack.scroll-x{overflow-x:auto!important;white-space:nowrap;-webkit-overflow-scrolling:touch}.com_joeworkman_stacks_jack4_stack>.jack.scroll-x>.stacks_out{display:inline-block;white-space:nowrap}.com_joeworkman_stacks_jack4_stack>.jack.scroll-y{overflow-y:auto!important;-webkit-overflow-scrolling:touch} 
@media screen and (min-width:40em){.row.collapse-tablet-up .columns{padding-left:0!important;padding-right:0!important}}
  .theme-version{display:block}.theme-version.number-110,#stacks_in_3155{display:none}.stacks_out{overflow:visible !important}.stacks_in{overflow:visible}::-moz-selection{color:rgba(255, 255, 255, 1.00);background:rgba(0, 140, 186, 1.00);}::selection{color:rgba(255, 255, 255, 1.00);background:rgba(0, 140, 186, 1.00);}::-moz-selection{color:rgba(255, 255, 255, 1.00);background:rgba(0, 140, 186, 1.00);}body,.font-family-text{font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-weight:400;}h1,.font-family-h1{font-family:'Open Sans',sans-serif;font-style:normal;font-weight:300;}h1 a,.font-family-h1 a{font-family:inherit}h2,h3,h4,h5,h6,.font-family-h2{font-family:'Open Sans',sans-serif;font-style:normal;font-weight:600;}h2 a,h3 a,h4 a,h5 a,h6 a,.font-family-h2 a{font-family:inherit}body{background-color:#FFFFFF;}.hide-for-touch,.show-for-touch{display:none}.no-js .hide-for-touch{display:block}.vegas-loading{display:none}.vegas-background{-ms-interpolation-mode:bicubic;image-rendering:optimizeQuality;max-width:none !important}.vegas-overlay,.vegas-background{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.hide-overflow{overflow:hidden !important}.columns > .equalizer.small-up{height:100%}@media only screen and (min-width:40.063em){.columns > .equalizer.medium-up{height:100%}}@media only screen and (min-width:62.563em){.columns > .equalizer.large-up{height:100%}}@media only screen and (max-width:40em){.row.collapse-small > .columns{padding-left:0;padding-right:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){.row.collapse-medium > .columns{padding-left:0;padding-right:0}}@media only screen and (max-width:40em){.row .row.collapse-small{margin:0;width:auto}.row .row.collapse-small::before,.row .row.collapse-small::after{content:" ";display:table}.row .row.collapse-small::after{clear:both}}@media only screen and (min-width:40.063em) and (max-width:62.5em){.row .row.collapse-medium{margin:0;width:auto}.row .row.collapse-medium::before,.row .row.collapse-medium::after{content:" ";display:table}.row .row.collapse-medium::after{clear:both}}.column,.columns{padding-left:0.94rem;padding-right:0.94rem}.row .row{margin:0 -0.94rem}.row.divider > .columns:not(:first-child):before{content:" ";margin:0 -0.94rem;position:absolute}@media only screen and (max-width:40em){.row.divider-medium-up > .columns::before,.row.divider-large-up > .columns::before,.small-12::before{display:none}}@media only screen and (min-width:40.063em) and (max-width:62.5em){.row.divider-large-up > .columns::before,.medium-12::before{display:none}}@media only screen and (min-width:62.563em){.large-12:before{display:none}}.floating-body.radius{border-radius:3px}.floating-body.radius > .columns > .stacks_out:first-child > .stacks_in > .top-bar-wrapper:not(.fixed){border-top-right-radius:3px;border-top-left-radius:3px}.floating-body .top-bar-wrapper.contain-to-grid.fixed{max-width:1024px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.radius{background-clip:padding-box}img{color:#FFFFFF}img.radius{border-radius:3px}img.round{border-radius:1000px}.row{max-width:1024px !important;}.row.max-edge{max-width:100% !important}body{color:rgba(34, 34, 34, 1.00)}a{color:rgba(0, 140, 186, 1.00);-webkit-text-decoration:none;text-decoration:none;font-weight:inherit}a:hover,a:focus{color:rgba(0, 102, 136, 1.00)}a.close,a.close-reveal-modal{text-decoration:none}.alt{color:rgba(255, 255, 255, 1.00)}.alt a{color:rgba(0, 140, 186, 1.00);-webkit-text-decoration:none;text-decoration:none}.alt a:hover,.alt a:focus{color:rgba(0, 102, 136, 1.00)}.alt small{color:rgba(255, 255, 255, 1.00)}h1,h2,h3,h4,h5,h6{color:rgba(34, 34, 34, 1.00);margin-top:0}h1.alt,h2.alt,h3.alt,h4.alt,h5.alt,h6.alt{color:rgba(255, 255, 255, 1.00)}h1.subheader,h2.subheader,h3.subheader,h4.subheader,h5.subheader,h6.subheader{color:rgba(44, 44, 44, 1.00)}h1.subheader.alt,h2.subheader.alt,h3.subheader.alt,h4.subheader.alt,h5.subheader.alt,h6.subheader.alt{color:rgba(255, 255, 255, 1.00)}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-size:30%;color:rgba(44, 44, 44, 1.00)}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:inherit !important}h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover,h6 a:hover{opacity:0.8;color:inherit !important}h1{font-size:2.12rem}h2{font-size:1.69rem}h3{font-size:1.38rem}h4{font-size:1.12rem}h5{font-size:1.12rem}h6{font-size:1.00rem}p,ul li,ol li{font-size:0.90rem}@media only screen and (min-width:40.063em){h1{font-size:2.75rem}h2{font-size:2.31rem}h3{font-size:1.69rem}h4{font-size:1.44rem}h5{font-size:1.12rem}h6{font-size:1.00rem}p,ul li,ol li{font-size:0.90rem}}code{color:rgba(204, 55, 30, 1.00)}hr,blockquote,abbr,acronym,.vcard{border-color:rgba(221, 221, 221, 1.00)}hr.alt,blockquote.alt,abbr.alt,acronym.alt,.vcard.alt{border-color:rgba(221, 221, 221, 1.00)}hr.primary,blockquote.primary,abbr.primary,acronym.primary,.vcard.primary{border-color:rgba(0, 140, 186, 1.00)}hr.primary,blockquote.primary,abbr.primary,acronym.primary,.vcard.primary{border-color:rgba(0, 140, 186, 1.00)}hr.secondary,blockquote.secondary,abbr.secondary,acronym.secondary,.vcard.secondary{border-color:rgba(231, 231, 231, 1.00)}hr.swatch1,blockquote.swatch1,abbr.swatch1,acronym.swatch1,.vcard.swatch1{border-color:rgba(34, 34, 34, 1.00)}hr.swatch2,blockquote.swatch2,abbr.swatch2,acronym.swatch2,.vcard.swatch2{border-color:rgba(34, 34, 34, 1.00)}hr.swatch3,blockquote.swatch3,abbr.swatch3,acronym.swatch3,.vcard.swatch3{border-color:rgba(34, 34, 34, 1.00)}hr.swatch4,blockquote.swatch4,abbr.swatch4,acronym.swatch4,.vcard.swatch4{border-color:rgba(248, 248, 248, 1.00)}hr.swatch5,blockquote.swatch5,abbr.swatch5,acronym.swatch5,.vcard.swatch5{border-color:rgba(248, 248, 248, 1.00)}hr.swatch6,blockquote.swatch6,abbr.swatch6,acronym.swatch6,.vcard.swatch6{border-color:rgba(248, 248, 248, 1.00)}blockquote,blockquote p{color:rgba(44, 44, 44, 1.00)}blockquote cite,blockquote cite a,blockquote p cite,blockquote p cite a{color:rgba(40, 40, 40, 1.00)}blockquote.alt,blockquote.alt p,blockquote p.alt,blockquote p.alt p{color:rgba(255, 255, 255, 1.00)}blockquote.alt cite,blockquote.alt cite a,blockquote.alt p cite,blockquote.alt p cite a,blockquote p.alt cite,blockquote p.alt cite a,blockquote p.alt p cite,blockquote p.alt p cite a{color:rgba(255, 255, 255, 1.00)}.flex-video{margin-bottom:0}.contain-to-grid .top-bar{max-width:1024px}.top-bar .top-bar-section ul li > a.button{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00)}.top-bar .top-bar-section ul li > a.button:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 133, 176, 1.00)}.top-bar .top-bar-section ul li > a.button.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.top-bar .top-bar-section ul li > a.button.secondary:hover{color:rgba(51, 51, 51, 1.00);background-color:rgba(219, 219, 219, 1.00)}.top-bar .top-bar-section ul li > a.button.alert{background-color:rgba(240, 65, 36, 1.00)}.top-bar .top-bar-section ul li > a.button.alert:hover{background-color:rgba(228, 61, 34, 1.00)}.top-bar .top-bar-section ul li > a.button.success{background-color:rgba(67, 172, 106, 1.00)}.top-bar .top-bar-section ul li > a.button.success:hover{background-color:rgba(63, 163, 100, 1.00)}.top-bar .top-bar-section ul li > a.button.radius{border-radius:3px}.top-bar-wrapper.fn-scheme-primary{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00)}.top-bar-wrapper.fn-scheme-primary ul:not(.title-area) ul.dropdown{background-color:rgba(0, 140, 186, 1.00)}.top-bar-wrapper.fn-scheme-primary .site-title,.top-bar-wrapper.fn-scheme-primary .site-title small,.top-bar-wrapper.fn-scheme-primary a:not(.button){color:rgba(255, 255, 255, 1.00) !important}.top-bar-wrapper.fn-scheme-primary .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(255, 255, 255, 1.00),0 7px 0 1px rgba(255, 255, 255, 1.00),0 14px 0 1px rgba(255, 255, 255, 1.00);box-shadow:0 0 0 1px rgba(255, 255, 255, 1.00),0 7px 0 1px rgba(255, 255, 255, 1.00),0 14px 0 1px rgba(255, 255, 255, 1.00)}.top-bar-wrapper.fn-scheme-secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.top-bar-wrapper.fn-scheme-secondary ul:not(.title-area) ul.dropdown{background-color:rgba(231, 231, 231, 1.00)}.top-bar-wrapper.fn-scheme-secondary .site-title,.top-bar-wrapper.fn-scheme-secondary .site-title small,.top-bar-wrapper.fn-scheme-secondary a:not(.button){color:rgba(51, 51, 51, 1.00) !important}.top-bar-wrapper.fn-scheme-secondary .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(51, 51, 51, 1.00),0 7px 0 1px rgba(51, 51, 51, 1.00),0 14px 0 1px rgba(51, 51, 51, 1.00);box-shadow:0 0 0 1px rgba(51, 51, 51, 1.00),0 7px 0 1px rgba(51, 51, 51, 1.00),0 14px 0 1px rgba(51, 51, 51, 1.00)}.top-bar-wrapper.fn-scheme-swatch1{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch1 ul:not(.title-area) ul.dropdown{background-color:rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch1 .site-title,.top-bar-wrapper.fn-scheme-swatch1 .site-title small,.top-bar-wrapper.fn-scheme-swatch1 a:not(.button){color:rgba(248, 248, 248, 1.00) !important}.top-bar-wrapper.fn-scheme-swatch1 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(248, 248, 248, 1.00),0 7px 0 1px rgba(248, 248, 248, 1.00),0 14px 0 1px rgba(248, 248, 248, 1.00);box-shadow:0 0 0 1px rgba(248, 248, 248, 1.00),0 7px 0 1px rgba(248, 248, 248, 1.00),0 14px 0 1px rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch2{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch2 ul:not(.title-area) ul.dropdown{background-color:rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch2 .site-title,.top-bar-wrapper.fn-scheme-swatch2 .site-title small,.top-bar-wrapper.fn-scheme-swatch2 a:not(.button){color:rgba(248, 248, 248, 1.00) !important}.top-bar-wrapper.fn-scheme-swatch2 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(248, 248, 248, 1.00),0 7px 0 1px rgba(248, 248, 248, 1.00),0 14px 0 1px rgba(248, 248, 248, 1.00);box-shadow:0 0 0 1px rgba(248, 248, 248, 1.00),0 7px 0 1px rgba(248, 248, 248, 1.00),0 14px 0 1px rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch3{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch3 ul:not(.title-area) ul.dropdown{background-color:rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch3 .site-title,.top-bar-wrapper.fn-scheme-swatch3 .site-title small,.top-bar-wrapper.fn-scheme-swatch3 a:not(.button){color:rgba(248, 248, 248, 1.00) !important}.top-bar-wrapper.fn-scheme-swatch3 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(248, 248, 248, 1.00),0 7px 0 1px rgba(248, 248, 248, 1.00),0 14px 0 1px rgba(248, 248, 248, 1.00);box-shadow:0 0 0 1px rgba(248, 248, 248, 1.00),0 7px 0 1px rgba(248, 248, 248, 1.00),0 14px 0 1px rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch4{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch4 ul:not(.title-area) ul.dropdown{background-color:rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch4 .site-title,.top-bar-wrapper.fn-scheme-swatch4 .site-title small,.top-bar-wrapper.fn-scheme-swatch4 a:not(.button){color:rgba(34, 34, 34, 1.00) !important}.top-bar-wrapper.fn-scheme-swatch4 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(34, 34, 34, 1.00),0 7px 0 1px rgba(34, 34, 34, 1.00),0 14px 0 1px rgba(34, 34, 34, 1.00);box-shadow:0 0 0 1px rgba(34, 34, 34, 1.00),0 7px 0 1px rgba(34, 34, 34, 1.00),0 14px 0 1px rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch5{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch5 ul:not(.title-area) ul.dropdown{background-color:rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch5 .site-title,.top-bar-wrapper.fn-scheme-swatch5 .site-title small,.top-bar-wrapper.fn-scheme-swatch5 a:not(.button){color:rgba(34, 34, 34, 1.00) !important}.top-bar-wrapper.fn-scheme-swatch5 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(34, 34, 34, 1.00),0 7px 0 1px rgba(34, 34, 34, 1.00),0 14px 0 1px rgba(34, 34, 34, 1.00);box-shadow:0 0 0 1px rgba(34, 34, 34, 1.00),0 7px 0 1px rgba(34, 34, 34, 1.00),0 14px 0 1px rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch6{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch6 ul:not(.title-area) ul.dropdown{background-color:rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch6 .site-title,.top-bar-wrapper.fn-scheme-swatch6 .site-title small,.top-bar-wrapper.fn-scheme-swatch6 a:not(.button){color:rgba(34, 34, 34, 1.00) !important}.top-bar-wrapper.fn-scheme-swatch6 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(34, 34, 34, 1.00),0 7px 0 1px rgba(34, 34, 34, 1.00),0 14px 0 1px rgba(34, 34, 34, 1.00);box-shadow:0 0 0 1px rgba(34, 34, 34, 1.00),0 7px 0 1px rgba(34, 34, 34, 1.00),0 14px 0 1px rgba(34, 34, 34, 1.00)}.alert-box{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00);border-color:rgba(0, 133, 176, 1.00)}.alert-box a:not(.close){color:rgba(255, 255, 255, 1.00);text-decoration:underline}.alert-box.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00);border-color:rgba(219, 219, 219, 1.00)}.alert-box.alert{background-color:rgba(240, 65, 36, 1.00);border-color:rgba(228, 61, 34, 1.00)}.alert-box.success{background-color:rgba(67, 172, 106, 1.00);border-color:rgba(63, 163, 100, 1.00)}.alert-box.warning{background-color:rgba(240, 138, 36, 1.00);border-color:rgba(228, 131, 34, 1.00)}.alert-box.info{background-color:rgba(160, 211, 232, 1.00);color:rgba(76, 76, 76, 1.00);border-color:rgba(152, 200, 220, 1.00)}.alert-box.radius{border-radius:3px}.breadcrumbs{background-color:rgba(231, 231, 231, 1.00);border-color:rgba(219, 219, 219, 1.00);color:rgba(51, 51, 51, 1.00)}.breadcrumbs .current a{color:rgba(51, 51, 51, 1.00)}.breadcrumbs.radius{border-radius:3px}.breadcrumbs header{display:inline}.breadcrumbs .fa{font-size:1em}.breadcrumbs .unavailable{color:rgba(51, 51, 51, 1.00)}.breadcrumbs li:before{color:rgba(76, 76, 76, 1.00)}.breadcrumbs *:first-child:before{margin:0 .75rem}.button{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00)}.button:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 133, 176, 1.00)}.button.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.button.secondary:hover{color:rgba(51, 51, 51, 1.00);background-color:rgba(219, 219, 219, 1.00)}.button.alert{background-color:rgba(240, 65, 36, 1.00)}.button.alert:hover{background-color:rgba(228, 61, 34, 1.00)}.button.success{background-color:rgba(67, 172, 106, 1.00)}.button.success:hover{background-color:rgba(63, 163, 100, 1.00)}.button.radius{border-radius:3px}.button.ghost{background-color:transparent;border-width:1px;border-color:rgba(0, 140, 186, 1.00);color:rgba(0, 140, 186, 1.00)}.button.ghost:hover{color:rgba(255, 255, 255, 1.00);border-color:rgba(0, 133, 176, 1.00);background-color:rgba(0, 133, 176, 1.00)}.button.ghost.secondary{border-color:rgba(231, 231, 231, 1.00);color:rgba(231, 231, 231, 1.00)}.button.ghost.secondary:hover{color:rgba(51, 51, 51, 1.00);border-color:rgba(219, 219, 219, 1.00);background-color:rgba(219, 219, 219, 1.00)}.button.ghost.alert{border-color:rgba(240, 65, 36, 1.00);color:rgba(240, 65, 36, 1.00)}.button.ghost.alert:hover{color:rgba(255, 255, 255, 1.00);border-color:rgba(228, 61, 34, 1.00);background-color:rgba(228, 61, 34, 1.00)}.button.ghost.success{border-color:rgba(67, 172, 106, 1.00);color:rgba(67, 172, 106, 1.00)}.button.ghost.success:hover{color:rgba(255, 255, 255, 1.00);border-color:rgba(63, 163, 100, 1.00);background-color:rgba(63, 163, 100, 1.00)}.split.button.radius span{border-top-right-radius:3px;border-bottom-right-radius:3px}.split.button span::after{border-top-color:rgba(255, 255, 255, 1.00)}.split.button.secondary span::after{border-top-color:rgba(51, 51, 51, 1.00)}.button-group.radius > *:first-child,.button-group.radius > *:first-child > a,.button-group.radius > *:first-child > button,.button-group.radius > *:first-child > .button{border-bottom-left-radius:3px;border-top-left-radius:3px}.button-group.radius > *:last-child,.button-group.radius > *:last-child > a,.button-group.radius > *:last-child > button,.button-group.radius > *:last-child > .button{border-top-right-radius:3px;border-bottom-right-radius:3px}.button-group.stack > li .button,.button-group.stack-for-small > li .button{border-top:1px solid rgba(255,255,255,0.5)}.icon-bar{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00)}.icon-bar > .item{cursor:pointer;color:rgba(255, 255, 255, 1.00)}.icon-bar > .item label,.icon-bar > .item i{color:rgba(255, 255, 255, 1.00)}.icon-bar > .item:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 133, 176, 1.00)}.icon-bar.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.icon-bar.secondary > .item{color:rgba(51, 51, 51, 1.00)}.icon-bar.secondary > .item label,.icon-bar.secondary > .item i{color:rgba(51, 51, 51, 1.00)}.icon-bar.secondary > .item:hover{background-color:rgba(219, 219, 219, 1.00);color:rgba(51, 51, 51, 1.00)}form[data-abide] .error label{color:rgba(240, 65, 36, 1.00)}form[data-abide] .error small.error,form[data-abide] .error span.error{background-color:rgba(240, 65, 36, 1.00);color:rgba(255, 255, 255, 1.00)}input[type="radio"]{margin-left:1px}form input[type="text"],form input[type="password"],form input[type="date"],form input[type="datetime"],form input[type="datetime-local"],form input[type="month"],form input[type="week"],form input[type="email"],form input[type="number"],form input[type="search"],form input[type="tel"],form input[type="time"],form input[type="url"],form textarea,form select{font-size:16px;color:rgba(34, 34, 34, 1.00)}form input[type="text"]:focus,form input[type="password"]:focus,form input[type="date"]:focus,form input[type="datetime"]:focus,form input[type="datetime-local"]:focus,form input[type="month"]:focus,form input[type="week"]:focus,form input[type="email"]:focus,form input[type="number"]:focus,form input[type="search"]:focus,form input[type="tel"]:focus,form input[type="time"]:focus,form input[type="url"]:focus,form textarea:focus,form select:focus{border-color:rgba(0, 140, 186, 1.00)}form fieldset{border-color:rgba(221, 221, 221, 1.00)}form legend{background-color:#FFFFFF}form label{color:rgba(40, 40, 40, 1.00)}form.radius input[type="text"],form.radius input[type="password"],form.radius input[type="date"],form.radius input[type="datetime"],form.radius input[type="datetime-local"],form.radius input[type="month"],form.radius input[type="week"],form.radius input[type="email"],form.radius input[type="number"],form.radius input[type="search"],form.radius input[type="tel"],form.radius input[type="time"],form.radius input[type="url"],form.radius textarea,form.radius select,form.radius small.error{border-radius:3px}form.radius span.prefix,form.radius label.prefix{border-bottom-left-radius:3px;border-top-left-radius:3px}form.radius span.postfix,form.radius label.postfix{border-top-right-radius:3px;border-bottom-right-radius:3px}form.radius .input-group > *:first-child,form.radius .input-group > *:first-child *{border-bottom-left-radius:3px;border-top-left-radius:3px}form.radius .input-group > *:last-child,form.radius .input-group > *:last-child *{border-top-right-radius:3px;border-bottom-right-radius:3px}.range-slider,.range-slider.radius,.range-slider.round{background-color:rgba(255, 255, 255, 1.00);border-color:rgba(225, 225, 225, 1.00)}.range-slider .range-slider-handle,.range-slider.radius .range-slider-handle,.range-slider.round .range-slider-handle{background-color:rgba(0, 140, 186, 1.00)}.range-slider .range-slider-handle:hover,.range-slider.radius .range-slider-handle:hover,.range-slider.round .range-slider-handle:hover{background-color:rgba(0, 133, 176, 1.00)}.range-slider .range-slider-active-segment,.range-slider.radius .range-slider-active-segment,.range-slider.round .range-slider-active-segment{background-color:rgba(225, 225, 225, 1.00)}.range-slider.secondary,.range-slider.radius.secondary,.range-slider.round.secondary{background-color:rgba(51, 51, 51, 1.00);border-color:rgba(21, 21, 21, 1.00)}.range-slider.secondary .range-slider-handle,.range-slider.radius.secondary .range-slider-handle,.range-slider.round.secondary .range-slider-handle{background-color:rgba(231, 231, 231, 1.00)}.range-slider.secondary .range-slider-handle:hover,.range-slider.radius.secondary .range-slider-handle:hover,.range-slider.round.secondary .range-slider-handle:hover{background-color:rgba(219, 219, 219, 1.00)}.range-slider.secondary .range-slider-active-segment,.range-slider.radius.secondary .range-slider-active-segment,.range-slider.round.secondary .range-slider-active-segment{background-color:rgba(21, 21, 21, 1.00)}.slider-display{display:block;margin-top:16px}fieldset.switch label{background-color:#e6e6e6}fieldset.switch label::after{background-color:rgba(255, 255, 255, 1.00)}fieldset.switch input:checked + label{background-color:rgba(0, 140, 186, 1.00)}fieldset.switch.secondary label::after{background-color:rgba(51, 51, 51, 1.00)}fieldset.switch.secondary input:checked + label{background-color:rgba(231, 231, 231, 1.00)}fieldset.switch.alert input:checked + label{background-color:rgba(240, 65, 36, 1.00)}fieldset.switch.success input:checked + label{background-color:rgba(67, 172, 106, 1.00)}.label{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00);margin-bottom:0}.label.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.label.alert{background-color:rgba(240, 65, 36, 1.00)}.label.success{background-color:rgba(67, 172, 106, 1.00)}.label.radius{border-radius:3px}.alert-box .close{opacity:0.5}.slideshow-wrapper{min-height:50px;z-index:10}.orbit-container .orbit-bullets li{cursor:pointer;background:rgba(231, 231, 231, 1.00)}.orbit-container .orbit-bullets li.active,.orbit-container .orbit-bullets li:hover{background:rgba(0, 140, 186, 1.00)}.accordion .accordion-navigation > a{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00)}.accordion .accordion-navigation > a:hover{background-color:rgba(0, 133, 176, 1.00)}.accordion .accordion-navigation > a.radius{border-radius:3px}.accordion .accordion-navigation > a.round{border-radius:1000px}.accordion .accordion-navigation.active > a{background-color:rgba(0, 133, 176, 1.00)}.accordion .accordion-navigation > .content{background-color:transparent !important}.accordion.secondary .accordion-navigation > a{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.accordion.secondary .accordion-navigation > a:hover{background-color:rgba(219, 219, 219, 1.00)}.accordion.secondary .accordion-navigation.active > a{background-color:rgba(219, 219, 219, 1.00)}.tabs li.tab-title > a{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00)}.tabs li.tab-title > a:hover{background-color:rgba(0, 133, 176, 1.00)}.tabs li.tab-title.active > a{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 133, 176, 1.00)}.tabs.secondary li.tab-title > a{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.tabs.secondary li.tab-title > a:hover{background-color:rgba(219, 219, 219, 1.00)}.tabs.secondary li.tab-title.active > a{color:rgba(51, 51, 51, 1.00);background-color:rgba(219, 219, 219, 1.00)}.tabs.swatch1 li.tab-title > a{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.tabs.swatch1 li.tab-title > a:hover{background-color:rgba(32, 32, 32, 1.00)}.tabs.swatch1 li.tab-title.active > a{color:rgba(248, 248, 248, 1.00);background-color:rgba(32, 32, 32, 1.00)}.tabs.swatch2 li.tab-title > a{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.tabs.swatch2 li.tab-title > a:hover{background-color:rgba(32, 32, 32, 1.00)}.tabs.swatch2 li.tab-title.active > a{color:rgba(248, 248, 248, 1.00);background-color:rgba(32, 32, 32, 1.00)}.tabs.swatch3 li.tab-title > a{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.tabs.swatch3 li.tab-title > a:hover{background-color:rgba(32, 32, 32, 1.00)}.tabs.swatch3 li.tab-title.active > a{color:rgba(248, 248, 248, 1.00);background-color:rgba(32, 32, 32, 1.00)}.tabs.swatch4 li.tab-title > a{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.tabs.swatch4 li.tab-title > a:hover{background-color:rgba(235, 235, 235, 1.00)}.tabs.swatch4 li.tab-title.active > a{color:rgba(34, 34, 34, 1.00);background-color:rgba(235, 235, 235, 1.00)}.tabs.swatch5 li.tab-title > a{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.tabs.swatch5 li.tab-title > a:hover{background-color:rgba(235, 235, 235, 1.00)}.tabs.swatch5 li.tab-title.active > a{color:rgba(34, 34, 34, 1.00);background-color:rgba(235, 235, 235, 1.00)}.tabs.swatch6 li.tab-title > a{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.tabs.swatch6 li.tab-title > a:hover{background-color:rgba(235, 235, 235, 1.00)}.tabs.swatch6 li.tab-title.active > a{color:rgba(34, 34, 34, 1.00);background-color:rgba(235, 235, 235, 1.00)}.tabs.radius li.tab-title:first-child a{border-bottom-left-radius:3px;border-top-left-radius:3px}.tabs.radius li.tab-title:last-child a{border-top-right-radius:3px;border-bottom-right-radius:3px}.th.radius{border-radius:3px}.th:hover,.th:focus{-webkit-box-shadow:0 0 6px 1px rgba(0, 70, 93, 1.00);box-shadow:0 0 6px 1px rgba(0, 70, 93, 1.00)}.f-dropdown,.f-dropdown.content{background-color:rgba(255, 255, 255, 1.00);border-color:rgba(204, 204, 204, 1.00);color:rgba(51, 51, 51, 1.00)}.f-dropdown::before,.f-dropdown.content::before{border-color:transparent transparent rgba(255, 255, 255, 1.00) transparent}.f-dropdown::after,.f-dropdown.content::after{border-color:transparent transparent rgba(204, 204, 204, 1.00) transparent}.f-dropdown li a,.f-dropdown.content li a{color:rgba(51, 51, 51, 1.00)}.f-dropdown li:hover,.f-dropdown.content li:hover{background-color:rgba(0,0,0,0.1)}.f-dropdown.radius,.f-dropdown.content.radius{border-radius:3px}.tooltip{border-radius:3px;background-color:rgba(51, 51, 51, 1.00);color:rgba(255, 255, 255, 1.00)}.panel{background-color:rgba(242, 242, 242, 1.00);border-color:rgba(219, 219, 219, 1.00)}.panel.radius{border-radius:3px}.panel p{color:rgba(34, 34, 34, 1.00)}.panel p a{color:rgba(0, 140, 186, 1.00)}.panel p.alt{color:rgba(255, 255, 255, 1.00)}.panel p.alt a{color:rgba(0, 140, 186, 1.00)}.panel p.alt a:hover{color:rgba(0, 102, 136, 1.00)}.panel p.alt small{color:rgba(255, 255, 255, 1.00)}.panel h1,.panel h2,.panel h3,.panel h4,.panel h5,.panel h6{color:rgba(34, 34, 34, 1.00)}.panel h1.alt,.panel h2.alt,.panel h3.alt,.panel h4.alt,.panel h5.alt,.panel h6.alt{color:rgba(255, 255, 255, 1.00)}.panel h1.subheader,.panel h2.subheader,.panel h3.subheader,.panel h4.subheader,.panel h5.subheader,.panel h6.subheader{color:rgba(44, 44, 44, 1.00)}.panel h1.subheader.alt,.panel h2.subheader.alt,.panel h3.subheader.alt,.panel h4.subheader.alt,.panel h5.subheader.alt,.panel h6.subheader.alt{color:rgba(255, 255, 255, 1.00)}.pricing-table.primary .title{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00)}.pricing-table.primary .price{color:rgba(34, 34, 34, 1.00)}.pricing-table.primary .description{color:rgba(34, 34, 34, 1.00)}.pricing-table.primary .bullet-item{color:rgba(34, 34, 34, 1.00)}.pricing-table.secondary .title{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.pricing-table.secondary .price{color:rgba(34, 34, 34, 1.00)}.pricing-table.secondary .description{color:rgba(34, 34, 34, 1.00)}.pricing-table.secondary .bullet-item{color:rgba(34, 34, 34, 1.00)}.pricing-table.radius{border-radius:3px}.pricing-table.radius .title{border-top-right-radius:3px;border-top-left-radius:3px}.pricing-table.radius .cta-button{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.side-nav li a:not(.button){color:rgba(0, 140, 186, 1.00)}.side-nav li a:not(.button):hover{background-color:rgba(243, 243, 243, 1.00);color:rgba(0, 102, 136, 1.00)}.side-nav li.active > a:first-child:not(.button){color:rgba(0, 140, 186, 1.00)}.side-nav li.active:not(.has-dropdown) a:not(.button){color:rgba(0, 119, 158, 1.00)}.side-nav header{color:rgba(34, 34, 34, 1.00);margin-top:1rem;margin-bottom:0.5rem}.side-nav label{color:rgba(40, 40, 40, 1.00)}.side-nav li.divider{border-top-color:rgba(221, 221, 221, 1.00)}.side-nav.alt li a:not(.button){color:rgba(0, 140, 186, 1.00)}.side-nav.alt li a:not(.button):hover{background-color:rgba(243, 243, 243, 1.00);color:rgba(0, 102, 136, 1.00)}.side-nav.alt li.active > a:first-child:not(.button){color:rgba(0, 140, 186, 1.00)}.side-nav.alt li.active:not(.has-dropdown) a:not(.button){color:rgba(0, 119, 158, 1.00)}.side-nav.alt header{color:rgba(255, 255, 255, 1.00)}.side-nav.alt label{color:rgba(255, 255, 255, 1.00)}.side-nav.alt li.divider{border-top-color:rgba(221, 221, 221, 1.00)}.sub-nav dt,.sub-nav dd,.sub-nav li{float:none;display:inline-block}.sub-nav dt a:not(.button),.sub-nav dd a:not(.button),.sub-nav li a:not(.button){color:rgba(0, 140, 186, 1.00)}.sub-nav dt a:not(.button):hover,.sub-nav dd a:not(.button):hover,.sub-nav li a:not(.button):hover{color:rgba(0, 133, 176, 1.00)}.sub-nav dt.active a:not(.button),.sub-nav dd.active a:not(.button),.sub-nav li.active a:not(.button){color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 140, 186, 1.00)}.sub-nav dt.active a:not(.button):hover,.sub-nav dd.active a:not(.button):hover,.sub-nav li.active a:not(.button):hover{background-color:rgba(0, 133, 176, 1.00)}.sub-nav dt.active a.secondary:not(.button),.sub-nav dd.active a.secondary:not(.button),.sub-nav li.active a.secondary:not(.button){color:rgba(51, 51, 51, 1.00);background-color:rgba(231, 231, 231, 1.00)}.sub-nav dt.active a.secondary:not(.button):hover,.sub-nav dd.active a.secondary:not(.button):hover,.sub-nav li.active a.secondary:not(.button):hover{background-color:rgba(219, 219, 219, 1.00)}.sub-nav.secondary dt a:not(.button),.sub-nav.secondary dd a:not(.button),.sub-nav.secondary li a:not(.button){color:rgba(231, 231, 231, 1.00)}.sub-nav.secondary dt a:not(.button):hover,.sub-nav.secondary dd a:not(.button):hover,.sub-nav.secondary li a:not(.button):hover{color:rgba(219, 219, 219, 1.00)}.sub-nav.secondary dt.active a:not(.button),.sub-nav.secondary dd.active a:not(.button),.sub-nav.secondary li.active a:not(.button){color:rgba(51, 51, 51, 1.00);background-color:rgba(231, 231, 231, 1.00)}.sub-nav.secondary dt.active a:not(.button):hover,.sub-nav.secondary dd.active a:not(.button):hover,.sub-nav.secondary li.active a:not(.button):hover{background-color:rgba(219, 219, 219, 1.00)}.reveal-modal{z-index:9999;background-color:rgba(255, 255, 255, 1.00);color:rgba(51, 51, 51, 1.00);border:none;border-radius:0}@media screen and (max-width:39.9375em){.reveal-modal{border-radius:0 !important}}.reveal-modal.fullscreen{position:fixed;top:0px !important;width:100vw;height:100vh;overflow-y:scroll}.reveal-modal.fullscreen .close-reveal-modal{position:fixed}.reveal-modal.radius{border-radius:3px}.reveal-modal .close-reveal-modal{color:rgba(170, 170, 170, 1.00);font-weight:normal;z-index:99999}.reveal-modal-bg{z-index:9998;background:rgba(0, 0, 0, 0.45)}nav.inline-nav ul.inline-list{margin-left:0}nav.inline-nav ul.inline-list li{float:none;display:inline-block}nav.inline-nav ul.inline-list li:first-child{margin-left:0}nav.inline-nav ul.inline-list li.active{border-width:0 0 1px 0;border-style:solid;border-bottom-color:rgba(0, 140, 186, 1.00)}nav.inline-nav ul.inline-list.alt li.active{border-bottom-color:rgba(0, 140, 186, 1.00)}.clearing-blackout{background-color:rgba(255, 255, 255, 1.00)}.clearing-assembled .clearing-container .visible-img,.clearing-assembled .clearing-container .clearing-caption{background-color:rgba(255, 255, 255, 1.00)}.clearing-assembled .clearing-container .carousel{background-color:rgba(242, 242, 242, 1.00)}.clearing-assembled .clearing-container .clearing-close{color:rgba(170, 170, 170, 1.00)}.clearing-assembled .clearing-container .clearing-close:hover,.clearing-assembled .clearing-container .clearing-close:focus{color:rgba(170, 170, 170, 1.00)}.clearing-assembled .clearing-container .clearing-main-next > span{border-color:transparent;border-left-color:rgba(51, 51, 51, 1.00)}.clearing-assembled .clearing-container .clearing-main-prev > span{border-color:transparent;border-right-color:rgba(51, 51, 51, 1.00)}.clearing-assembled .clearing-container .clearing-caption{color:rgba(51, 51, 51, 1.00)}.copyright{color:rgba(34, 34, 34, 1.00);font-size:0.9rem}.copyright a{color:rgba(0, 140, 186, 1.00)}.copyright a:hover{color:rgba(0, 102, 136, 1.00)}.stacks_s_hidden,.stacks_m_hidden,.stacks_l_hidden{display:block !important}@media only screen and (max-width:40em){.stacks_s_hidden{display:none !important}}@media only screen and (min-width:40.063em) and (max-width:62.5em){.stacks_m_hidden{display:none !important}}@media only screen and (min-width:62.563em){.stacks_l_hidden{display:none !important}}.fn-text-header{color:rgba(34, 34, 34, 1.00)}.fn-text-link a{color:rgba(0, 140, 186, 1.00)}.fn-text-link a:hover{color:rgba(0, 102, 136, 1.00)}.fn-text-text{color:rgba(34, 34, 34, 1.00)}.fn-text-text p,.fn-text-text div{color:rgba(34, 34, 34, 1.00)}.fn-text-accent{color:rgba(221, 221, 221, 1.00)}.fn-text-code-text{color:rgba(204, 55, 30, 1.00)}.fn-text-header-alt{color:rgba(255, 255, 255, 1.00)}.fn-text-link-alt a{color:rgba(0, 140, 186, 1.00)}.fn-text-link-alt a:hover{color:rgba(0, 102, 136, 1.00)}.fn-text-accent-alt{color:rgba(221, 221, 221, 1.00)}.fn-text-primary{color:rgba(0, 140, 186, 1.00)}.fn-text-primary-text{color:rgba(255, 255, 255, 1.00)}.fn-text-primary-text p,.fn-text-primary-text div{color:rgba(255, 255, 255, 1.00)}.fn-text-secondary{color:rgba(231, 231, 231, 1.00)}.fn-text-secondary-text{color:rgba(51, 51, 51, 1.00)}.fn-text-secondary-text p,.fn-text-secondary-text div{color:rgba(51, 51, 51, 1.00)}.fn-text-alert{color:rgba(240, 65, 36, 1.00)}.fn-text-success{color:rgba(67, 172, 106, 1.00)}.fn-text-warning{color:rgba(240, 138, 36, 1.00)}.fn-text-info{color:rgba(160, 211, 232, 1.00)}.fn-text-modal{color:rgba(255, 255, 255, 1.00)}.fn-text-modal-close{color:rgba(170, 170, 170, 1.00)}.fn-text-modal-text{color:rgba(51, 51, 51, 1.00)}.fn-text-modal-text p,.fn-text-modal-text div{color:rgba(51, 51, 51, 1.00)}.fn-text-text-alt{color:rgba(255, 255, 255, 1.00)}.fn-text-text-alt p,.fn-text-text-alt div{color:rgba(255, 255, 255, 1.00)}.fn-text-text-alt h1,.fn-text-text-alt h2,.fn-text-text-alt h3,.fn-text-text-alt h4,.fn-text-text-alt h5,.fn-text-text-alt h6{color:rgba(255, 255, 255, 1.00)}.fn-text-text-alt h1 a,.fn-text-text-alt h2 a,.fn-text-text-alt h3 a,.fn-text-text-alt h4 a,.fn-text-text-alt h5 a,.fn-text-text-alt h6 a{color:rgba(255, 255, 255, 1.00)}.fn-text-text-alt h1 a:hover,.fn-text-text-alt h2 a:hover,.fn-text-text-alt h3 a:hover,.fn-text-text-alt h4 a:hover,.fn-text-text-alt h5 a:hover,.fn-text-text-alt h6 a:hover{color:rgba(255, 255, 255, 1.00)}.fn-text-text-alt h1 small,.fn-text-text-alt h2 small,.fn-text-text-alt h3 small,.fn-text-text-alt h4 small,.fn-text-text-alt h5 small,.fn-text-text-alt h6 small{color:rgba(255, 255, 255, 1.00)}.fn-text-text-alt a{color:rgba(0, 140, 186, 1.00)}.fn-text-text-alt a:hover{color:rgba(0, 102, 136, 1.00)}.fn-text-sw1c1{color:rgba(34, 34, 34, 1.00)}.fn-text-sw1c1 p,.fn-text-sw1c1 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw1c1 h1,.fn-text-sw1c1 h2,.fn-text-sw1c1 h3,.fn-text-sw1c1 h4,.fn-text-sw1c1 h5,.fn-text-sw1c1 h6,.fn-text-sw1c1 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw1c1 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-text-sw1c2{color:rgba(248, 248, 248, 1.00)}.fn-text-sw1c2 p,.fn-text-sw1c2 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw1c2 h1,.fn-text-sw1c2 h2,.fn-text-sw1c2 h3,.fn-text-sw1c2 h4,.fn-text-sw1c2 h5,.fn-text-sw1c2 h6,.fn-text-sw1c2 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw1c2 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw2c1{color:rgba(34, 34, 34, 1.00)}.fn-text-sw2c1 p,.fn-text-sw2c1 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw2c1 h1,.fn-text-sw2c1 h2,.fn-text-sw2c1 h3,.fn-text-sw2c1 h4,.fn-text-sw2c1 h5,.fn-text-sw2c1 h6,.fn-text-sw2c1 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw2c1 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-text-sw2c2{color:rgba(248, 248, 248, 1.00)}.fn-text-sw2c2 p,.fn-text-sw2c2 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw2c2 h1,.fn-text-sw2c2 h2,.fn-text-sw2c2 h3,.fn-text-sw2c2 h4,.fn-text-sw2c2 h5,.fn-text-sw2c2 h6,.fn-text-sw2c2 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw2c2 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw3c1{color:rgba(34, 34, 34, 1.00)}.fn-text-sw3c1 p,.fn-text-sw3c1 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw3c1 h1,.fn-text-sw3c1 h2,.fn-text-sw3c1 h3,.fn-text-sw3c1 h4,.fn-text-sw3c1 h5,.fn-text-sw3c1 h6,.fn-text-sw3c1 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw3c1 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-text-sw3c2{color:rgba(248, 248, 248, 1.00)}.fn-text-sw3c2 p,.fn-text-sw3c2 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw3c2 h1,.fn-text-sw3c2 h2,.fn-text-sw3c2 h3,.fn-text-sw3c2 h4,.fn-text-sw3c2 h5,.fn-text-sw3c2 h6,.fn-text-sw3c2 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw3c2 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw4c1{color:rgba(248, 248, 248, 1.00)}.fn-text-sw4c1 p,.fn-text-sw4c1 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw4c1 h1,.fn-text-sw4c1 h2,.fn-text-sw4c1 h3,.fn-text-sw4c1 h4,.fn-text-sw4c1 h5,.fn-text-sw4c1 h6,.fn-text-sw4c1 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw4c1 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw4c2{color:rgba(34, 34, 34, 1.00)}.fn-text-sw4c2 p,.fn-text-sw4c2 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw4c2 h1,.fn-text-sw4c2 h2,.fn-text-sw4c2 h3,.fn-text-sw4c2 h4,.fn-text-sw4c2 h5,.fn-text-sw4c2 h6,.fn-text-sw4c2 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw4c2 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-text-sw5c1{color:rgba(248, 248, 248, 1.00)}.fn-text-sw5c1 p,.fn-text-sw5c1 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw5c1 h1,.fn-text-sw5c1 h2,.fn-text-sw5c1 h3,.fn-text-sw5c1 h4,.fn-text-sw5c1 h5,.fn-text-sw5c1 h6,.fn-text-sw5c1 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw5c1 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw5c2{color:rgba(34, 34, 34, 1.00)}.fn-text-sw5c2 p,.fn-text-sw5c2 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw5c2 h1,.fn-text-sw5c2 h2,.fn-text-sw5c2 h3,.fn-text-sw5c2 h4,.fn-text-sw5c2 h5,.fn-text-sw5c2 h6,.fn-text-sw5c2 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw5c2 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-text-sw6c1{color:rgba(248, 248, 248, 1.00)}.fn-text-sw6c1 p,.fn-text-sw6c1 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw6c1 h1,.fn-text-sw6c1 h2,.fn-text-sw6c1 h3,.fn-text-sw6c1 h4,.fn-text-sw6c1 h5,.fn-text-sw6c1 h6,.fn-text-sw6c1 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw6c1 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw6c2{color:rgba(34, 34, 34, 1.00)}.fn-text-sw6c2 p,.fn-text-sw6c2 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw6c2 h1,.fn-text-sw6c2 h2,.fn-text-sw6c2 h3,.fn-text-sw6c2 h4,.fn-text-sw6c2 h5,.fn-text-sw6c2 h6,.fn-text-sw6c2 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw6c2 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw1c1{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw1c1 p,.panel .fn-text-sw1c1 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw1c1 h1,.panel .fn-text-sw1c1 h2,.panel .fn-text-sw1c1 h3,.panel .fn-text-sw1c1 h4,.panel .fn-text-sw1c1 h5,.panel .fn-text-sw1c1 h6,.panel .fn-text-sw1c1 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw1c1 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw1c2{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw1c2 p,.panel .fn-text-sw1c2 div{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw1c2 h1,.panel .fn-text-sw1c2 h2,.panel .fn-text-sw1c2 h3,.panel .fn-text-sw1c2 h4,.panel .fn-text-sw1c2 h5,.panel .fn-text-sw1c2 h6,.panel .fn-text-sw1c2 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw1c2 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw2c1{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw2c1 p,.panel .fn-text-sw2c1 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw2c1 h1,.panel .fn-text-sw2c1 h2,.panel .fn-text-sw2c1 h3,.panel .fn-text-sw2c1 h4,.panel .fn-text-sw2c1 h5,.panel .fn-text-sw2c1 h6,.panel .fn-text-sw2c1 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw2c1 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw2c2{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw2c2 p,.panel .fn-text-sw2c2 div{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw2c2 h1,.panel .fn-text-sw2c2 h2,.panel .fn-text-sw2c2 h3,.panel .fn-text-sw2c2 h4,.panel .fn-text-sw2c2 h5,.panel .fn-text-sw2c2 h6,.panel .fn-text-sw2c2 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw2c2 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw3c1{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw3c1 p,.panel .fn-text-sw3c1 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw3c1 h1,.panel .fn-text-sw3c1 h2,.panel .fn-text-sw3c1 h3,.panel .fn-text-sw3c1 h4,.panel .fn-text-sw3c1 h5,.panel .fn-text-sw3c1 h6,.panel .fn-text-sw3c1 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw3c1 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw3c2{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw3c2 p,.panel .fn-text-sw3c2 div{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw3c2 h1,.panel .fn-text-sw3c2 h2,.panel .fn-text-sw3c2 h3,.panel .fn-text-sw3c2 h4,.panel .fn-text-sw3c2 h5,.panel .fn-text-sw3c2 h6,.panel .fn-text-sw3c2 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw3c2 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw4c1{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw4c1 p,.panel .fn-text-sw4c1 div{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw4c1 h1,.panel .fn-text-sw4c1 h2,.panel .fn-text-sw4c1 h3,.panel .fn-text-sw4c1 h4,.panel .fn-text-sw4c1 h5,.panel .fn-text-sw4c1 h6,.panel .fn-text-sw4c1 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw4c1 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw4c2{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw4c2 p,.panel .fn-text-sw4c2 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw4c2 h1,.panel .fn-text-sw4c2 h2,.panel .fn-text-sw4c2 h3,.panel .fn-text-sw4c2 h4,.panel .fn-text-sw4c2 h5,.panel .fn-text-sw4c2 h6,.panel .fn-text-sw4c2 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw4c2 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw5c1{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw5c1 p,.panel .fn-text-sw5c1 div{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw5c1 h1,.panel .fn-text-sw5c1 h2,.panel .fn-text-sw5c1 h3,.panel .fn-text-sw5c1 h4,.panel .fn-text-sw5c1 h5,.panel .fn-text-sw5c1 h6,.panel .fn-text-sw5c1 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw5c1 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw5c2{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw5c2 p,.panel .fn-text-sw5c2 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw5c2 h1,.panel .fn-text-sw5c2 h2,.panel .fn-text-sw5c2 h3,.panel .fn-text-sw5c2 h4,.panel .fn-text-sw5c2 h5,.panel .fn-text-sw5c2 h6,.panel .fn-text-sw5c2 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw5c2 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw6c1{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw6c1 p,.panel .fn-text-sw6c1 div{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw6c1 h1,.panel .fn-text-sw6c1 h2,.panel .fn-text-sw6c1 h3,.panel .fn-text-sw6c1 h4,.panel .fn-text-sw6c1 h5,.panel .fn-text-sw6c1 h6,.panel .fn-text-sw6c1 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw6c1 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw6c2{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw6c2 p,.panel .fn-text-sw6c2 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw6c2 h1,.panel .fn-text-sw6c2 h2,.panel .fn-text-sw6c2 h3,.panel .fn-text-sw6c2 h4,.panel .fn-text-sw6c2 h5,.panel .fn-text-sw6c2 h6,.panel .fn-text-sw6c2 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw6c2 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-bg-header{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-text{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-link{background-color:rgba(0, 140, 186, 1.00)}.fn-bg-link-hover{background-color:rgba(0, 102, 136, 1.00)}.fn-bg-accent{background-color:rgba(221, 221, 221, 1.00)}.fn-bg-code-text{background-color:rgba(204, 55, 30, 1.00)}.fn-bg-modal-text{background-color:rgba(51, 51, 51, 1.00)}.fn-bg-header-alt{background-color:rgba(255, 255, 255, 1.00)}.fn-bg-text-alt{background-color:rgba(255, 255, 255, 1.00)}.fn-bg-link-alt{background-color:rgba(0, 140, 186, 1.00)}.fn-bg-link-hover-alt{background-color:rgba(0, 102, 136, 1.00)}.fn-bg-accent-alt{background-color:rgba(221, 221, 221, 1.00)}.fn-bg-primary{background-color:rgba(0, 140, 186, 1.00)}.fn-bg-primary-text{background-color:rgba(255, 255, 255, 1.00)}.fn-bg-secondary{background-color:rgba(231, 231, 231, 1.00)}.fn-bg-secondary-text{background-color:rgba(51, 51, 51, 1.00)}.fn-bg-alert{background-color:rgba(240, 65, 36, 1.00)}.fn-bg-success{background-color:rgba(67, 172, 106, 1.00)}.fn-bg-warning{background-color:rgba(240, 138, 36, 1.00)}.fn-bg-info{background-color:rgba(160, 211, 232, 1.00)}.fn-bg-modal{background-color:rgba(255, 255, 255, 1.00)}.fn-bg-modal-close{background-color:rgba(170, 170, 170, 1.00)}.fn-bg-sw1c1{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-sw1c2{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw2c1{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-sw2c2{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw3c1{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-sw3c2{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw4c1{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw4c2{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-sw5c1{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw5c2{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-sw6c1{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw6c2{background-color:rgba(34, 34, 34, 1.00)}.fn-backdrop{background-color:rgba(0, 0, 0, 0.45)}.fn-backdrop-solid{background-color:rgba(0, 0, 0, 0.45)}.fn-scheme-primary{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00)}.fn-scheme-primary div,.fn-scheme-primary p{color:rgba(255, 255, 255, 1.00)}.fn-scheme-primary.button:hover{background-color:rgba(0, 133, 176, 1.00)}.fn-scheme-secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.fn-scheme-secondary div,.fn-scheme-secondary p{color:rgba(51, 51, 51, 1.00)}.fn-scheme-secondary.button:hover{background-color:rgba(219, 219, 219, 1.00)}.fn-scheme-modal{background-color:rgba(255, 255, 255, 1.00);color:rgba(51, 51, 51, 1.00)}.fn-scheme-modal div,.fn-scheme-modal p{color:rgba(51, 51, 51, 1.00)}.fn-scheme-modal .close{color:rgba(170, 170, 170, 1.00)}.fn-scheme-swatch1{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch1 div,.fn-scheme-swatch1 p{color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch1.switch{background-color:transparent}.fn-scheme-swatch1.switch label::after{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch1.switch input:checked + label{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch1.button:hover{background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch1.ghost{background-color:transparent;border-color:rgba(34, 34, 34, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch1.ghost.button:hover{color:rgba(248, 248, 248, 1.00);border-color:rgba(32, 32, 32, 1.00);background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch2{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch2 div,.fn-scheme-swatch2 p{color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch2.switch{background-color:transparent}.fn-scheme-swatch2.switch label::after{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch2.switch input:checked + label{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch2.button:hover{background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch2.ghost{background-color:transparent;border-color:rgba(34, 34, 34, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch2.ghost.button:hover{color:rgba(248, 248, 248, 1.00);border-color:rgba(32, 32, 32, 1.00);background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch3{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch3 div,.fn-scheme-swatch3 p{color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch3.switch{background-color:transparent}.fn-scheme-swatch3.switch label::after{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch3.switch input:checked + label{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch3.button:hover{background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch3.ghost{background-color:transparent;border-color:rgba(34, 34, 34, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch3.ghost.button:hover{color:rgba(248, 248, 248, 1.00);border-color:rgba(32, 32, 32, 1.00);background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch4{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch4 div,.fn-scheme-swatch4 p{color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch4.switch{background-color:transparent}.fn-scheme-swatch4.switch label::after{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch4.switch input:checked + label{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch4.switch label::after{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch4.switch input:checked + label{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch4.button:hover{background-color:rgba(235, 235, 235, 1.00)}.fn-scheme-swatch4.ghost{background-color:transparent;border-color:rgba(248, 248, 248, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch4.ghost.button:hover{color:rgba(34, 34, 34, 1.00);border-color:rgba(235, 235, 235, 1.00);background-color:rgba(235, 235, 235, 1.00)}.fn-scheme-swatch5{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch5 div,.fn-scheme-swatch5 p{color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch5.button:hover{background-color:rgba(235, 235, 235, 1.00)}.fn-scheme-swatch5.switch{background-color:transparent}.fn-scheme-swatch5.switch label::after{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch5.switch input:checked + label{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch5.ghost{background-color:transparent;border-color:rgba(248, 248, 248, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch5.ghost.button:hover{color:rgba(34, 34, 34, 1.00);border-color:rgba(235, 235, 235, 1.00);background-color:rgba(235, 235, 235, 1.00)}.fn-scheme-swatch6{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch6 div,.fn-scheme-swatch6 p{color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch6.switch{background-color:transparent}.fn-scheme-swatch6.switch label::after{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch6.switch input:checked + label{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch6.button:hover{background-color:rgba(235, 235, 235, 1.00)}.fn-scheme-swatch6.ghost{background-color:transparent;border-color:rgba(248, 248, 248, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch6.ghost.button:hover{color:rgba(34, 34, 34, 1.00);border-color:rgba(235, 235, 235, 1.00);background-color:rgba(235, 235, 235, 1.00)}
/* Start doo Tab 2 stack each CSS code */#stacks_in_9400wrapper{	position: relative;	-webkit-box-sizing: border-box !important; /* Safari/Chrome, other WebKit */	-moz-box-sizing: border-box !important;    /* Firefox, other Gecko */	box-sizing: border-box !important;         /* Opera/IE 8+ */}#stacks_in_9400 .dooTabContentTitle{	display: none;}ul.stacks_in_9400tabs {	position: relative;	margin: 0 !important;	padding: 0;	float: left;	list-style: none !important;	list-style-type: none !important;	height: 36px;	border-bottom: 1px solid rgba(179, 179, 179, 1.00);	width: 100%;	-webkit-box-sizing: border-box !important; /* Safari/Chrome, other WebKit */	-moz-box-sizing: border-box !important;    /* Firefox, other Gecko */	box-sizing: border-box !important;         /* Opera/IE 8+ */}ul.stacks_in_9400tabs li {	float: left;	margin: 0;	cursor: pointer;	padding: 0px 21px;	height: 35px;	line-height: 35px !important;	border-top: 1px solid rgba(179, 179, 179, 1.00);	border-right: 1px solid rgba(179, 179, 179, 1.00);	/*border-bottom: 1px solid rgba(179, 179, 179, 1.00);*/	border-left: 1px solid rgba(179, 179, 179, 1.00);	background-color: rgba(244, 244, 244, 1.00);	color: rgba(0, 128, 255, 1.00);	overflow: hidden;	position: relative;	margin-left: 4px;	z-index: 1;	-webkit-border-top-left-radius: 4px;	-webkit-border-top-right-radius: 4px;	-moz-border-radius-topleft: 4px;	-moz-border-radius-topright: 4px;	border-top-left-radius: 4px;	border-top-right-radius: 4px;	white-space: nowrap;	font-size: 16px !important;	list-style: none !important;	list-style-type: none !important;	-webkit-box-sizing: border-box !important; /* Safari/Chrome, other WebKit */	-moz-box-sizing: border-box !important;    /* Firefox, other Gecko */	box-sizing: border-box !important;         /* Opera/IE 8+ */}/*.tab_last { border-right: 1px solid ; }*/ul.stacks_in_9400tabs li.tab_first { margin-left: 0px; }ul.stacks_in_9400tabs li:hover {	color: rgba(0, 108, 235, 1.00);}ul.stacks_in_9400tabs li.active {	background-color: rgba(255, 255, 255, 1.00);	color: rgba(51, 51, 51, 1.00);	border-top: 1px solid rgba(179, 179, 179, 1.00);	border-left: 1px solid rgba(179, 179, 179, 1.00);	border-right: 1px solid rgba(179, 179, 179, 1.00);	display: block;	z-index: 10;	-webkit-box-sizing: content-box !important; /* Safari/Chrome, other WebKit */	-moz-box-sizing: content-box !important;    /* Firefox, other Gecko */	box-sizing: content-box !important;         /* Opera/IE 8+ */}.stacks_in_9400tab_container {	position: relative;	border: 1px solid rgba(179, 179, 179, 1.00);	border-top: none;	background: rgba(255, 255, 255, 1.00);	overflow: auto;	-webkit-border-bottom-right-radius: 3px;	-webkit-border-bottom-left-radius: 3px;	-moz-border-radius-bottomright: 3px;	-moz-border-radius-bottomleft: 3px;	border-bottom-right-radius: 3px;	border-bottom-left-radius: 3px;	-webkit-box-sizing: content-box !important; /* Safari/Chrome, other WebKit */	-moz-box-sizing: content-box !important;    /* Firefox, other Gecko */	box-sizing: content-box !important;         /* Opera/IE 8+ */}#stacks_in_9400 .dooTabContent {	padding: 20px;	display: none;}#stacks_in_9400 .tab_drawer_heading { display: none; }@media screen and (max-width: 480px) {	ul.stacks_in_9400tabs {		border-bottom: none;	}	.stacks_in_9400tabs {		display: none;	}	#stacks_in_9400 .tab_drawer_heading {		background-color: rgba(244, 244, 244, 1.00) !important;		color: rgba(0, 128, 255, 1.00) !important;		border-top: 1px solid rgba(179, 179, 179, 1.00);		margin: 0;		padding: 8px 20px;		display: block;		cursor: pointer;		-webkit-touch-callout: none;		-webkit-user-select: none;		-khtml-user-select: none;		-moz-user-select: none;		-ms-user-select: none;		user-select: none;		font-size: 18px !important;	}	.stacks_in_9400tab_container > div:first-child .tab_drawer_heading {		border-top: 0px !important;	}	.stacks_in_9400_active {		background-color: rgba(255, 255, 255, 1.00) !important;		color: rgba(51, 51, 51, 1.00);		border-bottom: 1px solid rgba(179, 179, 179, 1.00);	}	.stacks_in_9400tab_container {	border: 1px solid rgba(179, 179, 179, 1.00) !important;	-webkit-border-radius: 4px;	-moz-border-radius: 4px;	border-radius: 4px;	}}/* End doo Tab 2 stack each CSS code */
#stacks_in_9400 {
	margin: 20px 0px 0px 0px;
}
/* Start doo Tab 2 item stack each CSS code *//* End doo Tab 2 item stack each CSS code */
#stacks_in_9406 {
	font-weight: bolder;
}
/* Start doo Tab 2 item stack each CSS code *//* End doo Tab 2 item stack each CSS code */
#stacks_in_9416 {
	font-weight: bolder;
}
#stacks_in_9301 *, #stacks_in_9301 *:after, #stacks_in_9301 *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; }

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

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

#stacks_in_9301  {
}

#stacks_in_9301 .timeline_item {
	position: relative;
}

#stacks_in_9301 ul.cbp_tmtimeline {
	margin: 0;
}

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

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

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

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

#stacks_in_9301 .cbp_tmtimeline li {
	margin: 0;
}

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

	
	
	
		left: 30%;
	
	
	
	

	margin-left: -10px;
}

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

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

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

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

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

#stacks_in_9301 .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);
	
}

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


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

/* The icons */
#stacks_in_9301 .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;
	
	border-radius: 50%;
	text-align: center;
	top: 8px;

	
	
	
		left: 30%;
	
	
	
	

	margin: 0 0 0 -25px;

	
}

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



	#stacks_in_9301 .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 */


/* Links */
#stacks_in_9301 a,
#stacks_in_9301 a:visited {
	color: #4F9FEE;
}

#stacks_in_9301 a:hover,
#stacks_in_9301 a:active {
	color: #6BBAF1;
}

/* The Line */
#stacks_in_9301 .cbp_tmtimeline:before {
	background: #4B9DF1;
}

/* Labels */
#stacks_in_9301 .cbp_tmtimeline li .cbp_tmtime span.small_label {
	color: #5A5A6D;
}

#stacks_in_9301 .cbp_tmtimeline li .cbp_tmtime span.large_label {
	color: #5A5A6D;
}

/* Bubble & Point */
#stacks_in_9301 .cbp_tmtimeline li .cbp_tmlabel {
	background: #e8e8e8;
	color: #5A5A6D;
}

#stacks_in_9301 .cbp_tmtimeline li .cbp_tmlabel:after {
	border-right-color: #e8e8e8;
}

/* Bubble Label */
#stacks_in_9301 .cbp_tmtimeline li .cbp_tmlabel h3.timeline_label {
	color: #5A5A6D;
	border-bottom: 1px solid #BDBDC3;
}

/* The Icon */
#stacks_in_9301 .cbp_tmtimeline li .cbp_tmicon {
	color: #ffffff !important;
	background: #4B9DF1;
	box-shadow: 0 0 0 8px #67B9F3; /* Border of icon */
}

#stacks_in_9301 .cbp_final_dot {
	background: #4B9DF1;
}

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

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

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

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

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

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

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


	

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

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

	


}

#stacks_in_42063 .cbp_tmlabel {
	background: #00CC33 !important;
	color: #FFFFFF !important;
}

#stacks_in_42063 .cbp_tmlabel:after {
	border-right-color: #00CC33 !important;
}

#stacks_in_42063 .cbp_tmlabel h3.timeline_label { 
	color: #FFFFFF !important;
}

#stacks_in_42063 .cbp_tmicon {
	color: #FFFFFF !important;
	background: #46A4DA !important;
	box-shadow: 0 0 0 8px #AFDCF8 !important; /* Border of icon */
}

	@media screen and (max-width: 47.2em) {

		#stacks_in_42063 .cbp_tmlabel:after {
			border-bottom-color: #00CC33 !important;
		}

	}





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



#stacks_in_42065 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_42065 > .row > .columns{margin-top:0.00rem;margin-bottom:0.00rem}#stacks_in_42065 > .row.divider > .columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(0, 0, 0, 1.00)}
#stacks_in_42067 p,#stacks_in_42067 div{margin-bottom:0}#stacks_in_42067 p,#stacks_in_42067 div,#stacks_in_42067 ul,#stacks_in_42067 ol,#stacks_in_42067 dl{color:rgba(34, 34, 34, 1.00)}#stacks_in_42067 a{color:rgba(0, 140, 186, 1.00)}#stacks_in_42067 a:hover{color:rgba(0, 102, 136, 1.00)}#stacks_in_42067 p,#stacks_in_42067 div,#stacks_in_42067 ul,#stacks_in_42067 ol,#stacks_in_42067 dl{line-height:1.30;font-size:0.90rem}

#stacks_in_42058 .cbp_tmlabel {
	background: #FF6633 !important;
	color: #000000 !important;
}

#stacks_in_42058 .cbp_tmlabel:after {
	border-right-color: #FF6633 !important;
}

#stacks_in_42058 .cbp_tmlabel h3.timeline_label { 
	color: #FFFFFF !important;
}

#stacks_in_42058 .cbp_tmicon {
	color: #FFFFFF !important;
	background: #46A4DA !important;
	box-shadow: 0 0 0 8px #AFDCF8 !important; /* Border of icon */
}

	@media screen and (max-width: 47.2em) {

		#stacks_in_42058 .cbp_tmlabel:after {
			border-bottom-color: #FF6633 !important;
		}

	}





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




#stacks_in_42047 .cbp_tmlabel {
	background: #00CC33 !important;
	color: #FFFFFF !important;
}

#stacks_in_42047 .cbp_tmlabel:after {
	border-right-color: #00CC33 !important;
}

#stacks_in_42047 .cbp_tmlabel h3.timeline_label { 
	color: #FFFFFF !important;
}

#stacks_in_42047 .cbp_tmicon {
	color: #FFFFFF !important;
	background: #46A4DA !important;
	box-shadow: 0 0 0 8px #AFDCF8 !important; /* Border of icon */
}

	@media screen and (max-width: 47.2em) {

		#stacks_in_42047 .cbp_tmlabel:after {
			border-bottom-color: #00CC33 !important;
		}

	}





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



#stacks_in_42054 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_42054 > .row > .columns{margin-top:0.00rem;margin-bottom:0.00rem}#stacks_in_42054 > .row.divider > .columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(0, 0, 0, 1.00)}
#stacks_in_42050 p,#stacks_in_42050 div{margin-bottom:0}#stacks_in_42050 p,#stacks_in_42050 div,#stacks_in_42050 ul,#stacks_in_42050 ol,#stacks_in_42050 dl{color:rgba(34, 34, 34, 1.00)}#stacks_in_42050 a{color:rgba(0, 140, 186, 1.00)}#stacks_in_42050 a:hover{color:rgba(0, 102, 136, 1.00)}#stacks_in_42050 p,#stacks_in_42050 div,#stacks_in_42050 ul,#stacks_in_42050 ol,#stacks_in_42050 dl{line-height:1.30;font-size:0.90rem}

#stacks_in_41318 .cbp_tmlabel {
	background: #6699FF !important;
	color: #FFFFFF !important;
}

#stacks_in_41318 .cbp_tmlabel:after {
	border-right-color: #6699FF !important;
}

#stacks_in_41318 .cbp_tmlabel h3.timeline_label { 
	color: #FFFFFF !important;
}

#stacks_in_41318 .cbp_tmicon {
	color: #FFFFFF !important;
	background: #46A4DA !important;
	box-shadow: 0 0 0 8px #AFDCF8 !important; /* Border of icon */
}

	@media screen and (max-width: 47.2em) {

		#stacks_in_41318 .cbp_tmlabel:after {
			border-bottom-color: #6699FF !important;
		}

	}





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


#stacks_in_41321 p,#stacks_in_41321 div{margin-bottom:0}#stacks_in_41321 p,#stacks_in_41321 div,#stacks_in_41321 ul,#stacks_in_41321 ol,#stacks_in_41321 dl{color:rgba(34, 34, 34, 1.00)}#stacks_in_41321 a{color:rgba(0, 140, 186, 1.00)}#stacks_in_41321 a:hover{color:rgba(0, 102, 136, 1.00)}#stacks_in_41321 p,#stacks_in_41321 div,#stacks_in_41321 ul,#stacks_in_41321 ol,#stacks_in_41321 dl{line-height:1.30;font-size:0.90rem}

#stacks_in_9310 .cbp_tmlabel {
	background: #CCCCCC !important;
	color: #333333 !important;
}

#stacks_in_9310 .cbp_tmlabel:after {
	border-right-color: #CCCCCC !important;
}

#stacks_in_9310 .cbp_tmlabel h3.timeline_label { 
	color: #333333 !important;
}

#stacks_in_9310 .cbp_tmicon {
	color: #FFFFFF !important;
	background: #46A4DA !important;
	box-shadow: 0 0 0 8px #AFDCF8 !important; /* Border of icon */
}

	@media screen and (max-width: 47.2em) {

		#stacks_in_9310 .cbp_tmlabel:after {
			border-bottom-color: #CCCCCC !important;
		}

	}





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



#stacks_in_9254 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_9254 > .row > .columns{margin-top:0.00rem;margin-bottom:0.00rem}#stacks_in_9254 > .row.divider > .columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(0, 0, 0, 1.00)}
/* Start Reflect stack CSS code */#stacks_in_9403 img{	max-width: 100%;	height: auto;}#stacks_in_9403 canvas{	margin-top: 2px;}/* End Reflect stack CSS code */#stacks_in_9314 p,#stacks_in_9314 div{margin-bottom:0}#stacks_in_9314 p,#stacks_in_9314 div,#stacks_in_9314 ul,#stacks_in_9314 ol,#stacks_in_9314 dl{line-height:1.50;font-size:0.90rem}

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

#stacks_in_35182 .cbp_tmlabel {
	background: #6699FF !important;
	color: #FFFFFF !important;
}

#stacks_in_35182 .cbp_tmlabel:after {
	border-right-color: #6699FF !important;
}

#stacks_in_35182 .cbp_tmlabel h3.timeline_label { 
	color: #FFFFFF !important;
}

#stacks_in_35182 .cbp_tmicon {
	color: #FFFFFF !important;
	background: #46A4DA !important;
	box-shadow: 0 0 0 8px #AFDCF8 !important; /* Border of icon */
}

	@media screen and (max-width: 47.2em) {

		#stacks_in_35182 .cbp_tmlabel:after {
			border-bottom-color: #6699FF !important;
		}

	}





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


#stacks_in_35185 p,#stacks_in_35185 div{margin-bottom:0}#stacks_in_35185 p,#stacks_in_35185 div,#stacks_in_35185 ul,#stacks_in_35185 ol,#stacks_in_35185 dl{color:rgba(34, 34, 34, 1.00)}#stacks_in_35185 a{color:rgba(0, 140, 186, 1.00)}#stacks_in_35185 a:hover{color:rgba(0, 102, 136, 1.00)}#stacks_in_35185 p,#stacks_in_35185 div,#stacks_in_35185 ul,#stacks_in_35185 ol,#stacks_in_35185 dl{line-height:1.30;font-size:0.90rem}

#stacks_in_9328 .cbp_tmlabel {
	background: #6699FF !important;
	color: #FFFFFF !important;
}

#stacks_in_9328 .cbp_tmlabel:after {
	border-right-color: #6699FF !important;
}

#stacks_in_9328 .cbp_tmlabel h3.timeline_label { 
	color: #FFFFFF !important;
}

#stacks_in_9328 .cbp_tmicon {
	color: #FFFFFF !important;
	background: #46A4DA !important;
	box-shadow: 0 0 0 8px #AFDCF8 !important; /* Border of icon */
}

	@media screen and (max-width: 47.2em) {

		#stacks_in_9328 .cbp_tmlabel:after {
			border-bottom-color: #6699FF !important;
		}

	}





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


#stacks_in_35191 p,#stacks_in_35191 div{margin-bottom:0}#stacks_in_35191 p,#stacks_in_35191 div,#stacks_in_35191 ul,#stacks_in_35191 ol,#stacks_in_35191 dl{color:rgba(34, 34, 34, 1.00)}#stacks_in_35191 a{color:rgba(0, 140, 186, 1.00)}#stacks_in_35191 a:hover{color:rgba(0, 102, 136, 1.00)}#stacks_in_35191 p,#stacks_in_35191 div,#stacks_in_35191 ul,#stacks_in_35191 ol,#stacks_in_35191 dl{line-height:1.30;font-size:0.90rem}

#stacks_in_9407 .cbp_tmlabel {
	background: #6699FF !important;
	color: #000000 !important;
}

#stacks_in_9407 .cbp_tmlabel:after {
	border-right-color: #6699FF !important;
}

#stacks_in_9407 .cbp_tmlabel h3.timeline_label { 
	color: #FFFFFF !important;
}

#stacks_in_9407 .cbp_tmicon {
	color: #FFFFFF !important;
	background: #46A4DA !important;
	box-shadow: 0 0 0 8px #AFDCF8 !important; /* Border of icon */
}

	@media screen and (max-width: 47.2em) {

		#stacks_in_9407 .cbp_tmlabel:after {
			border-bottom-color: #6699FF !important;
		}

	}





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


#stacks_in_35195 p,#stacks_in_35195 div{margin-bottom:0}#stacks_in_35195 p,#stacks_in_35195 div,#stacks_in_35195 ul,#stacks_in_35195 ol,#stacks_in_35195 dl{color:rgba(34, 34, 34, 1.00)}#stacks_in_35195 a{color:rgba(0, 140, 186, 1.00)}#stacks_in_35195 a:hover{color:rgba(0, 102, 136, 1.00)}#stacks_in_35195 p,#stacks_in_35195 div,#stacks_in_35195 ul,#stacks_in_35195 ol,#stacks_in_35195 dl{line-height:1.30;font-size:0.90rem}

#stacks_in_9331 .cbp_tmlabel {
	background: #FF6633 !important;
	color: #000000 !important;
}

#stacks_in_9331 .cbp_tmlabel:after {
	border-right-color: #FF6633 !important;
}

#stacks_in_9331 .cbp_tmlabel h3.timeline_label { 
	color: #FFFFFF !important;
}

#stacks_in_9331 .cbp_tmicon {
	color: #FFFFFF !important;
	background: #46A4DA !important;
	box-shadow: 0 0 0 8px #AFDCF8 !important; /* Border of icon */
}

	@media screen and (max-width: 47.2em) {

		#stacks_in_9331 .cbp_tmlabel:after {
			border-bottom-color: #FF6633 !important;
		}

	}





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



#stacks_in_9334 .cbp_tmlabel {
	background: #FF6633 !important;
	color: #000000 !important;
}

#stacks_in_9334 .cbp_tmlabel:after {
	border-right-color: #FF6633 !important;
}

#stacks_in_9334 .cbp_tmlabel h3.timeline_label { 
	color: #FFFFFF !important;
}

#stacks_in_9334 .cbp_tmicon {
	color: #FFFFFF !important;
	background: #46A4DA !important;
	box-shadow: 0 0 0 8px #AFDCF8 !important; /* Border of icon */
}

	@media screen and (max-width: 47.2em) {

		#stacks_in_9334 .cbp_tmlabel:after {
			border-bottom-color: #FF6633 !important;
		}

	}





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



#stacks_in_9339 .cbp_tmlabel {
	background: #CCCCCC !important;
	color: #333333 !important;
}

#stacks_in_9339 .cbp_tmlabel:after {
	border-right-color: #CCCCCC !important;
}

#stacks_in_9339 .cbp_tmlabel h3.timeline_label { 
	color: #333333 !important;
}

#stacks_in_9339 .cbp_tmicon {
	color: #FFFFFF !important;
	background: #46A4DA !important;
	box-shadow: 0 0 0 8px #AFDCF8 !important; /* Border of icon */
}

	@media screen and (max-width: 47.2em) {

		#stacks_in_9339 .cbp_tmlabel:after {
			border-bottom-color: #CCCCCC !important;
		}

	}





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



#stacks_in_9257 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_9257 > .row > .columns{margin-top:0.00rem;margin-bottom:0.00rem}#stacks_in_9257 > .row.divider > .columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(0, 0, 0, 1.00)}
/* Start Reflect stack CSS code */#stacks_in_9411 img{	max-width: 100%;	height: auto;}#stacks_in_9411 canvas{	margin-top: 2px;}/* End Reflect stack CSS code */#stacks_in_9357 p,#stacks_in_9357 div{margin-bottom:0}#stacks_in_9357 p,#stacks_in_9357 div,#stacks_in_9357 ul,#stacks_in_9357 ol,#stacks_in_9357 dl{line-height:1.50;font-size:0.90rem}

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

#stacks_in_9359 .cbp_tmlabel {
	background: #6699FF !important;
	color: #000000 !important;
}

#stacks_in_9359 .cbp_tmlabel:after {
	border-right-color: #6699FF !important;
}

#stacks_in_9359 .cbp_tmlabel h3.timeline_label { 
	color: #FFFFFF !important;
}

#stacks_in_9359 .cbp_tmicon {
	color: #FFFFFF !important;
	background: #46A4DA !important;
	box-shadow: 0 0 0 8px #AFDCF8 !important; /* Border of icon */
}

	@media screen and (max-width: 47.2em) {

		#stacks_in_9359 .cbp_tmlabel:after {
			border-bottom-color: #6699FF !important;
		}

	}





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


#stacks_in_35199 p,#stacks_in_35199 div{margin-bottom:0}#stacks_in_35199 p,#stacks_in_35199 div,#stacks_in_35199 ul,#stacks_in_35199 ol,#stacks_in_35199 dl{color:rgba(34, 34, 34, 1.00)}#stacks_in_35199 a{color:rgba(0, 140, 186, 1.00)}#stacks_in_35199 a:hover{color:rgba(0, 102, 136, 1.00)}#stacks_in_35199 p,#stacks_in_35199 div,#stacks_in_35199 ul,#stacks_in_35199 ol,#stacks_in_35199 dl{line-height:1.30;font-size:0.90rem}

#stacks_in_9363 .cbp_tmlabel {
	background: #CCCCCC !important;
	color: #333333 !important;
}

#stacks_in_9363 .cbp_tmlabel:after {
	border-right-color: #CCCCCC !important;
}

#stacks_in_9363 .cbp_tmlabel h3.timeline_label { 
	color: #333333 !important;
}

#stacks_in_9363 .cbp_tmicon {
	color: #FFFFFF !important;
	background: #46A4DA !important;
	box-shadow: 0 0 0 8px #AFDCF8 !important; /* Border of icon */
}

	@media screen and (max-width: 47.2em) {

		#stacks_in_9363 .cbp_tmlabel:after {
			border-bottom-color: #CCCCCC !important;
		}

	}





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



#stacks_in_9265 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_9265 > .row > .columns{margin-top:0.00rem;margin-bottom:0.00rem}#stacks_in_9265 > .row.divider > .columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(0, 0, 0, 1.00)}
/* Start Reflect stack CSS code */#stacks_in_9422 img{	max-width: 100%;	height: auto;}#stacks_in_9422 canvas{	margin-top: 2px;}/* End Reflect stack CSS code */#stacks_in_9376 p,#stacks_in_9376 div{margin-bottom:0}#stacks_in_9376 p,#stacks_in_9376 div,#stacks_in_9376 ul,#stacks_in_9376 ol,#stacks_in_9376 dl{line-height:1.50;font-size:0.90rem}

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

#stacks_in_9378 .cbp_tmlabel {
	background: #CCCCCC !important;
	color: #333333 !important;
}

#stacks_in_9378 .cbp_tmlabel:after {
	border-right-color: #CCCCCC !important;
}

#stacks_in_9378 .cbp_tmlabel h3.timeline_label { 
	color: #333333 !important;
}

#stacks_in_9378 .cbp_tmicon {
	color: #FFFFFF !important;
	background: #46A4DA !important;
	box-shadow: 0 0 0 8px #AFDCF8 !important; /* Border of icon */
}

	@media screen and (max-width: 47.2em) {

		#stacks_in_9378 .cbp_tmlabel:after {
			border-bottom-color: #CCCCCC !important;
		}

	}





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



#stacks_in_9268 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_9268 > .row > .columns{margin-top:0.00rem;margin-bottom:0.00rem}#stacks_in_9268 > .row.divider > .columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(0, 0, 0, 1.00)}
/* Start Reflect stack CSS code */#stacks_in_9430 img{	max-width: 100%;	height: auto;}#stacks_in_9430 canvas{	margin-top: 2px;}/* End Reflect stack CSS code */#stacks_in_9391 p,#stacks_in_9391 div{margin-bottom:0}#stacks_in_9391 p,#stacks_in_9391 div,#stacks_in_9391 ul,#stacks_in_9391 ol,#stacks_in_9391 dl{line-height:1.50;font-size:0.90rem}

#stacks_in_9391 {
	margin: 5px 0px 0px 0px;
}
#stacks_in_5487_4909{  padding-right:3.00%;padding-left:3.00%; }#stacks_in_5487_4909>.jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:5px;background-attachment:scroll;background-clip:padding-box!important;background-origin:padding-box!important}#stacks_in_5487_4909>.jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_5487_4909>.jack.width-static{width:500px}#stacks_in_5487_4909>.jack.width-flexible{width:100%}#stacks_in_5487_4909>.jack.margin-detailed{margin:5.00% 3.00% 5.00% 3.00%}#stacks_in_5487_4909>.jack.padding-detailed{padding:5.00% 3.00% 5.00% 3.00%}#stacks_in_5487_4909>.jack.rotate{-webkit-transform:rotate(5deg);-moz-transform:rotate(5deg);-ms-transform:rotate(5deg);-o-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_5487_4909>.jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_5487_4909>.jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_5487_4909>.jack.border-image{-webkit-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_5487_4909>.jack::after{border-radius:5px}#stacks_in_5487_4909>.jack.border-detailed-radius,#stacks_in_5487_4909>.jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_5487_4909>.jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;-moz-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_5487_4909>.jack.bg-color{background-color:#FFFFFF}#stacks_in_5487_4909>.jack.bg-gradient{background-color:#89C5FF}#stacks_in_5487_4909>.jack.bg-image:not(.glass){background-image:url();background-repeat:repeat; background-position:left top;}#stacks_in_5487_4909>.jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_5487_4909>.jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_5487_4909>.jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_5487_4909>.jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_5487_4909>.jack.bg-image:not(.glass){}#stacks_in_5487_4909>.jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_5487_4909>.jack.bg-image.glass.after,#stacks_in_5487_4909>.jack.bg-image.glass::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box!important;background-origin:padding-box!important;padding:0px;background-image:url();background-repeat:repeat; background-position:left top;}#stacks_in_5487_4909>.jack.bg-image.glass.after.padding-detailed,#stacks_in_5487_4909>.jack.bg-image.padding-detailed.glass::after{padding:5.00% 3.00% 5.00% 3.00%}#stacks_in_5487_4909>.jack.bg-image.glass.after.bg-size-static,#stacks_in_5487_4909>.jack.bg-image.bg-size-static.glass::after{background-size:300px}#stacks_in_5487_4909>.jack.bg-image.glass.after.bg-size-fluid,#stacks_in_5487_4909>.jack.bg-image.bg-size-fluid.glass::after{background-size:100%}#stacks_in_5487_4909>.jack.bg-image.glass.after.bg-warehouse,#stacks_in_5487_4909>.jack.bg-image.bg-warehouse.glass::after{background-image:url()}
#stacks_in_5487_4909>.jack.bg-image.glass.after.bg-fallback,#stacks_in_5487_4909>.jack.bg-image.bg-fallback.glass::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_5487_4909>.jack.bg-image.glass.after,#stacks_in_5487_4909>.jack.bg-image.glass::after{}#stacks_in_5487_4909>.jack.bg-image.glass.after.bg-warehouse,#stacks_in_5487_4909>.jack.bg-image.bg-warehouse.glass::after{}}#stacks_in_5487_4909>.jack.drop-shadow{box-shadow:0px 3px 22px -6px rgba(0,0,0,0.50)}#stacks_in_5487_4909>.jack.inset-shadow{box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_5487_4909>.jack.drop-shadow.inset-shadow{box-shadow:0px 3px 22px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_5487_4909>.jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);-ms-transform:rotate(-3deg);-o-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_5487_4909>.jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-ms-transform:rotate(3deg);-o-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_5487_4909>.jack.peek-shadow::before,#stacks_in_5487_4909>.jack.peek-shadow::after{box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px/10px}#stacks_in_5487_4909>.jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);-moz-transform:skew(8deg) rotate(3deg);-ms-transform:skew(8deg) rotate(3deg);-o-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)} #stacks_in_5487_4909>.jack{overflow:visible;}#stacks_in_5487_4909>.jack.height-static{height:100px}#stacks_in_5487_4909>.jack.height-minmax{min-height:100px;max-height:800px} 
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_5487_4911Calligrapher{			font-size: 300% !important;			color: #666666 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_5487_4911Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_5487_4911Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_5487_4911Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_5487_4911Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_5487_4911Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_5487_4911Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_5487_4911Calligrapher h6, .stacks_in_5487_4911Calligrapher h5, .stacks_in_5487_4911Calligrapher h4, .stacks_in_5487_4911Calligrapher h3, .stacks_in_5487_4911Calligrapher h2, .stacks_in_5487_4911Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_5487_4911Calligrapher, .stacks_in_5487_4911Calligrapher h1, .stacks_in_5487_4911Calligrapher h2, .stacks_in_5487_4911Calligrapher h3, .stacks_in_5487_4911Calligrapher h4, .stacks_in_5487_4911Calligrapher h5, .stacks_in_5487_4911Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_5487_4911targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_5487_4911Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_5487_4911Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_5487_4911Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_5487_4911Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_5487_4915{overflow:hidden}#stacks_in_5487_4915 hr{opacity:1.00;border-top-style:double;border-top-width:3px;margin:0.00rem 0;}#stacks_in_5487_4915 hr.custom{border-color:rgba(221, 221, 221, 1.00)}

#stacks_in_5487_4915 {
	margin: 20px 25px 0px 25px;
}
#stacks_in_5487_4916{  padding-right:25.00px;padding-left:25.00px; }#stacks_in_5487_4916>.jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box!important;background-origin:padding-box!important}#stacks_in_5487_4916>.jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_5487_4916>.jack.width-static{width:500px}#stacks_in_5487_4916>.jack.width-flexible{width:100%}#stacks_in_5487_4916>.jack.margin-detailed{margin:0.00px 25.00px 20.00px 25.00px}#stacks_in_5487_4916>.jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_5487_4916>.jack.rotate{-webkit-transform:rotate(5deg);-moz-transform:rotate(5deg);-ms-transform:rotate(5deg);-o-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_5487_4916>.jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_5487_4916>.jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_5487_4916>.jack.border-image{-webkit-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_5487_4916>.jack::after{border-radius:0px}#stacks_in_5487_4916>.jack.border-detailed-radius,#stacks_in_5487_4916>.jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_5487_4916>.jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;-moz-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_5487_4916>.jack.bg-color{background-color:#89C5FF}#stacks_in_5487_4916>.jack.bg-gradient{background-color:#89C5FF}#stacks_in_5487_4916>.jack.bg-image:not(.glass){background-image:url();background-repeat:repeat; background-position:left top;}#stacks_in_5487_4916>.jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_5487_4916>.jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_5487_4916>.jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_5487_4916>.jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_5487_4916>.jack.bg-image:not(.glass){}#stacks_in_5487_4916>.jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_5487_4916>.jack.bg-image.glass.after,#stacks_in_5487_4916>.jack.bg-image.glass::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box!important;background-origin:padding-box!important;padding:0px;background-image:url();background-repeat:repeat; background-position:left top;}#stacks_in_5487_4916>.jack.bg-image.glass.after.padding-detailed,#stacks_in_5487_4916>.jack.bg-image.padding-detailed.glass::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_5487_4916>.jack.bg-image.glass.after.bg-size-static,#stacks_in_5487_4916>.jack.bg-image.bg-size-static.glass::after{background-size:300px}#stacks_in_5487_4916>.jack.bg-image.glass.after.bg-size-fluid,#stacks_in_5487_4916>.jack.bg-image.bg-size-fluid.glass::after{background-size:100%}#stacks_in_5487_4916>.jack.bg-image.glass.after.bg-warehouse,#stacks_in_5487_4916>.jack.bg-image.bg-warehouse.glass::after{background-image:url()}
#stacks_in_5487_4916>.jack.bg-image.glass.after.bg-fallback,#stacks_in_5487_4916>.jack.bg-image.bg-fallback.glass::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_5487_4916>.jack.bg-image.glass.after,#stacks_in_5487_4916>.jack.bg-image.glass::after{}#stacks_in_5487_4916>.jack.bg-image.glass.after.bg-warehouse,#stacks_in_5487_4916>.jack.bg-image.bg-warehouse.glass::after{}}#stacks_in_5487_4916>.jack.drop-shadow{box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_5487_4916>.jack.inset-shadow{box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_5487_4916>.jack.drop-shadow.inset-shadow{box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_5487_4916>.jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);-ms-transform:rotate(-3deg);-o-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_5487_4916>.jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-ms-transform:rotate(3deg);-o-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_5487_4916>.jack.peek-shadow::before,#stacks_in_5487_4916>.jack.peek-shadow::after{box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px/10px}#stacks_in_5487_4916>.jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);-moz-transform:skew(8deg) rotate(3deg);-ms-transform:skew(8deg) rotate(3deg);-o-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)} #stacks_in_5487_4916>.jack{overflow:visible;}#stacks_in_5487_4916>.jack.height-static{height:100px}#stacks_in_5487_4916>.jack.height-minmax{min-height:100px;max-height:800px} 
#stacks_in_3157_3234 .menu-hide{display:none}#stacks_in_3157_3234 aside.fixed{position:fixed}#stacks_in_3157_3234 .off-canvas-list{width:100%}#stacks_in_3157_3234 .off-canvas-list ul{list-style:none;margin:0;height:100%}#stacks_in_3157_3234 .tab-bar{background-color:rgba(242, 242, 242, 1.00);color:rgba(51, 51, 51, 1.00)}#stacks_in_3157_3234 .tab-bar.fixed{position:fixed;top:0;left:0;z-index:999}#stacks_in_3157_3234 .tab-bar.fixed .left-off-canvas-menu,#stacks_in_3157_3234 .tab-bar.fixed .right-off-canvas-menu{position:fixed}#stacks_in_3157_3234 .tab-bar h1{color:rgba(51, 51, 51, 1.00)}#stacks_in_3157_3234 .tab-bar img{vertical-align:top;height:45px;width:auto;margin-right:20px}#stacks_in_3157_3234 .tab-bar a.menu-icon span::after{-webkit-box-shadow:0 0px 0 1px rgba(51, 51, 51, 1.00),0 7px 0 1px rgba(51, 51, 51, 1.00),0 14px 0 1px rgba(51, 51, 51, 1.00);box-shadow:0 0px 0 1px rgba(51, 51, 51, 1.00),0 7px 0 1px rgba(51, 51, 51, 1.00),0 14px 0 1px rgba(51, 51, 51, 1.00)}#stacks_in_3157_3234 .tab-bar .left-small,#stacks_in_3157_3234 .tab-bar .right-small{border-color:rgba(255,255,255,0.25)}#stacks_in_3157_3234 .inner-wrap{z-index:10}#stacks_in_3157_3234 .move-right > .inner-wrap{-webkit-transform:translate3d(23.50rem,0,0);transform:translate3d(23.50rem,0,0)}#stacks_in_3157_3234 .move-left > .inner-wrap{-webkit-transform:translate3d(-23.50rem,0,0);transform:translate3d(-23.50rem,0,0)}#stacks_in_3157_3234 .exit-off-canvas{margin:0;padding:0;position:absolute;width:100%;height:100%}#stacks_in_3157_3234 .exit-off-canvas,#stacks_in_3157_3234 .exit-off-canvas:hover{background:rgba(0,0,0,0.1)}#stacks_in_3157_3234 .move-right .exit-off-canvas{-webkit-box-shadow:-1px 0 5px rgba(0,0,0,0.5);box-shadow:-1px 0 5px rgba(0,0,0,0.5)}#stacks_in_3157_3234 .move-left .exit-off-canvas{-webkit-box-shadow:1px 0 5px rgba(0,0,0,0.5);box-shadow:1px 0 5px rgba(0,0,0,0.5)}#stacks_in_3157_3234 .left-off-canvas-menu,#stacks_in_3157_3234 .right-off-canvas-menu{top:0;height:100%;overflow-y:auto;z-index:0;-webkit-transition:-webkit-transform 500ms ease;transition:-webkit-transform 500ms ease;transition:transform 500ms ease;transition:transform 500ms ease,-webkit-transform 500ms ease}#stacks_in_3157_3234 .right-off-canvas-menu{-webkit-transform:translateX(100%);transform:translateX(100%);right:0;left:auto}#stacks_in_3157_3234 .left-off-canvas-menu{-webkit-transform:translateX(-100%);transform:translateX(-100%);left:0}#stacks_in_3157_3234 .move-right .left-off-canvas-menu,#stacks_in_3157_3234 .move-left .right-off-canvas-menu{-webkit-transform:translateX(0);transform:translateX(0)}#stacks_in_3157_3234 .left-off-canvas-menu,#stacks_in_3157_3234 .right-off-canvas-menu,#stacks_in_3157_3234 .left-submenu,#stacks_in_3157_3234 .right-submenu{width:23.50rem;background-color:rgba(204, 204, 204, 1.00);color:rgba(0, 0, 0, 1.00)}#stacks_in_3157_3234 .left-off-canvas-menu:not(.menu-slice) header,#stacks_in_3157_3234 .right-off-canvas-menu:not(.menu-slice) header,#stacks_in_3157_3234 .left-submenu:not(.menu-slice) header,#stacks_in_3157_3234 .right-submenu:not(.menu-slice) header{display:inline-block}#stacks_in_3157_3234 .left-off-canvas-menu:not(.menu-slice) label,#stacks_in_3157_3234 .right-off-canvas-menu:not(.menu-slice) label,#stacks_in_3157_3234 .left-submenu:not(.menu-slice) label,#stacks_in_3157_3234 .right-submenu:not(.menu-slice) label{background-color:rgba(183, 183, 183, 1.00);color:rgba(0, 0, 0, 1.00);border-color:transparent}#stacks_in_3157_3234 .left-off-canvas-menu:not(.menu-slice) .back a,#stacks_in_3157_3234 .right-off-canvas-menu:not(.menu-slice) .back a,#stacks_in_3157_3234 .left-submenu:not(.menu-slice) .back a,#stacks_in_3157_3234 .right-submenu:not(.menu-slice) .back a{color:rgba(0, 0, 0, 1.00);background:rgba(183, 183, 183, 1.00)}#stacks_in_3157_3234 .left-off-canvas-menu:not(.menu-slice) a:not(.button),#stacks_in_3157_3234 .right-off-canvas-menu:not(.menu-slice) a:not(.button),#stacks_in_3157_3234 .left-submenu:not(.menu-slice) a:not(.button),#stacks_in_3157_3234 .right-submenu:not(.menu-slice) a:not(.button){color:rgba(0, 0, 0, 1.00);border-color:rgba(255,255,255,0.25)}#stacks_in_3157_3234 .left-off-canvas-menu:not(.menu-slice) a:not(.button):hover,#stacks_in_3157_3234 .right-off-canvas-menu:not(.menu-slice) a:not(.button):hover,#stacks_in_3157_3234 .left-submenu:not(.menu-slice) a:not(.button):hover,#stacks_in_3157_3234 .right-submenu:not(.menu-slice) a:not(.button):hover{background-color:rgba(183, 183, 183, 1.00);color:rgba(0, 0, 0, 1.00)}#stacks_in_3157_3234 .left-off-canvas-menu:not(.menu-slice) button,#stacks_in_3157_3234 .right-off-canvas-menu:not(.menu-slice) button,#stacks_in_3157_3234 .left-submenu:not(.menu-slice) button,#stacks_in_3157_3234 .right-submenu:not(.menu-slice) button{display:block;margin:0 auto}#stacks_in_3157_3234 .darkAccents .tab-bar .left-small,#stacks_in_3157_3234 .darkAccents .tab-bar .right-small{border-color:rgba(0,0,0,0.25)}#stacks_in_3157_3234 .darkAccents .left-off-canvas-menu .has-submenu > label,#stacks_in_3157_3234 .darkAccents .right-off-canvas-menu .has-submenu > label{border-bottom:1px solid rgba(0,0,0,0.25)}#stacks_in_3157_3234 .darkAccents .left-off-canvas-menu label,#stacks_in_3157_3234 .darkAccents .right-off-canvas-menu label{background-color:rgba(244, 244, 244, 1.00);color:rgba(0, 0, 0, 1.00);border-color:rgba(255,255,255,0.25)}#stacks_in_3157_3234 .darkAccents .left-off-canvas-menu a,#stacks_in_3157_3234 .darkAccents .right-off-canvas-menu a{border-color:rgba(0,0,0,0.25)}#stacks_in_3157_3234 .hideDividers .left-off-canvas-menu a,#stacks_in_3157_3234 .hideDividers .left-off-canvas-menu label,#stacks_in_3157_3234 .hideDividers .left-off-canvas-menu .has-submenu > label,#stacks_in_3157_3234 .hideDividers .right-off-canvas-menu a,#stacks_in_3157_3234 .hideDividers .right-off-canvas-menu label,#stacks_in_3157_3234 .hideDividers .right-off-canvas-menu .has-submenu > label{border:none}#stacks_in_3157_3234 .hideShadow .exit-off-canvas{-webkit-box-shadow:none !important;box-shadow:none !important}.stacks_top > div > #stacks_in_3157_3234 .left-off-canvas-menu,.stacks_top > div > #stacks_in_3157_3234 .right-off-canvas-menu{position:fixed}

#stacks_in_3157_3234 {
	background-color: rgba(242, 242, 242, 1.00);
}
#stacks_in_3157_4297{  padding-right:12.00px;padding-left:12.00px; }#stacks_in_3157_4297>.jack{margin:0px;padding:6px;border-color:#666666;border-width:0px;border-style:none;border-radius:5px;background-attachment:scroll;background-clip:padding-box!important;background-origin:padding-box!important}#stacks_in_3157_4297>.jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_3157_4297>.jack.width-static{width:500px}#stacks_in_3157_4297>.jack.width-flexible{width:100%}#stacks_in_3157_4297>.jack.margin-detailed{margin:10.00px 12.00px 10.00px 12.00px}#stacks_in_3157_4297>.jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_3157_4297>.jack.rotate{-webkit-transform:rotate(5deg);-moz-transform:rotate(5deg);-ms-transform:rotate(5deg);-o-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_3157_4297>.jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_3157_4297>.jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_3157_4297>.jack.border-image{-webkit-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_3157_4297>.jack::after{border-radius:5px}#stacks_in_3157_4297>.jack.border-detailed-radius,#stacks_in_3157_4297>.jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_3157_4297>.jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;-moz-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_3157_4297>.jack.bg-color{background-color:#89C5FF}#stacks_in_3157_4297>.jack.bg-gradient{background-color:#F2F2F2}#stacks_in_3157_4297>.jack.bg-image:not(.glass){background-image:url();background-repeat:repeat; background-position:left top;}#stacks_in_3157_4297>.jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_3157_4297>.jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_3157_4297>.jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_3157_4297>.jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_3157_4297>.jack.bg-image:not(.glass){}#stacks_in_3157_4297>.jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_3157_4297>.jack.bg-image.glass.after,#stacks_in_3157_4297>.jack.bg-image.glass::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box!important;background-origin:padding-box!important;padding:6px;background-image:url();background-repeat:repeat; background-position:left top;}#stacks_in_3157_4297>.jack.bg-image.glass.after.padding-detailed,#stacks_in_3157_4297>.jack.bg-image.padding-detailed.glass::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_3157_4297>.jack.bg-image.glass.after.bg-size-static,#stacks_in_3157_4297>.jack.bg-image.bg-size-static.glass::after{background-size:300px}#stacks_in_3157_4297>.jack.bg-image.glass.after.bg-size-fluid,#stacks_in_3157_4297>.jack.bg-image.bg-size-fluid.glass::after{background-size:100%}#stacks_in_3157_4297>.jack.bg-image.glass.after.bg-warehouse,#stacks_in_3157_4297>.jack.bg-image.bg-warehouse.glass::after{background-image:url()}
#stacks_in_3157_4297>.jack.bg-image.glass.after.bg-fallback,#stacks_in_3157_4297>.jack.bg-image.bg-fallback.glass::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_3157_4297>.jack.bg-image.glass.after,#stacks_in_3157_4297>.jack.bg-image.glass::after{}#stacks_in_3157_4297>.jack.bg-image.glass.after.bg-warehouse,#stacks_in_3157_4297>.jack.bg-image.bg-warehouse.glass::after{}}#stacks_in_3157_4297>.jack.drop-shadow{box-shadow:0px 4px 26px -6px rgba(0,0,0,0.50)}#stacks_in_3157_4297>.jack.inset-shadow{box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_3157_4297>.jack.drop-shadow.inset-shadow{box-shadow:0px 4px 26px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_3157_4297>.jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;box-shadow:0px 30px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);-ms-transform:rotate(-3deg);-o-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_3157_4297>.jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;box-shadow:0px 30px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-ms-transform:rotate(3deg);-o-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_3157_4297>.jack.peek-shadow::before,#stacks_in_3157_4297>.jack.peek-shadow::after{box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px/10px}#stacks_in_3157_4297>.jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);-moz-transform:skew(8deg) rotate(3deg);-ms-transform:skew(8deg) rotate(3deg);-o-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)} #stacks_in_3157_4297>.jack{overflow:visible;}#stacks_in_3157_4297>.jack.height-static{height:100px}#stacks_in_3157_4297>.jack.height-minmax{min-height:100px;max-height:800px} 
#stacks_in_3157_4296 a{display:block}#stacks_in_3157_4296 img{}

#stacks_in_3157_6956 {
	margin: 20px 0px 0px 0px;
}
#stacks_in_3157_6956_6957{  padding-right:12.00px;padding-left:12.00px; }#stacks_in_3157_6956_6957>.jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box!important;background-origin:padding-box!important}#stacks_in_3157_6956_6957>.jack.width-minmax{min-width:23rem;max-width:23rem}#stacks_in_3157_6956_6957>.jack.width-static{width:500px}#stacks_in_3157_6956_6957>.jack.width-flexible{width:100%}#stacks_in_3157_6956_6957>.jack.margin-detailed{margin:0.00px 12.00px 0.00px 12.00px}#stacks_in_3157_6956_6957>.jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_3157_6956_6957>.jack.rotate{-webkit-transform:rotate(5deg);-moz-transform:rotate(5deg);-ms-transform:rotate(5deg);-o-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_3157_6956_6957>.jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_3157_6956_6957>.jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_3157_6956_6957>.jack.border-image{-webkit-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_3157_6956_6957>.jack::after{border-radius:0px}#stacks_in_3157_6956_6957>.jack.border-detailed-radius,#stacks_in_3157_6956_6957>.jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_3157_6956_6957>.jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;-moz-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_3157_6956_6957>.jack.bg-color{background-color:#89C5FF}#stacks_in_3157_6956_6957>.jack.bg-gradient{background-color:#89C5FF}#stacks_in_3157_6956_6957>.jack.bg-image:not(.glass){background-image:url();background-repeat:repeat; background-position:left top;}#stacks_in_3157_6956_6957>.jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_3157_6956_6957>.jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_3157_6956_6957>.jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_3157_6956_6957>.jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_3157_6956_6957>.jack.bg-image:not(.glass){}#stacks_in_3157_6956_6957>.jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_3157_6956_6957>.jack.bg-image.glass.after,#stacks_in_3157_6956_6957>.jack.bg-image.glass::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box!important;background-origin:padding-box!important;padding:0px;background-image:url();background-repeat:repeat; background-position:left top;}#stacks_in_3157_6956_6957>.jack.bg-image.glass.after.padding-detailed,#stacks_in_3157_6956_6957>.jack.bg-image.padding-detailed.glass::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_3157_6956_6957>.jack.bg-image.glass.after.bg-size-static,#stacks_in_3157_6956_6957>.jack.bg-image.bg-size-static.glass::after{background-size:300px}#stacks_in_3157_6956_6957>.jack.bg-image.glass.after.bg-size-fluid,#stacks_in_3157_6956_6957>.jack.bg-image.bg-size-fluid.glass::after{background-size:100%}#stacks_in_3157_6956_6957>.jack.bg-image.glass.after.bg-warehouse,#stacks_in_3157_6956_6957>.jack.bg-image.bg-warehouse.glass::after{background-image:url()}
#stacks_in_3157_6956_6957>.jack.bg-image.glass.after.bg-fallback,#stacks_in_3157_6956_6957>.jack.bg-image.bg-fallback.glass::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_3157_6956_6957>.jack.bg-image.glass.after,#stacks_in_3157_6956_6957>.jack.bg-image.glass::after{}#stacks_in_3157_6956_6957>.jack.bg-image.glass.after.bg-warehouse,#stacks_in_3157_6956_6957>.jack.bg-image.bg-warehouse.glass::after{}}#stacks_in_3157_6956_6957>.jack.drop-shadow{box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_3157_6956_6957>.jack.inset-shadow{box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_3157_6956_6957>.jack.drop-shadow.inset-shadow{box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_3157_6956_6957>.jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);-ms-transform:rotate(-3deg);-o-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_3157_6956_6957>.jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-ms-transform:rotate(3deg);-o-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_3157_6956_6957>.jack.peek-shadow::before,#stacks_in_3157_6956_6957>.jack.peek-shadow::after{box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px/10px}#stacks_in_3157_6956_6957>.jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);-moz-transform:skew(8deg) rotate(3deg);-ms-transform:skew(8deg) rotate(3deg);-o-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)} #stacks_in_3157_6956_6957>.jack{overflow:visible;}#stacks_in_3157_6956_6957>.jack.height-static{height:100px}#stacks_in_3157_6956_6957>.jack.height-minmax{min-height:100rem;max-height:800rem} 
#stacks_in_3157_6956_6941 > .row.max-custom{margin:0 auto;max-width:350px !important}#stacks_in_3157_6956_6941 > .row.max-custom.max-left{margin-left:0}#stacks_in_3157_6956_6941 > .row.max-custom.max-right{margin-right:0}
#stacks_in_3157_6956_6941 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_3157_6956_6941 > .row > .columns{margin-top:0.00rem;margin-bottom:0.00rem}#stacks_in_3157_6956_6941 > .row.divider > .columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(0, 0, 0, 1.00)}



	#stacks_in_3157_6956_6943 .button_icon,#stacks_in_3157_6956_6943 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:28px;
		line-height:28px;
		font-size:17px;
	}
	


#stacks_in_3157_6956_6943 .button_label {
	font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}


	#stacks_in_3157_6956_6943 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:8px;
	}
	#stacks_in_3157_6956_6943 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 4px 0px 8px;
	}




#stacks_in_3157_6956_6943 .sweet_button_wrapper {
	text-align:center;

	
		height:28px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_3157_6956_6943 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_3157_6956_6943 .button_icon,#stacks_in_3157_6956_6943 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_3157_6956_6943 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_3157_6956_6943 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 8px;
	text-decoration:none;
	text-align:left;
	color:rgba(51, 51, 51, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(204, 204, 204, 1.00);
}
#stacks_in_3157_6956_6943 a.sweet_button:visited {
	color:rgba(51, 51, 51, 1.00);
}

#stacks_in_3157_6956_6943 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}






	#stacks_in_3157_6956_6943 .button_label {
		width:125px;
	}
	#stacks_in_3157_6956_6943 .button_icon {
		width:26px;
	}


	#stacks_in_3157_6956_6943 .sweet_button {
		-moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		        box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
	}
	#stacks_in_3157_6956_6943 .sweet_button_wrapper{padding-bottom:16px;}


#stacks_in_3157_6956_6943 .sweet_button:hover {
	color:rgba(51, 51, 51, 1.00);
	background: rgba(224, 224, 224, 1.00);
}
#stacks_in_3157_6956_6943 .sweet_button:active{
	background: rgba(184, 184, 184, 1.00);
}
#stacks_in_3157_6956_6943 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_3157_6956_6943 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_3157_6956_6943 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}

#stacks_in_3157_6956_6943 .sweet_button.gradient {
	background: rgba(204, 204, 204, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6943 .sweet_button.gradient:hover {
	background: rgba(254, 254, 254, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), color-stop(+, %id=button_color));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(255, 255, 255, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(255, 255, 255, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6943 .sweet_button.gradient:active{
	background: rgba(154, 154, 154, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6943 .sweet_button.gradient.clicked {
	background: rgba(38, 113, 45, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6943 .sweet_button.gradient.clicked:hover {
	background: rgba(68, 143, 75, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), color-stop(+, %id=click_color));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(108, 183, 115, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(108, 183, 115, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6943 .sweet_button.gradient.clicked:active{
	background: rgba(0, 63, 0, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}










	#stacks_in_3157_6956_6944 .button_icon,#stacks_in_3157_6956_6944 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:28px;
		line-height:28px;
		font-size:17px;
	}
	


#stacks_in_3157_6956_6944 .button_label {
	font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}


	#stacks_in_3157_6956_6944 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:8px;
	}
	#stacks_in_3157_6956_6944 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 4px 0px 8px;
	}




#stacks_in_3157_6956_6944 .sweet_button_wrapper {
	text-align:center;

	
		height:28px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_3157_6956_6944 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_3157_6956_6944 .button_icon,#stacks_in_3157_6956_6944 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_3157_6956_6944 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_3157_6956_6944 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 8px;
	text-decoration:none;
	text-align:left;
	color:rgba(51, 51, 51, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(204, 204, 204, 1.00);
}
#stacks_in_3157_6956_6944 a.sweet_button:visited {
	color:rgba(51, 51, 51, 1.00);
}

#stacks_in_3157_6956_6944 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}






	#stacks_in_3157_6956_6944 .button_label {
		width:125px;
	}
	#stacks_in_3157_6956_6944 .button_icon {
		width:26px;
	}


	#stacks_in_3157_6956_6944 .sweet_button {
		-moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		        box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
	}
	#stacks_in_3157_6956_6944 .sweet_button_wrapper{padding-bottom:16px;}


#stacks_in_3157_6956_6944 .sweet_button:hover {
	color:rgba(51, 51, 51, 1.00);
	background: rgba(224, 224, 224, 1.00);
}
#stacks_in_3157_6956_6944 .sweet_button:active{
	background: rgba(184, 184, 184, 1.00);
}
#stacks_in_3157_6956_6944 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_3157_6956_6944 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_3157_6956_6944 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}

#stacks_in_3157_6956_6944 .sweet_button.gradient {
	background: rgba(204, 204, 204, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6944 .sweet_button.gradient:hover {
	background: rgba(254, 254, 254, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), color-stop(+, %id=button_color));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(255, 255, 255, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(255, 255, 255, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6944 .sweet_button.gradient:active{
	background: rgba(154, 154, 154, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6944 .sweet_button.gradient.clicked {
	background: rgba(38, 113, 45, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6944 .sweet_button.gradient.clicked:hover {
	background: rgba(68, 143, 75, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), color-stop(+, %id=click_color));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(108, 183, 115, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(108, 183, 115, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6944 .sweet_button.gradient.clicked:active{
	background: rgba(0, 63, 0, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}










	#stacks_in_3157_6956_6945 .button_icon,#stacks_in_3157_6956_6945 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:28px;
		line-height:28px;
		font-size:17px;
	}
	


#stacks_in_3157_6956_6945 .button_label {
	font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}


	#stacks_in_3157_6956_6945 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:8px;
	}
	#stacks_in_3157_6956_6945 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 4px 0px 8px;
	}




#stacks_in_3157_6956_6945 .sweet_button_wrapper {
	text-align:center;

	
		height:28px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_3157_6956_6945 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_3157_6956_6945 .button_icon,#stacks_in_3157_6956_6945 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_3157_6956_6945 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_3157_6956_6945 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 8px;
	text-decoration:none;
	text-align:left;
	color:rgba(51, 51, 51, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(204, 204, 204, 1.00);
}
#stacks_in_3157_6956_6945 a.sweet_button:visited {
	color:rgba(51, 51, 51, 1.00);
}

#stacks_in_3157_6956_6945 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}






	#stacks_in_3157_6956_6945 .button_label {
		width:125px;
	}
	#stacks_in_3157_6956_6945 .button_icon {
		width:26px;
	}


	#stacks_in_3157_6956_6945 .sweet_button {
		-moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		        box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
	}
	#stacks_in_3157_6956_6945 .sweet_button_wrapper{padding-bottom:16px;}


#stacks_in_3157_6956_6945 .sweet_button:hover {
	color:rgba(51, 51, 51, 1.00);
	background: rgba(224, 224, 224, 1.00);
}
#stacks_in_3157_6956_6945 .sweet_button:active{
	background: rgba(184, 184, 184, 1.00);
}
#stacks_in_3157_6956_6945 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_3157_6956_6945 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_3157_6956_6945 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}

#stacks_in_3157_6956_6945 .sweet_button.gradient {
	background: rgba(204, 204, 204, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6945 .sweet_button.gradient:hover {
	background: rgba(254, 254, 254, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), color-stop(+, %id=button_color));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(255, 255, 255, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(255, 255, 255, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6945 .sweet_button.gradient:active{
	background: rgba(154, 154, 154, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6945 .sweet_button.gradient.clicked {
	background: rgba(38, 113, 45, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6945 .sweet_button.gradient.clicked:hover {
	background: rgba(68, 143, 75, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), color-stop(+, %id=click_color));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(108, 183, 115, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(108, 183, 115, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6945 .sweet_button.gradient.clicked:active{
	background: rgba(0, 63, 0, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}










	#stacks_in_3157_6956_6946 .button_icon,#stacks_in_3157_6956_6946 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:28px;
		line-height:28px;
		font-size:17px;
	}
	


#stacks_in_3157_6956_6946 .button_label {
	font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}


	#stacks_in_3157_6956_6946 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:8px;
	}
	#stacks_in_3157_6956_6946 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 4px 0px 8px;
	}




#stacks_in_3157_6956_6946 .sweet_button_wrapper {
	text-align:center;

	
		height:28px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_3157_6956_6946 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_3157_6956_6946 .button_icon,#stacks_in_3157_6956_6946 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_3157_6956_6946 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_3157_6956_6946 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 8px;
	text-decoration:none;
	text-align:left;
	color:rgba(51, 51, 51, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(204, 204, 204, 1.00);
}
#stacks_in_3157_6956_6946 a.sweet_button:visited {
	color:rgba(51, 51, 51, 1.00);
}

#stacks_in_3157_6956_6946 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}






	#stacks_in_3157_6956_6946 .button_label {
		width:125px;
	}
	#stacks_in_3157_6956_6946 .button_icon {
		width:26px;
	}


	#stacks_in_3157_6956_6946 .sweet_button {
		-moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		        box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
	}
	#stacks_in_3157_6956_6946 .sweet_button_wrapper{padding-bottom:16px;}


#stacks_in_3157_6956_6946 .sweet_button:hover {
	color:rgba(51, 51, 51, 1.00);
	background: rgba(224, 224, 224, 1.00);
}
#stacks_in_3157_6956_6946 .sweet_button:active{
	background: rgba(184, 184, 184, 1.00);
}
#stacks_in_3157_6956_6946 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_3157_6956_6946 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_3157_6956_6946 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}

#stacks_in_3157_6956_6946 .sweet_button.gradient {
	background: rgba(204, 204, 204, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6946 .sweet_button.gradient:hover {
	background: rgba(254, 254, 254, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), color-stop(+, %id=button_color));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(255, 255, 255, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(255, 255, 255, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6946 .sweet_button.gradient:active{
	background: rgba(154, 154, 154, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6946 .sweet_button.gradient.clicked {
	background: rgba(38, 113, 45, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6946 .sweet_button.gradient.clicked:hover {
	background: rgba(68, 143, 75, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), color-stop(+, %id=click_color));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(108, 183, 115, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(108, 183, 115, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6946 .sweet_button.gradient.clicked:active{
	background: rgba(0, 63, 0, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}










	#stacks_in_3157_6956_6947 .button_icon,#stacks_in_3157_6956_6947 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:28px;
		line-height:28px;
		font-size:17px;
	}
	


#stacks_in_3157_6956_6947 .button_label {
	font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}


	#stacks_in_3157_6956_6947 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:8px;
	}
	#stacks_in_3157_6956_6947 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 4px 0px 8px;
	}




#stacks_in_3157_6956_6947 .sweet_button_wrapper {
	text-align:center;

	
		height:28px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_3157_6956_6947 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_3157_6956_6947 .button_icon,#stacks_in_3157_6956_6947 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_3157_6956_6947 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_3157_6956_6947 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 8px;
	text-decoration:none;
	text-align:left;
	color:rgba(51, 51, 51, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(204, 204, 204, 1.00);
}
#stacks_in_3157_6956_6947 a.sweet_button:visited {
	color:rgba(51, 51, 51, 1.00);
}

#stacks_in_3157_6956_6947 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}






	#stacks_in_3157_6956_6947 .button_label {
		width:125px;
	}
	#stacks_in_3157_6956_6947 .button_icon {
		width:26px;
	}


	#stacks_in_3157_6956_6947 .sweet_button {
		-moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		        box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
	}
	#stacks_in_3157_6956_6947 .sweet_button_wrapper{padding-bottom:16px;}


#stacks_in_3157_6956_6947 .sweet_button:hover {
	color:rgba(51, 51, 51, 1.00);
	background: rgba(224, 224, 224, 1.00);
}
#stacks_in_3157_6956_6947 .sweet_button:active{
	background: rgba(184, 184, 184, 1.00);
}
#stacks_in_3157_6956_6947 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_3157_6956_6947 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_3157_6956_6947 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}

#stacks_in_3157_6956_6947 .sweet_button.gradient {
	background: rgba(204, 204, 204, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6947 .sweet_button.gradient:hover {
	background: rgba(254, 254, 254, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), color-stop(+, %id=button_color));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(255, 255, 255, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(255, 255, 255, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6947 .sweet_button.gradient:active{
	background: rgba(154, 154, 154, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6947 .sweet_button.gradient.clicked {
	background: rgba(38, 113, 45, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6947 .sweet_button.gradient.clicked:hover {
	background: rgba(68, 143, 75, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), color-stop(+, %id=click_color));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(108, 183, 115, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(108, 183, 115, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6947 .sweet_button.gradient.clicked:active{
	background: rgba(0, 63, 0, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}










	#stacks_in_3157_6956_6948 .button_icon,#stacks_in_3157_6956_6948 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:28px;
		line-height:28px;
		font-size:17px;
	}
	


#stacks_in_3157_6956_6948 .button_label {
	font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}


	#stacks_in_3157_6956_6948 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:8px;
	}
	#stacks_in_3157_6956_6948 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 4px 0px 8px;
	}




#stacks_in_3157_6956_6948 .sweet_button_wrapper {
	text-align:center;

	
		height:28px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_3157_6956_6948 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_3157_6956_6948 .button_icon,#stacks_in_3157_6956_6948 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_3157_6956_6948 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_3157_6956_6948 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 8px;
	text-decoration:none;
	text-align:left;
	color:rgba(51, 51, 51, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(204, 204, 204, 1.00);
}
#stacks_in_3157_6956_6948 a.sweet_button:visited {
	color:rgba(51, 51, 51, 1.00);
}

#stacks_in_3157_6956_6948 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}






	#stacks_in_3157_6956_6948 .button_label {
		width:125px;
	}
	#stacks_in_3157_6956_6948 .button_icon {
		width:26px;
	}


	#stacks_in_3157_6956_6948 .sweet_button {
		-moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		        box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
	}
	#stacks_in_3157_6956_6948 .sweet_button_wrapper{padding-bottom:16px;}


#stacks_in_3157_6956_6948 .sweet_button:hover {
	color:rgba(51, 51, 51, 1.00);
	background: rgba(224, 224, 224, 1.00);
}
#stacks_in_3157_6956_6948 .sweet_button:active{
	background: rgba(184, 184, 184, 1.00);
}
#stacks_in_3157_6956_6948 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_3157_6956_6948 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_3157_6956_6948 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}

#stacks_in_3157_6956_6948 .sweet_button.gradient {
	background: rgba(204, 204, 204, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6948 .sweet_button.gradient:hover {
	background: rgba(254, 254, 254, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), color-stop(+, %id=button_color));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(255, 255, 255, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(255, 255, 255, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6948 .sweet_button.gradient:active{
	background: rgba(154, 154, 154, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6948 .sweet_button.gradient.clicked {
	background: rgba(38, 113, 45, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6948 .sweet_button.gradient.clicked:hover {
	background: rgba(68, 143, 75, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), color-stop(+, %id=click_color));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(108, 183, 115, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(108, 183, 115, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6948 .sweet_button.gradient.clicked:active{
	background: rgba(0, 63, 0, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}










	#stacks_in_3157_6956_6949 .button_icon,#stacks_in_3157_6956_6949 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:28px;
		line-height:28px;
		font-size:17px;
	}
	


#stacks_in_3157_6956_6949 .button_label {
	font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}


	#stacks_in_3157_6956_6949 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:8px;
	}
	#stacks_in_3157_6956_6949 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 4px 0px 8px;
	}




#stacks_in_3157_6956_6949 .sweet_button_wrapper {
	text-align:center;

	
		height:28px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_3157_6956_6949 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_3157_6956_6949 .button_icon,#stacks_in_3157_6956_6949 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_3157_6956_6949 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_3157_6956_6949 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 8px;
	text-decoration:none;
	text-align:left;
	color:rgba(51, 51, 51, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(204, 204, 204, 1.00);
}
#stacks_in_3157_6956_6949 a.sweet_button:visited {
	color:rgba(51, 51, 51, 1.00);
}

#stacks_in_3157_6956_6949 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}






	#stacks_in_3157_6956_6949 .button_label {
		width:125px;
	}
	#stacks_in_3157_6956_6949 .button_icon {
		width:26px;
	}


	#stacks_in_3157_6956_6949 .sweet_button {
		-moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		        box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
	}
	#stacks_in_3157_6956_6949 .sweet_button_wrapper{padding-bottom:16px;}


#stacks_in_3157_6956_6949 .sweet_button:hover {
	color:rgba(51, 51, 51, 1.00);
	background: rgba(224, 224, 224, 1.00);
}
#stacks_in_3157_6956_6949 .sweet_button:active{
	background: rgba(184, 184, 184, 1.00);
}
#stacks_in_3157_6956_6949 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_3157_6956_6949 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_3157_6956_6949 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}

#stacks_in_3157_6956_6949 .sweet_button.gradient {
	background: rgba(204, 204, 204, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6949 .sweet_button.gradient:hover {
	background: rgba(254, 254, 254, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), color-stop(+, %id=button_color));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(255, 255, 255, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(255, 255, 255, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6949 .sweet_button.gradient:active{
	background: rgba(154, 154, 154, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6949 .sweet_button.gradient.clicked {
	background: rgba(38, 113, 45, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6949 .sweet_button.gradient.clicked:hover {
	background: rgba(68, 143, 75, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), color-stop(+, %id=click_color));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(108, 183, 115, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(108, 183, 115, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6949 .sweet_button.gradient.clicked:active{
	background: rgba(0, 63, 0, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}










	#stacks_in_3157_6956_8745 .button_icon,#stacks_in_3157_6956_8745 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:28px;
		line-height:28px;
		font-size:17px;
	}
	


#stacks_in_3157_6956_8745 .button_label {
	font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}


	#stacks_in_3157_6956_8745 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:8px;
	}
	#stacks_in_3157_6956_8745 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 4px 0px 8px;
	}




#stacks_in_3157_6956_8745 .sweet_button_wrapper {
	text-align:center;

	
		height:28px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_3157_6956_8745 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_3157_6956_8745 .button_icon,#stacks_in_3157_6956_8745 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_3157_6956_8745 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_3157_6956_8745 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 8px;
	text-decoration:none;
	text-align:left;
	color:rgba(51, 51, 51, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(204, 204, 204, 1.00);
}
#stacks_in_3157_6956_8745 a.sweet_button:visited {
	color:rgba(51, 51, 51, 1.00);
}

#stacks_in_3157_6956_8745 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}






	#stacks_in_3157_6956_8745 .button_label {
		width:125px;
	}
	#stacks_in_3157_6956_8745 .button_icon {
		width:26px;
	}


	#stacks_in_3157_6956_8745 .sweet_button {
		-moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		        box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
	}
	#stacks_in_3157_6956_8745 .sweet_button_wrapper{padding-bottom:16px;}


#stacks_in_3157_6956_8745 .sweet_button:hover {
	color:rgba(51, 51, 51, 1.00);
	background: rgba(224, 224, 224, 1.00);
}
#stacks_in_3157_6956_8745 .sweet_button:active{
	background: rgba(184, 184, 184, 1.00);
}
#stacks_in_3157_6956_8745 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_3157_6956_8745 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_3157_6956_8745 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}

#stacks_in_3157_6956_8745 .sweet_button.gradient {
	background: rgba(204, 204, 204, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8745 .sweet_button.gradient:hover {
	background: rgba(254, 254, 254, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), color-stop(+, %id=button_color));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(255, 255, 255, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(255, 255, 255, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8745 .sweet_button.gradient:active{
	background: rgba(154, 154, 154, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8745 .sweet_button.gradient.clicked {
	background: rgba(38, 113, 45, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8745 .sweet_button.gradient.clicked:hover {
	background: rgba(68, 143, 75, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), color-stop(+, %id=click_color));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(108, 183, 115, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(108, 183, 115, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8745 .sweet_button.gradient.clicked:active{
	background: rgba(0, 63, 0, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}








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



	#stacks_in_3157_6956_8894 .button_icon,#stacks_in_3157_6956_8894 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:28px;
		line-height:28px;
		font-size:17px;
	}
	


#stacks_in_3157_6956_8894 .button_label {
	font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}


	#stacks_in_3157_6956_8894 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:8px;
	}
	#stacks_in_3157_6956_8894 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 4px 0px 8px;
	}




#stacks_in_3157_6956_8894 .sweet_button_wrapper {
	text-align:center;

	
		height:28px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_3157_6956_8894 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_3157_6956_8894 .button_icon,#stacks_in_3157_6956_8894 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_3157_6956_8894 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_3157_6956_8894 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 8px;
	text-decoration:none;
	text-align:left;
	color:rgba(51, 51, 51, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(204, 204, 204, 1.00);
}
#stacks_in_3157_6956_8894 a.sweet_button:visited {
	color:rgba(51, 51, 51, 1.00);
}

#stacks_in_3157_6956_8894 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}






	#stacks_in_3157_6956_8894 .button_label {
		width:125px;
	}
	#stacks_in_3157_6956_8894 .button_icon {
		width:26px;
	}


	#stacks_in_3157_6956_8894 .sweet_button {
		-moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		        box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
	}
	#stacks_in_3157_6956_8894 .sweet_button_wrapper{padding-bottom:16px;}


#stacks_in_3157_6956_8894 .sweet_button:hover {
	color:rgba(51, 51, 51, 1.00);
	background: rgba(224, 224, 224, 1.00);
}
#stacks_in_3157_6956_8894 .sweet_button:active{
	background: rgba(184, 184, 184, 1.00);
}
#stacks_in_3157_6956_8894 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_3157_6956_8894 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_3157_6956_8894 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}

#stacks_in_3157_6956_8894 .sweet_button.gradient {
	background: rgba(204, 204, 204, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8894 .sweet_button.gradient:hover {
	background: rgba(254, 254, 254, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), color-stop(+, %id=button_color));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(255, 255, 255, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(255, 255, 255, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8894 .sweet_button.gradient:active{
	background: rgba(154, 154, 154, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8894 .sweet_button.gradient.clicked {
	background: rgba(38, 113, 45, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8894 .sweet_button.gradient.clicked:hover {
	background: rgba(68, 143, 75, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), color-stop(+, %id=click_color));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(108, 183, 115, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(108, 183, 115, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8894 .sweet_button.gradient.clicked:active{
	background: rgba(0, 63, 0, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}










	#stacks_in_3157_6956_8747 .button_icon,#stacks_in_3157_6956_8747 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:28px;
		line-height:28px;
		font-size:17px;
	}
	


#stacks_in_3157_6956_8747 .button_label {
	font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}


	#stacks_in_3157_6956_8747 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:8px;
	}
	#stacks_in_3157_6956_8747 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 4px 0px 8px;
	}




#stacks_in_3157_6956_8747 .sweet_button_wrapper {
	text-align:center;

	
		height:28px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_3157_6956_8747 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_3157_6956_8747 .button_icon,#stacks_in_3157_6956_8747 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_3157_6956_8747 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_3157_6956_8747 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 8px;
	text-decoration:none;
	text-align:left;
	color:rgba(51, 51, 51, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(204, 204, 204, 1.00);
}
#stacks_in_3157_6956_8747 a.sweet_button:visited {
	color:rgba(51, 51, 51, 1.00);
}

#stacks_in_3157_6956_8747 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}






	#stacks_in_3157_6956_8747 .button_label {
		width:125px;
	}
	#stacks_in_3157_6956_8747 .button_icon {
		width:26px;
	}


	#stacks_in_3157_6956_8747 .sweet_button {
		-moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		        box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
	}
	#stacks_in_3157_6956_8747 .sweet_button_wrapper{padding-bottom:16px;}


#stacks_in_3157_6956_8747 .sweet_button:hover {
	color:rgba(51, 51, 51, 1.00);
	background: rgba(224, 224, 224, 1.00);
}
#stacks_in_3157_6956_8747 .sweet_button:active{
	background: rgba(184, 184, 184, 1.00);
}
#stacks_in_3157_6956_8747 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_3157_6956_8747 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_3157_6956_8747 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}

#stacks_in_3157_6956_8747 .sweet_button.gradient {
	background: rgba(204, 204, 204, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8747 .sweet_button.gradient:hover {
	background: rgba(254, 254, 254, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), color-stop(+, %id=button_color));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(255, 255, 255, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(255, 255, 255, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8747 .sweet_button.gradient:active{
	background: rgba(154, 154, 154, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8747 .sweet_button.gradient.clicked {
	background: rgba(38, 113, 45, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8747 .sweet_button.gradient.clicked:hover {
	background: rgba(68, 143, 75, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), color-stop(+, %id=click_color));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(108, 183, 115, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(108, 183, 115, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8747 .sweet_button.gradient.clicked:active{
	background: rgba(0, 63, 0, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}










	#stacks_in_3157_6956_8121 .button_icon,#stacks_in_3157_6956_8121 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:28px;
		line-height:28px;
		font-size:17px;
	}
	


#stacks_in_3157_6956_8121 .button_label {
	font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}


	#stacks_in_3157_6956_8121 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:8px;
	}
	#stacks_in_3157_6956_8121 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 4px 0px 8px;
	}




#stacks_in_3157_6956_8121 .sweet_button_wrapper {
	text-align:center;

	
		height:28px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_3157_6956_8121 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_3157_6956_8121 .button_icon,#stacks_in_3157_6956_8121 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_3157_6956_8121 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_3157_6956_8121 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 8px;
	text-decoration:none;
	text-align:left;
	color:rgba(51, 51, 51, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(204, 204, 204, 1.00);
}
#stacks_in_3157_6956_8121 a.sweet_button:visited {
	color:rgba(51, 51, 51, 1.00);
}

#stacks_in_3157_6956_8121 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}






	#stacks_in_3157_6956_8121 .button_label {
		width:125px;
	}
	#stacks_in_3157_6956_8121 .button_icon {
		width:26px;
	}


	#stacks_in_3157_6956_8121 .sweet_button {
		-moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		        box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
	}
	#stacks_in_3157_6956_8121 .sweet_button_wrapper{padding-bottom:16px;}


#stacks_in_3157_6956_8121 .sweet_button:hover {
	color:rgba(51, 51, 51, 1.00);
	background: rgba(224, 224, 224, 1.00);
}
#stacks_in_3157_6956_8121 .sweet_button:active{
	background: rgba(184, 184, 184, 1.00);
}
#stacks_in_3157_6956_8121 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_3157_6956_8121 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_3157_6956_8121 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}

#stacks_in_3157_6956_8121 .sweet_button.gradient {
	background: rgba(204, 204, 204, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8121 .sweet_button.gradient:hover {
	background: rgba(254, 254, 254, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), color-stop(+, %id=button_color));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(255, 255, 255, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(255, 255, 255, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8121 .sweet_button.gradient:active{
	background: rgba(154, 154, 154, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8121 .sweet_button.gradient.clicked {
	background: rgba(38, 113, 45, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8121 .sweet_button.gradient.clicked:hover {
	background: rgba(68, 143, 75, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), color-stop(+, %id=click_color));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(108, 183, 115, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(108, 183, 115, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8121 .sweet_button.gradient.clicked:active{
	background: rgba(0, 63, 0, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}










	#stacks_in_3157_6956_8616 .button_icon,#stacks_in_3157_6956_8616 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:28px;
		line-height:28px;
		font-size:17px;
	}
	


#stacks_in_3157_6956_8616 .button_label {
	font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}


	#stacks_in_3157_6956_8616 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:8px;
	}
	#stacks_in_3157_6956_8616 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 4px 0px 8px;
	}




#stacks_in_3157_6956_8616 .sweet_button_wrapper {
	text-align:center;

	
		height:28px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_3157_6956_8616 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_3157_6956_8616 .button_icon,#stacks_in_3157_6956_8616 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_3157_6956_8616 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_3157_6956_8616 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 8px;
	text-decoration:none;
	text-align:left;
	color:rgba(51, 51, 51, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(204, 204, 204, 1.00);
}
#stacks_in_3157_6956_8616 a.sweet_button:visited {
	color:rgba(51, 51, 51, 1.00);
}

#stacks_in_3157_6956_8616 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}






	#stacks_in_3157_6956_8616 .button_label {
		width:125px;
	}
	#stacks_in_3157_6956_8616 .button_icon {
		width:26px;
	}


	#stacks_in_3157_6956_8616 .sweet_button {
		-moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		        box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
	}
	#stacks_in_3157_6956_8616 .sweet_button_wrapper{padding-bottom:16px;}


#stacks_in_3157_6956_8616 .sweet_button:hover {
	color:rgba(51, 51, 51, 1.00);
	background: rgba(224, 224, 224, 1.00);
}
#stacks_in_3157_6956_8616 .sweet_button:active{
	background: rgba(184, 184, 184, 1.00);
}
#stacks_in_3157_6956_8616 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_3157_6956_8616 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_3157_6956_8616 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}

#stacks_in_3157_6956_8616 .sweet_button.gradient {
	background: rgba(204, 204, 204, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8616 .sweet_button.gradient:hover {
	background: rgba(254, 254, 254, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), color-stop(+, %id=button_color));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(255, 255, 255, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(255, 255, 255, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8616 .sweet_button.gradient:active{
	background: rgba(154, 154, 154, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8616 .sweet_button.gradient.clicked {
	background: rgba(38, 113, 45, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8616 .sweet_button.gradient.clicked:hover {
	background: rgba(68, 143, 75, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), color-stop(+, %id=click_color));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(108, 183, 115, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(108, 183, 115, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_8616 .sweet_button.gradient.clicked:active{
	background: rgba(0, 63, 0, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}








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



	#stacks_in_3157_6956_6951 .button_icon,#stacks_in_3157_6956_6951 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:28px;
		line-height:28px;
		font-size:17px;
	}
	


#stacks_in_3157_6956_6951 .button_label {
	font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}


	#stacks_in_3157_6956_6951 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:8px;
	}
	#stacks_in_3157_6956_6951 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 4px 0px 8px;
	}




#stacks_in_3157_6956_6951 .sweet_button_wrapper {
	text-align:center;

	
		height:28px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_3157_6956_6951 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_3157_6956_6951 .button_icon,#stacks_in_3157_6956_6951 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_3157_6956_6951 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_3157_6956_6951 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 8px;
	text-decoration:none;
	text-align:left;
	color:rgba(51, 51, 51, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(204, 204, 204, 1.00);
}
#stacks_in_3157_6956_6951 a.sweet_button:visited {
	color:rgba(51, 51, 51, 1.00);
}

#stacks_in_3157_6956_6951 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}






	#stacks_in_3157_6956_6951 .button_label {
		width:125px;
	}
	#stacks_in_3157_6956_6951 .button_icon {
		width:26px;
	}


	#stacks_in_3157_6956_6951 .sweet_button {
		-moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		        box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
	}
	#stacks_in_3157_6956_6951 .sweet_button_wrapper{padding-bottom:16px;}


#stacks_in_3157_6956_6951 .sweet_button:hover {
	color:rgba(51, 51, 51, 1.00);
	background: rgba(224, 224, 224, 1.00);
}
#stacks_in_3157_6956_6951 .sweet_button:active{
	background: rgba(184, 184, 184, 1.00);
}
#stacks_in_3157_6956_6951 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_3157_6956_6951 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_3157_6956_6951 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}

#stacks_in_3157_6956_6951 .sweet_button.gradient {
	background: rgba(204, 204, 204, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6951 .sweet_button.gradient:hover {
	background: rgba(254, 254, 254, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), color-stop(+, %id=button_color));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(255, 255, 255, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(255, 255, 255, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6951 .sweet_button.gradient:active{
	background: rgba(154, 154, 154, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6951 .sweet_button.gradient.clicked {
	background: rgba(38, 113, 45, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6951 .sweet_button.gradient.clicked:hover {
	background: rgba(68, 143, 75, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), color-stop(+, %id=click_color));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(108, 183, 115, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(108, 183, 115, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6951 .sweet_button.gradient.clicked:active{
	background: rgba(0, 63, 0, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}










	#stacks_in_3157_6956_6952 .button_icon,#stacks_in_3157_6956_6952 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:28px;
		line-height:28px;
		font-size:17px;
	}
	


#stacks_in_3157_6956_6952 .button_label {
	font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}


	#stacks_in_3157_6956_6952 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:8px;
	}
	#stacks_in_3157_6956_6952 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 4px 0px 8px;
	}




#stacks_in_3157_6956_6952 .sweet_button_wrapper {
	text-align:center;

	
		height:28px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_3157_6956_6952 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_3157_6956_6952 .button_icon,#stacks_in_3157_6956_6952 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_3157_6956_6952 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_3157_6956_6952 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 8px;
	text-decoration:none;
	text-align:left;
	color:rgba(51, 51, 51, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(204, 204, 204, 1.00);
}
#stacks_in_3157_6956_6952 a.sweet_button:visited {
	color:rgba(51, 51, 51, 1.00);
}

#stacks_in_3157_6956_6952 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}






	#stacks_in_3157_6956_6952 .button_label {
		width:125px;
	}
	#stacks_in_3157_6956_6952 .button_icon {
		width:26px;
	}


	#stacks_in_3157_6956_6952 .sweet_button {
		-moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		        box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
	}
	#stacks_in_3157_6956_6952 .sweet_button_wrapper{padding-bottom:16px;}


#stacks_in_3157_6956_6952 .sweet_button:hover {
	color:rgba(51, 51, 51, 1.00);
	background: rgba(224, 224, 224, 1.00);
}
#stacks_in_3157_6956_6952 .sweet_button:active{
	background: rgba(184, 184, 184, 1.00);
}
#stacks_in_3157_6956_6952 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_3157_6956_6952 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_3157_6956_6952 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}

#stacks_in_3157_6956_6952 .sweet_button.gradient {
	background: rgba(204, 204, 204, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6952 .sweet_button.gradient:hover {
	background: rgba(254, 254, 254, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), color-stop(+, %id=button_color));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(255, 255, 255, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(255, 255, 255, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6952 .sweet_button.gradient:active{
	background: rgba(154, 154, 154, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6952 .sweet_button.gradient.clicked {
	background: rgba(38, 113, 45, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6952 .sweet_button.gradient.clicked:hover {
	background: rgba(68, 143, 75, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), color-stop(+, %id=click_color));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(108, 183, 115, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(108, 183, 115, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6952 .sweet_button.gradient.clicked:active{
	background: rgba(0, 63, 0, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}










	#stacks_in_3157_6956_6953 .button_icon,#stacks_in_3157_6956_6953 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:28px;
		line-height:28px;
		font-size:17px;
	}
	


#stacks_in_3157_6956_6953 .button_label {
	font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}


	#stacks_in_3157_6956_6953 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:8px;
	}
	#stacks_in_3157_6956_6953 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 4px 0px 8px;
	}




#stacks_in_3157_6956_6953 .sweet_button_wrapper {
	text-align:center;

	
		height:28px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_3157_6956_6953 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_3157_6956_6953 .button_icon,#stacks_in_3157_6956_6953 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_3157_6956_6953 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_3157_6956_6953 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 8px;
	text-decoration:none;
	text-align:left;
	color:rgba(51, 51, 51, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(204, 204, 204, 1.00);
}
#stacks_in_3157_6956_6953 a.sweet_button:visited {
	color:rgba(51, 51, 51, 1.00);
}

#stacks_in_3157_6956_6953 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}






	#stacks_in_3157_6956_6953 .button_label {
		width:125px;
	}
	#stacks_in_3157_6956_6953 .button_icon {
		width:26px;
	}


	#stacks_in_3157_6956_6953 .sweet_button {
		-moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		        box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
	}
	#stacks_in_3157_6956_6953 .sweet_button_wrapper{padding-bottom:16px;}


#stacks_in_3157_6956_6953 .sweet_button:hover {
	color:rgba(51, 51, 51, 1.00);
	background: rgba(224, 224, 224, 1.00);
}
#stacks_in_3157_6956_6953 .sweet_button:active{
	background: rgba(184, 184, 184, 1.00);
}
#stacks_in_3157_6956_6953 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_3157_6956_6953 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_3157_6956_6953 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}

#stacks_in_3157_6956_6953 .sweet_button.gradient {
	background: rgba(204, 204, 204, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6953 .sweet_button.gradient:hover {
	background: rgba(254, 254, 254, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), color-stop(+, %id=button_color));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(255, 255, 255, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(255, 255, 255, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6953 .sweet_button.gradient:active{
	background: rgba(154, 154, 154, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6953 .sweet_button.gradient.clicked {
	background: rgba(38, 113, 45, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6953 .sweet_button.gradient.clicked:hover {
	background: rgba(68, 143, 75, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), color-stop(+, %id=click_color));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(108, 183, 115, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(108, 183, 115, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6953 .sweet_button.gradient.clicked:active{
	background: rgba(0, 63, 0, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}










	#stacks_in_3157_6956_6954 .button_icon,#stacks_in_3157_6956_6954 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:28px;
		line-height:28px;
		font-size:17px;
	}
	


#stacks_in_3157_6956_6954 .button_label {
	font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}


	#stacks_in_3157_6956_6954 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:8px;
	}
	#stacks_in_3157_6956_6954 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 4px 0px 8px;
	}




#stacks_in_3157_6956_6954 .sweet_button_wrapper {
	text-align:center;

	
		height:28px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_3157_6956_6954 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_3157_6956_6954 .button_icon,#stacks_in_3157_6956_6954 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_3157_6956_6954 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_3157_6956_6954 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 8px;
	text-decoration:none;
	text-align:left;
	color:rgba(51, 51, 51, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(204, 204, 204, 1.00);
}
#stacks_in_3157_6956_6954 a.sweet_button:visited {
	color:rgba(51, 51, 51, 1.00);
}

#stacks_in_3157_6956_6954 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}






	#stacks_in_3157_6956_6954 .button_label {
		width:125px;
	}
	#stacks_in_3157_6956_6954 .button_icon {
		width:26px;
	}


	#stacks_in_3157_6956_6954 .sweet_button {
		-moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		        box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
	}
	#stacks_in_3157_6956_6954 .sweet_button_wrapper{padding-bottom:16px;}


#stacks_in_3157_6956_6954 .sweet_button:hover {
	color:rgba(51, 51, 51, 1.00);
	background: rgba(224, 224, 224, 1.00);
}
#stacks_in_3157_6956_6954 .sweet_button:active{
	background: rgba(184, 184, 184, 1.00);
}
#stacks_in_3157_6956_6954 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_3157_6956_6954 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_3157_6956_6954 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}

#stacks_in_3157_6956_6954 .sweet_button.gradient {
	background: rgba(204, 204, 204, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6954 .sweet_button.gradient:hover {
	background: rgba(254, 254, 254, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), color-stop(+, %id=button_color));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(255, 255, 255, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(255, 255, 255, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6954 .sweet_button.gradient:active{
	background: rgba(154, 154, 154, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6954 .sweet_button.gradient.clicked {
	background: rgba(38, 113, 45, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6954 .sweet_button.gradient.clicked:hover {
	background: rgba(68, 143, 75, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), color-stop(+, %id=click_color));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(108, 183, 115, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(108, 183, 115, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6954 .sweet_button.gradient.clicked:active{
	background: rgba(0, 63, 0, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}










	#stacks_in_3157_6956_6955 .button_icon,#stacks_in_3157_6956_6955 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:28px;
		line-height:28px;
		font-size:17px;
	}
	


#stacks_in_3157_6956_6955 .button_label {
	font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}


	#stacks_in_3157_6956_6955 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:8px;
	}
	#stacks_in_3157_6956_6955 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 4px 0px 8px;
	}




#stacks_in_3157_6956_6955 .sweet_button_wrapper {
	text-align:center;

	
		height:28px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_3157_6956_6955 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_3157_6956_6955 .button_icon,#stacks_in_3157_6956_6955 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_3157_6956_6955 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_3157_6956_6955 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 8px;
	text-decoration:none;
	text-align:left;
	color:rgba(51, 51, 51, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(204, 204, 204, 1.00);
}
#stacks_in_3157_6956_6955 a.sweet_button:visited {
	color:rgba(51, 51, 51, 1.00);
}

#stacks_in_3157_6956_6955 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}






	#stacks_in_3157_6956_6955 .button_label {
		width:125px;
	}
	#stacks_in_3157_6956_6955 .button_icon {
		width:26px;
	}


	#stacks_in_3157_6956_6955 .sweet_button {
		-moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		        box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
	}
	#stacks_in_3157_6956_6955 .sweet_button_wrapper{padding-bottom:16px;}


#stacks_in_3157_6956_6955 .sweet_button:hover {
	color:rgba(51, 51, 51, 1.00);
	background: rgba(224, 224, 224, 1.00);
}
#stacks_in_3157_6956_6955 .sweet_button:active{
	background: rgba(184, 184, 184, 1.00);
}
#stacks_in_3157_6956_6955 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_3157_6956_6955 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_3157_6956_6955 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}

#stacks_in_3157_6956_6955 .sweet_button.gradient {
	background: rgba(204, 204, 204, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6955 .sweet_button.gradient:hover {
	background: rgba(254, 254, 254, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), color-stop(+, %id=button_color));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(255, 255, 255, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(255, 255, 255, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6955 .sweet_button.gradient:active{
	background: rgba(154, 154, 154, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6955 .sweet_button.gradient.clicked {
	background: rgba(38, 113, 45, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6955 .sweet_button.gradient.clicked:hover {
	background: rgba(68, 143, 75, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), color-stop(+, %id=click_color));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(108, 183, 115, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(108, 183, 115, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6955 .sweet_button.gradient.clicked:active{
	background: rgba(0, 63, 0, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}










	#stacks_in_3157_6956_6658 .button_icon,#stacks_in_3157_6956_6658 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:28px;
		line-height:28px;
		font-size:17px;
	}
	


#stacks_in_3157_6956_6658 .button_label {
	font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}


	#stacks_in_3157_6956_6658 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:8px;
	}
	#stacks_in_3157_6956_6658 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 4px 0px 8px;
	}




#stacks_in_3157_6956_6658 .sweet_button_wrapper {
	text-align:center;

	
		height:28px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_3157_6956_6658 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_3157_6956_6658 .button_icon,#stacks_in_3157_6956_6658 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_3157_6956_6658 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_3157_6956_6658 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 8px;
	text-decoration:none;
	text-align:left;
	color:rgba(51, 51, 51, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(204, 204, 204, 1.00);
}
#stacks_in_3157_6956_6658 a.sweet_button:visited {
	color:rgba(51, 51, 51, 1.00);
}

#stacks_in_3157_6956_6658 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}






	#stacks_in_3157_6956_6658 .button_label {
		width:125px;
	}
	#stacks_in_3157_6956_6658 .button_icon {
		width:26px;
	}


	#stacks_in_3157_6956_6658 .sweet_button {
		-moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		        box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
	}
	#stacks_in_3157_6956_6658 .sweet_button_wrapper{padding-bottom:16px;}


#stacks_in_3157_6956_6658 .sweet_button:hover {
	color:rgba(51, 51, 51, 1.00);
	background: rgba(224, 224, 224, 1.00);
}
#stacks_in_3157_6956_6658 .sweet_button:active{
	background: rgba(184, 184, 184, 1.00);
}
#stacks_in_3157_6956_6658 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_3157_6956_6658 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_3157_6956_6658 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}

#stacks_in_3157_6956_6658 .sweet_button.gradient {
	background: rgba(204, 204, 204, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6658 .sweet_button.gradient:hover {
	background: rgba(254, 254, 254, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), color-stop(+, %id=button_color));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(255, 255, 255, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(255, 255, 255, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6658 .sweet_button.gradient:active{
	background: rgba(154, 154, 154, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6658 .sweet_button.gradient.clicked {
	background: rgba(38, 113, 45, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6658 .sweet_button.gradient.clicked:hover {
	background: rgba(68, 143, 75, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), color-stop(+, %id=click_color));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(108, 183, 115, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(108, 183, 115, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6658 .sweet_button.gradient.clicked:active{
	background: rgba(0, 63, 0, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}










	#stacks_in_3157_6956_6780 .button_icon,#stacks_in_3157_6956_6780 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:28px;
		line-height:28px;
		font-size:17px;
	}
	


#stacks_in_3157_6956_6780 .button_label {
	font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}


	#stacks_in_3157_6956_6780 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:8px;
	}
	#stacks_in_3157_6956_6780 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 4px 0px 8px;
	}




#stacks_in_3157_6956_6780 .sweet_button_wrapper {
	text-align:center;

	
		height:28px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_3157_6956_6780 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_3157_6956_6780 .button_icon,#stacks_in_3157_6956_6780 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_3157_6956_6780 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_3157_6956_6780 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 8px;
	text-decoration:none;
	text-align:left;
	color:rgba(51, 51, 51, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(204, 204, 204, 1.00);
}
#stacks_in_3157_6956_6780 a.sweet_button:visited {
	color:rgba(51, 51, 51, 1.00);
}

#stacks_in_3157_6956_6780 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}






	#stacks_in_3157_6956_6780 .button_label {
		width:125px;
	}
	#stacks_in_3157_6956_6780 .button_icon {
		width:26px;
	}


	#stacks_in_3157_6956_6780 .sweet_button {
		-moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		        box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
	}
	#stacks_in_3157_6956_6780 .sweet_button_wrapper{padding-bottom:16px;}


#stacks_in_3157_6956_6780 .sweet_button:hover {
	color:rgba(51, 51, 51, 1.00);
	background: rgba(224, 224, 224, 1.00);
}
#stacks_in_3157_6956_6780 .sweet_button:active{
	background: rgba(184, 184, 184, 1.00);
}
#stacks_in_3157_6956_6780 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_3157_6956_6780 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_3157_6956_6780 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}

#stacks_in_3157_6956_6780 .sweet_button.gradient {
	background: rgba(204, 204, 204, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6780 .sweet_button.gradient:hover {
	background: rgba(254, 254, 254, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), color-stop(+, %id=button_color));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(255, 255, 255, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(255, 255, 255, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6780 .sweet_button.gradient:active{
	background: rgba(154, 154, 154, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6780 .sweet_button.gradient.clicked {
	background: rgba(38, 113, 45, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6780 .sweet_button.gradient.clicked:hover {
	background: rgba(68, 143, 75, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), color-stop(+, %id=click_color));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(108, 183, 115, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(108, 183, 115, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_6780 .sweet_button.gradient.clicked:active{
	background: rgba(0, 63, 0, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}










	#stacks_in_3157_6956_7896 .button_icon,#stacks_in_3157_6956_7896 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:28px;
		line-height:28px;
		font-size:17px;
	}
	


#stacks_in_3157_6956_7896 .button_label {
	font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}


	#stacks_in_3157_6956_7896 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:8px;
	}
	#stacks_in_3157_6956_7896 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 4px 0px 8px;
	}




#stacks_in_3157_6956_7896 .sweet_button_wrapper {
	text-align:center;

	
		height:28px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_3157_6956_7896 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_3157_6956_7896 .button_icon,#stacks_in_3157_6956_7896 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_3157_6956_7896 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_3157_6956_7896 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 8px;
	text-decoration:none;
	text-align:left;
	color:rgba(51, 51, 51, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(204, 204, 204, 1.00);
}
#stacks_in_3157_6956_7896 a.sweet_button:visited {
	color:rgba(51, 51, 51, 1.00);
}

#stacks_in_3157_6956_7896 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}






	#stacks_in_3157_6956_7896 .button_label {
		width:125px;
	}
	#stacks_in_3157_6956_7896 .button_icon {
		width:26px;
	}


	#stacks_in_3157_6956_7896 .sweet_button {
		-moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		        box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
	}
	#stacks_in_3157_6956_7896 .sweet_button_wrapper{padding-bottom:16px;}


#stacks_in_3157_6956_7896 .sweet_button:hover {
	color:rgba(51, 51, 51, 1.00);
	background: rgba(224, 224, 224, 1.00);
}
#stacks_in_3157_6956_7896 .sweet_button:active{
	background: rgba(184, 184, 184, 1.00);
}
#stacks_in_3157_6956_7896 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_3157_6956_7896 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_3157_6956_7896 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}

#stacks_in_3157_6956_7896 .sweet_button.gradient {
	background: rgba(204, 204, 204, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_7896 .sweet_button.gradient:hover {
	background: rgba(254, 254, 254, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), color-stop(+, %id=button_color));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(255, 255, 255, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(255, 255, 255, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_7896 .sweet_button.gradient:active{
	background: rgba(154, 154, 154, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_7896 .sweet_button.gradient.clicked {
	background: rgba(38, 113, 45, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_7896 .sweet_button.gradient.clicked:hover {
	background: rgba(68, 143, 75, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), color-stop(+, %id=click_color));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(108, 183, 115, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(108, 183, 115, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_7896 .sweet_button.gradient.clicked:active{
	background: rgba(0, 63, 0, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}










	#stacks_in_3157_6956_7248 .button_icon,#stacks_in_3157_6956_7248 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:28px;
		line-height:28px;
		font-size:17px;
	}
	


#stacks_in_3157_6956_7248 .button_label {
	font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}


	#stacks_in_3157_6956_7248 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:8px;
	}
	#stacks_in_3157_6956_7248 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 4px 0px 8px;
	}




#stacks_in_3157_6956_7248 .sweet_button_wrapper {
	text-align:center;

	
		height:28px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_3157_6956_7248 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_3157_6956_7248 .button_icon,#stacks_in_3157_6956_7248 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_3157_6956_7248 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_3157_6956_7248 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 8px;
	text-decoration:none;
	text-align:left;
	color:rgba(51, 51, 51, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(204, 204, 204, 1.00);
}
#stacks_in_3157_6956_7248 a.sweet_button:visited {
	color:rgba(51, 51, 51, 1.00);
}

#stacks_in_3157_6956_7248 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}






	#stacks_in_3157_6956_7248 .button_label {
		width:125px;
	}
	#stacks_in_3157_6956_7248 .button_icon {
		width:26px;
	}


	#stacks_in_3157_6956_7248 .sweet_button {
		-moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		        box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
	}
	#stacks_in_3157_6956_7248 .sweet_button_wrapper{padding-bottom:16px;}


#stacks_in_3157_6956_7248 .sweet_button:hover {
	color:rgba(51, 51, 51, 1.00);
	background: rgba(224, 224, 224, 1.00);
}
#stacks_in_3157_6956_7248 .sweet_button:active{
	background: rgba(184, 184, 184, 1.00);
}
#stacks_in_3157_6956_7248 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_3157_6956_7248 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_3157_6956_7248 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}

#stacks_in_3157_6956_7248 .sweet_button.gradient {
	background: rgba(204, 204, 204, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_7248 .sweet_button.gradient:hover {
	background: rgba(254, 254, 254, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), color-stop(+, %id=button_color));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(255, 255, 255, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(255, 255, 255, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_7248 .sweet_button.gradient:active{
	background: rgba(154, 154, 154, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_7248 .sweet_button.gradient.clicked {
	background: rgba(38, 113, 45, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_7248 .sweet_button.gradient.clicked:hover {
	background: rgba(68, 143, 75, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), color-stop(+, %id=click_color));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(108, 183, 115, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(108, 183, 115, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_7248 .sweet_button.gradient.clicked:active{
	background: rgba(0, 63, 0, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}










	#stacks_in_3157_6956_9908 .button_icon,#stacks_in_3157_6956_9908 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:28px;
		line-height:28px;
		font-size:17px;
	}
	


#stacks_in_3157_6956_9908 .button_label {
	font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}


	#stacks_in_3157_6956_9908 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:8px;
	}
	#stacks_in_3157_6956_9908 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 4px 0px 8px;
	}




#stacks_in_3157_6956_9908 .sweet_button_wrapper {
	text-align:center;

	
		height:28px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_3157_6956_9908 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_3157_6956_9908 .button_icon,#stacks_in_3157_6956_9908 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_3157_6956_9908 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_3157_6956_9908 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 8px;
	text-decoration:none;
	text-align:left;
	color:rgba(51, 51, 51, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(204, 204, 204, 1.00);
}
#stacks_in_3157_6956_9908 a.sweet_button:visited {
	color:rgba(51, 51, 51, 1.00);
}

#stacks_in_3157_6956_9908 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}






	#stacks_in_3157_6956_9908 .button_label {
		width:125px;
	}
	#stacks_in_3157_6956_9908 .button_icon {
		width:26px;
	}


	#stacks_in_3157_6956_9908 .sweet_button {
		-moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		        box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
	}
	#stacks_in_3157_6956_9908 .sweet_button_wrapper{padding-bottom:16px;}


#stacks_in_3157_6956_9908 .sweet_button:hover {
	color:rgba(51, 51, 51, 1.00);
	background: rgba(224, 224, 224, 1.00);
}
#stacks_in_3157_6956_9908 .sweet_button:active{
	background: rgba(184, 184, 184, 1.00);
}
#stacks_in_3157_6956_9908 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_3157_6956_9908 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_3157_6956_9908 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}

#stacks_in_3157_6956_9908 .sweet_button.gradient {
	background: rgba(204, 204, 204, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_9908 .sweet_button.gradient:hover {
	background: rgba(254, 254, 254, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), color-stop(+, %id=button_color));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(255, 255, 255, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(255, 255, 255, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_9908 .sweet_button.gradient:active{
	background: rgba(154, 154, 154, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_9908 .sweet_button.gradient.clicked {
	background: rgba(38, 113, 45, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_9908 .sweet_button.gradient.clicked:hover {
	background: rgba(68, 143, 75, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), color-stop(+, %id=click_color));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(108, 183, 115, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(108, 183, 115, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_9908 .sweet_button.gradient.clicked:active{
	background: rgba(0, 63, 0, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}










	#stacks_in_3157_6956_10675 .button_icon,#stacks_in_3157_6956_10675 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:28px;
		line-height:28px;
		font-size:17px;
	}
	


#stacks_in_3157_6956_10675 .button_label {
	font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}


	#stacks_in_3157_6956_10675 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:8px;
	}
	#stacks_in_3157_6956_10675 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 4px 0px 8px;
	}




#stacks_in_3157_6956_10675 .sweet_button_wrapper {
	text-align:center;

	
		height:28px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_3157_6956_10675 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_3157_6956_10675 .button_icon,#stacks_in_3157_6956_10675 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_3157_6956_10675 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_3157_6956_10675 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 8px;
	text-decoration:none;
	text-align:left;
	color:rgba(51, 51, 51, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(204, 204, 204, 1.00);
}
#stacks_in_3157_6956_10675 a.sweet_button:visited {
	color:rgba(51, 51, 51, 1.00);
}

#stacks_in_3157_6956_10675 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}






	#stacks_in_3157_6956_10675 .button_label {
		width:125px;
	}
	#stacks_in_3157_6956_10675 .button_icon {
		width:26px;
	}


	#stacks_in_3157_6956_10675 .sweet_button {
		-moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		        box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
	}
	#stacks_in_3157_6956_10675 .sweet_button_wrapper{padding-bottom:16px;}


#stacks_in_3157_6956_10675 .sweet_button:hover {
	color:rgba(51, 51, 51, 1.00);
	background: rgba(224, 224, 224, 1.00);
}
#stacks_in_3157_6956_10675 .sweet_button:active{
	background: rgba(184, 184, 184, 1.00);
}
#stacks_in_3157_6956_10675 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_3157_6956_10675 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_3157_6956_10675 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}

#stacks_in_3157_6956_10675 .sweet_button.gradient {
	background: rgba(204, 204, 204, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_10675 .sweet_button.gradient:hover {
	background: rgba(254, 254, 254, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), color-stop(+, %id=button_color));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(255, 255, 255, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(255, 255, 255, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_10675 .sweet_button.gradient:active{
	background: rgba(154, 154, 154, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(204, 204, 204, 1.00)));
	background: linear-gradient(top, rgba(254, 254, 254, 1.00), rgba(204, 204, 204, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(254, 254, 254, 1.00)', endColorstr='rgba(204, 204, 204, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_10675 .sweet_button.gradient.clicked {
	background: rgba(38, 113, 45, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_10675 .sweet_button.gradient.clicked:hover {
	background: rgba(68, 143, 75, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), color-stop(+, %id=click_color));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(108, 183, 115, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(108, 183, 115, 1.00)',GradientType=0 );
}
#stacks_in_3157_6956_10675 .sweet_button.gradient.clicked:active{
	background: rgba(0, 63, 0, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}







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

#stacks_in_3157_6253 {
	margin: 20px 30px 20px 30px;
}
#stacks_in_3157_48491>.s3_row {
	margin: 0 -10px;
}

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

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




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










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



}



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


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


}





#stacks_in_3157_5009 form.dds_form{width:100%;padding:2px 0}#stacks_in_3157_5009 form.dds_form input[type=search]{width:100%;color:#000000;font-size:11px;text-indent:.5em}#stacks_in_3157_5009 form.dds_form ::-webkit-input-placeholder{color:#666666}

#stacks_in_3157_5009 {
	margin: 20px 0px 0px 0px;
	padding:  2px;
}

#stacks_out_3157_5009 {
	width: 155px;
}



	#stacks_in_3157_48494 .button_icon,#stacks_in_3157_48494 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:28px;
		line-height:28px;
		font-size:17px;
	}
	


#stacks_in_3157_48494 .button_label {
	font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}




	#stacks_in_3157_48494 .button_icon {
		border-left: 1px solid rgba(0,0,0,0.2);
		float:right;
		padding-left:8px;
	}
	#stacks_in_3157_48494 .button_label {
		border-right: 1px solid rgba(255,255,255, 0.2);
		float:right;
		padding: 0px 8px 0px 4px;
	}


#stacks_in_3157_48494 .sweet_button_wrapper {
	text-align:center;

	
		height:28px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_3157_48494 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_3157_48494 .button_icon,#stacks_in_3157_48494 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_3157_48494 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_3157_48494 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 8px;
	text-decoration:none;
	text-align:center;
	color:rgba(0, 0, 0, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(193, 193, 193, 1.00);
}
#stacks_in_3157_48494 a.sweet_button:visited {
	color:rgba(0, 0, 0, 1.00);
}

#stacks_in_3157_48494 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}






	#stacks_in_3157_48494 .button_label {
		width:75px;
	}
	#stacks_in_3157_48494 .button_icon {
		width:26px;
	}


	#stacks_in_3157_48494 .sweet_button {
		-moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		-webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
		        box-shadow: 0px 2px 8px rgba(0,0,0,0.75);
	}
	#stacks_in_3157_48494 .sweet_button_wrapper{padding-bottom:16px;}


#stacks_in_3157_48494 .sweet_button:hover {
	color:rgba(0, 0, 0, 1.00);
	background: rgba(213, 213, 213, 1.00);
}
#stacks_in_3157_48494 .sweet_button:active{
	background: rgba(173, 173, 173, 1.00);
}
#stacks_in_3157_48494 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_3157_48494 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_3157_48494 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}

#stacks_in_3157_48494 .sweet_button.gradient {
	background: rgba(193, 193, 193, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(193, 193, 193, 1.00)));
	background: linear-gradient(top, rgba(243, 243, 243, 1.00), rgba(193, 193, 193, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(243, 243, 243, 1.00)', endColorstr='rgba(193, 193, 193, 1.00)',GradientType=0 );
}
#stacks_in_3157_48494 .sweet_button.gradient:hover {
	background: rgba(243, 243, 243, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), color-stop(+, %id=button_color));
	background: linear-gradient(top, rgba(243, 243, 243, 1.00), rgba(255, 255, 255, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(243, 243, 243, 1.00)', endColorstr='rgba(255, 255, 255, 1.00)',GradientType=0 );
}
#stacks_in_3157_48494 .sweet_button.gradient:active{
	background: rgba(143, 143, 143, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=button_color), to(rgba(193, 193, 193, 1.00)));
	background: linear-gradient(top, rgba(243, 243, 243, 1.00), rgba(193, 193, 193, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(243, 243, 243, 1.00)', endColorstr='rgba(193, 193, 193, 1.00)',GradientType=0 );
}
#stacks_in_3157_48494 .sweet_button.gradient.clicked {
	background: rgba(38, 113, 45, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}
#stacks_in_3157_48494 .sweet_button.gradient.clicked:hover {
	background: rgba(68, 143, 75, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), color-stop(+, %id=click_color));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(108, 183, 115, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(108, 183, 115, 1.00)',GradientType=0 );
}
#stacks_in_3157_48494 .sweet_button.gradient.clicked:active{
	background: rgba(0, 63, 0, 1.00);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(+, %id=click_color), to(rgba(38, 113, 45, 1.00)));
	background: linear-gradient(top, rgba(88, 163, 95, 1.00), rgba(38, 113, 45, 1.00));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(88, 163, 95, 1.00)', endColorstr='rgba(38, 113, 45, 1.00)',GradientType=0 );
}








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


  
/*
 * AUTHOR: JEREMY HAWES
 * STICKY NAVS
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/sticky_navs/
 * Support: support@1littledesigner.com
 * Version 1.2.0
 * Description: Fixed position navigation panels
 */

/* =========================
 * EDIT MODE - ALL THEMES
 ========================= */

/* =========================
 * ACTIVE - ALL THEMES
 ========================= */

	#sideMenu_stacks_in_3157_24298 {
		position: fixed;
		top: 0px;
		z-index: 1410065408;
	}

/* =========================
 * GENERAL STYLES - ALL THEMES
 ========================= */
#sideMenu_stacks_in_3157_24298 .sideMenuInner li.sideNavListItem,
#sideMenu_stacks_in_3157_24298 .sideMenuInner li.sideNavListItem i,
#sideMenu_stacks_in_3157_24298 .sideMenuInner li.sideNavListItem span,
#sideMenu_stacks_in_3157_24298 .sideMenuInner li.sideNavListItem span.sideNavLink {
	font-size: 13px;
	line-height: 13px;
	opacity: 1;
}
#sideMenu_stacks_in_3157_24298 .sideMenuInner li.sideNavListItem img {
	max-width: 13px;
	height: auto;
}
#sideMenu_stacks_in_3157_24298.menuPositionLeft {
	left: 0;
}
#sideMenu_stacks_in_3157_24298.menuPositionRight {
	right: 0;
}
#sideMenu_stacks_in_3157_24298 .sideMenuInner ul,
#sideMenu_stacks_in_3157_24298 .sideMenuInner li {
	padding: 0;
	margin: 0;
}
#sideMenu_stacks_in_3157_24298 .sideMenuInner ul li {
	list-style: none !important;
	list-style-type: none !important;
	padding: 12px 5px;
	display: block;
}
#sideMenu_stacks_in_3157_24298 * {
	cursor: default;
}
#sideMenu_stacks_in_3157_24298 .sideMenuInner ul li:hover * {
	cursor: pointer;
}
#sideMenu_stacks_in_3157_24298 .sideMenuInner ul.sideManuListCont li.sideNavListItem span.sideNavLink a {
	color: #333333;
	text-decoration: none;
}
#sideMenu_stacks_in_3157_24298 .sideMenuInner ul.sideManuListCont li.sideNavListItem span.sideNavLink:hover a {
	color: #999999;
}
#sideMenu_stacks_in_3157_24298 .sideMenuInner ul.sideManuListCont li.sideNavListItem span.sideNavLink {
	color: #333333 !important;
	transition: all ease-in-out 200ms;
	-webkit-transition: all ease-in-out 200ms;
	-moz-transition: all ease-in-out 200ms;
	-ms-transition: all ease-in-out 200ms;
	-o-transition: all ease-in-out 200ms;
}
#sideMenu_stacks_in_3157_24298 .sideMenuInner ul.sideManuListCont li.sideNavListItem span.sideNavLink:hover {
	color: #333333 !important;
}
#sideMenu_stacks_in_3157_24298 .sideMenuInner ul.sideManuListCont li.sideNavListItem i {
	color: #333333;
	transition: all ease-in-out 200ms;
	-webkit-transition: all ease-in-out 200ms;
	-moz-transition: all ease-in-out 200ms;
	-ms-transition: all ease-in-out 200ms;
	-o-transition: all ease-in-out 200ms;
}
#sideMenu_stacks_in_3157_24298 .sideMenuInner ul.sideManuListCont li.sideNavListItem:hover span.sideNavLink {
	transition: all ease-in-out 200ms;
	-webkit-transition: all ease-in-out 200ms;
	-moz-transition: all ease-in-out 200ms;
	-ms-transition: all ease-in-out 200ms;
	-o-transition: all ease-in-out 200ms;
}
#sideMenu_stacks_in_3157_24298 .sideMenuInner ul.sideManuListCont li.sideNavListItem:hover i {
	color: #333333;
	transition: all ease-in-out 200ms;
	-webkit-transition: all ease-in-out 200ms;
	-moz-transition: all ease-in-out 200ms;
	-ms-transition: all ease-in-out 200ms;
	-o-transition: all ease-in-out 200ms;
}
#sideMenu_stacks_in_3157_24298.midBordersOn .sideMenuInner ul li.sideNavListItem {
	border-bottom: solid 1px #CCCCCC;
	border-top: solid 1px #FFFFFF;
}
#sideMenu_stacks_in_3157_24298.midBordersOn .sideMenuInner ul li.sideNavListItem:first-child {
	border-top: none;
}
#sideMenu_stacks_in_3157_24298.midBordersOn .sideMenuInner ul li.sideNavListItem:last-child {
	border-bottom: none;
}
#sideMenu_stacks_in_3157_24298 .sideMenuInner ul li.sideNavListItem span.sideMenuText {
	overflow: visible;
	background: transparent;
	white-space: nowrap;
}
#sideMenu_stacks_in_3157_24298 .sideMenuInner ul li.sideNavListItem span.sideMenuText i {
	float: none !important;
	color: inherit;
}
#sideMenu_stacks_in_3157_24298.menuPositionLeft .sideMenuInner ul.sideManuListCont {
	border-top: solid 1px #999999;
	border-bottom: solid 1px #999999;
	border-right: solid 1px #999999;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
#sideMenu_stacks_in_3157_24298.menuPositionRight .sideMenuInner ul.sideManuListCont {
	border-top: solid 1px #999999;
	border-bottom: solid 1px #999999;
	border-left: solid 1px #999999;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
/* =========================
 * THEME 1 - TOOLTIPS
 ========================= */
#sideMenu_stacks_in_3157_24298.sideMenuTheme1 .sideMenuInner ul li.sideNavListItem span.sideMenuText span.sideNavLink {
	position: relative;
	text-align: left;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

	#sideMenu_stacks_in_3157_24298.sideMenuTheme1 .sideMenuInner ul li.sideNavListItem span.sideMenuText {
		position: absolute;
		top: 0;
	}
	#sideMenu_stacks_in_3157_24298.sideMenuTheme1.menuPositionLeft .sideMenuInner ul li.sideNavListItem span.sideMenuText {
		left: -120px;
	}
	#sideMenu_stacks_in_3157_24298.sideMenuTheme1.menuPositionRight .sideMenuInner ul li.sideNavListItem span.sideMenuText {
		right: -120px;
	}
	#sideMenu_stacks_in_3157_24298.sideMenuTheme1.menuPositionLeft .sideMenuInner ul li.sideNavListItem span.sideMenuText span.sideNavLink:before {
		right: 100%;
		margin-top: -5px;
		border-top: 5px solid transparent;
		border-bottom: 5px solid transparent;
		border-right: 5px solid #333333;
		border-right-color: #333333;
	}
	#sideMenu_stacks_in_3157_24298.sideMenuTheme1.menuPositionRight .sideMenuInner ul li.sideNavListItem span.sideMenuText span.sideNavLink:after {
		left: 100%;
		margin-top: -5px;
		border-top: 5px solid transparent;
		border-bottom: 5px solid transparent;
		border-left: 5px solid #333333;
		border-left-color: #333333;
	}

#sideMenu_stacks_in_3157_24298.sideMenuTheme1 .sideMenuInner ul li.sideNavListItem {
	position: relative;
	background: #EFEFEF;
}

#sideMenu_stacks_in_3157_24298.sideMenuTheme1 .sideMenuInner ul li.sideNavListItem:hover {
	background: #FFFFFF !important;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme1.menuPositionLeft .sideMenuInner ul li.sideNavListItem:first-child {
	border-top-right-radius: 5px;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme1.menuPositionLeft .sideMenuInner ul li.sideNavListItem:last-child {
	border-bottom-right-radius: 5px;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme1.menuPositionRight .sideMenuInner ul li.sideNavListItem:first-child {
	border-top-left-radius: 5px;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme1.menuPositionRight .sideMenuInner ul li.sideNavListItem:last-child {
	border-bottom-left-radius: 5px;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme1 .sideMenuInner ul li.sideNavListItem span.sideMenuText {
	z-index: -1;
	opacity: 0;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme1 .sideMenuInner ul li.sideNavListItem span.sideMenuText span.sideNavLink {
	width: 120px;
	background: #333333;
	display: inline-block;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme1.menuPositionLeft .sideMenuInner ul li.sideNavListItem span.sideMenuText span.sideNavLink:before,
#sideMenu_stacks_in_3157_24298.sideMenuTheme1.menuPositionRight .sideMenuInner ul li.sideNavListItem span.sideMenuText span.sideNavLink:after {
	position: absolute;
	content: "";
	width: 0;
	height: 0;
}
/* =========================
 * THEME 1 - INNER UL
 ========================= */
#sideMenu_stacks_in_3157_24298.sideMenuTheme1 .sideMenuInner ul li.sideNavListItem ul,
#sideMenu_stacks_in_3157_24298.sideMenuTheme1 .sideMenuInner ul li.sideNavListItem ol {
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	overflow: hidden;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme1.borderInnerOn .sideMenuInner ul li.sideNavListItem ul,
#sideMenu_stacks_in_3157_24298.sideMenuTheme1.borderInnerOn .sideMenuInner ul li.sideNavListItem ol {
	border: solid 1px #111111;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme1 .sideMenuInner ul li.sideNavListItem ul li,
#sideMenu_stacks_in_3157_24298.sideMenuTheme1 .sideMenuInner ul li.sideNavListItem ol li {
	background: #FFFFFF;
	transition: all ease-in-out 200ms;
	-webkit-transition: all ease-in-out 200ms;
	-moz-transition: all ease-in-out 200ms;
	-ms-transition: all ease-in-out 200ms;
	-o-transition: all ease-in-out 200ms;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme1 .sideMenuInner ul li.sideNavListItem ul li:hover,
#sideMenu_stacks_in_3157_24298.sideMenuTheme1 .sideMenuInner ul li.sideNavListItem ol li:hover {
	background: #999999;
	transition: all ease-in-out 200ms;
	-webkit-transition: all ease-in-out 200ms;
	-moz-transition: all ease-in-out 200ms;
	-ms-transition: all ease-in-out 200ms;
	-o-transition: all ease-in-out 200ms;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme1.midBordersInnerOn .sideMenuInner ul li.sideNavListItem ul li,
#sideMenu_stacks_in_3157_24298.sideMenuTheme1.midBordersInnerOn .sideMenuInner ul li.sideNavListItem ol li {
	border-top: solid 1px #555555;
	border-bottom: solid 1px #111111;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme1.midBordersInnerOn .sideMenuInner ul li.sideNavListItem ul li:first-child,
#sideMenu_stacks_in_3157_24298.sideMenuTheme1.midBordersInnerOn .sideMenuInner ul li.sideNavListItem ol li:first-child {
	border-top: none;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme1.midBordersInnerOn .sideMenuInner ul li.sideNavListItem ul li:last-child,
#sideMenu_stacks_in_3157_24298.sideMenuTheme1.midBordersInnerOn .sideMenuInner ul li.sideNavListItem ol li:last-child {
	border-bottom: none;
	border-bottom-right-radius: 2px;
	border-bottom-left-radius: 2px;
}
/* =========================
 * THEME 2
 ========================= */
#sideMenu_stacks_in_3157_24298.sideMenuTheme2 .sideMenuInner ul {
	background: #EFEFEF;
	overflow: hidden;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme2 .sideMenuInner ul li.sideNavListItem {
	overflow: hidden;
	white-space: nowrap;
	/*position: relative;*/
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme2 .sideMenuInner ul li.sideNavListItem:hover {
	background: #FFFFFF;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme2.menuPositionLeft .sideMenuInner ul li.sideNavListItem i,
#sideMenu_stacks_in_3157_24298.sideMenuTheme2.menuPositionLeft .sideMenuInner ul li.sideNavListItem span.sideMenuText {
	float: left;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme2.menuPositionLeft .sideMenuInner ul li.sideNavListItem i i {
	float: none;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme2.menuPositionRight .sideMenuInner ul li.sideNavListItem i,
#sideMenu_stacks_in_3157_24298.sideMenuTheme2.menuPositionRight .sideMenuInner ul li.sideNavListItem span.sideMenuText {
	float: right;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme2.menuPositionRight .sideMenuInner ul li.sideNavListItem i i {
	float: none;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme2 .sideMenuInner ul li.sideNavListItem span.sideMenuText {
	width: 1px;
	display: block;
	text-align: left;
	opacity: 0;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme2 ul.menuAnimOff li.sideNavListItem span.sideMenuText {
	width: 120px;
	opacity: 1;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme2.menuPositionLeft ul.menuAnimOff li.sideNavListItem span.sideMenuText {
	padding-left: 15px;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme2.menuPositionRight ul.menuAnimOff li.sideNavListItem span.sideMenuText {
	padding-right: 15px;
}
/* =========================
 * THEME 2 - INNER UL
 ========================= */
#sideMenu_stacks_in_3157_24298.sideMenuTheme2 .sideMenuInner ul li * {
	padding: 0;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme2 .sideMenuInner ul li ul.sideMenuInnerMenu {
	margin: 0;
	padding: 0;
	opacity: 0;
	height: 0;
	border: none;
	display: block;
	background: none;
	background: transparent;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme2 .sideMenuInner ul li ul.sideMenuInnerMenu li {
	margin: 0;
	padding: 10px;
	background: #FFFFFF;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme2 .sideMenuInner ul li ul.sideMenuInnerMenu li:hover {
	background: #999999;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme2 .sideMenuInner ul li ul.sideMenuInnerMenu li:first-child {
	margin-top: 10px;
	border-top-right-radius: 3px;
	border-top-left-radius: 3px;
}
#sideMenu_stacks_in_3157_24298.sideMenuTheme2 .sideMenuInner ul li ul.sideMenuInnerMenu li:last-child {
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
}

/* iPhone Landscape */
@media (max-width : 480px) {
	#sideMenu_stacks_in_3157_24298.stickyMobileOn {
		display: none;
	}
}
/*
 * Sticky Navs Inner
 * Version 1.2.0
 */

.navInner_stacks_in_3157_24300.menuIconFA img {
	display: none;
}
.navInner_stacks_in_3157_24300.menuIconIMG .fa {
	display: none;
}
li.navInner_stacks_in_3157_24300 span.sideMenuText span.sideNavLink {
	padding: 12px 10px 12px 10px;
}
/* =========================
 * THEME 1 - TOOLTIPS
 ========================= */
	li.navInner_stacks_in_3157_24300 span.sideMenuText span.sideNavLink:before,
	li.navInner_stacks_in_3157_24300 span.sideMenuText span.sideNavLink:after {
		top: 50%;
	}
/*
 * Sticky Navs Inner
 * Version 1.2.0
 */

.navInner_stacks_in_3157_24304.menuIconFA img {
	display: none;
}
.navInner_stacks_in_3157_24304.menuIconIMG .fa {
	display: none;
}
li.navInner_stacks_in_3157_24304 span.sideMenuText span.sideNavLink {
	padding: 12px 10px 12px 10px;
}
/* =========================
 * THEME 1 - TOOLTIPS
 ========================= */
	li.navInner_stacks_in_3157_24304 span.sideMenuText span.sideNavLink:before,
	li.navInner_stacks_in_3157_24304 span.sideMenuText span.sideNavLink:after {
		top: 50%;
	}
/*
 * Sticky Navs Inner
 * Version 1.2.0
 */

.navInner_stacks_in_3157_24306.menuIconFA img {
	display: none;
}
.navInner_stacks_in_3157_24306.menuIconIMG .fa {
	display: none;
}
li.navInner_stacks_in_3157_24306 span.sideMenuText span.sideNavLink {
	padding: 12px 10px 12px 10px;
}
/* =========================
 * THEME 1 - TOOLTIPS
 ========================= */
	li.navInner_stacks_in_3157_24306 span.sideMenuText span.sideNavLink:before,
	li.navInner_stacks_in_3157_24306 span.sideMenuText span.sideNavLink:after {
		top: 50%;
	}
/*
 * Sticky Navs Inner
 * Version 1.2.0
 */

.navInner_stacks_in_3157_9269.menuIconFA img {
	display: none;
}
.navInner_stacks_in_3157_9269.menuIconIMG .fa {
	display: none;
}
li.navInner_stacks_in_3157_9269 span.sideMenuText span.sideNavLink {
	padding: 12px 10px 12px 10px;
}
/* =========================
 * THEME 1 - TOOLTIPS
 ========================= */
	li.navInner_stacks_in_3157_9269 span.sideMenuText span.sideNavLink:before,
	li.navInner_stacks_in_3157_9269 span.sideMenuText span.sideNavLink:after {
		top: 50%;
	}
/*
 * Sticky Navs Inner
 * Version 1.2.0
 */

.navInner_stacks_in_3157_9274.menuIconFA img {
	display: none;
}
.navInner_stacks_in_3157_9274.menuIconIMG .fa {
	display: none;
}
li.navInner_stacks_in_3157_9274 span.sideMenuText span.sideNavLink {
	padding: 12px 10px 12px 10px;
}
/* =========================
 * THEME 1 - TOOLTIPS
 ========================= */
	li.navInner_stacks_in_3157_9274 span.sideMenuText span.sideNavLink:before,
	li.navInner_stacks_in_3157_9274 span.sideMenuText span.sideNavLink:after {
		top: 50%;
	}
/*
 * Sticky Navs Inner
 * Version 1.2.0
 */

.navInner_stacks_in_3157_24302.menuIconFA img {
	display: none;
}
.navInner_stacks_in_3157_24302.menuIconIMG .fa {
	display: none;
}
li.navInner_stacks_in_3157_24302 span.sideMenuText span.sideNavLink {
	padding: 12px 10px 12px 10px;
}
/* =========================
 * THEME 1 - TOOLTIPS
 ========================= */
	li.navInner_stacks_in_3157_24302 span.sideMenuText span.sideNavLink:before,
	li.navInner_stacks_in_3157_24302 span.sideMenuText span.sideNavLink:after {
		top: 50%;
	}
/*
 * Sticky Navs Inner
 * Version 1.2.0
 */

.navInner_stacks_in_3157_48489.menuIconFA img {
	display: none;
}
.navInner_stacks_in_3157_48489.menuIconIMG .fa {
	display: none;
}
li.navInner_stacks_in_3157_48489 span.sideMenuText span.sideNavLink {
	padding: 12px 10px 12px 10px;
}
/* =========================
 * THEME 1 - TOOLTIPS
 ========================= */
	li.navInner_stacks_in_3157_48489 span.sideMenuText span.sideNavLink:before,
	li.navInner_stacks_in_3157_48489 span.sideMenuText span.sideNavLink:after {
		top: 50%;
	}
#stacks_in_3157_3250{  padding-right:0.00px;padding-left:0.00px; }#stacks_in_3157_3250>.jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box!important;background-origin:padding-box!important}#stacks_in_3157_3250>.jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_3157_3250>.jack.width-static{width:500px}#stacks_in_3157_3250>.jack.width-flexible{width:100%}#stacks_in_3157_3250>.jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_3157_3250>.jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_3157_3250>.jack.rotate{-webkit-transform:rotate(5deg);-moz-transform:rotate(5deg);-ms-transform:rotate(5deg);-o-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_3157_3250>.jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_3157_3250>.jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_3157_3250>.jack.border-image{-webkit-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_3157_3250>.jack::after{border-radius:0px}#stacks_in_3157_3250>.jack.border-detailed-radius,#stacks_in_3157_3250>.jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_3157_3250>.jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;-moz-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_3157_3250>.jack.bg-color{background-color:#89C5FF}#stacks_in_3157_3250>.jack.bg-gradient{background-color:#89C5FF}#stacks_in_3157_3250>.jack.bg-image:not(.glass){background-image:url();background-repeat:repeat; background-position:left top;}#stacks_in_3157_3250>.jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_3157_3250>.jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_3157_3250>.jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_3157_3250>.jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_3157_3250>.jack.bg-image:not(.glass){}#stacks_in_3157_3250>.jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_3157_3250>.jack.bg-image.glass.after,#stacks_in_3157_3250>.jack.bg-image.glass::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box!important;background-origin:padding-box!important;padding:0px;background-image:url();background-repeat:repeat; background-position:left top;}#stacks_in_3157_3250>.jack.bg-image.glass.after.padding-detailed,#stacks_in_3157_3250>.jack.bg-image.padding-detailed.glass::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_3157_3250>.jack.bg-image.glass.after.bg-size-static,#stacks_in_3157_3250>.jack.bg-image.bg-size-static.glass::after{background-size:300px}#stacks_in_3157_3250>.jack.bg-image.glass.after.bg-size-fluid,#stacks_in_3157_3250>.jack.bg-image.bg-size-fluid.glass::after{background-size:100%}#stacks_in_3157_3250>.jack.bg-image.glass.after.bg-warehouse,#stacks_in_3157_3250>.jack.bg-image.bg-warehouse.glass::after{background-image:url()}
#stacks_in_3157_3250>.jack.bg-image.glass.after.bg-fallback,#stacks_in_3157_3250>.jack.bg-image.bg-fallback.glass::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_3157_3250>.jack.bg-image.glass.after,#stacks_in_3157_3250>.jack.bg-image.glass::after{}#stacks_in_3157_3250>.jack.bg-image.glass.after.bg-warehouse,#stacks_in_3157_3250>.jack.bg-image.bg-warehouse.glass::after{}}#stacks_in_3157_3250>.jack.drop-shadow{box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_3157_3250>.jack.inset-shadow{box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_3157_3250>.jack.drop-shadow.inset-shadow{box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_3157_3250>.jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);-ms-transform:rotate(-3deg);-o-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_3157_3250>.jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-ms-transform:rotate(3deg);-o-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_3157_3250>.jack.peek-shadow::before,#stacks_in_3157_3250>.jack.peek-shadow::after{box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px/10px}#stacks_in_3157_3250>.jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);-moz-transform:skew(8deg) rotate(3deg);-ms-transform:skew(8deg) rotate(3deg);-o-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)} #stacks_in_3157_3250>.jack{overflow:visible;}#stacks_in_3157_3250>.jack.height-static{height:100px}#stacks_in_3157_3250>.jack.height-minmax{min-height:100px;max-height:800px} 
#stacks_in_3157_6150{  padding-left:0px;padding-right:0px; }#stacks_in_3157_6150>.jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box!important;background-origin:padding-box!important}#stacks_in_3157_6150>.jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_3157_6150>.jack.width-static{width:500px}#stacks_in_3157_6150>.jack.width-flexible{width:100%}#stacks_in_3157_6150>.jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_3157_6150>.jack.padding-detailed{padding:10.00px 0.00px 10.00px 0.00px}#stacks_in_3157_6150>.jack.rotate{-webkit-transform:rotate(5deg);-moz-transform:rotate(5deg);-ms-transform:rotate(5deg);-o-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_3157_6150>.jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_3157_6150>.jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_3157_6150>.jack.border-image{-webkit-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_3157_6150>.jack::after{border-radius:0px}#stacks_in_3157_6150>.jack.border-detailed-radius,#stacks_in_3157_6150>.jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_3157_6150>.jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;-moz-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_3157_6150>.jack.bg-color{background-color:#262626}#stacks_in_3157_6150>.jack.bg-gradient{background-color:#89C5FF}#stacks_in_3157_6150>.jack.bg-image:not(.glass){background-image:url();background-repeat:repeat; background-position:left top;}#stacks_in_3157_6150>.jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_3157_6150>.jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_3157_6150>.jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_3157_6150>.jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_3157_6150>.jack.bg-image:not(.glass){}#stacks_in_3157_6150>.jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_3157_6150>.jack.bg-image.glass.after,#stacks_in_3157_6150>.jack.bg-image.glass::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box!important;background-origin:padding-box!important;padding:0px;background-image:url();background-repeat:repeat; background-position:left top;}#stacks_in_3157_6150>.jack.bg-image.glass.after.padding-detailed,#stacks_in_3157_6150>.jack.bg-image.padding-detailed.glass::after{padding:10.00px 0.00px 10.00px 0.00px}#stacks_in_3157_6150>.jack.bg-image.glass.after.bg-size-static,#stacks_in_3157_6150>.jack.bg-image.bg-size-static.glass::after{background-size:300px}#stacks_in_3157_6150>.jack.bg-image.glass.after.bg-size-fluid,#stacks_in_3157_6150>.jack.bg-image.bg-size-fluid.glass::after{background-size:100%}#stacks_in_3157_6150>.jack.bg-image.glass.after.bg-warehouse,#stacks_in_3157_6150>.jack.bg-image.bg-warehouse.glass::after{background-image:url()}
#stacks_in_3157_6150>.jack.bg-image.glass.after.bg-fallback,#stacks_in_3157_6150>.jack.bg-image.bg-fallback.glass::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_3157_6150>.jack.bg-image.glass.after,#stacks_in_3157_6150>.jack.bg-image.glass::after{}#stacks_in_3157_6150>.jack.bg-image.glass.after.bg-warehouse,#stacks_in_3157_6150>.jack.bg-image.bg-warehouse.glass::after{}}#stacks_in_3157_6150>.jack.drop-shadow{box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_3157_6150>.jack.inset-shadow{box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_3157_6150>.jack.drop-shadow.inset-shadow{box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_3157_6150>.jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);-ms-transform:rotate(-3deg);-o-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_3157_6150>.jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-ms-transform:rotate(3deg);-o-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_3157_6150>.jack.peek-shadow::before,#stacks_in_3157_6150>.jack.peek-shadow::after{box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px/10px}#stacks_in_3157_6150>.jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);-moz-transform:skew(8deg) rotate(3deg);-ms-transform:skew(8deg) rotate(3deg);-o-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)} #stacks_in_3157_6150>.jack{overflow:visible;}#stacks_in_3157_6150>.jack.height-static{height:100px}#stacks_in_3157_6150>.jack.height-minmax{min-height:50px;max-height:100px} 
           

 #stacks_in_3157_6875>.row{padding-top:0.00rem;padding-bottom:0.00rem} #stacks_in_3157_6875>.row>.columns{margin-top:0.00rem}
#stacks_in_3157_6989 .breadcrumbs li{}#stacks_in_3157_6989 .breadcrumbs li:after{content:"/"}#stacks_in_3157_6989 .breadcrumbs li:last-child:after{content:" " !important}#stacks_in_3157_6989 .breadcrumbs li a{}#stacks_in_3157_6989 .breadcrumbs{background-color:transparent;border-color:transparent;color:rgba(255, 255, 255, 1.00)}#stacks_in_3157_6989 .breadcrumbs a{color:rgba(0, 139, 188, 1.00)}#stacks_in_3157_6989 .breadcrumbs a:hover{color:rgba(0, 204, 255, 1.00)}#stacks_in_3157_6989 .breadcrumbs .current a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3157_6989 .breadcrumbs .unavailable{color:rgba(255, 255, 255, 1.00)}#stacks_in_3157_6989 .breadcrumbs li:before{color:rgba(255, 255, 255, 1.00)}
#stacks_in_3157_6853{  padding-right:0.00px;padding-left:0.00px; }#stacks_in_3157_6853>.jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box!important;background-origin:padding-box!important}#stacks_in_3157_6853>.jack.width-minmax{min-width:288px;max-width:288px}#stacks_in_3157_6853>.jack.width-static{width:500px}#stacks_in_3157_6853>.jack.width-flexible{width:100%}#stacks_in_3157_6853>.jack.margin-detailed{margin:2.00px 0.00px 0.00px 0.00px}#stacks_in_3157_6853>.jack.padding-detailed{padding:0.00px 80.00px 0.00px 0.00px}#stacks_in_3157_6853>.jack.rotate{-webkit-transform:rotate(5deg);-moz-transform:rotate(5deg);-ms-transform:rotate(5deg);-o-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_3157_6853>.jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_3157_6853>.jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_3157_6853>.jack.border-image{-webkit-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_3157_6853>.jack::after{border-radius:0px}#stacks_in_3157_6853>.jack.border-detailed-radius,#stacks_in_3157_6853>.jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_3157_6853>.jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;-moz-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_3157_6853>.jack.bg-color{background-color:#89C5FF}#stacks_in_3157_6853>.jack.bg-gradient{background-color:#89C5FF}#stacks_in_3157_6853>.jack.bg-image:not(.glass){background-image:url();background-repeat:repeat; background-position:left top;}#stacks_in_3157_6853>.jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_3157_6853>.jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_3157_6853>.jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_3157_6853>.jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_3157_6853>.jack.bg-image:not(.glass){}#stacks_in_3157_6853>.jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_3157_6853>.jack.bg-image.glass.after,#stacks_in_3157_6853>.jack.bg-image.glass::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box!important;background-origin:padding-box!important;padding:0px;background-image:url();background-repeat:repeat; background-position:left top;}#stacks_in_3157_6853>.jack.bg-image.glass.after.padding-detailed,#stacks_in_3157_6853>.jack.bg-image.padding-detailed.glass::after{padding:0.00px 80.00px 0.00px 0.00px}#stacks_in_3157_6853>.jack.bg-image.glass.after.bg-size-static,#stacks_in_3157_6853>.jack.bg-image.bg-size-static.glass::after{background-size:300px}#stacks_in_3157_6853>.jack.bg-image.glass.after.bg-size-fluid,#stacks_in_3157_6853>.jack.bg-image.bg-size-fluid.glass::after{background-size:100%}#stacks_in_3157_6853>.jack.bg-image.glass.after.bg-warehouse,#stacks_in_3157_6853>.jack.bg-image.bg-warehouse.glass::after{background-image:url()}
#stacks_in_3157_6853>.jack.bg-image.glass.after.bg-fallback,#stacks_in_3157_6853>.jack.bg-image.bg-fallback.glass::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_3157_6853>.jack.bg-image.glass.after,#stacks_in_3157_6853>.jack.bg-image.glass::after{}#stacks_in_3157_6853>.jack.bg-image.glass.after.bg-warehouse,#stacks_in_3157_6853>.jack.bg-image.bg-warehouse.glass::after{}}#stacks_in_3157_6853>.jack.drop-shadow{box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_3157_6853>.jack.inset-shadow{box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_3157_6853>.jack.drop-shadow.inset-shadow{box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_3157_6853>.jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);-ms-transform:rotate(-3deg);-o-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_3157_6853>.jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-ms-transform:rotate(3deg);-o-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_3157_6853>.jack.peek-shadow::before,#stacks_in_3157_6853>.jack.peek-shadow::after{box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px/10px}#stacks_in_3157_6853>.jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);-moz-transform:skew(8deg) rotate(3deg);-ms-transform:skew(8deg) rotate(3deg);-o-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)} #stacks_in_3157_6853>.jack{overflow:visible;}#stacks_in_3157_6853>.jack.height-static{height:100px}#stacks_in_3157_6853>.jack.height-minmax{min-height:100px;max-height:800px} 
/* @group CSS Reset */

#shareStackWrapperstacks_in_3157_6582 *,
#shareStackWrapperstacks_in_3157_6582 *::after,
#shareStackWrapperstacks_in_3157_6582 *::before {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

#shareStackWrapperstacks_in_3157_6582 ul#shareStackArraystacks_in_3157_6582 {
	padding: 0;
	margin: 0;
	list-style: none;
	height: auto;
	overflow: auto;
	text-align: right;
}

#shareStackWrapperstacks_in_3157_6582 [class^="fa fa-"] {
	line-height: 26px;
	color: inherit;
}

/* @end */

/* @group Positioning */

/* @group Absolute Positioning */

/*  */

/* @end */

/* @group Fixed Positioning */

/*  */

/* @end */

/*  */

/* @group Relative Positioning */

#shareStackWrapperstacks_in_3157_6582 {
	position: relative;
	width: 120%;
}

/*  */

/* @end */





/* @end */

/* @group Buttons */

#shareStackWrapperstacks_in_3157_6582 ul#shareStackArraystacks_in_3157_6582 li.shareStackItem {
	padding: 0;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 0px;
	display: inline-block;
	text-align: center;
	font-size: 13px;
	width: 26px;
	height: 26px;
	line-height: 26px;
	cursor: pointer;
	position: relative;
	transition: opacity 300ms ease-in-out;
	border-radius: 0px;
	opacity: 0.99;
	list-style: none;
	overflow: hidden;
}

#shareStackWrapperstacks_in_3157_6582 ul#shareStackArraystacks_in_3157_6582 li.shareStackItem:hover {
	opacity: 0.75;
}

#shareStackWrapperstacks_in_3157_6582 ul#shareStackArraystacks_in_3157_6582 li.shareStackItem a {
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 50px;
}

/* @end */

/* @group Responsive */

#shareStackWrapperstacks_in_3157_6582 ul#shareStackArraystacks_in_3157_6582 {
	display: none;
}

@media screen and (min-width: 380px) and (max-width: 100000px) {
	#shareStackWrapperstacks_in_3157_6582 ul#shareStackArraystacks_in_3157_6582 {
		display: block;
	}
}

/* @end */

/* @group Icons */

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-baidustacks_in_3157_6582 {
	background: #FF4749;
	color: #0000ff;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-bloggerstacks_in_3157_6582 {
	background: #F3881F;
	color: #ffffff;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-deliciousstacks_in_3157_6582 {
	background: #0c83e8;
	color: #ffffff;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-diggstacks_in_3157_6582 {
	background: #000000;
	color: #ffffff;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-facebookstacks_in_3157_6582 {
	background: #406fac;
	color: #ffffff;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-googleplusstacks_in_3157_6582 {
	background: #e15540;
	color: #ffffff;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-linkedinstacks_in_3157_6582 {
	background: #0182bd;
	color: #ffffff;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-livejournalstacks_in_3157_6582 {
	background: #083B51;
	color: #9AECFF;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-myspacestacks_in_3157_6582 {
	background: #032087;
	color: #ffffff;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-odnoklassnikistacks_in_3157_6582 {
	background: #E76E23;
	color: #ffffff;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-pocketstacks_in_3157_6582 {
	background: #DC2447;
	color: #ffffff;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-redditstacks_in_3157_6582 {
	background: #d3e6f8;
	color: #000000;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-renrenstacks_in_3157_6582 {
	background: #f5f5f5;
	color: #0164b4;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-stumbleuponstacks_in_3157_6582 {
	background: #ed5328;
	color: #ffffff;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-telegramstacks_in_3157_6582 {
	background: #32afed;
	color: #ffffff;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-tumblrstacks_in_3157_6582 {
	background: #3c4f67;
	color: #ffffff;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-twitterstacks_in_3157_6582 {
	background: #44A6FD;
	color: #ffffff;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-viadeostacks_in_3157_6582 {
	background: #333333;
	color: #E88B25;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-vkontaktestacks_in_3157_6582 {
	background: #557fab;
	color: #ffffff;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-weibostacks_in_3157_6582 {
	background: #db2f2d;
	color: #ffffff;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-xingstacks_in_3157_6582 {
	background: #D0D607;
	color: #0A5256;
}

/* Utility icons */

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-emailstacks_in_3157_6582 {
	background: #cdcdcd;
	color: #333333;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-printstacks_in_3157_6582 {
	background: #808080;
	color: #ffffff;
}

/* Custom Icons */

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-customonestacks_in_3157_6582 {
	background: #FF8000;
	color: #333333;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-customtwostacks_in_3157_6582 {
	background: #FF8000;
	color: #333333;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-customthreestacks_in_3157_6582 {
	background: #FF8000;
	color: #333333;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-customfourstacks_in_3157_6582 {
	background: #FF8000;
	color: #333333;
}

#shareStackWrapperstacks_in_3157_6582 #shareStackItem-customfivestacks_in_3157_6582 {
	background: #FF8000;
	color: #333333;
}

/* @end */

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

/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_out_3157_6582 {
	margin-right:0;
}
#stacks_in_3157_3249_1231 .copyright{color:rgba(34, 34, 34, 1.00);font-size:0.75rem}#stacks_in_3157_3249_1231 .copyright a{color:rgba(0, 140, 186, 1.00)}#stacks_in_3157_3249_1231 .copyright a:hover{color:rgba(0, 102, 136, 1.00)}#stacks_in_3157_3249_1231 .copyright{margin-bottom:0}

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


/* Start doobox Chauffeur css */

.stacks_in_3157_4255wrapper{
width: 40px;
margin: 0 auto;

display : none;

opacity:0.7;
}

.stacks_in_3157_4255bulter{
cursor: pointer;
border: 1px solid #858585;
background: #999999;
width: 40px;
height: 40px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
color: #EEEEEE;
text-align: center;
line-height: 40px;
margin: 5px;
z-index: 1000001;
background: #999999;
}


.stacks_in_3157_4255bulter i {
	display: block;
	margin: 0 auto 0 auto;
	font-size: 20px;
	line-height: 38px; 
	vertical-align: middle;
}


.stacks_in_3157_4255bulter:hover{
color: #DADADA;
background: #A8A8A8; /* Old browsers */
}

/* end doobox Chauffeur css */

