/*
 * com.bwd.lib.sectionspro
 */

.sections-stack.s-pro.eq-height,.sections-stack.s-pro.eq-height>.shear-wrapper{margin-top:0!important}.sections-stack.s-pro.top-margin-none{margin-top:0}.sections-stack.s-pro.bot-margin-none{margin-bottom:0}.sections-stack.s-pro .inner-content{position:relative}.sections-stack.s-pro .content-wrapper.fill-content{height:100%}.sections-stack.s-pro .content-wrapper>.content{margin:0;padding:0}.sections-stack.s-pro .shear-inner::before,.sections-stack.s-pro .shear-inner::after{-webkit-box-sizing:border-box!important;box-sizing:border-box!important;pointer-events:none!important;position:absolute;top:0;height:100%;left:0;width:100%;content:""}.sections-stack.s-pro.allow-pull-out>.shear-wrapper>.shear-inner.full-height,.sections-stack.s-pro.allow-pull-out>.shear-wrapper>.shear-inner>.inner-content.v-center,.sections-stack.s-pro.allow-pull-out>.shear-wrapper>.shear-inner.fixed-height>.inner-content{overflow:visible!important}


 .target_stack.width-fill{width:100%}.target_stack.width-auto{width:auto}.target_stack.position-browser{position:fixed!important}.target_stack.position-absolute{position:absolute!important}.target_stack.position-body{position:absolute!important}.target_stack.position-right{float:right}.target_stack.position-left{float:left}.target_stack.vcenter{top:0;height:100%}.target_stack.vcenter>.com_joeworkman_stacks_target_stack{position:relative;top:50%;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%)}.target_stack.hcenter>.com_joeworkman_stacks_target_stack{position:relative;left:50%;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%)}.target_stack.hcenter.vcenter>.com_joeworkman_stacks_target_stack{-webkit-transform:translateX(-50%) translateY(-50%);-moz-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);-o-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}@media only screen and (max-width:40em){.target_stack.disable-small{position:relative!important;float:none!important;height:auto!important;left:auto!important;top:auto!important;bottom:auto!important;right:auto!important}.target_stack.disable-small>.com_joeworkman_stacks_target_stack{left:auto!important;top:auto!important;bottom:auto!important;right:auto!important;-webkit-transform:none!important;-moz-transform:none!important;-ms-transform:none!important;-o-transform:none!important;transform:none!important}}@media only screen and (max-width:62.5em){.target_stack.disable-medium{position:relative!important;float:none!important;height:auto!important;left:auto!important;top:auto!important;bottom:auto!important;right:auto!important}.target_stack.disable-medium>.com_joeworkman_stacks_target_stack{left:auto!important;top:auto!important;bottom:auto!important;right:auto!important;-webkit-transform:none!important;-moz-transform:none!important;-ms-transform:none!important;-o-transform:none!important;transform:none!important}}
.com_bigwhiteduck_stacks_paragraphpro_stack p.text-center{text-align:center}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-left{text-align:left}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-right{text-align:right}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-justify{text-align:justify}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-inherit{text-align:inherit}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_paragraphpro_stack p.small-only-text-center{text-align:center}.com_bigwhiteduck_stacks_paragraphpro_stack p.small-only-text-center+ul{display:table;margin:0 auto;text-align:left}}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_paragraphpro_stack p.text-justify.small-only-just-left{text-align:left!important}}
.com_joeworkman_stacks_link_stack a{display:block;text-decoration:none!important;padding:0;margin:0}
/*!
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;
} .sections-stack .content.preload-content{opacity:0}html.no-js .sections-stack .content.preload-content{opacity:1}
/*
 *  Carousel Complete v1.1.0
 */
.stacks_in_4171_page12 .owl-stage-outer {
  height: auto !important;
}
.stacks_in_4171_page12 .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.stacks_in_4171_page12 .owl-animated-in {
  z-index: 0;
}
.stacks_in_4171_page12 .owl-animated-out {
  z-index: 1;
}
/*
.stacks_in_4171_page12 .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
*/
.stacks_in_4171_page12 .reverse-animation {
  -webkit-animation-direction: reverse; /* Chrome, Safari, Opera */
  animation-direction: reverse;
}


.stacks_in_4171_page12 .active {
  opacity: 1;
}
.stacks_in_4171_page12 .owl-animated-out {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -webkit-transition: opacity 1s ease-in-out;
}
.stacks_in_4171_page12 .owl-animated-in {
  opacity: 1;
  transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -webkit-transition: opacity 1s ease-in-out;
}
.stacks_in_4171_page12 .active.reverse-animation  {
  opacity: 1;
}
.stacks_in_4171_page12 .owl-animated-out.reverse-animation {
  opacity: 1;
}
.stacks_in_4171_page12 .owl-animated-in.reverse-animation {
  opacity: 1;
}

.stacks_in_4171_page12 .owl-item {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1.0, 1.0);
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.stacks_in_4171_page12 .autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 *  Core Owl Carousel CSS File
 */
.stacks_in_4171_page12 {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.stacks_in_4171_page12 .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
/*
.stacks_in_4171_page12 .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
*/


.stacks_in_4171_page12 .owl-stage-outer{
  
    background: #000000;
    padding-bottom: 0px !important;
    margin-bottom: -4px;
  
  position: relative;
  overflow: hidden;

  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.stacks_in_4171_page12 .owl-controls .owl-nav .owl-prev,
.stacks_in_4171_page12 .owl-controls .owl-nav .owl-next,
.stacks_in_4171_page12 .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.stacks_in_4171_page12.owl-loaded {
  display: block;
}
.stacks_in_4171_page12.owl-loading {
  opacity: 0;
  display: block;
}
.stacks_in_4171_page12.owl-hidden {
  opacity: 0;
}
.stacks_in_4171_page12 .owl-refresh .owl-item {
  display: none;
}
.stacks_in_4171_page12 .owl-item {
  position: relative;
  box-sizing: border-box;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.stacks_in_4171_page12 .owl-item .item {
  padding-left: 0% !important;
  padding-right: 0% !important;
  box-sizing: border-box;
}
.stacks_in_4171_page12 .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.stacks_in_4171_page12.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.stacks_in_4171_page12 .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.stacks_in_4171_page12.owl-rtl {
  direction: rtl;
}
.stacks_in_4171_page12.owl-rtl .owl-item {
  float: right;
}
/* No Js */
.no-js .stacks_in_4171_page12 {
  display: block;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.stacks_in_4171_page12 .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.stacks_in_4171_page12 .owl-item img {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.stacks_in_4171_page12 .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.stacks_in_4171_page12 .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("../index_files/carScripts/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.stacks_in_4171_page12 .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.stacks_in_4171_page12 .owl-video-playing .owl-video-tn,
.stacks_in_4171_page12 .owl-video-playing .owl-video-play-icon {
  display: none;
}
.stacks_in_4171_page12 .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.stacks_in_4171_page12 .owl-video-frame {
  position: relative;
  z-index: 1;
}
.stacks_in_4171_page12 .item-video{

  overflow:hidden;
  position:relative;
}
.stacks_in_4171_page12 .owl-video-frame{
    width:100% !important;
    height: auto !important;
}
.stacks_in_4171_page12 .item{
  overflow:hidden;
}
.stacks_in_4171_page12 .owl-stage-outer{
  overflow:hidden;
  position:relative;
}
.stacks_in_4171_page12 .owl-stage{
}
/*img{height: 490px}*/
.stacks_in_4171_page12 .owl-controls {
  
}
.stacks_in_4171_page12 .owl-dots{
  margin:0 auto;
  width:100%;
  text-align: center;
  position:relative;
  z-index:99999;
}
.stacks_in_4171_page12 .owl-dot {
  background:#333333;
  width:20px;
  height:20px;
  display:inline-block;
  margin:10px;
  border-radius:20px;
}
.stacks_in_4171_page12 .owl-dot.active{
  background:#000000;
}

.stacks_in_4171_page12 .owl-prev, .stacks_in_4171_page12 .owl-next {
  width: 20px;
  height: 20px;
/*  background:white;*/
  float:left;
}
.stacks_in_4171_page12 .owl-prev{
  position:absolute;
  height: auto;
  left: 10px;
  top: 50%;
  margin-top: -21px;
}
.stacks_in_4171_page12 .owl-next{
  position:absolute;
  height: auto;
  right: 10px;
  top: 50%;
  margin-top: -21px;
}
.stacks_in_4171_page12 .owl-prev polygon, .stacks_in_4171_page12 .owl-prev path, .stacks_in_4171_page12 .owl-next polygon{
    fill:#BF2124;
}

.stacks_in_4171_page12 .item{
  position: relative;
}
.stacks_in_4171_page12 .caption{
  position:absolute;
  display:none;
  color:white;
  width: 100%;
  z-index:9999;
  text-align:center;
  left: 0;
}
.stacks_in_4171_page12 .visible{
  display:block;
}
.stacks_in_4171_page12 .waiting {
  pointer-events: none;
}





.stacks_in_4172_page12.item{
    width:100%;
    height:auto;
/*    min-height: 10px;*/
}

.stacks_in_4172_page12.item.VidH .owl-video-frame,
.stacks_in_4172_page12.item.VidH .owl-video-tn {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.stacks_in_4172_page12.item.VidH .owl-video-tn {
  background-size: cover !important;
}
.stacks_in_4172_page12.item.VidH .owl-video-wrapper {
  max-width: 980px;
  margin: 0 auto;
}
.stacks_in_4172_page12.item.VidH iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.stacks_in_4172_page12.item img{
    width:100%;
    height:auto;
    display:inline-block;
}

.stacks_in_4172_page12 .eContent{
/*    display:  !important;*/
}

.stacks_in_4172_page12.item-video .owl-video-wrapper .owl-video-frame{
    max-height: 100%;
}
.stacks_in_4172_page12.item-video .owl-video-wrapper .owl-video-frame iframe{
/*
    width:100%;
     height: px !important;
    max-height: 100%;
*/
}

.more .stacks_in_4172_page12.item-video .owl-video-wrapper .owl-video-frame iframe{
/*    height:auto;*/
}
.stacks_in_4172_page12 .caption{
  bottom: 0
}

 #stacks_in_4173_page12{ height:400px; } 

#stacks_in_4173_page12 {
	background-image: url("../index_files/backgroundImage_4173.jpg");
	background-repeat: repeat;
	background-size: cover;
	background-position: center;
}
 .target_stacks_in_4174_page12{ }.target_stacks_in_4174_page12.rotate{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:center center;-moz-transform-origin:center center;-ms-transform-origin:center center;-o-transform-origin:center center;transform-origin:center center}.target_stacks_in_4174_page12.width-flexible{width:100%}.target_stacks_in_4174_page12.width-fixed{width:250px}.target_stacks_in_4174_page12.height-flexible{height:100%}.target_stacks_in_4174_page12.height-fixed{height:250px}.target_stacks_in_4174_page12.top_pt{top:0%}.target_stacks_in_4174_page12.top_px{top:0px}.target_stacks_in_4174_page12.bottom_pt{bottom:0%}.target_stacks_in_4174_page12.bottom_px{bottom:0px}.target_stacks_in_4174_page12.right_pt{right:15%}.target_stacks_in_4174_page12.right_px{right:15px}.target_stacks_in_4174_page12.left_pt{left:15%}.target_stacks_in_4174_page12.left_px{left:15px} 



.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_4176_page12 {
	height: 40px;
}











.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_4177_page12 {
	height: 40px;
}











.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_4178_page12 {
	height: 40px;
}










#stacks_in_4180_page12 {
	font-size: 200%;
}


.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_4181_page12 {
	height: 40px;
}











.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_4182_page12 {
	height: 40px;
}









 .target_stacks_in_4187_page12{ }.target_stacks_in_4187_page12.rotate{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:center center;-moz-transform-origin:center center;-ms-transform-origin:center center;-o-transform-origin:center center;transform-origin:center center}.target_stacks_in_4187_page12.width-flexible{width:100%}.target_stacks_in_4187_page12.width-fixed{width:250px}.target_stacks_in_4187_page12.height-flexible{height:100%}.target_stacks_in_4187_page12.height-fixed{height:250px}.target_stacks_in_4187_page12.top_pt{top:0%}.target_stacks_in_4187_page12.top_px{top:0px}.target_stacks_in_4187_page12.bottom_pt{bottom:0%}.target_stacks_in_4187_page12.bottom_px{bottom:0px}.target_stacks_in_4187_page12.right_pt{right:15%}.target_stacks_in_4187_page12.right_px{right:15px}.target_stacks_in_4187_page12.left_pt{left:15%}.target_stacks_in_4187_page12.left_px{left:15px} 

#stacks_in_4189_page12 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_4189_page12 .jwresp_col{overflow:hidden;margin:0;width:39%; float:left;}#stacks_in_4189_page12 #jwresp_col2_stacks_in_4189_page12{ float:right; width:59%}@media screen and (max-width:500px){#stacks_in_4189_page12 #jwresp_col1_stacks_in_4189_page12,#stacks_in_4189_page12 #jwresp_col2_stacks_in_4189_page12{width:100%;float:none;display:block}#stacks_in_4189_page12 #jwresp_col1_stacks_in_4189_page12{margin-bottom:15px}}

#stacks_in_4189_page12 {
	padding: 0px 30px 0px 0px;
}
 .target_stacks_in_4190_page12{ }.target_stacks_in_4190_page12.rotate{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:center center;-moz-transform-origin:center center;-ms-transform-origin:center center;-o-transform-origin:center center;transform-origin:center center}.target_stacks_in_4190_page12.width-flexible{width:100%}.target_stacks_in_4190_page12.width-fixed{width:180px}.target_stacks_in_4190_page12.height-flexible{height:100%}.target_stacks_in_4190_page12.height-fixed{height:250px}.target_stacks_in_4190_page12.top_pt{top:0%}.target_stacks_in_4190_page12.top_px{top:0px}.target_stacks_in_4190_page12.bottom_pt{bottom:0%}.target_stacks_in_4190_page12.bottom_px{bottom:0px}.target_stacks_in_4190_page12.right_pt{right:0%}.target_stacks_in_4190_page12.right_px{right:0px}.target_stacks_in_4190_page12.left_pt{left:0%}.target_stacks_in_4190_page12.left_px{left:0px} 

#stacks_in_4191_page12 img{max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;          }
 #stacks_in_4195_page12 {font-size:35px}@media screen and (max-width:770px){#stacks_in_4195_page12 {font-size:35px}}@media screen and (max-width:600px){#stacks_in_4195_page12 {font-size:30px}}@media screen and (max-width:500px){#stacks_in_4195_page12 {font-size:25px}}@media screen and (max-width:320px){#stacks_in_4195_page12 {font-size:20px}}
                 @media only screen and (min-width:0px){#stacks_in_4196_page12{ }} 

#stacks_in_4197_page12 {
	display:inline-block; width:100%; line-height: 1.200000em;
}
                 @media only screen and (min-width:0px){#stacks_in_4200_page12{ }} 

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


.stacks_in_4209_page12.item{
    width:100%;
    height:auto;
/*    min-height: 10px;*/
}

.stacks_in_4209_page12.item.VidH .owl-video-frame,
.stacks_in_4209_page12.item.VidH .owl-video-tn {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.stacks_in_4209_page12.item.VidH .owl-video-tn {
  background-size: cover !important;
}
.stacks_in_4209_page12.item.VidH .owl-video-wrapper {
  max-width: 980px;
  margin: 0 auto;
}
.stacks_in_4209_page12.item.VidH iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.stacks_in_4209_page12.item img{
    width:100%;
    height:auto;
    display:inline-block;
}

.stacks_in_4209_page12 .eContent{
/*    display:  !important;*/
}

.stacks_in_4209_page12.item-video .owl-video-wrapper .owl-video-frame{
    max-height: 100%;
}
.stacks_in_4209_page12.item-video .owl-video-wrapper .owl-video-frame iframe{
/*
    width:100%;
     height: px !important;
    max-height: 100%;
*/
}

.more .stacks_in_4209_page12.item-video .owl-video-wrapper .owl-video-frame iframe{
/*    height:auto;*/
}
.stacks_in_4209_page12 .caption{
  bottom: 0
}

 #stacks_in_4210_page12{ height:400px; } 

#stacks_in_4210_page12 {
	background-image: url("../index_files/backgroundImage_4210.jpg");
	background-repeat: repeat;
	background-size: cover;
	background-position: center;
}
 .target_stacks_in_4211_page12{ }.target_stacks_in_4211_page12.rotate{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:center center;-moz-transform-origin:center center;-ms-transform-origin:center center;-o-transform-origin:center center;transform-origin:center center}.target_stacks_in_4211_page12.width-flexible{width:100%}.target_stacks_in_4211_page12.width-fixed{width:250px}.target_stacks_in_4211_page12.height-flexible{height:100%}.target_stacks_in_4211_page12.height-fixed{height:250px}.target_stacks_in_4211_page12.top_pt{top:0%}.target_stacks_in_4211_page12.top_px{top:0px}.target_stacks_in_4211_page12.bottom_pt{bottom:0%}.target_stacks_in_4211_page12.bottom_px{bottom:0px}.target_stacks_in_4211_page12.right_pt{right:15%}.target_stacks_in_4211_page12.right_px{right:15px}.target_stacks_in_4211_page12.left_pt{left:15%}.target_stacks_in_4211_page12.left_px{left:15px} 



.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_4213_page12 {
	height: 40px;
}











.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_4214_page12 {
	height: 40px;
}











.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_4215_page12 {
	height: 40px;
}










#stacks_in_4217_page12 {
	font-size: 200%;
}


.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_4218_page12 {
	height: 40px;
}











.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_4219_page12 {
	height: 40px;
}









 .target_stacks_in_4224_page12{ }.target_stacks_in_4224_page12.rotate{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:center center;-moz-transform-origin:center center;-ms-transform-origin:center center;-o-transform-origin:center center;transform-origin:center center}.target_stacks_in_4224_page12.width-flexible{width:100%}.target_stacks_in_4224_page12.width-fixed{width:250px}.target_stacks_in_4224_page12.height-flexible{height:100%}.target_stacks_in_4224_page12.height-fixed{height:250px}.target_stacks_in_4224_page12.top_pt{top:0%}.target_stacks_in_4224_page12.top_px{top:0px}.target_stacks_in_4224_page12.bottom_pt{bottom:0%}.target_stacks_in_4224_page12.bottom_px{bottom:0px}.target_stacks_in_4224_page12.right_pt{right:15%}.target_stacks_in_4224_page12.right_px{right:15px}.target_stacks_in_4224_page12.left_pt{left:15%}.target_stacks_in_4224_page12.left_px{left:15px} 

#stacks_in_4226_page12 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_4226_page12 .jwresp_col{overflow:hidden;margin:0;width:39%; float:left;}#stacks_in_4226_page12 #jwresp_col2_stacks_in_4226_page12{ float:right; width:59%}@media screen and (max-width:500px){#stacks_in_4226_page12 #jwresp_col1_stacks_in_4226_page12,#stacks_in_4226_page12 #jwresp_col2_stacks_in_4226_page12{width:100%;float:none;display:block}#stacks_in_4226_page12 #jwresp_col1_stacks_in_4226_page12{margin-bottom:15px}}

#stacks_in_4226_page12 {
	padding: 0px 30px 0px 0px;
}
 .target_stacks_in_4227_page12{ }.target_stacks_in_4227_page12.rotate{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:center center;-moz-transform-origin:center center;-ms-transform-origin:center center;-o-transform-origin:center center;transform-origin:center center}.target_stacks_in_4227_page12.width-flexible{width:100%}.target_stacks_in_4227_page12.width-fixed{width:180px}.target_stacks_in_4227_page12.height-flexible{height:100%}.target_stacks_in_4227_page12.height-fixed{height:250px}.target_stacks_in_4227_page12.top_pt{top:0%}.target_stacks_in_4227_page12.top_px{top:0px}.target_stacks_in_4227_page12.bottom_pt{bottom:0%}.target_stacks_in_4227_page12.bottom_px{bottom:0px}.target_stacks_in_4227_page12.right_pt{right:0%}.target_stacks_in_4227_page12.right_px{right:0px}.target_stacks_in_4227_page12.left_pt{left:0%}.target_stacks_in_4227_page12.left_px{left:0px} 

#stacks_in_4228_page12 img{max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;          }
 #stacks_in_4232_page12 {font-size:35px}@media screen and (max-width:770px){#stacks_in_4232_page12 {font-size:35px}}@media screen and (max-width:600px){#stacks_in_4232_page12 {font-size:30px}}@media screen and (max-width:500px){#stacks_in_4232_page12 {font-size:25px}}@media screen and (max-width:320px){#stacks_in_4232_page12 {font-size:20px}}
                 @media only screen and (min-width:0px){#stacks_in_4233_page12{ }} 

#stacks_in_4234_page12 {
	display:inline-block; width:100%; line-height: 1.200000em;
}
                 @media only screen and (min-width:0px){#stacks_in_4237_page12{ }} 

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


.stacks_in_4246_page12.item{
    width:100%;
    height:auto;
/*    min-height: 10px;*/
}

.stacks_in_4246_page12.item.VidH .owl-video-frame,
.stacks_in_4246_page12.item.VidH .owl-video-tn {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.stacks_in_4246_page12.item.VidH .owl-video-tn {
  background-size: cover !important;
}
.stacks_in_4246_page12.item.VidH .owl-video-wrapper {
  max-width: 980px;
  margin: 0 auto;
}
.stacks_in_4246_page12.item.VidH iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.stacks_in_4246_page12.item img{
    width:100%;
    height:auto;
    display:inline-block;
}

.stacks_in_4246_page12 .eContent{
/*    display:  !important;*/
}

.stacks_in_4246_page12.item-video .owl-video-wrapper .owl-video-frame{
    max-height: 100%;
}
.stacks_in_4246_page12.item-video .owl-video-wrapper .owl-video-frame iframe{
/*
    width:100%;
     height: px !important;
    max-height: 100%;
*/
}

.more .stacks_in_4246_page12.item-video .owl-video-wrapper .owl-video-frame iframe{
/*    height:auto;*/
}
.stacks_in_4246_page12 .caption{
  bottom: 0
}

 #stacks_in_4247_page12{ height:400px; } 

#stacks_in_4247_page12 {
	background-image: url("../index_files/backgroundImage_4247.jpg");
	background-repeat: repeat;
	background-size: cover;
	background-position: center;
}
 .target_stacks_in_4248_page12{ }.target_stacks_in_4248_page12.rotate{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:center center;-moz-transform-origin:center center;-ms-transform-origin:center center;-o-transform-origin:center center;transform-origin:center center}.target_stacks_in_4248_page12.width-flexible{width:100%}.target_stacks_in_4248_page12.width-fixed{width:250px}.target_stacks_in_4248_page12.height-flexible{height:100%}.target_stacks_in_4248_page12.height-fixed{height:250px}.target_stacks_in_4248_page12.top_pt{top:0%}.target_stacks_in_4248_page12.top_px{top:0px}.target_stacks_in_4248_page12.bottom_pt{bottom:0%}.target_stacks_in_4248_page12.bottom_px{bottom:0px}.target_stacks_in_4248_page12.right_pt{right:15%}.target_stacks_in_4248_page12.right_px{right:15px}.target_stacks_in_4248_page12.left_pt{left:15%}.target_stacks_in_4248_page12.left_px{left:15px} 



.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_4250_page12 {
	height: 40px;
}











.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_4251_page12 {
	height: 40px;
}











.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_4252_page12 {
	height: 40px;
}










#stacks_in_4254_page12 {
	font-size: 200%;
}


.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_4255_page12 {
	height: 40px;
}











.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_4256_page12 {
	height: 40px;
}









 .target_stacks_in_4261_page12{ }.target_stacks_in_4261_page12.rotate{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:center center;-moz-transform-origin:center center;-ms-transform-origin:center center;-o-transform-origin:center center;transform-origin:center center}.target_stacks_in_4261_page12.width-flexible{width:100%}.target_stacks_in_4261_page12.width-fixed{width:250px}.target_stacks_in_4261_page12.height-flexible{height:100%}.target_stacks_in_4261_page12.height-fixed{height:250px}.target_stacks_in_4261_page12.top_pt{top:0%}.target_stacks_in_4261_page12.top_px{top:0px}.target_stacks_in_4261_page12.bottom_pt{bottom:0%}.target_stacks_in_4261_page12.bottom_px{bottom:0px}.target_stacks_in_4261_page12.right_pt{right:15%}.target_stacks_in_4261_page12.right_px{right:15px}.target_stacks_in_4261_page12.left_pt{left:15%}.target_stacks_in_4261_page12.left_px{left:15px} 

#stacks_in_4263_page12 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_4263_page12 .jwresp_col{overflow:hidden;margin:0;width:39%; float:left;}#stacks_in_4263_page12 #jwresp_col2_stacks_in_4263_page12{ float:right; width:59%}@media screen and (max-width:500px){#stacks_in_4263_page12 #jwresp_col1_stacks_in_4263_page12,#stacks_in_4263_page12 #jwresp_col2_stacks_in_4263_page12{width:100%;float:none;display:block}#stacks_in_4263_page12 #jwresp_col1_stacks_in_4263_page12{margin-bottom:15px}}

#stacks_in_4263_page12 {
	padding: 0px 30px 0px 0px;
}
 .target_stacks_in_4264_page12{ }.target_stacks_in_4264_page12.rotate{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:center center;-moz-transform-origin:center center;-ms-transform-origin:center center;-o-transform-origin:center center;transform-origin:center center}.target_stacks_in_4264_page12.width-flexible{width:100%}.target_stacks_in_4264_page12.width-fixed{width:180px}.target_stacks_in_4264_page12.height-flexible{height:100%}.target_stacks_in_4264_page12.height-fixed{height:250px}.target_stacks_in_4264_page12.top_pt{top:0%}.target_stacks_in_4264_page12.top_px{top:0px}.target_stacks_in_4264_page12.bottom_pt{bottom:0%}.target_stacks_in_4264_page12.bottom_px{bottom:0px}.target_stacks_in_4264_page12.right_pt{right:0%}.target_stacks_in_4264_page12.right_px{right:0px}.target_stacks_in_4264_page12.left_pt{left:0%}.target_stacks_in_4264_page12.left_px{left:0px} 

#stacks_in_4265_page12 img{max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;          }
 #stacks_in_4269_page12 {font-size:35px}@media screen and (max-width:770px){#stacks_in_4269_page12 {font-size:35px}}@media screen and (max-width:600px){#stacks_in_4269_page12 {font-size:30px}}@media screen and (max-width:500px){#stacks_in_4269_page12 {font-size:25px}}@media screen and (max-width:320px){#stacks_in_4269_page12 {font-size:20px}}
                 @media only screen and (min-width:0px){#stacks_in_4270_page12{ }} 

#stacks_in_4271_page12 {
	display:inline-block; width:100%; line-height: 1.200000em;
}
                 @media only screen and (min-width:0px){#stacks_in_4274_page12{ }} 

#stacks_in_4274_page12 {
	margin: 0px 20px 0px 0px;
}
    #stacks_in_3668_page12>.shear-mag{position:absolute;top:0rem} #stacks_in_3668_page12>.s-pro.no-vault-z>.shear-wrapper>.shear-inner.o-bg-vault>.inner-content{z-index:1}  #stacks_in_3668_page12>.s-pro>.sections-layer{display:none}      #stacks_in_3668_page12>.s-pro>.shear-wrapper>.shear-inner::after,#stacks_in_3668_page12>.s-pro>.shear-wrapper>.shear-inner::before{margin-top:0.00%}       
#stacks_in_3085_page12 *, #stacks_in_3085_page12 *:after, #stacks_in_3085_page12 *:before { 
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	box-sizing: border-box; }

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

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

#stacks_in_3085_page12  {
}

#stacks_in_3085_page12 .timeline_item {
	position: relative;
}

#stacks_in_3085_page12 ul.cbp_tmtimeline {
	margin: 0;
}

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

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

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

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

/* The line */
#stacks_in_3085_page12 .cbp_tmtimeline:before {
	content: '';
	position: absolute;
	top: 1px;
	bottom: 0;
	width: 10px;
	
	

		
			background: #000000;
		

	

	
	
	
		left: 30%;
	
	
	
	

	margin-left: -10px;
}

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

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

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

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

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

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


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

/* The icons */
#stacks_in_3085_page12 .cbp_tmtimeline li .cbp_tmicon {
	width: 40px;
	height: 40px;
	font-family: 'ecoico';
	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;
		background: #BF2124;
		box-shadow: 0 0 0 8px #000000; /* Border of icon */
	
	border-radius: 50%;
	text-align: center;
	top: 8px;

	
	
	
		left: 30%;
	
	
	
	

	margin: 0 0 0 -25px;

	
}

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



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

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

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

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

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

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

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


	

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

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

	


}




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


                 @media only screen and (min-width:0px){#stacks_in_3088_page12{ }} 




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


                 @media only screen and (min-width:0px){#stacks_in_3094_page12{ }} 




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


                 @media only screen and (min-width:0px){#stacks_in_3100_page12{ }} 




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


                 @media only screen and (min-width:0px){#stacks_in_3106_page12{ }} 




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


                 @media only screen and (min-width:0px){#stacks_in_3112_page12{ }} 


.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_1201_page12 {
	height: 40px;
}









#stacks_in_3263_page12 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_3263_page12 .jwresp_col{float:none} #stacks_in_3263_page12 #jwresp_col2_stacks_in_3263_page12{position:relative;margin:0 auto;width:58%;float:none}#stacks_in_3263_page12 #jwresp_col1_stacks_in_3263_page12,#stacks_in_3263_page12 #jwresp_col3_stacks_in_3263_page12{width:19%}#stacks_in_3263_page12 #jwresp_col1_stacks_in_3263_page12{float:left}#stacks_in_3263_page12 #jwresp_col3_stacks_in_3263_page12{float:right} @media screen and (max-width:770px){#stacks_in_3263_page12 #jwresp_col1_stacks_in_3263_page12,#stacks_in_3263_page12 #jwresp_col3_stacks_in_3263_page12{margin-bottom:20px}#stacks_in_3263_page12 #jwresp_col1_stacks_in_3263_page12{width:49%}#stacks_in_3263_page12 #jwresp_col3_stacks_in_3263_page12{width:49%}#stacks_in_3263_page12 #jwresp_col2_stacks_in_3263_page12{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_3263_page12 #jwresp_col1_stacks_in_3263_page12,#stacks_in_3263_page12 #jwresp_col3_stacks_in_3263_page12,#stacks_in_3263_page12 #jwresp_col2_stacks_in_3263_page12{float:none;width:100%;display:block}#stacks_in_3263_page12 #jwresp_col1_stacks_in_3263_page12,#stacks_in_3263_page12 #jwresp_col3_stacks_in_3263_page12{margin-bottom:20px}} 
#stacks_in_3266_page12 img{max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;          }
               #stacks_in_3272_page12,#stacks_in_3272_page12 div,#stacks_in_3272_page12 p,#stacks_in_3272_page12 ol,#stacks_in_3272_page12 ul li,#stacks_in_3272_page12 ol li,#stacks_in_3272_page12 ol,#stacks_in_3272_page12 dl{font-size:1.50rem}@media all and (max-width:640px){#stacks_in_3272_page12,#stacks_in_3272_page12 div,#stacks_in_3272_page12 p,#stacks_in_3272_page12 ol,#stacks_in_3272_page12 ul li,#stacks_in_3272_page12 ol li,#stacks_in_3272_page12 ol,#stacks_in_3272_page12 dl{font-size:1.30rem}}   @media only screen and (min-width:0px){#stacks_in_3272_page12{ }} 


.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_1208_page12 {
	height: 40px;
}









#stacks_in_2519_page12 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_2519_page12 .jwresp_col{float:none} #stacks_in_2519_page12 #jwresp_col2_stacks_in_2519_page12{position:relative;margin:0 auto;width:58%;float:none}#stacks_in_2519_page12 #jwresp_col1_stacks_in_2519_page12,#stacks_in_2519_page12 #jwresp_col3_stacks_in_2519_page12{width:19%}#stacks_in_2519_page12 #jwresp_col1_stacks_in_2519_page12{float:left}#stacks_in_2519_page12 #jwresp_col3_stacks_in_2519_page12{float:right} @media screen and (max-width:770px){#stacks_in_2519_page12 #jwresp_col1_stacks_in_2519_page12,#stacks_in_2519_page12 #jwresp_col3_stacks_in_2519_page12{margin-bottom:20px}#stacks_in_2519_page12 #jwresp_col1_stacks_in_2519_page12{width:49%}#stacks_in_2519_page12 #jwresp_col3_stacks_in_2519_page12{width:49%}#stacks_in_2519_page12 #jwresp_col2_stacks_in_2519_page12{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_2519_page12 #jwresp_col1_stacks_in_2519_page12,#stacks_in_2519_page12 #jwresp_col3_stacks_in_2519_page12,#stacks_in_2519_page12 #jwresp_col2_stacks_in_2519_page12{float:none;width:100%;display:block}#stacks_in_2519_page12 #jwresp_col1_stacks_in_2519_page12,#stacks_in_2519_page12 #jwresp_col3_stacks_in_2519_page12{margin-bottom:20px}} 

#stacks_in_4891_page12 {
	background-color: rgba(0, 0, 0, 0.80);
	padding:  20px;
}

#stacks_in_4893_page12 {
	font-size: 200%;
}
                 @media only screen and (min-width:0px){#stacks_in_4894_page12{ }} 
#hoverBoxWrapperstacks_in_4898_page12 {
	height: auto;
	min-height: 0px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
}

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

#hoverBoxStaticstacks_in_4898_page12 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

.static-bg0stacks_in_4898_page12 {
	background: transparent;
}

.static-bg1stacks_in_4898_page12 {
	background: #333333;
}

.static-bg2stacks_in_4898_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.static-bg4stacks_in_4898_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_4898_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxRolloverstacks_in_4898_page12 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	
	-moz-transition: opacity 100ms linear;
	-webkit-transition: opacity 100ms linear;
	transition: opacity 100ms linear;
}

.hover-bg0stacks_in_4898_page12 {
	background: transparent;
}

.hover-bg1stacks_in_4898_page12 {
	background: #333333;
}

.hover-bg2stacks_in_4898_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.hover-bg4stacks_in_4898_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.hover-bg5stacks_in_4898_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxLinkstacks_in_4898_page12 a:link,
#hoverBoxLinkstacks_in_4898_page12 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../index_files/bg_fill.gif) repeat;
}

/* Where the magic happens */

#hoverBoxWrapperstacks_in_4898_page12:hover #hoverBoxRolloverstacks_in_4898_page12 {
	opacity: 0.99;
}
#stacks_in_4899_page12 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_4899_page12 .jwresp_col{float:none} #stacks_in_4899_page12 #jwresp_col2_stacks_in_4899_page12{position:relative;margin:0 auto;width:78%;float:none}#stacks_in_4899_page12 #jwresp_col1_stacks_in_4899_page12,#stacks_in_4899_page12 #jwresp_col3_stacks_in_4899_page12{width:9%}#stacks_in_4899_page12 #jwresp_col1_stacks_in_4899_page12{float:left}#stacks_in_4899_page12 #jwresp_col3_stacks_in_4899_page12{float:right} @media screen and (max-width:770px){#stacks_in_4899_page12 #jwresp_col1_stacks_in_4899_page12,#stacks_in_4899_page12 #jwresp_col3_stacks_in_4899_page12{margin-bottom:20px}#stacks_in_4899_page12 #jwresp_col1_stacks_in_4899_page12{width:49%}#stacks_in_4899_page12 #jwresp_col3_stacks_in_4899_page12{width:49%}#stacks_in_4899_page12 #jwresp_col2_stacks_in_4899_page12{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_4899_page12 #jwresp_col1_stacks_in_4899_page12,#stacks_in_4899_page12 #jwresp_col3_stacks_in_4899_page12,#stacks_in_4899_page12 #jwresp_col2_stacks_in_4899_page12{float:none;width:100%;display:block}#stacks_in_4899_page12 #jwresp_col1_stacks_in_4899_page12,#stacks_in_4899_page12 #jwresp_col3_stacks_in_4899_page12{margin-bottom:20px}} 

#stacks_in_4902_page12 {
	margin:  10px;
	padding:  15px;
}

#stacks_in_4903_page12 {
	background-color: rgba(191, 33, 36, 1.00);
	border: solid rgba(191, 33, 36, 1.00);
	border-width:  3px;
}
#stacks_in_4908_page12 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_4908_page12 .jwresp_col{float:none} #stacks_in_4908_page12 #jwresp_col2_stacks_in_4908_page12{position:relative;margin:0 auto;width:78%;float:none}#stacks_in_4908_page12 #jwresp_col1_stacks_in_4908_page12,#stacks_in_4908_page12 #jwresp_col3_stacks_in_4908_page12{width:9%}#stacks_in_4908_page12 #jwresp_col1_stacks_in_4908_page12{float:left}#stacks_in_4908_page12 #jwresp_col3_stacks_in_4908_page12{float:right} @media screen and (max-width:770px){#stacks_in_4908_page12 #jwresp_col1_stacks_in_4908_page12,#stacks_in_4908_page12 #jwresp_col3_stacks_in_4908_page12{margin-bottom:20px}#stacks_in_4908_page12 #jwresp_col1_stacks_in_4908_page12{width:49%}#stacks_in_4908_page12 #jwresp_col3_stacks_in_4908_page12{width:49%}#stacks_in_4908_page12 #jwresp_col2_stacks_in_4908_page12{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_4908_page12 #jwresp_col1_stacks_in_4908_page12,#stacks_in_4908_page12 #jwresp_col3_stacks_in_4908_page12,#stacks_in_4908_page12 #jwresp_col2_stacks_in_4908_page12{float:none;width:100%;display:block}#stacks_in_4908_page12 #jwresp_col1_stacks_in_4908_page12,#stacks_in_4908_page12 #jwresp_col3_stacks_in_4908_page12{margin-bottom:20px}} 

#stacks_in_4911_page12 {
	margin:  10px;
	padding:  15px;
}

#stacks_in_4912_page12 {
	background-color: rgba(191, 33, 36, 1.00);
	border: solid rgba(191, 33, 36, 1.00);
	border-width:  3px;
}


.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_1264_page12 {
	height: 40px;
}









    #stacks_in_3276_page12>.shear-mag{position:absolute;top:0rem} #stacks_in_3276_page12>.s-pro.no-vault-z>.shear-wrapper>.shear-inner.o-bg-vault>.inner-content{z-index:1}  #stacks_in_3276_page12>.s-pro>.sections-layer{display:none}      #stacks_in_3276_page12>.s-pro>.shear-wrapper>.shear-inner::after,#stacks_in_3276_page12>.s-pro>.shear-wrapper>.shear-inner::before{margin-top:0.00%}       


.spacerStack {
	height: 100px;
}

#spacerStackstacks_in_3277_page12 {
	height: 100px;
}









#stacks_in_4659_page12 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_4659_page12 .jwresp_col{float:none} #stacks_in_4659_page12 #jwresp_col2_stacks_in_4659_page12{position:relative;margin:0 auto;width:32%;float:none}#stacks_in_4659_page12 #jwresp_col1_stacks_in_4659_page12,#stacks_in_4659_page12 #jwresp_col3_stacks_in_4659_page12{width:32%}#stacks_in_4659_page12 #jwresp_col1_stacks_in_4659_page12{float:left}#stacks_in_4659_page12 #jwresp_col3_stacks_in_4659_page12{float:right} @media screen and (max-width:1030px){#stacks_in_4659_page12 #jwresp_col1_stacks_in_4659_page12,#stacks_in_4659_page12 #jwresp_col3_stacks_in_4659_page12{margin-bottom:20px}#stacks_in_4659_page12 #jwresp_col1_stacks_in_4659_page12{width:49%}#stacks_in_4659_page12 #jwresp_col3_stacks_in_4659_page12{width:49%}#stacks_in_4659_page12 #jwresp_col2_stacks_in_4659_page12{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_4659_page12 #jwresp_col1_stacks_in_4659_page12,#stacks_in_4659_page12 #jwresp_col3_stacks_in_4659_page12,#stacks_in_4659_page12 #jwresp_col2_stacks_in_4659_page12{float:none;width:100%;display:block}#stacks_in_4659_page12 #jwresp_col1_stacks_in_4659_page12,#stacks_in_4659_page12 #jwresp_col3_stacks_in_4659_page12{margin-bottom:20px}} 

#stacks_in_4659_page12 {
	margin:  20px;
}
    #stacks_in_4660_page12>.shear-mag{position:absolute;top:0rem} #stacks_in_4660_page12>.s-pro.no-vault-z>.shear-wrapper>.shear-inner.o-bg-vault>.inner-content{z-index:1}  #stacks_in_4660_page12>.s-pro>.sections-layer{display:none}      #stacks_in_4660_page12>.s-pro>.shear-wrapper>.shear-inner::after,#stacks_in_4660_page12>.s-pro>.shear-wrapper>.shear-inner::before{margin-top:0.00%}       
#hoverBoxWrapperstacks_in_4664_page12 {
	height: auto;
	min-height: 0px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
}

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

#hoverBoxStaticstacks_in_4664_page12 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

.static-bg0stacks_in_4664_page12 {
	background: transparent;
}

.static-bg1stacks_in_4664_page12 {
	background: #333333;
}

.static-bg2stacks_in_4664_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.static-bg4stacks_in_4664_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_4664_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxRolloverstacks_in_4664_page12 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

.hover-bg0stacks_in_4664_page12 {
	background: transparent;
}

.hover-bg1stacks_in_4664_page12 {
	background: #333333;
}

.hover-bg2stacks_in_4664_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.hover-bg4stacks_in_4664_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.hover-bg5stacks_in_4664_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxLinkstacks_in_4664_page12 a:link,
#hoverBoxLinkstacks_in_4664_page12 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../index_files/bg_fill.gif) repeat;
}

/* Where the magic happens */

#hoverBoxWrapperstacks_in_4664_page12:hover #hoverBoxRolloverstacks_in_4664_page12 {
	opacity: 0.99;
}
#shadyStackstacks_in_4665_page12 {
	-webkit-box-shadow:  0px 0px 8px 2px rgba(153, 153, 153, 1.00);
	box-shadow:  0px 0px 8px 2px rgba(153, 153, 153, 1.00);
	border-radius: 0px;
}




#shadyStackstacks_in_4665_page12 {
	margin: 15px;
}


@media print {
	#shadyStackstacks_in_4665_page12 {
		margin: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
		border-radius: 0px;
	}
}
#stacks_in_4666_page12 {
	background-color: rgba(204, 204, 204, 1.00);
	padding:  20px;
}

#stacks_in_4667_page12 {
	margin: 0px 0px 20px 0px;
}
 #stacks_in_4669_page12,#stacks_in_4669_page12 .stacks_out,#stacks_in_4669_page12 .stacks_in{overflow:visible}#stacks_in_4669_page12{padding:.15em 0}

#stacks_in_4671_page12 {
	display:inline-block; width:100%; line-height: 1.200000em;
}

#stacks_in_4674_page12 {
	display:inline-block; width:100%; line-height: 1.200000em;
	font-size: 200%;
}
                 @media only screen and (min-width:0px){#stacks_in_4675_page12{ }} 
#hoverBoxWrapperstacks_in_4678_page12 {
	height: auto;
	min-height: 0px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
}

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

#hoverBoxStaticstacks_in_4678_page12 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

.static-bg0stacks_in_4678_page12 {
	background: transparent;
}

.static-bg1stacks_in_4678_page12 {
	background: #333333;
}

.static-bg2stacks_in_4678_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.static-bg4stacks_in_4678_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_4678_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxRolloverstacks_in_4678_page12 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	
	-moz-transition: opacity 100ms linear;
	-webkit-transition: opacity 100ms linear;
	transition: opacity 100ms linear;
}

.hover-bg0stacks_in_4678_page12 {
	background: transparent;
}

.hover-bg1stacks_in_4678_page12 {
	background: #333333;
}

.hover-bg2stacks_in_4678_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.hover-bg4stacks_in_4678_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.hover-bg5stacks_in_4678_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxLinkstacks_in_4678_page12 a:link,
#hoverBoxLinkstacks_in_4678_page12 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../index_files/bg_fill.gif) repeat;
}

/* Where the magic happens */

#hoverBoxWrapperstacks_in_4678_page12:hover #hoverBoxRolloverstacks_in_4678_page12 {
	opacity: 0.99;
}
#stacks_in_4679_page12 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_4679_page12 .jwresp_col{float:none} #stacks_in_4679_page12 #jwresp_col2_stacks_in_4679_page12{position:relative;margin:0 auto;width:78%;float:none}#stacks_in_4679_page12 #jwresp_col1_stacks_in_4679_page12,#stacks_in_4679_page12 #jwresp_col3_stacks_in_4679_page12{width:9%}#stacks_in_4679_page12 #jwresp_col1_stacks_in_4679_page12{float:left}#stacks_in_4679_page12 #jwresp_col3_stacks_in_4679_page12{float:right} @media screen and (max-width:770px){#stacks_in_4679_page12 #jwresp_col1_stacks_in_4679_page12,#stacks_in_4679_page12 #jwresp_col3_stacks_in_4679_page12{margin-bottom:20px}#stacks_in_4679_page12 #jwresp_col1_stacks_in_4679_page12{width:49%}#stacks_in_4679_page12 #jwresp_col3_stacks_in_4679_page12{width:49%}#stacks_in_4679_page12 #jwresp_col2_stacks_in_4679_page12{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_4679_page12 #jwresp_col1_stacks_in_4679_page12,#stacks_in_4679_page12 #jwresp_col3_stacks_in_4679_page12,#stacks_in_4679_page12 #jwresp_col2_stacks_in_4679_page12{float:none;width:100%;display:block}#stacks_in_4679_page12 #jwresp_col1_stacks_in_4679_page12,#stacks_in_4679_page12 #jwresp_col3_stacks_in_4679_page12{margin-bottom:20px}} 

#stacks_in_4682_page12 {
	margin: 10px 10px 10px 10px;
	padding:  15px;
}

#stacks_in_4683_page12 {
	background-color: rgba(0, 0, 0, 1.00);
	border: solid rgba(0, 0, 0, 1.00);
	border-width:  3px;
}
#stacks_in_4688_page12 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_4688_page12 .jwresp_col{float:none} #stacks_in_4688_page12 #jwresp_col2_stacks_in_4688_page12{position:relative;margin:0 auto;width:78%;float:none}#stacks_in_4688_page12 #jwresp_col1_stacks_in_4688_page12,#stacks_in_4688_page12 #jwresp_col3_stacks_in_4688_page12{width:9%}#stacks_in_4688_page12 #jwresp_col1_stacks_in_4688_page12{float:left}#stacks_in_4688_page12 #jwresp_col3_stacks_in_4688_page12{float:right} @media screen and (max-width:770px){#stacks_in_4688_page12 #jwresp_col1_stacks_in_4688_page12,#stacks_in_4688_page12 #jwresp_col3_stacks_in_4688_page12{margin-bottom:20px}#stacks_in_4688_page12 #jwresp_col1_stacks_in_4688_page12{width:49%}#stacks_in_4688_page12 #jwresp_col3_stacks_in_4688_page12{width:49%}#stacks_in_4688_page12 #jwresp_col2_stacks_in_4688_page12{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_4688_page12 #jwresp_col1_stacks_in_4688_page12,#stacks_in_4688_page12 #jwresp_col3_stacks_in_4688_page12,#stacks_in_4688_page12 #jwresp_col2_stacks_in_4688_page12{float:none;width:100%;display:block}#stacks_in_4688_page12 #jwresp_col1_stacks_in_4688_page12,#stacks_in_4688_page12 #jwresp_col3_stacks_in_4688_page12{margin-bottom:20px}} 

#stacks_in_4691_page12 {
	margin:  10px;
	padding:  15px;
}

#stacks_in_4692_page12 {
	background-color: rgba(0, 0, 0, 1.00);
	border: solid rgba(0, 0, 0, 1.00);
	border-width:  3px;
}
#shadyStackstacks_in_4700_page12 {
	-webkit-box-shadow:  0px 0px 13px 5px rgba(153, 153, 153, 1.00);
	box-shadow:  0px 0px 13px 5px rgba(153, 153, 153, 1.00);
	border-radius: 0px;
}




#shadyStackstacks_in_4700_page12 {
	margin: 15px;
}


@media print {
	#shadyStackstacks_in_4700_page12 {
		margin: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
		border-radius: 0px;
	}
}
#stacks_in_4701_page12 {
	background-color: rgba(204, 204, 204, 1.00);
	padding:  20px;
}

#stacks_in_4702_page12 {
	margin: 0px 0px 20px 0px;
}
 #stacks_in_4704_page12,#stacks_in_4704_page12 .stacks_out,#stacks_in_4704_page12 .stacks_in{overflow:visible}#stacks_in_4704_page12{padding:.15em 0}

#stacks_in_4706_page12 {
	display:inline-block; width:100%; line-height: 1.200000em;
}

#stacks_in_4709_page12 {
	display:inline-block; width:100%; line-height: 1.200000em;
	font-size: 200%;
}
                 @media only screen and (min-width:0px){#stacks_in_4710_page12{ }} 
#hoverBoxWrapperstacks_in_4713_page12 {
	height: auto;
	min-height: 0px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
}

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

#hoverBoxStaticstacks_in_4713_page12 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

.static-bg0stacks_in_4713_page12 {
	background: transparent;
}

.static-bg1stacks_in_4713_page12 {
	background: #333333;
}

.static-bg2stacks_in_4713_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.static-bg4stacks_in_4713_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_4713_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxRolloverstacks_in_4713_page12 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	
	-moz-transition: opacity 100ms linear;
	-webkit-transition: opacity 100ms linear;
	transition: opacity 100ms linear;
}

.hover-bg0stacks_in_4713_page12 {
	background: transparent;
}

.hover-bg1stacks_in_4713_page12 {
	background: #333333;
}

.hover-bg2stacks_in_4713_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.hover-bg4stacks_in_4713_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.hover-bg5stacks_in_4713_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxLinkstacks_in_4713_page12 a:link,
#hoverBoxLinkstacks_in_4713_page12 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../index_files/bg_fill.gif) repeat;
}

/* Where the magic happens */

#hoverBoxWrapperstacks_in_4713_page12:hover #hoverBoxRolloverstacks_in_4713_page12 {
	opacity: 0.99;
}
#stacks_in_4714_page12 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_4714_page12 .jwresp_col{float:none} #stacks_in_4714_page12 #jwresp_col2_stacks_in_4714_page12{position:relative;margin:0 auto;width:78%;float:none}#stacks_in_4714_page12 #jwresp_col1_stacks_in_4714_page12,#stacks_in_4714_page12 #jwresp_col3_stacks_in_4714_page12{width:9%}#stacks_in_4714_page12 #jwresp_col1_stacks_in_4714_page12{float:left}#stacks_in_4714_page12 #jwresp_col3_stacks_in_4714_page12{float:right} @media screen and (max-width:770px){#stacks_in_4714_page12 #jwresp_col1_stacks_in_4714_page12,#stacks_in_4714_page12 #jwresp_col3_stacks_in_4714_page12{margin-bottom:20px}#stacks_in_4714_page12 #jwresp_col1_stacks_in_4714_page12{width:49%}#stacks_in_4714_page12 #jwresp_col3_stacks_in_4714_page12{width:49%}#stacks_in_4714_page12 #jwresp_col2_stacks_in_4714_page12{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_4714_page12 #jwresp_col1_stacks_in_4714_page12,#stacks_in_4714_page12 #jwresp_col3_stacks_in_4714_page12,#stacks_in_4714_page12 #jwresp_col2_stacks_in_4714_page12{float:none;width:100%;display:block}#stacks_in_4714_page12 #jwresp_col1_stacks_in_4714_page12,#stacks_in_4714_page12 #jwresp_col3_stacks_in_4714_page12{margin-bottom:20px}} 

#stacks_in_4717_page12 {
	margin: 10px 10px 10px 10px;
	padding:  15px;
}

#stacks_in_4718_page12 {
	background-color: rgba(0, 0, 0, 1.00);
	border: solid rgba(0, 0, 0, 1.00);
	border-width:  3px;
}
#stacks_in_4723_page12 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_4723_page12 .jwresp_col{float:none} #stacks_in_4723_page12 #jwresp_col2_stacks_in_4723_page12{position:relative;margin:0 auto;width:78%;float:none}#stacks_in_4723_page12 #jwresp_col1_stacks_in_4723_page12,#stacks_in_4723_page12 #jwresp_col3_stacks_in_4723_page12{width:9%}#stacks_in_4723_page12 #jwresp_col1_stacks_in_4723_page12{float:left}#stacks_in_4723_page12 #jwresp_col3_stacks_in_4723_page12{float:right} @media screen and (max-width:770px){#stacks_in_4723_page12 #jwresp_col1_stacks_in_4723_page12,#stacks_in_4723_page12 #jwresp_col3_stacks_in_4723_page12{margin-bottom:20px}#stacks_in_4723_page12 #jwresp_col1_stacks_in_4723_page12{width:49%}#stacks_in_4723_page12 #jwresp_col3_stacks_in_4723_page12{width:49%}#stacks_in_4723_page12 #jwresp_col2_stacks_in_4723_page12{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_4723_page12 #jwresp_col1_stacks_in_4723_page12,#stacks_in_4723_page12 #jwresp_col3_stacks_in_4723_page12,#stacks_in_4723_page12 #jwresp_col2_stacks_in_4723_page12{float:none;width:100%;display:block}#stacks_in_4723_page12 #jwresp_col1_stacks_in_4723_page12,#stacks_in_4723_page12 #jwresp_col3_stacks_in_4723_page12{margin-bottom:20px}} 

#stacks_in_4726_page12 {
	margin:  10px;
	padding:  15px;
}

#stacks_in_4727_page12 {
	background-color: rgba(0, 0, 0, 1.00);
	border: solid rgba(0, 0, 0, 1.00);
	border-width:  3px;
}
    #stacks_in_4737_page12>.shear-mag{position:absolute;top:0rem} #stacks_in_4737_page12>.s-pro.no-vault-z>.shear-wrapper>.shear-inner.o-bg-vault>.inner-content{z-index:1}  #stacks_in_4737_page12>.s-pro>.sections-layer{display:none}      #stacks_in_4737_page12>.s-pro>.shear-wrapper>.shear-inner::after,#stacks_in_4737_page12>.s-pro>.shear-wrapper>.shear-inner::before{margin-top:0.00%}       
#hoverBoxWrapperstacks_in_4741_page12 {
	height: auto;
	min-height: 0px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
}

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

#hoverBoxStaticstacks_in_4741_page12 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

.static-bg0stacks_in_4741_page12 {
	background: transparent;
}

.static-bg1stacks_in_4741_page12 {
	background: #333333;
}

.static-bg2stacks_in_4741_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.static-bg4stacks_in_4741_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_4741_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxRolloverstacks_in_4741_page12 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

.hover-bg0stacks_in_4741_page12 {
	background: transparent;
}

.hover-bg1stacks_in_4741_page12 {
	background: #333333;
}

.hover-bg2stacks_in_4741_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.hover-bg4stacks_in_4741_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.hover-bg5stacks_in_4741_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxLinkstacks_in_4741_page12 a:link,
#hoverBoxLinkstacks_in_4741_page12 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../index_files/bg_fill.gif) repeat;
}

/* Where the magic happens */

#hoverBoxWrapperstacks_in_4741_page12:hover #hoverBoxRolloverstacks_in_4741_page12 {
	opacity: 0.99;
}
#shadyStackstacks_in_4742_page12 {
	-webkit-box-shadow:  0px 0px 8px 2px rgba(153, 153, 153, 1.00);
	box-shadow:  0px 0px 8px 2px rgba(153, 153, 153, 1.00);
	border-radius: 0px;
}




#shadyStackstacks_in_4742_page12 {
	margin: 15px;
}


@media print {
	#shadyStackstacks_in_4742_page12 {
		margin: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
		border-radius: 0px;
	}
}
#stacks_in_4743_page12 {
	background-color: rgba(204, 204, 204, 1.00);
	padding:  20px;
}

#stacks_in_4744_page12 {
	margin: 0px 0px 20px 0px;
}
 #stacks_in_4746_page12,#stacks_in_4746_page12 .stacks_out,#stacks_in_4746_page12 .stacks_in{overflow:visible}#stacks_in_4746_page12{padding:.15em 0}

#stacks_in_4748_page12 {
	display:inline-block; width:100%; line-height: 1.200000em;
}

#stacks_in_4751_page12 {
	display:inline-block; width:100%; line-height: 1.200000em;
	font-size: 200%;
}
                 @media only screen and (min-width:0px){#stacks_in_4752_page12{ }} 
#hoverBoxWrapperstacks_in_4755_page12 {
	height: auto;
	min-height: 0px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
}

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

#hoverBoxStaticstacks_in_4755_page12 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

.static-bg0stacks_in_4755_page12 {
	background: transparent;
}

.static-bg1stacks_in_4755_page12 {
	background: #333333;
}

.static-bg2stacks_in_4755_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.static-bg4stacks_in_4755_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_4755_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxRolloverstacks_in_4755_page12 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	
	-moz-transition: opacity 100ms linear;
	-webkit-transition: opacity 100ms linear;
	transition: opacity 100ms linear;
}

.hover-bg0stacks_in_4755_page12 {
	background: transparent;
}

.hover-bg1stacks_in_4755_page12 {
	background: #333333;
}

.hover-bg2stacks_in_4755_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.hover-bg4stacks_in_4755_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.hover-bg5stacks_in_4755_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxLinkstacks_in_4755_page12 a:link,
#hoverBoxLinkstacks_in_4755_page12 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../index_files/bg_fill.gif) repeat;
}

/* Where the magic happens */

#hoverBoxWrapperstacks_in_4755_page12:hover #hoverBoxRolloverstacks_in_4755_page12 {
	opacity: 0.99;
}
#stacks_in_4756_page12 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_4756_page12 .jwresp_col{float:none} #stacks_in_4756_page12 #jwresp_col2_stacks_in_4756_page12{position:relative;margin:0 auto;width:78%;float:none}#stacks_in_4756_page12 #jwresp_col1_stacks_in_4756_page12,#stacks_in_4756_page12 #jwresp_col3_stacks_in_4756_page12{width:9%}#stacks_in_4756_page12 #jwresp_col1_stacks_in_4756_page12{float:left}#stacks_in_4756_page12 #jwresp_col3_stacks_in_4756_page12{float:right} @media screen and (max-width:770px){#stacks_in_4756_page12 #jwresp_col1_stacks_in_4756_page12,#stacks_in_4756_page12 #jwresp_col3_stacks_in_4756_page12{margin-bottom:20px}#stacks_in_4756_page12 #jwresp_col1_stacks_in_4756_page12{width:49%}#stacks_in_4756_page12 #jwresp_col3_stacks_in_4756_page12{width:49%}#stacks_in_4756_page12 #jwresp_col2_stacks_in_4756_page12{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_4756_page12 #jwresp_col1_stacks_in_4756_page12,#stacks_in_4756_page12 #jwresp_col3_stacks_in_4756_page12,#stacks_in_4756_page12 #jwresp_col2_stacks_in_4756_page12{float:none;width:100%;display:block}#stacks_in_4756_page12 #jwresp_col1_stacks_in_4756_page12,#stacks_in_4756_page12 #jwresp_col3_stacks_in_4756_page12{margin-bottom:20px}} 

#stacks_in_4759_page12 {
	margin: 10px 10px 10px 10px;
	padding:  15px;
}

#stacks_in_4760_page12 {
	background-color: rgba(0, 0, 0, 1.00);
	border: solid rgba(0, 0, 0, 1.00);
	border-width:  3px;
}
#stacks_in_4765_page12 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_4765_page12 .jwresp_col{float:none} #stacks_in_4765_page12 #jwresp_col2_stacks_in_4765_page12{position:relative;margin:0 auto;width:78%;float:none}#stacks_in_4765_page12 #jwresp_col1_stacks_in_4765_page12,#stacks_in_4765_page12 #jwresp_col3_stacks_in_4765_page12{width:9%}#stacks_in_4765_page12 #jwresp_col1_stacks_in_4765_page12{float:left}#stacks_in_4765_page12 #jwresp_col3_stacks_in_4765_page12{float:right} @media screen and (max-width:770px){#stacks_in_4765_page12 #jwresp_col1_stacks_in_4765_page12,#stacks_in_4765_page12 #jwresp_col3_stacks_in_4765_page12{margin-bottom:20px}#stacks_in_4765_page12 #jwresp_col1_stacks_in_4765_page12{width:49%}#stacks_in_4765_page12 #jwresp_col3_stacks_in_4765_page12{width:49%}#stacks_in_4765_page12 #jwresp_col2_stacks_in_4765_page12{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_4765_page12 #jwresp_col1_stacks_in_4765_page12,#stacks_in_4765_page12 #jwresp_col3_stacks_in_4765_page12,#stacks_in_4765_page12 #jwresp_col2_stacks_in_4765_page12{float:none;width:100%;display:block}#stacks_in_4765_page12 #jwresp_col1_stacks_in_4765_page12,#stacks_in_4765_page12 #jwresp_col3_stacks_in_4765_page12{margin-bottom:20px}} 

#stacks_in_4768_page12 {
	margin:  10px;
	padding:  15px;
}

#stacks_in_4769_page12 {
	background-color: rgba(0, 0, 0, 1.00);
	border: solid rgba(0, 0, 0, 1.00);
	border-width:  3px;
}
#shadyStackstacks_in_4777_page12 {
	-webkit-box-shadow:  0px 0px 13px 5px rgba(153, 153, 153, 1.00);
	box-shadow:  0px 0px 13px 5px rgba(153, 153, 153, 1.00);
	border-radius: 0px;
}




#shadyStackstacks_in_4777_page12 {
	margin: 15px;
}


@media print {
	#shadyStackstacks_in_4777_page12 {
		margin: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
		border-radius: 0px;
	}
}
#stacks_in_4778_page12 {
	background-color: rgba(204, 204, 204, 1.00);
	padding:  20px;
}

#stacks_in_4779_page12 {
	margin: 0px 0px 20px 0px;
}
 #stacks_in_4781_page12,#stacks_in_4781_page12 .stacks_out,#stacks_in_4781_page12 .stacks_in{overflow:visible}#stacks_in_4781_page12{padding:.15em 0}

#stacks_in_4783_page12 {
	display:inline-block; width:100%; line-height: 1.200000em;
}

#stacks_in_4786_page12 {
	display:inline-block; width:100%; line-height: 1.200000em;
	font-size: 200%;
}
                 @media only screen and (min-width:0px){#stacks_in_4787_page12{ }} 
#hoverBoxWrapperstacks_in_4790_page12 {
	height: auto;
	min-height: 0px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
}

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

#hoverBoxStaticstacks_in_4790_page12 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

.static-bg0stacks_in_4790_page12 {
	background: transparent;
}

.static-bg1stacks_in_4790_page12 {
	background: #333333;
}

.static-bg2stacks_in_4790_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.static-bg4stacks_in_4790_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_4790_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxRolloverstacks_in_4790_page12 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	
	-moz-transition: opacity 100ms linear;
	-webkit-transition: opacity 100ms linear;
	transition: opacity 100ms linear;
}

.hover-bg0stacks_in_4790_page12 {
	background: transparent;
}

.hover-bg1stacks_in_4790_page12 {
	background: #333333;
}

.hover-bg2stacks_in_4790_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.hover-bg4stacks_in_4790_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.hover-bg5stacks_in_4790_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxLinkstacks_in_4790_page12 a:link,
#hoverBoxLinkstacks_in_4790_page12 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../index_files/bg_fill.gif) repeat;
}

/* Where the magic happens */

#hoverBoxWrapperstacks_in_4790_page12:hover #hoverBoxRolloverstacks_in_4790_page12 {
	opacity: 0.99;
}
#stacks_in_4791_page12 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_4791_page12 .jwresp_col{float:none} #stacks_in_4791_page12 #jwresp_col2_stacks_in_4791_page12{position:relative;margin:0 auto;width:78%;float:none}#stacks_in_4791_page12 #jwresp_col1_stacks_in_4791_page12,#stacks_in_4791_page12 #jwresp_col3_stacks_in_4791_page12{width:9%}#stacks_in_4791_page12 #jwresp_col1_stacks_in_4791_page12{float:left}#stacks_in_4791_page12 #jwresp_col3_stacks_in_4791_page12{float:right} @media screen and (max-width:770px){#stacks_in_4791_page12 #jwresp_col1_stacks_in_4791_page12,#stacks_in_4791_page12 #jwresp_col3_stacks_in_4791_page12{margin-bottom:20px}#stacks_in_4791_page12 #jwresp_col1_stacks_in_4791_page12{width:49%}#stacks_in_4791_page12 #jwresp_col3_stacks_in_4791_page12{width:49%}#stacks_in_4791_page12 #jwresp_col2_stacks_in_4791_page12{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_4791_page12 #jwresp_col1_stacks_in_4791_page12,#stacks_in_4791_page12 #jwresp_col3_stacks_in_4791_page12,#stacks_in_4791_page12 #jwresp_col2_stacks_in_4791_page12{float:none;width:100%;display:block}#stacks_in_4791_page12 #jwresp_col1_stacks_in_4791_page12,#stacks_in_4791_page12 #jwresp_col3_stacks_in_4791_page12{margin-bottom:20px}} 

#stacks_in_4794_page12 {
	margin: 10px 10px 10px 10px;
	padding:  15px;
}

#stacks_in_4795_page12 {
	background-color: rgba(0, 0, 0, 1.00);
	border: solid rgba(0, 0, 0, 1.00);
	border-width:  3px;
}
#stacks_in_4800_page12 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_4800_page12 .jwresp_col{float:none} #stacks_in_4800_page12 #jwresp_col2_stacks_in_4800_page12{position:relative;margin:0 auto;width:78%;float:none}#stacks_in_4800_page12 #jwresp_col1_stacks_in_4800_page12,#stacks_in_4800_page12 #jwresp_col3_stacks_in_4800_page12{width:9%}#stacks_in_4800_page12 #jwresp_col1_stacks_in_4800_page12{float:left}#stacks_in_4800_page12 #jwresp_col3_stacks_in_4800_page12{float:right} @media screen and (max-width:770px){#stacks_in_4800_page12 #jwresp_col1_stacks_in_4800_page12,#stacks_in_4800_page12 #jwresp_col3_stacks_in_4800_page12{margin-bottom:20px}#stacks_in_4800_page12 #jwresp_col1_stacks_in_4800_page12{width:49%}#stacks_in_4800_page12 #jwresp_col3_stacks_in_4800_page12{width:49%}#stacks_in_4800_page12 #jwresp_col2_stacks_in_4800_page12{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_4800_page12 #jwresp_col1_stacks_in_4800_page12,#stacks_in_4800_page12 #jwresp_col3_stacks_in_4800_page12,#stacks_in_4800_page12 #jwresp_col2_stacks_in_4800_page12{float:none;width:100%;display:block}#stacks_in_4800_page12 #jwresp_col1_stacks_in_4800_page12,#stacks_in_4800_page12 #jwresp_col3_stacks_in_4800_page12{margin-bottom:20px}} 

#stacks_in_4803_page12 {
	margin:  10px;
	padding:  15px;
}

#stacks_in_4804_page12 {
	background-color: rgba(0, 0, 0, 1.00);
	border: solid rgba(0, 0, 0, 1.00);
	border-width:  3px;
}
    #stacks_in_4814_page12>.shear-mag{position:absolute;top:0rem} #stacks_in_4814_page12>.s-pro.no-vault-z>.shear-wrapper>.shear-inner.o-bg-vault>.inner-content{z-index:1}  #stacks_in_4814_page12>.s-pro>.sections-layer{display:none}      #stacks_in_4814_page12>.s-pro>.shear-wrapper>.shear-inner::after,#stacks_in_4814_page12>.s-pro>.shear-wrapper>.shear-inner::before{margin-top:0.00%}       
#hoverBoxWrapperstacks_in_4818_page12 {
	height: auto;
	min-height: 0px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
}

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

#hoverBoxStaticstacks_in_4818_page12 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

.static-bg0stacks_in_4818_page12 {
	background: transparent;
}

.static-bg1stacks_in_4818_page12 {
	background: #333333;
}

.static-bg2stacks_in_4818_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.static-bg4stacks_in_4818_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_4818_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxRolloverstacks_in_4818_page12 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

.hover-bg0stacks_in_4818_page12 {
	background: transparent;
}

.hover-bg1stacks_in_4818_page12 {
	background: #333333;
}

.hover-bg2stacks_in_4818_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.hover-bg4stacks_in_4818_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.hover-bg5stacks_in_4818_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxLinkstacks_in_4818_page12 a:link,
#hoverBoxLinkstacks_in_4818_page12 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../index_files/bg_fill.gif) repeat;
}

/* Where the magic happens */

#hoverBoxWrapperstacks_in_4818_page12:hover #hoverBoxRolloverstacks_in_4818_page12 {
	opacity: 0.99;
}
#shadyStackstacks_in_4819_page12 {
	-webkit-box-shadow:  0px 0px 8px 2px rgba(153, 153, 153, 1.00);
	box-shadow:  0px 0px 8px 2px rgba(153, 153, 153, 1.00);
	border-radius: 0px;
}




#shadyStackstacks_in_4819_page12 {
	margin: 15px;
}


@media print {
	#shadyStackstacks_in_4819_page12 {
		margin: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
		border-radius: 0px;
	}
}
#stacks_in_4820_page12 {
	background-color: rgba(204, 204, 204, 1.00);
	padding:  20px;
}

#stacks_in_4821_page12 {
	margin: 0px 0px 20px 0px;
}
 #stacks_in_4823_page12,#stacks_in_4823_page12 .stacks_out,#stacks_in_4823_page12 .stacks_in{overflow:visible}#stacks_in_4823_page12{padding:.15em 0}

#stacks_in_4825_page12 {
	display:inline-block; width:100%; line-height: 1.200000em;
	font-size: 90%;
}

#stacks_in_4828_page12 {
	display:inline-block; width:100%; line-height: 1.200000em;
	font-size: 200%;
}
                 @media only screen and (min-width:0px){#stacks_in_4829_page12{ }} 
#hoverBoxWrapperstacks_in_4832_page12 {
	height: auto;
	min-height: 0px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
}

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

#hoverBoxStaticstacks_in_4832_page12 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

.static-bg0stacks_in_4832_page12 {
	background: transparent;
}

.static-bg1stacks_in_4832_page12 {
	background: #333333;
}

.static-bg2stacks_in_4832_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.static-bg4stacks_in_4832_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_4832_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxRolloverstacks_in_4832_page12 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	
	-moz-transition: opacity 100ms linear;
	-webkit-transition: opacity 100ms linear;
	transition: opacity 100ms linear;
}

.hover-bg0stacks_in_4832_page12 {
	background: transparent;
}

.hover-bg1stacks_in_4832_page12 {
	background: #333333;
}

.hover-bg2stacks_in_4832_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.hover-bg4stacks_in_4832_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.hover-bg5stacks_in_4832_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxLinkstacks_in_4832_page12 a:link,
#hoverBoxLinkstacks_in_4832_page12 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../index_files/bg_fill.gif) repeat;
}

/* Where the magic happens */

#hoverBoxWrapperstacks_in_4832_page12:hover #hoverBoxRolloverstacks_in_4832_page12 {
	opacity: 0.99;
}
#stacks_in_4833_page12 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_4833_page12 .jwresp_col{float:none} #stacks_in_4833_page12 #jwresp_col2_stacks_in_4833_page12{position:relative;margin:0 auto;width:78%;float:none}#stacks_in_4833_page12 #jwresp_col1_stacks_in_4833_page12,#stacks_in_4833_page12 #jwresp_col3_stacks_in_4833_page12{width:9%}#stacks_in_4833_page12 #jwresp_col1_stacks_in_4833_page12{float:left}#stacks_in_4833_page12 #jwresp_col3_stacks_in_4833_page12{float:right} @media screen and (max-width:770px){#stacks_in_4833_page12 #jwresp_col1_stacks_in_4833_page12,#stacks_in_4833_page12 #jwresp_col3_stacks_in_4833_page12{margin-bottom:20px}#stacks_in_4833_page12 #jwresp_col1_stacks_in_4833_page12{width:49%}#stacks_in_4833_page12 #jwresp_col3_stacks_in_4833_page12{width:49%}#stacks_in_4833_page12 #jwresp_col2_stacks_in_4833_page12{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_4833_page12 #jwresp_col1_stacks_in_4833_page12,#stacks_in_4833_page12 #jwresp_col3_stacks_in_4833_page12,#stacks_in_4833_page12 #jwresp_col2_stacks_in_4833_page12{float:none;width:100%;display:block}#stacks_in_4833_page12 #jwresp_col1_stacks_in_4833_page12,#stacks_in_4833_page12 #jwresp_col3_stacks_in_4833_page12{margin-bottom:20px}} 

#stacks_in_4836_page12 {
	margin: 10px 10px 10px 10px;
	padding:  15px;
}

#stacks_in_4837_page12 {
	background-color: rgba(0, 0, 0, 1.00);
	border: solid rgba(0, 0, 0, 1.00);
	border-width:  3px;
}
#stacks_in_4842_page12 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_4842_page12 .jwresp_col{float:none} #stacks_in_4842_page12 #jwresp_col2_stacks_in_4842_page12{position:relative;margin:0 auto;width:78%;float:none}#stacks_in_4842_page12 #jwresp_col1_stacks_in_4842_page12,#stacks_in_4842_page12 #jwresp_col3_stacks_in_4842_page12{width:9%}#stacks_in_4842_page12 #jwresp_col1_stacks_in_4842_page12{float:left}#stacks_in_4842_page12 #jwresp_col3_stacks_in_4842_page12{float:right} @media screen and (max-width:770px){#stacks_in_4842_page12 #jwresp_col1_stacks_in_4842_page12,#stacks_in_4842_page12 #jwresp_col3_stacks_in_4842_page12{margin-bottom:20px}#stacks_in_4842_page12 #jwresp_col1_stacks_in_4842_page12{width:49%}#stacks_in_4842_page12 #jwresp_col3_stacks_in_4842_page12{width:49%}#stacks_in_4842_page12 #jwresp_col2_stacks_in_4842_page12{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_4842_page12 #jwresp_col1_stacks_in_4842_page12,#stacks_in_4842_page12 #jwresp_col3_stacks_in_4842_page12,#stacks_in_4842_page12 #jwresp_col2_stacks_in_4842_page12{float:none;width:100%;display:block}#stacks_in_4842_page12 #jwresp_col1_stacks_in_4842_page12,#stacks_in_4842_page12 #jwresp_col3_stacks_in_4842_page12{margin-bottom:20px}} 

#stacks_in_4845_page12 {
	margin:  10px;
	padding:  15px;
}

#stacks_in_4846_page12 {
	background-color: rgba(0, 0, 0, 1.00);
	border: solid rgba(0, 0, 0, 1.00);
	border-width:  3px;
}
#shadyStackstacks_in_4854_page12 {
	-webkit-box-shadow:  0px 0px 13px 5px rgba(153, 153, 153, 1.00);
	box-shadow:  0px 0px 13px 5px rgba(153, 153, 153, 1.00);
	border-radius: 0px;
}




#shadyStackstacks_in_4854_page12 {
	margin: 15px;
}


@media print {
	#shadyStackstacks_in_4854_page12 {
		margin: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
		border-radius: 0px;
	}
}
#stacks_in_4855_page12 {
	background-color: rgba(204, 204, 204, 1.00);
	padding:  20px;
}

#stacks_in_4856_page12 {
	margin: 0px 0px 20px 0px;
}
 #stacks_in_4858_page12,#stacks_in_4858_page12 .stacks_out,#stacks_in_4858_page12 .stacks_in{overflow:visible}#stacks_in_4858_page12{padding:.15em 0}

#stacks_in_4860_page12 {
	display:inline-block; width:100%; line-height: 1.200000em;
	font-size: 90%;
}

#stacks_in_4863_page12 {
	display:inline-block; width:100%; line-height: 1.200000em;
	font-size: 200%;
}
                 @media only screen and (min-width:0px){#stacks_in_4864_page12{ }} 
#hoverBoxWrapperstacks_in_4867_page12 {
	height: auto;
	min-height: 0px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
}

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

#hoverBoxStaticstacks_in_4867_page12 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

.static-bg0stacks_in_4867_page12 {
	background: transparent;
}

.static-bg1stacks_in_4867_page12 {
	background: #333333;
}

.static-bg2stacks_in_4867_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.static-bg4stacks_in_4867_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_4867_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxRolloverstacks_in_4867_page12 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	
	-moz-transition: opacity 100ms linear;
	-webkit-transition: opacity 100ms linear;
	transition: opacity 100ms linear;
}

.hover-bg0stacks_in_4867_page12 {
	background: transparent;
}

.hover-bg1stacks_in_4867_page12 {
	background: #333333;
}

.hover-bg2stacks_in_4867_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.hover-bg4stacks_in_4867_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.hover-bg5stacks_in_4867_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxLinkstacks_in_4867_page12 a:link,
#hoverBoxLinkstacks_in_4867_page12 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../index_files/bg_fill.gif) repeat;
}

/* Where the magic happens */

#hoverBoxWrapperstacks_in_4867_page12:hover #hoverBoxRolloverstacks_in_4867_page12 {
	opacity: 0.99;
}
#stacks_in_4868_page12 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_4868_page12 .jwresp_col{float:none} #stacks_in_4868_page12 #jwresp_col2_stacks_in_4868_page12{position:relative;margin:0 auto;width:78%;float:none}#stacks_in_4868_page12 #jwresp_col1_stacks_in_4868_page12,#stacks_in_4868_page12 #jwresp_col3_stacks_in_4868_page12{width:9%}#stacks_in_4868_page12 #jwresp_col1_stacks_in_4868_page12{float:left}#stacks_in_4868_page12 #jwresp_col3_stacks_in_4868_page12{float:right} @media screen and (max-width:770px){#stacks_in_4868_page12 #jwresp_col1_stacks_in_4868_page12,#stacks_in_4868_page12 #jwresp_col3_stacks_in_4868_page12{margin-bottom:20px}#stacks_in_4868_page12 #jwresp_col1_stacks_in_4868_page12{width:49%}#stacks_in_4868_page12 #jwresp_col3_stacks_in_4868_page12{width:49%}#stacks_in_4868_page12 #jwresp_col2_stacks_in_4868_page12{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_4868_page12 #jwresp_col1_stacks_in_4868_page12,#stacks_in_4868_page12 #jwresp_col3_stacks_in_4868_page12,#stacks_in_4868_page12 #jwresp_col2_stacks_in_4868_page12{float:none;width:100%;display:block}#stacks_in_4868_page12 #jwresp_col1_stacks_in_4868_page12,#stacks_in_4868_page12 #jwresp_col3_stacks_in_4868_page12{margin-bottom:20px}} 

#stacks_in_4871_page12 {
	margin: 10px 10px 10px 10px;
	padding:  15px;
}

#stacks_in_4872_page12 {
	background-color: rgba(0, 0, 0, 1.00);
	border: solid rgba(0, 0, 0, 1.00);
	border-width:  3px;
}
#stacks_in_4877_page12 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_4877_page12 .jwresp_col{float:none} #stacks_in_4877_page12 #jwresp_col2_stacks_in_4877_page12{position:relative;margin:0 auto;width:78%;float:none}#stacks_in_4877_page12 #jwresp_col1_stacks_in_4877_page12,#stacks_in_4877_page12 #jwresp_col3_stacks_in_4877_page12{width:9%}#stacks_in_4877_page12 #jwresp_col1_stacks_in_4877_page12{float:left}#stacks_in_4877_page12 #jwresp_col3_stacks_in_4877_page12{float:right} @media screen and (max-width:770px){#stacks_in_4877_page12 #jwresp_col1_stacks_in_4877_page12,#stacks_in_4877_page12 #jwresp_col3_stacks_in_4877_page12{margin-bottom:20px}#stacks_in_4877_page12 #jwresp_col1_stacks_in_4877_page12{width:49%}#stacks_in_4877_page12 #jwresp_col3_stacks_in_4877_page12{width:49%}#stacks_in_4877_page12 #jwresp_col2_stacks_in_4877_page12{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_4877_page12 #jwresp_col1_stacks_in_4877_page12,#stacks_in_4877_page12 #jwresp_col3_stacks_in_4877_page12,#stacks_in_4877_page12 #jwresp_col2_stacks_in_4877_page12{float:none;width:100%;display:block}#stacks_in_4877_page12 #jwresp_col1_stacks_in_4877_page12,#stacks_in_4877_page12 #jwresp_col3_stacks_in_4877_page12{margin-bottom:20px}} 

#stacks_in_4880_page12 {
	margin:  10px;
	padding:  15px;
}

#stacks_in_4881_page12 {
	background-color: rgba(0, 0, 0, 1.00);
	border: solid rgba(0, 0, 0, 1.00);
	border-width:  3px;
}


.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_3512_page12 {
	height: 40px;
}









@-webkit-keyframes mouser-scroll{0%,20%{-webkit-transform:translateY(0px) scaleY(1) scaleX(1) translateZ(0px);transform:translateY(0px) scaleY(1) scaleX(1) translateZ(0px)}20%{-webkit-transform:translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);transform:translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);opacity:1}100%{-webkit-transform:translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);transform:translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);opacity:.1}}@keyframes mouser-scroll{0%,20%{-webkit-transform:translateY(0px) scaleY(1) scaleX(1) translateZ(0px);transform:translateY(0px) scaleY(1) scaleX(1) translateZ(0px)}20%{-webkit-transform:translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);transform:translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);opacity:1}100%{-webkit-transform:translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);transform:translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);opacity:.1}}@-webkit-keyframes mouser-scroll-up{0%{-webkit-transform:translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);transform:translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);opacity:.1}80%{-webkit-transform:translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);transform:translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);opacity:1}100%,80%{-webkit-transform:translateY(0px) scaleY(1) scaleX(1) translateZ(0px);transform:translateY(0px) scaleY(1) scaleX(1) translateZ(0px)}}@keyframes mouser-scroll-up{0%{-webkit-transform:translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);transform:translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);opacity:.1}}100%,80%{-webkit-transform:translateY(0px) scaleY(1) scaleX(1) translateZ(0px);transform:translateY(0px) scaleY(1) scaleX(1) translateZ(0px)}80%{-webkit-transform:translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);transform:translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);opacity:1}@-webkit-keyframes mouser-arrow-flow{0%{opacity:0}50%{opacity:.5}100%{opacity:1}}@keyframes mouser-arrow-flow{0%{opacity:0}50%{opacity:.5}100%{opacity:1}}
#mouser-stacks_in_3513_page12{display:block;margin:0 auto;text-align:center;%[if!edit]% width:100%;%[endif]% margin:center;padding-bottom:0px}#mouser-stacks_in_3513_page12 .mouser{width:26px;position:relative;margin:auto;cursor:pointer}#mouser-stacks_in_3513_page12 .mouser.m-dz{width:100%}#mouser-stacks_in_3513_page12 .mouser.m-dz .fa,#mouser-stacks_in_3513_page12 .mouser.m-dz p{color:rgba(0, 0, 0, 1.00)!important}#mouser-stacks_in_3513_page12 .scrolltext{color:rgba(0, 0, 0, 1.00);display:block;font-size:12px;text-align:center;cursor:pointer;-webkit-transition:color 140ms ease;transition:color 140ms ease}#mouser-stacks_in_3513_page12 .m-wrap{display:inline-block;text-align:center}#mouser-stacks_in_3513_page12 .m-wrap.m-dz.dz-block{display:block} #mouser-stacks_in_3513_page12 .mouser.m-arrows{height:50px}#mouser-stacks_in_3513_page12 .mouser.m-arrows .mouser_arrows{display:block;border-right:2px solid rgba(0, 0, 0, 1.00);border-bottom:2px solid rgba(0, 0, 0, 1.00);margin:0 0 3px 4px;width:16px;height:16px;-webkit-transition:all 140ms ease;transition:all 140ms ease;-webkit-animation:mouser-arrow-flow 1s infinite;animation:mouser-arrow-flow 1s infinite;-webkit-animation-direction:alternate;animation-direction:alternate}#mouser-stacks_in_3513_page12 .mouser.m-arrows .mouser_arrows.ma1{margin-top:1px}#mouser-stacks_in_3513_page12 .mouser.m-arrows .mouser_arrows.ma2{margin-top:-6px}#mouser-stacks_in_3513_page12 .mouser.m-arrows .mouser_arrows.ma3{margin-top:-6px}#mouser-stacks_in_3513_page12 .mouser.m-arrows.m-dn .mouser_arrows{-webkit-transform:rotate(45deg);transform:rotate(45deg)}#mouser-stacks_in_3513_page12 .mouser.m-arrows.m-dn .mouser_arrows.ma1{-webkit-animation-delay:.1s;animation-delay:.1s}#mouser-stacks_in_3513_page12 .mouser.m-arrows.m-dn .mouser_arrows.ma2{-webkit-animation-delay:.2s;animation-delay:.2s}#mouser-stacks_in_3513_page12 .mouser.m-arrows.m-dn .mouser_arrows.ma3{-webkit-animation-delay:.3s;animation-delay:.3s}#mouser-stacks_in_3513_page12 .mouser.m-arrows.m-up .mouser_arrows{-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}#mouser-stacks_in_3513_page12 .mouser.m-arrows.m-up .mouser_arrows.ma1{-webkit-animation-delay:.3s;animation-delay:.3s}#mouser-stacks_in_3513_page12 .mouser.m-arrows.m-up .mouser_arrows.ma2{-webkit-animation-delay:.2s;animation-delay:.2s}#mouser-stacks_in_3513_page12 .mouser.m-arrows.m-up .mouser_arrows.ma3{-webkit-animation-delay:.1s;animation-delay:.1s}  #mouser-stacks_in_3513_page12 .m-wrap:hover .mouser.m-mouse{border:2px solid rgba(191, 33, 36, 1.00)}#mouser-stacks_in_3513_page12 .m-wrap:hover .mouser.m-mouse::after{background-color:rgba(0, 0, 0, 1.00)}#mouser-stacks_in_3513_page12 .m-wrap:hover .mouser.m-arrows>.mouser_arrows{border-right:2px solid rgba(191, 33, 36, 1.00);border-bottom:2px solid rgba(191, 33, 36, 1.00)}#mouser-stacks_in_3513_page12 .m-wrap:hover .mouser.m-dz .fa,#mouser-stacks_in_3513_page12 .m-wrap:hover .mouser.m-dz p{color:rgba(191, 33, 36, 1.00)!important}#mouser-stacks_in_3513_page12 .m-wrap:hover .scrolltext{color:rgba(191, 33, 36, 1.00)} .mouser .mouser_arrows{display:block;border-right:2px solid rgba(0, 0, 0, 1.00);border-bottom:2px solid rgba(0, 0, 0, 1.00);margin:0 0 3px 4px;width:16px;height:16px;-webkit-animation:mouser-arrow-flow 1s infinite;animation:mouser-arrow-flow 1s infinite;-webkit-animation-direction:alternate;animation-direction:alternate}.mouser .mouser_arrows.ma1{margin-top:1px}.mouser .mouser_arrows.ma2{margin-top:-6px}.mouser .mouser_arrows.ma3{margin-top:-6px}.mouser.m-dn .mouser_arrows{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.mouser.m-dn .mouser_arrows.ma1{-webkit-animation-delay:.1s;animation-delay:.1s}.mouser.m-dn .mouser_arrows.ma2{-webkit-animation-delay:.2s;animation-delay:.2s}.mouser.m-dn .mouser_arrows.ma3{-webkit-animation-delay:.3s;animation-delay:.3s}.mouser.m-up .mouser_arrows{-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}.mouser.m-up .mouser_arrows.ma1{-webkit-animation-delay:.3s;animation-delay:.3s}.mouser.m-up .mouser_arrows.ma2{-webkit-animation-delay:.2s;animation-delay:.2s}.mouser.m-up .mouser_arrows.ma3{-webkit-animation-delay:.1s;animation-delay:.1s}



.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_3514_page12 {
	height: 40px;
}











.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_4518_page12 {
	height: 40px;
}









#stacks_in_4519_page12 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_4519_page12 .jwresp_col{float:none} #stacks_in_4519_page12 #jwresp_col2_stacks_in_4519_page12{position:relative;margin:0 auto;width:30%;float:none}#stacks_in_4519_page12 #jwresp_col1_stacks_in_4519_page12,#stacks_in_4519_page12 #jwresp_col3_stacks_in_4519_page12{width:31%}#stacks_in_4519_page12 #jwresp_col1_stacks_in_4519_page12{float:left}#stacks_in_4519_page12 #jwresp_col3_stacks_in_4519_page12{float:right} @media screen and (max-width:770px){#stacks_in_4519_page12 #jwresp_col1_stacks_in_4519_page12,#stacks_in_4519_page12 #jwresp_col3_stacks_in_4519_page12{margin-bottom:20px}#stacks_in_4519_page12 #jwresp_col1_stacks_in_4519_page12{width:48%}#stacks_in_4519_page12 #jwresp_col3_stacks_in_4519_page12{width:48%}#stacks_in_4519_page12 #jwresp_col2_stacks_in_4519_page12{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_4519_page12 #jwresp_col1_stacks_in_4519_page12,#stacks_in_4519_page12 #jwresp_col3_stacks_in_4519_page12,#stacks_in_4519_page12 #jwresp_col2_stacks_in_4519_page12{float:none;width:100%;display:block}#stacks_in_4519_page12 #jwresp_col1_stacks_in_4519_page12,#stacks_in_4519_page12 #jwresp_col3_stacks_in_4519_page12{margin-bottom:20px}} 

#stacks_in_4520_page12 {
	background-color: rgba(25, 25, 25, 1.00);
	border: solid rgba(191, 33, 36, 1.00);
	border-width: 3px 0px 0px 0px;
}

#stacks_in_4522_page12 {
	font-size: 200%;
}

#stacks_in_4523_page12 {
	padding: 0px 0px 10px 0px;
}
#hoverBoxWrapperstacks_in_4525_page12 {
	height: auto;
	min-height: 0px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
}

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

#hoverBoxStaticstacks_in_4525_page12 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

.static-bg0stacks_in_4525_page12 {
	background: transparent;
}

.static-bg1stacks_in_4525_page12 {
	background: #333333;
}

.static-bg2stacks_in_4525_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.static-bg4stacks_in_4525_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_4525_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxRolloverstacks_in_4525_page12 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

.hover-bg0stacks_in_4525_page12 {
	background: transparent;
}

.hover-bg1stacks_in_4525_page12 {
	background: #333333;
}

.hover-bg2stacks_in_4525_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.hover-bg4stacks_in_4525_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.hover-bg5stacks_in_4525_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxLinkstacks_in_4525_page12 a:link,
#hoverBoxLinkstacks_in_4525_page12 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../index_files/bg_fill.gif) repeat;
}

/* Where the magic happens */

#hoverBoxWrapperstacks_in_4525_page12:hover #hoverBoxRolloverstacks_in_4525_page12 {
	opacity: 0.99;
}
#hoverBoxWrapperstacks_in_4534_page12 {
	height: auto;
	min-height: 0px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
}

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

#hoverBoxStaticstacks_in_4534_page12 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

.static-bg0stacks_in_4534_page12 {
	background: transparent;
}

.static-bg1stacks_in_4534_page12 {
	background: #333333;
}

.static-bg2stacks_in_4534_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.static-bg4stacks_in_4534_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_4534_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxRolloverstacks_in_4534_page12 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

.hover-bg0stacks_in_4534_page12 {
	background: transparent;
}

.hover-bg1stacks_in_4534_page12 {
	background: #333333;
}

.hover-bg2stacks_in_4534_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.hover-bg4stacks_in_4534_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.hover-bg5stacks_in_4534_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxLinkstacks_in_4534_page12 a:link,
#hoverBoxLinkstacks_in_4534_page12 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../index_files/bg_fill.gif) repeat;
}

/* Where the magic happens */

#hoverBoxWrapperstacks_in_4534_page12:hover #hoverBoxRolloverstacks_in_4534_page12 {
	opacity: 0.99;
}
#hoverBoxWrapperstacks_in_4543_page12 {
	height: auto;
	min-height: 0px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
}

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

#hoverBoxStaticstacks_in_4543_page12 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

.static-bg0stacks_in_4543_page12 {
	background: transparent;
}

.static-bg1stacks_in_4543_page12 {
	background: #333333;
}

.static-bg2stacks_in_4543_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.static-bg4stacks_in_4543_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_4543_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxRolloverstacks_in_4543_page12 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

.hover-bg0stacks_in_4543_page12 {
	background: transparent;
}

.hover-bg1stacks_in_4543_page12 {
	background: #333333;
}

.hover-bg2stacks_in_4543_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.hover-bg4stacks_in_4543_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.hover-bg5stacks_in_4543_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxLinkstacks_in_4543_page12 a:link,
#hoverBoxLinkstacks_in_4543_page12 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../index_files/bg_fill.gif) repeat;
}

/* Where the magic happens */

#hoverBoxWrapperstacks_in_4543_page12:hover #hoverBoxRolloverstacks_in_4543_page12 {
	opacity: 0.99;
}

#stacks_in_4554_page12 {
	background-color: rgba(25, 25, 25, 1.00);
	border: solid rgba(191, 33, 36, 1.00);
	border-width: 3px 0px 0px 0px;
}

#stacks_in_4556_page12 {
	font-size: 200%;
}

#stacks_in_4557_page12 {
	padding: 0px 0px 10px 0px;
}
#hoverBoxWrapperstacks_in_4559_page12 {
	height: auto;
	min-height: 0px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
}

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

#hoverBoxStaticstacks_in_4559_page12 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

.static-bg0stacks_in_4559_page12 {
	background: transparent;
}

.static-bg1stacks_in_4559_page12 {
	background: #333333;
}

.static-bg2stacks_in_4559_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.static-bg4stacks_in_4559_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_4559_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxRolloverstacks_in_4559_page12 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

.hover-bg0stacks_in_4559_page12 {
	background: transparent;
}

.hover-bg1stacks_in_4559_page12 {
	background: #333333;
}

.hover-bg2stacks_in_4559_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.hover-bg4stacks_in_4559_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.hover-bg5stacks_in_4559_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxLinkstacks_in_4559_page12 a:link,
#hoverBoxLinkstacks_in_4559_page12 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../index_files/bg_fill.gif) repeat;
}

/* Where the magic happens */

#hoverBoxWrapperstacks_in_4559_page12:hover #hoverBoxRolloverstacks_in_4559_page12 {
	opacity: 0.99;
}
#hoverBoxWrapperstacks_in_4568_page12 {
	height: auto;
	min-height: 0px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
}

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

#hoverBoxStaticstacks_in_4568_page12 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

.static-bg0stacks_in_4568_page12 {
	background: transparent;
}

.static-bg1stacks_in_4568_page12 {
	background: #333333;
}

.static-bg2stacks_in_4568_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.static-bg4stacks_in_4568_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_4568_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxRolloverstacks_in_4568_page12 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

.hover-bg0stacks_in_4568_page12 {
	background: transparent;
}

.hover-bg1stacks_in_4568_page12 {
	background: #333333;
}

.hover-bg2stacks_in_4568_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.hover-bg4stacks_in_4568_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.hover-bg5stacks_in_4568_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxLinkstacks_in_4568_page12 a:link,
#hoverBoxLinkstacks_in_4568_page12 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../index_files/bg_fill.gif) repeat;
}

/* Where the magic happens */

#hoverBoxWrapperstacks_in_4568_page12:hover #hoverBoxRolloverstacks_in_4568_page12 {
	opacity: 0.99;
}
#hoverBoxWrapperstacks_in_4577_page12 {
	height: auto;
	min-height: 0px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
}

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

#hoverBoxStaticstacks_in_4577_page12 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

.static-bg0stacks_in_4577_page12 {
	background: transparent;
}

.static-bg1stacks_in_4577_page12 {
	background: #333333;
}

.static-bg2stacks_in_4577_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.static-bg4stacks_in_4577_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_4577_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxRolloverstacks_in_4577_page12 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

.hover-bg0stacks_in_4577_page12 {
	background: transparent;
}

.hover-bg1stacks_in_4577_page12 {
	background: #333333;
}

.hover-bg2stacks_in_4577_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.hover-bg4stacks_in_4577_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.hover-bg5stacks_in_4577_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxLinkstacks_in_4577_page12 a:link,
#hoverBoxLinkstacks_in_4577_page12 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../index_files/bg_fill.gif) repeat;
}

/* Where the magic happens */

#hoverBoxWrapperstacks_in_4577_page12:hover #hoverBoxRolloverstacks_in_4577_page12 {
	opacity: 0.99;
}

#stacks_in_4588_page12 {
	background-color: rgba(25, 25, 25, 1.00);
	border: solid rgba(191, 33, 36, 1.00);
	border-width: 3px 0px 0px 0px;
}

#stacks_in_4590_page12 {
	font-size: 200%;
}

#stacks_in_4591_page12 {
	padding: 0px 0px 10px 0px;
}
#hoverBoxWrapperstacks_in_4593_page12 {
	height: auto;
	min-height: 0px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
}

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

#hoverBoxStaticstacks_in_4593_page12 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

.static-bg0stacks_in_4593_page12 {
	background: transparent;
}

.static-bg1stacks_in_4593_page12 {
	background: #333333;
}

.static-bg2stacks_in_4593_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.static-bg4stacks_in_4593_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_4593_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxRolloverstacks_in_4593_page12 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

.hover-bg0stacks_in_4593_page12 {
	background: transparent;
}

.hover-bg1stacks_in_4593_page12 {
	background: #333333;
}

.hover-bg2stacks_in_4593_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.hover-bg4stacks_in_4593_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.hover-bg5stacks_in_4593_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxLinkstacks_in_4593_page12 a:link,
#hoverBoxLinkstacks_in_4593_page12 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../index_files/bg_fill.gif) repeat;
}

/* Where the magic happens */

#hoverBoxWrapperstacks_in_4593_page12:hover #hoverBoxRolloverstacks_in_4593_page12 {
	opacity: 0.99;
}
#hoverBoxWrapperstacks_in_4602_page12 {
	height: auto;
	min-height: 0px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
}

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

#hoverBoxStaticstacks_in_4602_page12 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

.static-bg0stacks_in_4602_page12 {
	background: transparent;
}

.static-bg1stacks_in_4602_page12 {
	background: #333333;
}

.static-bg2stacks_in_4602_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.static-bg4stacks_in_4602_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_4602_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxRolloverstacks_in_4602_page12 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

.hover-bg0stacks_in_4602_page12 {
	background: transparent;
}

.hover-bg1stacks_in_4602_page12 {
	background: #333333;
}

.hover-bg2stacks_in_4602_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.hover-bg4stacks_in_4602_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.hover-bg5stacks_in_4602_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxLinkstacks_in_4602_page12 a:link,
#hoverBoxLinkstacks_in_4602_page12 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../index_files/bg_fill.gif) repeat;
}

/* Where the magic happens */

#hoverBoxWrapperstacks_in_4602_page12:hover #hoverBoxRolloverstacks_in_4602_page12 {
	opacity: 0.99;
}
#hoverBoxWrapperstacks_in_4611_page12 {
	height: auto;
	min-height: 0px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
}

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

#hoverBoxStaticstacks_in_4611_page12 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

.static-bg0stacks_in_4611_page12 {
	background: transparent;
}

.static-bg1stacks_in_4611_page12 {
	background: #333333;
}

.static-bg2stacks_in_4611_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.static-bg4stacks_in_4611_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_4611_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxRolloverstacks_in_4611_page12 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

.hover-bg0stacks_in_4611_page12 {
	background: transparent;
}

.hover-bg1stacks_in_4611_page12 {
	background: #333333;
}

.hover-bg2stacks_in_4611_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.hover-bg4stacks_in_4611_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.hover-bg5stacks_in_4611_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxLinkstacks_in_4611_page12 a:link,
#hoverBoxLinkstacks_in_4611_page12 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../index_files/bg_fill.gif) repeat;
}

/* Where the magic happens */

#hoverBoxWrapperstacks_in_4611_page12:hover #hoverBoxRolloverstacks_in_4611_page12 {
	opacity: 0.99;
}


.spacerStack {
	height: 60px;
}

#spacerStackstacks_in_4622_page12 {
	height: 60px;
}









#stacks_in_4623_page12 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_4623_page12 .jwresp_col{float:none} #stacks_in_4623_page12 #jwresp_col2_stacks_in_4623_page12{position:relative;margin:0 auto;width:32%;float:none}#stacks_in_4623_page12 #jwresp_col1_stacks_in_4623_page12,#stacks_in_4623_page12 #jwresp_col3_stacks_in_4623_page12{width:32%}#stacks_in_4623_page12 #jwresp_col1_stacks_in_4623_page12{float:left}#stacks_in_4623_page12 #jwresp_col3_stacks_in_4623_page12{float:right} @media screen and (max-width:770px){#stacks_in_4623_page12 #jwresp_col1_stacks_in_4623_page12,#stacks_in_4623_page12 #jwresp_col3_stacks_in_4623_page12{margin-bottom:20px}#stacks_in_4623_page12 #jwresp_col1_stacks_in_4623_page12{width:49%}#stacks_in_4623_page12 #jwresp_col3_stacks_in_4623_page12{width:49%}#stacks_in_4623_page12 #jwresp_col2_stacks_in_4623_page12{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_4623_page12 #jwresp_col1_stacks_in_4623_page12,#stacks_in_4623_page12 #jwresp_col3_stacks_in_4623_page12,#stacks_in_4623_page12 #jwresp_col2_stacks_in_4623_page12{float:none;width:100%;display:block}#stacks_in_4623_page12 #jwresp_col1_stacks_in_4623_page12,#stacks_in_4623_page12 #jwresp_col3_stacks_in_4623_page12{margin-bottom:20px}} 
#stacks_in_4626_page12 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_4626_page12 .jwresp_col{float:none} #stacks_in_4626_page12 #jwresp_col3_stacks_in_4626_page12{float:right;width:32%}#stacks_in_4626_page12 #jwresp_col1_stacks_in_4626_page12,#stacks_in_4626_page12 #jwresp_col2_stacks_in_4626_page12{width:32%;float:left}#stacks_in_4626_page12 #jwresp_col1_stacks_in_4626_page12{margin-right:1%}#stacks_in_4626_page12 #jwresp_col2_stacks_in_4626_page12{margin-left:1%}  
#hoverBoxWrapperstacks_in_4628_page12 {
	height: auto;
	min-height: 0px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
}

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

#hoverBoxStaticstacks_in_4628_page12 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

.static-bg0stacks_in_4628_page12 {
	background: transparent;
}

.static-bg1stacks_in_4628_page12 {
	background: #333333;
}

.static-bg2stacks_in_4628_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.static-bg4stacks_in_4628_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_4628_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxRolloverstacks_in_4628_page12 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

.hover-bg0stacks_in_4628_page12 {
	background: transparent;
}

.hover-bg1stacks_in_4628_page12 {
	background: #333333;
}

.hover-bg2stacks_in_4628_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.hover-bg4stacks_in_4628_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.hover-bg5stacks_in_4628_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxLinkstacks_in_4628_page12 a:link,
#hoverBoxLinkstacks_in_4628_page12 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../index_files/bg_fill.gif) repeat;
}

/* Where the magic happens */

#hoverBoxWrapperstacks_in_4628_page12:hover #hoverBoxRolloverstacks_in_4628_page12 {
	opacity: 0.99;
}

#stacks_out_4629_page12 {
	width: 50px;
}

#stacks_out_4632_page12 {
	width: 50px;
}
#hoverBoxWrapperstacks_in_4638_page12 {
	height: auto;
	min-height: 0px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
}

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

#hoverBoxStaticstacks_in_4638_page12 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

.static-bg0stacks_in_4638_page12 {
	background: transparent;
}

.static-bg1stacks_in_4638_page12 {
	background: #333333;
}

.static-bg2stacks_in_4638_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.static-bg4stacks_in_4638_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_4638_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxRolloverstacks_in_4638_page12 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

.hover-bg0stacks_in_4638_page12 {
	background: transparent;
}

.hover-bg1stacks_in_4638_page12 {
	background: #333333;
}

.hover-bg2stacks_in_4638_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.hover-bg4stacks_in_4638_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.hover-bg5stacks_in_4638_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxLinkstacks_in_4638_page12 a:link,
#hoverBoxLinkstacks_in_4638_page12 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../index_files/bg_fill.gif) repeat;
}

/* Where the magic happens */

#hoverBoxWrapperstacks_in_4638_page12:hover #hoverBoxRolloverstacks_in_4638_page12 {
	opacity: 0.99;
}

#stacks_out_4639_page12 {
	width: 50px;
}

#stacks_out_4642_page12 {
	width: 50px;
}
#hoverBoxWrapperstacks_in_4648_page12 {
	height: auto;
	min-height: 0px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
}

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

#hoverBoxStaticstacks_in_4648_page12 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

.static-bg0stacks_in_4648_page12 {
	background: transparent;
}

.static-bg1stacks_in_4648_page12 {
	background: #333333;
}

.static-bg2stacks_in_4648_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.static-bg4stacks_in_4648_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_4648_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxRolloverstacks_in_4648_page12 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

.hover-bg0stacks_in_4648_page12 {
	background: transparent;
}

.hover-bg1stacks_in_4648_page12 {
	background: #333333;
}

.hover-bg2stacks_in_4648_page12 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

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

.hover-bg4stacks_in_4648_page12 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.hover-bg5stacks_in_4648_page12 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}

#hoverBoxLinkstacks_in_4648_page12 a:link,
#hoverBoxLinkstacks_in_4648_page12 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../index_files/bg_fill.gif) repeat;
}

/* Where the magic happens */

#hoverBoxWrapperstacks_in_4648_page12:hover #hoverBoxRolloverstacks_in_4648_page12 {
	opacity: 0.99;
}

#stacks_out_4649_page12 {
	width: 50px;
}

#stacks_out_4652_page12 {
	width: 50px;
}
