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

a.block-link{display:block;text-decoration:none !important;padding:0;margin:0;color:inherit}a.block-link:link,a.block-link:visited,a.block-link:hover,a.block-link:active{color:inherit}

.vegas-wrapper,.vegas-overlay,.vegas-timer,.vegas-slide,.vegas-slide-inner{position:absolute;top:0;left:0;bottom:0;right:0;overflow:hidden;border:none;padding:0;margin:0}.vegas-slide,.vegas-slide-inner{margin:0;padding:0;background:transparent center center no-repeat;-webkit-transform:translateZ(0);transform:translateZ(0);will-change:transform,opacity}body.vegas-container{overflow:auto;position:static;z-index:-2}body.vegas-container > .vegas-timer,body.vegas-container > .vegas-overlay,body.vegas-container > .vegas-slide{position:fixed;z-index:-1}.vegas-transition-fade,.vegas-transition-fade2{opacity:0}.vegas-transition-fade-in,.vegas-transition-fade2-in{opacity:1}.vegas-transition-fade2-out{opacity:0}
#parallax_stacks_in_2072833{position:relative;overflow:visible}#parallax_stacks_in_2072833 .parallax-overlay{position:absolute;top:-20px;height:calc(100% + 40px);width:100%;opacity:0.50}#parallax_stacks_in_2072833 .parallax-overlay.overlay-hide{display:none}#parallax_stacks_in_2072833 .parallax-overlay.overlay-color{background-color:rgba(0, 0, 0, 1.00)}#parallax_stacks_in_2072833 .parallax-overlay.overlay-tile{background-image:url();background-repeat:repeat}@media only screen and (max-width:40em){#parallax_stacks_in_2072833 .parallax-overlay{height:100%;top:0}}#parallax_stacks_in_2072833{background:transparent}#parallax_stacks_in_2072833.type-cover{position:absolute}#parallax_stacks_in_2072833.type-image{min-height:350px}#parallax_stacks_in_2072833.touch-device{background-image:none !important;position:relative}#parallax_stacks_in_2072833.touch-device:after{position:absolute;content:"";top:0;left:0;bottom:0;right:0;height:100%;width:100%;background-size:cover;background-position:center center;overflow:hidden;opacity:1.00;z-index:-1}#parallax_stacks_in_2072833 > *{z-index:10}
#toTop{--elevator-image:url(../index_files/image-1351436.png);--elevator-size:70px;display:none;text-decoration:none;position:fixed;bottom:10px;right:10px;overflow:hidden;width:var(--elevator-size);height:var(--elevator-size);border:none;text-indent:-9999px;background-image:var(--elevator-image);background-repeat:no-repeat;background-position:left top;z-index:9988}#toTop:active,#toTop:focus{outline:none}#toTop:hover{background-position:left calc(var(--elevator-size) * -1)}

#stacks_in_2073030 {
	background-color: rgba(255, 255, 255, 1.00);
}
/*
-------------------------------------------
Stack: Blueball FreeStack Responsive Max Width Stack
Style Sheet: fsrmaxwidth.css
Created: 23, October 2012
Last Modified: 10, November, 2014
Author: Blueball Design
www.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2073031 {
	max-width: 1200px;
	min-width: 320px;
	margin: 0px auto !important;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_2073031 {
	max-width: 676px !important;
	min-width: 219px !important;
}

}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2073032 {
	padding: 10px 0px 0px 0px;
	margin: 0px 0px 0px 70px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
#stacks_in_2073032 { 
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 10px;
}
}
#stacks_in_2073033>.s3_row {
	margin: 0 -0px;
}

#stacks_in_2073033>.s3_row>.s3_column_left {
	width: 59.32%;
}

#stacks_in_2073033>.s3_row>.s3_column_right {
	width: 40.680000%;
}




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










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



}



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



}





/* FlexTable styles */
/* Bryn Owen Design, 2019 */

/* the div the table lives inside */
#FlexTableDiv_stacks_in_2073039 {

	/* default no padding without shadows, so that generic border/rounding work nicely */
	padding-right: 0px;
	padding-left: 0px;
	padding-top: 0px;
	padding-bottom: 0px;

	/* modify div paddings to make room for shadow, but generic border/rounding will not work */
	

	/* scroll forces scroll bars in firefox/ie - use auto to show them when necessary */
	overflow-x: auto;

	
	overflow-y: auto;
	

	
	}

#FlexTablePager_stacks_in_2073039, #FlexTableCaption_stacks_in_2073039, #FlexTableSearch_stacks_in_2073039 {
	line-height: 24px !important;
	max-height: 24px;
	white-space: nowrap;
	display: inline-block;
	color: rgba(0, 0, 0, 1.00);
	font-size: 0.95em !important;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-left: 4px;
	padding-right: 4px;

	
	-moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;

	
	border: none;
	
	position: relative;
	z-index: 0;
	}

#FlexTablePager_stacks_in_2073039 {
	background-color: rgba(255, 255, 255, 1.00);
	float: left;
	margin-left: 24px;
	font-family: Arial, Helvetica, sans-serif !important;
	
	vertical-align: top;
	
	border-top: none !important;
	-moz-border-top-left-radius: 0px !important;
	-moz-border-top-right-radius: 0px !important;
    -webkit-border-top-left-radius: 0px !important;
    -webkit-border-top-right-radius: 0px !important;
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
	
	
	
	}

#FlexTablePager_stacks_in_2073039 a {
	text-decoration: none !important;
	}

#FlexTablePager_stacks_in_2073039 label {
	display: inline;
	}





#FlexTableRot_stacks_in_2073039 {
	display: none;
	}

/* the overall table itself */
#FlexTable_stacks_in_2073039, #FlexTableRot_stacks_in_2073039 {

	position: relative;
	z-index: 0;
	width: 100%;
	margin: 0 auto;
	font-size: 0.95em !important;

	
	color: rgba(0, 0, 0, 1.00);
	

	
		border-collapse: collapse;
		
	

	
		border: none;
		border-spacing: 0px 0px;
	

	
	}

/* fix trailing margin after td paragraphs in 1.5.0 */
#FlexTable_stacks_in_2073039 td p, #FlexTableRot_stacks_in_2073039 td p {
	margin-bottom: 0;
	margin-top: 0;
	
	}

/* every table cell */
#FlexTable_stacks_in_2073039 td, #FlexTableRot_stacks_in_2073039 td {

	/* new for 1.1.6 to improve font scaling in foundation */
	font-size: 0.95em !important;

	
	
	border-left: 1px solid #999999;
	
	
	
	
	
	

	background-color: rgba(255, 255, 255, 1.00);

	
	
	
	text-align: Left;
	

	
	
	
	
	vertical-align: middle;
	
	

	

	padding-left: 2px !important;
	padding-right: 2px !important;
	padding-top: 2px !important;
	padding-bottom: 2px !important;

	
	width: 20%;
	

	

	
	}

/* first row overrides */
#FlexTable_stacks_in_2073039 tr:first-child td {

	

	
	
	
	

	
	
	vertical-align: middle;
	
	

	
	}

/* first column for rotated table */
#FlexTableRot_stacks_in_2073039 td:first-child {

	

	
	
	
	

	
	text-align: Left;
	

	
	width: 20%;
	
	}

#FlexTableRot_stacks_in_2073039 td {
	width: auto !important;
	}

/* first column overrides */
#FlexTable_stacks_in_2073039 td:first-child {

	

	
	border-left: none !important;
	
	
	
	

	
	text-align: Left;
	

	
	width: 20%;
	

	
	}



/* rotated table first row second column overrides */
#FlexTableRotR1C2_stacks_in_2073039 {
	
	}







/* outer table radius when collapsed */
#FlexTable_stacks_in_2073039 tr:first-child td:first-child {
    -moz-border-radius-topleft: 0px;
    -webkit-border-top-left-radius: 0px;
    border-top-left-radius: 0px;
	}
#FlexTable_stacks_in_2073039 tr:first-child td:last-child {
    -moz-border-radius-topright: 0px !important;
    -webkit-border-top-right-radius: 0px !important;
    border-top-right-radius: 0px !important;
	}
#FlexTable_stacks_in_2073039 tr:last-child td:first-child {
    -moz-border-radius-bottomleft: 0px !important;
    -webkit-border-bottom-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
	}
#FlexTable_stacks_in_2073039 tr:last-child td:last-child {
    -moz-border-radius-bottomright: 0px !important;
    -webkit-border-bottom-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
	}





@media all and (max-width: 600px) {
#FlexTable_stacks_in_2073039, #FlexTableRot_stacks_in_2073039, #FlexTablePager_stacks_in_2073039, #FlexTableCaption_stacks_in_2073039, #FlexTableSearch_stacks_in_2073039, #FlexTableSearch_search_stacks_in_2073039, #FlexTableSearch_button_stacks_in_2073039 {
	/* one master location for font scaling etc. */
	font-size: 0.95em !important;
	line-height: 1.2em;
	}

/* new for 1.1.6 to improve font scaling in foundation */
#FlexTable_stacks_in_2073039 tr td, #FlexTableRot_stacks_in_2073039 tr td {
	/* font-size: 0.95em !important; */
	font-size: 1em !important;
	}

/* added in 1.5.0 for paragraphs inside td from Markdown */
#FlexTable_stacks_in_2073039 td p, #FlexTableRot_stacks_in_2073039 td p {
	/* font-size: 0.95em !important; */
	font-size: 1em !important;
	}

#FlexTableSearch_search_stacks_in_2073039 {
	width: 100px !important;
	}




/* single column convert row/col to block */
#FlexTable_stacks_in_2073039 td {
	display: block;
	width: auto !important;
	margin-top: -1px !important;
	-moz-border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    border-radius: 0px !important;

   	
	
	
	text-align: Left !important;
	
	}
#FlexTable_stacks_in_2073039 tr td:first-child {
	margin-top: 0px !important;
	}
#FlexTableR1_stacks_in_2073039 {
	display: none !important;
	}

}




/* hover dynamics for pager/search, disabled on small screens */
@media all and (min-width: 600px) {


}

/* never print search and pager */
@media print {
#FlexTablePager_stacks_in_2073039, #FlexTableSearch_stacks_in_2073039 {
	display: none !important;
	}
}



/* Start doobox anchor css */








.stacks_in_1352890anchor1 {

}

.stacks_in_1352890anchor2 {

}


/* end doobox anchor css */
#stacks_in_1352712 {
	background-color: rgba(38, 38, 38, 1.00);
}
/*
-------------------------------------------
Stack: Blueball FreeStack Responsive Max Width Stack
Style Sheet: fsrmaxwidth.css
Created: 23, October 2012
Last Modified: 10, November, 2014
Author: Blueball Design
www.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1348793 {
	max-width: 1200px;
	min-width: 320px;
	margin: 0px auto !important;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_1348793 {
	max-width: 100% !important;
	min-width: 50% !important;
}

}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1349163 {
	padding: 0px 0px 20px 0px;
	margin: 60px 0px 10px 60px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
#stacks_in_1349163 { 
    padding: 6px 0px 0px 0px;
    margin: 30px 10px 10px 10px;
}
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive 2 Column Stack' 
Style Sheet: fsr2columns.css Style Sheet
Created: 29, December 2012
Last Modified: 17, April 2014
Author: Blueball Design, Charlie Lockhart
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1349213 #fsr_colwrap_stacks_in_1349213 {
	width: 100%;
	vertical-align: top;
	margin: 0;
	padding: 0;
	overflow: auto;
}

#stacks_in_1349213 #fsr_colwrap_stacks_in_1349213 #fsr_leftcol_stacks_in_1349213 {
	float: left;
	display: block;
	width: 23%;
	height: auto;
	margin: 0;
}

#stacks_in_1349213 #fsr_colwrap_stacks_in_1349213 #fsr_leftcol_stacks_in_1349213 .leftcolpad_stacks_in_1349213 {
	padding: 0px 0px 11px 0px;
}

#stacks_in_1349213 #fsr_colwrap_stacks_in_1349213 #fsr_rightcol_stacks_in_1349213 {
	float: right;
	display: block;
	width: 77%;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_1349213 #fsr_colwrap_stacks_in_1349213 #fsr_rightcol_stacks_in_1349213 .rightcolpad_stacks_in_1349213 {
	padding: 0px 0px 11px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_1349213 #fsr_colwrap_stacks_in_1349213 #fsr_leftcol_stacks_in_1349213 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_1349213 #fsr_colwrap_stacks_in_1349213 #fsr_leftcol_stacks_in_1349213 .leftcolpad_stacks_in_1349213 {
	padding: 0px 5px 5px 11px;
}

#stacks_in_1349213 #fsr_colwrap_stacks_in_1349213 #fsr_rightcol_stacks_in_1349213 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_1349213 #fsr_colwrap_stacks_in_1349213 #fsr_rightcol_stacks_in_1349213 .rightcolpad_stacks_in_1349213 {
	padding: 0px 5px 5px 11px;
}

}/* Start True Retina stack CSS code */#stacks_in_2072874 img{	max-width: 50%;	height: auto;}/* End True Retina stack CSS code */
#stacks_out_2072874 {
	width: 200px;
	margin-left:0;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

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

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
#stacks_in_1352981 { 
    padding: 0% 0% 0% 0%;
    margin: 0% 0% 0% 0%;
}
}
#stacks_in_1349167 h1{font-size:40px}@media screen and (max-width:770px){#stacks_in_1349167 h1{font-size:40px}}@media screen and (max-width:600px){#stacks_in_1349167 h1{font-size:38px}}@media screen and (max-width:500px){#stacks_in_1349167 h1{font-size:30px}}@media screen and (max-width:320px){#stacks_in_1349167 h1{font-size:28px}}

#stacks_in_1349167 {
	margin: 8px 0px 0px 0px;
}
/*
 * Simple Buttons Free
 * Author: Jeremy Hawes
 * URL: http://onelittledesigner.com/rapidweaver-stack/simple-buttons/
 * HELP URL: forum.onelittledesigner.com
 * Description: Drag & Drop CSS3 Buttons
 * Version: 1.1.2
 * Requirements: RapidWeaver 5.0+, Stacks 2.0+
 */

/* Double Gradient Generated by http://www.colorzilla.com/gradient-editor/ */
#buttonContainer_stacks_in_2072708 a.buttonGradientDouble {
	background: #1E5799; /* Old browsers */
	background: -moz-linear-gradient(top, #1E5799 0%, #2989D8 50%, #207CCA 51%, #7DB9E8 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1E5799), color-stop(50%,#2989D8), color-stop(51%,#207CCA), color-stop(100%,#7DB9E8)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* IE10+ */
	background: linear-gradient(to bottom, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1E5799', endColorstr='#7DB9E8',GradientType=0 ); /* IE6-9 */
}
#buttonContainer_stacks_in_2072708 a.buttonGradientDouble:hover {
	background: #1E5799; /* Old browsers */
	background: -moz-linear-gradient(top, #1E5799 0%, #2989D8 50%, #207CCA 51%, #7DB9E8 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1E5799), color-stop(50%,#2989D8), color-stop(51%,#207CCA), color-stop(100%,#7DB9E8)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* IE10+ */
	background: linear-gradient(to bottom, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1E5799', endColorstr='#7DB9E8',GradientType=0 ); /* IE6-9 */
}
/* Single Gradients genrated with http://cssgradientbutton.com/ */
#buttonContainer_stacks_in_2072708 a.buttonGradientSingle {
	background: -webkit-gradient(linear, left top, left bottom, from(#669900), to(#99CC33));
	background: -webkit-linear-gradient(top, #669900, #99CC33);
	background: -moz-linear-gradient(top, #669900, #99CC33);
	background: -ms-linear-gradient(top, #669900, #99CC33);
	background: -o-linear-gradient(top, #669900, #99CC33);
	background: linear-gradient(to bottom, #669900, #99CC33);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#669900, endColorstr=#99CC33);
}
#buttonContainer_stacks_in_2072708 a.buttonGradientSingle:hover {
	background: -webkit-gradient(linear, left top, left bottom, from(#26759E), to(#133D5B));
	background: -webkit-linear-gradient(top, #26759E, #133D5B);
	background: -moz-linear-gradient(top, #26759E, #133D5B);
	background: -ms-linear-gradient(top, #26759E, #133D5B);
	background: -o-linear-gradient(top, #26759E, #133D5B);
	background: linear-gradient(to bottom, #26759E, #133D5B);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#26759E, endColorstr=#133D5B);
}
/* GLOBAL */
#buttonContainer_stacks_in_2072708 a.transparentOn {
	background-color: none !important;
	background: none !important;
}
#buttonContainer_stacks_in_2072708 {
	width: 100%;
	display: block;
	padding-bottom: 5px;
}
#buttonContainer_stacks_in_2072708 a.simpleButton_stacks_in_2072708 {
	font-weight: normal;
	cursor: pointer;
	max-width: 250px;
	text-decoration: none;
	display: block;
	width: 100%;
	color: #FFFFFF !important;
	text-align: Center;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 4px;
	padding-right: 4px;
	border-radius: 12px;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
	transform:rotate(deg);
	-webkit-transform:rotate(deg);
	-moz-transform:rotate(deg);
	-ms-transform:rotate(deg);
	-o-transform:rotate(deg);
	transition: all s ease-in-out;
	-webkit-transition: all s ease-in-out;
	-moz-transition: all s ease-in-out;
	-ms-transition: all s ease-in-out;
	-o-transition: all s ease-in-out;
	opacity: ;
}
#buttonContainer_stacks_in_2072708 a.simpleButton_stacks_in_2072708:hover, #buttonContainer_stacks_in_2072708 a:hover {
	color: #FFFFFF !important;
	transform:rotate(deg);
	-webkit-transform:rotate(deg);
	-moz-transform:rotate(deg);
	-ms-transform:rotate(deg);
	-o-transform:rotate(deg);
	transition: all s ease-in-out;
	-webkit-transition: all s ease-in-out;
	-moz-transition: all s ease-in-out;
	-ms-transition: all s ease-in-out;
	-o-transition: all s ease-in-out;
	opacity: ;
}
#buttonContainer_stacks_in_2072708 a.simpleButton_stacks_in_2072708.buttonGradientOff {
	background-color: #72AB00;
}
#buttonContainer_stacks_in_2072708 a.simpleButton_stacks_in_2072708.buttonGradientOff:hover, #buttonContainer_stacks_in_2072708 a.buttonGradientOff:hover {
	background-color: #99CC33;
}
#buttonContainer_stacks_in_2072708 a.transparentOn:hover {
	background-color: none !important;
}
#buttonContainer_stacks_in_2072708 a.borderOn {
	border: solid 0px #333333;
}
#buttonContainer_stacks_in_2072708 a.borderOn:hover {
	border: solid 0px #333333;
}

/* OPTIONS */

#buttonContainer_stacks_in_2072708 a.alignLeft {
	float: left;
}
#buttonContainer_stacks_in_2072708 a.alignRight {
	float: right;
}
#buttonContainer_stacks_in_2072708 a.alignCenter {
	margin: 0 auto;
}
#buttonContainer_stacks_in_2072708 a.textShadowOn {
	text-shadow:  #333333 !important;
}
#buttonContainer_stacks_in_2072708 a.textShadowOn:hover {
	text-shadow:  #333333;
}
#buttonContainer_stacks_in_2072708 a.buttonShadowOn {
	box-shadow:  #333333;
	-moz-box-shadow:  #333333;
	-webkit-box-shadow:  #333333;
	-ms-box-shadow:  #333333;
	-o-box-shadow:  #333333;
}
#buttonContainer_stacks_in_2072708 a.buttonShadowOn:hover {
	box-shadow:  #333333;
	-moz-box-shadow:  #333333;
	-webkit-box-shadow:  #333333;
	-ms-box-shadow:  #333333;
	-o-box-shadow:  #333333;
}


#stacks_in_2072708 {
	margin: 10px 10px 10px 0px;
}
/*
 * Simple Buttons Free
 * Author: Jeremy Hawes
 * URL: http://onelittledesigner.com/rapidweaver-stack/simple-buttons/
 * HELP URL: forum.onelittledesigner.com
 * Description: Drag & Drop CSS3 Buttons
 * Version: 1.1.2
 * Requirements: RapidWeaver 5.0+, Stacks 2.0+
 */

/* Double Gradient Generated by http://www.colorzilla.com/gradient-editor/ */
#buttonContainer_stacks_in_2073145 a.buttonGradientDouble {
	background: #1E5799; /* Old browsers */
	background: -moz-linear-gradient(top, #1E5799 0%, #2989D8 50%, #207CCA 51%, #7DB9E8 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1E5799), color-stop(50%,#2989D8), color-stop(51%,#207CCA), color-stop(100%,#7DB9E8)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* IE10+ */
	background: linear-gradient(to bottom, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1E5799', endColorstr='#7DB9E8',GradientType=0 ); /* IE6-9 */
}
#buttonContainer_stacks_in_2073145 a.buttonGradientDouble:hover {
	background: #1E5799; /* Old browsers */
	background: -moz-linear-gradient(top, #1E5799 0%, #2989D8 50%, #207CCA 51%, #7DB9E8 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1E5799), color-stop(50%,#2989D8), color-stop(51%,#207CCA), color-stop(100%,#7DB9E8)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* IE10+ */
	background: linear-gradient(to bottom, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1E5799', endColorstr='#7DB9E8',GradientType=0 ); /* IE6-9 */
}
/* Single Gradients genrated with http://cssgradientbutton.com/ */
#buttonContainer_stacks_in_2073145 a.buttonGradientSingle {
	background: -webkit-gradient(linear, left top, left bottom, from(#669900), to(#99CC33));
	background: -webkit-linear-gradient(top, #669900, #99CC33);
	background: -moz-linear-gradient(top, #669900, #99CC33);
	background: -ms-linear-gradient(top, #669900, #99CC33);
	background: -o-linear-gradient(top, #669900, #99CC33);
	background: linear-gradient(to bottom, #669900, #99CC33);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#669900, endColorstr=#99CC33);
}
#buttonContainer_stacks_in_2073145 a.buttonGradientSingle:hover {
	background: -webkit-gradient(linear, left top, left bottom, from(#26759E), to(#133D5B));
	background: -webkit-linear-gradient(top, #26759E, #133D5B);
	background: -moz-linear-gradient(top, #26759E, #133D5B);
	background: -ms-linear-gradient(top, #26759E, #133D5B);
	background: -o-linear-gradient(top, #26759E, #133D5B);
	background: linear-gradient(to bottom, #26759E, #133D5B);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#26759E, endColorstr=#133D5B);
}
/* GLOBAL */
#buttonContainer_stacks_in_2073145 a.transparentOn {
	background-color: none !important;
	background: none !important;
}
#buttonContainer_stacks_in_2073145 {
	width: 100%;
	display: block;
	padding-bottom: 5px;
}
#buttonContainer_stacks_in_2073145 a.simpleButton_stacks_in_2073145 {
	font-weight: normal;
	cursor: pointer;
	max-width: 260px;
	text-decoration: none;
	display: block;
	width: 100%;
	color: #FFFFFF !important;
	text-align: Center;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 4px;
	padding-right: 4px;
	border-radius: 12px;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
	transform:rotate(deg);
	-webkit-transform:rotate(deg);
	-moz-transform:rotate(deg);
	-ms-transform:rotate(deg);
	-o-transform:rotate(deg);
	transition: all s ease-in-out;
	-webkit-transition: all s ease-in-out;
	-moz-transition: all s ease-in-out;
	-ms-transition: all s ease-in-out;
	-o-transition: all s ease-in-out;
	opacity: ;
}
#buttonContainer_stacks_in_2073145 a.simpleButton_stacks_in_2073145:hover, #buttonContainer_stacks_in_2073145 a:hover {
	color: #FFFFFF !important;
	transform:rotate(deg);
	-webkit-transform:rotate(deg);
	-moz-transform:rotate(deg);
	-ms-transform:rotate(deg);
	-o-transform:rotate(deg);
	transition: all s ease-in-out;
	-webkit-transition: all s ease-in-out;
	-moz-transition: all s ease-in-out;
	-ms-transition: all s ease-in-out;
	-o-transition: all s ease-in-out;
	opacity: ;
}
#buttonContainer_stacks_in_2073145 a.simpleButton_stacks_in_2073145.buttonGradientOff {
	background-color: #72AB00;
}
#buttonContainer_stacks_in_2073145 a.simpleButton_stacks_in_2073145.buttonGradientOff:hover, #buttonContainer_stacks_in_2073145 a.buttonGradientOff:hover {
	background-color: #99CC33;
}
#buttonContainer_stacks_in_2073145 a.transparentOn:hover {
	background-color: none !important;
}
#buttonContainer_stacks_in_2073145 a.borderOn {
	border: solid 0px #333333;
}
#buttonContainer_stacks_in_2073145 a.borderOn:hover {
	border: solid 0px #333333;
}

/* OPTIONS */

#buttonContainer_stacks_in_2073145 a.alignLeft {
	float: left;
}
#buttonContainer_stacks_in_2073145 a.alignRight {
	float: right;
}
#buttonContainer_stacks_in_2073145 a.alignCenter {
	margin: 0 auto;
}
#buttonContainer_stacks_in_2073145 a.textShadowOn {
	text-shadow:  #333333 !important;
}
#buttonContainer_stacks_in_2073145 a.textShadowOn:hover {
	text-shadow:  #333333;
}
#buttonContainer_stacks_in_2073145 a.buttonShadowOn {
	box-shadow:  #333333;
	-moz-box-shadow:  #333333;
	-webkit-box-shadow:  #333333;
	-ms-box-shadow:  #333333;
	-o-box-shadow:  #333333;
}
#buttonContainer_stacks_in_2073145 a.buttonShadowOn:hover {
	box-shadow:  #333333;
	-moz-box-shadow:  #333333;
	-webkit-box-shadow:  #333333;
	-ms-box-shadow:  #333333;
	-o-box-shadow:  #333333;
}


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

#stacks_in_1352311 {
	background-color: rgba(255, 255, 255, 1.00);
}
/*
-------------------------------------------
Stack: Blueball FreeStack Responsive Max Width Stack
Style Sheet: fsrmaxwidth.css
Created: 23, October 2012
Last Modified: 10, November, 2014
Author: Blueball Design
www.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1349143 {
	max-width: 1200px;
	min-width: 320px;
	margin: 0px auto !important;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_1349143 {
	max-width: 100% !important;
	min-width: 50% !important;
}

}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2072719 {
	padding: 0px 20px 0px 40px;
	margin: 0px 0px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
#stacks_in_2072719 { 
    padding: 0px 0px 0px 0px;
    margin: 0px 3px 0px 3px;
}
}

#stacks_in_2072719 {
	background-color: rgba(255, 255, 255, 1.00);
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2072720 {
	padding: 0px 0px 0px 0px;
	margin: 10px 0px 0px 60px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
#stacks_in_2072720 { 
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}
}

#stacks_in_2073168 {
	margin: 30px 0px 8px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2073174 {
	padding: 0% 0% 0% 0%;
	margin: 0% 0% 0% 0%;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
#stacks_in_2073174 { 
    padding: 0px 10px 0px 10px;
    margin: 0px 0px 0px 0px;
}
}

#stacks_in_2073167 {
	display:inline-block; width:100%; line-height: 1.980000em;
}

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

#stacks_in_2073022 {
	margin: 30px 0px 8px 0px;
}

#stacks_in_2073182 {
	margin: 10px 30px 20px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive 2 Column Stack' 
Style Sheet: fsr2columns.css Style Sheet
Created: 29, December 2012
Last Modified: 17, April 2014
Author: Blueball Design, Charlie Lockhart
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2073192 #fsr_colwrap_stacks_in_2073192 {
	width: 100%;
	vertical-align: top;
	margin: 0;
	padding: 0;
	overflow: auto;
}

#stacks_in_2073192 #fsr_colwrap_stacks_in_2073192 #fsr_leftcol_stacks_in_2073192 {
	float: left;
	display: block;
	width: 50%;
	height: auto;
	margin: 0;
}

#stacks_in_2073192 #fsr_colwrap_stacks_in_2073192 #fsr_leftcol_stacks_in_2073192 .leftcolpad_stacks_in_2073192 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_2073192 #fsr_colwrap_stacks_in_2073192 #fsr_rightcol_stacks_in_2073192 {
	float: right;
	display: block;
	width: 50%;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2073192 #fsr_colwrap_stacks_in_2073192 #fsr_rightcol_stacks_in_2073192 .rightcolpad_stacks_in_2073192 {
	padding: 0px 0px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_2073192 #fsr_colwrap_stacks_in_2073192 #fsr_leftcol_stacks_in_2073192 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2073192 #fsr_colwrap_stacks_in_2073192 #fsr_leftcol_stacks_in_2073192 .leftcolpad_stacks_in_2073192 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_2073192 #fsr_colwrap_stacks_in_2073192 #fsr_rightcol_stacks_in_2073192 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2073192 #fsr_colwrap_stacks_in_2073192 #fsr_rightcol_stacks_in_2073192 .rightcolpad_stacks_in_2073192 {
	padding: 0px 0px 0px 0px;
}

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

#stacks_in_2073189 {
	font-size: 130%;
}

#stacks_in_2073184 {
	margin: 0px 0px 16px 0px;
}

#stacks_in_2073197 {
	margin: 16px 0px 0px 0px;
}

#stacks_in_2073201 {
	margin: 20px 0px 0px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStack Responsive Image URL Stack' 
Style Sheet: fsrimageurl.css
Created: 05, June, 2014
Last Modified: 08, August, 2014
Author: Charlie Lockhart/Blueball Design LLC
www.blueballdesign.com
Copyright 2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2073203 {
	
}

#stacks_in_2073203 #stacks_in_2073203_image #editmessage {
	position: absolute; 
	top: 0; 
	left: 0;
	visibility: visible;
	display: block;
	width: 100%; 
	height: 38px;
	margin: 0 auto; 
	padding: 8px 12px 0 12px; 
	color: #ffffff; 
	font-size: 14px; 
	line-height: 18px; 
	text-align: center; 
	font-weight: bold; 
	background-color: rgba(0, 0, 0, 0.66);
}

#stacks_in_2073203 #stacks_in_2073203_image {
		display: block;
		text-align: left;
}

#stacks_in_2073203 #stacks_in_2073203_image img {
	max-width: 67% !important;
	height: auto !important;
	min-height: 38px;
	padding: 0;
	margin: 0 auto;
	border: 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
	#stacks_in_2073203 #stacks_in_2073203_image {
		display: block;
		text-align: center;
}

#stacks_in_2073203 #stacks_in_2073203_image img {
	max-width: 68% !important;
	min-width: 55% !important;
	height: auto !important;
}

}
#stacks_in_2073239 {
	margin: 20px 0px 0px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStack Responsive Image URL Stack' 
Style Sheet: fsrimageurl.css
Created: 05, June, 2014
Last Modified: 08, August, 2014
Author: Charlie Lockhart/Blueball Design LLC
www.blueballdesign.com
Copyright 2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2073162 {
	
}

#stacks_in_2073162 #stacks_in_2073162_image #editmessage {
	position: absolute; 
	top: 0; 
	left: 0;
	visibility: visible;
	display: block;
	width: 100%; 
	height: 38px;
	margin: 0 auto; 
	padding: 8px 12px 0 12px; 
	color: #ffffff; 
	font-size: 14px; 
	line-height: 18px; 
	text-align: center; 
	font-weight: bold; 
	background-color: rgba(0, 0, 0, 0.66);
}

#stacks_in_2073162 #stacks_in_2073162_image {
		display: block;
		text-align: center;
}

#stacks_in_2073162 #stacks_in_2073162_image img {
	max-width: 100% !important;
	height: auto !important;
	min-height: 38px;
	padding: 0;
	margin: 0 auto;
	border: 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
	#stacks_in_2073162 #stacks_in_2073162_image {
		display: block;
		text-align: center;
}

#stacks_in_2073162 #stacks_in_2073162_image img {
	max-width: 100% !important;
	min-width: 40% !important;
	height: auto !important;
}

}
#stacks_in_2073162 {
	margin: 30px 0px 0px 0px;
}

#stacks_in_2073163 {
	margin: 0px 20px 30px 30px;
}

#stacks_in_2073164 {
	font-size: 89%;
}

#stacks_in_2073224 {
	margin: 10px 30px 20px 0px;
}

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

#stacks_in_2073208 {
	font-size: 130%;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2073229 {
	padding: 0% 0% 0% 0%;
	margin: 0% 0% 0% 0%;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
#stacks_in_2073229 { 
    padding: 0px 10px 0px 10px;
    margin: 0px 0px 0px 0px;
}
}

#stacks_in_2073209 {
	margin: 0px 0px 16px 0px;
}

#stacks_in_2073227 {
	margin: 10px 20px 30px 30px;
}

#stacks_in_2073153 {
	margin: 20px 0px 0px 0px;
}
/*
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-videos/
 * Support: support@1littledesigner.com
 * Version 2.4.1
 * Description: cleanVideo uses Chris Coyier's FitVids and tailors it for use in RapidWeaver
 */

#cleanVids_stacks_in_2073154.maxWidthOn {
	max-width: 100px !important;
}
#cleanVids_stacks_in_2073154 video {
    width: 100% !important;
    height: auto !important;
}

#stacks_in_2073158 {
	margin: 10px 0px 30px 20px;
}

#stacks_in_2073159 {
	font-size: 90%;
}

#stacks_in_2073000 {
	margin: 10px 0px 8px 0px;
}
/*
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-videos/
 * Support: support@1littledesigner.com
 * Version 2.4.1
 * Description: cleanVideo uses Chris Coyier's FitVids and tailors it for use in RapidWeaver
 */

#cleanVids_stacks_in_2073149.maxWidthOn {
	max-width: 100px !important;
}
#cleanVids_stacks_in_2073149 video {
    width: 100% !important;
    height: auto !important;
}

#stacks_in_2073109 {
	margin: 30px 0px 0px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStack Responsive Image URL Stack' 
Style Sheet: fsrimageurl.css
Created: 05, June, 2014
Last Modified: 08, August, 2014
Author: Charlie Lockhart/Blueball Design LLC
www.blueballdesign.com
Copyright 2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2073017 {
	
}

#stacks_in_2073017 #stacks_in_2073017_image #editmessage {
	position: absolute; 
	top: 0; 
	left: 0;
	visibility: visible;
	display: block;
	width: 100%; 
	height: 38px;
	margin: 0 auto; 
	padding: 8px 12px 0 12px; 
	color: #ffffff; 
	font-size: 14px; 
	line-height: 18px; 
	text-align: center; 
	font-weight: bold; 
	background-color: rgba(0, 0, 0, 0.66);
}

#stacks_in_2073017 #stacks_in_2073017_image {
		display: block;
		text-align: left;
}

#stacks_in_2073017 #stacks_in_2073017_image img {
	max-width: 100% !important;
	height: auto !important;
	min-height: 38px;
	padding: 0;
	margin: 0 auto;
	border: 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
	#stacks_in_2073017 #stacks_in_2073017_image {
		display: block;
		text-align: center;
}

#stacks_in_2073017 #stacks_in_2073017_image img {
	max-width: 50% !important;
	min-width: 40% !important;
	height: auto !important;
}

}
#stacks_in_2073018 {
	margin: 30px 0px 0px 0px;
}

#stacks_in_2072893 {
	margin: 20px 20px 20px 20px;
}
/*
-------------------------------------------
File: 'Blueball FreeStack Responsive Image URL Stack' 
Style Sheet: fsrimageurl.css
Created: 05, June, 2014
Last Modified: 08, August, 2014
Author: Charlie Lockhart/Blueball Design LLC
www.blueballdesign.com
Copyright 2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2072984 {
	
}

#stacks_in_2072984 #stacks_in_2072984_image #editmessage {
	position: absolute; 
	top: 0; 
	left: 0;
	visibility: visible;
	display: block;
	width: 100%; 
	height: 38px;
	margin: 0 auto; 
	padding: 8px 12px 0 12px; 
	color: #ffffff; 
	font-size: 14px; 
	line-height: 18px; 
	text-align: center; 
	font-weight: bold; 
	background-color: rgba(0, 0, 0, 0.66);
}

#stacks_in_2072984 #stacks_in_2072984_image {
		display: block;
		text-align: center;
}

#stacks_in_2072984 #stacks_in_2072984_image img {
	max-width: 100% !important;
	height: auto !important;
	min-height: 38px;
	padding: 0;
	margin: 0 auto;
	border: 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
	#stacks_in_2072984 #stacks_in_2072984_image {
		display: block;
		text-align: center;
}

#stacks_in_2072984 #stacks_in_2072984_image img {
	max-width: 75% !important;
	min-width: 40% !important;
	height: auto !important;
}

}
#stacks_in_2073236 {
	margin: 30px 0px 0px 0px;
}
/*
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-videos/
 * Support: support@1littledesigner.com
 * Version 2.4.1
 * Description: cleanVideo uses Chris Coyier's FitVids and tailors it for use in RapidWeaver
 */

#cleanVids_stacks_in_2073233.maxWidthOn {
	max-width: 100px !important;
}
#cleanVids_stacks_in_2073233 video {
    width: 100% !important;
    height: auto !important;
}

#stacks_in_2073234 {
	margin: 10px 0px 30px 20px;
}

#stacks_in_2073235 {
	font-size: 89%;
}

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

#stacks_in_2072881 {
	background-color: rgba(252, 255, 255, 1.00);
}
/* Start doobox anchor css */








.stacks_in_1349602anchor1 {

}

.stacks_in_1349602anchor2 {

}


/* end doobox anchor css */
#stacks_in_1349602 {
	margin:  40px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1352317 {
	padding: 0px 20px 30px 40px;
	margin: 0px 0px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 786px) {
	
#stacks_in_1352317 { 
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1352307 {
	padding: 0px 0px 0px 0px;
	margin: 10px 0px 0px 20px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
#stacks_in_1352307 { 
    padding: 0px 0px 0px 0px;
    margin: 10px 0px 0px 5px;
}
}

#stacks_in_1352309 {
	padding:  2px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1349900 {
	padding: 0px 0px 0px 0px;
	margin: 10px 0px 0px 60px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
#stacks_in_1349900 { 
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 5px;
}
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2072671 {
	padding: 0% 0% 0% 0%;
	margin: 0% 0% 0% 0%;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
#stacks_in_2072671 { 
    padding: 0px 0px 0px 0px;
    margin: 0px 5px 0px 5px;
}
}

#stacks_in_2072672 {
	margin: 0px 0px 8px 0px;
}
/* FlexTable styles */
/* Bryn Owen Design, 2019 */

/* the div the table lives inside */
#FlexTableDiv_stacks_in_2072940 {

	/* default no padding without shadows, so that generic border/rounding work nicely */
	padding-right: 0px;
	padding-left: 0px;
	padding-top: 0px;
	padding-bottom: 0px;

	/* modify div paddings to make room for shadow, but generic border/rounding will not work */
	

	/* scroll forces scroll bars in firefox/ie - use auto to show them when necessary */
	overflow-x: auto;

	
	overflow-y: auto;
	

	
	}

#FlexTablePager_stacks_in_2072940, #FlexTableCaption_stacks_in_2072940, #FlexTableSearch_stacks_in_2072940 {
	line-height: 8px !important;
	max-height: 8px;
	white-space: nowrap;
	display: inline-block;
	color: rgba(0, 0, 0, 1.00);
	font-size: 1.0em !important;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-left: 9px;
	padding-right: 9px;

	
	-moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;

	
	border: none;
	
	position: relative;
	z-index: 0;
	}

#FlexTablePager_stacks_in_2072940 {
	background-color: rgba(255, 255, 255, 1.00);
	float: left;
	margin-left: 0px;
	font-family: Arial, Helvetica, sans-serif !important;
	
	vertical-align: top;
	
	border-top: none !important;
	-moz-border-top-left-radius: 0px !important;
	-moz-border-top-right-radius: 0px !important;
    -webkit-border-top-left-radius: 0px !important;
    -webkit-border-top-right-radius: 0px !important;
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
	
	
	
	}

#FlexTablePager_stacks_in_2072940 a {
	text-decoration: none !important;
	}

#FlexTablePager_stacks_in_2072940 label {
	display: inline;
	}





#FlexTableRot_stacks_in_2072940 {
	display: none;
	}

/* the overall table itself */
#FlexTable_stacks_in_2072940, #FlexTableRot_stacks_in_2072940 {

	position: relative;
	z-index: 0;
	width: 100%;
	margin: 0 auto;
	font-size: 1.0em !important;

	
	color: rgba(0, 0, 0, 1.00);
	

	
		border-collapse: collapse;
		
	

	
		border: none;
		border-spacing: 0px 0px;
	

	
	}

/* fix trailing margin after td paragraphs in 1.5.0 */
#FlexTable_stacks_in_2072940 td p, #FlexTableRot_stacks_in_2072940 td p {
	margin-bottom: 0;
	margin-top: 0;
	
	}

/* every table cell */
#FlexTable_stacks_in_2072940 td, #FlexTableRot_stacks_in_2072940 td {

	/* new for 1.1.6 to improve font scaling in foundation */
	font-size: 1.0em !important;

	
	
	
	
	
	
	

	background-color: rgba(255, 255, 255, 1.00);

	
	
	
	text-align: Left;
	

	
	
	
	
	vertical-align: middle;
	
	

	

	padding-left: 7px !important;
	padding-right: 7px !important;
	padding-top: 0px !important;
	padding-bottom: 0px !important;

	
	width: auto;
	

	

	
	}

/* first row overrides */
#FlexTable_stacks_in_2072940 tr:first-child td {

	

	
	
	
	

	
	
	vertical-align: middle;
	
	

	
	}

/* first column for rotated table */
#FlexTableRot_stacks_in_2072940 td:first-child {

	

	
	
	
	

	
	text-align: Left;
	

	
	width: 50%;
	
	}

#FlexTableRot_stacks_in_2072940 td {
	width: auto !important;
	}

/* first column overrides */
#FlexTable_stacks_in_2072940 td:first-child {

	

	
	
	
	

	
	text-align: Left;
	

	
	width: 50%;
	

	
	}



/* rotated table first row second column overrides */
#FlexTableRotR1C2_stacks_in_2072940 {
	
	}







/* outer table radius when collapsed */
#FlexTable_stacks_in_2072940 tr:first-child td:first-child {
    -moz-border-radius-topleft: 0px;
    -webkit-border-top-left-radius: 0px;
    border-top-left-radius: 0px;
	}
#FlexTable_stacks_in_2072940 tr:first-child td:last-child {
    -moz-border-radius-topright: 0px !important;
    -webkit-border-top-right-radius: 0px !important;
    border-top-right-radius: 0px !important;
	}
#FlexTable_stacks_in_2072940 tr:last-child td:first-child {
    -moz-border-radius-bottomleft: 0px !important;
    -webkit-border-bottom-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
	}
#FlexTable_stacks_in_2072940 tr:last-child td:last-child {
    -moz-border-radius-bottomright: 0px !important;
    -webkit-border-bottom-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
	}





@media all and (max-width: 600px) {
#FlexTable_stacks_in_2072940, #FlexTableRot_stacks_in_2072940, #FlexTablePager_stacks_in_2072940, #FlexTableCaption_stacks_in_2072940, #FlexTableSearch_stacks_in_2072940, #FlexTableSearch_search_stacks_in_2072940, #FlexTableSearch_button_stacks_in_2072940 {
	/* one master location for font scaling etc. */
	font-size: 1.00em !important;
	line-height: 1.2em;
	}

/* new for 1.1.6 to improve font scaling in foundation */
#FlexTable_stacks_in_2072940 tr td, #FlexTableRot_stacks_in_2072940 tr td {
	/* font-size: 1.00em !important; */
	font-size: 1em !important;
	}

/* added in 1.5.0 for paragraphs inside td from Markdown */
#FlexTable_stacks_in_2072940 td p, #FlexTableRot_stacks_in_2072940 td p {
	/* font-size: 1.00em !important; */
	font-size: 1em !important;
	}

#FlexTableSearch_search_stacks_in_2072940 {
	width: 100px !important;
	}




/* single column convert row/col to block */
#FlexTable_stacks_in_2072940 td {
	display: block;
	width: auto !important;
	margin-top: 0px !important;
	-moz-border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    border-radius: 0px !important;

   	
	
	
	text-align: Left !important;
	
	}
#FlexTable_stacks_in_2072940 tr td:first-child {
	margin-top: 0px !important;
	}
#FlexTableR1_stacks_in_2072940 {
	display: none !important;
	}

}




/* hover dynamics for pager/search, disabled on small screens */
@media all and (min-width: 600px) {


}

/* never print search and pager */
@media print {
#FlexTablePager_stacks_in_2072940, #FlexTableSearch_stacks_in_2072940 {
	display: none !important;
	}
}



/*
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-videos/
 * Support: support@1littledesigner.com
 * Version 2.4.1
 * Description: cleanVideo uses Chris Coyier's FitVids and tailors it for use in RapidWeaver
 */

#cleanVids_stacks_in_2073007.maxWidthOn {
	max-width: 100px !important;
}
#cleanVids_stacks_in_2073007 video {
    width: 100% !important;
    height: auto !important;
}

#stacks_in_2072697 {
	margin: 4px 0px 10px 0px;
}
/*
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-videos/
 * Support: support@1littledesigner.com
 * Version 2.4.1
 * Description: cleanVideo uses Chris Coyier's FitVids and tailors it for use in RapidWeaver
 */

#cleanVids_stacks_in_2073009.maxWidthOn {
	max-width: 100px !important;
}
#cleanVids_stacks_in_2073009 video {
    width: 100% !important;
    height: auto !important;
}

#stacks_in_2072928 {
	margin: 4px 0px 10px 0px;
}
/*
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-videos/
 * Support: support@1littledesigner.com
 * Version 2.4.1
 * Description: cleanVideo uses Chris Coyier's FitVids and tailors it for use in RapidWeaver
 */

#cleanVids_stacks_in_2073011.maxWidthOn {
	max-width: 100px !important;
}
#cleanVids_stacks_in_2073011 video {
    width: 100% !important;
    height: auto !important;
}

#stacks_in_2072677 {
	margin: 4px 0px 0px 0px;
}
/*
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-videos/
 * Support: support@1littledesigner.com
 * Version 2.4.1
 * Description: cleanVideo uses Chris Coyier's FitVids and tailors it for use in RapidWeaver
 */

#cleanVids_stacks_in_2073008.maxWidthOn {
	max-width: 100px !important;
}
#cleanVids_stacks_in_2073008 video {
    width: 100% !important;
    height: auto !important;
}

#stacks_in_2072694 {
	margin: 4px 0px 10px 0px;
}

#stacks_in_1379051 {
	margin: 6px 0px 20px 0px;
}

#stacks_in_2072712 {
	margin: 0px 0px 8px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1349349 {
	padding: 0px 0px 0px 0px;
	margin: 0px 20px 10px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
#stacks_in_1349349 { 
    padding: 0px 0px 0px 0px;
    margin: 0px 10px 0px 10px;
}
}
/*
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-videos/
 * Support: support@1littledesigner.com
 * Version 2.4.1
 * Description: cleanVideo uses Chris Coyier's FitVids and tailors it for use in RapidWeaver
 */

#cleanVids_stacks_in_2072836.maxWidthOn {
	max-width: 100px !important;
}
#cleanVids_stacks_in_2072836 video {
    width: 100% !important;
    height: auto !important;
}

#stacks_in_1349580 {
	margin: 4px 0px 20px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive 2 Column Stack' 
Style Sheet: fsr2columns.css Style Sheet
Created: 29, December 2012
Last Modified: 17, April 2014
Author: Blueball Design, Charlie Lockhart
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1351089 #fsr_colwrap_stacks_in_1351089 {
	width: 100%;
	vertical-align: top;
	margin: 0;
	padding: 0;
	overflow: auto;
}

#stacks_in_1351089 #fsr_colwrap_stacks_in_1351089 #fsr_leftcol_stacks_in_1351089 {
	float: left;
	display: block;
	width: 50%;
	height: auto;
	margin: 0;
}

#stacks_in_1351089 #fsr_colwrap_stacks_in_1351089 #fsr_leftcol_stacks_in_1351089 .leftcolpad_stacks_in_1351089 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_1351089 #fsr_colwrap_stacks_in_1351089 #fsr_rightcol_stacks_in_1351089 {
	float: right;
	display: block;
	width: 50%;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_1351089 #fsr_colwrap_stacks_in_1351089 #fsr_rightcol_stacks_in_1351089 .rightcolpad_stacks_in_1351089 {
	padding: 0px 0px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_1351089 #fsr_colwrap_stacks_in_1351089 #fsr_leftcol_stacks_in_1351089 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_1351089 #fsr_colwrap_stacks_in_1351089 #fsr_leftcol_stacks_in_1351089 .leftcolpad_stacks_in_1351089 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_1351089 #fsr_colwrap_stacks_in_1351089 #fsr_rightcol_stacks_in_1351089 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_1351089 #fsr_colwrap_stacks_in_1351089 #fsr_rightcol_stacks_in_1351089 .rightcolpad_stacks_in_1351089 {
	padding: 0px 0px 0px 0px;
}

}
#stacks_in_1351089 {
	margin: 0px 0px 10px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1351081 {
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
#stacks_in_1351081 { 
    padding: 0% 0% 0% 0%;
    margin: 0% 5% 0% 5%;
}
}

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

#stacks_out_2072974 {
	margin-right:0;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2073111 {
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
#stacks_in_2073111 { 
    padding: 0% 0% 0% 0%;
    margin: 0% 5% 0% 5%;
}
}

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

#stacks_out_2073112 {
	margin-right:0;
}
#stacks_in_2073176>.s3_row {
	margin: 0 -10px;
}

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

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




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










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



}



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


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


}






#stacks_in_2073176 {
	margin: 6px 0px 0px 0px;
}
#audioPlayerContainerstacks_in_1349417 {
	position: relative;
	z-index: 1;
}

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

#audioPlayerstacks_in_1349417 {
	width: 100%;
	display: block;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1349417 {
	position: relative;
	z-index: 5;
	overflow: hidden;
	border-radius: 6px;
}

#audioPlayerControlsstacks_in_1349417 [class^="fa fa-"] {
	color: rgba(0, 102, 255, 1.00);
}








/* Vertical gradient fill */
#audioPlayerControlsstacks_in_1349417 {
	background-color: #EAEAEA;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(#EAEAEA), to(#CDCDCD));
	background-image: -moz-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -ms-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(100%, #CDCDCD));
	background-image: -webkit-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -o-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: linear-gradient(top, #EAEAEA, #CDCDCD);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EAEAEA', endColorstr='#CDCDCD', GradientType=0);
}
















#audioPlayerControlsWrapperstacks_in_1349417 {
	display: flex;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1349417 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 30px;
	padding: 0;
	margin: 0;
	height: 30px;
	line-height: 30px;
	font-size: 15px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#audioPlayerControlsstacks_in_1349417 #audioPlayerPlayPausestacks_in_1349417 {
	display: inline-block;
}

#audioPlayerControlsstacks_in_1349417 #audioPlayerFullScreenstacks_in_1349417 {
	display: ;
}

.audioPlayerAudioTimingstacks_in_1349417 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: rgba(76, 76, 76, 1.00);
	padding: 0;
	text-align: center;
	font-size: 14px;
}

#audioPlayerCurrentTimestacks_in_1349417 {
	display: inline-block;
	width: 30px;
}

#audioPlayerDurationstacks_in_1349417 {
	display: none;
	width: 30px;
}

#audioPlayerTimeDividerstacks_in_1349417 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: rgba(76, 76, 76, 1.00);
}




#audioPlayerTimeDividerstacks_in_1349417 {
	display: none;
}


@media screen and (min-width: 568px) {
	#audioPlayerTimeDividerstacks_in_1349417 {
		display: none;
	}
}

#progressBarstacks_in_1349417 {
	display: none;
}

@media screen and (min-width: 568px) {
	#progressBarstacks_in_1349417 {
		flex: 1;
		padding-right: 15px;
		padding-left: 15px;
		height: 30px;
		line-height: 30px;
		vertical-align: middle;
		display: inline-block;
	}

	#audioPlayerSeekBarstacks_in_1349417[type=range] {
		-webkit-appearance: none;
		background: none;
		display: inline-block;
		width: 99%;
		height: 30px;
		line-height: 30px;
	}

	#audioPlayerSeekBarstacks_in_1349417[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1349417[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#audioPlayerSeekBarstacks_in_1349417[type=range]:focus {
		outline: none;
	}

	#audioPlayerSeekBarstacks_in_1349417[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1349417[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1349417[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1349417[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1349417[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1349417[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1349417[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1349417[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1349417[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

#volumestacks_in_1349417 {
	display: none;
}

@media screen and (min-width: 768px) {
	#volumestacks_in_1349417 {
		display: inline-block;
		max-width: 30px;
		width: 30px;
		line-height: 30px;
		height: 30px;
		transition: all ease-in-out 300ms;
		text-align: center;
		position: relative;
		overflow: hidden;
		font-size: 15px;
		vertical-align: middle;
	}

	#volumestacks_in_1349417 [class^="fa fa-"] {
		color: rgba(0, 102, 255, 1.00);
	}

	#volumestacks_in_1349417:hover {
		max-width: 150px;
		width: 150px;
		padding: 0px 15px;
	}

	#volumeButtonstacks_in_1349417 {
		display: inline-block;
		max-width: 30px;
		width: 30px;
		line-height: 30px;
		height: 30px;
		color: rgba(0, 102, 255, 1.00);
	}

	#volumestacks_in_1349417:hover #volumeButtonstacks_in_1349417 {
		display: none;
	}

	#volumeMinstacks_in_1349417 {
		position: absolute;
		left: 20px;
		top: 0;
		height: 30px;
		line-height: 30px;
		color: rgba(0, 102, 255, 1.00);
	}

	#volumeMaxstacks_in_1349417 {
		position: absolute;
		right: 15px;
		top: 0;
		height: 30px;
		line-height: 30px;
		color: rgba(0, 102, 255, 1.00);
	}

	#volume-barstacks_in_1349417[type=range],
	#volumeMinstacks_in_1349417,
	#volumeMaxstacks_in_1349417 {
		display: none;
	}

	#volumeMinstacks_in_1349417,
	#volumeMaxstacks_in_1349417 {
		cursor: pointer;
	}

	#volumestacks_in_1349417:hover #volume-barstacks_in_1349417,
	#volumestacks_in_1349417:hover #volumeMinstacks_in_1349417,
	#volumestacks_in_1349417:hover #volumeMaxstacks_in_1349417 {
		display: inline;
	}

	#volume-barstacks_in_1349417[type=range] {
		-webkit-appearance: none;
		background: none;
		width: 50%;
		text-align: center;
		line-height: 30px;
		height: 30px;
	}

	#volume-barstacks_in_1349417[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1349417[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#volume-barstacks_in_1349417[type=range]:focus {
		outline: none;
	}

	#volume-barstacks_in_1349417[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1349417[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1349417[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1349417[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1349417[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1349417[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1349417[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1349417[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1349417[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

@media screen and (max-width: 569px) {
	#audioPlayerControlsstacks_in_1349417 #audioPlayerFullScreenstacks_in_1349417,
	#audioPlayerControlsstacks_in_1349417 #volumestacks_in_1349417 {
		display: none;
	}
}



#stacks_out_1349417 {
	width: 250px;
	margin-left:0;
}

#stacks_in_1349309 {
	margin: 4px 0px 12px 0px;
}
#audioPlayerContainerstacks_in_1349467 {
	position: relative;
	z-index: 1;
}

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

#audioPlayerstacks_in_1349467 {
	width: 100%;
	display: block;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1349467 {
	position: relative;
	z-index: 5;
	overflow: hidden;
	border-radius: 6px;
}

#audioPlayerControlsstacks_in_1349467 [class^="fa fa-"] {
	color: rgba(0, 102, 255, 1.00);
}








/* Vertical gradient fill */
#audioPlayerControlsstacks_in_1349467 {
	background-color: #EAEAEA;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(#EAEAEA), to(#CDCDCD));
	background-image: -moz-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -ms-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(100%, #CDCDCD));
	background-image: -webkit-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -o-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: linear-gradient(top, #EAEAEA, #CDCDCD);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EAEAEA', endColorstr='#CDCDCD', GradientType=0);
}
















#audioPlayerControlsWrapperstacks_in_1349467 {
	display: flex;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1349467 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 30px;
	padding: 0;
	margin: 0;
	height: 30px;
	line-height: 30px;
	font-size: 15px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#audioPlayerControlsstacks_in_1349467 #audioPlayerPlayPausestacks_in_1349467 {
	display: inline-block;
}

#audioPlayerControlsstacks_in_1349467 #audioPlayerFullScreenstacks_in_1349467 {
	display: ;
}

.audioPlayerAudioTimingstacks_in_1349467 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: rgba(76, 76, 76, 1.00);
	padding: 0;
	text-align: center;
	font-size: 14px;
}

#audioPlayerCurrentTimestacks_in_1349467 {
	display: inline-block;
	width: 30px;
}

#audioPlayerDurationstacks_in_1349467 {
	display: none;
	width: 30px;
}

#audioPlayerTimeDividerstacks_in_1349467 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: rgba(76, 76, 76, 1.00);
}




#audioPlayerTimeDividerstacks_in_1349467 {
	display: none;
}


@media screen and (min-width: 568px) {
	#audioPlayerTimeDividerstacks_in_1349467 {
		display: none;
	}
}

#progressBarstacks_in_1349467 {
	display: none;
}

@media screen and (min-width: 568px) {
	#progressBarstacks_in_1349467 {
		flex: 1;
		padding-right: 15px;
		padding-left: 15px;
		height: 30px;
		line-height: 30px;
		vertical-align: middle;
		display: inline-block;
	}

	#audioPlayerSeekBarstacks_in_1349467[type=range] {
		-webkit-appearance: none;
		background: none;
		display: inline-block;
		width: 99%;
		height: 30px;
		line-height: 30px;
	}

	#audioPlayerSeekBarstacks_in_1349467[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1349467[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#audioPlayerSeekBarstacks_in_1349467[type=range]:focus {
		outline: none;
	}

	#audioPlayerSeekBarstacks_in_1349467[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1349467[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1349467[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1349467[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1349467[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1349467[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1349467[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1349467[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1349467[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

#volumestacks_in_1349467 {
	display: none;
}

@media screen and (min-width: 768px) {
	#volumestacks_in_1349467 {
		display: inline-block;
		max-width: 30px;
		width: 30px;
		line-height: 30px;
		height: 30px;
		transition: all ease-in-out 300ms;
		text-align: center;
		position: relative;
		overflow: hidden;
		font-size: 15px;
		vertical-align: middle;
	}

	#volumestacks_in_1349467 [class^="fa fa-"] {
		color: rgba(0, 102, 255, 1.00);
	}

	#volumestacks_in_1349467:hover {
		max-width: 150px;
		width: 150px;
		padding: 0px 15px;
	}

	#volumeButtonstacks_in_1349467 {
		display: inline-block;
		max-width: 30px;
		width: 30px;
		line-height: 30px;
		height: 30px;
		color: rgba(0, 102, 255, 1.00);
	}

	#volumestacks_in_1349467:hover #volumeButtonstacks_in_1349467 {
		display: none;
	}

	#volumeMinstacks_in_1349467 {
		position: absolute;
		left: 20px;
		top: 0;
		height: 30px;
		line-height: 30px;
		color: rgba(0, 102, 255, 1.00);
	}

	#volumeMaxstacks_in_1349467 {
		position: absolute;
		right: 15px;
		top: 0;
		height: 30px;
		line-height: 30px;
		color: rgba(0, 102, 255, 1.00);
	}

	#volume-barstacks_in_1349467[type=range],
	#volumeMinstacks_in_1349467,
	#volumeMaxstacks_in_1349467 {
		display: none;
	}

	#volumeMinstacks_in_1349467,
	#volumeMaxstacks_in_1349467 {
		cursor: pointer;
	}

	#volumestacks_in_1349467:hover #volume-barstacks_in_1349467,
	#volumestacks_in_1349467:hover #volumeMinstacks_in_1349467,
	#volumestacks_in_1349467:hover #volumeMaxstacks_in_1349467 {
		display: inline;
	}

	#volume-barstacks_in_1349467[type=range] {
		-webkit-appearance: none;
		background: none;
		width: 50%;
		text-align: center;
		line-height: 30px;
		height: 30px;
	}

	#volume-barstacks_in_1349467[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1349467[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#volume-barstacks_in_1349467[type=range]:focus {
		outline: none;
	}

	#volume-barstacks_in_1349467[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1349467[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1349467[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1349467[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1349467[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1349467[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1349467[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1349467[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1349467[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

@media screen and (max-width: 569px) {
	#audioPlayerControlsstacks_in_1349467 #audioPlayerFullScreenstacks_in_1349467,
	#audioPlayerControlsstacks_in_1349467 #volumestacks_in_1349467 {
		display: none;
	}
}



#stacks_out_1349467 {
	width: 250px;
	margin-left:0;
}

#stacks_in_1349411 {
	margin: 4px 0px 0px 0px;
}
#audioPlayerContainerstacks_in_1349567 {
	position: relative;
	z-index: 1;
}

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

#audioPlayerstacks_in_1349567 {
	width: 100%;
	display: block;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1349567 {
	position: relative;
	z-index: 5;
	overflow: hidden;
	border-radius: 6px;
}

#audioPlayerControlsstacks_in_1349567 [class^="fa fa-"] {
	color: rgba(0, 102, 255, 1.00);
}








/* Vertical gradient fill */
#audioPlayerControlsstacks_in_1349567 {
	background-color: #EAEAEA;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(#EAEAEA), to(#CDCDCD));
	background-image: -moz-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -ms-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(100%, #CDCDCD));
	background-image: -webkit-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -o-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: linear-gradient(top, #EAEAEA, #CDCDCD);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EAEAEA', endColorstr='#CDCDCD', GradientType=0);
}
















#audioPlayerControlsWrapperstacks_in_1349567 {
	display: flex;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1349567 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 30px;
	padding: 0;
	margin: 0;
	height: 30px;
	line-height: 30px;
	font-size: 15px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#audioPlayerControlsstacks_in_1349567 #audioPlayerPlayPausestacks_in_1349567 {
	display: inline-block;
}

#audioPlayerControlsstacks_in_1349567 #audioPlayerFullScreenstacks_in_1349567 {
	display: ;
}

.audioPlayerAudioTimingstacks_in_1349567 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: rgba(76, 76, 76, 1.00);
	padding: 0;
	text-align: center;
	font-size: 14px;
}

#audioPlayerCurrentTimestacks_in_1349567 {
	display: inline-block;
	width: 30px;
}

#audioPlayerDurationstacks_in_1349567 {
	display: none;
	width: 30px;
}

#audioPlayerTimeDividerstacks_in_1349567 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: rgba(76, 76, 76, 1.00);
}




#audioPlayerTimeDividerstacks_in_1349567 {
	display: none;
}


@media screen and (min-width: 568px) {
	#audioPlayerTimeDividerstacks_in_1349567 {
		display: none;
	}
}

#progressBarstacks_in_1349567 {
	display: none;
}

@media screen and (min-width: 568px) {
	#progressBarstacks_in_1349567 {
		flex: 1;
		padding-right: 15px;
		padding-left: 15px;
		height: 30px;
		line-height: 30px;
		vertical-align: middle;
		display: inline-block;
	}

	#audioPlayerSeekBarstacks_in_1349567[type=range] {
		-webkit-appearance: none;
		background: none;
		display: inline-block;
		width: 99%;
		height: 30px;
		line-height: 30px;
	}

	#audioPlayerSeekBarstacks_in_1349567[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1349567[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#audioPlayerSeekBarstacks_in_1349567[type=range]:focus {
		outline: none;
	}

	#audioPlayerSeekBarstacks_in_1349567[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1349567[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1349567[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1349567[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1349567[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1349567[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1349567[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1349567[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1349567[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

#volumestacks_in_1349567 {
	display: none;
}

@media screen and (min-width: 768px) {
	#volumestacks_in_1349567 {
		display: inline-block;
		max-width: 30px;
		width: 30px;
		line-height: 30px;
		height: 30px;
		transition: all ease-in-out 300ms;
		text-align: center;
		position: relative;
		overflow: hidden;
		font-size: 15px;
		vertical-align: middle;
	}

	#volumestacks_in_1349567 [class^="fa fa-"] {
		color: rgba(0, 102, 255, 1.00);
	}

	#volumestacks_in_1349567:hover {
		max-width: 150px;
		width: 150px;
		padding: 0px 15px;
	}

	#volumeButtonstacks_in_1349567 {
		display: inline-block;
		max-width: 30px;
		width: 30px;
		line-height: 30px;
		height: 30px;
		color: rgba(0, 102, 255, 1.00);
	}

	#volumestacks_in_1349567:hover #volumeButtonstacks_in_1349567 {
		display: none;
	}

	#volumeMinstacks_in_1349567 {
		position: absolute;
		left: 20px;
		top: 0;
		height: 30px;
		line-height: 30px;
		color: rgba(0, 102, 255, 1.00);
	}

	#volumeMaxstacks_in_1349567 {
		position: absolute;
		right: 15px;
		top: 0;
		height: 30px;
		line-height: 30px;
		color: rgba(0, 102, 255, 1.00);
	}

	#volume-barstacks_in_1349567[type=range],
	#volumeMinstacks_in_1349567,
	#volumeMaxstacks_in_1349567 {
		display: none;
	}

	#volumeMinstacks_in_1349567,
	#volumeMaxstacks_in_1349567 {
		cursor: pointer;
	}

	#volumestacks_in_1349567:hover #volume-barstacks_in_1349567,
	#volumestacks_in_1349567:hover #volumeMinstacks_in_1349567,
	#volumestacks_in_1349567:hover #volumeMaxstacks_in_1349567 {
		display: inline;
	}

	#volume-barstacks_in_1349567[type=range] {
		-webkit-appearance: none;
		background: none;
		width: 50%;
		text-align: center;
		line-height: 30px;
		height: 30px;
	}

	#volume-barstacks_in_1349567[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1349567[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#volume-barstacks_in_1349567[type=range]:focus {
		outline: none;
	}

	#volume-barstacks_in_1349567[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1349567[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1349567[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1349567[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1349567[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1349567[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1349567[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1349567[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1349567[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

@media screen and (max-width: 569px) {
	#audioPlayerControlsstacks_in_1349567 #audioPlayerFullScreenstacks_in_1349567,
	#audioPlayerControlsstacks_in_1349567 #volumestacks_in_1349567 {
		display: none;
	}
}



#stacks_out_1349567 {
	width: 250px;
	margin-left:0;
}

#stacks_in_1349568 {
	margin: 4px 0px 12px 0px;
}

#stacks_in_2072705 {
	margin: 10px 0px 20px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1379455 {
	padding: 0% 0% 0% 0%;
	margin: 0% 0% 0% 0%;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
#stacks_in_1379455 { 
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 5px;
}
}

#stacks_in_1379056 {
	margin: 0px 0px 8px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive 2 Column Stack' 
Style Sheet: fsr2columns.css Style Sheet
Created: 29, December 2012
Last Modified: 17, April 2014
Author: Blueball Design, Charlie Lockhart
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1379106 #fsr_colwrap_stacks_in_1379106 {
	width: 100%;
	vertical-align: top;
	margin: 0;
	padding: 0;
	overflow: auto;
}

#stacks_in_1379106 #fsr_colwrap_stacks_in_1379106 #fsr_leftcol_stacks_in_1379106 {
	float: left;
	display: block;
	width: 50%;
	height: auto;
	margin: 0;
}

#stacks_in_1379106 #fsr_colwrap_stacks_in_1379106 #fsr_leftcol_stacks_in_1379106 .leftcolpad_stacks_in_1379106 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_1379106 #fsr_colwrap_stacks_in_1379106 #fsr_rightcol_stacks_in_1379106 {
	float: right;
	display: block;
	width: 50%;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_1379106 #fsr_colwrap_stacks_in_1379106 #fsr_rightcol_stacks_in_1379106 .rightcolpad_stacks_in_1379106 {
	padding: 0px 0px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_1379106 #fsr_colwrap_stacks_in_1379106 #fsr_leftcol_stacks_in_1379106 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_1379106 #fsr_colwrap_stacks_in_1379106 #fsr_leftcol_stacks_in_1379106 .leftcolpad_stacks_in_1379106 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_1379106 #fsr_colwrap_stacks_in_1379106 #fsr_rightcol_stacks_in_1379106 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_1379106 #fsr_colwrap_stacks_in_1379106 #fsr_rightcol_stacks_in_1379106 .rightcolpad_stacks_in_1379106 {
	padding: 0px 0px 0px 0px;
}

}/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1379113 {
	padding: 0px 0px 0px 0px;
	margin: 10px 80px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
#stacks_in_1379113 { 
    padding: 0% 0% 0% 0%;
    margin: 0% 5% 0% 5%;
}
}
#audioPlayerContainerstacks_in_1379151 {
	position: relative;
	z-index: 1;
}

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

#audioPlayerstacks_in_1379151 {
	width: 100%;
	display: block;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1379151 {
	position: relative;
	z-index: 5;
	overflow: hidden;
	border-radius: 10px;
}

#audioPlayerControlsstacks_in_1379151 [class^="fa fa-"] {
	color: rgba(0, 102, 255, 1.00);
}








/* Vertical gradient fill */
#audioPlayerControlsstacks_in_1379151 {
	background-color: #EAEAEA;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(#EAEAEA), to(#CDCDCD));
	background-image: -moz-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -ms-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(100%, #CDCDCD));
	background-image: -webkit-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -o-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: linear-gradient(top, #EAEAEA, #CDCDCD);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EAEAEA', endColorstr='#CDCDCD', GradientType=0);
}
















#audioPlayerControlsWrapperstacks_in_1379151 {
	display: flex;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1379151 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 44px;
	padding: 0;
	margin: 0;
	height: 44px;
	line-height: 44px;
	font-size: 22px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#audioPlayerControlsstacks_in_1379151 #audioPlayerPlayPausestacks_in_1379151 {
	display: inline-block;
}

#audioPlayerControlsstacks_in_1379151 #audioPlayerFullScreenstacks_in_1379151 {
	display: ;
}

.audioPlayerAudioTimingstacks_in_1379151 {
	display: inline-block;
	height: 44px;
	line-height: 44px;
	color: rgba(76, 76, 76, 1.00);
	padding: 0;
	text-align: center;
	font-size: 14px;
}

#audioPlayerCurrentTimestacks_in_1379151 {
	display: inline-block;
	width: 44px;
}

#audioPlayerDurationstacks_in_1379151 {
	display: none;
	width: 44px;
}

#audioPlayerTimeDividerstacks_in_1379151 {
	display: inline-block;
	height: 44px;
	line-height: 44px;
	color: rgba(76, 76, 76, 1.00);
}




#audioPlayerTimeDividerstacks_in_1379151 {
	display: none;
}


@media screen and (min-width: 568px) {
	#audioPlayerTimeDividerstacks_in_1379151 {
		display: none;
	}
}

#progressBarstacks_in_1379151 {
	display: none;
}

@media screen and (min-width: 568px) {
	#progressBarstacks_in_1379151 {
		flex: 1;
		padding-right: 15px;
		padding-left: 15px;
		height: 44px;
		line-height: 44px;
		vertical-align: middle;
		display: inline-block;
	}

	#audioPlayerSeekBarstacks_in_1379151[type=range] {
		-webkit-appearance: none;
		background: none;
		display: inline-block;
		width: 99%;
		height: 44px;
		line-height: 44px;
	}

	#audioPlayerSeekBarstacks_in_1379151[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1379151[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#audioPlayerSeekBarstacks_in_1379151[type=range]:focus {
		outline: none;
	}

	#audioPlayerSeekBarstacks_in_1379151[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1379151[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1379151[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1379151[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1379151[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1379151[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1379151[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1379151[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1379151[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

#volumestacks_in_1379151 {
	display: none;
}

@media screen and (min-width: 768px) {
	#volumestacks_in_1379151 {
		display: inline-block;
		max-width: 44px;
		width: 44px;
		line-height: 44px;
		height: 44px;
		transition: all ease-in-out 300ms;
		text-align: center;
		position: relative;
		overflow: hidden;
		font-size: 22px;
		vertical-align: middle;
	}

	#volumestacks_in_1379151 [class^="fa fa-"] {
		color: rgba(0, 102, 255, 1.00);
	}

	#volumestacks_in_1379151:hover {
		max-width: 150px;
		width: 150px;
		padding: 0px 15px;
	}

	#volumeButtonstacks_in_1379151 {
		display: inline-block;
		max-width: 44px;
		width: 44px;
		line-height: 44px;
		height: 44px;
		color: rgba(0, 102, 255, 1.00);
	}

	#volumestacks_in_1379151:hover #volumeButtonstacks_in_1379151 {
		display: none;
	}

	#volumeMinstacks_in_1379151 {
		position: absolute;
		left: 20px;
		top: 0;
		height: 44px;
		line-height: 44px;
		color: rgba(0, 102, 255, 1.00);
	}

	#volumeMaxstacks_in_1379151 {
		position: absolute;
		right: 15px;
		top: 0;
		height: 44px;
		line-height: 44px;
		color: rgba(0, 102, 255, 1.00);
	}

	#volume-barstacks_in_1379151[type=range],
	#volumeMinstacks_in_1379151,
	#volumeMaxstacks_in_1379151 {
		display: none;
	}

	#volumeMinstacks_in_1379151,
	#volumeMaxstacks_in_1379151 {
		cursor: pointer;
	}

	#volumestacks_in_1379151:hover #volume-barstacks_in_1379151,
	#volumestacks_in_1379151:hover #volumeMinstacks_in_1379151,
	#volumestacks_in_1379151:hover #volumeMaxstacks_in_1379151 {
		display: inline;
	}

	#volume-barstacks_in_1379151[type=range] {
		-webkit-appearance: none;
		background: none;
		width: 50%;
		text-align: center;
		line-height: 44px;
		height: 44px;
	}

	#volume-barstacks_in_1379151[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1379151[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#volume-barstacks_in_1379151[type=range]:focus {
		outline: none;
	}

	#volume-barstacks_in_1379151[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1379151[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1379151[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1379151[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1379151[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1379151[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1379151[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1379151[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1379151[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

@media screen and (max-width: 569px) {
	#audioPlayerControlsstacks_in_1379151 #audioPlayerFullScreenstacks_in_1379151,
	#audioPlayerControlsstacks_in_1379151 #volumestacks_in_1379151 {
		display: none;
	}
}



#stacks_in_1379152 {
	margin: 4px 0px 12px 0px;
}
#audioPlayerContainerstacks_in_1379148 {
	position: relative;
	z-index: 1;
}

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

#audioPlayerstacks_in_1379148 {
	width: 100%;
	display: block;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1379148 {
	position: relative;
	z-index: 5;
	overflow: hidden;
	border-radius: 10px;
}

#audioPlayerControlsstacks_in_1379148 [class^="fa fa-"] {
	color: rgba(0, 102, 255, 1.00);
}








/* Vertical gradient fill */
#audioPlayerControlsstacks_in_1379148 {
	background-color: #EAEAEA;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(#EAEAEA), to(#CDCDCD));
	background-image: -moz-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -ms-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(100%, #CDCDCD));
	background-image: -webkit-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -o-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: linear-gradient(top, #EAEAEA, #CDCDCD);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EAEAEA', endColorstr='#CDCDCD', GradientType=0);
}
















#audioPlayerControlsWrapperstacks_in_1379148 {
	display: flex;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1379148 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 44px;
	padding: 0;
	margin: 0;
	height: 44px;
	line-height: 44px;
	font-size: 22px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#audioPlayerControlsstacks_in_1379148 #audioPlayerPlayPausestacks_in_1379148 {
	display: inline-block;
}

#audioPlayerControlsstacks_in_1379148 #audioPlayerFullScreenstacks_in_1379148 {
	display: ;
}

.audioPlayerAudioTimingstacks_in_1379148 {
	display: inline-block;
	height: 44px;
	line-height: 44px;
	color: rgba(76, 76, 76, 1.00);
	padding: 0;
	text-align: center;
	font-size: 14px;
}

#audioPlayerCurrentTimestacks_in_1379148 {
	display: inline-block;
	width: 44px;
}

#audioPlayerDurationstacks_in_1379148 {
	display: none;
	width: 44px;
}

#audioPlayerTimeDividerstacks_in_1379148 {
	display: inline-block;
	height: 44px;
	line-height: 44px;
	color: rgba(76, 76, 76, 1.00);
}




#audioPlayerTimeDividerstacks_in_1379148 {
	display: none;
}


@media screen and (min-width: 568px) {
	#audioPlayerTimeDividerstacks_in_1379148 {
		display: none;
	}
}

#progressBarstacks_in_1379148 {
	display: none;
}

@media screen and (min-width: 568px) {
	#progressBarstacks_in_1379148 {
		flex: 1;
		padding-right: 15px;
		padding-left: 15px;
		height: 44px;
		line-height: 44px;
		vertical-align: middle;
		display: inline-block;
	}

	#audioPlayerSeekBarstacks_in_1379148[type=range] {
		-webkit-appearance: none;
		background: none;
		display: inline-block;
		width: 99%;
		height: 44px;
		line-height: 44px;
	}

	#audioPlayerSeekBarstacks_in_1379148[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1379148[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#audioPlayerSeekBarstacks_in_1379148[type=range]:focus {
		outline: none;
	}

	#audioPlayerSeekBarstacks_in_1379148[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1379148[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1379148[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1379148[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1379148[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1379148[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1379148[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1379148[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1379148[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

#volumestacks_in_1379148 {
	display: none;
}

@media screen and (min-width: 768px) {
	#volumestacks_in_1379148 {
		display: inline-block;
		max-width: 44px;
		width: 44px;
		line-height: 44px;
		height: 44px;
		transition: all ease-in-out 300ms;
		text-align: center;
		position: relative;
		overflow: hidden;
		font-size: 22px;
		vertical-align: middle;
	}

	#volumestacks_in_1379148 [class^="fa fa-"] {
		color: rgba(0, 102, 255, 1.00);
	}

	#volumestacks_in_1379148:hover {
		max-width: 150px;
		width: 150px;
		padding: 0px 15px;
	}

	#volumeButtonstacks_in_1379148 {
		display: inline-block;
		max-width: 44px;
		width: 44px;
		line-height: 44px;
		height: 44px;
		color: rgba(0, 102, 255, 1.00);
	}

	#volumestacks_in_1379148:hover #volumeButtonstacks_in_1379148 {
		display: none;
	}

	#volumeMinstacks_in_1379148 {
		position: absolute;
		left: 20px;
		top: 0;
		height: 44px;
		line-height: 44px;
		color: rgba(0, 102, 255, 1.00);
	}

	#volumeMaxstacks_in_1379148 {
		position: absolute;
		right: 15px;
		top: 0;
		height: 44px;
		line-height: 44px;
		color: rgba(0, 102, 255, 1.00);
	}

	#volume-barstacks_in_1379148[type=range],
	#volumeMinstacks_in_1379148,
	#volumeMaxstacks_in_1379148 {
		display: none;
	}

	#volumeMinstacks_in_1379148,
	#volumeMaxstacks_in_1379148 {
		cursor: pointer;
	}

	#volumestacks_in_1379148:hover #volume-barstacks_in_1379148,
	#volumestacks_in_1379148:hover #volumeMinstacks_in_1379148,
	#volumestacks_in_1379148:hover #volumeMaxstacks_in_1379148 {
		display: inline;
	}

	#volume-barstacks_in_1379148[type=range] {
		-webkit-appearance: none;
		background: none;
		width: 50%;
		text-align: center;
		line-height: 44px;
		height: 44px;
	}

	#volume-barstacks_in_1379148[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1379148[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#volume-barstacks_in_1379148[type=range]:focus {
		outline: none;
	}

	#volume-barstacks_in_1379148[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1379148[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1379148[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1379148[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1379148[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1379148[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1379148[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1379148[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1379148[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

@media screen and (max-width: 569px) {
	#audioPlayerControlsstacks_in_1379148 #audioPlayerFullScreenstacks_in_1379148,
	#audioPlayerControlsstacks_in_1379148 #volumestacks_in_1379148 {
		display: none;
	}
}



#stacks_in_1379149 {
	margin: 4px 0px 12px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1379146 {
	padding: 0px 0px 0px 0px;
	margin: 10px 80px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
#stacks_in_1379146 { 
    padding: 0% 0% 0% 0%;
    margin: 0% 5% 0% 5%;
}
}
#audioPlayerContainerstacks_in_1379118 {
	position: relative;
	z-index: 1;
}

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

#audioPlayerstacks_in_1379118 {
	width: 100%;
	display: block;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1379118 {
	position: relative;
	z-index: 5;
	overflow: hidden;
	border-radius: 10px;
}

#audioPlayerControlsstacks_in_1379118 [class^="fa fa-"] {
	color: rgba(0, 102, 255, 1.00);
}








/* Vertical gradient fill */
#audioPlayerControlsstacks_in_1379118 {
	background-color: #EAEAEA;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(#EAEAEA), to(#CDCDCD));
	background-image: -moz-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -ms-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(100%, #CDCDCD));
	background-image: -webkit-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -o-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: linear-gradient(top, #EAEAEA, #CDCDCD);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EAEAEA', endColorstr='#CDCDCD', GradientType=0);
}
















#audioPlayerControlsWrapperstacks_in_1379118 {
	display: flex;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1379118 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 44px;
	padding: 0;
	margin: 0;
	height: 44px;
	line-height: 44px;
	font-size: 22px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#audioPlayerControlsstacks_in_1379118 #audioPlayerPlayPausestacks_in_1379118 {
	display: inline-block;
}

#audioPlayerControlsstacks_in_1379118 #audioPlayerFullScreenstacks_in_1379118 {
	display: ;
}

.audioPlayerAudioTimingstacks_in_1379118 {
	display: inline-block;
	height: 44px;
	line-height: 44px;
	color: rgba(76, 76, 76, 1.00);
	padding: 0;
	text-align: center;
	font-size: 14px;
}

#audioPlayerCurrentTimestacks_in_1379118 {
	display: inline-block;
	width: 44px;
}

#audioPlayerDurationstacks_in_1379118 {
	display: none;
	width: 44px;
}

#audioPlayerTimeDividerstacks_in_1379118 {
	display: inline-block;
	height: 44px;
	line-height: 44px;
	color: rgba(76, 76, 76, 1.00);
}




#audioPlayerTimeDividerstacks_in_1379118 {
	display: none;
}


@media screen and (min-width: 568px) {
	#audioPlayerTimeDividerstacks_in_1379118 {
		display: none;
	}
}

#progressBarstacks_in_1379118 {
	display: none;
}

@media screen and (min-width: 568px) {
	#progressBarstacks_in_1379118 {
		flex: 1;
		padding-right: 15px;
		padding-left: 15px;
		height: 44px;
		line-height: 44px;
		vertical-align: middle;
		display: inline-block;
	}

	#audioPlayerSeekBarstacks_in_1379118[type=range] {
		-webkit-appearance: none;
		background: none;
		display: inline-block;
		width: 99%;
		height: 44px;
		line-height: 44px;
	}

	#audioPlayerSeekBarstacks_in_1379118[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1379118[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#audioPlayerSeekBarstacks_in_1379118[type=range]:focus {
		outline: none;
	}

	#audioPlayerSeekBarstacks_in_1379118[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1379118[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1379118[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1379118[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1379118[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1379118[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1379118[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1379118[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1379118[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

#volumestacks_in_1379118 {
	display: none;
}

@media screen and (min-width: 768px) {
	#volumestacks_in_1379118 {
		display: inline-block;
		max-width: 44px;
		width: 44px;
		line-height: 44px;
		height: 44px;
		transition: all ease-in-out 300ms;
		text-align: center;
		position: relative;
		overflow: hidden;
		font-size: 22px;
		vertical-align: middle;
	}

	#volumestacks_in_1379118 [class^="fa fa-"] {
		color: rgba(0, 102, 255, 1.00);
	}

	#volumestacks_in_1379118:hover {
		max-width: 150px;
		width: 150px;
		padding: 0px 15px;
	}

	#volumeButtonstacks_in_1379118 {
		display: inline-block;
		max-width: 44px;
		width: 44px;
		line-height: 44px;
		height: 44px;
		color: rgba(0, 102, 255, 1.00);
	}

	#volumestacks_in_1379118:hover #volumeButtonstacks_in_1379118 {
		display: none;
	}

	#volumeMinstacks_in_1379118 {
		position: absolute;
		left: 20px;
		top: 0;
		height: 44px;
		line-height: 44px;
		color: rgba(0, 102, 255, 1.00);
	}

	#volumeMaxstacks_in_1379118 {
		position: absolute;
		right: 15px;
		top: 0;
		height: 44px;
		line-height: 44px;
		color: rgba(0, 102, 255, 1.00);
	}

	#volume-barstacks_in_1379118[type=range],
	#volumeMinstacks_in_1379118,
	#volumeMaxstacks_in_1379118 {
		display: none;
	}

	#volumeMinstacks_in_1379118,
	#volumeMaxstacks_in_1379118 {
		cursor: pointer;
	}

	#volumestacks_in_1379118:hover #volume-barstacks_in_1379118,
	#volumestacks_in_1379118:hover #volumeMinstacks_in_1379118,
	#volumestacks_in_1379118:hover #volumeMaxstacks_in_1379118 {
		display: inline;
	}

	#volume-barstacks_in_1379118[type=range] {
		-webkit-appearance: none;
		background: none;
		width: 50%;
		text-align: center;
		line-height: 44px;
		height: 44px;
	}

	#volume-barstacks_in_1379118[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1379118[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#volume-barstacks_in_1379118[type=range]:focus {
		outline: none;
	}

	#volume-barstacks_in_1379118[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1379118[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1379118[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1379118[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1379118[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1379118[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1379118[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1379118[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1379118[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

@media screen and (max-width: 569px) {
	#audioPlayerControlsstacks_in_1379118 #audioPlayerFullScreenstacks_in_1379118,
	#audioPlayerControlsstacks_in_1379118 #volumestacks_in_1379118 {
		display: none;
	}
}



#stacks_in_1379119 {
	margin: 4px 0px 12px 0px;
}
#audioPlayerContainerstacks_in_1379115 {
	position: relative;
	z-index: 1;
}

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

#audioPlayerstacks_in_1379115 {
	width: 100%;
	display: block;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1379115 {
	position: relative;
	z-index: 5;
	overflow: hidden;
	border-radius: 10px;
}

#audioPlayerControlsstacks_in_1379115 [class^="fa fa-"] {
	color: rgba(0, 102, 255, 1.00);
}








/* Vertical gradient fill */
#audioPlayerControlsstacks_in_1379115 {
	background-color: #EAEAEA;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(#EAEAEA), to(#CDCDCD));
	background-image: -moz-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -ms-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(100%, #CDCDCD));
	background-image: -webkit-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -o-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: linear-gradient(top, #EAEAEA, #CDCDCD);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EAEAEA', endColorstr='#CDCDCD', GradientType=0);
}
















#audioPlayerControlsWrapperstacks_in_1379115 {
	display: flex;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1379115 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 44px;
	padding: 0;
	margin: 0;
	height: 44px;
	line-height: 44px;
	font-size: 22px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#audioPlayerControlsstacks_in_1379115 #audioPlayerPlayPausestacks_in_1379115 {
	display: inline-block;
}

#audioPlayerControlsstacks_in_1379115 #audioPlayerFullScreenstacks_in_1379115 {
	display: ;
}

.audioPlayerAudioTimingstacks_in_1379115 {
	display: inline-block;
	height: 44px;
	line-height: 44px;
	color: rgba(76, 76, 76, 1.00);
	padding: 0;
	text-align: center;
	font-size: 14px;
}

#audioPlayerCurrentTimestacks_in_1379115 {
	display: inline-block;
	width: 44px;
}

#audioPlayerDurationstacks_in_1379115 {
	display: inline-block;
	width: 44px;
}

#audioPlayerTimeDividerstacks_in_1379115 {
	display: inline-block;
	height: 44px;
	line-height: 44px;
	color: rgba(76, 76, 76, 1.00);
}





@media screen and (min-width: 568px) {
	#audioPlayerTimeDividerstacks_in_1379115 {
		display: none;
	}
}

#progressBarstacks_in_1379115 {
	display: none;
}

@media screen and (min-width: 568px) {
	#progressBarstacks_in_1379115 {
		flex: 1;
		padding-right: 15px;
		padding-left: 15px;
		height: 44px;
		line-height: 44px;
		vertical-align: middle;
		display: inline-block;
	}

	#audioPlayerSeekBarstacks_in_1379115[type=range] {
		-webkit-appearance: none;
		background: none;
		display: inline-block;
		width: 99%;
		height: 44px;
		line-height: 44px;
	}

	#audioPlayerSeekBarstacks_in_1379115[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1379115[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#audioPlayerSeekBarstacks_in_1379115[type=range]:focus {
		outline: none;
	}

	#audioPlayerSeekBarstacks_in_1379115[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1379115[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1379115[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1379115[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1379115[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1379115[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1379115[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1379115[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1379115[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

#volumestacks_in_1379115 {
	display: none;
}

@media screen and (min-width: 768px) {
	#volumestacks_in_1379115 {
		display: inline-block;
		max-width: 44px;
		width: 44px;
		line-height: 44px;
		height: 44px;
		transition: all ease-in-out 300ms;
		text-align: center;
		position: relative;
		overflow: hidden;
		font-size: 22px;
		vertical-align: middle;
	}

	#volumestacks_in_1379115 [class^="fa fa-"] {
		color: rgba(0, 102, 255, 1.00);
	}

	#volumestacks_in_1379115:hover {
		max-width: 150px;
		width: 150px;
		padding: 0px 15px;
	}

	#volumeButtonstacks_in_1379115 {
		display: inline-block;
		max-width: 44px;
		width: 44px;
		line-height: 44px;
		height: 44px;
		color: rgba(0, 102, 255, 1.00);
	}

	#volumestacks_in_1379115:hover #volumeButtonstacks_in_1379115 {
		display: none;
	}

	#volumeMinstacks_in_1379115 {
		position: absolute;
		left: 20px;
		top: 0;
		height: 44px;
		line-height: 44px;
		color: rgba(0, 102, 255, 1.00);
	}

	#volumeMaxstacks_in_1379115 {
		position: absolute;
		right: 15px;
		top: 0;
		height: 44px;
		line-height: 44px;
		color: rgba(0, 102, 255, 1.00);
	}

	#volume-barstacks_in_1379115[type=range],
	#volumeMinstacks_in_1379115,
	#volumeMaxstacks_in_1379115 {
		display: none;
	}

	#volumeMinstacks_in_1379115,
	#volumeMaxstacks_in_1379115 {
		cursor: pointer;
	}

	#volumestacks_in_1379115:hover #volume-barstacks_in_1379115,
	#volumestacks_in_1379115:hover #volumeMinstacks_in_1379115,
	#volumestacks_in_1379115:hover #volumeMaxstacks_in_1379115 {
		display: inline;
	}

	#volume-barstacks_in_1379115[type=range] {
		-webkit-appearance: none;
		background: none;
		width: 50%;
		text-align: center;
		line-height: 44px;
		height: 44px;
	}

	#volume-barstacks_in_1379115[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1379115[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#volume-barstacks_in_1379115[type=range]:focus {
		outline: none;
	}

	#volume-barstacks_in_1379115[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1379115[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1379115[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1379115[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1379115[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1379115[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1379115[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1379115[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1379115[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

@media screen and (max-width: 569px) {
	#audioPlayerControlsstacks_in_1379115 #audioPlayerFullScreenstacks_in_1379115,
	#audioPlayerControlsstacks_in_1379115 #volumestacks_in_1379115 {
		display: none;
	}
}



#stacks_in_1379116 {
	margin: 4px 0px 12px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks' fsspacer.css Style Sheet
Created: 21, November, 2010
Last Modified: 23, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2072880_headerSpacer {
	display: block;
	width:  1px;
	height: 300px;
	background: transparent;
}
/*
-------------------------------------------
Stack: Blueball FreeStacks Responsive Transparent Stack
Style Sheet: fsrtransparent.css
Created: 23, October 2012
Last Modified: 22, April 2014
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1352816_wrapper {
	
}

#stacks_in_1352816_wrapper #stacks_in_1352816_transparentbg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #FFFFFF;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=99)";
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=99);
	filter: alpha(opacity=99);
	opacity: 0.99;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
}/* Start doobox anchor css */








.stacks_in_1352818anchor1 {

}

.stacks_in_1352818anchor2 {

}


/* end doobox anchor css *//*
-------------------------------------------
Stack: Blueball FreeStack Responsive Max Width Stack
Style Sheet: fsrmaxwidth.css
Created: 23, October 2012
Last Modified: 10, November, 2014
Author: Blueball Design
www.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1352820 {
	max-width: 1200px;
	min-width: 320px;
	margin: 0px auto !important;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_1352820 {
	max-width: 100% !important;
	min-width: 50% !important;
}

}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1352822 {
	padding: 0px 0px 0px 0px;
	margin: 30px 30px 20px 60px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
#stacks_in_1352822 { 
    padding: 0% 0% 0% 0%;
    margin: 0% 0% 0% 0%;
}
}

#stacks_in_2072873 {
	margin: 0px 0px 20px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

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

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
#stacks_in_1352824 { 
    padding: 0px 0px 0px 0px;
    margin: 10px 0px 0px 5px;
}
}

#stacks_in_1352826 {
	padding:  2px;
}
#stacks_in_1352828 *, #stacks_in_1352828 *:after, #stacks_in_1352828 *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; }

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

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

#stacks_in_1352828  {
}

#stacks_in_1352828 .timeline_item {
	position: relative;
}

#stacks_in_1352828 ul.cbp_tmtimeline {
	margin: 0;
}

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

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

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

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

#stacks_in_1352828 .cbp_tmtimeline li {
	margin: 0;
}

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

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

	

	
		left: 20%;
	
	
	
	
	
	

	margin-left: -10px;
}

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

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

#stacks_in_1352828 .cbp_tmtimeline li .cbp_tmtime span.small_label {
	font-size: 20px;
	line-height: 1.2;
	white-space: normal;
	
		color: #C5D5DE;
	
}

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

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

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

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


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


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

	
		left: 20%;
	
	
	
	
	
	

	margin: 0 0 0 -25px;

	
}

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



	#stacks_in_1352828 .cbp_tmtime {
		display: block;
	}

	





/********************************************/
/* Color Presets                            */
/********************************************/


/* TESLA PRESET START */

/* TESLA PRESET END */



/* SUBTLE GREYS PRESET START */

/* SUBTLE GREYS PRESET END */



/* FEATHER PRESET START */

/* FEATHER PRESET END */



/* NAVIGATOR PRESET START */

/* NAVIGATOR PRESET END */



/* RUBY PRESET START */

/* RUBY PRESET END */



/* GUN METAL PRESET START */

/* GUN METAL PRESET END */



/* EARTHY PRESET START */

/* EARTHY PRESET END */



/* CONTRASTY GREYS PRESET START */

/* CONTRASTY GREYS PRESET END */



/* HOTH PRESET START */

/* HOTH PRESET END */



/* ATLANTIS PRESET START */

/* ATLANTIS PRESET END */


/* PLUM PRESET START */

/* PLUM PRESET END */



/* ABSTRACT PRESET START */

/* ABSTRACT PRESET END */



/* HIVE PRESET START */

/* HIVE PRESET END */



/* WARMTH PRESET START */

/* WARMTH PRESET END */



/* PRETTY PURPLE PRESET START */

/* PRETTY PURPLE PRESET END */





/* Media Queries */
@media screen and (max-width: 65.375em) {

	#stacks_in_1352828 .cbp_tmtimeline li .cbp_tmtime span.large_label {
		font-size: 24px;
		line-height: 1.2;
	}
}

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

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

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

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

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

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


	

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

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

	


}





#stacks_in_1352828 {
	padding: 10px 0px 0px 0px;
}




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

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





	#stacks_in_1352862 .cbp_tmicon {
		background: #fff url(../index_files/icon_image-1352862.png) no-repeat center center !important;	
		background-size: cover !important;
	}

	#stacks_in_1352862 .cbp_tmicon i {
		display: none;
	}





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

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





	#stacks_in_1352857 .cbp_tmicon {
		background: #fff url(../index_files/icon_image-1352857.png) no-repeat center center !important;	
		background-size: cover !important;
	}

	#stacks_in_1352857 .cbp_tmicon i {
		display: none;
	}





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

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





	#stacks_in_1352950 .cbp_tmicon {
		background: #fff url(../index_files/icon_image-1352950.png) no-repeat center center !important;	
		background-size: cover !important;
	}

	#stacks_in_1352950 .cbp_tmicon i {
		display: none;
	}





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

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





	#stacks_in_1352935 .cbp_tmicon {
		background: #fff url(../index_files/icon_image-1352935.jpg) no-repeat center center !important;	
		background-size: cover !important;
	}

	#stacks_in_1352935 .cbp_tmicon i {
		display: none;
	}





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

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





	#stacks_in_1352920 .cbp_tmicon {
		background: #fff url(../index_files/icon_image-1352920.jpg) no-repeat center center !important;	
		background-size: cover !important;
	}

	#stacks_in_1352920 .cbp_tmicon i {
		display: none;
	}





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

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





	#stacks_in_1352905 .cbp_tmicon {
		background: #fff url(../index_files/icon_image-1352905.png) no-repeat center center !important;	
		background-size: cover !important;
	}

	#stacks_in_1352905 .cbp_tmicon i {
		display: none;
	}





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

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





	#stacks_in_1352830 .cbp_tmicon {
		background: #fff url(../index_files/icon_image-1352830.png) no-repeat center center !important;	
		background-size: cover !important;
	}

	#stacks_in_1352830 .cbp_tmicon i {
		display: none;
	}


#stacks_in_2072910 .cbp_tmlabel {
	background: #727272 !important;
	color: #FFFFFF !important;
}

#stacks_in_2072910 .cbp_tmlabel:after {
	border-right-color: #727272 !important;
}

@media screen and (max-width: 47.2em) {
	#stacks_in_2072910 .cbp_tmlabel:after {
		display: none;
	}
}

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

#stacks_in_2072910 .cbp_tmicon {
	color: #FFFFFF !important;
	background: #FF6600 !important;
	box-shadow: 0 0 0 8px #535353 !important; /* Border of icon */
}

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

		#stacks_in_2072910 .cbp_tmlabel:after {
			border-bottom-color: #727272 !important;
		}

	}





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

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



/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive Reposition Alt Stack' 
Style Sheet: fsrrepositionalt.css Style Sheet
Created: 26, August 2013
Last Modified: 03, June 2014
Author: Blueball Design LLC/Charlie Lockhart
http://freestackresponsive.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1350648 {
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 140px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

@media screen and (max-width: 768px) {
	
#stacks_in_1350648 { 
    padding: 0% 4% 0% 4%;
    margin: 0% 0% 0% 0%;
}
}
/*
-------------------------------------------
Stack: Blueball FreeStack Responsive Max Width Stack
Style Sheet: fsrmaxwidth.css
Created: 23, October 2012
Last Modified: 10, November, 2014
Author: Blueball Design
www.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_1349255 {
	max-width: 1200px;
	min-width: 320px;
	margin: 0px auto !important;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_1349255 {
	max-width: 100% !important;
	min-width: 50% !important;
}

}
/* Start doobox anchor css */








.stacks_in_1349257anchor1 {

}

.stacks_in_1349257anchor2 {

}


/* end doobox anchor css */
#stacks_in_1349259 {
	padding: 20px 0px 10px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive 2 Column Stack' 
Style Sheet: fsr2columns.css Style Sheet
Created: 29, December 2012
Last Modified: 17, April 2014
Author: Blueball Design, Charlie Lockhart
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2073129 #fsr_colwrap_stacks_in_2073129 {
	width: 100%;
	vertical-align: top;
	margin: 0;
	padding: 0;
	overflow: auto;
}

#stacks_in_2073129 #fsr_colwrap_stacks_in_2073129 #fsr_leftcol_stacks_in_2073129 {
	float: left;
	display: block;
	width: 50%;
	height: auto;
	margin: 0;
}

#stacks_in_2073129 #fsr_colwrap_stacks_in_2073129 #fsr_leftcol_stacks_in_2073129 .leftcolpad_stacks_in_2073129 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_2073129 #fsr_colwrap_stacks_in_2073129 #fsr_rightcol_stacks_in_2073129 {
	float: right;
	display: block;
	width: 50%;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2073129 #fsr_colwrap_stacks_in_2073129 #fsr_rightcol_stacks_in_2073129 .rightcolpad_stacks_in_2073129 {
	padding: 0px 0px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_2073129 #fsr_colwrap_stacks_in_2073129 #fsr_leftcol_stacks_in_2073129 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2073129 #fsr_colwrap_stacks_in_2073129 #fsr_leftcol_stacks_in_2073129 .leftcolpad_stacks_in_2073129 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_2073129 #fsr_colwrap_stacks_in_2073129 #fsr_rightcol_stacks_in_2073129 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2073129 #fsr_colwrap_stacks_in_2073129 #fsr_rightcol_stacks_in_2073129 .rightcolpad_stacks_in_2073129 {
	padding: 0px 0px 0px 0px;
}

}/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive 2 Column Stack' 
Style Sheet: fsr2columns.css Style Sheet
Created: 29, December 2012
Last Modified: 17, April 2014
Author: Blueball Design, Charlie Lockhart
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2073142 #fsr_colwrap_stacks_in_2073142 {
	width: 100%;
	vertical-align: top;
	margin: 0;
	padding: 0;
	overflow: auto;
}

#stacks_in_2073142 #fsr_colwrap_stacks_in_2073142 #fsr_leftcol_stacks_in_2073142 {
	float: left;
	display: block;
	width: 50%;
	height: auto;
	margin: 0;
}

#stacks_in_2073142 #fsr_colwrap_stacks_in_2073142 #fsr_leftcol_stacks_in_2073142 .leftcolpad_stacks_in_2073142 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_2073142 #fsr_colwrap_stacks_in_2073142 #fsr_rightcol_stacks_in_2073142 {
	float: right;
	display: block;
	width: 50%;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2073142 #fsr_colwrap_stacks_in_2073142 #fsr_rightcol_stacks_in_2073142 .rightcolpad_stacks_in_2073142 {
	padding: 0px 0px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_2073142 #fsr_colwrap_stacks_in_2073142 #fsr_leftcol_stacks_in_2073142 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2073142 #fsr_colwrap_stacks_in_2073142 #fsr_leftcol_stacks_in_2073142 .leftcolpad_stacks_in_2073142 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_2073142 #fsr_colwrap_stacks_in_2073142 #fsr_rightcol_stacks_in_2073142 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2073142 #fsr_colwrap_stacks_in_2073142 #fsr_rightcol_stacks_in_2073142 .rightcolpad_stacks_in_2073142 {
	padding: 0px 0px 0px 0px;
}

}#obfuscator_stacks_in_2073141 {
  
  text-align: center;
  
}

#obfuscator_stacks_in_2073141 a {
  display: inline-block;
}




#obfuscator_stacks_in_2073141 a {
  text-decoration: none;
  
  
  
  
  border-radius: 0.50rem;
  font-size: 1rem;
  letter-spacing: 0px;
  padding: 1rem 1.5rem;
  color: rgba(102, 102, 102, 1.00);
  background-color: rgba(204, 204, 204, 1.00);
  border: 1px solid rgba(102, 102, 102, 1.00);
  transition: all 100ms ease-in-out;
  display: inline-block;
}

#obfuscator_stacks_in_2073141 a:visited {
  color: rgba(102, 102, 102, 1.00);
  background-color: rgba(204, 204, 204, 1.00);
  border: 1px solid rgba(102, 102, 102, 1.00);
}

#obfuscator_stacks_in_2073141 a:hover,
#obfuscator_stacks_in_2073141 a:active {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(153, 153, 153, 1.00);
  border: 1px solid rgba(102, 102, 102, 1.00);
}

#obfuscator_stacks_in_2073141 .obfuscator_label_prefix i.fa {
  margin-right: 0.5rem;
}

#obfuscator_stacks_in_2073141 .obfuscator_label_suffix i.fa {
  margin-left: 0.5rem;
}



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

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

#stacks_in_2073134 {
	background-color: rgba(255, 153, 53, 1.00);
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin: 20px 0px 20px 0px;
	padding: 20px 10px 0px 10px;
}

#stacks_out_2073134 {
	width: 250px;
}

#stacks_in_2072994_1 {
	background-color: rgba(39, 39, 39, 0.51);
}
/*
-------------------------------------------
Stack: Blueball FreeStack Responsive Max Width Stack
Style Sheet: fsrmaxwidth.css
Created: 23, October 2012
Last Modified: 10, November, 2014
Author: Blueball Design
www.blueballdesign.com
Copyright 2013-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2072994_2 {
	max-width: 1200px;
	min-width: 320px;
	margin: 0px auto !important;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_2072994_2 {
	max-width: 100% !important;
	min-width: 50% !important;
}

}
#stacks_in_2072994_3>.s3_row {
	margin: 0 -0px;
}

#stacks_in_2072994_3>.s3_row>.s3_column_left {
	width: 61.13%;
}

#stacks_in_2072994_3>.s3_row>.s3_column_right {
	width: 38.869999%;
}




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










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



}



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


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


}






#stacks_in_2072994_3 {
	margin: 20px 40px 0px 0px;
}

#stacks_in_2072994_4 {
	margin: 10px 0px 0px 40px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive 2 Column Stack' 
Style Sheet: fsr2columns.css Style Sheet
Created: 29, December 2012
Last Modified: 17, April 2014
Author: Blueball Design, Charlie Lockhart
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2072994_6 #fsr_colwrap_stacks_in_2072994_6 {
	width: 100%;
	vertical-align: top;
	margin: 0;
	padding: 0;
	overflow: auto;
}

#stacks_in_2072994_6 #fsr_colwrap_stacks_in_2072994_6 #fsr_leftcol_stacks_in_2072994_6 {
	float: left;
	display: block;
	width: 50%;
	height: auto;
	margin: 0;
}

#stacks_in_2072994_6 #fsr_colwrap_stacks_in_2072994_6 #fsr_leftcol_stacks_in_2072994_6 .leftcolpad_stacks_in_2072994_6 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_2072994_6 #fsr_colwrap_stacks_in_2072994_6 #fsr_rightcol_stacks_in_2072994_6 {
	float: right;
	display: block;
	width: 50%;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2072994_6 #fsr_colwrap_stacks_in_2072994_6 #fsr_rightcol_stacks_in_2072994_6 .rightcolpad_stacks_in_2072994_6 {
	padding: 0px 0px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_2072994_6 #fsr_colwrap_stacks_in_2072994_6 #fsr_leftcol_stacks_in_2072994_6 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2072994_6 #fsr_colwrap_stacks_in_2072994_6 #fsr_leftcol_stacks_in_2072994_6 .leftcolpad_stacks_in_2072994_6 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_2072994_6 #fsr_colwrap_stacks_in_2072994_6 #fsr_rightcol_stacks_in_2072994_6 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2072994_6 #fsr_colwrap_stacks_in_2072994_6 #fsr_rightcol_stacks_in_2072994_6 .rightcolpad_stacks_in_2072994_6 {
	padding: 0px 0px 0px 0px;
}

}
#stacks_in_2072994_6 {
	margin: 20px 0px 0px 40px;
}

#stacks_out_2072994_6 {
	width: 550px;
	margin-left:0;
}

#stacks_in_2072994_32 {
	margin: 20px 0px 0px 40px;
}
/*
-------------------------------------------
File: 'Blueball FreeStacks Responsive 2 Column Stack' 
Style Sheet: fsr2columns.css Style Sheet
Created: 29, December 2012
Last Modified: 17, April 2014
Author: Blueball Design, Charlie Lockhart
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2072994_34 #fsr_colwrap_stacks_in_2072994_34 {
	width: 100%;
	vertical-align: top;
	margin: 0;
	padding: 0;
	overflow: auto;
}

#stacks_in_2072994_34 #fsr_colwrap_stacks_in_2072994_34 #fsr_leftcol_stacks_in_2072994_34 {
	float: left;
	display: block;
	width: 50%;
	height: auto;
	margin: 0;
}

#stacks_in_2072994_34 #fsr_colwrap_stacks_in_2072994_34 #fsr_leftcol_stacks_in_2072994_34 .leftcolpad_stacks_in_2072994_34 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_2072994_34 #fsr_colwrap_stacks_in_2072994_34 #fsr_rightcol_stacks_in_2072994_34 {
	float: right;
	display: block;
	width: 50%;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2072994_34 #fsr_colwrap_stacks_in_2072994_34 #fsr_rightcol_stacks_in_2072994_34 .rightcolpad_stacks_in_2072994_34 {
	padding: 0px 0px 0px 0px;
}

/************************************************************************************
MOBILE
*************************************************************************************/

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

#stacks_in_2072994_34 #fsr_colwrap_stacks_in_2072994_34 #fsr_leftcol_stacks_in_2072994_34 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2072994_34 #fsr_colwrap_stacks_in_2072994_34 #fsr_leftcol_stacks_in_2072994_34 .leftcolpad_stacks_in_2072994_34 {
	padding: 0px 0px 0px 0px;
}

#stacks_in_2072994_34 #fsr_colwrap_stacks_in_2072994_34 #fsr_rightcol_stacks_in_2072994_34 {
	display: block;
	float: left;
	width: 100% !important;
	height: auto;
	margin: 0;
	padding: 0;
}

#stacks_in_2072994_34 #fsr_colwrap_stacks_in_2072994_34 #fsr_rightcol_stacks_in_2072994_34 .rightcolpad_stacks_in_2072994_34 {
	padding: 0px 0px 0px 0px;
}

}
#stacks_in_2072994_34 {
	margin: 0px 0px 0px 40px;
}

#stacks_out_2072994_34 {
	width: 550px;
	margin-left:0;
}

#stacks_in_2072994_35 {
	margin: 10px 0px 0px 0px;
}
#stacks_in_2072994_13>.s3_row {
	margin: 0 -10px;
}

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








  


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




	#stacks_in_2072994_13>.s3_row  {
		margin: -10px -10px;
	}
	#stacks_in_2072994_13>.s3_row>.s3_column {
		padding: 10px 10px;
		width:50%;
	}



}



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


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





}




  

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

#stacks_in_2072994_14 {
	margin: 0px 0px 0px 50px;
}

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

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

#stacks_in_2072994_23 {
	margin: 20px 0px 0px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStack Responsive Footer' 
Style Sheet: fsrfooter.css
Created: 25, October, 2010
Last Modified: 18, April 2014
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2012-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_2072994_27 {
}

#stacks_in_2072994_27 #footer {
	line-height: 3.11em;
	width: 100%;
}



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

#stacks_out_2072994_27 {
	width: 150px;
	margin-right:0;
}
