a.block-link{display:block;text-decoration:none !important;padding:0;margin:0;color:inherit}a.block-link:link,a.block-link:visited,a.block-link:hover,a.block-link:active{color:inherit}
.font-weight-100{font-weight:100}.font-weight-200{font-weight:200}.font-weight-300{font-weight:300}.font-weight-400{font-weight:400}.font-weight-500{font-weight:500}.font-weight-600{font-weight:600}.font-weight-700{font-weight:700}.font-weight-800{font-weight:800}.font-weight-900{font-weight:900}.font-style-normal{font-style:normal}.font-style-italic{font-style:italic}
.com_bigwhiteduck_stacks_headerpro_stack .text-center{text-align:center}.com_bigwhiteduck_stacks_headerpro_stack .text-left{text-align:left}.com_bigwhiteduck_stacks_headerpro_stack .text-right{text-align:right}.com_bigwhiteduck_stacks_headerpro_stack .text-justify{text-align:justify}
.blu-wrap.bwd{overflow:visible}.blu-wrap.bwd>.blueprint-col{padding-top:.1px;padding-bottom:.1px}.blu-wrap.bwd>.blueprint-col,.blu-wrap.bwd>.blueprint-col>.blucol-content{position:relative}.blu-wrap.bwd>.blueprint-col>.blucol-content[class*="style-pro-stacks"].has-z{z-index:1}.blu-wrap.bwd>.blueprint-col>.blucol-content[class*="style-pro-stacks"]::before{z-index:-1}.blu-wrap.bwd>.blueprint-col>.blucol-content[class*="style-pro-stacks"]:not(.full-ovl)::after{z-index:-1}.blu-wrap.bwd>.blueprint-col .blu-cf::before,.blu-wrap.bwd>.blueprint-col .blu-cf::after{content:" ";display:table}.blu-wrap.bwd>.blueprint-col .blu-cf::after{clear:both}.blu-wrap.bwd>.blueprint-col>.blu-link>a{position:absolute;top:0;bottom:0;left:0;right:0;content:"";z-index:999}
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

.animated {
/*   animation-duration: 1s; */
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

/* 
.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}
 */

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none;
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: none;
  }
}

.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(.95, .95, .95);
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  animation-name: hinge;
}

@keyframes hingeIn {
  0% {
  transform: translate3d(0, 700px, 0);
    opacity: 0;
  }

  20%, 60% {
  transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 0.50;
  }

  40%, 80% {
  transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
}

.hingeIn {
  animation-name: hingeIn;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}
.com_joeworkman_stacks_shareit_simple_stack a.shareit,.com_joeworkman_stacks_shareit_simple_stack i.fa{text-decoration:none;-webkit-transition:color 300ms ease 0;transition:color 300ms ease 0}.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-facebook,.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-facebook-square{color:#3B5998}.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-facebook:hover,.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-facebook-square:hover{color:#3B5998}.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-twitter,.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-twitter-square{color:#09AEEC}.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-twitter:hover,.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-twitter-square:hover{color:#09AEEC}.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-google-plus,.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-google-plus-square{color:#EE0000}.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-google-plus:hover,.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-google-plus-square:hover{color:#EE0000}.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-adn{color:#4A484C}.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-adn:hover{color:#4A484C}.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-pinterest,.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-pinterest-square{color:#CB2027}.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-pinterest:hover,.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-pinterest-square:hover{color:#CB2027}.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-linkedin,.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-linkedin-square{color:#257597}.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-linkedin:hover,.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-linkedin-square:hover{color:#257597}.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-envelope,.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-envelope-o{color:#26A14B}.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-envelope:hover,.com_joeworkman_stacks_shareit_simple_stack a.default-colors i.fa-envelope-o:hover{color:#26A14B}
 .sections-box--stack .s-box>.s-box-content{position:relative}.sections-box--stack.box-3d{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.sections-box--stack.box-pos.sbox-h-center{margin-left:auto!important;margin-right:auto!important}.sections-box--stack.box-pos.sbox-h-right{margin-right:0!important;margin-left:auto!important}.sections-box--stack.box-pos>.s-box{display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}.sections-box--stack.box-pos>.s-box>.s-box-content{position:relative;width:100%}.sections-box--stack.box-pos>.s-box>.s-box-content.box-v-top{-ms-flex-item-align:start;align-self:flex-start}.sections-box--stack.box-pos>.s-box>.s-box-content.box-v-center{-ms-flex-item-align:center;align-self:center}.sections-box--stack.box-pos>.s-box>.s-box-content.box-v-bottom{-ms-flex-item-align:end;align-self:flex-end}.sections-box--stack.box-abs-inline{position:absolute!important;display:inline-block;width:auto!important}.sections-box--stack.box-abs{position:absolute!important;max-width:100%;max-height:100%}.sections-box--stack.box-abs.sbox-top{top:0}.sections-box--stack.box-abs.sbox-h-left{left:0;right:auto}.sections-box--stack.box-abs.sbox-h-right{right:0;left:auto}.sections-box--stack.box-abs.sbox-v-bottom{bottom:0;top:auto}.sections-box--stack.box-abs.sbox-v-center{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.sections-box--stack.box-abs.sbox-h-center{left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.sections-box--stack.box-abs.sbox-v-center.sbox-h-center{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.sections-box--stack.box-abs.size-content{height:auto!important}.sections-box--stack.box-abs.size-content>.s-box{position:relative}.sections-box--stack.box-abs:not(.size-content)>.s-box>.s-box-content.box-v-center{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.sections-box--stack.box-abs:not(.size-content)>.s-box>.s-box-content.box-v-bottom{position:absolute;bottom:0;left:0;width:100%}.sections-box--stack .box-link>a{position:absolute;top:0;bottom:0;left:0;right:0;content:"";z-index:999}
.com_bigwhiteduck_stacks_markdownpro_stack figure{margin:0}.com_bigwhiteduck_stacks_markdownpro_stack figure img{max-width:100%;height:auto}.com_bigwhiteduck_stacks_markdownpro_stack figure figcaption{display:none}.com_bigwhiteduck_stacks_markdownpro_stack pre{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.p-center p{text-align:center}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.p-left p{text-align:left}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.p-right p{text-align:right}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.p-justify p{text-align:justify}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.p-inherit{text-align:inherit}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-center h1,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-center h2,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-center h3,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-center h4,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-center h5,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-center h6{text-align:center}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-left h1,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-left h2,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-left h3,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-left h4,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-left h5,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-left h6{text-align:left}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-right h1,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-right h2,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-right h3,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-right h4,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-right h5,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-right h6{text-align:right}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-inherit h1,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-inherit h2,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-inherit h3,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-inherit h4,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-inherit h5,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-inherit h6{text-align:inherit}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.l-center ul{display:table;margin:0 auto}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.l-left ul{text-align:left}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.l-right ul{display:table;margin:0 0 0 auto}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.l-txt-center ul li p{text-align:center}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.l-txt-left ul li p{text-align:left}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.l-txt-right ul li p{text-align:right}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_markdownpro_stack .mdp.small-only-text-center,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.small-only-text-center p{text-align:center}}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_markdownpro_stack .mdp.small-only-header-center h1,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.small-only-header-center h2,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.small-only-header-center h3,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.small-only-header-center h4,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.small-only-header-center h5,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.small-only-header-center h6{text-align:center}}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_markdownpro_stack .mdp.small-only-list-center ul{display:table;margin:0 auto}}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_markdownpro_stack .mdp.small-only-listtext-center ul li p{text-align:center}}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_markdownpro_stack .mdp.p-justify.small-only-just-left p{text-align:left !important}}.com_bigwhiteduck_stacks_markdownpro_stack .mdp p:empty{display:none !important}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.quote-left[class*="text-"] blockquote{text-align:left}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.quote-left[class*="text-"] blockquote > p{text-align:left;margin-bottom:0}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.no-bot-margin >:nth-last-child(2){margin-bottom:0 !important}.com_bigwhiteduck_stacks_markdownpro_stack .md-clearfix::before,.com_bigwhiteduck_stacks_markdownpro_stack .md-clearfix::after{content:" ";display:table}.com_bigwhiteduck_stacks_markdownpro_stack .md-clearfix::after{clear:both}.com_bigwhiteduck_stacks_markdownpro_stack .mdp-cntrls{display:none !important}
/* Start Stats stack CSS code */.stacks_in_571stats, .stacks_in_571pagetitle{	display: none;}.stacks_in_571instructwrapper{	position: relative;	background: url("../files/newstatsbg.png") repeat-x;	height: 100px;	-webkit-border-radius: 4px;	-moz-border-radius: 4px;	border-radius: 4px;}.stacks_in_571instruct{	position: absolute;	text-align: center;	bottom: 0px;	left: 0px;	right: 0px;	color: #fff;	font-weight: bold;	font-family: Arial, Helvetica, sans-serif;	background: rgba(0, 0, 0, 0.6);	padding: 4px 10px 5px 10px;} /* End if record mode */ /* End if admin mode *//* End Stats stack CSS code */  .theme-version{display:block}.theme-version.number-110,#stacks_in_459_1{display:none}.stacks_out{overflow:visible !important}.stacks_in{overflow:visible}::-moz-selection{color:rgba(255, 255, 255, 1.00);background:rgba(0, 140, 186, 0.00);}::selection{color:rgba(255, 255, 255, 1.00);background:rgba(0, 140, 186, 0.00);}::-moz-selection{color:rgba(255, 255, 255, 1.00);background:rgba(0, 140, 186, 0.00);}body,.font-family-text{}h1,.font-family-h1{}h1 a,.font-family-h1 a{font-family:inherit}h2,h3,h4,h5,h6,.font-family-h2{}h2 a,h3 a,h4 a,h5 a,h6 a,.font-family-h2 a{font-family:inherit}body{background-color:#FFFFFF;}.hide-for-touch,.show-for-touch{display:none}.no-js .hide-for-touch{display:block}.vegas-loading{display:none}.vegas-background{-ms-interpolation-mode:bicubic;image-rendering:optimizeQuality;max-width:none !important}.vegas-overlay,.vegas-background{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.hide-overflow{overflow:hidden !important}.columns > .equalizer.small-up{height:100%}@media only screen and (min-width:40.063em){.columns > .equalizer.medium-up{height:100%}}@media only screen and (min-width:62.563em){.columns > .equalizer.large-up{height:100%}}@media only screen and (max-width:40em){.row.collapse-small > .columns{padding-left:0;padding-right:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){.row.collapse-medium > .columns{padding-left:0;padding-right:0}}@media only screen and (max-width:40em){.row .row.collapse-small{margin:0;width:auto}.row .row.collapse-small::before,.row .row.collapse-small::after{content:" ";display:table}.row .row.collapse-small::after{clear:both}}@media only screen and (min-width:40.063em) and (max-width:62.5em){.row .row.collapse-medium{margin:0;width:auto}.row .row.collapse-medium::before,.row .row.collapse-medium::after{content:" ";display:table}.row .row.collapse-medium::after{clear:both}}.column,.columns{padding-left:0.94rem;padding-right:0.94rem}.row .row{margin:0 -0.94rem}.row.divider > .columns:not(:first-child):before{content:" ";margin:0 -0.94rem;position:absolute}@media only screen and (max-width:40em){.row.divider-medium-up > .columns::before,.row.divider-large-up > .columns::before,.small-12::before{display:none}}@media only screen and (min-width:40.063em) and (max-width:62.5em){.row.divider-large-up > .columns::before,.medium-12::before{display:none}}@media only screen and (min-width:62.563em){.large-12:before{display:none}}.floating-body.radius{border-radius:3px}.floating-body.radius > .columns > .stacks_out:first-child > .stacks_in > .top-bar-wrapper:not(.fixed){border-top-right-radius:3px;border-top-left-radius:3px}.floating-body .top-bar-wrapper.contain-to-grid.fixed{max-width:1000px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.radius{background-clip:padding-box}img{color:#FFFFFF}img.radius{border-radius:3px}img.round{border-radius:1000px}.row{max-width:1000px !important;}.row.max-edge{max-width:100% !important}body{color:rgba(34, 34, 34, 1.00)}a{color:rgba(0, 0, 0, 1.00);-webkit-text-decoration:none;text-decoration:none;font-weight:inherit}a:hover,a:focus{color:rgba(95, 170, 100, 1.00)}a.close,a.close-reveal-modal{text-decoration:none}.alt{color:rgba(255, 255, 255, 1.00)}.alt a{color:rgba(0, 0, 0, 1.00);-webkit-text-decoration:none;text-decoration:none}.alt a:hover,.alt a:focus{color:rgba(95, 170, 100, 1.00)}.alt small{color:rgba(255, 255, 255, 1.00)}h1,h2,h3,h4,h5,h6{color:rgba(34, 34, 34, 1.00);margin-top:0}h1.alt,h2.alt,h3.alt,h4.alt,h5.alt,h6.alt{color:rgba(255, 255, 255, 1.00)}h1.subheader,h2.subheader,h3.subheader,h4.subheader,h5.subheader,h6.subheader{color:rgba(44, 44, 44, 1.00)}h1.subheader.alt,h2.subheader.alt,h3.subheader.alt,h4.subheader.alt,h5.subheader.alt,h6.subheader.alt{color:rgba(255, 255, 255, 1.00)}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-size:30%;color:rgba(44, 44, 44, 1.00)}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:inherit !important}h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover,h6 a:hover{opacity:0.8;color:inherit !important}h1{font-size:2.12rem}h2{font-size:1.69rem}h3{font-size:1.38rem}h4{font-size:1.12rem}h5{font-size:1.12rem}h6{font-size:1.00rem}p,ul li,ol li{font-size:1.00rem}@media only screen and (min-width:40.063em){h1{font-size:2.75rem}h2{font-size:2.31rem}h3{font-size:1.69rem}h4{font-size:1.44rem}h5{font-size:1.12rem}h6{font-size:1.00rem}p,ul li,ol li{font-size:1.00rem}}code{color:rgba(204, 55, 30, 1.00)}hr,blockquote,abbr,acronym,.vcard{border-color:rgba(221, 221, 221, 1.00)}hr.alt,blockquote.alt,abbr.alt,acronym.alt,.vcard.alt{border-color:rgba(221, 221, 221, 1.00)}hr.primary,blockquote.primary,abbr.primary,acronym.primary,.vcard.primary{border-color:rgba(0, 140, 186, 0.00)}hr.primary,blockquote.primary,abbr.primary,acronym.primary,.vcard.primary{border-color:rgba(0, 140, 186, 0.00)}hr.secondary,blockquote.secondary,abbr.secondary,acronym.secondary,.vcard.secondary{border-color:rgba(231, 231, 231, 1.00)}hr.swatch1,blockquote.swatch1,abbr.swatch1,acronym.swatch1,.vcard.swatch1{border-color:rgba(95, 170, 100, 1.00)}hr.swatch2,blockquote.swatch2,abbr.swatch2,acronym.swatch2,.vcard.swatch2{border-color:rgba(34, 34, 34, 1.00)}hr.swatch3,blockquote.swatch3,abbr.swatch3,acronym.swatch3,.vcard.swatch3{border-color:rgba(34, 34, 34, 1.00)}hr.swatch4,blockquote.swatch4,abbr.swatch4,acronym.swatch4,.vcard.swatch4{border-color:rgba(248, 248, 248, 1.00)}hr.swatch5,blockquote.swatch5,abbr.swatch5,acronym.swatch5,.vcard.swatch5{border-color:rgba(248, 248, 248, 1.00)}hr.swatch6,blockquote.swatch6,abbr.swatch6,acronym.swatch6,.vcard.swatch6{border-color:rgba(248, 248, 248, 1.00)}blockquote,blockquote p{color:rgba(44, 44, 44, 1.00)}blockquote cite,blockquote cite a,blockquote p cite,blockquote p cite a{color:rgba(40, 40, 40, 1.00)}blockquote.alt,blockquote.alt p,blockquote p.alt,blockquote p.alt p{color:rgba(255, 255, 255, 1.00)}blockquote.alt cite,blockquote.alt cite a,blockquote.alt p cite,blockquote.alt p cite a,blockquote p.alt cite,blockquote p.alt cite a,blockquote p.alt p cite,blockquote p.alt p cite a{color:rgba(255, 255, 255, 1.00)}.flex-video{margin-bottom:0}.contain-to-grid .top-bar{max-width:1000px}.top-bar .top-bar-section ul li > a.button{background-color:rgba(0, 140, 186, 0.00);color:rgba(255, 255, 255, 1.00)}.top-bar .top-bar-section ul li > a.button:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 133, 176, 0.00)}.top-bar .top-bar-section ul li > a.button.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.top-bar .top-bar-section ul li > a.button.secondary:hover{color:rgba(51, 51, 51, 1.00);background-color:rgba(219, 219, 219, 1.00)}.top-bar .top-bar-section ul li > a.button.alert{background-color:rgba(240, 65, 36, 1.00)}.top-bar .top-bar-section ul li > a.button.alert:hover{background-color:rgba(228, 61, 34, 1.00)}.top-bar .top-bar-section ul li > a.button.success{background-color:rgba(67, 172, 106, 1.00)}.top-bar .top-bar-section ul li > a.button.success:hover{background-color:rgba(63, 163, 100, 1.00)}.top-bar .top-bar-section ul li > a.button.radius{border-radius:3px}.top-bar-wrapper.fn-scheme-primary{background-color:rgba(0, 140, 186, 0.00);color:rgba(255, 255, 255, 1.00)}.top-bar-wrapper.fn-scheme-primary ul:not(.title-area) ul.dropdown{background-color:rgba(0, 140, 186, 0.00)}.top-bar-wrapper.fn-scheme-primary .site-title,.top-bar-wrapper.fn-scheme-primary .site-title small,.top-bar-wrapper.fn-scheme-primary a:not(.button){color:rgba(255, 255, 255, 1.00) !important}.top-bar-wrapper.fn-scheme-primary .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(255, 255, 255, 1.00),0 7px 0 1px rgba(255, 255, 255, 1.00),0 14px 0 1px rgba(255, 255, 255, 1.00);box-shadow:0 0 0 1px rgba(255, 255, 255, 1.00),0 7px 0 1px rgba(255, 255, 255, 1.00),0 14px 0 1px rgba(255, 255, 255, 1.00)}.top-bar-wrapper.fn-scheme-secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.top-bar-wrapper.fn-scheme-secondary ul:not(.title-area) ul.dropdown{background-color:rgba(231, 231, 231, 1.00)}.top-bar-wrapper.fn-scheme-secondary .site-title,.top-bar-wrapper.fn-scheme-secondary .site-title small,.top-bar-wrapper.fn-scheme-secondary a:not(.button){color:rgba(51, 51, 51, 1.00) !important}.top-bar-wrapper.fn-scheme-secondary .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(51, 51, 51, 1.00),0 7px 0 1px rgba(51, 51, 51, 1.00),0 14px 0 1px rgba(51, 51, 51, 1.00);box-shadow:0 0 0 1px rgba(51, 51, 51, 1.00),0 7px 0 1px rgba(51, 51, 51, 1.00),0 14px 0 1px rgba(51, 51, 51, 1.00)}.top-bar-wrapper.fn-scheme-swatch1{background-color:rgba(95, 170, 100, 1.00);color:rgba(0, 0, 0, 1.00)}.top-bar-wrapper.fn-scheme-swatch1 ul:not(.title-area) ul.dropdown{background-color:rgba(95, 170, 100, 1.00)}.top-bar-wrapper.fn-scheme-swatch1 .site-title,.top-bar-wrapper.fn-scheme-swatch1 .site-title small,.top-bar-wrapper.fn-scheme-swatch1 a:not(.button){color:rgba(0, 0, 0, 1.00) !important}.top-bar-wrapper.fn-scheme-swatch1 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(0, 0, 0, 1.00),0 7px 0 1px rgba(0, 0, 0, 1.00),0 14px 0 1px rgba(0, 0, 0, 1.00);box-shadow:0 0 0 1px rgba(0, 0, 0, 1.00),0 7px 0 1px rgba(0, 0, 0, 1.00),0 14px 0 1px rgba(0, 0, 0, 1.00)}.top-bar-wrapper.fn-scheme-swatch2{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch2 ul:not(.title-area) ul.dropdown{background-color:rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch2 .site-title,.top-bar-wrapper.fn-scheme-swatch2 .site-title small,.top-bar-wrapper.fn-scheme-swatch2 a:not(.button){color:rgba(248, 248, 248, 1.00) !important}.top-bar-wrapper.fn-scheme-swatch2 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(248, 248, 248, 1.00),0 7px 0 1px rgba(248, 248, 248, 1.00),0 14px 0 1px rgba(248, 248, 248, 1.00);box-shadow:0 0 0 1px rgba(248, 248, 248, 1.00),0 7px 0 1px rgba(248, 248, 248, 1.00),0 14px 0 1px rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch3{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch3 ul:not(.title-area) ul.dropdown{background-color:rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch3 .site-title,.top-bar-wrapper.fn-scheme-swatch3 .site-title small,.top-bar-wrapper.fn-scheme-swatch3 a:not(.button){color:rgba(248, 248, 248, 1.00) !important}.top-bar-wrapper.fn-scheme-swatch3 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(248, 248, 248, 1.00),0 7px 0 1px rgba(248, 248, 248, 1.00),0 14px 0 1px rgba(248, 248, 248, 1.00);box-shadow:0 0 0 1px rgba(248, 248, 248, 1.00),0 7px 0 1px rgba(248, 248, 248, 1.00),0 14px 0 1px rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch4{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch4 ul:not(.title-area) ul.dropdown{background-color:rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch4 .site-title,.top-bar-wrapper.fn-scheme-swatch4 .site-title small,.top-bar-wrapper.fn-scheme-swatch4 a:not(.button){color:rgba(34, 34, 34, 1.00) !important}.top-bar-wrapper.fn-scheme-swatch4 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(34, 34, 34, 1.00),0 7px 0 1px rgba(34, 34, 34, 1.00),0 14px 0 1px rgba(34, 34, 34, 1.00);box-shadow:0 0 0 1px rgba(34, 34, 34, 1.00),0 7px 0 1px rgba(34, 34, 34, 1.00),0 14px 0 1px rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch5{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch5 ul:not(.title-area) ul.dropdown{background-color:rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch5 .site-title,.top-bar-wrapper.fn-scheme-swatch5 .site-title small,.top-bar-wrapper.fn-scheme-swatch5 a:not(.button){color:rgba(34, 34, 34, 1.00) !important}.top-bar-wrapper.fn-scheme-swatch5 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(34, 34, 34, 1.00),0 7px 0 1px rgba(34, 34, 34, 1.00),0 14px 0 1px rgba(34, 34, 34, 1.00);box-shadow:0 0 0 1px rgba(34, 34, 34, 1.00),0 7px 0 1px rgba(34, 34, 34, 1.00),0 14px 0 1px rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch6{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch6 ul:not(.title-area) ul.dropdown{background-color:rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch6 .site-title,.top-bar-wrapper.fn-scheme-swatch6 .site-title small,.top-bar-wrapper.fn-scheme-swatch6 a:not(.button){color:rgba(34, 34, 34, 1.00) !important}.top-bar-wrapper.fn-scheme-swatch6 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(34, 34, 34, 1.00),0 7px 0 1px rgba(34, 34, 34, 1.00),0 14px 0 1px rgba(34, 34, 34, 1.00);box-shadow:0 0 0 1px rgba(34, 34, 34, 1.00),0 7px 0 1px rgba(34, 34, 34, 1.00),0 14px 0 1px rgba(34, 34, 34, 1.00)}.alert-box{background-color:rgba(0, 140, 186, 0.00);color:rgba(255, 255, 255, 1.00);border-color:rgba(0, 133, 176, 0.00)}.alert-box a:not(.close){color:rgba(255, 255, 255, 1.00);text-decoration:underline}.alert-box.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00);border-color:rgba(219, 219, 219, 1.00)}.alert-box.alert{background-color:rgba(240, 65, 36, 1.00);border-color:rgba(228, 61, 34, 1.00)}.alert-box.success{background-color:rgba(67, 172, 106, 1.00);border-color:rgba(63, 163, 100, 1.00)}.alert-box.warning{background-color:rgba(240, 138, 36, 1.00);border-color:rgba(228, 131, 34, 1.00)}.alert-box.info{background-color:rgba(160, 211, 232, 1.00);color:rgba(76, 76, 76, 1.00);border-color:rgba(152, 200, 220, 1.00)}.alert-box.radius{border-radius:3px}.breadcrumbs{background-color:rgba(231, 231, 231, 1.00);border-color:rgba(219, 219, 219, 1.00);color:rgba(51, 51, 51, 1.00)}.breadcrumbs .current a{color:rgba(51, 51, 51, 1.00)}.breadcrumbs.radius{border-radius:3px}.breadcrumbs header{display:inline}.breadcrumbs .fa{font-size:1em}.breadcrumbs .unavailable{color:rgba(51, 51, 51, 1.00)}.breadcrumbs li:before{color:rgba(76, 76, 76, 1.00)}.breadcrumbs *:first-child:before{margin:0 .75rem}.button{background-color:rgba(0, 140, 186, 0.00);color:rgba(255, 255, 255, 1.00)}.button:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 133, 176, 0.00)}.button.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.button.secondary:hover{color:rgba(51, 51, 51, 1.00);background-color:rgba(219, 219, 219, 1.00)}.button.alert{background-color:rgba(240, 65, 36, 1.00)}.button.alert:hover{background-color:rgba(228, 61, 34, 1.00)}.button.success{background-color:rgba(67, 172, 106, 1.00)}.button.success:hover{background-color:rgba(63, 163, 100, 1.00)}.button.radius{border-radius:3px}.button.ghost{background-color:transparent;border-width:1px;border-color:rgba(0, 140, 186, 0.00);color:rgba(0, 140, 186, 0.00)}.button.ghost:hover{color:rgba(255, 255, 255, 1.00);border-color:rgba(0, 133, 176, 0.00);background-color:rgba(0, 133, 176, 0.00)}.button.ghost.secondary{border-color:rgba(231, 231, 231, 1.00);color:rgba(231, 231, 231, 1.00)}.button.ghost.secondary:hover{color:rgba(51, 51, 51, 1.00);border-color:rgba(219, 219, 219, 1.00);background-color:rgba(219, 219, 219, 1.00)}.button.ghost.alert{border-color:rgba(240, 65, 36, 1.00);color:rgba(240, 65, 36, 1.00)}.button.ghost.alert:hover{color:rgba(255, 255, 255, 1.00);border-color:rgba(228, 61, 34, 1.00);background-color:rgba(228, 61, 34, 1.00)}.button.ghost.success{border-color:rgba(67, 172, 106, 1.00);color:rgba(67, 172, 106, 1.00)}.button.ghost.success:hover{color:rgba(255, 255, 255, 1.00);border-color:rgba(63, 163, 100, 1.00);background-color:rgba(63, 163, 100, 1.00)}.split.button.radius span{border-top-right-radius:3px;border-bottom-right-radius:3px}.split.button span::after{border-top-color:rgba(255, 255, 255, 1.00)}.split.button.secondary span::after{border-top-color:rgba(51, 51, 51, 1.00)}.button-group.radius > *:first-child,.button-group.radius > *:first-child > a,.button-group.radius > *:first-child > button,.button-group.radius > *:first-child > .button{border-bottom-left-radius:3px;border-top-left-radius:3px}.button-group.radius > *:last-child,.button-group.radius > *:last-child > a,.button-group.radius > *:last-child > button,.button-group.radius > *:last-child > .button{border-top-right-radius:3px;border-bottom-right-radius:3px}.button-group.stack > li .button,.button-group.stack-for-small > li .button{border-top:1px solid rgba(255,255,255,0.5)}.icon-bar{background-color:rgba(0, 140, 186, 0.00);color:rgba(255, 255, 255, 1.00)}.icon-bar > .item{cursor:pointer;color:rgba(255, 255, 255, 1.00)}.icon-bar > .item label,.icon-bar > .item i{color:rgba(255, 255, 255, 1.00)}.icon-bar > .item:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 133, 176, 0.00)}.icon-bar.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.icon-bar.secondary > .item{color:rgba(51, 51, 51, 1.00)}.icon-bar.secondary > .item label,.icon-bar.secondary > .item i{color:rgba(51, 51, 51, 1.00)}.icon-bar.secondary > .item:hover{background-color:rgba(219, 219, 219, 1.00);color:rgba(51, 51, 51, 1.00)}form[data-abide] .error label{color:rgba(240, 65, 36, 1.00)}form[data-abide] .error small.error,form[data-abide] .error span.error{background-color:rgba(240, 65, 36, 1.00);color:rgba(255, 255, 255, 1.00)}input[type="radio"]{margin-left:1px}form input[type="text"],form input[type="password"],form input[type="date"],form input[type="datetime"],form input[type="datetime-local"],form input[type="month"],form input[type="week"],form input[type="email"],form input[type="number"],form input[type="search"],form input[type="tel"],form input[type="time"],form input[type="url"],form textarea,form select{font-size:16px;color:rgba(34, 34, 34, 1.00)}form input[type="text"]:focus,form input[type="password"]:focus,form input[type="date"]:focus,form input[type="datetime"]:focus,form input[type="datetime-local"]:focus,form input[type="month"]:focus,form input[type="week"]:focus,form input[type="email"]:focus,form input[type="number"]:focus,form input[type="search"]:focus,form input[type="tel"]:focus,form input[type="time"]:focus,form input[type="url"]:focus,form textarea:focus,form select:focus{border-color:rgba(0, 140, 186, 0.00)}form fieldset{border-color:rgba(221, 221, 221, 1.00)}form legend{background-color:#FFFFFF}form label{color:rgba(40, 40, 40, 1.00)}form.radius input[type="text"],form.radius input[type="password"],form.radius input[type="date"],form.radius input[type="datetime"],form.radius input[type="datetime-local"],form.radius input[type="month"],form.radius input[type="week"],form.radius input[type="email"],form.radius input[type="number"],form.radius input[type="search"],form.radius input[type="tel"],form.radius input[type="time"],form.radius input[type="url"],form.radius textarea,form.radius select,form.radius small.error{border-radius:3px}form.radius span.prefix,form.radius label.prefix{border-bottom-left-radius:3px;border-top-left-radius:3px}form.radius span.postfix,form.radius label.postfix{border-top-right-radius:3px;border-bottom-right-radius:3px}form.radius .input-group > *:first-child,form.radius .input-group > *:first-child *{border-bottom-left-radius:3px;border-top-left-radius:3px}form.radius .input-group > *:last-child,form.radius .input-group > *:last-child *{border-top-right-radius:3px;border-bottom-right-radius:3px}.range-slider,.range-slider.radius,.range-slider.round{background-color:rgba(255, 255, 255, 1.00);border-color:rgba(225, 225, 225, 1.00)}.range-slider .range-slider-handle,.range-slider.radius .range-slider-handle,.range-slider.round .range-slider-handle{background-color:rgba(0, 140, 186, 0.00)}.range-slider .range-slider-handle:hover,.range-slider.radius .range-slider-handle:hover,.range-slider.round .range-slider-handle:hover{background-color:rgba(0, 133, 176, 0.00)}.range-slider .range-slider-active-segment,.range-slider.radius .range-slider-active-segment,.range-slider.round .range-slider-active-segment{background-color:rgba(225, 225, 225, 1.00)}.range-slider.secondary,.range-slider.radius.secondary,.range-slider.round.secondary{background-color:rgba(51, 51, 51, 1.00);border-color:rgba(21, 21, 21, 1.00)}.range-slider.secondary .range-slider-handle,.range-slider.radius.secondary .range-slider-handle,.range-slider.round.secondary .range-slider-handle{background-color:rgba(231, 231, 231, 1.00)}.range-slider.secondary .range-slider-handle:hover,.range-slider.radius.secondary .range-slider-handle:hover,.range-slider.round.secondary .range-slider-handle:hover{background-color:rgba(219, 219, 219, 1.00)}.range-slider.secondary .range-slider-active-segment,.range-slider.radius.secondary .range-slider-active-segment,.range-slider.round.secondary .range-slider-active-segment{background-color:rgba(21, 21, 21, 1.00)}.slider-display{display:block;margin-top:16px}fieldset.switch label{background-color:#e6e6e6}fieldset.switch label::after{background-color:rgba(255, 255, 255, 1.00)}fieldset.switch input:checked + label{background-color:rgba(0, 140, 186, 0.00)}fieldset.switch.secondary label::after{background-color:rgba(51, 51, 51, 1.00)}fieldset.switch.secondary input:checked + label{background-color:rgba(231, 231, 231, 1.00)}fieldset.switch.alert input:checked + label{background-color:rgba(240, 65, 36, 1.00)}fieldset.switch.success input:checked + label{background-color:rgba(67, 172, 106, 1.00)}.label{background-color:rgba(0, 140, 186, 0.00);color:rgba(255, 255, 255, 1.00);margin-bottom:0}.label.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.label.alert{background-color:rgba(240, 65, 36, 1.00)}.label.success{background-color:rgba(67, 172, 106, 1.00)}.label.radius{border-radius:3px}.alert-box .close{opacity:0.5}.slideshow-wrapper{min-height:50px;z-index:10}.orbit-container .orbit-bullets li{cursor:pointer;background:rgba(231, 231, 231, 1.00)}.orbit-container .orbit-bullets li.active,.orbit-container .orbit-bullets li:hover{background:rgba(0, 140, 186, 0.00)}.accordion .accordion-navigation > a{background-color:rgba(0, 140, 186, 0.00);color:rgba(255, 255, 255, 1.00)}.accordion .accordion-navigation > a:hover{background-color:rgba(0, 133, 176, 0.00)}.accordion .accordion-navigation > a.radius{border-radius:3px}.accordion .accordion-navigation > a.round{border-radius:1000px}.accordion .accordion-navigation.active > a{background-color:rgba(0, 133, 176, 0.00)}.accordion .accordion-navigation > .content{background-color:transparent !important}.accordion.secondary .accordion-navigation > a{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.accordion.secondary .accordion-navigation > a:hover{background-color:rgba(219, 219, 219, 1.00)}.accordion.secondary .accordion-navigation.active > a{background-color:rgba(219, 219, 219, 1.00)}.tabs li.tab-title > a{background-color:rgba(0, 140, 186, 0.00);color:rgba(255, 255, 255, 1.00)}.tabs li.tab-title > a:hover{background-color:rgba(0, 133, 176, 0.00)}.tabs li.tab-title.active > a{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 133, 176, 0.00)}.tabs.secondary li.tab-title > a{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.tabs.secondary li.tab-title > a:hover{background-color:rgba(219, 219, 219, 1.00)}.tabs.secondary li.tab-title.active > a{color:rgba(51, 51, 51, 1.00);background-color:rgba(219, 219, 219, 1.00)}.tabs.swatch1 li.tab-title > a{background-color:rgba(95, 170, 100, 1.00);color:rgba(0, 0, 0, 1.00)}.tabs.swatch1 li.tab-title > a:hover{background-color:rgba(90, 161, 95, 1.00)}.tabs.swatch1 li.tab-title.active > a{color:rgba(0, 0, 0, 1.00);background-color:rgba(90, 161, 95, 1.00)}.tabs.swatch2 li.tab-title > a{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.tabs.swatch2 li.tab-title > a:hover{background-color:rgba(32, 32, 32, 1.00)}.tabs.swatch2 li.tab-title.active > a{color:rgba(248, 248, 248, 1.00);background-color:rgba(32, 32, 32, 1.00)}.tabs.swatch3 li.tab-title > a{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.tabs.swatch3 li.tab-title > a:hover{background-color:rgba(32, 32, 32, 1.00)}.tabs.swatch3 li.tab-title.active > a{color:rgba(248, 248, 248, 1.00);background-color:rgba(32, 32, 32, 1.00)}.tabs.swatch4 li.tab-title > a{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.tabs.swatch4 li.tab-title > a:hover{background-color:rgba(235, 235, 235, 1.00)}.tabs.swatch4 li.tab-title.active > a{color:rgba(34, 34, 34, 1.00);background-color:rgba(235, 235, 235, 1.00)}.tabs.swatch5 li.tab-title > a{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.tabs.swatch5 li.tab-title > a:hover{background-color:rgba(235, 235, 235, 1.00)}.tabs.swatch5 li.tab-title.active > a{color:rgba(34, 34, 34, 1.00);background-color:rgba(235, 235, 235, 1.00)}.tabs.swatch6 li.tab-title > a{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.tabs.swatch6 li.tab-title > a:hover{background-color:rgba(235, 235, 235, 1.00)}.tabs.swatch6 li.tab-title.active > a{color:rgba(34, 34, 34, 1.00);background-color:rgba(235, 235, 235, 1.00)}.tabs.radius li.tab-title:first-child a{border-bottom-left-radius:3px;border-top-left-radius:3px}.tabs.radius li.tab-title:last-child a{border-top-right-radius:3px;border-bottom-right-radius:3px}.th.radius{border-radius:3px}.th:hover,.th:focus{-webkit-box-shadow:0 0 6px 1px rgba(0, 70, 93, 0.00);box-shadow:0 0 6px 1px rgba(0, 70, 93, 0.00)}.f-dropdown,.f-dropdown.content{background-color:rgba(255, 255, 255, 1.00);border-color:rgba(204, 204, 204, 1.00);color:rgba(51, 51, 51, 1.00)}.f-dropdown::before,.f-dropdown.content::before{border-color:transparent transparent rgba(255, 255, 255, 1.00) transparent}.f-dropdown::after,.f-dropdown.content::after{border-color:transparent transparent rgba(204, 204, 204, 1.00) transparent}.f-dropdown li a,.f-dropdown.content li a{color:rgba(51, 51, 51, 1.00)}.f-dropdown li:hover,.f-dropdown.content li:hover{background-color:rgba(0,0,0,0.1)}.f-dropdown.radius,.f-dropdown.content.radius{border-radius:3px}.tooltip{border-radius:3px;background-color:rgba(51, 51, 51, 1.00);color:rgba(255, 255, 255, 1.00)}.panel{background-color:rgba(242, 242, 242, 1.00);border-color:rgba(219, 219, 219, 1.00)}.panel.radius{border-radius:3px}.panel p{color:rgba(34, 34, 34, 1.00)}.panel p a{color:rgba(0, 0, 0, 1.00)}.panel p.alt{color:rgba(255, 255, 255, 1.00)}.panel p.alt a{color:rgba(0, 0, 0, 1.00)}.panel p.alt a:hover{color:rgba(95, 170, 100, 1.00)}.panel p.alt small{color:rgba(255, 255, 255, 1.00)}.panel h1,.panel h2,.panel h3,.panel h4,.panel h5,.panel h6{color:rgba(34, 34, 34, 1.00)}.panel h1.alt,.panel h2.alt,.panel h3.alt,.panel h4.alt,.panel h5.alt,.panel h6.alt{color:rgba(255, 255, 255, 1.00)}.panel h1.subheader,.panel h2.subheader,.panel h3.subheader,.panel h4.subheader,.panel h5.subheader,.panel h6.subheader{color:rgba(44, 44, 44, 1.00)}.panel h1.subheader.alt,.panel h2.subheader.alt,.panel h3.subheader.alt,.panel h4.subheader.alt,.panel h5.subheader.alt,.panel h6.subheader.alt{color:rgba(255, 255, 255, 1.00)}.pricing-table.primary .title{background-color:rgba(0, 140, 186, 0.00);color:rgba(255, 255, 255, 1.00)}.pricing-table.primary .price{color:rgba(34, 34, 34, 1.00)}.pricing-table.primary .description{color:rgba(34, 34, 34, 1.00)}.pricing-table.primary .bullet-item{color:rgba(34, 34, 34, 1.00)}.pricing-table.secondary .title{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.pricing-table.secondary .price{color:rgba(34, 34, 34, 1.00)}.pricing-table.secondary .description{color:rgba(34, 34, 34, 1.00)}.pricing-table.secondary .bullet-item{color:rgba(34, 34, 34, 1.00)}.pricing-table.radius{border-radius:3px}.pricing-table.radius .title{border-top-right-radius:3px;border-top-left-radius:3px}.pricing-table.radius .cta-button{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.side-nav li a:not(.button){color:rgba(0, 0, 0, 1.00)}.side-nav li a:not(.button):hover{background-color:rgba(243, 243, 243, 1.00);color:rgba(95, 170, 100, 1.00)}.side-nav li.active > a:first-child:not(.button){color:rgba(0, 0, 0, 1.00)}.side-nav li.active:not(.has-dropdown) a:not(.button){color:rgba(0, 0, 0, 1.00)}.side-nav header{color:rgba(34, 34, 34, 1.00);margin-top:1rem;margin-bottom:0.5rem}.side-nav label{color:rgba(40, 40, 40, 1.00)}.side-nav li.divider{border-top-color:rgba(221, 221, 221, 1.00)}.side-nav.alt li a:not(.button){color:rgba(0, 0, 0, 1.00)}.side-nav.alt li a:not(.button):hover{background-color:rgba(243, 243, 243, 1.00);color:rgba(95, 170, 100, 1.00)}.side-nav.alt li.active > a:first-child:not(.button){color:rgba(0, 0, 0, 1.00)}.side-nav.alt li.active:not(.has-dropdown) a:not(.button){color:rgba(0, 0, 0, 1.00)}.side-nav.alt header{color:rgba(255, 255, 255, 1.00)}.side-nav.alt label{color:rgba(255, 255, 255, 1.00)}.side-nav.alt li.divider{border-top-color:rgba(221, 221, 221, 1.00)}.sub-nav dt,.sub-nav dd,.sub-nav li{float:none;display:inline-block}.sub-nav dt a:not(.button),.sub-nav dd a:not(.button),.sub-nav li a:not(.button){color:rgba(0, 140, 186, 0.00)}.sub-nav dt a:not(.button):hover,.sub-nav dd a:not(.button):hover,.sub-nav li a:not(.button):hover{color:rgba(0, 133, 176, 0.00)}.sub-nav dt.active a:not(.button),.sub-nav dd.active a:not(.button),.sub-nav li.active a:not(.button){color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 140, 186, 0.00)}.sub-nav dt.active a:not(.button):hover,.sub-nav dd.active a:not(.button):hover,.sub-nav li.active a:not(.button):hover{background-color:rgba(0, 133, 176, 0.00)}.sub-nav dt.active a:not(.button).secondary,.sub-nav dd.active a:not(.button).secondary,.sub-nav li.active a:not(.button).secondary{color:rgba(51, 51, 51, 1.00);background-color:rgba(231, 231, 231, 1.00)}.sub-nav dt.active a:not(.button).secondary:hover,.sub-nav dd.active a:not(.button).secondary:hover,.sub-nav li.active a:not(.button).secondary:hover{background-color:rgba(219, 219, 219, 1.00)}.sub-nav.secondary dt a:not(.button),.sub-nav.secondary dd a:not(.button),.sub-nav.secondary li a:not(.button){color:rgba(231, 231, 231, 1.00)}.sub-nav.secondary dt a:not(.button):hover,.sub-nav.secondary dd a:not(.button):hover,.sub-nav.secondary li a:not(.button):hover{color:rgba(219, 219, 219, 1.00)}.sub-nav.secondary dt.active a:not(.button),.sub-nav.secondary dd.active a:not(.button),.sub-nav.secondary li.active a:not(.button){color:rgba(51, 51, 51, 1.00);background-color:rgba(231, 231, 231, 1.00)}.sub-nav.secondary dt.active a:not(.button):hover,.sub-nav.secondary dd.active a:not(.button):hover,.sub-nav.secondary li.active a:not(.button):hover{background-color:rgba(219, 219, 219, 1.00)}.reveal-modal{z-index:9999;background-color:rgba(255, 255, 255, 1.00);color:rgba(51, 51, 51, 1.00);border:none;border-radius:0}@media screen and (max-width:39.9375em){.reveal-modal{border-radius:0 !important}}.reveal-modal.fullscreen{position:fixed;top:0px !important;width:100vw;height:100vh;overflow-y:scroll}.reveal-modal.fullscreen .close-reveal-modal{position:fixed}.reveal-modal.radius{border-radius:3px}.reveal-modal .close-reveal-modal{color:rgba(170, 170, 170, 1.00);font-weight:normal;z-index:99999}.reveal-modal-bg{z-index:9998;background:rgba(0, 0, 0, 0.45)}nav.inline-nav ul.inline-list{margin-left:0}nav.inline-nav ul.inline-list li{float:none;display:inline-block}nav.inline-nav ul.inline-list li:first-child{margin-left:0}nav.inline-nav ul.inline-list li.active{border-width:0 0 1px 0;border-style:solid;border-bottom-color:rgba(0, 0, 0, 1.00)}nav.inline-nav ul.inline-list.alt li.active{border-bottom-color:rgba(0, 0, 0, 1.00)}.clearing-blackout{background-color:rgba(255, 255, 255, 1.00)}.clearing-assembled .clearing-container .visible-img,.clearing-assembled .clearing-container .clearing-caption{background-color:rgba(255, 255, 255, 1.00)}.clearing-assembled .clearing-container .carousel{background-color:rgba(242, 242, 242, 1.00)}.clearing-assembled .clearing-container .clearing-close{color:rgba(170, 170, 170, 1.00)}.clearing-assembled .clearing-container .clearing-close:hover,.clearing-assembled .clearing-container .clearing-close:focus{color:rgba(170, 170, 170, 1.00)}.clearing-assembled .clearing-container .clearing-main-next > span{border-color:transparent;border-left-color:rgba(51, 51, 51, 1.00)}.clearing-assembled .clearing-container .clearing-main-prev > span{border-color:transparent;border-right-color:rgba(51, 51, 51, 1.00)}.clearing-assembled .clearing-container .clearing-caption{color:rgba(51, 51, 51, 1.00)}.copyright{color:rgba(34, 34, 34, 1.00);font-size:0.9rem}.copyright a{color:rgba(0, 0, 0, 1.00)}.copyright a:hover{color:rgba(95, 170, 100, 1.00)}.stacks_s_hidden,.stacks_m_hidden,.stacks_l_hidden{display:block !important}@media only screen and (max-width:40em){.stacks_s_hidden{display:none !important}}@media only screen and (min-width:40.063em) and (max-width:62.5em){.stacks_m_hidden{display:none !important}}@media only screen and (min-width:62.563em){.stacks_l_hidden{display:none !important}}.fn-text-header{color:rgba(34, 34, 34, 1.00)}.fn-text-link a{color:rgba(0, 0, 0, 1.00)}.fn-text-link a:hover{color:rgba(95, 170, 100, 1.00)}.fn-text-text{color:rgba(34, 34, 34, 1.00)}.fn-text-text p,.fn-text-text div{color:rgba(34, 34, 34, 1.00)}.fn-text-accent{color:rgba(221, 221, 221, 1.00)}.fn-text-code-text{color:rgba(204, 55, 30, 1.00)}.fn-text-header-alt{color:rgba(255, 255, 255, 1.00)}.fn-text-link-alt a{color:rgba(0, 0, 0, 1.00)}.fn-text-link-alt a:hover{color:rgba(95, 170, 100, 1.00)}.fn-text-accent-alt{color:rgba(221, 221, 221, 1.00)}.fn-text-primary{color:rgba(0, 140, 186, 0.00)}.fn-text-primary-text{color:rgba(255, 255, 255, 1.00)}.fn-text-primary-text p,.fn-text-primary-text div{color:rgba(255, 255, 255, 1.00)}.fn-text-secondary{color:rgba(231, 231, 231, 1.00)}.fn-text-secondary-text{color:rgba(51, 51, 51, 1.00)}.fn-text-secondary-text p,.fn-text-secondary-text div{color:rgba(51, 51, 51, 1.00)}.fn-text-alert{color:rgba(240, 65, 36, 1.00)}.fn-text-success{color:rgba(67, 172, 106, 1.00)}.fn-text-warning{color:rgba(240, 138, 36, 1.00)}.fn-text-info{color:rgba(160, 211, 232, 1.00)}.fn-text-modal{color:rgba(255, 255, 255, 1.00)}.fn-text-modal-close{color:rgba(170, 170, 170, 1.00)}.fn-text-modal-text{color:rgba(51, 51, 51, 1.00)}.fn-text-modal-text p,.fn-text-modal-text div{color:rgba(51, 51, 51, 1.00)}.fn-text-text-alt{color:rgba(255, 255, 255, 1.00)}.fn-text-text-alt p,.fn-text-text-alt div{color:rgba(255, 255, 255, 1.00)}.fn-text-text-alt h1,.fn-text-text-alt h2,.fn-text-text-alt h3,.fn-text-text-alt h4,.fn-text-text-alt h5,.fn-text-text-alt h6{color:rgba(255, 255, 255, 1.00)}.fn-text-text-alt h1 a,.fn-text-text-alt h2 a,.fn-text-text-alt h3 a,.fn-text-text-alt h4 a,.fn-text-text-alt h5 a,.fn-text-text-alt h6 a{color:rgba(255, 255, 255, 1.00)}.fn-text-text-alt h1 a:hover,.fn-text-text-alt h2 a:hover,.fn-text-text-alt h3 a:hover,.fn-text-text-alt h4 a:hover,.fn-text-text-alt h5 a:hover,.fn-text-text-alt h6 a:hover{color:rgba(255, 255, 255, 1.00)}.fn-text-text-alt h1 small,.fn-text-text-alt h2 small,.fn-text-text-alt h3 small,.fn-text-text-alt h4 small,.fn-text-text-alt h5 small,.fn-text-text-alt h6 small{color:rgba(255, 255, 255, 1.00)}.fn-text-text-alt a{color:rgba(0, 0, 0, 1.00)}.fn-text-text-alt a:hover{color:rgba(95, 170, 100, 1.00)}.fn-text-sw1c1{color:rgba(95, 170, 100, 1.00)}.fn-text-sw1c1 p,.fn-text-sw1c1 div{color:rgba(95, 170, 100, 1.00)}.fn-text-sw1c1 h1,.fn-text-sw1c1 h2,.fn-text-sw1c1 h3,.fn-text-sw1c1 h4,.fn-text-sw1c1 h5,.fn-text-sw1c1 h6,.fn-text-sw1c1 a{color:rgba(0, 0, 0, 1.00)}.fn-text-sw1c1 a:hover{color:rgba(0, 0, 0, 1.00)}.fn-text-sw1c2{color:rgba(0, 0, 0, 1.00)}.fn-text-sw1c2 p,.fn-text-sw1c2 div{color:rgba(0, 0, 0, 1.00)}.fn-text-sw1c2 h1,.fn-text-sw1c2 h2,.fn-text-sw1c2 h3,.fn-text-sw1c2 h4,.fn-text-sw1c2 h5,.fn-text-sw1c2 h6,.fn-text-sw1c2 a{color:rgba(95, 170, 100, 1.00)}.fn-text-sw1c2 a:hover{color:rgba(90, 161, 95, 1.00)}.fn-text-sw2c1{color:rgba(34, 34, 34, 1.00)}.fn-text-sw2c1 p,.fn-text-sw2c1 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw2c1 h1,.fn-text-sw2c1 h2,.fn-text-sw2c1 h3,.fn-text-sw2c1 h4,.fn-text-sw2c1 h5,.fn-text-sw2c1 h6,.fn-text-sw2c1 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw2c1 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-text-sw2c2{color:rgba(248, 248, 248, 1.00)}.fn-text-sw2c2 p,.fn-text-sw2c2 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw2c2 h1,.fn-text-sw2c2 h2,.fn-text-sw2c2 h3,.fn-text-sw2c2 h4,.fn-text-sw2c2 h5,.fn-text-sw2c2 h6,.fn-text-sw2c2 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw2c2 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw3c1{color:rgba(34, 34, 34, 1.00)}.fn-text-sw3c1 p,.fn-text-sw3c1 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw3c1 h1,.fn-text-sw3c1 h2,.fn-text-sw3c1 h3,.fn-text-sw3c1 h4,.fn-text-sw3c1 h5,.fn-text-sw3c1 h6,.fn-text-sw3c1 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw3c1 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-text-sw3c2{color:rgba(248, 248, 248, 1.00)}.fn-text-sw3c2 p,.fn-text-sw3c2 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw3c2 h1,.fn-text-sw3c2 h2,.fn-text-sw3c2 h3,.fn-text-sw3c2 h4,.fn-text-sw3c2 h5,.fn-text-sw3c2 h6,.fn-text-sw3c2 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw3c2 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw4c1{color:rgba(248, 248, 248, 1.00)}.fn-text-sw4c1 p,.fn-text-sw4c1 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw4c1 h1,.fn-text-sw4c1 h2,.fn-text-sw4c1 h3,.fn-text-sw4c1 h4,.fn-text-sw4c1 h5,.fn-text-sw4c1 h6,.fn-text-sw4c1 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw4c1 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw4c2{color:rgba(34, 34, 34, 1.00)}.fn-text-sw4c2 p,.fn-text-sw4c2 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw4c2 h1,.fn-text-sw4c2 h2,.fn-text-sw4c2 h3,.fn-text-sw4c2 h4,.fn-text-sw4c2 h5,.fn-text-sw4c2 h6,.fn-text-sw4c2 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw4c2 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-text-sw5c1{color:rgba(248, 248, 248, 1.00)}.fn-text-sw5c1 p,.fn-text-sw5c1 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw5c1 h1,.fn-text-sw5c1 h2,.fn-text-sw5c1 h3,.fn-text-sw5c1 h4,.fn-text-sw5c1 h5,.fn-text-sw5c1 h6,.fn-text-sw5c1 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw5c1 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw5c2{color:rgba(34, 34, 34, 1.00)}.fn-text-sw5c2 p,.fn-text-sw5c2 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw5c2 h1,.fn-text-sw5c2 h2,.fn-text-sw5c2 h3,.fn-text-sw5c2 h4,.fn-text-sw5c2 h5,.fn-text-sw5c2 h6,.fn-text-sw5c2 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw5c2 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-text-sw6c1{color:rgba(248, 248, 248, 1.00)}.fn-text-sw6c1 p,.fn-text-sw6c1 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw6c1 h1,.fn-text-sw6c1 h2,.fn-text-sw6c1 h3,.fn-text-sw6c1 h4,.fn-text-sw6c1 h5,.fn-text-sw6c1 h6,.fn-text-sw6c1 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw6c1 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw6c2{color:rgba(34, 34, 34, 1.00)}.fn-text-sw6c2 p,.fn-text-sw6c2 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw6c2 h1,.fn-text-sw6c2 h2,.fn-text-sw6c2 h3,.fn-text-sw6c2 h4,.fn-text-sw6c2 h5,.fn-text-sw6c2 h6,.fn-text-sw6c2 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw6c2 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw1c1{color:rgba(95, 170, 100, 1.00)}.panel .fn-text-sw1c1 p,.panel .fn-text-sw1c1 div{color:rgba(95, 170, 100, 1.00)}.panel .fn-text-sw1c1 h1,.panel .fn-text-sw1c1 h2,.panel .fn-text-sw1c1 h3,.panel .fn-text-sw1c1 h4,.panel .fn-text-sw1c1 h5,.panel .fn-text-sw1c1 h6,.panel .fn-text-sw1c1 a{color:rgba(0, 0, 0, 1.00)}.panel .fn-text-sw1c1 a:hover{color:rgba(0, 0, 0, 1.00)}.panel .fn-text-sw1c2{color:rgba(0, 0, 0, 1.00)}.panel .fn-text-sw1c2 p,.panel .fn-text-sw1c2 div{color:rgba(0, 0, 0, 1.00)}.panel .fn-text-sw1c2 h1,.panel .fn-text-sw1c2 h2,.panel .fn-text-sw1c2 h3,.panel .fn-text-sw1c2 h4,.panel .fn-text-sw1c2 h5,.panel .fn-text-sw1c2 h6,.panel .fn-text-sw1c2 a{color:rgba(95, 170, 100, 1.00)}.panel .fn-text-sw1c2 a:hover{color:rgba(90, 161, 95, 1.00)}.panel .fn-text-sw2c1{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw2c1 p,.panel .fn-text-sw2c1 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw2c1 h1,.panel .fn-text-sw2c1 h2,.panel .fn-text-sw2c1 h3,.panel .fn-text-sw2c1 h4,.panel .fn-text-sw2c1 h5,.panel .fn-text-sw2c1 h6,.panel .fn-text-sw2c1 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw2c1 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw2c2{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw2c2 p,.panel .fn-text-sw2c2 div{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw2c2 h1,.panel .fn-text-sw2c2 h2,.panel .fn-text-sw2c2 h3,.panel .fn-text-sw2c2 h4,.panel .fn-text-sw2c2 h5,.panel .fn-text-sw2c2 h6,.panel .fn-text-sw2c2 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw2c2 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw3c1{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw3c1 p,.panel .fn-text-sw3c1 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw3c1 h1,.panel .fn-text-sw3c1 h2,.panel .fn-text-sw3c1 h3,.panel .fn-text-sw3c1 h4,.panel .fn-text-sw3c1 h5,.panel .fn-text-sw3c1 h6,.panel .fn-text-sw3c1 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw3c1 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw3c2{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw3c2 p,.panel .fn-text-sw3c2 div{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw3c2 h1,.panel .fn-text-sw3c2 h2,.panel .fn-text-sw3c2 h3,.panel .fn-text-sw3c2 h4,.panel .fn-text-sw3c2 h5,.panel .fn-text-sw3c2 h6,.panel .fn-text-sw3c2 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw3c2 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw4c1{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw4c1 p,.panel .fn-text-sw4c1 div{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw4c1 h1,.panel .fn-text-sw4c1 h2,.panel .fn-text-sw4c1 h3,.panel .fn-text-sw4c1 h4,.panel .fn-text-sw4c1 h5,.panel .fn-text-sw4c1 h6,.panel .fn-text-sw4c1 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw4c1 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw4c2{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw4c2 p,.panel .fn-text-sw4c2 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw4c2 h1,.panel .fn-text-sw4c2 h2,.panel .fn-text-sw4c2 h3,.panel .fn-text-sw4c2 h4,.panel .fn-text-sw4c2 h5,.panel .fn-text-sw4c2 h6,.panel .fn-text-sw4c2 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw4c2 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw5c1{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw5c1 p,.panel .fn-text-sw5c1 div{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw5c1 h1,.panel .fn-text-sw5c1 h2,.panel .fn-text-sw5c1 h3,.panel .fn-text-sw5c1 h4,.panel .fn-text-sw5c1 h5,.panel .fn-text-sw5c1 h6,.panel .fn-text-sw5c1 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw5c1 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw5c2{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw5c2 p,.panel .fn-text-sw5c2 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw5c2 h1,.panel .fn-text-sw5c2 h2,.panel .fn-text-sw5c2 h3,.panel .fn-text-sw5c2 h4,.panel .fn-text-sw5c2 h5,.panel .fn-text-sw5c2 h6,.panel .fn-text-sw5c2 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw5c2 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw6c1{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw6c1 p,.panel .fn-text-sw6c1 div{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw6c1 h1,.panel .fn-text-sw6c1 h2,.panel .fn-text-sw6c1 h3,.panel .fn-text-sw6c1 h4,.panel .fn-text-sw6c1 h5,.panel .fn-text-sw6c1 h6,.panel .fn-text-sw6c1 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw6c1 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw6c2{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw6c2 p,.panel .fn-text-sw6c2 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw6c2 h1,.panel .fn-text-sw6c2 h2,.panel .fn-text-sw6c2 h3,.panel .fn-text-sw6c2 h4,.panel .fn-text-sw6c2 h5,.panel .fn-text-sw6c2 h6,.panel .fn-text-sw6c2 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw6c2 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-bg-header{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-text{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-link{background-color:rgba(0, 0, 0, 1.00)}.fn-bg-link-hover{background-color:rgba(95, 170, 100, 1.00)}.fn-bg-accent{background-color:rgba(221, 221, 221, 1.00)}.fn-bg-code-text{background-color:rgba(204, 55, 30, 1.00)}.fn-bg-modal-text{background-color:rgba(51, 51, 51, 1.00)}.fn-bg-header-alt{background-color:rgba(255, 255, 255, 1.00)}.fn-bg-text-alt{background-color:rgba(255, 255, 255, 1.00)}.fn-bg-link-alt{background-color:rgba(0, 0, 0, 1.00)}.fn-bg-link-hover-alt{background-color:rgba(95, 170, 100, 1.00)}.fn-bg-accent-alt{background-color:rgba(221, 221, 221, 1.00)}.fn-bg-primary{background-color:rgba(0, 140, 186, 0.00)}.fn-bg-primary-text{background-color:rgba(255, 255, 255, 1.00)}.fn-bg-secondary{background-color:rgba(231, 231, 231, 1.00)}.fn-bg-secondary-text{background-color:rgba(51, 51, 51, 1.00)}.fn-bg-alert{background-color:rgba(240, 65, 36, 1.00)}.fn-bg-success{background-color:rgba(67, 172, 106, 1.00)}.fn-bg-warning{background-color:rgba(240, 138, 36, 1.00)}.fn-bg-info{background-color:rgba(160, 211, 232, 1.00)}.fn-bg-modal{background-color:rgba(255, 255, 255, 1.00)}.fn-bg-modal-close{background-color:rgba(170, 170, 170, 1.00)}.fn-bg-sw1c1{background-color:rgba(95, 170, 100, 1.00)}.fn-bg-sw1c2{background-color:rgba(0, 0, 0, 1.00)}.fn-bg-sw2c1{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-sw2c2{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw3c1{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-sw3c2{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw4c1{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw4c2{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-sw5c1{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw5c2{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-sw6c1{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw6c2{background-color:rgba(34, 34, 34, 1.00)}.fn-backdrop{background-color:rgba(0, 0, 0, 0.45)}.fn-backdrop-solid{background-color:rgba(0, 0, 0, 0.45)}.fn-scheme-primary{background-color:rgba(0, 140, 186, 0.00);color:rgba(255, 255, 255, 1.00)}.fn-scheme-primary div,.fn-scheme-primary p{color:rgba(255, 255, 255, 1.00)}.fn-scheme-primary.button:hover{background-color:rgba(0, 133, 176, 0.00)}.fn-scheme-secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.fn-scheme-secondary div,.fn-scheme-secondary p{color:rgba(51, 51, 51, 1.00)}.fn-scheme-secondary.button:hover{background-color:rgba(219, 219, 219, 1.00)}.fn-scheme-modal{background-color:rgba(255, 255, 255, 1.00);color:rgba(51, 51, 51, 1.00)}.fn-scheme-modal div,.fn-scheme-modal p{color:rgba(51, 51, 51, 1.00)}.fn-scheme-modal .close{color:rgba(170, 170, 170, 1.00)}.fn-scheme-swatch1{background-color:rgba(95, 170, 100, 1.00);color:rgba(0, 0, 0, 1.00)}.fn-scheme-swatch1 div,.fn-scheme-swatch1 p{color:rgba(0, 0, 0, 1.00)}.fn-scheme-swatch1.switch{background-color:transparent}.fn-scheme-swatch1.switch label::after{background-color:rgba(0, 0, 0, 1.00)}.fn-scheme-swatch1.switch input:checked + label{background-color:rgba(95, 170, 100, 1.00)}.fn-scheme-swatch1.button:hover{background-color:rgba(90, 161, 95, 1.00)}.fn-scheme-swatch1.ghost{background-color:transparent;border-color:rgba(95, 170, 100, 1.00);color:rgba(95, 170, 100, 1.00)}.fn-scheme-swatch1.ghost.button:hover{color:rgba(0, 0, 0, 1.00);border-color:rgba(90, 161, 95, 1.00);background-color:rgba(90, 161, 95, 1.00)}.fn-scheme-swatch2{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch2 div,.fn-scheme-swatch2 p{color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch2.switch{background-color:transparent}.fn-scheme-swatch2.switch label::after{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch2.switch input:checked + label{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch2.button:hover{background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch2.ghost{background-color:transparent;border-color:rgba(34, 34, 34, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch2.ghost.button:hover{color:rgba(248, 248, 248, 1.00);border-color:rgba(32, 32, 32, 1.00);background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch3{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch3 div,.fn-scheme-swatch3 p{color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch3.switch{background-color:transparent}.fn-scheme-swatch3.switch label::after{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch3.switch input:checked + label{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch3.button:hover{background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch3.ghost{background-color:transparent;border-color:rgba(34, 34, 34, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch3.ghost.button:hover{color:rgba(248, 248, 248, 1.00);border-color:rgba(32, 32, 32, 1.00);background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch4{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch4 div,.fn-scheme-swatch4 p{color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch4.switch{background-color:transparent}.fn-scheme-swatch4.switch label::after{background-color:rgba(0, 0, 0, 1.00)}.fn-scheme-swatch4.switch input:checked + label{background-color:rgba(95, 170, 100, 1.00)}.fn-scheme-swatch4.switch label::after{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch4.switch input:checked + label{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch4.button:hover{background-color:rgba(235, 235, 235, 1.00)}.fn-scheme-swatch4.ghost{background-color:transparent;border-color:rgba(248, 248, 248, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch4.ghost.button:hover{color:rgba(34, 34, 34, 1.00);border-color:rgba(235, 235, 235, 1.00);background-color:rgba(235, 235, 235, 1.00)}.fn-scheme-swatch5{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch5 div,.fn-scheme-swatch5 p{color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch5.button:hover{background-color:rgba(235, 235, 235, 1.00)}.fn-scheme-swatch5.switch{background-color:transparent}.fn-scheme-swatch5.switch label::after{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch5.switch input:checked + label{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch5.ghost{background-color:transparent;border-color:rgba(248, 248, 248, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch5.ghost.button:hover{color:rgba(34, 34, 34, 1.00);border-color:rgba(235, 235, 235, 1.00);background-color:rgba(235, 235, 235, 1.00)}.fn-scheme-swatch6{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch6 div,.fn-scheme-swatch6 p{color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch6.switch{background-color:transparent}.fn-scheme-swatch6.switch label::after{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch6.switch input:checked + label{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch6.button:hover{background-color:rgba(235, 235, 235, 1.00)}.fn-scheme-swatch6.ghost{background-color:transparent;border-color:rgba(248, 248, 248, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch6.ghost.button:hover{color:rgba(34, 34, 34, 1.00);border-color:rgba(235, 235, 235, 1.00);background-color:rgba(235, 235, 235, 1.00)}
.sentryEditMode .stacks_top {
	overflow: visible;
}

.stacks_top.cssTransitions,
.cssTransitions {
	transition: all 0.3s;
}

.sentryWrapper {
	margin: 5px 0;
	overflow: visible;
	transition: all 0.3s;
}

.sentryEditMode .sentryOverlay {
	display: none !important;
}

body.sentryEditMode {
	padding-top: 50px !important;
	overflow-x: hidden;
}

.sentryWrapper.sentryEditMode {
	position: relative;
	z-index: 102;
	background: white;
	color: #333;
	opacity: 1;
	margin: 0;
	overflow: visible;
	min-height: 375px; /* Create enough space for drop-down toolbars */
	padding: 0;
}

.formatting-trumbowyg-dropdown button,
.linkImproved-trumbowyg-dropdown button,
.button-trumbowyg-dropdown button {
	margin: 0px !important; /* Fixes problems in the Foundation theme, with wide vertical spacing between drop down links */
}

.sentryWrapper.sentryEditMode p {
	margin: 0;
	padding: 0;
}

.sentryWrapper.sentryEditMode .bgfade {
	background: #e1e1e1;
}

.sentryOverlay {
	position: fixed;
	background: black;
	opacity: 0.7;
	width: 100%;
	height: 100%;
	z-index: 999;
	transition: all 0.3s;
}

.stacks_top .sentryOverlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0%;
	left: 0%;
}

.sentryOverlay.opacity30 { 
	opacity: .30;
}

.sentryLogin {
	position: fixed;
	z-index: 9999;
	width: 100%;
	height: 100%;
}

.sentryLogin form {
	width: 250px;
	height: auto;
	margin: 10% auto;
	padding: 10px;
	background: white;
	border-radius: 3px;
	box-shadow: 0 0 3px black;
}

.sentryLogin form input { 
	display: block;
	margin: 0 auto;
	padding: 10px;
	color: #666;
	border: solid 1px #e7e7e7;
	border-radius: 4px;
	width: 80%;
	margin-bottom: 10px;
}

.sentryLogin form input:focus {
	border: 1px solid #333;
	outline: none;
}

.sentryLogin form input[type="text"],
.sentryLogin form input[type="password"] {
	font-size: 16px;
}

.sentryLogin form p { 
	text-align: center;
	margin: 0;
	padding: 10px 0 0 0;
}

.sentryLogin form label {
	font-weight: bold;
}

.sentryLogin .submitSentryLogin { 
	padding: 7px 14px;
	font-size: 16px;
	outline: 0;
	border: solid 1px #ccc;
	cursor: pointer;
	background: #e7e7e7;
	color: black;
	border-radius: 4px;
}

.sentryLogin .sentryEmailLabel:before {
	content: "Email";
}

.sentryLogin .sentryPasswordLabel:before {
	content: "Password";
}

.sentryLogin .submitSentryLogin:before {
	content: "Login";
}

.sentryLogin .sentryLoginCancel:before {
	content: "Cancel";
}

.sentryLogin .sentryLoginCancel {
	display: inline-block;
	margin-top: 8px;
	font-size: 13px;
	padding-bottom: 10px;
}

.sentryPreview.quickPreview:before {
	content: "Quick Preview";
}

.sentryPreview.endPreview:before {
	content: "End Preview";
}

.sentryLogout:before {
	content: "Logout";
}

.sentrySaveButton:before {
	content: "Save Changes";
}

.sentryAdminControls {
	position: fixed;
	top: 0;
	left: 0;
	height: 50px;
	z-index: 99999;
	width: 100%;
	background: #333;
}

.sentryAdminControls * {
	transition: all 0.3s;
}

.sentryAdminControls p {
	margin: 0;
	padding: 10px 0;
	text-align: center;
}

a.sentrySaveButton,
.sentryAdminControls a {
	color: rgba(0, 0, 0, 1.00);
	display: inline-block;
	padding: 3px 12px;
	margin: 0 15px;
	background: rgba(112, 182, 120, 1.00);
	font-size: 14px;
	text-decoration: none !important;
	border-radius: 3px;
	outline: none;
	transition: all 300ms ease-in-out;
}

a.sentrySaveButton:visited,
.sentryAdminControls a:visited {
	color: rgba(0, 0, 0, 1.00);
	background: rgba(112, 182, 120, 1.00);
}

a.sentrySaveButton:hover,
.sentryAdminControls a:hover {
	background: rgba(97, 158, 104, 1.00);
	color: rgba(0, 0, 0, 1.00);
}

a.sentrySaveButton:active,
.sentryAdminControls a:active {
	background: rgba(97, 158, 104, 1.00);
	color: rgba(0, 0, 0, 1.00);
}

.noTopPadding {
	padding-top: 0 !important;
}

.noBorder { 
	border: none !important;
}

.sentryHide {
	opacity: 0;
	height: 0 !important;
	min-height: 0 !important;
}

/*  */
/*  */
@font-face{font-family:"Ionicons";src:url("ionicons/ionicons.eot?v=4.5.9-1");src:url("ionicons/ionicons.eot?v=4.5.9-1#iefix") format("embedded-opentype"),url("ionicons/ionicons.woff2?v=4.5.9-1") format("woff2"),url("ionicons/ionicons.woff?v=4.5.9-1") format("woff"),url("ionicons/ionicons.ttf?v=4.5.9-1") format("truetype"),url("ionicons/ionicons.svg?v=4.5.9-1#Ionicons") format("svg");font-weight:normal;font-style:normal}
#overlayMenuToggleContainer_stacks_in_295_8 {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  box-sizing: border-box;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  text-align: right;
  /*  */
  /*  */
  /*  */
  /*  */

  /*  */
  padding: 10px 10px 10px 10px;
  /*  */
  position: fixed;
  /*  */
  /*  */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  /*  */
  /*  */
  /*  */
}

#overlayMenuToggle_stacks_in_295_8 {
  text-align: center;
  display: inline-block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: all;
  color: #000000;
  padding: 10px 10px 10px 10px;
  border-radius: 4px;
  z-index: 9999;
  /*  */
  /*  */
  /*  */
  width: auto;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  font-family: inherit;
  /*  */
}
#overlayMenuContainer_stacks_in_295_8 .close-icon {
  box-sizing: border-box;
  /*  */
  /*  */
  /*  */
  right: 0;
  top: 0;
  position: fixed;
  z-index: 9999;
  margin: 10px 10px 10px 10px;
  padding: 10px 10px 10px 10px;
  /*  */
  /*  */
  /*  */
  /*  */
  color: rgba(230, 230, 230, 1.00);
  border-radius: 100px;
  font-size: 24px;
  line-height: 26px;
  /*  */
  background: rgba(0, 0, 0, 0.75);
  /*  */
  /*  */
  line-height: 26px;
  /*  */
  cursor: pointer;
  display: none;
  /*  */
  /*  */
}
#overlayMenuContainer_stacks_in_295_8.open .close-icon {
  display: inline-block;
}
#overlayMenu_stacks_in_295_8 .cssmenu>ul>li>a:hover,
#overlayMenu_stacks_in_295_8 .cssmenu > ul ul > li > a:hover,
#overlayMenu_stacks_in_295_8 .cssmenu ul>li a:hover small,
#overlayMenu_stacks_in_295_8 .cssmenu ul ul li a:hover small,
#overlayMenuToggle_stacks_in_295_8 {
  transition: all 200ms ease;
}
#overlayMenuToggle_stacks_in_295_8:hover {
  /*  */
  /*  */
}
#overlayMenuToggle_stacks_in_295_8:hover,
#overlayMenuContainer_stacks_in_295_8 .close-icon:hover {
  /*  */
  cursor: pointer;
  color: #808004;
  /*  */
  /*  */
  background: rgba(95, 170, 100, 0.82);
  /*  */
  /*  */
}

#overlayMenuToggle_stacks_in_295_8 svg path, #overlayMenuToggle_stacks_in_295_8 i {
  color: #000000;
  fill: #000000;
}
#overlayMenuToggle_stacks_in_295_8:hover svg path, #overlayMenuToggle_stacks_in_295_8:hover i {
  color: #808004;
  fill: #808004;
}
#overlayMenuContainer_stacks_in_295_8 .close-icon svg {
  display: inline-block;
  width: 32px;
    /*  */
}
#overlayMenuContainer_stacks_in_295_8 .close-icon svg {
  display: block;
}
#overlayMenuToggle_stacks_in_295_8 {
  line-height: 0;
}
#overlayMenuToggle_stacks_in_295_8 span {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  line-height: 16px;

  /*  */
  margin-left: 4px;
  /*  */
}
#overlayMenuToggle_stacks_in_295_8 .omToggleIconWrap,
#overlayMenuToggle_stacks_in_295_8 .omToggleIconWrap svg {
  display: inline-block;
}
#overlayMenuToggle_stacks_in_295_8 .omToggleIconWrap {
  max-width: 20px;
}
#overlayMenuToggle_stacks_in_295_8 .omToggleIconWrap svg {
  width: 16px;
}
#overlayMenuToggle_stacks_in_295_8 i {
  font-size: 16px;
  line-height: 16px;
}
/*  */

#overlayMenuContainer_stacks_in_295_8 {
  /*  */
  /*  */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  position: fixed;
  visibility: hidden;
  z-index: 9999;
  transition: all 0.2s ease;
  /*  */
}

#overlayMenuContainer_stacks_in_295_8::before, #overlayMenuContainer_stacks_in_295_8::after {
  content: '';
  /*  */
  top: 50%;
  left: 50%;
  right: 0;
  bottom: 0;
  margin: 0%;
  opacity: 0;
  width: 80px;
  z-index: -1;
  height: 80px;
  position: absolute;
  -webkit-animation: elegantClose 200ms;
  animation: elegantClose 200ms;
  transition: all 200ms ease-in;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /*  */
  /*  */
}
#overlayMenuContainer_stacks_in_295_8 * {
  z-index: 1;
}

#overlayMenuContainer_stacks_in_295_8::before {
  /*  */
  background: #000000;
  /*  */
  /*  */
  /*  */
  opacity: 0.65;
}

#overlayMenuContainer_stacks_in_295_8::after {
  /*  */
}

#overlayMenu_stacks_in_295_8 {
  z-index: 99999999999999999;
  transition: all 0.2s ease-out;
  /*  */
  top: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  width: 100%;
  position: fixed;
  visibility: hidden;
  padding-top: 56px;
  /*  */
  /*  */
  /*  */
  font-family: inherit;
  /*  */
}
#overlayMenuToggle_stacks_in_295_8  span {
  /*  */
  font-family: inherit;
  /*  */
}
#overlayMenu_stacks_in_295_8 li a span {
  /*  */
  font-family: inherit;
  /*  */
}
#overlayMenu_stacks_in_295_8 li a small {
  /*  */
  font-family: inherit;
  /*  */
}

#overlayMenuContainer_stacks_in_295_8.open {
  opacity: 1;
  visibility: visible;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 {
  opacity: 1;
  overflow-y: auto;
  visibility: visible;
  transition-delay: 0.1s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .close-icon {
  opacity: 1;
  transition-delay: 0.4s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu {
  opacity: 1;
  visibility: visible;
  transition-delay: 5s;
  transition: all 0.3s ease;
}

#overlayMenuContainer_stacks_in_295_8.open::before, #overlayMenuContainer_stacks_in_295_8.open::after {
  top: 50%;
  left: 50%;
  margin: 0;
  width: 102%;
  height: 102%;
  visibility: visible;
  -webkit-animation: elegantOpen 200ms;
  animation: elegantOpen 200ms;
  transition: opacity 200ms ease-out;
  -webkit-transform: translate(-51%, -51%);
  transform: translate(-51%, -51%);
}

#overlayMenuContainer_stacks_in_295_8.open::after {
  opacity: 1;
}

#overlayMenu_stacks_in_295_8 .close-icon svg {
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
/*  */
#overlayMenu_stacks_in_295_8 .close-icon:hover svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
/*  */
#overlayMenuFooter_stacks_in_295_8 {
  text-align: left;
  width: 100%;
  max-width: 960px;
  /*  */
  margin: 0 auto;
    padding: 30px;
  color: rgba(230, 230, 230, 1.00);
  /*  */
}

#overlayMenu_stacks_in_295_8 .cssmenu, #overlayMenu_stacks_in_295_8 .cssmenu ul, #overlayMenu_stacks_in_295_8 .cssmenu ul li, #overlayMenu_stacks_in_295_8 .cssmenu ul li a {
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
  line-height: 1;
  list-style: none;
  box-sizing: border-box;
}
/*  */
/*  */

#overlayMenu_stacks_in_295_8 .cssmenu {
  color: #ffffff;
  padding: 0 10px;
  overflow: visible;
  font-family: inherit;
  transition-delay: 0.5s;
  transition: display 0.3s ease;
  /*  */
  /*  */
  /*  */
  display: block;
  margin: 0 auto;
  /*  */
  /*  */
  text-align: left;
  /*  */
  /*  */
  /*  */
  /*  */
  opacity: 0;
  visibility: hidden;
  /*  */
  width: 100%;
  max-width: 400px;
  /*  */
}
#overlayMenu_stacks_in_295_8 .om-text {
  displa
}

#overlayMenu_stacks_in_295_8 .cssmenu ul ul {
  /*  */
  display: none;
  /*  */
  /*  */
}

#overlayMenu_stacks_in_295_8 .cssmenu>ul>li.active>ul {
  display: block;
}

#overlayMenu_stacks_in_295_8 .cssmenu>ul>li {
  transition: all 0.3s ease;
  /*  */
  opacity: 0;
  margin-left: -10%;
  /*  */
  /*  */
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li {
  opacity: 1;
  margin-left: 0%;
  transition: all 0.3s ease;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(1) {
  transition-delay: 0.2s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(2) {
  transition-delay: 0.3s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(3) {
  transition-delay: 0.4s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(4) {
  transition-delay: 0.5s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(5) {
  transition-delay: 0.6s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(6) {
  transition-delay: 0.7s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(7) {
  transition-delay: 0.8s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(8) {
  transition-delay: 0.9s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(9) {
  transition-delay: 1s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(10) {
  transition-delay: 1.1s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(11) {
  transition-delay: 1.2s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(12) {
  transition-delay: 1.3s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(13) {
  transition-delay: 1.4s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(14) {
  transition-delay: 1.5s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(15) {
  transition-delay: 1.6s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(16) {
  transition-delay: 1.7s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(17) {
  transition-delay: 1.8s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(18) {
  transition-delay: 1.9s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(19) {
  transition-delay: 2s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(20) {
  transition-delay: 2.1s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(21) {
  transition-delay: 2.2s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(22) {
  transition-delay: 2.3s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(23) {
  transition-delay: 2.4s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(24) {
  transition-delay: 2.5s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(25) {
  transition-delay: 2.6s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(26) {
  transition-delay: 2.7s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(27) {
  transition-delay: 2.8s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(28) {
  transition-delay: 2.9s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(29) {
  transition-delay: 3s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(30) {
  transition-delay: 3.1s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(31) {
  transition-delay: 3.2s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(32) {
  transition-delay: 3.3s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(33) {
  transition-delay: 3.4s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(34) {
  transition-delay: 3.5s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(35) {
  transition-delay: 3.6s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(36) {
  transition-delay: 3.7s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(37) {
  transition-delay: 3.8s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(38) {
  transition-delay: 3.9s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(39) {
  transition-delay: 4s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(40) {
  transition-delay: 4.1s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(41) {
  transition-delay: 4.2s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(42) {
  transition-delay: 4.3s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(43) {
  transition-delay: 4.4s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(44) {
  transition-delay: 4.5s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(45) {
  transition-delay: 4.6s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(46) {
  transition-delay: 4.7s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(47) {
  transition-delay: 4.8s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(48) {
  transition-delay: 4.9s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(49) {
  transition-delay: 5s;
}

#overlayMenuContainer_stacks_in_295_8.open #overlayMenu_stacks_in_295_8 .cssmenu>ul>li:nth-child(50) {
  transition-delay: 5.1s;
}

#overlayMenu_stacks_in_295_8 .cssmenu ul li {
  margin-bottom: 10px;
}

#overlayMenu_stacks_in_295_8 .cssmenu ul li:last-child {
  margin-bottom: 0;
}

#overlayMenu_stacks_in_295_8 .cssmenu ul li a {
  z-index: 2;
  position: relative;
  text-decoration: none;
  box-sizing: border-box;
  color: rgba(230, 230, 230, 1.00);
  /*  */
  padding: 0px 22px;
  /*  */
  border-radius: 100px;
  font-size: 24px;
  line-height: 26px;
  /*  */
  cursor: pointer;
  /*  */
  /*  */
  background: rgba(0, 0, 0, 0.75);
  /*  */
  /*  */
}
#overlayMenu_stacks_in_295_8 .cssmenu ul li a > .om-item-title-wrap {
  /*  */
  padding: 16px 0px;
  /*  */
}

#overlayMenu_stacks_in_295_8 .cssmenu>ul>li>a:hover,
#overlayMenu_stacks_in_295_8 .cssmenu > ul > li > a[class*="current"],
#overlayMenu_stacks_in_295_8 .cssmenu > ul > li > a[id*="current"],
#overlayMenu_stacks_in_295_8 .cssmenu > ul > li > a[class*="active"],
#overlayMenu_stacks_in_295_8 .cssmenu > ul > li > a[id*="active"],
#overlayMenu_stacks_in_295_8 .cssmenu > ul > li[class*="current"] > a,
#overlayMenu_stacks_in_295_8 .cssmenu > ul > li[id*="current"] > a,
#overlayMenu_stacks_in_295_8 .cssmenu > ul > li[class*="active"] > a,
#overlayMenu_stacks_in_295_8 .cssmenu > ul > li[id*="active"] > a {
  /*  */
  color: rgba(255, 255, 255, 1.00);
  /*  */
  /*  */
  background: rgba(95, 170, 100, 0.82);
  /*  */
  /*  */
}

#overlayMenu_stacks_in_295_8 .cssmenu ul ul li {
  margin-top: 10px;
}

#overlayMenu_stacks_in_295_8 .cssmenu ul ul li:last-child {
  margin-bottom: 0;
}

#overlayMenu_stacks_in_295_8 .cssmenu ul ul li a,
#stacks_in_295_8 .custom_list_type_container .sub_level > a {
  z-index: 2;
  position: relative;
  text-decoration: none;
  line-height: 19.992001px;
  font-size: 19.992001px;
  border-radius: 100px;
  cursor: pointer;
  /*  */

  color: rgba(230, 230, 230, 1.00);
  /*  */
  background: rgba(0, 0, 0, 0.75);
  /*  */
  /*  */
  /*  */
  padding: 0px 22px;
  /*  */

  /*  */
}
#overlayMenu_stacks_in_295_8 .cssmenu ul ul li a > .om-item-title-wrap {
  /*  */
  /*  */
  padding: 16px 0px;
  /*  */

  /*  */
}

#overlayMenu_stacks_in_295_8 .cssmenu > ul ul > li > a:hover,
#overlayMenu_stacks_in_295_8 .cssmenu > ul ul > li > a[class*="current"],
#overlayMenu_stacks_in_295_8 .cssmenu > ul ul > li > a[id*="current"],
#overlayMenu_stacks_in_295_8 .cssmenu > ul ul > li > a[class*="active"],
#overlayMenu_stacks_in_295_8 .cssmenu > ul ul > li > a[id*="active"],
#overlayMenu_stacks_in_295_8 .cssmenu > ul ul > li[class*="current"] > a,
#overlayMenu_stacks_in_295_8 .cssmenu > ul ul > li[id*="current"] > a,
#overlayMenu_stacks_in_295_8 .cssmenu > ul ul > li[class*="active"] > a,
#overlayMenu_stacks_in_295_8 .cssmenu > ul ul > li[id*="active"] > a {
  /*  */
  color: rgba(255, 255, 255, 1.00);
  /*  */
  background: rgba(95, 170, 100, 0.82);
  /*  */
  /*  */
  /*  */
}

#overlayMenu_stacks_in_295_8 .cssmenu ul ul li a {
  margin-left: 15px;
  margin-right: 15px;
}
#overlayMenu_stacks_in_295_8 .cssmenu ul ul ul li a {
  margin-left: 30px;
  margin-right: 30px;
}
#overlayMenu_stacks_in_295_8 .cssmenu ul ul ul ul li a {
   margin-left: 45px;
  margin-right: 45px;
}
#overlayMenu_stacks_in_295_8 .cssmenu ul ul ul ul ul li a {
  margin-left: 60px;
  margin-right: 60px;
}
#overlayMenu_stacks_in_295_8 .cssmenu ul ul ul ul ul ul li a {
   margin-left: 75px;
  margin-right: 75px;
}
#overlayMenu_stacks_in_295_8 .cssmenu .custom_list_type_container .sub_level_1 {
  margin-left: 15px;
  margin-right: 15px;
}
#overlayMenu_stacks_in_295_8 .cssmenu .custom_list_type_container .sub_level_2 {
  margin-left: 30px;
  margin-right: 30px;
}
#overlayMenu_stacks_in_295_8 .cssmenu .custom_list_type_container .sub_level_3 {
  margin-left: 45px;
 margin-right: 45px;
}
#overlayMenu_stacks_in_295_8 .cssmenu .custom_list_type_container .sub_level_4 {
  margin-left: 60px;
  margin-right: 60px;
}
#overlayMenu_stacks_in_295_8 .cssmenu .custom_list_type_container .sub_level_5 {
  margin-left: 75px;
  margin-right: 75px;
}
/*  */
#overlayMenu_stacks_in_295_8 .cssmenu .custom_list_type_container .sub_level,
#overlayMenu_stacks_in_295_8 .cssmenu ul ul li a {
  margin-right: 0px !important;
}
/*  */
/*  */
/*  */
#overlayMenu_stacks_in_295_8 .cssmenu ul li a small ,
#stacks_in_295_8 .custom_list_type_container .sub_level small {
  display: block;
  margin-top: 3px;
  line-height: 16.007999px;
  font-size: 16.007999px;
  color: rgba(255, 255, 255, 1.00);
}

/*  */

#overlayMenu_stacks_in_295_8 .cssmenu ul>li a:hover small {
  color: rgba(255, 255, 255, 1.00);
}

/*  */
#overlayMenu_stacks_in_295_8 .cssmenu ul ul li a small,
#stacks_in_295_8 .custom_list_type_container .sub_level small {
  display: block;
  margin-top: 2px;
  /*  */
  line-height: 16.007999px;
  font-size: 16.007999px;
  color: rgba(255, 255, 255, 1.00);
  /*  */
}

#overlayMenu_stacks_in_295_8 .cssmenu ul ul li a:hover small {
  /*  */
  color: rgba(255, 255, 255, 1.00);
  /*  */
}
#overlayMenu_stacks_in_295_8 .cssmenu ul>li a svg:first-of-type,
#overlayMenu_stacks_in_295_8 .cssmenu ul ul li a svg:first-of-type {
  color: inherit;
  vertical-align: text-top;
}
#overlayMenu_stacks_in_295_8 .cssmenu ul>li a svg:first-of-type {
  width: 24px;
}
#overlayMenu_stacks_in_295_8 .cssmenu ul ul li a svg:first-of-type {
  /*  */
  width: 24px;
  /*  */
}
#overlayMenuContainer_stacks_in_295_8 .close-icon svg path,
#overlayMenuContainer_stacks_in_295_8 .close-icon i {
  fill: rgba(230, 230, 230, 1.00);
}
#overlayMenuContainer_stacks_in_295_8 .close-icon:hover svg path,
#overlayMenuContainer_stacks_in_295_8 .close-icon:hover i {
  fill: rgba(255, 255, 255, 1.00);
}
#overlayMenu_stacks_in_295_8 .cssmenu ul li a svg path,
#overlayMenu_stacks_in_295_8 .cssmenu ul ul li a svg path {
  fill: rgba(230, 230, 230, 1.00);
  vertical-align: text-top;
}
#overlayMenu_stacks_in_295_8 .cssmenu ul>li.has-sub>a {
  display: flex;
  /*  */
  justify-content: space-between;
  /*  */
  /*  */
  /*  */
  align-items: center;
}
#overlayMenu_stacks_in_295_8 .cssmenu ul>li.has-sub>a:after,
#overlayMenu_stacks_in_295_8 .cssmenu ul>li.has-sub>a:before {
  display: none;
}
#overlayMenu_stacks_in_295_8 .cssmenu ul li.has-sub a svg.dropdown-open-icon, #overlayMenu_stacks_in_295_8 .cssmenu ul li.has-sub a svg.dropdown-close-icon {
  /*  */
  display: block;
  /*  */
  /*  */
  /*  */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 32px;
  margin-top: %( 32 - 32) )%px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: visibility 0s, -webkit-transform 0.3s ease;
  transition: visibility 0s, transform 0.3s ease;
  transition: visibility 0s, transform 0.3s ease, -webkit-transform 0.3s ease;
}


#overlayMenu_stacks_in_295_8 .cssmenu ul li.has-sub a svg.dropdown-close-icon {
  /*  */
  display: none;
  /*  */
  /*  */
}
#overlayMenu_stacks_in_295_8 .cssmenu ul li.has-sub.open a svg.dropdown-close-icon {
  /*  */
  display: block;
  /*  */
  /*  */
  /*  */
}
#overlayMenu_stacks_in_295_8 .cssmenu ul li.has-sub.open a svg.dropdown-open-icon {
  display: none;
}
/*  */
#overlayMenuContainer_stacks_in_295_8 .cssmenu ul li.has-sub.open > a > svg.dropdown-open-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
#overlayMenu_stacks_in_295_8 .cssmenu ul li.has-sub.open a svg.dropdown-open-icon {
  /*  */
  display: block;
  /*  */
  /*  */
  /*  */
}
#overlayMenu_stacks_in_295_8 .cssmenu ul li.has-sub.open a svg.dropdown-close-icon {
  display: none;
}
/*  */
/*  */
#overlayMenuContainer_stacks_in_295_8 .cssmenu ul li.has-sub>a>.clickable_dropdown {
  margin-left: 6px;
}

#overlayMenuContainer_stacks_in_295_8 .cssmenu ul>li.has-sub>a {
  overflow: hidden;
}

#overlayMenuContainer_stacks_in_295_8 .cssmenu ul>li.has-sub>a>.clickable_dropdown {
  border: 1px solid rgba(230, 230, 230, 1.00);
  /*  */
}

/*  */
/*  */
@media only screen and (max-width: 600px) {
  #overlayMenu_stacks_in_295_8 .cssmenu {
    max-width: 100%;
    /*  */
  }
}
@media only screen and (max-width: 440px) {
  #overlayMenuContainer_stacks_in_295_8.hide-m, #overlayMenuToggleContainer_stacks_in_295_8.hide-m {
    display: none;
  }
}

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

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

/*  */
@-webkit-keyframes elegantOpen {
  0% {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  30% {
    width: 500px;
    height: 500px;
    border-radius: 50%;
  }
  100% {
    width: 100%;
    height: 100%;
    border-radius: 0%;
  }
}

@keyframes elegantOpen {
  0% {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  30% {
    width: 500px;
    height: 500px;
    border-radius: 50%;
  }
  100% {
    width: 100%;
    height: 100%;
    border-radius: 0%;
  }
}

@-webkit-keyframes elegantClose {
  0% {
    width: 600px;
    height: 600px;
    border-radius: 50%;
  }

  100% {
    width: 80px;
    height: 80px;
    border-radius: 150%;
  }
}

@keyframes elegantClose {
  0% {
    width: 600px;
    height: 600px;
    border-radius: 50%;
  }

  100% {
    width: 80px;
    height: 80px;
    border-radius: 150%;
  }
}

/*  */



#overlayMenu_stacks_in_295_8 .cssmenu>ul>li>a.hover {
  color: rgba(255, 255, 255, 1.00);
}

#overlayMenu_stacks_in_295_8 .cssmenu>ul>li>a.hover small {
  color: rgba(255, 255, 255, 1.00);
}

#overlayMenu_stacks_in_295_8 .cssmenu>ul>li>a.hover small:hover {
  color: rgba(255, 255, 255, 1.00);
}

#overlayMenu_stacks_in_295_8 .cssmenu ul ul li a.hover {
  /*  */
  color: rgba(255, 255, 255, 1.00);
  /*  */
}

/* %[endif]% */
/* DEPRICATED STACK - USE OVELAY MENU N */
@import url(http://fonts.googleapis.com/css?family=Raleway:400,200);
/*  */
#overlayMenuToggleContainer_stacks_in_295_1 {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  box-sizing: border-box;
  /*  */
  /*  */
  text-align: right;
  /*  */
  /*  */
  padding: 10px 10px 10px 10px;
  /*  */
  /*  */
  /*  */
  top: 0;
  /*  */
  left: 0;
  right: 0;
  width: 100%;
  position: fixed;
  z-index: 99999999999;
  /*  */
  /*  */ }

#overlayMenuToggle_stacks_in_295_1 {
  text-align: center;
  display: inline-block;
  box-sizing: border-box;
  -webkit-user-select: all;
     -moz-user-select: all;
      -ms-user-select: all;
          user-select: all;
  pointer-events: all;
  color: #000000;
  padding: 10px 10px 10px 10px;
  border-radius: 15px;
  z-index: 9999999999999;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: auto;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  font-family: "Mussica-Regular", sans-serif;
  /*  */ }
  #overlayMenuToggle_stacks_in_295_1:hover {
    /*  */
    cursor: pointer;
    color: #5FAA64;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #overlayMenuToggle_stacks_in_295_1 span, #overlayMenuToggle_stacks_in_295_1 i {
    vertical-align: middle; }
  #overlayMenuToggle_stacks_in_295_1 span {
    font-size: 17px; }
  #overlayMenuToggle_stacks_in_295_1 i {
    font-size: 15px; }

#overlayMenuContainer_stacks_in_295_1 {
  /*  */
  /*  */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  position: fixed;
  visibility: hidden;
  z-index: 9999999999999;
  transition: all 0.2s ease;
  /*  */ }
  #overlayMenuContainer_stacks_in_295_1::before, #overlayMenuContainer_stacks_in_295_1::after {
    content: '';
    /*  */
    top: 50%;
    left: 50%;
    right: 0;
    bottom: 0;
    margin: 0%;
    opacity: 0;
    width: 80px;
    z-index: -1;
    height: 80px;
    position: absolute;
    -webkit-animation: elegantClose 0.1s;
            animation: elegantClose 0.1s;
    transition: all 0.1s ease-in;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    /*  */
    /*  */ }
  #overlayMenuContainer_stacks_in_295_1::before {
    /*  */
    background: #000000;
    /*  */
    /*  */
    /*  */ }
  #overlayMenuContainer_stacks_in_295_1::after {
    /*  */ }

#overlayMenu_stacks_in_295_1 {
  z-index: 99999999999999999;
  transition: all 0.2s ease-out;
  /*  */
  top: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  width: 100%;
  position: fixed;
  visibility: hidden;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  font-family: "Mussica-Regular", sans-serif;
  /*  */ }

#overlayMenuContainer_stacks_in_295_1.open {
  opacity: 1;
  visibility: visible; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 {
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    transition-delay: 0.1s; }
    #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .close-icon {
      opacity: 1;
      transition-delay: 0.4s; }
    #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu {
      opacity: 1;
      visibility: visible;
      transition-delay: 5s;
      transition: all 0.3s ease; }
  #overlayMenuContainer_stacks_in_295_1.open::before, #overlayMenuContainer_stacks_in_295_1.open::after {
    top: 50%;
    left: 50%;
    margin: 0;
    width: 100%;
    height: 100%;
    visibility: visible;
    -webkit-animation: elegantOpen 0.1s;
            animation: elegantOpen 0.1s;
    transition: opacity 0.1s ease-out;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
  #overlayMenuContainer_stacks_in_295_1.open::before {
    opacity: 0.8; }
  #overlayMenuContainer_stacks_in_295_1.open::after {
    opacity: 1; }

#overlayMenu_stacks_in_295_1 .close-icon {
  opacity: 0;
  overflow: hidden;
  text-align: right;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  box-sizing: border-box;
  color: #FFFFFF;
  z-index: 9999999999999999999999;
  margin-bottom: 0px; }
  #overlayMenu_stacks_in_295_1 .close-icon i {
    padding: 25px;
    font-size: 36px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    border-radius: 50%;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
    #overlayMenu_stacks_in_295_1 .close-icon i:hover {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }

#overlayMenuFooter_stacks_in_295_1 {
  padding: 10px;
  margin-top: 30px;
  /*  */
  color: #FFFFFF;
  /*  */ }

#overlayMenu_stacks_in_295_1 .cssmenu, #overlayMenu_stacks_in_295_1 .cssmenu ul, #overlayMenu_stacks_in_295_1 .cssmenu ul li, #overlayMenu_stacks_in_295_1 .cssmenu ul li a {
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
  line-height: 1;
  list-style: none;
  box-sizing: border-box; }

#overlayMenu_stacks_in_295_1 .cssmenu {
  color: #ffffff;
  padding: 0 10px;
  overflow: visible;
  font-family: inherit;
  transition-delay: 0.5s;
  transition: display 0.3s ease;
  /*  */
  /*  */
  /*  */
  text-align: center;
  /*  */
  /*  */
  opacity: 0;
  visibility: hidden;
  margin: 0 auto;
  /*  */
  /*  */
    max-width: 940px;
  /*  */
  /*  */
  /*  */
  /*  */ }

#overlayMenu_stacks_in_295_1 .cssmenu ul ul {
  /*  */
  display: none;
  /*  */
  /*  */ }

#overlayMenu_stacks_in_295_1 .cssmenu > ul > li.active > ul {
  display: block; }

#overlayMenu_stacks_in_295_1 .cssmenu > ul > li {
  transition: all 0.3s ease;
  /*  */
  opacity: 0;
  margin-left: -10%;
  /*  */
  /*  */ }

#overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li {
  opacity: 1;
  margin-left: 0%;
  transition: all 0.3s ease; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(1) {
    transition-delay: 0.2s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(2) {
    transition-delay: 0.3s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(3) {
    transition-delay: 0.4s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(4) {
    transition-delay: 0.5s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(5) {
    transition-delay: 0.6s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(6) {
    transition-delay: 0.7s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(7) {
    transition-delay: 0.8s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(8) {
    transition-delay: 0.9s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(9) {
    transition-delay: 1s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(10) {
    transition-delay: 1.1s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(11) {
    transition-delay: 1.2s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(12) {
    transition-delay: 1.3s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(13) {
    transition-delay: 1.4s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(14) {
    transition-delay: 1.5s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(15) {
    transition-delay: 1.6s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(16) {
    transition-delay: 1.7s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(17) {
    transition-delay: 1.8s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(18) {
    transition-delay: 1.9s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(19) {
    transition-delay: 2s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(20) {
    transition-delay: 2.1s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(21) {
    transition-delay: 2.2s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(22) {
    transition-delay: 2.3s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(23) {
    transition-delay: 2.4s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(24) {
    transition-delay: 2.5s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(25) {
    transition-delay: 2.6s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(26) {
    transition-delay: 2.7s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(27) {
    transition-delay: 2.8s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(28) {
    transition-delay: 2.9s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(29) {
    transition-delay: 3s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(30) {
    transition-delay: 3.1s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(31) {
    transition-delay: 3.2s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(32) {
    transition-delay: 3.3s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(33) {
    transition-delay: 3.4s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(34) {
    transition-delay: 3.5s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(35) {
    transition-delay: 3.6s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(36) {
    transition-delay: 3.7s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(37) {
    transition-delay: 3.8s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(38) {
    transition-delay: 3.9s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(39) {
    transition-delay: 4s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(40) {
    transition-delay: 4.1s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(41) {
    transition-delay: 4.2s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(42) {
    transition-delay: 4.3s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(43) {
    transition-delay: 4.4s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(44) {
    transition-delay: 4.5s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(45) {
    transition-delay: 4.6s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(46) {
    transition-delay: 4.7s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(47) {
    transition-delay: 4.8s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(48) {
    transition-delay: 4.9s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(49) {
    transition-delay: 5s; }
  #overlayMenuContainer_stacks_in_295_1.open #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:nth-child(50) {
    transition-delay: 5.1s; }

#overlayMenu_stacks_in_295_1 .cssmenu > ul > li {
  margin-bottom: 10px; }
  #overlayMenu_stacks_in_295_1 .cssmenu > ul > li:last-child {
    margin-bottom: 0; }

#overlayMenu_stacks_in_295_1 .cssmenu > ul > li > a {
  z-index: 2;
  position: relative;
  text-decoration: none;
  box-sizing: border-box;
  color: #FFFFFF;
  padding: 16px 22px 16px 22px;
  border-radius: 12px;
  font-size: 24px;
  line-height: 26px;
  /*  */
  cursor: pointer;
  /*  */
  /*  */
  /*  */ }

#overlayMenu_stacks_in_295_1 .cssmenu > ul > li > a:hover {
  /*  */
  color: #000000;
  /*  */
  background: rgba(95, 170, 100, 1.00);
  /*  */
  /*  */
  /*  */ }

#overlayMenu_stacks_in_295_1 .cssmenu > ul > li.has-sub > a {
  padding-right: 51px;
  /*  */
  padding-left: 51px;
  padding-right: 51px;
  /*  */ }

#overlayMenu_stacks_in_295_1 .cssmenu > ul ul > li {
  margin-top: 10px; }
  #overlayMenu_stacks_in_295_1 .cssmenu > ul ul > li:last-child {
    margin-bottom: 0; }

#overlayMenu_stacks_in_295_1 .cssmenu ul ul li a {
  z-index: 2;
  position: relative;
  text-decoration: none;
  padding: 16px 22px;
  border-radius: 12px;
  font-size: 20px;
  /*  */
  cursor: pointer;
  /*  */
  /*  */
  color: #FFFFFF;
  /*  */
  /*  */
  /*  */ }

#overlayMenu_stacks_in_295_1 .cssmenu ul ul li a:hover {
  /*  */
  /*  */
  color: #000000;
  /*  */
  background: rgba(95, 170, 100, 1.00);
  /*  */
  /*  */
  /*  */
  /*  */ }

#overlayMenu_stacks_in_295_1 .cssmenu > ul ul > li.has-sub > a {
  padding-right: 51px;
  /*  */
  /*  */
  padding-left: 51px;
  padding-right: 51px;
  /*  */
  /*  */ }

#overlayMenu_stacks_in_295_1 .cssmenu ul ul li a {
  margin-left: 15px;
  /*  */
  margin-left: 15px;
  margin-right: 15px;
  /*  */ }

#overlayMenu_stacks_in_295_1 .cssmenu ul ul ul li a {
  margin-left: 30px;
  /*  */
  margin-left: 30px;
  margin-right: 30px;
  /*  */ }

#overlayMenu_stacks_in_295_1 .cssmenu ul ul ul ul li a {
  margin-left: 45px;
  /*  */
  margin-left: 45px;
  margin-right: 45px;
  /*  */ }

#overlayMenu_stacks_in_295_1 .cssmenu ul ul ul ul ul li a {
  margin-left: 60px;
  /*  */
  margin-left: 60px;
  margin-right: 60px;
  /*  */ }

#overlayMenu_stacks_in_295_1 .cssmenu ul ul ul ul ul li a {
  margin-left: 75px;
  /*  */
  margin-left: 75px;
  margin-right: 75px;
  /*  */ }

#overlayMenu_stacks_in_295_1 .cssmenu ul > li a small {
  display: block;
  margin-top: 2px;
  line-height: 16px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.50); }

/*  */
#overlayMenu_stacks_in_295_1 .cssmenu ul > li a:hover small {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.50); }

/*  */
#overlayMenu_stacks_in_295_1 .cssmenu ul ul li a small {
  display: block;
  margin-top: 2px;
  line-height: 14px;
  font-size: 14px;
  /*  */
  color: rgba(255, 255, 255, 0.50);
  /*  */ }

#overlayMenu_stacks_in_295_1 .cssmenu ul ul li a:hover small {
  font-size: 14px;
  /*  */
  color: rgba(0, 0, 0, 0.50);
  /*  */ }

#overlayMenu_stacks_in_295_1 .cssmenu ul > li a i:first-of-type {
  color: inherit;
  vertical-align: text-top;
  font-size: 24px;
  line-height: 26px; }

#overlayMenu_stacks_in_295_1 .cssmenu ul ul li a i:first-of-type {
  color: inherit;
  vertical-align: text-top;
  font-size: 20px;
  line-height: 20px;
  line-height: 22px; }

#overlayMenu_stacks_in_295_1 .cssmenu ul > li.has-sub > a i.dropdown-open-icon, #overlayMenu_stacks_in_295_1 .cssmenu ul > li.has-sub > a i.dropdown-close-icon {
  top: 50%;
  z-index: 5;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
  font-size: 24px;
  right: 22px;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  transition: visibility 0s, -webkit-transform 0.3s ease;
  transition: visibility 0s, transform 0.3s ease;
  transition: visibility 0s, transform 0.3s ease, -webkit-transform 0.3s ease; }
  #overlayMenu_stacks_in_295_1 .cssmenu ul > li.has-sub > a i.dropdown-open-icon.dropdown-open-icon, #overlayMenu_stacks_in_295_1 .cssmenu ul > li.has-sub > a i.dropdown-close-icon.dropdown-open-icon {
    opacity: 1;
    visibility: hidden; }
  #overlayMenu_stacks_in_295_1 .cssmenu ul > li.has-sub > a i.dropdown-open-icon.dropdown-close-icon, #overlayMenu_stacks_in_295_1 .cssmenu ul > li.has-sub > a i.dropdown-close-icon.dropdown-close-icon {
    opacity: 0;
    visibility: hidden; }

#overlayMenuContainer_stacks_in_295_1.open .cssmenu ul > li.has-sub > a i.dropdown-open-icon.dropdown-open-icon, #overlayMenuContainer_stacks_in_295_1.open .cssmenu ul > li.has-sub > a i.dropdown-close-icon.dropdown-open-icon {
  opacity: 1;
  visibility: visible; }

#overlayMenuContainer_stacks_in_295_1.open .cssmenu ul > li.has-sub > a i.dropdown-open-icon.dropdown-close-icon, #overlayMenuContainer_stacks_in_295_1.open .cssmenu ul > li.has-sub > a i.dropdown-close-icon.dropdown-close-icon {
  opacity: 0;
  visibility: hidden; }

#overlayMenuContainer_stacks_in_295_1.open .cssmenu ul > li.has-sub.open > a i.dropdown-open-icon.dropdown-open-icon, #overlayMenuContainer_stacks_in_295_1.open .cssmenu ul > li.has-sub.open > a i.dropdown-close-icon.dropdown-open-icon {
  opacity: 0;
  visibility: hidden; }

#overlayMenuContainer_stacks_in_295_1.open .cssmenu ul > li.has-sub.open > a i.dropdown-open-icon.dropdown-close-icon, #overlayMenuContainer_stacks_in_295_1.open .cssmenu ul > li.has-sub.open > a i.dropdown-close-icon.dropdown-close-icon {
  opacity: 1;
  visibility: visible; }

/*  */
#overlayMenuContainer_stacks_in_295_1 .cssmenu ul > li.has-sub > a:hover > .clickable_dropdown {
  border-left: 1px dotted;
  color: #000000; }

#overlayMenuContainer_stacks_in_295_1 .cssmenu ul > li.has-sub > a {
  overflow: hidden; }
  #overlayMenuContainer_stacks_in_295_1 .cssmenu ul > li.has-sub > a > .clickable_dropdown {
    top: 0;
    right: 0;
    height: 100%;
    display: block;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    position: absolute;
    color: #FFFFFF;
    width: 51px; }
    #overlayMenuContainer_stacks_in_295_1 .cssmenu ul > li.has-sub > a > .clickable_dropdown i {
      top: 50%;
      left: 50%;
      right: initial;
      -webkit-transform: translate(-50%, -50%) rotate(0deg);
              transform: translate(-50%, -50%) rotate(0deg); }

#overlayMenuContainer_stacks_in_295_1 .cssmenu ul > li.has-sub.open > a > .clickable_dropdown > i {
  /*  */
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  /*  */ }

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

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

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

/*  */
@-webkit-keyframes elegantOpen {
  0% {
    width: 50px;
    height: 50px;
    border-radius: 100%; }
  40% {
    width: 500px;
    height: 500px;
    border-radius: 40%; }
  100% {
    width: 100%;
    height: 100%;
    border-radius: 0%; } }
@keyframes elegantOpen {
  0% {
    width: 50px;
    height: 50px;
    border-radius: 100%; }
  40% {
    width: 500px;
    height: 500px;
    border-radius: 40%; }
  100% {
    width: 100%;
    height: 100%;
    border-radius: 0%; } }

@-webkit-keyframes elegantClose {
  0% {
    width: 600px;
    height: 600px;
    border-radius: 50%; }
  100% {
    width: 80px;
    height: 80px;
    border-radius: 150%; } }

@keyframes elegantClose {
  0% {
    width: 600px;
    height: 600px;
    border-radius: 50%; }
  100% {
    width: 80px;
    height: 80px;
    border-radius: 150%; } }

/*  */
#overlayMenu_stacks_in_295_1 .cssmenu > ul > li.edit-parent a i.dropdown-open-icon, #overlayMenu_stacks_in_295_1 .cssmenu > ul > li.edit-parent a i.dropdown-close-icon {
  opacity: 1 !important;
  visibility: visible !important; }

#overlayMenu_stacks_in_295_1 .cssmenu > ul > li.edit-parent a i.dropdown-close-icon {
  /*  */
  -webkit-transform: translateY(-50%) rotate(0deg) !important;
          transform: translateY(-50%) rotate(0deg) !important;
  /*  */ }

#overlayMenu_stacks_in_295_1 .cssmenu > ul > li > a.hover {
  color: #000000;
  /*  */
  background: rgba(95, 170, 100, 1.00);
  /*  */
  /*  */ }
  #overlayMenu_stacks_in_295_1 .cssmenu > ul > li > a.hover small {
    color: rgba(0, 0, 0, 0.50); }
    #overlayMenu_stacks_in_295_1 .cssmenu > ul > li > a.hover small:hover {
      color: rgba(0, 0, 0, 0.50); }

#overlayMenu_stacks_in_295_1 .cssmenu ul ul li a.hover {
  /*  */
  color: #000000;
  /*  */
  background: rgba(95, 170, 100, 1.00);
  /*  */
  /*  */
  /*  */ }

/* %[endif]% */
/*  */ }
  #overlayMenuItem_stacks_in_295_7.sub_level_5::before {
    content: 'Sub Level 5';
    background: purple; }


@font-face{font-family:AvenirLTStd-Medium;font-style:normal;font-weight:normal;src:url("https://yeoon.ch/fonts/AvenirLTStd-Medium.woff") format("woff")}@font-face{font-family:AvenirLTStd-Medium;font-style:normal;font-weight:bold;src:url("https://yeoon.ch/fonts/AvenirLTStd-Medium.woff") format("woff")}
 .font-vault-1 > a, .font-vault-1,.font-vault-1 > li, .fontpro-stacks_in_191_2{font-family:"AvenirLTStd-Medium",sans-serif }

@font-face{font-family:Mussica-Regular;font-style:normal;font-weight:normal;src:url("https://yeoon.ch/fonts/Mussica-Regular.woff") format("woff")}
 .font-vault-2 > a, html,body, h1,.font-family-h1,h1 a,.font-family-h1 a, h2,.font-family-h2,h2 a,.font-family-h2 a, h3,.font-family-h3,h3 a,.font-family-h3 a, h4,.font-family-h4,h4 a,.font-family-h4 a, h5,.font-family-h5,h5 a,.font-family-h5 a, h6,.font-family-h6,h6 a,.font-family-h6 a, blockquote, a, ul,ul li,ol,ol li,dl,dl dd, fieldset,input,textarea,form label,input + label,fieldset label,input + datalist,legend, button,.button,.btn, p:not(.custom-font),.font-family-text,.text_stack:not(.custom-font), .font-vault-2,.font-vault-2 > li,.font-vault-2 > *, .fontpro-stacks_in_191_5{font-family:"Mussica-Regular",sans-serif !important}p:not(.custom-font),p.font-family-text:not(.custom-font),.text_stack:not(.custom-font){font-family:"Mussica-Regular",sans-serif !important}


.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_308_1 {
	height: 40px;
}











.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_308_3 {
	height: 20px;
}









    #stacks_in_390_6.blu-wrap.flex-bot{margin-top:auto!important}    #stacks_in_390_6.blu-wrap{background-color:rgba(255, 255, 255, 0.00)}#stacks_in_390_6.blu-wrap>.blueprint-col{}#stacks_in_390_6.blu-wrap>.blueprint-col.flex-width.sb-sm-left{margin-right:auto}#stacks_in_390_6.blu-wrap>.blueprint-col.flex-width.sb-sm-center{margin-right:auto;margin-left:auto}#stacks_in_390_6.blu-wrap>.blueprint-col.flex-width.sb-sm-right{margin-left:auto}#stacks_in_390_6.blu-wrap>.blueprint-col>.blucol-content{margin: 0px ;padding: 0px }#stacks_in_390_6.blu-wrap>.blueprint-col>.blucol-content.bg-color{background-color:rgba(248, 248, 248, 1.00)} @media screen and (min-width:640px){#stacks_in_390_6.blu-wrap>.blueprint-col{ }#stacks_in_390_6.blu-wrap>.blueprint-col.med-flex-width.sb-med-left{margin-right:auto;margin-left:0}#stacks_in_390_6.blu-wrap>.blueprint-col.med-flex-width.sb-med-center{margin-right:auto;margin-left:auto}#stacks_in_390_6.blu-wrap>.blueprint-col.med-flex-width.sb-med-right{margin-left:auto;margin-right:0}#stacks_in_390_6.blu-wrap>.blueprint-col.med-fill-width{width:100%;margin-left:0;margin-right:0}}  @media screen and (min-width:1000px){#stacks_in_390_6.blu-wrap>.blueprint-col{ }
#stacks_in_390_6.blu-wrap>.blueprint-col.lg-flex-width.sb-lg-left,#stacks_in_390_6.blu-wrap>.blueprint-col.med-flex-width.lg-flex-width.sb-lg-left{margin-right:auto;margin-left:0}#stacks_in_390_6.blu-wrap>.blueprint-col.lg-flex-width.sb-lg-center,#stacks_in_390_6.blu-wrap>.blueprint-col.med-flex-width.lg-flex-width.sb-lg-center{margin-right:auto;margin-left:auto}#stacks_in_390_6.blu-wrap>.blueprint-col.lg-flex-width.sb-lg-right,#stacks_in_390_6.blu-wrap>.blueprint-col.med-flex-width.lg-flex-width.sb-lg-right{margin-left:auto;margin-right:0}#stacks_in_390_6.blu-wrap>.blueprint-col.lg-fill-width,#stacks_in_390_6.blu-wrap>.blueprint-col.med-fill-width,#stacks_in_390_6.blu-wrap>.blueprint-col .lg-fill-width{width:100%;max-width:none;margin-left:0;margin-right:0}}     
    #stacks_in_390_13.blu-wrap.flex-bot{margin-top:auto!important}    #stacks_in_390_13.blu-wrap{background-color:rgba(255, 255, 255, 0.00)}#stacks_in_390_13.blu-wrap>.blueprint-col{}#stacks_in_390_13.blu-wrap>.blueprint-col.flex-width.sb-sm-left{margin-right:auto}#stacks_in_390_13.blu-wrap>.blueprint-col.flex-width.sb-sm-center{margin-right:auto;margin-left:auto}#stacks_in_390_13.blu-wrap>.blueprint-col.flex-width.sb-sm-right{margin-left:auto}#stacks_in_390_13.blu-wrap>.blueprint-col>.blucol-content{margin: 0px ;padding: 0px }#stacks_in_390_13.blu-wrap>.blueprint-col>.blucol-content.bg-color{background-color:rgba(248, 248, 248, 1.00)} @media screen and (min-width:640px){#stacks_in_390_13.blu-wrap>.blueprint-col{ }#stacks_in_390_13.blu-wrap>.blueprint-col.med-flex-width.sb-med-left{margin-right:auto;margin-left:0}#stacks_in_390_13.blu-wrap>.blueprint-col.med-flex-width.sb-med-center{margin-right:auto;margin-left:auto}#stacks_in_390_13.blu-wrap>.blueprint-col.med-flex-width.sb-med-right{margin-left:auto;margin-right:0}#stacks_in_390_13.blu-wrap>.blueprint-col.med-fill-width{width:100%;margin-left:0;margin-right:0}}  @media screen and (min-width:1000px){#stacks_in_390_13.blu-wrap>.blueprint-col{ }
#stacks_in_390_13.blu-wrap>.blueprint-col.lg-flex-width.sb-lg-left,#stacks_in_390_13.blu-wrap>.blueprint-col.med-flex-width.lg-flex-width.sb-lg-left{margin-right:auto;margin-left:0}#stacks_in_390_13.blu-wrap>.blueprint-col.lg-flex-width.sb-lg-center,#stacks_in_390_13.blu-wrap>.blueprint-col.med-flex-width.lg-flex-width.sb-lg-center{margin-right:auto;margin-left:auto}#stacks_in_390_13.blu-wrap>.blueprint-col.lg-flex-width.sb-lg-right,#stacks_in_390_13.blu-wrap>.blueprint-col.med-flex-width.lg-flex-width.sb-lg-right{margin-left:auto;margin-right:0}#stacks_in_390_13.blu-wrap>.blueprint-col.lg-fill-width,#stacks_in_390_13.blu-wrap>.blueprint-col.med-fill-width,#stacks_in_390_13.blu-wrap>.blueprint-col .lg-fill-width{width:100%;max-width:none;margin-left:0;margin-right:0}}     


.spacerStack {
	height: 160px;
}

#spacerStackstacks_in_547 {
	height: 160px;
}











.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_548 {
	height: 40px;
}










/* Preview and publish styling */


#animateItWrapperstacks_in_606.animated {
	animation-duration: 2000ms;
	animation-delay: 0ms;
}





#stacks_in_351 figure{text-align:center}#stacks_in_351 .mdph{display:none}#stacks_in_351 .mdp.book-set{widows:5;orphans:5}#stacks_in_351 .mdp.book-set p:not(:first-of-type){text-indent:1.40rem}#stacks_in_351 .mdp.book-set p:not(:last-of-type){margin-bottom:1.25rem !important}#stacks_in_351 .mdp.book-set.indent-all p:first-of-type{text-indent:1.40rem}#stacks_in_351 .mdp.book-set.indent-all blockquote > p:first-of-type{text-indent:0}#stacks_in_351 .mdp.book-set:not(.indent-all) h1 + p,#stacks_in_351 .mdp.book-set:not(.indent-all) h2 + p,#stacks_in_351 .mdp.book-set:not(.indent-all) h3 + p,#stacks_in_351 .mdp.book-set:not(.indent-all) h4 + p,#stacks_in_351 .mdp.book-set:not(.indent-all) h5 + p,#stacks_in_351 .mdp.book-set:not(.indent-all) h6 + p{text-indent:0 !important}#stacks_in_351 .mdp.p-lead p:first-of-type{font-size:130%}#stacks_in_351 p{color:rgba(0, 0, 0, 1.00)}#stacks_in_351 ul,#stacks_in_351 ol,#stacks_in_351 dl{color:rgba(51, 51, 51, 1.00)}#stacks_in_351 h1,#stacks_in_351 h2,#stacks_in_351 h3,#stacks_in_351 h4,#stacks_in_351 h5,#stacks_in_351 h6{color:rgba(0, 0, 0, 1.00)}#stacks_in_351 blockquote,#stacks_in_351 blockquote > p{color:rgba(51, 51, 51, 1.00)}#stacks_in_351 a{color:rgba(0, 102, 153, 1.00)}#stacks_in_351 a:hover{color:rgba(0, 140, 186, 1.00)}#stacks_in_351 pre{background:rgba(255, 239, 192, 1.00);color:rgba(170, 170, 170, 1.00);border:1px solid rgba(34, 34, 34, 1.00);padding:6px;line-height:2;font-size:108%}#stacks_in_351 pre > code{color:rgba(170, 170, 170, 1.00);border:none;background-color:transparent !important}#stacks_in_351 p > code,#stacks_in_351 li > code{background:rgba(204, 57, 50, 1.00);padding:4px 8px;color:rgba(244, 244, 244, 1.00);border-radius:3px}@media only screen and (min-width:480px){#stacks_in_351 p{}}

#stacks_in_351 {
	margin:  20px;
	padding:  20px;
}
#stacks_in_351 h1 {
  font-size: 32px;
  margin-top: 21px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_351 h1 {
      font-size: calc( 32px + 8 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_351 h1 {
      font-size: calc( 40px + 8 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_351 h1 {
      font-size: calc( 48px + -12 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_351 h1 {
      font-size: 36px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_351 h1 {
      margin-top: calc( 21px + 5 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_351 h1 {
      margin-top: calc( 26px + 6 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_351 h1 {
      margin-top: calc( 32px + -8 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_351 h1 {
      margin-top: 24px; } }
#stacks_in_351 h2 {
  font-size: 28px;
  margin-top: 18px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_351 h2 {
      font-size: calc( 28px + 7 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_351 h2 {
      font-size: calc( 35px + 7 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_351 h2 {
      font-size: calc( 42px + -11 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_351 h2 {
      font-size: 31px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_351 h2 {
      margin-top: calc( 18px + 5 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_351 h2 {
      margin-top: calc( 23px + 5 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_351 h2 {
      margin-top: calc( 28px + -7 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_351 h2 {
      margin-top: 21px; } }
#stacks_in_351 h3 {
  font-size: 24px;
  margin-top: 16px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_351 h3 {
      font-size: calc( 24px + 6 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_351 h3 {
      font-size: calc( 30px + 7 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_351 h3 {
      font-size: calc( 37px + -10 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_351 h3 {
      font-size: 27px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_351 h3 {
      margin-top: calc( 16px + 4 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_351 h3 {
      margin-top: calc( 20px + 4 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_351 h3 {
      margin-top: calc( 24px + -6 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_351 h3 {
      margin-top: 18px; } }
#stacks_in_351 h4 {
  font-size: 21px;
  margin-top: 14px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_351 h4 {
      font-size: calc( 21px + 5 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_351 h4 {
      font-size: calc( 26px + 6 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_351 h4 {
      font-size: calc( 32px + -8 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_351 h4 {
      font-size: 24px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_351 h4 {
      margin-top: calc( 14px + 3 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_351 h4 {
      margin-top: calc( 17px + 4 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_351 h4 {
      margin-top: calc( 21px + -5 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_351 h4 {
      margin-top: 16px; } }
#stacks_in_351 h5 {
  font-size: 18px;
  margin-top: 12px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_351 h5 {
      font-size: calc( 18px + 5 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_351 h5 {
      font-size: calc( 23px + 5 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_351 h5 {
      font-size: calc( 28px + -7 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_351 h5 {
      font-size: 21px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_351 h5 {
      margin-top: calc( 12px + 3 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_351 h5 {
      margin-top: calc( 15px + 3 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_351 h5 {
      margin-top: calc( 18px + -4 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_351 h5 {
      margin-top: 14px; } }
#stacks_in_351 h6 {
  font-size: 16px;
  margin-top: 11px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_351 h6 {
      font-size: calc( 16px + 4 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_351 h6 {
      font-size: calc( 20px + 4 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_351 h6 {
      font-size: calc( 24px + -6 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_351 h6 {
      font-size: 18px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_351 h6 {
      margin-top: calc( 11px + 2 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_351 h6 {
      margin-top: calc( 13px + 3 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_351 h6 {
      margin-top: calc( 16px + -4 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_351 h6 {
      margin-top: 12px; } }
#stacks_in_351 h1, #stacks_in_351 h2, #stacks_in_351 h3, #stacks_in_351 h4, #stacks_in_351 h5, #stacks_in_351 h6 {
  margin-bottom: 0; }

#stacks_in_351 div:not(.custom-p) p:not(.custom) {
  font-size: 16px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_351 div:not(.custom-p) p:not(.custom) {
      font-size: calc( 16px + 4 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_351 div:not(.custom-p) p:not(.custom) {
      font-size: calc( 20px + 4 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_351 div:not(.custom-p) p:not(.custom) {
      font-size: calc( 24px + -6 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_351 div:not(.custom-p) p:not(.custom) {
      font-size: 18px; } }
#stacks_in_351 p, #stacks_in_351 pre {
  margin-top: 0;
  margin-bottom: 16px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_351 p, #stacks_in_351 pre {
      margin-bottom: calc( 16px + 4 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_351 p, #stacks_in_351 pre {
      margin-bottom: calc( 20px + 4 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_351 p, #stacks_in_351 pre {
      margin-bottom: calc( 24px + -6 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_351 p, #stacks_in_351 pre {
      margin-bottom: 18px; } }
#stacks_in_351 figure + p {
  margin-top: 16px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_351 figure + p {
      margin-top: calc( 16px + 4 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_351 figure + p {
      margin-top: calc( 20px + 4 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_351 figure + p {
      margin-top: calc( 24px + -6 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_351 figure + p {
      margin-top: 18px; } }
#stacks_in_351 hr {
  margin-top: 18px;
  margin-bottom: 18px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_351 hr {
      margin-top: calc( 18px + 5 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_351 hr {
      margin-top: calc( 23px + 5 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_351 hr {
      margin-top: calc( 28px + -7 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_351 hr {
      margin-top: 21px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_351 hr {
      margin-bottom: calc( 18px + 5 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_351 hr {
      margin-bottom: calc( 23px + 5 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_351 hr {
      margin-bottom: calc( 28px + -7 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_351 hr {
      margin-bottom: 21px; } }
#stacks_in_351 p, #stacks_in_351 h1, #stacks_in_351 h2, #stacks_in_351 h3, #stacks_in_351 h4, #stacks_in_351 h5, #stacks_in_351 h6 {
  line-height: 1.60;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word; }
#stacks_in_428 figure{text-align:center}#stacks_in_428 .mdph{display:none}#stacks_in_428 .mdp.book-set{widows:5;orphans:5}#stacks_in_428 .mdp.book-set p:not(:first-of-type){text-indent:1.40rem}#stacks_in_428 .mdp.book-set p:not(:last-of-type){margin-bottom:1.25rem !important}#stacks_in_428 .mdp.book-set.indent-all p:first-of-type{text-indent:1.40rem}#stacks_in_428 .mdp.book-set.indent-all blockquote > p:first-of-type{text-indent:0}#stacks_in_428 .mdp.book-set:not(.indent-all) h1 + p,#stacks_in_428 .mdp.book-set:not(.indent-all) h2 + p,#stacks_in_428 .mdp.book-set:not(.indent-all) h3 + p,#stacks_in_428 .mdp.book-set:not(.indent-all) h4 + p,#stacks_in_428 .mdp.book-set:not(.indent-all) h5 + p,#stacks_in_428 .mdp.book-set:not(.indent-all) h6 + p{text-indent:0 !important}#stacks_in_428 .mdp.p-lead p:first-of-type{font-size:130%}#stacks_in_428 p{color:rgba(0, 0, 0, 1.00)}#stacks_in_428 ul,#stacks_in_428 ol,#stacks_in_428 dl{color:rgba(51, 51, 51, 1.00)}#stacks_in_428 h1,#stacks_in_428 h2,#stacks_in_428 h3,#stacks_in_428 h4,#stacks_in_428 h5,#stacks_in_428 h6{color:rgba(0, 0, 0, 1.00)}#stacks_in_428 blockquote,#stacks_in_428 blockquote > p{color:rgba(51, 51, 51, 1.00)}#stacks_in_428 a{color:rgba(0, 102, 153, 1.00)}#stacks_in_428 a:hover{color:rgba(0, 140, 186, 1.00)}#stacks_in_428 pre{background:rgba(255, 239, 192, 1.00);color:rgba(170, 170, 170, 1.00);border:1px solid rgba(34, 34, 34, 1.00);padding:6px;line-height:2;font-size:108%}#stacks_in_428 pre > code{color:rgba(170, 170, 170, 1.00);border:none;background-color:transparent !important}#stacks_in_428 p > code,#stacks_in_428 li > code{background:rgba(204, 57, 50, 1.00);padding:4px 8px;color:rgba(244, 244, 244, 1.00);border-radius:3px}@media only screen and (min-width:480px){#stacks_in_428 p{}}

#stacks_in_428 {
	margin:  20px;
	padding:  20px;
}
#stacks_in_428 h1 {
  font-size: 32px;
  margin-top: 21px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_428 h1 {
      font-size: calc( 32px + 8 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_428 h1 {
      font-size: calc( 40px + 8 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_428 h1 {
      font-size: calc( 48px + -12 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_428 h1 {
      font-size: 36px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_428 h1 {
      margin-top: calc( 21px + 5 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_428 h1 {
      margin-top: calc( 26px + 6 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_428 h1 {
      margin-top: calc( 32px + -8 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_428 h1 {
      margin-top: 24px; } }
#stacks_in_428 h2 {
  font-size: 28px;
  margin-top: 18px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_428 h2 {
      font-size: calc( 28px + 7 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_428 h2 {
      font-size: calc( 35px + 7 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_428 h2 {
      font-size: calc( 42px + -11 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_428 h2 {
      font-size: 31px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_428 h2 {
      margin-top: calc( 18px + 5 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_428 h2 {
      margin-top: calc( 23px + 5 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_428 h2 {
      margin-top: calc( 28px + -7 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_428 h2 {
      margin-top: 21px; } }
#stacks_in_428 h3 {
  font-size: 24px;
  margin-top: 16px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_428 h3 {
      font-size: calc( 24px + 6 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_428 h3 {
      font-size: calc( 30px + 7 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_428 h3 {
      font-size: calc( 37px + -10 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_428 h3 {
      font-size: 27px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_428 h3 {
      margin-top: calc( 16px + 4 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_428 h3 {
      margin-top: calc( 20px + 4 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_428 h3 {
      margin-top: calc( 24px + -6 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_428 h3 {
      margin-top: 18px; } }
#stacks_in_428 h4 {
  font-size: 21px;
  margin-top: 14px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_428 h4 {
      font-size: calc( 21px + 5 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_428 h4 {
      font-size: calc( 26px + 6 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_428 h4 {
      font-size: calc( 32px + -8 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_428 h4 {
      font-size: 24px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_428 h4 {
      margin-top: calc( 14px + 3 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_428 h4 {
      margin-top: calc( 17px + 4 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_428 h4 {
      margin-top: calc( 21px + -5 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_428 h4 {
      margin-top: 16px; } }
#stacks_in_428 h5 {
  font-size: 18px;
  margin-top: 12px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_428 h5 {
      font-size: calc( 18px + 5 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_428 h5 {
      font-size: calc( 23px + 5 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_428 h5 {
      font-size: calc( 28px + -7 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_428 h5 {
      font-size: 21px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_428 h5 {
      margin-top: calc( 12px + 3 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_428 h5 {
      margin-top: calc( 15px + 3 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_428 h5 {
      margin-top: calc( 18px + -4 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_428 h5 {
      margin-top: 14px; } }
#stacks_in_428 h6 {
  font-size: 16px;
  margin-top: 11px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_428 h6 {
      font-size: calc( 16px + 4 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_428 h6 {
      font-size: calc( 20px + 4 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_428 h6 {
      font-size: calc( 24px + -6 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_428 h6 {
      font-size: 18px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_428 h6 {
      margin-top: calc( 11px + 2 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_428 h6 {
      margin-top: calc( 13px + 3 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_428 h6 {
      margin-top: calc( 16px + -4 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_428 h6 {
      margin-top: 12px; } }
#stacks_in_428 h1, #stacks_in_428 h2, #stacks_in_428 h3, #stacks_in_428 h4, #stacks_in_428 h5, #stacks_in_428 h6 {
  margin-bottom: 0; }

#stacks_in_428 div:not(.custom-p) p:not(.custom) {
  font-size: 16px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_428 div:not(.custom-p) p:not(.custom) {
      font-size: calc( 16px + 4 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_428 div:not(.custom-p) p:not(.custom) {
      font-size: calc( 20px + 4 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_428 div:not(.custom-p) p:not(.custom) {
      font-size: calc( 24px + -6 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_428 div:not(.custom-p) p:not(.custom) {
      font-size: 18px; } }
#stacks_in_428 p, #stacks_in_428 pre {
  margin-top: 0;
  margin-bottom: 16px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_428 p, #stacks_in_428 pre {
      margin-bottom: calc( 16px + 4 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_428 p, #stacks_in_428 pre {
      margin-bottom: calc( 20px + 4 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_428 p, #stacks_in_428 pre {
      margin-bottom: calc( 24px + -6 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_428 p, #stacks_in_428 pre {
      margin-bottom: 18px; } }
#stacks_in_428 figure + p {
  margin-top: 16px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_428 figure + p {
      margin-top: calc( 16px + 4 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_428 figure + p {
      margin-top: calc( 20px + 4 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_428 figure + p {
      margin-top: calc( 24px + -6 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_428 figure + p {
      margin-top: 18px; } }
#stacks_in_428 hr {
  margin-top: 18px;
  margin-bottom: 18px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_428 hr {
      margin-top: calc( 18px + 5 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_428 hr {
      margin-top: calc( 23px + 5 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_428 hr {
      margin-top: calc( 28px + -7 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_428 hr {
      margin-top: 21px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_428 hr {
      margin-bottom: calc( 18px + 5 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_428 hr {
      margin-bottom: calc( 23px + 5 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_428 hr {
      margin-bottom: calc( 28px + -7 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_428 hr {
      margin-bottom: 21px; } }
#stacks_in_428 p, #stacks_in_428 h1, #stacks_in_428 h2, #stacks_in_428 h3, #stacks_in_428 h4, #stacks_in_428 h5, #stacks_in_428 h6 {
  line-height: 1.60;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word; }


.spacerStack {
	height: 60px;
}

#spacerStackstacks_in_356 {
	height: 60px;
}









#stacks_in_345 figure{text-align:center}#stacks_in_345 .mdph{display:none}#stacks_in_345 .mdp.book-set{widows:5;orphans:5}#stacks_in_345 .mdp.book-set p:not(:first-of-type){text-indent:1.40rem}#stacks_in_345 .mdp.book-set p:not(:last-of-type){margin-bottom:1.25rem !important}#stacks_in_345 .mdp.book-set.indent-all p:first-of-type{text-indent:1.40rem}#stacks_in_345 .mdp.book-set.indent-all blockquote > p:first-of-type{text-indent:0}#stacks_in_345 .mdp.book-set:not(.indent-all) h1 + p,#stacks_in_345 .mdp.book-set:not(.indent-all) h2 + p,#stacks_in_345 .mdp.book-set:not(.indent-all) h3 + p,#stacks_in_345 .mdp.book-set:not(.indent-all) h4 + p,#stacks_in_345 .mdp.book-set:not(.indent-all) h5 + p,#stacks_in_345 .mdp.book-set:not(.indent-all) h6 + p{text-indent:0 !important}#stacks_in_345 .mdp.p-lead p:first-of-type{font-size:130%}#stacks_in_345 p{color:rgba(0, 0, 0, 1.00)}#stacks_in_345 ul,#stacks_in_345 ol,#stacks_in_345 dl{color:rgba(51, 51, 51, 1.00)}#stacks_in_345 h1,#stacks_in_345 h2,#stacks_in_345 h3,#stacks_in_345 h4,#stacks_in_345 h5,#stacks_in_345 h6{color:rgba(0, 0, 0, 1.00)}#stacks_in_345 blockquote,#stacks_in_345 blockquote > p{color:rgba(51, 51, 51, 1.00)}#stacks_in_345 a{color:rgba(0, 102, 153, 1.00)}#stacks_in_345 a:hover{color:rgba(0, 140, 186, 1.00)}#stacks_in_345 pre{background:rgba(255, 239, 192, 1.00);color:rgba(170, 170, 170, 1.00);border:1px solid rgba(34, 34, 34, 1.00);padding:6px;line-height:2;font-size:108%}#stacks_in_345 pre > code{color:rgba(170, 170, 170, 1.00);border:none;background-color:transparent !important}#stacks_in_345 p > code,#stacks_in_345 li > code{background:rgba(204, 57, 50, 1.00);padding:4px 8px;color:rgba(244, 244, 244, 1.00);border-radius:3px}@media only screen and (min-width:0px){#stacks_in_345 p{}}

#stacks_in_345 {
	margin:  20px;
	padding:  20px;
}
#stacks_in_345 h1 {
  font-size: 32px;
  margin-top: 21px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_345 h1 {
      font-size: calc( 32px + 8 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_345 h1 {
      font-size: calc( 40px + 8 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_345 h1 {
      font-size: calc( 48px + -12 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_345 h1 {
      font-size: 36px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_345 h1 {
      margin-top: calc( 21px + 5 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_345 h1 {
      margin-top: calc( 26px + 6 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_345 h1 {
      margin-top: calc( 32px + -8 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_345 h1 {
      margin-top: 24px; } }
#stacks_in_345 h2 {
  font-size: 28px;
  margin-top: 18px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_345 h2 {
      font-size: calc( 28px + 7 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_345 h2 {
      font-size: calc( 35px + 7 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_345 h2 {
      font-size: calc( 42px + -11 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_345 h2 {
      font-size: 31px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_345 h2 {
      margin-top: calc( 18px + 5 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_345 h2 {
      margin-top: calc( 23px + 5 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_345 h2 {
      margin-top: calc( 28px + -7 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_345 h2 {
      margin-top: 21px; } }
#stacks_in_345 h3 {
  font-size: 24px;
  margin-top: 16px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_345 h3 {
      font-size: calc( 24px + 6 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_345 h3 {
      font-size: calc( 30px + 7 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_345 h3 {
      font-size: calc( 37px + -10 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_345 h3 {
      font-size: 27px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_345 h3 {
      margin-top: calc( 16px + 4 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_345 h3 {
      margin-top: calc( 20px + 4 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_345 h3 {
      margin-top: calc( 24px + -6 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_345 h3 {
      margin-top: 18px; } }
#stacks_in_345 h4 {
  font-size: 21px;
  margin-top: 14px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_345 h4 {
      font-size: calc( 21px + 5 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_345 h4 {
      font-size: calc( 26px + 6 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_345 h4 {
      font-size: calc( 32px + -8 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_345 h4 {
      font-size: 24px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_345 h4 {
      margin-top: calc( 14px + 3 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_345 h4 {
      margin-top: calc( 17px + 4 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_345 h4 {
      margin-top: calc( 21px + -5 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_345 h4 {
      margin-top: 16px; } }
#stacks_in_345 h5 {
  font-size: 18px;
  margin-top: 12px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_345 h5 {
      font-size: calc( 18px + 5 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_345 h5 {
      font-size: calc( 23px + 5 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_345 h5 {
      font-size: calc( 28px + -7 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_345 h5 {
      font-size: 21px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_345 h5 {
      margin-top: calc( 12px + 3 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_345 h5 {
      margin-top: calc( 15px + 3 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_345 h5 {
      margin-top: calc( 18px + -4 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_345 h5 {
      margin-top: 14px; } }
#stacks_in_345 h6 {
  font-size: 16px;
  margin-top: 11px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_345 h6 {
      font-size: calc( 16px + 4 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_345 h6 {
      font-size: calc( 20px + 4 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_345 h6 {
      font-size: calc( 24px + -6 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_345 h6 {
      font-size: 18px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_345 h6 {
      margin-top: calc( 11px + 2 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_345 h6 {
      margin-top: calc( 13px + 3 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_345 h6 {
      margin-top: calc( 16px + -4 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_345 h6 {
      margin-top: 12px; } }
#stacks_in_345 h1, #stacks_in_345 h2, #stacks_in_345 h3, #stacks_in_345 h4, #stacks_in_345 h5, #stacks_in_345 h6 {
  margin-bottom: 0; }

#stacks_in_345 div:not(.custom-p) p:not(.custom) {
  font-size: 16px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_345 div:not(.custom-p) p:not(.custom) {
      font-size: calc( 16px + 4 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_345 div:not(.custom-p) p:not(.custom) {
      font-size: calc( 20px + 4 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_345 div:not(.custom-p) p:not(.custom) {
      font-size: calc( 24px + -6 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_345 div:not(.custom-p) p:not(.custom) {
      font-size: 18px; } }
#stacks_in_345 p, #stacks_in_345 pre {
  margin-top: 0;
  margin-bottom: 16px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_345 p, #stacks_in_345 pre {
      margin-bottom: calc( 16px + 4 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_345 p, #stacks_in_345 pre {
      margin-bottom: calc( 20px + 4 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_345 p, #stacks_in_345 pre {
      margin-bottom: calc( 24px + -6 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_345 p, #stacks_in_345 pre {
      margin-bottom: 18px; } }
#stacks_in_345 figure + p {
  margin-top: 16px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_345 figure + p {
      margin-top: calc( 16px + 4 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_345 figure + p {
      margin-top: calc( 20px + 4 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_345 figure + p {
      margin-top: calc( 24px + -6 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_345 figure + p {
      margin-top: 18px; } }
#stacks_in_345 hr {
  margin-top: 18px;
  margin-bottom: 18px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_345 hr {
      margin-top: calc( 18px + 5 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_345 hr {
      margin-top: calc( 23px + 5 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_345 hr {
      margin-top: calc( 28px + -7 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_345 hr {
      margin-top: 21px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_345 hr {
      margin-bottom: calc( 18px + 5 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_345 hr {
      margin-bottom: calc( 23px + 5 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_345 hr {
      margin-bottom: calc( 28px + -7 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_345 hr {
      margin-bottom: 21px; } }
#stacks_in_345 p, #stacks_in_345 h1, #stacks_in_345 h2, #stacks_in_345 h3, #stacks_in_345 h4, #stacks_in_345 h5, #stacks_in_345 h6 {
  line-height: 1.60;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word; }
    #stacks_in_345 h1,#stacks_in_345 h2,#stacks_in_345 h3,#stacks_in_345 h4,#stacks_in_345 h5,#stacks_in_345 h6{font-family:"",Sans-Serif ;font-weight:400 ;font-style:normal }       #stacks_in_345 h1,#stacks_in_345 h2,#stacks_in_345 h3,#stacks_in_345 h4,#stacks_in_345 h5,#stacks_in_345 h6{ font-family:mdp-hfont-stacks_in_369,sans-serif ;}  
/*  */
#stacks_in_293 {
	display: block;
	color: rgba(230, 230, 230, 1.00);
	cursor: pointer;
	transition: color 300ms ease-in-out;
	font-size: 24px;
	line-height: 2.00em;
	
	
	
	
}

#stacks_in_293:hover {
	color: rgba(128, 128, 4, 1.00);
}
/*  */#sentryWrapper_stacks_in_604 .trumbowyg-button-pane {
	position: relative;
	top: auto;
	left: auto;
	height: auto;
	overflow: auto;
}

#sentryWrapper_stacks_in_604 .trumbowyg-box {
	padding-top: 0;
}

#sentryWrapper_stacks_in_604 .trumbowyg-box,
#sentryWrapper_stacks_in_604 .trumbowyg-editor { 
	min-height: 30px;
}

.stacks_top .sentryOverlay+div .stacks_out,
.stacks_top .sentryOverlay+div .stacks_in {
	overflow: visible;
}

#stacks_in_599 figure{text-align:center}#stacks_in_599 .mdph{display:none}#stacks_in_599 .mdp.book-set{widows:5;orphans:5}#stacks_in_599 .mdp.book-set p:not(:first-of-type){text-indent:1.40rem}#stacks_in_599 .mdp.book-set p:not(:last-of-type){margin-bottom:1.25rem !important}#stacks_in_599 .mdp.book-set.indent-all p:first-of-type{text-indent:1.40rem}#stacks_in_599 .mdp.book-set.indent-all blockquote > p:first-of-type{text-indent:0}#stacks_in_599 .mdp.book-set:not(.indent-all) h1 + p,#stacks_in_599 .mdp.book-set:not(.indent-all) h2 + p,#stacks_in_599 .mdp.book-set:not(.indent-all) h3 + p,#stacks_in_599 .mdp.book-set:not(.indent-all) h4 + p,#stacks_in_599 .mdp.book-set:not(.indent-all) h5 + p,#stacks_in_599 .mdp.book-set:not(.indent-all) h6 + p{text-indent:0 !important}#stacks_in_599 .mdp.p-lead p:first-of-type{font-size:130%}#stacks_in_599 p{color:rgba(0, 0, 0, 1.00)}#stacks_in_599 ul,#stacks_in_599 ol,#stacks_in_599 dl{color:rgba(51, 51, 51, 1.00)}#stacks_in_599 h1,#stacks_in_599 h2,#stacks_in_599 h3,#stacks_in_599 h4,#stacks_in_599 h5,#stacks_in_599 h6{color:rgba(0, 0, 0, 1.00)}#stacks_in_599 blockquote,#stacks_in_599 blockquote > p{color:rgba(51, 51, 51, 1.00)}#stacks_in_599 a{color:rgba(0, 102, 153, 1.00)}#stacks_in_599 a:hover{color:rgba(0, 140, 186, 1.00)}#stacks_in_599 pre{background:rgba(255, 239, 192, 1.00);color:rgba(170, 170, 170, 1.00);border:1px solid rgba(34, 34, 34, 1.00);padding:6px;line-height:2;font-size:108%}#stacks_in_599 pre > code{color:rgba(170, 170, 170, 1.00);border:none;background-color:transparent !important}#stacks_in_599 p > code,#stacks_in_599 li > code{background:rgba(204, 57, 50, 1.00);padding:4px 8px;color:rgba(244, 244, 244, 1.00);border-radius:3px}@media only screen and (min-width:0px){#stacks_in_599 p{}}

#stacks_in_599 {
	-moz-border-radius:  2px;
	-webkit-border-radius:  2px;
	border-radius:  2px;
	margin:  20px;
	padding:  20px;
}
#stacks_in_599 h1 {
  font-size: 32px;
  margin-top: 21px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_599 h1 {
      font-size: calc( 32px + 8 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_599 h1 {
      font-size: calc( 40px + 8 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_599 h1 {
      font-size: calc( 48px + -12 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_599 h1 {
      font-size: 36px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_599 h1 {
      margin-top: calc( 21px + 5 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_599 h1 {
      margin-top: calc( 26px + 6 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_599 h1 {
      margin-top: calc( 32px + -8 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_599 h1 {
      margin-top: 24px; } }
#stacks_in_599 h2 {
  font-size: 28px;
  margin-top: 18px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_599 h2 {
      font-size: calc( 28px + 7 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_599 h2 {
      font-size: calc( 35px + 7 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_599 h2 {
      font-size: calc( 42px + -11 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_599 h2 {
      font-size: 31px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_599 h2 {
      margin-top: calc( 18px + 5 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_599 h2 {
      margin-top: calc( 23px + 5 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_599 h2 {
      margin-top: calc( 28px + -7 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_599 h2 {
      margin-top: 21px; } }
#stacks_in_599 h3 {
  font-size: 24px;
  margin-top: 16px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_599 h3 {
      font-size: calc( 24px + 6 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_599 h3 {
      font-size: calc( 30px + 7 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_599 h3 {
      font-size: calc( 37px + -10 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_599 h3 {
      font-size: 27px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_599 h3 {
      margin-top: calc( 16px + 4 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_599 h3 {
      margin-top: calc( 20px + 4 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_599 h3 {
      margin-top: calc( 24px + -6 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_599 h3 {
      margin-top: 18px; } }
#stacks_in_599 h4 {
  font-size: 21px;
  margin-top: 14px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_599 h4 {
      font-size: calc( 21px + 5 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_599 h4 {
      font-size: calc( 26px + 6 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_599 h4 {
      font-size: calc( 32px + -8 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_599 h4 {
      font-size: 24px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_599 h4 {
      margin-top: calc( 14px + 3 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_599 h4 {
      margin-top: calc( 17px + 4 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_599 h4 {
      margin-top: calc( 21px + -5 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_599 h4 {
      margin-top: 16px; } }
#stacks_in_599 h5 {
  font-size: 18px;
  margin-top: 12px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_599 h5 {
      font-size: calc( 18px + 5 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_599 h5 {
      font-size: calc( 23px + 5 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_599 h5 {
      font-size: calc( 28px + -7 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_599 h5 {
      font-size: 21px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_599 h5 {
      margin-top: calc( 12px + 3 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_599 h5 {
      margin-top: calc( 15px + 3 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_599 h5 {
      margin-top: calc( 18px + -4 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_599 h5 {
      margin-top: 14px; } }
#stacks_in_599 h6 {
  font-size: 16px;
  margin-top: 11px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_599 h6 {
      font-size: calc( 16px + 4 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_599 h6 {
      font-size: calc( 20px + 4 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_599 h6 {
      font-size: calc( 24px + -6 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_599 h6 {
      font-size: 18px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_599 h6 {
      margin-top: calc( 11px + 2 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_599 h6 {
      margin-top: calc( 13px + 3 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_599 h6 {
      margin-top: calc( 16px + -4 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_599 h6 {
      margin-top: 12px; } }
#stacks_in_599 h1, #stacks_in_599 h2, #stacks_in_599 h3, #stacks_in_599 h4, #stacks_in_599 h5, #stacks_in_599 h6 {
  margin-bottom: 0; }

#stacks_in_599 div:not(.custom-p) p:not(.custom) {
  font-size: 16px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_599 div:not(.custom-p) p:not(.custom) {
      font-size: calc( 16px + 4 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_599 div:not(.custom-p) p:not(.custom) {
      font-size: calc( 20px + 4 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_599 div:not(.custom-p) p:not(.custom) {
      font-size: calc( 24px + -6 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_599 div:not(.custom-p) p:not(.custom) {
      font-size: 18px; } }
#stacks_in_599 p, #stacks_in_599 pre {
  margin-top: 0;
  margin-bottom: 16px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_599 p, #stacks_in_599 pre {
      margin-bottom: calc( 16px + 4 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_599 p, #stacks_in_599 pre {
      margin-bottom: calc( 20px + 4 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_599 p, #stacks_in_599 pre {
      margin-bottom: calc( 24px + -6 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_599 p, #stacks_in_599 pre {
      margin-bottom: 18px; } }
#stacks_in_599 figure + p {
  margin-top: 16px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_599 figure + p {
      margin-top: calc( 16px + 4 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_599 figure + p {
      margin-top: calc( 20px + 4 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_599 figure + p {
      margin-top: calc( 24px + -6 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_599 figure + p {
      margin-top: 18px; } }
#stacks_in_599 hr {
  margin-top: 18px;
  margin-bottom: 18px; }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_599 hr {
      margin-top: calc( 18px + 5 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_599 hr {
      margin-top: calc( 23px + 5 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_599 hr {
      margin-top: calc( 28px + -7 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_599 hr {
      margin-top: 21px; } }
  @media (min-width: 0px) and (max-width: 640px) {
    #stacks_in_599 hr {
      margin-bottom: calc( 18px + 5 * ( ( 100vw - 0px) / 640 )); } }
  @media (min-width: 640px) and (max-width: 1000px) {
    #stacks_in_599 hr {
      margin-bottom: calc( 23px + 5 * ( ( 100vw - 640px) / 360 )); } }
  @media (min-width: 1000px) and (max-width: 1224px) {
    #stacks_in_599 hr {
      margin-bottom: calc( 28px + -7 * ( ( 100vw - 1000px) / 224 )); } }
  @media (min-width: 1224px) {
    #stacks_in_599 hr {
      margin-bottom: 21px; } }
#stacks_in_599 p, #stacks_in_599 h1, #stacks_in_599 h2, #stacks_in_599 h3, #stacks_in_599 h4, #stacks_in_599 h5, #stacks_in_599 h6 {
  line-height: 1.60;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word; }
    #stacks_in_599 h1,#stacks_in_599 h2,#stacks_in_599 h3,#stacks_in_599 h4,#stacks_in_599 h5,#stacks_in_599 h6{font-family:"",Sans-Serif ;font-weight:400 ;font-style:normal }       #stacks_in_599 h1,#stacks_in_599 h2,#stacks_in_599 h3,#stacks_in_599 h4,#stacks_in_599 h5,#stacks_in_599 h6{ font-family:mdp-hfont-stacks_in_602,sans-serif ;}  


.spacerStack {
	height: 80px;
}

#spacerStackstacks_in_406 {
	height: 80px;
}










#stacks_in_523 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}
            #stacks_in_523_2 .hTxt:before{position:absolute!important;content:"";width:100%; height:2px; bottom:-2px;  opacity:1; left:0;right:0;background-color:rgba(207, 0, 32, 0.00);visibility:hidden;-webkit-transform:scale(0);-moz-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0);-webkit-transition:all 300ms 0s ease-in-out;-moz-transition:all 300ms 0s ease-in-out;transition:all 300ms 0s ease-in-out}
#stacks_in_523_2 .hTxt:hover{color:rgba(0, 0, 0, 1.00)}#stacks_in_523_2 .hTxt:hover:before{position:relative;visibility:visible;bottom:-2px;opacity:1;-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}#stacks_in_523_2 .hTxt{position:relative}         





#parallaxerstacks_in_523_4 .paraimg {




  width: 100%;
  
  object-fit: contain;


  

}


#parallaxerstacks_in_523_4 {
    position: relative;
    text-align: center;
    overflow: hidden;
}

@media only screen and (min-width: 768px) {
    #parallaxerstacks_in_523_4 {
        max-height: 450px; 
    }
}

@media only screen and (max-width: 768px) {
    #parallaxerstacks_in_523_4 {
      
    }
}



#parallaxerstacks_in_523_4 .par-centered {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);

}


















#stacks_in_523_4 {
	-moz-border-radius: 50px 50px 50px 50px;
	-webkit-border-radius: 50px 50px 50px 50px;
	border-radius: 50px 50px 50px 50px;
	margin:  20px;
}


.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_523_5 {
	height: 40px;
}









            #stacks_in_523_6 .hTxt:before{position:absolute!important;content:"";width:100%; height:2px; bottom:-2px;  opacity:1; left:0;right:0;background-color:rgba(207, 0, 32, 0.00);visibility:hidden;-webkit-transform:scale(0);-moz-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0);-webkit-transition:all 300ms 0s ease-in-out;-moz-transition:all 300ms 0s ease-in-out;transition:all 300ms 0s ease-in-out}
#stacks_in_523_6 .hTxt:hover{color:rgba(0, 0, 0, 1.00)}#stacks_in_523_6 .hTxt:hover:before{position:relative;visibility:visible;bottom:-2px;opacity:1;-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}#stacks_in_523_6 .hTxt{position:relative}         





#parallaxerstacks_in_523_8 .paraimg {




  width: 100%;
  
  object-fit: contain;


  

}


#parallaxerstacks_in_523_8 {
    position: relative;
    text-align: center;
    overflow: hidden;
}

@media only screen and (min-width: 768px) {
    #parallaxerstacks_in_523_8 {
        max-height: 450px; 
    }
}

@media only screen and (max-width: 768px) {
    #parallaxerstacks_in_523_8 {
      
    }
}



#parallaxerstacks_in_523_8 .par-centered {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);

}


















#stacks_in_523_8 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	margin:  20px;
}


.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_523_9 {
	height: 40px;
}









            #stacks_in_523_10 .hTxt:before{position:absolute!important;content:"";width:100%; height:2px; bottom:-2px;  opacity:1; left:0;right:0;background-color:rgba(207, 0, 32, 0.00);visibility:hidden;-webkit-transform:scale(0);-moz-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0);-webkit-transition:all 300ms 0s ease-in-out;-moz-transition:all 300ms 0s ease-in-out;transition:all 300ms 0s ease-in-out}
#stacks_in_523_10 .hTxt:hover{color:rgba(0, 0, 0, 1.00)}#stacks_in_523_10 .hTxt:hover:before{position:relative;visibility:visible;bottom:-2px;opacity:1;-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}#stacks_in_523_10 .hTxt{position:relative}         





#parallaxerstacks_in_523_12 .paraimg {




  width: 100%;
  
  object-fit: contain;


  

}


#parallaxerstacks_in_523_12 {
    position: relative;
    text-align: center;
    overflow: hidden;
}

@media only screen and (min-width: 768px) {
    #parallaxerstacks_in_523_12 {
        max-height: 450px; 
    }
}

@media only screen and (max-width: 768px) {
    #parallaxerstacks_in_523_12 {
      
    }
}



#parallaxerstacks_in_523_12 .par-centered {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);

}


















#stacks_in_523_12 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	margin:  20px;
}


.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_523_13 {
	height: 40px;
}









            #stacks_in_523_14 .hTxt:before{position:absolute!important;content:"";width:100%; height:2px; bottom:-2px;  opacity:1; left:0;right:0;background-color:rgba(207, 0, 32, 0.00);visibility:hidden;-webkit-transform:scale(0);-moz-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0);-webkit-transition:all 300ms 0s ease-in-out;-moz-transition:all 300ms 0s ease-in-out;transition:all 300ms 0s ease-in-out}
#stacks_in_523_14 .hTxt:hover{color:rgba(0, 0, 0, 1.00)}#stacks_in_523_14 .hTxt:hover:before{position:relative;visibility:visible;bottom:-2px;opacity:1;-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}#stacks_in_523_14 .hTxt{position:relative}         





#parallaxerstacks_in_523_16 .paraimg {




  width: 100%;
  
  object-fit: contain;


  

}


#parallaxerstacks_in_523_16 {
    position: relative;
    text-align: center;
    overflow: hidden;
}

@media only screen and (min-width: 768px) {
    #parallaxerstacks_in_523_16 {
        max-height: 450px; 
    }
}

@media only screen and (max-width: 768px) {
    #parallaxerstacks_in_523_16 {
      
    }
}



#parallaxerstacks_in_523_16 .par-centered {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);

}


















#stacks_in_523_16 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	margin:  20px;
}


.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_523_17 {
	height: 40px;
}









            #stacks_in_523_18 .hTxt:before{position:absolute!important;content:"";width:100%; height:2px; bottom:-2px;  opacity:1; left:0;right:0;background-color:rgba(207, 0, 32, 0.00);visibility:hidden;-webkit-transform:scale(0);-moz-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0);-webkit-transition:all 300ms 0s ease-in-out;-moz-transition:all 300ms 0s ease-in-out;transition:all 300ms 0s ease-in-out}
#stacks_in_523_18 .hTxt:hover{color:rgba(0, 0, 0, 1.00)}#stacks_in_523_18 .hTxt:hover:before{position:relative;visibility:visible;bottom:-2px;opacity:1;-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}#stacks_in_523_18 .hTxt{position:relative}         





#parallaxerstacks_in_523_20 .paraimg {




  width: 100%;
  
  object-fit: contain;


  

}


#parallaxerstacks_in_523_20 {
    position: relative;
    text-align: center;
    overflow: hidden;
}

@media only screen and (min-width: 768px) {
    #parallaxerstacks_in_523_20 {
        max-height: 450px; 
    }
}

@media only screen and (max-width: 768px) {
    #parallaxerstacks_in_523_20 {
      
    }
}



#parallaxerstacks_in_523_20 .par-centered {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);

}


















#stacks_in_523_20 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	margin:  20px;
}
            #stacks_in_524_2 .hTxt:before{position:absolute!important;content:"";width:100%; height:2px; bottom:-2px;  opacity:1; left:0;right:0;background-color:rgba(207, 0, 32, 0.00);visibility:hidden;-webkit-transform:scale(0);-moz-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0);-webkit-transition:all 300ms 0s ease-in-out;-moz-transition:all 300ms 0s ease-in-out;transition:all 300ms 0s ease-in-out}
#stacks_in_524_2 .hTxt:hover{color:rgba(0, 0, 0, 1.00)}#stacks_in_524_2 .hTxt:hover:before{position:relative;visibility:visible;bottom:-2px;opacity:1;-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}#stacks_in_524_2 .hTxt{position:relative}         


.spacerStack {
	height: 10px;
}

#spacerStackstacks_in_524_72 {
	height: 10px;
}









 #stacks_in_524_4.sections-box--stack>.s-box.bdr-vault::before,#stacks_in_524_4.sections-box--stack .bdr-child::before{z-index:-1;position:absolute;top:0;left:0;right:0;bottom:0;content:""}#stacks_in_524_4.sections-box--stack>.s-box.o-bg-vault::after{z-index:-1!important}      #stacks_in_524_4{position:relative;overflow:visible;pointer-events:auto; z-index:auto;}#stacks_in_524_4.box-pos>.s-box{overflow:visible} #stacks_in_524_4{-webkit-perspective:600px;perspective:600px;-webkit-perspective-origin:50.00% 50.00%;perspective-origin:50.00% 50.00%} #stacks_in_524_4>.s-box{margin: 0px }#stacks_in_524_4>.s-box>.s-box-content{padding: 0px }@media screen and (min-width:640.00px) and (max-width:1000.00px){#stacks_in_524_4>.s-box>.s-box-content{padding: 0px }}@media screen and (min-width:1000.00px){#stacks_in_524_4>.s-box>.s-box-content{padding: 0px }}   #stacks_in_524_4{max-width:95.00%}@media all and (min-width:600px){#stacks_in_524_4{max-width:95.00%}}#stacks_in_524_4.auto-width{width:auto!important}#stacks_in_524_4.box-pos[data-equalizer-watch]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}#stacks_in_524_4>.s-box{position:relative} #stacks_in_524_4.box-pos{height:50.00vh}@media all and (min-width:600px){#stacks_in_524_4.box-pos{height:50.00vh}}      
 .style-pro-stacks_in_524_4::before{position:absolute;top:0;bottom:0;left:0;right:0;content:"";z-index:-1}      .style-pro-stacks_in_524_4:not(.bg-vault):before{opacity:1.0;background-repeat:no-repeat;background-position:center center;background-size:cover; background-attachment:fixed;width:100%;}.style-pro-stacks_in_524_4:not(.bg-vault):not(.bg-featured)::before{ background-image:url(../files/obgImage-5-596.jpg); }@media only screen and (max-device-width:1024px){.style-pro-stacks_in_524_4:not(.bg-vault)::before{background-attachment:scroll!important}}    

 .style-pro-stacks_in_524_4::before{position:absolute;top:0;bottom:0;left:0;right:0;content:"";z-index:-1}.style-pro-stacks_in_524_4:not(.bdr-vault)::before{border-width: 0px ;border-style:solid;border-color:rgba(0, 0, 0, 1.00);-webkit-box-shadow: none ;box-shadow: none }.style-pro-stacks_in_524_4:not(.bdr-vault)::before,.style-pro-stacks_in_524_4:not(.bdr-vault)::after{border-radius: 10px }.style-pro-stacks_in_524_4:not(.bdr-vault)>.sections-layer{border-radius: 10px }     


.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_524_7 {
	height: 40px;
}









            #stacks_in_524_8 .hTxt:before{position:absolute!important;content:"";width:100%; height:2px; bottom:-2px;  opacity:1; left:0;right:0;background-color:rgba(207, 0, 32, 0.00);visibility:hidden;-webkit-transform:scale(0);-moz-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0);-webkit-transition:all 300ms 0s ease-in-out;-moz-transition:all 300ms 0s ease-in-out;transition:all 300ms 0s ease-in-out}
#stacks_in_524_8 .hTxt:hover{color:rgba(0, 0, 0, 1.00)}#stacks_in_524_8 .hTxt:hover:before{position:relative;visibility:visible;bottom:-2px;opacity:1;-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}#stacks_in_524_8 .hTxt{position:relative}         


.spacerStack {
	height: 10px;
}

#spacerStackstacks_in_524_68 {
	height: 10px;
}









 #stacks_in_524_10.sections-box--stack>.s-box.bdr-vault::before,#stacks_in_524_10.sections-box--stack .bdr-child::before{z-index:-1;position:absolute;top:0;left:0;right:0;bottom:0;content:""}#stacks_in_524_10.sections-box--stack>.s-box.o-bg-vault::after{z-index:-1!important}      #stacks_in_524_10{position:relative;overflow:visible;pointer-events:auto; z-index:auto;}#stacks_in_524_10.box-pos>.s-box{overflow:visible} #stacks_in_524_10{-webkit-perspective:600px;perspective:600px;-webkit-perspective-origin:50.00% 50.00%;perspective-origin:50.00% 50.00%} #stacks_in_524_10>.s-box{margin: 0px }#stacks_in_524_10>.s-box>.s-box-content{padding: 0px }@media screen and (min-width:640.00px) and (max-width:1000.00px){#stacks_in_524_10>.s-box>.s-box-content{padding: 0px }}@media screen and (min-width:1000.00px){#stacks_in_524_10>.s-box>.s-box-content{padding: 0px }}   #stacks_in_524_10{max-width:95.00%}@media all and (min-width:900px){#stacks_in_524_10{max-width:95.00%}}#stacks_in_524_10.auto-width{width:auto!important}#stacks_in_524_10.box-pos[data-equalizer-watch]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}#stacks_in_524_10>.s-box{position:relative} #stacks_in_524_10.box-pos{height:50.00vh}@media all and (min-width:900px){#stacks_in_524_10.box-pos{height:50.00vh}}      
 .style-pro-stacks_in_524_10::before{position:absolute;top:0;bottom:0;left:0;right:0;content:"";z-index:-1}      .style-pro-stacks_in_524_10:not(.bg-vault):before{opacity:1.0;background-repeat:no-repeat;background-position:center center;background-size:cover; background-attachment:fixed;width:100%;}.style-pro-stacks_in_524_10:not(.bg-vault):not(.bg-featured)::before{ background-image:url(../files/obgImage-11-596.jpg); }@media only screen and (max-device-width:1024px){.style-pro-stacks_in_524_10:not(.bg-vault)::before{background-attachment:scroll!important}}    

 .style-pro-stacks_in_524_10::before{position:absolute;top:0;bottom:0;left:0;right:0;content:"";z-index:-1}.style-pro-stacks_in_524_10:not(.bdr-vault)::before{border-width: 0px ;border-style:solid;border-color:rgba(0, 0, 0, 1.00);-webkit-box-shadow: none ;box-shadow: none }.style-pro-stacks_in_524_10:not(.bdr-vault)::before,.style-pro-stacks_in_524_10:not(.bdr-vault)::after{border-radius: 10px }.style-pro-stacks_in_524_10:not(.bdr-vault)>.sections-layer{border-radius: 10px }     


.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_524_13 {
	height: 40px;
}









            #stacks_in_524_14 .hTxt:before{position:absolute!important;content:"";width:100%; height:2px; bottom:-2px;  opacity:1; left:0;right:0;background-color:rgba(207, 0, 32, 0.00);visibility:hidden;-webkit-transform:scale(0);-moz-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0);-webkit-transition:all 300ms 0s ease-in-out;-moz-transition:all 300ms 0s ease-in-out;transition:all 300ms 0s ease-in-out}
#stacks_in_524_14 .hTxt:hover{color:rgba(0, 0, 0, 1.00)}#stacks_in_524_14 .hTxt:hover:before{position:relative;visibility:visible;bottom:-2px;opacity:1;-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}#stacks_in_524_14 .hTxt{position:relative}         


.spacerStack {
	height: 10px;
}

#spacerStackstacks_in_524_69 {
	height: 10px;
}









 #stacks_in_524_16.sections-box--stack>.s-box.bdr-vault::before,#stacks_in_524_16.sections-box--stack .bdr-child::before{z-index:-1;position:absolute;top:0;left:0;right:0;bottom:0;content:""}#stacks_in_524_16.sections-box--stack>.s-box.o-bg-vault::after{z-index:-1!important}      #stacks_in_524_16{position:relative;overflow:visible;pointer-events:auto; z-index:auto;}#stacks_in_524_16.box-pos>.s-box{overflow:visible} #stacks_in_524_16{-webkit-perspective:600px;perspective:600px;-webkit-perspective-origin:50.00% 50.00%;perspective-origin:50.00% 50.00%} #stacks_in_524_16>.s-box{margin: 0px }#stacks_in_524_16>.s-box>.s-box-content{padding: 0px }@media screen and (min-width:640.00px) and (max-width:1000.00px){#stacks_in_524_16>.s-box>.s-box-content{padding: 0px }}@media screen and (min-width:1000.00px){#stacks_in_524_16>.s-box>.s-box-content{padding: 0px }}   #stacks_in_524_16{max-width:95.00%}@media all and (min-width:1200px){#stacks_in_524_16{max-width:95.00%}}#stacks_in_524_16.auto-width{width:auto!important}#stacks_in_524_16.box-pos[data-equalizer-watch]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}#stacks_in_524_16>.s-box{position:relative} #stacks_in_524_16.box-pos{height:50.00vh}@media all and (min-width:1200px){#stacks_in_524_16.box-pos{height:50.00vh}}      
 .style-pro-stacks_in_524_16::before{position:absolute;top:0;bottom:0;left:0;right:0;content:"";z-index:-1}      .style-pro-stacks_in_524_16:not(.bg-vault):before{opacity:1.0;background-repeat:no-repeat;background-position:center center;background-size:cover; background-attachment:fixed;width:100%;}.style-pro-stacks_in_524_16:not(.bg-vault):not(.bg-featured)::before{ background-image:url(../files/obgImage-17-596.jpg); }@media only screen and (max-device-width:1024px){.style-pro-stacks_in_524_16:not(.bg-vault)::before{background-attachment:scroll!important}}    

 .style-pro-stacks_in_524_16::before{position:absolute;top:0;bottom:0;left:0;right:0;content:"";z-index:-1}.style-pro-stacks_in_524_16:not(.bdr-vault)::before{border-width: 0px ;border-style:solid;border-color:rgba(0, 0, 0, 1.00);-webkit-box-shadow: none ;box-shadow: none }.style-pro-stacks_in_524_16:not(.bdr-vault)::before,.style-pro-stacks_in_524_16:not(.bdr-vault)::after{border-radius: 10px }.style-pro-stacks_in_524_16:not(.bdr-vault)>.sections-layer{border-radius: 10px }     


.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_524_19 {
	height: 40px;
}









            #stacks_in_524_20 .hTxt:before{position:absolute!important;content:"";width:100%; height:2px; bottom:-2px;  opacity:1; left:0;right:0;background-color:rgba(207, 0, 32, 0.00);visibility:hidden;-webkit-transform:scale(0);-moz-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0);-webkit-transition:all 300ms 0s ease-in-out;-moz-transition:all 300ms 0s ease-in-out;transition:all 300ms 0s ease-in-out}
#stacks_in_524_20 .hTxt:hover{color:rgba(0, 0, 0, 1.00)}#stacks_in_524_20 .hTxt:hover:before{position:relative;visibility:visible;bottom:-2px;opacity:1;-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}#stacks_in_524_20 .hTxt{position:relative}         


.spacerStack {
	height: 10px;
}

#spacerStackstacks_in_524_70 {
	height: 10px;
}









 #stacks_in_524_22.sections-box--stack>.s-box.bdr-vault::before,#stacks_in_524_22.sections-box--stack .bdr-child::before{z-index:-1;position:absolute;top:0;left:0;right:0;bottom:0;content:""}#stacks_in_524_22.sections-box--stack>.s-box.o-bg-vault::after{z-index:-1!important}      #stacks_in_524_22{position:relative;overflow:visible;pointer-events:auto; z-index:auto;}#stacks_in_524_22.box-pos>.s-box{overflow:visible} #stacks_in_524_22{-webkit-perspective:600px;perspective:600px;-webkit-perspective-origin:50.00% 50.00%;perspective-origin:50.00% 50.00%} #stacks_in_524_22>.s-box{margin: 0px }#stacks_in_524_22>.s-box>.s-box-content{padding: 0px }@media screen and (min-width:640.00px) and (max-width:1000.00px){#stacks_in_524_22>.s-box>.s-box-content{padding: 0px }}@media screen and (min-width:1000.00px){#stacks_in_524_22>.s-box>.s-box-content{padding: 0px }}   #stacks_in_524_22{max-width:95.00%}@media all and (min-width:1500px){#stacks_in_524_22{max-width:95.00%}}#stacks_in_524_22.auto-width{width:auto!important}#stacks_in_524_22.box-pos[data-equalizer-watch]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}#stacks_in_524_22>.s-box{position:relative} #stacks_in_524_22.box-pos{height:50.00vh}@media all and (min-width:1500px){#stacks_in_524_22.box-pos{height:50.00vh}}      
 .style-pro-stacks_in_524_22::before{position:absolute;top:0;bottom:0;left:0;right:0;content:"";z-index:-1}      .style-pro-stacks_in_524_22:not(.bg-vault):before{opacity:1.0;background-repeat:no-repeat;background-position:center center;background-size:cover; background-attachment:fixed;width:100%;}.style-pro-stacks_in_524_22:not(.bg-vault):not(.bg-featured)::before{ background-image:url(../files/obgImage-23-596.jpg); }@media only screen and (max-device-width:1024px){.style-pro-stacks_in_524_22:not(.bg-vault)::before{background-attachment:scroll!important}}    

 .style-pro-stacks_in_524_22::before{position:absolute;top:0;bottom:0;left:0;right:0;content:"";z-index:-1}.style-pro-stacks_in_524_22:not(.bdr-vault)::before{border-width: 0px ;border-style:solid;border-color:rgba(0, 0, 0, 1.00);-webkit-box-shadow: none ;box-shadow: none }.style-pro-stacks_in_524_22:not(.bdr-vault)::before,.style-pro-stacks_in_524_22:not(.bdr-vault)::after{border-radius: 10px }.style-pro-stacks_in_524_22:not(.bdr-vault)>.sections-layer{border-radius: 10px }     


.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_524_25 {
	height: 40px;
}









            #stacks_in_524_26 .hTxt:before{position:absolute!important;content:"";width:100%; height:2px; bottom:-2px;  opacity:1; left:0;right:0;background-color:rgba(207, 0, 32, 0.00);visibility:hidden;-webkit-transform:scale(0);-moz-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0);-webkit-transition:all 300ms 0s ease-in-out;-moz-transition:all 300ms 0s ease-in-out;transition:all 300ms 0s ease-in-out}
#stacks_in_524_26 .hTxt:hover{color:rgba(0, 0, 0, 1.00)}#stacks_in_524_26 .hTxt:hover:before{position:relative;visibility:visible;bottom:-2px;opacity:1;-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}#stacks_in_524_26 .hTxt{position:relative}         


.spacerStack {
	height: 10px;
}

#spacerStackstacks_in_524_71 {
	height: 10px;
}









 #stacks_in_524_28.sections-box--stack>.s-box.bdr-vault::before,#stacks_in_524_28.sections-box--stack .bdr-child::before{z-index:-1;position:absolute;top:0;left:0;right:0;bottom:0;content:""}#stacks_in_524_28.sections-box--stack>.s-box.o-bg-vault::after{z-index:-1!important}      #stacks_in_524_28{position:relative;overflow:visible;pointer-events:auto; z-index:auto;}#stacks_in_524_28.box-pos>.s-box{overflow:visible} #stacks_in_524_28{-webkit-perspective:600px;perspective:600px;-webkit-perspective-origin:50.00% 50.00%;perspective-origin:50.00% 50.00%} #stacks_in_524_28>.s-box{margin: 0px }#stacks_in_524_28>.s-box>.s-box-content{padding: 0px }@media screen and (min-width:640.00px) and (max-width:1000.00px){#stacks_in_524_28>.s-box>.s-box-content{padding: 0px }}@media screen and (min-width:1000.00px){#stacks_in_524_28>.s-box>.s-box-content{padding: 0px }}   #stacks_in_524_28{max-width:95.00%}@media all and (min-width:1800px){#stacks_in_524_28{max-width:95.00%}}#stacks_in_524_28.auto-width{width:auto!important}#stacks_in_524_28.box-pos[data-equalizer-watch]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}#stacks_in_524_28>.s-box{position:relative} #stacks_in_524_28.box-pos{height:50.00vh}@media all and (min-width:1800px){#stacks_in_524_28.box-pos{height:50.00vh}}      
 .style-pro-stacks_in_524_28::before{position:absolute;top:0;bottom:0;left:0;right:0;content:"";z-index:-1}      .style-pro-stacks_in_524_28:not(.bg-vault):before{opacity:1.0;background-repeat:no-repeat;background-position:center center;background-size:cover; background-attachment:fixed;width:100%;}.style-pro-stacks_in_524_28:not(.bg-vault):not(.bg-featured)::before{ background-image:url(../files/obgImage-29-596.jpg); }@media only screen and (max-device-width:1024px){.style-pro-stacks_in_524_28:not(.bg-vault)::before{background-attachment:scroll!important}}    

 .style-pro-stacks_in_524_28::before{position:absolute;top:0;bottom:0;left:0;right:0;content:"";z-index:-1}.style-pro-stacks_in_524_28:not(.bdr-vault)::before{border-width: 0px ;border-style:solid;border-color:rgba(0, 0, 0, 1.00);-webkit-box-shadow: none ;box-shadow: none }.style-pro-stacks_in_524_28:not(.bdr-vault)::before,.style-pro-stacks_in_524_28:not(.bdr-vault)::after{border-radius: 10px }.style-pro-stacks_in_524_28:not(.bdr-vault)>.sections-layer{border-radius: 10px }     


.spacerStack {
	height: 100px;
}

#spacerStackstacks_in_185 {
	height: 100px;
}









#stacks_in_194_91 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_194_91 > .row.collapse{padding-left:0;padding-right:0}#stacks_in_194_91 > .row.padding-detailed{padding:0.00rem 0.00rem 0.00rem 0.00rem}@media only screen and (max-width:40em){#stacks_in_194_91 > .row.padding-detailed.padding-medium-up,#stacks_in_194_91 > .row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_194_91 > .row.padding-detailed.padding-y-medium-up,#stacks_in_194_91 > .row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){#stacks_in_194_91 > .row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_194_91 > .row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}



.spacerStack {
	height: 140px;
}

#spacerStackstacks_in_194_89 {
	height: 140px;
}









/*start gogrid css*/
 #stacks_in_194_79 .gogrid_width {
	 display: block;
	overflow: hidden;
	max-width: 160px;
	margin-left: auto;
	margin-right: auto;
	 /*customcss*/
}
#stacks_in_194_79 .gogrid_wrap {
	overflow: hidden;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	 
}
#stacks_in_194_79 .gogrid {
	overflow: hidden;
	-webkit-flex: 1 1 auto;
	flex: 1 1 auto;
	width: 10%;
	max-width: 100%;
	padding: 5px;
	margin: 5px;
	 -webkit-transition: all ease 1.5s;;
	transition: all ease 1.5s;;
	 align-content: stretch;
	/*customcss*/
}
#stacks_in_194_79 .gogrid:hover, #stacks_in_194_79 .gogrid:active {
	
}
              #stacks_in_194_79 .gogrid_wrap h1, #stacks_in_194_79 .gogrid_wrap h2, #stacks_in_194_79 .gogrid_wrap h3, #stacks_in_194_79 .gogrid_wrap h4, #stacks_in_194_79 .gogrid_wrap h5, #stacks_in_194_79 .gogrid_wrap h6 {
	margin: 0px 0px 10px 0px;
	padding: 0px 0px 0px 0px;
	 /*customcss*/
}
 #stacks_in_194_79 .gogrid_wrap .text_stack {
	margin: 0px 0px 0px 0px;
	padding: 10px 0px 10px 0px;
	  /*customcss*/
}
#stacks_in_194_79 .gogrid_wrap .text_stack a {
	
}
#stacks_in_194_79 .gogrid:nth-child(2) .text_stack {
	
}
#stacks_in_194_79 .gogrid:nth-child(3) .text_stack {
	
}
#stacks_in_194_79 .gogrid:nth-child(4) .text_stack {
	
}
#stacks_in_194_79 .gogrid:nth-child(5) .text_stack {
	
}
#stacks_in_194_79 .gogrid img {
	margin: 10px 0px 10px 0px;
	padding: 0px 0px 0px 0px;
	 -webkit-transition: all ease 1.5s;
	transition: all ease 1.5s;
	 min-height: 0px;
	object-fit: cover;
	/*customcss*/
}
#stacks_in_194_79 .gogrid .image_stack {
	margin: 0px 0px 0px 0px;
}
    #stacks_in_194_79 .gogrid:hover img {
	
}
        #stacks_in_194_79 .gogrid_wrap .stacks_out, #stacks_in_194_79 .gogrid_wrap .dk_denflinkegrafiker_stacks_imagemacro_stack {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	/*customcss*/
}
 #stacks_in_194_79 .gogrid_wrap .stack_css {
	/*customcss*/
}
 .gogrid_section {
	/*customcss*/
}
.gogrid_article {}
.gogrid_trailer {
	/*customcss*/
}
            
/* --------------------- Media Screen Start ---------------------*/
@media screen and (max-width: 480px) {
	.gogrid_section {
		height: auto !important;
	}
	.gogrid_article {
		height: auto !important;
	}
}
@media screen and (max-width: 1030px) {
	
}
@media screen and (max-width: 780px) {
	
}
@media screen and (max-width: 0px) {
	#stacks_in_194_79 .gogrid_wrap {
		 margin: -2px;
		  margin-bottom: 2px;
		
	}
	#stacks_in_194_79 .gogrid {
		width: 45vw;
		max-width: 100vw;
		padding: 10px;
		margin: 2px;
		/*customcss*/
	}
	#stacks_in_194_79 .gogrid img {
		min-height: 0px !important;
		max-height: none;
		height: auto;
	}
	#stacks_in_194_79 .gogrid_wrap .stack_css {
		height: auto !important;
	}
}
@media screen and (max-width: 0px) {
	   
}
@media screen and (max-width: 0px) {
	            
}
@media screen and (max-width: 0px) {
	   
}
/*end gogrid css*/#stacks_in_194_2{text-align:center}#stacks_in_194_2 a.shareit{text-align:center;font-size:18px;color:rgba(0, 0, 0, 1.00)}#stacks_in_194_2 a.shareit:hover{color:rgba(95, 170, 100, 1.00)}#stacks_in_194_2 a.shareit i.fa{font-size:24px}#stacks_in_194_2 a.shareit:not(.default-colors) i.fa{color:rgba(0, 0, 0, 1.00)}#stacks_in_194_2 a.shareit:not(.default-colors):hover i.fa{color:rgba(95, 170, 100, 1.00)}
#stacks_in_194_4{text-align:center}#stacks_in_194_4 a.shareit{text-align:center;font-size:18px;color:rgba(0, 0, 0, 1.00)}#stacks_in_194_4 a.shareit:hover{color:rgba(95, 170, 100, 1.00)}#stacks_in_194_4 a.shareit i.fa{font-size:24px}#stacks_in_194_4 a.shareit:not(.default-colors) i.fa{color:rgba(0, 0, 0, 1.00)}#stacks_in_194_4 a.shareit:not(.default-colors):hover i.fa{color:rgba(95, 170, 100, 1.00)}
#stacks_in_194_6{text-align:center}#stacks_in_194_6 a.shareit{text-align:center;font-size:18px;color:rgba(0, 0, 0, 1.00)}#stacks_in_194_6 a.shareit:hover{color:rgba(95, 170, 100, 1.00)}#stacks_in_194_6 a.shareit i.fa{font-size:24px}#stacks_in_194_6 a.shareit:not(.default-colors) i.fa{color:rgba(0, 0, 0, 1.00)}#stacks_in_194_6 a.shareit:not(.default-colors):hover i.fa{color:rgba(95, 170, 100, 1.00)}
#stacks_in_194_8{text-align:center}#stacks_in_194_8 a.shareit{text-align:center;font-size:18px;color:rgba(0, 0, 0, 1.00)}#stacks_in_194_8 a.shareit:hover{color:rgba(95, 170, 100, 1.00)}#stacks_in_194_8 a.shareit i.fa{font-size:24px}#stacks_in_194_8 a.shareit:not(.default-colors) i.fa{color:rgba(0, 0, 0, 1.00)}#stacks_in_194_8 a.shareit:not(.default-colors):hover i.fa{color:rgba(95, 170, 100, 1.00)}


.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_194_90 {
	height: 40px;
}











.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_265 {
	height: 40px;
}










#stacks_in_294_3 {
	font-size: 70%;
}

.scroller-header {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
}

.scroller-container {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 1.00);
}

.scroller-bar {
  height: 5px;
  background: rgba(0, 0, 0, 1.00);
  width: 0%;
  
   float: left;
   max-width: 50%;
}


.scroller-bar2 {
  height: 5px;
  background: rgba(0, 0, 0, 1.00);
  width: 0%;
  
   float: right;
   max-width: 50%;
}






@font-face {
	font-family: 'icomoon';
	src: url("../files/icons/icomoon.eot?hg8hv3");
	src: url("../files/icons/icomoon.eot?#iefixhg8hv3") format("embedded-opentype"), url("../files/icons/icomoon.woff2?hg8hv3") format("woff2"), url("../files/icons/icomoon.ttf?hg8hv3") format("truetype"), url("../files/icons/icomoon.woff?hg8hv3") format("woff"), url("../files/icons/icomoon.svg?hg8hv3#icomoon") format("svg");
	font-weight: normal;
	font-style: normal; }
[class^="sp-icon-"], [class*=" sp-icon-"] {
	font-family: 'icomoon';
	speak: none;
	color: #000000;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale; }

.sp-icon-chevron-rounded:before{content: "\e600"; }
.sp-icon-chevron-rounded-thick:before{content: "\e601"; }
.sp-icon-chevron-thin:before{content: "\e602"; }
.sp-icon-chevron-thick:before{content: "\e603"; }
.sp-icon-arrow:before{content: "\e604"; }
.sp-icon-arrow-thin:before{content: "\e605"; }
.sp-icon-arrow-thick:before{content: "\e606"; }
.sp-icon-round-1:before{content: "\e607"; }
.sp-icon-round-2:before{content: "\e608"; }
.sp-icon-round-3:before{content: "\e609"; }
.sp-icon-round-4:before{content: "\e60a"; }

#ncd-sp-arrow {
	display: inline-block;
	line-height: 0;
	z-index: 10000;
	padding: 5px;
	background: #FFFFFF;
	border-radius: 100px;
	border-width: 0;
	border-style: solid;
	
	background: none;
	
	opacity: 0;
	border-color: #4DA8FF;
}
#ncd-sp-arrow i {font-size: 28px;}
#ncd-sp-arrow.show i {cursor: pointer;}


#ncd-sp-arrow {
	position: fixed;
	opacity: 0;
	margin: 30px;
	-webkit-transition: opacity 150ms, -webkit-transform 150ms;
	transition: opacity 150ms, transform 150ms;
	-webkit-transform: rotateY(-55deg);
			-ms-transform: rotateY(-55deg);
					transform: rotateY(-55deg);}

#ncd-sp-arrow.show.down-amount, 
#ncd-sp-arrow.show.down-container{
-webkit-transition: opacity 750ms 0, -webkit-transform 750ms 0;
	transition: opacity 750ms 0, transform 750ms 0;
}

#ncd-sp-arrow .rotateThis{
	-webkit-transition: -webkit-transform 700ms;
					transition: transform 700ms;}

#ncd-sp-arrow.show.down-amount .rotateThis, 
#ncd-sp-arrow.show.down-container .rotateThis{
	position: relative;
	-webkit-transform: rotate(-180deg);
					transform: rotate(-180deg);}
#ncd-sp-arrow.down-amount .rotateThis, 
#ncd-sp-arrow.down-container .rotateThis{
	position: relative;
	-webkit-transform: rotate(0);
					transform: rotate(0);}

#ncd-sp-arrow.show {
	opacity: 1; 
	-webkit-transform: rotateY(0) translateX(0) translateY(0) scale(1);
					transform: rotateY(0) translateX(0) translateY(0) scale(1);}

#ncd-sp-arrow.tl{top: 0;left: 0; }
#ncd-sp-arrow.tc{top: 0;left: 50%; }
#ncd-sp-arrow.tr{top: 0;right: 0; }
#ncd-sp-arrow.bl{bottom: 0;left: 0; }
#ncd-sp-arrow.bc{bottom: 0;left: 50%; }
#ncd-sp-arrow.br{bottom: 0;right: 0; }


