.oembed.video,.oembed.codepen,.fr-video{display:block;width:100%;margin-bottom:0;height:0;overflow:hidden;padding-bottom:56.25%;position:relative}.oembed.video video,.oembed.codepen video,.fr-video video{width:100%}.oembed.video iframe,.oembed.codepen iframe,.fr-video iframe{border:none;height:100%;position:absolute;top:0;width:100%;left:0}img.fr-full-width{min-width:100vw;position:relative;left:50%;right:50%;margin-left:-50vw !important;margin-right:-50vw !important}
.cookie-jar{display:none;z-index:9999;position:fixed;bottom:0;width:100%}.cookie-jar.cookie-jar-top{bottom:auto;top:0}.cookie-jar-buttons > div{width:49.5%;display:inline-block}




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

.form-submit-success,.form-submit-error{opacity:0;transition:none;overflow:hidden}form:not(.success) .form-submit-success,form:not(.error) .form-submit-error{max-height:0;padding:0;margin:0;border-width:0px}form.success .form-submit-success,form.error .form-submit-error{opacity:1;transition:opacity 500ms ease}.form-submit-processing{opacity:0;pointer-events:none;transition:opacity 500ms ease}form:not(.processing) .form-submit-processing{max-height:0}form.processing *{pointer-events:none}form.processing .form-submit-processing{opacity:1;pointer-events:auto}.processing-modal.absolute,.processing-modal.fixed{background-color:var(--overlay-color);border-radius:inherit;position:absolute;top:0;left:0;right:0;bottom:0}.processing-modal.absolute .processing-circle,.processing-modal.fixed .processing-circle{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto}.processing-modal.fixed{position:fixed}
.vegas-wrapper,.vegas-overlay,.vegas-timer,.vegas-slide,.vegas-slide-inner{position:absolute;top:0;left:0;bottom:0;right:0;overflow:hidden;border:none;padding:0;margin:0}.vegas-slide,.vegas-slide-inner{margin:0;padding:0;background:transparent center center no-repeat;-webkit-transform:translateZ(0);transform:translateZ(0);will-change:transform,opacity}body.vegas-container{overflow:auto;position:static;z-index:-2}body.vegas-container > .vegas-timer,body.vegas-container > .vegas-overlay,body.vegas-container > .vegas-slide{position:fixed;z-index:-1}.vegas-transition-fade,.vegas-transition-fade2{opacity:0}.vegas-transition-fade-in,.vegas-transition-fade2-in{opacity:1}.vegas-transition-fade2-out{opacity:0}
.processing-circle{margin:0 auto;width:40px;height:40px;border:4px solid var(--white-color);border-top:4px solid var(--primary);border-radius:50%;filter:drop-shadow(0 0 20px rgba(0,0,0,0.6))}.processing-circle.dark{border-color:var(--black-color);border-top-color:var(--primary)}.processing-circle.primary{border-top-color:var(--primary)}.processing-circle.secondary{border-top-color:var(--secondary)}.processing-circle.warning{border-top-color:var(--warning)}.processing-circle.success{border-top-color:var(--success)}.processing-circle.alert{border-top-color:var(--alert)}


.com_joeworkman_stacks_glider_stack .glider-wrapper,.com_joeworkman_stacks_glider_stack .glider-button{position:fixed;z-index:99999;border:none}.com_joeworkman_stacks_glider_stack .glider-toggle{padding:1rem;cursor:pointer;font-size:1rem;outline:none;height:auto}.com_joeworkman_stacks_glider_stack .glider-toggle.opened{z-index:999999}.com_joeworkman_stacks_glider_stack .glider-toggle i.fa{display:none;line-height:1.28571429em}.com_joeworkman_stacks_glider_stack .glider-toggle.round.custom-style{border-radius:1000px}.com_joeworkman_stacks_glider_stack .glider-toggle.radius.custom-style{border-radius:3px}.com_joeworkman_stacks_glider_stack .glider-toggle.opened i.fa.close-icon{display:inline-block}.com_joeworkman_stacks_glider_stack .glider-toggle:not(.opened) i.fa.open{display:inline-block}.com_joeworkman_stacks_glider_stack .glider-wrapper{width:0;overflow:auto;-webkit-overflow-scrolling:touch}.com_joeworkman_stacks_glider_stack .glider-wrapper.opened{width:100%;z-index:199999}.com_joeworkman_stacks_glider_stack .glider-wrapper .glider-content.centerContent{position:relative;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);}.com_joeworkman_stacks_glider_stack .glider-wrapper > .glider-toggle{position:absolute;top:0;right:0;background:transparent;margin:0;z-index:999999;display:block}@media only screen and (min-width:40.063em){.com_joeworkman_stacks_glider_stack .glider-wrapper > .glider-toggle{display:none}}.com_joeworkman_stacks_glider_stack .glider-wrapper > .glider-toggle i.fa{display:block}.com_joeworkman_stacks_glider_stack .glider-wrapper.size-100 > .glider-toggle{display:block !important}.com_joeworkman_stacks_glider_stack .headless .glider-button{display:none}.com_joeworkman_stacks_glider_stack .headless .glider-wrapper .glider-toggle{display:block}.com_joeworkman_stacks_glider_stack .launcher-bar .glider-button{width:100%}.com_joeworkman_stacks_glider_stack .location-left .glider-wrapper{height:100%;top:0;left:0}.com_joeworkman_stacks_glider_stack .location-left .glider-wrapper.opened.accent{-webkit-box-shadow:inset -1px 0 15px rgba(255,255,255,0.2),1px 0 2px rgba(0,0,0,0.3);box-shadow:inset -1px 0 15px rgba(255,255,255,0.2),1px 0 2px rgba(0,0,0,0.3)}.com_joeworkman_stacks_glider_stack .location-left .glider-button{left:0}.com_joeworkman_stacks_glider_stack .location-left .glider-button.flush.radius{border-top-left-radius:0;border-bottom-left-radius:0}.com_joeworkman_stacks_glider_stack .location-left .glider-button.opened{left:100%}.com_joeworkman_stacks_glider_stack .location-left.slideout .glider-wrapper{width:100%;margin-left:-100%}.com_joeworkman_stacks_glider_stack .location-left.slideout .glider-wrapper.opened{margin-left:0 !important}.com_joeworkman_stacks_glider_stack .location-right .glider-wrapper{height:100%;top:0;right:0}.com_joeworkman_stacks_glider_stack .location-right .glider-wrapper.opened.accent{-webkit-box-shadow:inset 1px 0 15px rgba(255,255,255,0.2),-1px 0 2px rgba(0,0,0,0.3);box-shadow:inset 1px 0 15px rgba(255,255,255,0.2),-1px 0 2px rgba(0,0,0,0.3)}.com_joeworkman_stacks_glider_stack .location-right .glider-wrapper .glider-toggle{right:auto;left:0}.com_joeworkman_stacks_glider_stack .location-right .glider-button{right:0}.com_joeworkman_stacks_glider_stack .location-right .glider-button.flush.radius{border-top-right-radius:0;border-bottom-right-radius:0}.com_joeworkman_stacks_glider_stack .location-right .glider-button.opened{right:100%}.com_joeworkman_stacks_glider_stack .location-right.slideout .glider-wrapper{width:100%;margin-right:-100%}.com_joeworkman_stacks_glider_stack .location-right.slideout .glider-wrapper.opened{margin-right:0 !important}.com_joeworkman_stacks_glider_stack .location-top .glider-wrapper{top:0;left:0;width:100%;height:0}.com_joeworkman_stacks_glider_stack .location-top .glider-wrapper.opened{height:100%}.com_joeworkman_stacks_glider_stack .location-top .glider-wrapper.opened.accent{-webkit-box-shadow:inset 0 -1px 15px rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.3);box-shadow:inset 0 -1px 15px rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.3)}.com_joeworkman_stacks_glider_stack .location-top .glider-button{top:0}.com_joeworkman_stacks_glider_stack .location-top .glider-button.flush.radius{border-top-right-radius:0;border-top-left-radius:0}.com_joeworkman_stacks_glider_stack .location-top .glider-button.opened{top:100%}.com_joeworkman_stacks_glider_stack .location-bottom .glider-wrapper{bottom:0;left:0;width:100%;height:0}.com_joeworkman_stacks_glider_stack .location-bottom .glider-wrapper.opened{height:100%}.com_joeworkman_stacks_glider_stack .location-bottom .glider-wrapper.opened.accent{-webkit-box-shadow:inset 0 1px 15px rgba(255,255,255,0.2),0 -1px 2px rgba(0,0,0,0.3);box-shadow:inset 0 1px 15px rgba(255,255,255,0.2),0 -1px 2px rgba(0,0,0,0.3)}.com_joeworkman_stacks_glider_stack .location-bottom .glider-button{bottom:0}.com_joeworkman_stacks_glider_stack .location-bottom .glider-button.flush.radius{border-bottom-right-radius:0;border-bottom-left-radius:0}.com_joeworkman_stacks_glider_stack .location-bottom .glider-button.opened{bottom:100%}


form.blog-filter-form input,form.blog-filter-form select,form.blog-filter-form textarea,form.datastore-form input,form.datastore-form select,form.datastore-form textarea{padding:0.50rem;border-width:1px;border-radius:0px;margin-bottom:1.00rem;font-size:0.90rem;background-color:rgba(255, 255, 255, 1.00);border-color:rgba(204, 204, 204, 1.00);color:rgba(34, 34, 34, 1.00)}form.blog-filter-form select,form.datastore-form select{padding-right:1.5rem}form.blog-filter-form input,form.blog-filter-form select,form.datastore-form input,form.datastore-form select{height:2.30rem}form.blog-filter-form::placeholder,form.datastore-form::placeholder{color:rgba(204, 204, 204, 1.00)}form.blog-filter-form:-ms-input-placeholder,form.datastore-form:-ms-input-placeholder{color:rgba(204, 204, 204, 1.00)}form.blog-filter-form::-ms-input-placeholder,form.datastore-form::-ms-input-placeholder{color:rgba(204, 204, 204, 1.00)}

:root{--light-gray:rgba(204, 204, 204, 1.00);--medium-gray:rgba(164, 184, 196, 1.00);--dark-gray:rgba(42, 98, 143, 1.00);--black:rgba(22, 50, 79, 1.00);--black-color:var(--black);--white:rgba(245, 245, 245, 1.00);--white-color:var(--white);--primary:rgba(62, 146, 204, 1.00);--secondary:rgba(231, 231, 231, 1.00);--success:rgba(72, 128, 0, 1.00);--warning:rgba(252, 106, 8, 1.00);--alert:rgba(171, 0, 26, 1.00);--primary-contrast:rgba(231, 231, 231, 1.00);--secondary-contrast:rgba(124, 124, 124, 1.00);--success-contrast:rgba(247, 247, 247, 1.00);--warning-contrast:rgba(245, 245, 245, 1.00);--alert-contrast:rgba(247, 247, 247, 1.00);--primary-dark:rgba(32, 116, 174, 1.00);--secondary-dark:rgba(201, 201, 201, 1.00);--success-dark:rgba(42, 98, 0, 1.00);--warning-dark:rgba(222, 76, 0, 1.00);--alert-dark:rgba(141, 0, 0, 1.00);--header-color:rgba(19, 41, 61, 1.00);--subheader-color:rgba(124, 124, 124, 1.00);--small-color:rgba(204, 204, 204, 1.00);--text-color:rgba(124, 124, 124, 1.00);--link-color:rgba(124, 124, 124, 1.00);--link-color-hover:rgba(42, 98, 143, 1.00);--selection-background:var(--primary);--selection-text:var(--primary-contrast);--link-decoration:none;--link-decoration-hover:none;--overlay-color:rgba(0, 0, 0, 0.50);--radius:3px;--small-gutter:1.25rem;--medium-gutter:2rem;--large-gutter:2rem;--site-width:calc(1200rem/16);}::selection{background:var(--selection-background);color:var(--selection-text)}.alt{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(245, 245, 245, 1.00);--small-color:rgba(245, 245, 245, 1.00);--text-color:rgba(245, 245, 245, 1.00);--link-color:rgba(247, 247, 247, 1.00);--link-color-hover:rgba(245, 245, 245, 1.00);--link-decoration:none;--link-decoration-hover:none}.grid-container{max-width:var(--site-width)}.radius{border-radius:var(--radius)}body{font-size:calc(16rem/16)}h1,.h1{font-size:calc(24rem/16)}h2,.h2{font-size:calc(20rem/16)}h3,.h3{font-size:calc(19rem/16)}h4,.h4{font-size:calc(18rem/16)}h5,.h5{font-size:calc(17rem/16)}h6,.h6{font-size:calc(16rem/16)}small{font-size:40%}.button{font-size:calc(16rem/16)}.button.tiny{font-size:calc(10rem/16)}.button.small{font-size:calc(12rem/16)}.button.large{font-size:calc(20rem/16)}@media only screen and (min-width:40em){body{font-size:calc(16rem/16)}h1,.h1{font-size:calc(48rem/16)}h2,.h2{font-size:calc(40rem/16)}h3,.h3{font-size:calc(31rem/16)}h4,.h4{font-size:calc(25rem/16)}h5,.h5{font-size:calc(20rem/16)}h6,.h6{font-size:calc(16rem/16)}small{font-size:30%}}@media only screen and (min-width:64em){body{font-size:calc(16rem/16)}h1,.h1{font-size:calc(48rem/16)}h2,.h2{font-size:calc(40rem/16)}h3,.h3{font-size:calc(31rem/16)}h4,.h4{font-size:calc(25rem/16)}h5,.h5{font-size:calc(20rem/16)}h6,.h6{font-size:calc(16rem/16)}small{font-size:30%}}a{color:var(--link-color);-webkit-text-decoration:var(--link-decoration);text-decoration:var(--link-decoration)}a:hover,a:focus{color:var(--link-color-hover);-webkit-text-decoration:var(--link-decoration-hover);text-decoration:var(--link-decoration-hover)}.menu a{color:var(--menu-link-color);background:var(--menu-bg-color)}.menu a:hover{color:var(--menu-link-color-hover)}h1,h2,h3,h4,h5,h6{color:var(--header-color)}small{color:var(--small-color)}.subheader{color:var(--subheader-color)}.text ul,.text ol{list-style-position:outside}.text>ul,.text>ol,.text .mez>div>ul,.text .mez>div>ol{margin-left:1.25rem}.text ul{list-style-type:disc}.text ul ul,.text ol ul{list-style-type:circle}.text ol{list-style-type:decimal}.text ol ol,.text ul ol{list-style-type:lower-alpha}.radius,.radius:before,.radius:after{border-radius:calc(3rem/16)}body{}
html,body, p,.p,           .raleway{font-family:"Raleway",sans-serif }
  h1,.h1, h2,.h2, h3,.h3, h4,.h4, h5,.h5, h6,.h6,     .myclass{font-family:"Ubuntu",sans-serif }
 .mymenu>.menu a, .menu.mymenu a{--menu-link-color:rgba(255, 255, 255, 1.00);--menu-link-color-hover:rgba(204, 204, 204, 1.00);--menu-bg-color:rgba(255, 255, 255, 0.00);--menu-caret-color:rgba(97, 103, 173, 1.00);--menu-border-accent:2px solid var(--menu-link-color)} .mymenu>.menu .menu-text, .menu.mymenu .menu-text{--menu-text-color:rgba(68, 68, 68, 1.00)} .mymenu>.menu>li>a, .menu.mymenu>li>a{padding-top:1rem;padding-bottom:1rem} .mymenu>.menu .submenu>li>a, .menu.mymenu .submenu>li>a{padding-top:0.75rem;padding-bottom:0.75rem} .mymenu>.menu li.active>a, .mymenu>.menu li.is-active>a, .mymenu>.menu a.is-active, .menu.mymenu li.active>a, .menu.mymenu li.is-active>a, .menu.mymenu a.is-active{--menu-bg-color:rgba(203, 67, 30, 0.50);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-caret-color:rgba(97, 103, 173, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)} .mymenu>.menu .submenu li.active>a, .mymenu>.menu .submenu li.is-active>a, .mymenu>.menu .submenu a.is-active, .menu.mymenu .submenu li.active>a, .menu.mymenu .submenu li.is-active>a, .menu.mymenu .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00)} .mymenu>.menu .submenu a, .menu.mymenu .submenu a{--menu-caret-color:rgba(97, 103, 173, 1.00)} .mymenu>.menu .submenu, .menu.mymenu .submenu{--submenu-bg-color:rgba(254, 254, 254, 1.00);--submenu-border:1px solid rgba(202, 202, 202, 1.00)} .mymenu>.menu .submenu a, .menu.mymenu .submenu a{--menu-bg-color:transparent;--menu-link-color:rgba(34, 34, 34, 1.00);--menu-link-color-hover:rgba(68, 68, 68, 1.00)} .mymenu>.menu .submenu .menu-text, .menu.mymenu .submenu .menu-text{--menu-text-color:rgba(68, 68, 68, 1.00)} .mymenu>.menu .submenu li.active>a, .mymenu>.menu .submenu li.is-active>a, .mymenu>.menu .submenu a.is-active, .menu.mymenu .submenu li.active>a, .menu.mymenu .submenu li.is-active>a, .menu.mymenu .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-bg-color:rgba(97, 103, 173, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)}
 .mobile-menu>.menu a, .menu.mobile-menu a{--menu-link-color:rgba(34, 34, 34, 1.00);--menu-link-color-hover:rgba(68, 68, 68, 1.00);--menu-bg-color:rgba(255, 255, 255, 0.00);--menu-caret-color:rgba(97, 103, 173, 1.00);--menu-border-accent:2px solid var(--menu-link-color)} .mobile-menu>.menu .menu-text, .menu.mobile-menu .menu-text{--menu-text-color:rgba(68, 68, 68, 1.00)} .mobile-menu>.menu>li>a, .menu.mobile-menu>li>a{padding-top:1rem;padding-bottom:1rem} .mobile-menu>.menu .submenu>li>a, .menu.mobile-menu .submenu>li>a{padding-top:0.75rem;padding-bottom:0.75rem} .mobile-menu>.menu li.active>a, .mobile-menu>.menu li.is-active>a, .mobile-menu>.menu a.is-active, .menu.mobile-menu li.active>a, .menu.mobile-menu li.is-active>a, .menu.mobile-menu a.is-active{--menu-bg-color:rgba(97, 103, 173, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-caret-color:rgba(97, 103, 173, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)} .mobile-menu>.menu .submenu li.active>a, .mobile-menu>.menu .submenu li.is-active>a, .mobile-menu>.menu .submenu a.is-active, .menu.mobile-menu .submenu li.active>a, .menu.mobile-menu .submenu li.is-active>a, .menu.mobile-menu .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00)} .mobile-menu>.menu .submenu a, .menu.mobile-menu .submenu a{--menu-caret-color:rgba(97, 103, 173, 1.00)} .mobile-menu>.menu .submenu, .menu.mobile-menu .submenu{--submenu-bg-color:rgba(254, 254, 254, 1.00);--submenu-border:1px solid rgba(202, 202, 202, 1.00)} .mobile-menu>.menu .submenu a, .menu.mobile-menu .submenu a{--menu-bg-color:transparent;--menu-link-color:rgba(34, 34, 34, 1.00);--menu-link-color-hover:rgba(68, 68, 68, 1.00)} .mobile-menu>.menu .submenu .menu-text, .menu.mobile-menu .submenu .menu-text{--menu-text-color:rgba(68, 68, 68, 1.00)} .mobile-menu>.menu .submenu li.active>a, .mobile-menu>.menu .submenu li.is-active>a, .mobile-menu>.menu .submenu a.is-active, .menu.mobile-menu .submenu li.active>a, .menu.mobile-menu .submenu li.is-active>a, .menu.mobile-menu .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-bg-color:rgba(97, 103, 173, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)}
.hero{background-image:url('') ;background-repeat:no-repeat    ;background-size:  cover ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.hero{background-attachment:scroll!important}}
.hero-overlay{height:50vh ;} @media only screen and (min-width:40em){.hero-overlay{height:75vh }}@media only screen and (min-width:64em){.hero-overlay{height:75vh }} 
.mymenu{position: absolute  !important;z-index:5 !important;top:unset !important;bottom:0px !important;left:unset !important;right:unset !important;}
.burger{position: absolute  !important;z-index:5 !important;top:10% !important;bottom:unset !important;left:50% !important;right:50% !important;transform:translateX(-50%) !important;}
.mobile-menu-wrapper{height:100% ;}  
            .mobile-menu{font-size:calc(24rem/16) ;}@media only screen and (min-width:40em){            .mobile-menu{font-size:calc(24rem/16) }}@media only screen and (min-width:64em){            .mobile-menu{font-size:calc(24rem/16) }}
            .mymenu{font-size:calc(18rem/16) ;}@media only screen and (min-width:40em){            .mymenu{font-size:calc(18rem/16) }}@media only screen and (min-width:64em){            .mymenu{font-size:calc(18rem/16) }}
            .mobile-menu{font-size:calc(24rem/16) ;}@media only screen and (min-width:40em){            .mobile-menu{font-size:calc(24rem/16) }}@media only screen and (min-width:64em){            .mobile-menu{font-size:calc(24rem/16) }}
            .mymenu{font-size:calc(18rem/16) ;}@media only screen and (min-width:40em){            .mymenu{font-size:calc(18rem/16) }}@media only screen and (min-width:64em){            .mymenu{font-size:calc(18rem/16) }}
.w100{width:100% ;}  
.menubottom{position:  sticky ;z-index:1 ;top:unset ;bottom:0px ;left:unset ;right:unset ;}
.w160{width:10rem ;}  
.RW_menu{position: absolute  ;z-index:1 ;top:unset ;bottom:20px ;left:unset ;right:unset ;}
  h1,.h1,          .H1headers{font-size:calc(20rem/16) ;}@media only screen and (min-width:40em) {  h1,.h1,          .H1headers{font-size:calc(30rem/16) }}@media only screen and (min-width:64em) {  h1,.h1,          .H1headers{font-size:calc(30rem/16) }}
.33{height:33.3333vh ;}  
.bgw{background-color:rgba(255, 255, 255, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bgw{background-attachment:scroll!important}}
.z2{position:fixed   ;z-index:2 ;top:unset ;bottom:unset ;left:unset ;right:unset ;}
html,body,  h1,.h1,          .{font-size:calc(16rem/16) ;}@media only screen and (min-width:40em) {html,body,  h1,.h1,          .{font-size:calc(16rem/16) }}@media only screen and (min-width:64em) {html,body,  h1,.h1,          .{font-size:calc(16rem/16) }}
.bannermenu{color:rgba(255, 255, 255, 1.00) !important;}
.bannermenu{text-shadow:2px 2px 5px rgba(0, 0, 0, 0.60);}
            .bannermenu{font-size:calc(16rem/16) ;font-weight:800 ;}@media only screen and (min-width:40em) {            .bannermenu{font-size:calc(16rem/16) }}@media only screen and (min-width:64em) {            .bannermenu{font-size:calc(16rem/16) }}
#parallax_stacks_in_729_34{position:relative;overflow:visible}#parallax_stacks_in_729_34 .parallax-overlay{position:absolute;top:-20px;height:calc(100% + 40px);width:100%;opacity:0.50}#parallax_stacks_in_729_34 .parallax-overlay.overlay-hide{display:none}#parallax_stacks_in_729_34 .parallax-overlay.overlay-color{background-color:rgba(0, 0, 0, 1.00)}#parallax_stacks_in_729_34 .parallax-overlay.overlay-tile{background-image:url();background-repeat:repeat}@media only screen and (max-width:40em){#parallax_stacks_in_729_34 .parallax-overlay{height:100%;top:0}}#parallax_stacks_in_729_34{background:transparent}#parallax_stacks_in_729_34.type-cover{position:absolute}#parallax_stacks_in_729_34.type-image{min-height:250px}#parallax_stacks_in_729_34.touch-device{background-image:none !important;position:relative}#parallax_stacks_in_729_34.touch-device:after{position:absolute;content:"";top:0;left:0;bottom:0;right:0;height:100%;width:100%;background-size:cover;background-position:center center;overflow:hidden;opacity:1.00;z-index:-1}#parallax_stacks_in_729_34 > *{z-index:10}@media only screen and (max-width:40em){.parallax-mirror{display:none}#parallax_stacks_in_729_34{background-image:none !important;position:relative}#parallax_stacks_in_729_34:after{position:absolute;content:"";top:0;left:0;bottom:0;right:0;height:100%;width:100%;background-size:cover;background-position:center center;overflow:hidden;opacity:1.00;z-index:-1}}


.ph{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(34, 34, 34, 1.00);--link-color:rgba(0, 140, 186, 1.00);--link-color-hover:rgba(0, 102, 136, 1.00);--link-decoration:none;--link-decoration-hover:none}
.ph{padding:0.5rem ;}  
.ph{background-color:rgba(188, 201, 203, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.ph{background-attachment:scroll!important}}
.ph-border{border-color:rgba(188, 201, 203, 1.00) ;border-width:2px ;border-style:solid ;}
.ph-border{margin-top:0 ;margin-right:0 ;margin-bottom:0.75rem ;margin-left:0 ;}  
.cart-border{margin-top:0 ;margin-right:0 ;margin-bottom:0.75rem ;margin-left:0 ;}  
.cart-border{border-color:var(--primary) ;border-width:2px ;border-style:solid ;}

.border-lg2{border-color:var(--light-gray) ;border-width:2px ;border-style:solid ;}
.border-dg2{border-color:var(--dark-gray) ;border-width:2px ;border-style:solid ;}

.sh{filter:drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.60));}


 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,.fontpro-stacks_in_729_83{font-style:normal;font-weight:400;font-family:"Raleway",sans-serif }

 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),.fontpro-stacks_in_729_84{font-style:normal;font-weight:400;font-family:"Roboto",sans-serif }p:not(.custom-font),p.font-family-text:not(.custom-font),.text_stack:not(.custom-font){font-style:normal;font-weight:400;font-family:"Roboto",sans-serif }
.tw{color:rgba(245, 245, 245, 1.00) ;}
.tw{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(255, 255, 255, 1.00);--small-color:rgba(255, 255, 255, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(255, 255, 255, 1.00);--link-color-hover:rgba(255, 255, 255, 1.00);--link-decoration:none;--link-decoration-hover:none}
.ft{display:inline-block;white-space:nowrap}

.porthole{width:16rem ;}  
.porthole{height:16rem ;}  
.porthole{border-radius:50% ;}
.porthole{background-color:var(--warning) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.porthole{background-attachment:scroll!important}}

.hover1{transition:all 1000ms ease 0ms }
.hover1:hover{background-color:rgba(124, 124, 124, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.hover1{background-attachment:scroll!important}}
.hover1{background-color:rgba(148, 169, 183, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.hover1{background-attachment:scroll!important}}

.m-80{margin-top:-5rem ;margin-right:0 ;margin-bottom:0 ;margin-left:0 ;}  
.container{margin-right:2rem ;margin-left:2rem ;}  
.m8{margin:0.5rem ;}  
.m20{margin:1.25rem ;}  
.m160{margin-top:0.00% ;margin-right:5.00% ;margin-bottom:0.00% ;margin-left:5.00% ;}@media only screen and (min-width:40em){.m160{margin-top:0.00% ;margin-right:20.00% ;margin-bottom:0.00% ;margin-left:20.00% }}@media only screen and (min-width:64em){.m160{margin-top:0.00% ;margin-right:20.00% ;margin-bottom:0.00% ;margin-left:20.00% }}
.mb20{margin-bottom:1.25rem ;}  
.quote{margin-top:1.25rem ;margin-right:3rem ;margin-bottom:0.75rem ;margin-left:3rem ;}  
.mb8{margin-bottom:0.5rem ;}  
.p48{padding-top:0 ;padding-right:3rem ;padding-left:3rem ;}  
.p20{padding:1.25rem ;}  
.p12{padding:0.75rem ;}  
.p8{padding:0.5rem ;}  
.h192{height:12rem ;}  

.bg01{background-color:rgba(22, 50, 79, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg01{background-attachment:scroll!important}}
.bg02{background-color:rgba(42, 98, 143, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg02{background-attachment:scroll!important}}
.bg03{background-color:var(--primary) ;background-color:rgba(62, 146, 204, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg03{background-attachment:scroll!important}}
.bg04{background-color:rgba(124, 124, 124, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg04{background-attachment:scroll!important}}
.bg05{background-color:rgba(148, 169, 183, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg05{background-attachment:scroll!important}}
.bg06{background-color:rgba(188, 201, 203, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg06{background-attachment:scroll!important}}
.bg07{background-color:rgba(247, 247, 247, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg07{background-attachment:scroll!important}}
.bg08{background-color:rgba(204, 204, 204, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg08{background-attachment:scroll!important}}
.bg09{background-color:rgba(77, 0, 107, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg09{background-attachment:scroll!important}}
.bg10{background-color:rgba(96, 60, 132, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg10{background-attachment:scroll!important}}
.bg11{background-color:rgba(240, 0, 26, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg11{background-attachment:scroll!important}}
.bg12{background-color:rgba(252, 106, 8, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg12{background-attachment:scroll!important}}
.bg13{background-color:rgba(254, 195, 9, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg13{background-attachment:scroll!important}}
.bg14{background-color:rgba(58, 112, 2, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg14{background-attachment:scroll!important}}
.bgwp {
  position: relative;
  background-color: #dfdbe5;
  box-shadow: inset 0 0 0vw rgba(0, 0, 0, 1.00);
  background-attachment: scroll; }

.bgwp {
  background-color: #2a628f;
  background-image: linear-gradient(114deg, #2a628f 1%, #3e92cc 19%, #f7f7f7 86%); }
.portholetext{position: absolute  ;z-index:2 ;top:126px ;bottom:unset ;left:unset ;right:126px ;}
#stacks_in_729_137 .glider-wrapper,#stacks_in_729_137 .glider-button{-webkit-transition:all 400ms ease;transition:all 400ms ease}#stacks_in_729_137 .glider-wrapper.custom-style{background-color:#C8D3D5;color:rgba(255, 255, 255, 1.00)}#stacks_in_729_137 .glider-wrapper.custom-style div,#stacks_in_729_137 .glider-wrapper.custom-style p{color:rgba(255, 255, 255, 1.00)}#stacks_in_729_137 .glider-wrapper.custom-style .glider-toggle{color:rgba(255, 255, 255, 1.00)}#stacks_in_729_137 .glider-wrapper .glider-content{padding:3.25rem 1rem}@media only screen and (min-width:40.063em){#stacks_in_729_137 .glider-wrapper .glider-content{padding:3.25rem 3.00rem}}#stacks_in_729_137 .glider-button{margin:0px}#stacks_in_729_137 .glider-button.custom-style{background-color:#FC6A08;color:#FFFFFF}#stacks_in_729_137 .glider-button.static-width{width:100px}#stacks_in_729_137 .launcher-bar .glider-button{text-align:left}#stacks_in_729_137 .location-left .glider-button,#stacks_in_729_137 .location-right .glider-button{top:17%}#stacks_in_729_137 .location-left .glider-button.flipPosition,#stacks_in_729_137 .location-right .glider-button.flipPosition{top:auto;bottom:17%}#stacks_in_729_137 .location-top .glider-button,#stacks_in_729_137 .location-bottom .glider-button{left:17%}#stacks_in_729_137 .location-top .glider-button.flipPosition,#stacks_in_729_137 .location-bottom .glider-button.flipPosition{left:auto;right:17%}@media only screen and (min-width:40.063em){#stacks_in_729_137 .location-left .glider-wrapper.opened,#stacks_in_729_137 .location-right .glider-wrapper.opened{width:40%}#stacks_in_729_137 .location-left.slideout .glider-wrapper,#stacks_in_729_137 .location-right.slideout .glider-wrapper{width:40%}#stacks_in_729_137 .location-left .glider-button.opened{left:40%}#stacks_in_729_137 .location-left.slideout .glider-wrapper{margin-left:-40%}#stacks_in_729_137 .location-right .glider-button.opened{right:40%}#stacks_in_729_137 .location-right.slideout .glider-wrapper{margin-right:-40%}#stacks_in_729_137 .location-top .glider-wrapper.opened,#stacks_in_729_137 .location-bottom .glider-wrapper.opened{height:40%}#stacks_in_729_137 .location-top .glider-button.opened{top:40%}#stacks_in_729_137 .location-bottom .glider-button.opened{bottom:40%}}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_743 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_743 {
		display: none !important;
	}
}
#stacks_in_5 .accordion{margin:0}#stacks_in_5 .accordion-navigation > a{margin-top:0.10rem}#stacks_in_5 .accordion-navigation:first-child > a{margin-top:0}#stacks_in_5 .accordion-navigation > a{background-color:rgba(188, 201, 203, 1.00);color:rgba(252, 255, 252, 1.00)}#stacks_in_5 .accordion-navigation > a:hover{background-color:rgba(178, 190, 192, 1.00)}#stacks_in_5 .accordion-navigation.active > a{background-color:rgba(50, 126, 192, 1.00)}
/*
 * CSS Styles that are needed by jScrollPane for it to operate correctly.
 *
 * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
 * may not operate correctly without them.
 */

#stacks_in_33 .jspContainer
{
	overflow: hidden;
	position: relative;
}

#stacks_in_33 .jspPane
{
	position: absolute;
}

#stacks_in_33 .jspVerticalBar
{
	position: absolute;
	top: 0;
	right: 0;
	width: 16px;
	height: 100%;
}

#stacks_in_33 .jspHorizontalBar
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 16px;
}

#stacks_in_33 .jspVerticalBar *,
#stacks_in_33 .jspHorizontalBar *
{
	margin: 0;
	padding: 0;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

#stacks_in_33 .jspCap
{
	display: none;
}

#stacks_in_33 .jspHorizontalBar .jspCap
{
	float: left;
}

#stacks_in_33 .jspTrack
{
	background: #CCCCCC;
	/**/
	position: relative;
}

#stacks_in_33 .jspDrag
{
	background: #7D7D7D;
	/**/
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

#stacks_in_33 .jspHorizontalBar .jspTrack,
#stacks_in_33 .jspHorizontalBar .jspDrag
{
	float: left;
	height: 100%;
}



#stacks_in_33 .jspArrow
{	
	text-indent: -20000px;
	display: block;
	cursor: pointer;

}

#stacks_in_33 .jspArrow:hover
{
	background-color:#AAAAAA;
}

#stacks_in_33 .jspArrow.jspDisabled
{
	cursor: default;
}

#stacks_in_33 .jspArrowUp{
	background-color:transparent;
	background:  #CCCCCC   no-repeat;
}
#stacks_in_33 .jspArrowDown{
	background-color:transparent;
	background:  #CCCCCC   no-repeat;
}
#stacks_in_33 .jspArrowRight{
	background-color:transparent;
	/*background:  url() no-repeat;*/
}
#stacks_in_33 .jspArrowLeft{
	background-color:transparent;
	/*background:  url() no-repeat;*/
}
#stacks_in_33 .jspArrowUp:hover{

	background:   #AAAAAA   no-repeat;
}
#stacks_in_33 .jspArrowDown:hover{

	background:   #AAAAAA   no-repeat;
}
#stacks_in_33 .jspArrowRight:hover{

	/*background: #AAAAAA url() no-repeat;*/
}
#stacks_in_33 .jspArrowLeft:hover{

	/*background: #AAAAAA url() no-repeat;*/
}

#stacks_in_33 .jspVerticalBar .jspArrow
{
	height:16px;
	width:16px;
}

#stacks_in_33 .jspHorizontalBar .jspArrow
{
	width: 16px;
	float: left;
	height: 100%;
}



#stacks_in_33 .jspVerticalBar .jspArrow:focus
{
	outline: none;
}

#stacks_in_33 .jspCorner
{
	background: #eeeef4;
	float: left;
	height: 100%;
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner
{
	margin: 0 -3px 0 0;
}
#stacks_in_33 {
	padding: 0px 0px 20px 0px;
}
#stacks_in_87 ul li{line-height:1.6;margin-bottom:0px;padding-left:0px}#stacks_in_87 ul li.custom{font-size:16px}#stacks_in_87 ul.color{color:rgba(34, 34, 34, 1.00)}#stacks_in_87 ul.color i.icon-color1{color:rgba(34, 34, 34, 1.00)}#stacks_in_87 ul.color i.icon-color2{color:rgba(0, 128, 255, 1.00)}#stacks_in_87 .fa-li{line-height:1.6;top:0}

#stacks_in_87 {
	margin: 0px 0px 10px 0px;
}
#stacks_in_98 ul li{line-height:1.6;margin-bottom:0px;padding-left:0px}#stacks_in_98 ul li.custom{font-size:16px}#stacks_in_98 ul.color{color:rgba(34, 34, 34, 1.00)}#stacks_in_98 ul.color i.icon-color1{color:rgba(34, 34, 34, 1.00)}#stacks_in_98 ul.color i.icon-color2{color:rgba(0, 128, 255, 1.00)}#stacks_in_98 .fa-li{line-height:1.6;top:0}

#stacks_in_98 {
	margin: 0px 0px 10px 0px;
}
#stacks_in_116 ul li{line-height:1.6;margin-bottom:0px;padding-left:0px}#stacks_in_116 ul li.custom{font-size:16px}#stacks_in_116 ul.color{color:rgba(34, 34, 34, 1.00)}#stacks_in_116 ul.color i.icon-color1{color:rgba(34, 34, 34, 1.00)}#stacks_in_116 ul.color i.icon-color2{color:rgba(0, 128, 255, 1.00)}#stacks_in_116 .fa-li{line-height:1.6;top:0}

#stacks_in_116 {
	margin: 0px 0px 10px 0px;
}
#stacks_in_265 ul li{line-height:1.6;margin-bottom:0px;padding-left:0px}#stacks_in_265 ul li.custom{font-size:16px}#stacks_in_265 ul.color{color:rgba(34, 34, 34, 1.00)}#stacks_in_265 ul.color i.icon-color1{color:rgba(34, 34, 34, 1.00)}#stacks_in_265 ul.color i.icon-color2{color:rgba(0, 128, 255, 1.00)}#stacks_in_265 .fa-li{line-height:1.6;top:0}

#stacks_in_265 {
	margin: 0px 0px 10px 0px;
}
#stacks_in_135 ul li{line-height:1.6;margin-bottom:0px;padding-left:0px}#stacks_in_135 ul li.custom{font-size:16px}#stacks_in_135 ul.color{color:rgba(34, 34, 34, 1.00)}#stacks_in_135 ul.color i.icon-color1{color:rgba(34, 34, 34, 1.00)}#stacks_in_135 ul.color i.icon-color2{color:rgba(0, 128, 255, 1.00)}#stacks_in_135 .fa-li{line-height:1.6;top:0}

#stacks_in_135 {
	margin: 0px 0px 10px 0px;
}
#stacks_in_158 ul li{line-height:1.6;margin-bottom:0px;padding-left:0px}#stacks_in_158 ul li.custom{font-size:16px}#stacks_in_158 ul.color{color:rgba(34, 34, 34, 1.00)}#stacks_in_158 ul.color i.icon-color1{color:rgba(34, 34, 34, 1.00)}#stacks_in_158 ul.color i.icon-color2{color:rgba(0, 128, 255, 1.00)}#stacks_in_158 .fa-li{line-height:1.6;top:0}

#stacks_in_158 {
	margin: 0px 0px 10px 0px;
}
#stacks_in_186 ul li{line-height:1.6;margin-bottom:0px;padding-left:0px}#stacks_in_186 ul li.custom{font-size:16px}#stacks_in_186 ul.color{color:rgba(34, 34, 34, 1.00)}#stacks_in_186 ul.color i.icon-color1{color:rgba(34, 34, 34, 1.00)}#stacks_in_186 ul.color i.icon-color2{color:rgba(0, 128, 255, 1.00)}#stacks_in_186 .fa-li{line-height:1.6;top:0}
#stacks_in_208 ul li{line-height:1.6;margin-bottom:0px;padding-left:0px}#stacks_in_208 ul li.custom{font-size:16px}#stacks_in_208 ul.color{color:rgba(34, 34, 34, 1.00)}#stacks_in_208 ul.color i.icon-color1{color:rgba(34, 34, 34, 1.00)}#stacks_in_208 ul.color i.icon-color2{color:rgba(0, 128, 255, 1.00)}#stacks_in_208 .fa-li{line-height:1.6;top:0}
#stacks_in_225 ul li{line-height:1.6;margin-bottom:0px;padding-left:0px}#stacks_in_225 ul li.custom{font-size:16px}#stacks_in_225 ul.color{color:rgba(34, 34, 34, 1.00)}#stacks_in_225 ul.color i.icon-color1{color:rgba(34, 34, 34, 1.00)}#stacks_in_225 ul.color i.icon-color2{color:rgba(0, 128, 255, 1.00)}#stacks_in_225 .fa-li{line-height:1.6;top:0}
#stacks_in_242 ul li{line-height:1.6;margin-bottom:0px;padding-left:0px}#stacks_in_242 ul li.custom{font-size:16px}#stacks_in_242 ul.color{color:rgba(34, 34, 34, 1.00)}#stacks_in_242 ul.color i.icon-color1{color:rgba(34, 34, 34, 1.00)}#stacks_in_242 ul.color i.icon-color2{color:rgba(0, 128, 255, 1.00)}#stacks_in_242 .fa-li{line-height:1.6;top:0}
#stacks_in_78 .line_listig {

	border-bottom: 2px solid #777777;
	margin-top: 0px;
	margin-bottom: 10px;

}
#stacks_in_79{text-align:justify}
/*
 * CSS Styles that are needed by jScrollPane for it to operate correctly.
 *
 * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
 * may not operate correctly without them.
 */

#stacks_in_282 .jspContainer
{
	overflow: hidden;
	position: relative;
}

#stacks_in_282 .jspPane
{
	position: absolute;
}

#stacks_in_282 .jspVerticalBar
{
	position: absolute;
	top: 0;
	right: 0;
	width: 16px;
	height: 100%;
}

#stacks_in_282 .jspHorizontalBar
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 16px;
}

#stacks_in_282 .jspVerticalBar *,
#stacks_in_282 .jspHorizontalBar *
{
	margin: 0;
	padding: 0;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

#stacks_in_282 .jspCap
{
	display: none;
}

#stacks_in_282 .jspHorizontalBar .jspCap
{
	float: left;
}

#stacks_in_282 .jspTrack
{
	background: #CCCCCC;
	/**/
	position: relative;
}

#stacks_in_282 .jspDrag
{
	background: #7D7D7D;
	/**/
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

#stacks_in_282 .jspHorizontalBar .jspTrack,
#stacks_in_282 .jspHorizontalBar .jspDrag
{
	float: left;
	height: 100%;
}



#stacks_in_282 .jspArrow
{	
	text-indent: -20000px;
	display: block;
	cursor: pointer;

}

#stacks_in_282 .jspArrow:hover
{
	background-color:#AAAAAA;
}

#stacks_in_282 .jspArrow.jspDisabled
{
	cursor: default;
}

#stacks_in_282 .jspArrowUp{
	background-color:transparent;
	background:  #CCCCCC   no-repeat;
}
#stacks_in_282 .jspArrowDown{
	background-color:transparent;
	background:  #CCCCCC   no-repeat;
}
#stacks_in_282 .jspArrowRight{
	background-color:transparent;
	/*background:  url() no-repeat;*/
}
#stacks_in_282 .jspArrowLeft{
	background-color:transparent;
	/*background:  url() no-repeat;*/
}
#stacks_in_282 .jspArrowUp:hover{

	background:   #AAAAAA   no-repeat;
}
#stacks_in_282 .jspArrowDown:hover{

	background:   #AAAAAA   no-repeat;
}
#stacks_in_282 .jspArrowRight:hover{

	/*background: #AAAAAA url() no-repeat;*/
}
#stacks_in_282 .jspArrowLeft:hover{

	/*background: #AAAAAA url() no-repeat;*/
}

#stacks_in_282 .jspVerticalBar .jspArrow
{
	height:16px;
	width:16px;
}

#stacks_in_282 .jspHorizontalBar .jspArrow
{
	width: 16px;
	float: left;
	height: 100%;
}



#stacks_in_282 .jspVerticalBar .jspArrow:focus
{
	outline: none;
}

#stacks_in_282 .jspCorner
{
	background: #eeeef4;
	float: left;
	height: 100%;
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner
{
	margin: 0 -3px 0 0;
}
#stacks_in_282 {
	padding: 0px 0px 20px 0px;
}
#stacks_in_337 ul li{line-height:1.6;margin-bottom:0px;padding-left:0px}#stacks_in_337 ul li.custom{font-size:16px}#stacks_in_337 ul.color{color:rgba(34, 34, 34, 1.00)}#stacks_in_337 ul.color i.icon-color1{color:rgba(34, 34, 34, 1.00)}#stacks_in_337 ul.color i.icon-color2{color:rgba(0, 128, 255, 1.00)}#stacks_in_337 .fa-li{line-height:1.6;top:0}
#stacks_in_354 ul li{line-height:1.6;margin-bottom:0px;padding-left:0px}#stacks_in_354 ul li.custom{font-size:16px}#stacks_in_354 ul.color{color:rgba(34, 34, 34, 1.00)}#stacks_in_354 ul.color i.icon-color1{color:rgba(34, 34, 34, 1.00)}#stacks_in_354 ul.color i.icon-color2{color:rgba(0, 128, 255, 1.00)}#stacks_in_354 .fa-li{line-height:1.6;top:0}
#stacks_in_380 ul li{line-height:1.6;margin-bottom:0px;padding-left:0px}#stacks_in_380 ul li.custom{font-size:16px}#stacks_in_380 ul.color{color:rgba(34, 34, 34, 1.00)}#stacks_in_380 ul.color i.icon-color1{color:rgba(34, 34, 34, 1.00)}#stacks_in_380 ul.color i.icon-color2{color:rgba(0, 128, 255, 1.00)}#stacks_in_380 .fa-li{line-height:1.6;top:0}
#stacks_in_400 ul li{line-height:1.6;margin-bottom:0px;padding-left:0px}#stacks_in_400 ul li.custom{font-size:16px}#stacks_in_400 ul.color{color:rgba(34, 34, 34, 1.00)}#stacks_in_400 ul.color i.icon-color1{color:rgba(34, 34, 34, 1.00)}#stacks_in_400 ul.color i.icon-color2{color:rgba(0, 128, 255, 1.00)}#stacks_in_400 .fa-li{line-height:1.6;top:0}
#stacks_in_436 ul li{line-height:1.6;margin-bottom:0px;padding-left:0px}#stacks_in_436 ul li.custom{font-size:16px}#stacks_in_436 ul.color{color:rgba(34, 34, 34, 1.00)}#stacks_in_436 ul.color i.icon-color1{color:rgba(34, 34, 34, 1.00)}#stacks_in_436 ul.color i.icon-color2{color:rgba(0, 128, 255, 1.00)}#stacks_in_436 .fa-li{line-height:1.6;top:0}
#stacks_in_567 ul li{line-height:1.6;margin-bottom:0px;padding-left:0px}#stacks_in_567 ul li.custom{font-size:16px}#stacks_in_567 ul.color{color:rgba(34, 34, 34, 1.00)}#stacks_in_567 ul.color i.icon-color1{color:rgba(34, 34, 34, 1.00)}#stacks_in_567 ul.color i.icon-color2{color:rgba(0, 128, 255, 1.00)}#stacks_in_567 .fa-li{line-height:1.6;top:0}
#stacks_in_453 ul li{line-height:1.6;margin-bottom:0px;padding-left:0px}#stacks_in_453 ul li.custom{font-size:16px}#stacks_in_453 ul.color{color:rgba(34, 34, 34, 1.00)}#stacks_in_453 ul.color i.icon-color1{color:rgba(34, 34, 34, 1.00)}#stacks_in_453 ul.color i.icon-color2{color:rgba(0, 128, 255, 1.00)}#stacks_in_453 .fa-li{line-height:1.6;top:0}
#stacks_in_470 ul li{line-height:1.6;margin-bottom:0px;padding-left:0px}#stacks_in_470 ul li.custom{font-size:16px}#stacks_in_470 ul.color{color:rgba(34, 34, 34, 1.00)}#stacks_in_470 ul.color i.icon-color1{color:rgba(34, 34, 34, 1.00)}#stacks_in_470 ul.color i.icon-color2{color:rgba(0, 128, 255, 1.00)}#stacks_in_470 .fa-li{line-height:1.6;top:0}
#stacks_in_487 ul li{line-height:1.6;margin-bottom:0px;padding-left:0px}#stacks_in_487 ul li.custom{font-size:16px}#stacks_in_487 ul.color{color:rgba(34, 34, 34, 1.00)}#stacks_in_487 ul.color i.icon-color1{color:rgba(34, 34, 34, 1.00)}#stacks_in_487 ul.color i.icon-color2{color:rgba(0, 128, 255, 1.00)}#stacks_in_487 .fa-li{line-height:1.6;top:0}
#stacks_in_504 ul li{line-height:1.6;margin-bottom:0px;padding-left:0px}#stacks_in_504 ul li.custom{font-size:16px}#stacks_in_504 ul.color{color:rgba(34, 34, 34, 1.00)}#stacks_in_504 ul.color i.icon-color1{color:rgba(34, 34, 34, 1.00)}#stacks_in_504 ul.color i.icon-color2{color:rgba(0, 128, 255, 1.00)}#stacks_in_504 .fa-li{line-height:1.6;top:0}
#stacks_in_521 ul li{line-height:1.6;margin-bottom:0px;padding-left:0px}#stacks_in_521 ul li.custom{font-size:16px}#stacks_in_521 ul.color{color:rgba(34, 34, 34, 1.00)}#stacks_in_521 ul.color i.icon-color1{color:rgba(34, 34, 34, 1.00)}#stacks_in_521 ul.color i.icon-color2{color:rgba(0, 128, 255, 1.00)}#stacks_in_521 .fa-li{line-height:1.6;top:0}
#stacks_in_564 ul li{line-height:1.6;margin-bottom:0px;padding-left:0px}#stacks_in_564 ul li.custom{font-size:16px}#stacks_in_564 ul.color{color:rgba(34, 34, 34, 1.00)}#stacks_in_564 ul.color i.icon-color1{color:rgba(34, 34, 34, 1.00)}#stacks_in_564 ul.color i.icon-color2{color:rgba(0, 128, 255, 1.00)}#stacks_in_564 .fa-li{line-height:1.6;top:0}
#stacks_in_547 ul li{line-height:1.6;margin-bottom:0px;padding-left:0px}#stacks_in_547 ul li.custom{font-size:16px}#stacks_in_547 ul.color{color:rgba(34, 34, 34, 1.00)}#stacks_in_547 ul.color i.icon-color1{color:rgba(34, 34, 34, 1.00)}#stacks_in_547 ul.color i.icon-color2{color:rgba(0, 128, 255, 1.00)}#stacks_in_547 .fa-li{line-height:1.6;top:0}
.wallpaper_stacks_in_730_3 {
  position: relative;
  overflow: hidden;
  margin: 0px;
  padding: 0px;
  border-color: #9c92ac;
  border-style: solid;
  border-width: 0px;
  border-radius: 0px;
  background-color: #dfdbe5;
  box-shadow: inset 0 0 0vw rgba(0, 0, 0, 1.00);
  background-attachment: scroll; }
  .wallpaper_stacks_in_730_3:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-attachment: scroll;
    overflow: hidden; }
  .wallpaper_stacks_in_730_3.full-height, .wallpaper_stacks_in_730_3.variable-height {
    height: 100%;
    display: grid;
    align-content: center; }
  .wallpaper_stacks_in_730_3.variable-height {
    height: 40vh;
    min-height: 200px;
    max-height: 500px; }

.wallpaper_stacks_in_730_3 > .content {
  position: relative; }

.wallpaper_stacks_in_730_3 {
  background-color: #a4b8c4;
  background-image: linear-gradient(112deg, #a4b8c4 0%, #c8d3d5 60%, #ffffff 100%); }

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_730_7 {
	height: 30.00px;
}




















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

/* Preview and publish styling */


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






.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_730_34 {
	height: 30.00px;
}




















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

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_730_42 {
	height: 10.00px;
}




















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


#grid-stacks_in_730_2 > .grid-item,
#infinity-stacks_in_730_2 > .grid-item {
  display: block; }

.wallpaper_stacks_in_730_66 {
  position: relative;
  overflow: hidden;
  margin: 0px;
  padding: 0px;
  border-color: #9c92ac;
  border-style: solid;
  border-width: 0px;
  border-radius: 0px;
  background-color: #dfdbe5;
  box-shadow: inset 0 0 0vw rgba(0, 0, 0, 1.00);
  background-attachment: fixed; }
  .wallpaper_stacks_in_730_66:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-attachment: fixed;
    overflow: hidden; }
  .wallpaper_stacks_in_730_66.full-height, .wallpaper_stacks_in_730_66.variable-height {
    height: 100%;
    display: grid;
    align-content: center; }
  .wallpaper_stacks_in_730_66.variable-height {
    height: 40vh;
    min-height: 200px;
    max-height: 500px; }

.wallpaper_stacks_in_730_66 > .content {
  position: relative; }

.wallpaper_stacks_in_730_66 {
  background-color: #c8d3d5;
  background-image: linear-gradient(109deg, #c8d3d5 0%, #cccccc 45%, #f7f7f7 90%); }
#stacks_in_730_68_22 .line_listig {

	border-bottom: 1px solid #FCFFFC;
	margin-top: 0px;
	margin-bottom: 0px;

}




.tickercontainer,
/*width of the original container in which the ticker appears*/
.tickercontainer .mask,
/*can be used to achieve padding within the container*/
ul.newsticker {
    -webkit-transition: all 0s linear;
    -moz-transition: all 0s linear;
    -o-transition: all 0s linear;
    transition: all 0s linear;
    list-style:none;
    margin:0;
}

.tickercontainer { 
	height: 20px;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
.tickercontainer .mask { 
	position: relative;
	/*top: 8px;*/
	/*height: 18px;*/
	overflow: hidden;
}

ul.newsticker { 
	-webkit-transition: all 0s linear;
	-moz-transition: all 0s linear;
	-o-transition: all 0s linear;
	transition: all 0s linear;
	position: relative;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

ul.newsticker li {
	float: left;
	margin: 0;
	padding: 0 7px;
	box-sizing: border-box;
}

ul.newsticker li a:link,
ul.newsticker li a:visited{
	color: #696969;
}

ul.newsticker li a:hover{
	color: #FC6A08;
}


#stacks_in_730_68_2 {
	padding: 10px 10px 15px 10px;
}
#stacks_in_730_68_21 .line_listig {

	border-bottom: 1px solid #FCFFFC;
	margin-top: 0px;
	margin-bottom: 0px;

}

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_730_69 {
	height: 30.00px;
}




















@media print {
	#spacerStackstacks_in_730_69 {
		display: none !important;
	}
}
#cookiejar_stacks_in_730_70{padding:20px;background-color:rgba(255, 255, 255, 0.90)}
#stacks_in_730_96 ul li{line-height:1.6;margin-bottom:0px;padding-left:0px}#stacks_in_730_96 ul li.custom{font-size:16px}#stacks_in_730_96 ul.color{color:rgba(34, 34, 34, 1.00)}#stacks_in_730_96 ul.color i.icon-color1{color:rgba(34, 34, 34, 1.00)}#stacks_in_730_96 ul.color i.icon-color2{color:rgba(0, 128, 255, 1.00)}#stacks_in_730_96 .fa-li{line-height:1.6;top:0}

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