/**
 * 
 * NAME:          Custom Stylesheet
 * DESCRIPTION:   Where all less files get compiled.
 * -----------------------------------------------------------------------------
*/
@charset "UTF-8";
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}
@-webkit-keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
  display: none;
}
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}
.mfp-ajax-cur {
  cursor: progress;
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mfp-loading.mfp-figure {
  display: none;
}
.mfp-hide {
  display: none !important;
}
.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #CCC;
}
.mfp-preloader a:hover {
  color: #FFF;
}
.mfp-s-ready .mfp-preloader {
  display: none;
}
.mfp-s-error .mfp-content {
  display: none;
}
button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}
.mfp-close:active {
  top: 1px;
}
.mfp-close-btn-in .mfp-close {
  color: #333;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}
.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}
.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}
.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}
/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}
/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}
.mfp-image-holder .mfp-content {
  max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-loading .slick-list {
  background: #ffffff url('../images/ajax-loader.gif') center center no-repeat;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/* *** SIZE
============================================================================ */
/* *** TRANSITION
============================================================================ */
/* *** TRANSFORM
============================================================================ */
/* *** BOX SHADOW
============================================================================ */
/* *** SOCICONS 
============================================================================ */
@font-face {
  font-family: 'Socicon';
  src: url('../fonts/Socicon.eot?6abp0d');
  src: url('../fonts/Socicon.eot?6abp0d#iefix') format('embedded-opentype'), url('../fonts/Socicon.woff2?6abp0d') format('woff2'), url('../fonts/Socicon.ttf?6abp0d') format('truetype'), url('../fonts/Socicon.woff?6abp0d') format('woff'), url('../fonts/Socicon.svg?6abp0d#Socicon') format('svg');
  font-weight: normal;
  font-style: normal;
}
.socicon-moddb:before {
  content: "\e94b";
}
.socicon-indiedb:before {
  content: "\e94c";
}
.socicon-traxsource:before {
  content: "\e94d";
}
.socicon-gamefor:before {
  content: "\e94e";
}
.socicon-pixiv:before {
  content: "\e94f";
}
.socicon-myanimelist:before {
  content: "\e950";
}
.socicon-blackberry:before {
  content: "\e951";
}
.socicon-wickr:before {
  content: "\e952";
}
.socicon-spip:before {
  content: "\e953";
}
.socicon-napster:before {
  content: "\e954";
}
.socicon-beatport:before {
  content: "\e955";
}
.socicon-hackerone:before {
  content: "\e956";
}
.socicon-hackernews:before {
  content: "\e946";
}
.socicon-smashwords:before {
  content: "\e947";
}
.socicon-kobo:before {
  content: "\e948";
}
.socicon-bookbub:before {
  content: "\e949";
}
.socicon-mailru:before {
  content: "\e94a";
}
.socicon-gitlab:before {
  content: "\e945";
}
.socicon-instructables:before {
  content: "\e944";
}
.socicon-portfolio:before {
  content: "\e943";
}
.socicon-codered:before {
  content: "\e940";
}
.socicon-origin:before {
  content: "\e941";
}
.socicon-nextdoor:before {
  content: "\e942";
}
.socicon-udemy:before {
  content: "\e93f";
}
.socicon-livemaster:before {
  content: "\e93e";
}
.socicon-crunchbase:before {
  content: "\e93b";
}
.socicon-homefy:before {
  content: "\e93c";
}
.socicon-calendly:before {
  content: "\e93d";
}
.socicon-realtor:before {
  content: "\e90f";
}
.socicon-tidal:before {
  content: "\e910";
}
.socicon-qobuz:before {
  content: "\e911";
}
.socicon-natgeo:before {
  content: "\e912";
}
.socicon-mastodon:before {
  content: "\e913";
}
.socicon-unsplash:before {
  content: "\e914";
}
.socicon-homeadvisor:before {
  content: "\e915";
}
.socicon-angieslist:before {
  content: "\e916";
}
.socicon-codepen:before {
  content: "\e917";
}
.socicon-slack:before {
  content: "\e918";
}
.socicon-openaigym:before {
  content: "\e919";
}
.socicon-logmein:before {
  content: "\e91a";
}
.socicon-fiverr:before {
  content: "\e91b";
}
.socicon-gotomeeting:before {
  content: "\e91c";
}
.socicon-aliexpress:before {
  content: "\e91d";
}
.socicon-guru:before {
  content: "\e91e";
}
.socicon-appstore:before {
  content: "\e91f";
}
.socicon-homes:before {
  content: "\e920";
}
.socicon-zoom:before {
  content: "\e921";
}
.socicon-alibaba:before {
  content: "\e922";
}
.socicon-craigslist:before {
  content: "\e923";
}
.socicon-wix:before {
  content: "\e924";
}
.socicon-redfin:before {
  content: "\e925";
}
.socicon-googlecalendar:before {
  content: "\e926";
}
.socicon-shopify:before {
  content: "\e927";
}
.socicon-freelancer:before {
  content: "\e928";
}
.socicon-seedrs:before {
  content: "\e929";
}
.socicon-bing:before {
  content: "\e92a";
}
.socicon-doodle:before {
  content: "\e92b";
}
.socicon-bonanza:before {
  content: "\e92c";
}
.socicon-squarespace:before {
  content: "\e92d";
}
.socicon-toptal:before {
  content: "\e92e";
}
.socicon-gust:before {
  content: "\e92f";
}
.socicon-ask:before {
  content: "\e930";
}
.socicon-trulia:before {
  content: "\e931";
}
.socicon-loomly:before {
  content: "\e932";
}
.socicon-ghost:before {
  content: "\e933";
}
.socicon-upwork:before {
  content: "\e934";
}
.socicon-fundable:before {
  content: "\e935";
}
.socicon-booking:before {
  content: "\e936";
}
.socicon-googlemaps:before {
  content: "\e937";
}
.socicon-zillow:before {
  content: "\e938";
}
.socicon-niconico:before {
  content: "\e939";
}
.socicon-toneden:before {
  content: "\e93a";
}
.socicon-augment:before {
  content: "\e908";
}
.socicon-bitbucket:before {
  content: "\e909";
}
.socicon-fyuse:before {
  content: "\e90a";
}
.socicon-yt-gaming:before {
  content: "\e90b";
}
.socicon-sketchfab:before {
  content: "\e90c";
}
.socicon-mobcrush:before {
  content: "\e90d";
}
.socicon-microsoft:before {
  content: "\e90e";
}
.socicon-pandora:before {
  content: "\e907";
}
.socicon-messenger:before {
  content: "\e906";
}
.socicon-gamewisp:before {
  content: "\e905";
}
.socicon-bloglovin:before {
  content: "\e904";
}
.socicon-tunein:before {
  content: "\e903";
}
.socicon-gamejolt:before {
  content: "\e901";
}
.socicon-trello:before {
  content: "\e902";
}
.socicon-spreadshirt:before {
  content: "\e900";
}
.socicon-500px:before {
  content: "\e000";
}
.socicon-8tracks:before {
  content: "\e001";
}
.socicon-airbnb:before {
  content: "\e002";
}
.socicon-alliance:before {
  content: "\e003";
}
.socicon-amazon:before {
  content: "\e004";
}
.socicon-amplement:before {
  content: "\e005";
}
.socicon-android:before {
  content: "\e006";
}
.socicon-angellist:before {
  content: "\e007";
}
.socicon-apple:before {
  content: "\e008";
}
.socicon-appnet:before {
  content: "\e009";
}
.socicon-baidu:before {
  content: "\e00a";
}
.socicon-bandcamp:before {
  content: "\e00b";
}
.socicon-battlenet:before {
  content: "\e00c";
}
.socicon-mixer:before {
  content: "\e00d";
}
.socicon-bebee:before {
  content: "\e00e";
}
.socicon-bebo:before {
  content: "\e00f";
}
.socicon-behance:before {
  content: "\e010";
}
.socicon-blizzard:before {
  content: "\e011";
}
.socicon-blogger:before {
  content: "\e012";
}
.socicon-buffer:before {
  content: "\e013";
}
.socicon-chrome:before {
  content: "\e014";
}
.socicon-coderwall:before {
  content: "\e015";
}
.socicon-curse:before {
  content: "\e016";
}
.socicon-dailymotion:before {
  content: "\e017";
}
.socicon-deezer:before {
  content: "\e018";
}
.socicon-delicious:before {
  content: "\e019";
}
.socicon-deviantart:before {
  content: "\e01a";
}
.socicon-diablo:before {
  content: "\e01b";
}
.socicon-digg:before {
  content: "\e01c";
}
.socicon-discord:before {
  content: "\e01d";
}
.socicon-disqus:before {
  content: "\e01e";
}
.socicon-douban:before {
  content: "\e01f";
}
.socicon-draugiem:before {
  content: "\e020";
}
.socicon-dribbble:before {
  content: "\e021";
}
.socicon-drupal:before {
  content: "\e022";
}
.socicon-ebay:before {
  content: "\e023";
}
.socicon-ello:before {
  content: "\e024";
}
.socicon-endomodo:before {
  content: "\e025";
}
.socicon-envato:before {
  content: "\e026";
}
.socicon-etsy:before {
  content: "\e027";
}
.socicon-facebook:before {
  content: "\e028";
}
.socicon-feedburner:before {
  content: "\e029";
}
.socicon-filmweb:before {
  content: "\e02a";
}
.socicon-firefox:before {
  content: "\e02b";
}
.socicon-flattr:before {
  content: "\e02c";
}
.socicon-flickr:before {
  content: "\e02d";
}
.socicon-formulr:before {
  content: "\e02e";
}
.socicon-forrst:before {
  content: "\e02f";
}
.socicon-foursquare:before {
  content: "\e030";
}
.socicon-friendfeed:before {
  content: "\e031";
}
.socicon-github:before {
  content: "\e032";
}
.socicon-goodreads:before {
  content: "\e033";
}
.socicon-google:before {
  content: "\e034";
}
.socicon-googlescholar:before {
  content: "\e035";
}
.socicon-googlegroups:before {
  content: "\e036";
}
.socicon-googlephotos:before {
  content: "\e037";
}
.socicon-googleplus:before {
  content: "\e038";
}
.socicon-grooveshark:before {
  content: "\e039";
}
.socicon-hackerrank:before {
  content: "\e03a";
}
.socicon-hearthstone:before {
  content: "\e03b";
}
.socicon-hellocoton:before {
  content: "\e03c";
}
.socicon-heroes:before {
  content: "\e03d";
}
.socicon-smashcast:before {
  content: "\e03e";
}
.socicon-horde:before {
  content: "\e03f";
}
.socicon-houzz:before {
  content: "\e040";
}
.socicon-icq:before {
  content: "\e041";
}
.socicon-identica:before {
  content: "\e042";
}
.socicon-imdb:before {
  content: "\e043";
}
.socicon-instagram:before {
  content: "\e044";
}
.socicon-issuu:before {
  content: "\e045";
}
.socicon-istock:before {
  content: "\e046";
}
.socicon-itunes:before {
  content: "\e047";
}
.socicon-keybase:before {
  content: "\e048";
}
.socicon-lanyrd:before {
  content: "\e049";
}
.socicon-lastfm:before {
  content: "\e04a";
}
.socicon-line:before {
  content: "\e04b";
}
.socicon-linkedin:before {
  content: "\e04c";
}
.socicon-livejournal:before {
  content: "\e04d";
}
.socicon-lyft:before {
  content: "\e04e";
}
.socicon-macos:before {
  content: "\e04f";
}
.socicon-mail:before {
  content: "\e050";
}
.socicon-medium:before {
  content: "\e051";
}
.socicon-meetup:before {
  content: "\e052";
}
.socicon-mixcloud:before {
  content: "\e053";
}
.socicon-modelmayhem:before {
  content: "\e054";
}
.socicon-mumble:before {
  content: "\e055";
}
.socicon-myspace:before {
  content: "\e056";
}
.socicon-newsvine:before {
  content: "\e057";
}
.socicon-nintendo:before {
  content: "\e058";
}
.socicon-npm:before {
  content: "\e059";
}
.socicon-odnoklassniki:before {
  content: "\e05a";
}
.socicon-openid:before {
  content: "\e05b";
}
.socicon-opera:before {
  content: "\e05c";
}
.socicon-outlook:before {
  content: "\e05d";
}
.socicon-overwatch:before {
  content: "\e05e";
}
.socicon-patreon:before {
  content: "\e05f";
}
.socicon-paypal:before {
  content: "\e060";
}
.socicon-periscope:before {
  content: "\e061";
}
.socicon-persona:before {
  content: "\e062";
}
.socicon-pinterest:before {
  content: "\e063";
}
.socicon-play:before {
  content: "\e064";
}
.socicon-player:before {
  content: "\e065";
}
.socicon-playstation:before {
  content: "\e066";
}
.socicon-pocket:before {
  content: "\e067";
}
.socicon-qq:before {
  content: "\e068";
}
.socicon-quora:before {
  content: "\e069";
}
.socicon-raidcall:before {
  content: "\e06a";
}
.socicon-ravelry:before {
  content: "\e06b";
}
.socicon-reddit:before {
  content: "\e06c";
}
.socicon-renren:before {
  content: "\e06d";
}
.socicon-researchgate:before {
  content: "\e06e";
}
.socicon-residentadvisor:before {
  content: "\e06f";
}
.socicon-reverbnation:before {
  content: "\e070";
}
.socicon-rss:before {
  content: "\e071";
}
.socicon-sharethis:before {
  content: "\e072";
}
.socicon-skype:before {
  content: "\e073";
}
.socicon-slideshare:before {
  content: "\e074";
}
.socicon-smugmug:before {
  content: "\e075";
}
.socicon-snapchat:before {
  content: "\e076";
}
.socicon-songkick:before {
  content: "\e077";
}
.socicon-soundcloud:before {
  content: "\e078";
}
.socicon-spotify:before {
  content: "\e079";
}
.socicon-stackexchange:before {
  content: "\e07a";
}
.socicon-stackoverflow:before {
  content: "\e07b";
}
.socicon-starcraft:before {
  content: "\e07c";
}
.socicon-stayfriends:before {
  content: "\e07d";
}
.socicon-steam:before {
  content: "\e07e";
}
.socicon-storehouse:before {
  content: "\e07f";
}
.socicon-strava:before {
  content: "\e080";
}
.socicon-streamjar:before {
  content: "\e081";
}
.socicon-stumbleupon:before {
  content: "\e082";
}
.socicon-swarm:before {
  content: "\e083";
}
.socicon-teamspeak:before {
  content: "\e084";
}
.socicon-teamviewer:before {
  content: "\e085";
}
.socicon-technorati:before {
  content: "\e086";
}
.socicon-telegram:before {
  content: "\e087";
}
.socicon-tripadvisor:before {
  content: "\e088";
}
.socicon-tripit:before {
  content: "\e089";
}
.socicon-triplej:before {
  content: "\e08a";
}
.socicon-tumblr:before {
  content: "\e08b";
}
.socicon-twitch:before {
  content: "\e08c";
}
.socicon-twitter:before {
  content: "\e08d";
}
.socicon-uber:before {
  content: "\e08e";
}
.socicon-ventrilo:before {
  content: "\e08f";
}
.socicon-viadeo:before {
  content: "\e090";
}
.socicon-viber:before {
  content: "\e091";
}
.socicon-viewbug:before {
  content: "\e092";
}
.socicon-vimeo:before {
  content: "\e093";
}
.socicon-vine:before {
  content: "\e094";
}
.socicon-vkontakte:before {
  content: "\e095";
}
.socicon-warcraft:before {
  content: "\e096";
}
.socicon-wechat:before {
  content: "\e097";
}
.socicon-weibo:before {
  content: "\e098";
}
.socicon-whatsapp:before {
  content: "\e099";
}
.socicon-wikipedia:before {
  content: "\e09a";
}
.socicon-windows:before {
  content: "\e09b";
}
.socicon-wordpress:before {
  content: "\e09c";
}
.socicon-wykop:before {
  content: "\e09d";
}
.socicon-xbox:before {
  content: "\e09e";
}
.socicon-xing:before {
  content: "\e09f";
}
.socicon-yahoo:before {
  content: "\e0a0";
}
.socicon-yammer:before {
  content: "\e0a1";
}
.socicon-yandex:before {
  content: "\e0a2";
}
.socicon-yelp:before {
  content: "\e0a3";
}
.socicon-younow:before {
  content: "\e0a4";
}
.socicon-youtube:before {
  content: "\e0a5";
}
.socicon-zapier:before {
  content: "\e0a6";
}
.socicon-zerply:before {
  content: "\e0a7";
}
.socicon-zomato:before {
  content: "\e0a8";
}
.socicon-zynga:before {
  content: "\e0a9";
}
/*
 *  Contains all variables that are provided from the designer's styleguide
 */
/* Grid widths */
/*
 *  Colors
 *  add custom color variables as needed in marked area
 */
/*
 * Fonts
 */
.open-sans {
  font-family: 'Open Sans', sans-serif;
}
/* Font Weights */
/*
 *  Widths
 *  add custom widths in marked area below
 */
/* Site Width Padding */
/* Global elements Styles */
body,
button,
input,
select,
textarea {
  color: #f1f1f1;
  font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
}
body {
  background-color: #080806;
  margin: 0 auto;
  overflow: hidden;
  max-width: 2600px;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  clear: both;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px 0;
}
/* enter customer header styles for each media break point below */
h1,
.h1 {
  font-size: 57px;
  font-size: 5.7rem;
  line-height: 1.1;
}
h2,
.h2 {
  font-size: 40px;
  font-size: 4rem;
  line-height: 1.3;
}
h3,
.h3 {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.1;
}
h4,
.h4 {
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.3;
}
h5,
.h5 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.3;
}
h6,
.h6 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.3;
}
@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 40px;
    font-size: 4rem;
    line-height: 1.4;
  }
  h2,
  .h2 {
    font-size: 35px;
    font-size: 3.5rem;
    line-height: 1.2;
  }
  h3,
  .h3 {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.4;
  }
  h4,
  .h4 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.4;
  }
  h5,
  .h5 {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.4;
  }
  h6,
  .h6 {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="password"],
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  width: 100%;
  height: 40px;
  color: #707070;
  border: none;
  padding: 0;
  padding-left: 15px;
  background-color: #f1f1f1;
  font-size: 14px;
  font-size: 1.4rem;
  border: 1px solid #CCCCCC;
}
/* Use for custom select dropdowns styles */
select {
  background-image: url('../images/chevron-down-solid.png');
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 40px;
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}
select:not([disabled]):focus {
  box-shadow: none;
}
textarea {
  height: 200px;
  padding: 10px;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus,
input[type="text"]:active,
input[type="tel"]:active,
input[type="email"]:active,
input[type="number"]:active,
input[type="password"]:active,
input[type="search"]:active,
select:active,
textarea:active {
  outline: none;
  box-shadow: none;
}
::-webkit-input-placeholder {
  color: #7e8083;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
}
:-moz-placeholder {
  color: #7e8083;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
}
::-moz-placeholder {
  color: #7e8083;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
}
:-ms-input-placeholder {
  color: #7e8083;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
}
input:focus::-webkit-input-placeholder {
  color: transparent;
}
input:focus:-moz-input-placeholder {
  color: transparent;
}
input:focus::-moz-input-placeholder {
  color: transparent;
}
input:focus::-ms-input-placeholder {
  color: transparent;
}
a {
  color: #fff100;
  text-decoration: none;
}
a:hover,
a:active {
  color: #f1f1f1;
  text-decoration: none;
}
a:focus {
  outline: none;
}
.link-color {
  color: #fff100;
}
.link-color-hover {
  color: #f1f1f1;
}
p {
  margin-top: 0;
  margin-bottom: 20px;
}
hr {
  display: block;
  border: none;
  border-bottom: 3px solid #5e6065;
  padding-top: 25px;
  margin-bottom: 25px;
}
i {
  font-style: normal;
  display: inline-block;
}
b,
strong,
.bold {
  font-weight: 700;
}
cite,
dfn,
em {
  font-style: italic;
}
iframe {
  border: none;
  width: 100%;
  height: auto;
}
.wysiwyg ul li,
.wysiwyg ol li {
  padding-bottom: 25px;
}
.wysiwyg ul li.custom-list,
.wysiwyg ol li.custom-list {
  padding-bottom: 0px;
}
.wysiwyg ul.left-shifted-list {
  margin-left: -25px;
}
blockquote {
  font-family: 'Open Sans', sans-serif;
  font-size: 30px;
  font-size: 3rem;
  color: #f1f1f1;
  font-weight: 700;
  font-style: italic;
  max-width: 840px;
  margin: 20px auto;
  line-height: 1.5;
}
/****************************************************************************************************/
/*************************************Color Helpers**************************************************/
/****************************************************************************************************/
/****************************************************************************************************/
/*************************************Social Icons**************************************************/
/****************************************************************************************************/
[class^="socicon-"],
[class*=" socicon-"] {
  font-family: 'Socicon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.social-icons li {
  margin-right: 8px;
}
.social-icons a {
  color: #f1f1f1;
  font-size: 20px;
  font-size: 2rem;
}
.social-icons a:hover {
  color: #d8d8d8;
}
/****************************************************************************************************/
/*******************************************Buttons**************************************************/
/****************************************************************************************************/
.btn,
input[type="submit"],
.gform_wrapper .gform_footer .button {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  line-height: 1.2;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  background-color: #fff100;
  text-transform: uppercase;
  color: #080806;
  letter-spacing: 3px;
  padding: 15px 37px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
  transform: skew(-21deg);
}
.btn span,
input[type="submit"] span,
.gform_wrapper .gform_footer .button span {
  display: inline-block;
  transform: skew(21deg);
}
.btn:hover,
input[type="submit"]:hover,
.gform_wrapper .gform_footer .button:hover {
  background-color: #f1f1f1;
  color: #080806;
}
.btn:focus .btn:active,
.gform_wrapper .gform_footer .button:focus .gform_wrapper .gform_footer .button:active {
  outline: none;
}
.btn.black-btn,
.gform_wrapper .gform_footer .button.black-btn {
  background-color: #080806;
  color: #f1f1f1;
}
.btn.black-btn:hover,
.gform_wrapper .gform_footer .button.black-btn:hover {
  background-color: #f1f1f1;
  color: #080806;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 8px -1px 15px -3px, rgba(0, 0, 0, 0.15) 0px 4px 6px -2px;
  -moz-box-shadow: rgba(0, 0, 0, 0.1) 8px -1px 15px -3px, rgba(0, 0, 0, 0.15) 0px 4px 6px -2px;
  box-shadow: rgba(0, 0, 0, 0.1) 8px -1px 15px -3px, rgba(0, 0, 0, 0.15) 0px 4px 6px -2px;
}
.btn.black-link,
.gform_wrapper .gform_footer .button.black-link {
  background-color: transparent;
  color: #080806;
  transform: none;
  padding-left: 0px;
}
.btn.black-link span,
.gform_wrapper .gform_footer .button.black-link span {
  transform: none;
  vertical-align: middle;
}
.btn.black-link:after,
.gform_wrapper .gform_footer .button.black-link:after {
  content: '\f054';
  font-size: 10px;
  font-size: 1rem;
  font-family: 'Font Awesome 5 Pro';
  position: relative;
  left: 0;
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  margin-left: 8px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.btn.black-link:hover,
.gform_wrapper .gform_footer .button.black-link:hover {
  color: #fff100;
}
.btn.black-link:hover:after,
.gform_wrapper .gform_footer .button.black-link:hover:after {
  color: #fff100;
  left: 8px;
}
.btn.black-link-ybg,
.gform_wrapper .gform_footer .button.black-link-ybg {
  background-color: transparent;
  color: #080806;
  transform: none;
}
.btn.black-link-ybg span,
.gform_wrapper .gform_footer .button.black-link-ybg span {
  transform: none;
  vertical-align: middle;
}
.btn.black-link-ybg:after,
.gform_wrapper .gform_footer .button.black-link-ybg:after {
  content: '\f054';
  font-size: 10px;
  font-size: 1rem;
  font-family: 'Font Awesome 5 Pro';
  position: relative;
  left: 0;
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  margin-left: 8px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.btn.black-link-ybg:hover,
.gform_wrapper .gform_footer .button.black-link-ybg:hover {
  color: #080806;
}
.btn.black-link-ybg:hover:after,
.gform_wrapper .gform_footer .button.black-link-ybg:hover:after {
  color: #080806;
  left: 8px;
}
.btn.plain-black-link,
.gform_wrapper .gform_footer .button.plain-black-link {
  background-color: transparent;
  font-size: 16px;
  font-size: 1.6rem;
  color: #080806;
  transform: none;
  padding-left: 0px;
}
.btn.plain-black-link span,
.gform_wrapper .gform_footer .button.plain-black-link span {
  transform: none;
  vertical-align: middle;
}
.btn.plain-black-link:hover,
.gform_wrapper .gform_footer .button.plain-black-link:hover {
  color: #fff100;
}
.btn.plain-yellow-link,
.gform_wrapper .gform_footer .button.plain-yellow-link {
  background-color: transparent;
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff100;
  transform: none;
  padding-left: 0px;
}
.btn.plain-yellow-link span,
.gform_wrapper .gform_footer .button.plain-yellow-link span {
  transform: none;
  vertical-align: middle;
}
.btn.plain-yellow-link:hover,
.gform_wrapper .gform_footer .button.plain-yellow-link:hover {
  color: #f1f1f1;
}
.btn.yellow-link,
.gform_wrapper .gform_footer .button.yellow-link {
  background-color: transparent;
  color: #fff100;
  transform: none;
  padding-left: 0px;
}
.btn.yellow-link span,
.gform_wrapper .gform_footer .button.yellow-link span {
  transform: none;
  vertical-align: middle;
}
.btn.yellow-link:after,
.gform_wrapper .gform_footer .button.yellow-link:after {
  content: '\f054';
  font-size: 10px;
  font-size: 1rem;
  font-family: 'Font Awesome 5 Pro';
  position: relative;
  left: 0;
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  margin-left: 8px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.btn.yellow-link:hover,
.gform_wrapper .gform_footer .button.yellow-link:hover {
  color: #f1f1f1;
}
.btn.yellow-link:hover:after,
.gform_wrapper .gform_footer .button.yellow-link:hover:after {
  color: #f1f1f1;
  left: 8px;
}
.btn-hover-full:hover,
.btn-hover-full:focus {
  background-color: #f1f1f1;
  border-color: #f1f1f1;
  color: #f1f1f1;
}
@media (max-width: 500px) {
  .btn,
  input[type="submit"],
  .gform_wrapper .gform_footer .button {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 14px;
  }
}
.link-arrow {
  text-transform: uppercase;
  font-weight: 600;
}
.link-arrow .fa-angle-right {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  margin-left: 9px;
  -webkit-transition: margin-left 0.2s ease-out;
  -moz-transition: margin-left 0.2s ease-out;
  -o-transition: margin-left 0.2s ease-out;
  transition: margin-left 0.2s ease-out;
}
.link-arrow:hover .fa-angle-right {
  margin-left: 19px;
}
.pretitle {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff100;
  position: relative;
  margin-bottom: 50px;
  letter-spacing: 3px;
  font-size: 16px;
  font-size: 1.6rem;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
}
.slick-arrow {
  position: absolute;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 9999px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  font-size: 20px;
  font-size: 2rem;
}
.slick-arrow:before {
  color: #f1f1f1;
  display: inline-block;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
}
.slick-arrow.prev-arrow {
  left: 0;
}
.slick-arrow.next-arrow {
  right: 0;
}
.slick-arrow.prev-arrow:before {
  content: '\f104';
}
.slick-arrow.next-arrow:before {
  content: '\f105';
}
@media (max-width: 1024px) {
  .slick-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media (max-width: 500px) {
  .slick-arrow {
    width: 28px;
    height: 28px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.slick-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  margin: 0 9px;
}
.slick-dots button {
  background: #f1f1f1;
  color: transparent;
  border-radius: 9999px;
  border: 2px solid #cccccc;
  height: 12px;
  width: 12px;
  padding: 0;
  overflow: hidden;
  font-size: 1px;
  cursor: pointer;
}
.slick-dots li.slick-active button {
  border-color: #f1f1f1;
}
ul.icon-list li,
ol.icon-list li {
  position: relative;
  padding-left: 30px;
  padding-bottom: 10px;
}
ul.icon-list li:before,
ol.icon-list li:before {
  content: '\f06c';
  font-family: 'Font Awesome 5 Pro';
  color: #f1f1f1;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  font-weight: 700;
}
ul.icon-list > li:last-of-type,
ol.icon-list > li:last-of-type {
  margin-bottom: 10px;
}
a.email-link:before {
  content: "\f0e0";
  font-family: 'Font Awesome 5 Pro';
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: 700;
  line-height: 1;
  vertical-align: middle;
  margin-right: 15px;
  color: #fff100;
}
a.phone-link,
a.email-link {
  color: #f1f1f1;
}
a.phone-link:before {
  content: "\f095";
  font-family: 'Font Awesome 5 Pro';
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: 700;
  line-height: 1;
  vertical-align: middle;
  margin-right: 15px;
  color: #fff100;
  transform: scaleX(-1);
}
a.address-link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  text-decoration: none;
  color: #f1f1f1;
}
a.address-link:before {
  content: "\f3c5";
  font-family: 'Font Awesome 5 Pro';
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: 700;
  line-height: 1.75;
  color: #fff100;
  margin-right: 15px;
}
a.download-link {
  color: #080806;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
}
a.download-link:after {
  content: '\f33d';
  font-family: 'Font Awesome 5 Pro';
  font-size: 14px;
  font-size: 1.4rem;
  position: absolute;
  margin-right: 6px;
  line-height: 30px;
}
a.external-link {
  background-color: transparent;
  color: #080806;
  padding-left: 0px;
  transform: none;
}
a.external-link:after {
  content: '\e09f';
  font-family: 'Font Awesome 5 Pro';
  font-size: 16px;
  font-size: 1.6rem;
  margin-left: 10px;
}
a.external-link span {
  transform: none;
}
.error404 .search-form,
.no-results .search-form {
  max-width: 500px;
  margin: auto;
}
.error404 .input-holder,
.no-results .input-holder {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  position: relative;
}
.error404 .search-icon,
.no-results .search-icon {
  position: absolute;
  z-index: 1;
  top: 6px;
  border: none;
  background: transparent;
  right: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  cursor: pointer;
  color: #080806;
}
.yellow-bg-element {
  color: #080806;
  background-color: #fff100;
}
.yellow-bg-element .pretitle {
  color: #080806;
}
.yellow-bg-element .title {
  color: #080806;
}
.yellow-bg-element a:hover {
  color: black;
}
.black-bg-element {
  color: #f1f1f1;
  background-color: #080806;
}
.black-bg-element .pretitle {
  color: #f1f1f1;
}
.black-bg-element .title {
  color: #f1f1f1;
}
.black-bg-element a:hover {
  color: #f1f1f1;
}
.msg-text {
  font-size: 24px;
  font-size: 2.4rem;
  width: 100%;
  max-width: 568px;
  margin: 0 auto;
}
.testimonial-par {
  font-size: 28px;
  font-size: 2.8rem;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-name {
  font-size: 21px;
  font-size: 2.1rem;
}
.testimonial-title {
  font-size: 14px;
  font-size: 1.4rem;
}
.white-bg-element {
  background-color: #f1f1f1;
  color: #080806;
}
.white-bg-element .title {
  color: #080806;
}
.white-bg-element .pretitle {
  color: #080806;
}
.short-text-heading .title {
  width: 100%;
  max-width: 490px;
  margin: auto;
}
.yellow-image-skewed {
  background-color: #fff100;
  padding-bottom: 0px;
  line-height: 0px;
}
.yellow-image-skewed p {
  margin-bottom: -2px;
  line-height: 0;
}
.yellow-image-skewed img {
  clip-path: polygon(0 48px, 100% 0, 100% 100%, 0% 100%);
  line-height: 0px;
}
.black-image-skewed {
  background-color: #080806;
  padding-bottom: 0px;
  line-height: 0px;
}
.black-image-skewed p {
  margin-bottom: -2px;
}
.yellow-image-skewed img {
  clip-path: polygon(0 48px, 100% 0, 100% 100%, 0% 100%);
  line-height: 0px;
}
.white-skewed:after {
  content: "";
  height: 48px;
  background-color: #f1f1f1;
  width: 100%;
  position: absolute;
  margin-bottom: -1px;
  left: 0;
  bottom: 100%;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.yellow-skewed:after {
  content: "";
  height: 48px;
  background-color: #fff100;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 100%;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  margin-bottom: -1px;
}
.black-skewed:after {
  content: "";
  height: 48px;
  background-color: #080806;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 100%;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  margin-bottom: -1px;
}
.no-padding-top {
  padding-top: 1px !important;
  margin-top: -1px;
}
.no-padding-bottom {
  padding-bottom: 1px !important;
}
.round-corners img {
  -webkit-border-radius: 15px !important;
  -moz-border-radius: 15px !important;
  border-radius: 15px !important;
}
ul.yellow-check-list li {
  list-style: none;
  position: relative;
}
ul.yellow-check-list li:before {
  content: '';
  position: absolute;
  background-image: url('../images/icn-checkmark-bigideas.svg');
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  top: 9px;
  left: -30px;
}
.expanded-content {
  margin-top: -15px;
  padding-bottom: 20px;
}
.plus-btn {
  position: relative;
  color: #fff100;
  font-weight: 700;
  letter-spacing: 3px;
  cursor: pointer;
  text-transform: uppercase;
}
.search .spacer {
  height: 10px;
}
@media (max-width: 1024px) {
  .search .spacer {
    height: 30px;
  }
}
.pw-protected-form {
  padding-top: 100px;
  padding-bottom: 100px;
}
/****************************************************************************************************/
/**************************************Gravity Forms*************************************************/
/****************************************************************************************************/
[type="checkbox"]:not(:checked),
[type="radio"]:not(:checked),
[type="checkbox"]:checked,
[type="radio"]:checked {
  position: absolute;
  opacity: 0;
  z-index: 1;
  height: 20px;
  cursor: pointer;
}
[type="checkbox"]:not(:checked) + label,
[type="radio"]:not(:checked) + label,
[type="checkbox"]:checked + label,
[type="radio"]:checked + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 14px;
  font-size: 1.4rem;
}
/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="radio"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before,
[type="radio"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  border: 1px solid #cccccc;
  background: #fff;
  box-shadow: none;
}
[type="radio"]:not(:checked) + label:before,
[type="radio"]:checked + label:before {
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  border-radius: 9999px;
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="radio"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after,
[type="radio"]:checked + label:after {
  content: '\f00c';
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  top: 5px;
  left: 4px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 0.8;
  color: #f1f1f1;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
/* checked mark aspect changes */
[type="checkbox"]:checked + label:before,
[type="radio"]:checked + label:before {
  background-color: #E3E3E3;
}
/* checked mark aspect changes */
[type="radio"]:not(:checked) + label:after,
[type="radio"]:checked + label:after {
  content: '';
  top: 4px;
  left: 5px;
  width: 12px;
  height: 12px;
  background-color: #f1f1f1;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  border-radius: 9999px;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after,
[type="radio"]:not(:checked) + label:after {
  opacity: 0;
}
[type="checkbox"]:checked + label:after,
[type="radion"]:checked + label:after {
  opacity: 1;
}
/* disabled checkbox */
.gform_wrapper {
  background-color: #F4F4F4;
  border: 1px solid #cccccc;
  padding: 40px 40px 50px;
  font-family: 'Open Sans', sans-serif;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.gform_wrapper .gfield {
  width: 100%;
}
.gform_wrapper .gfield_label,
.gform_wrapper .address_city label,
.gform_wrapper .address_state label,
.gform_wrapper .address_zip label {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #5e6065;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}
.gform_wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gform_wrapper ul li {
  margin-bottom: 25px;
  clear: both;
}
.gform_wrapper .half-left,
.gform_wrapper .half-right {
  float: left;
  width: 50%;
  clear: none;
}
.gform_wrapper .half-left {
  padding-right: 20px;
}
.gform_wrapper .half-right {
  padding-left: 20px;
}
.gform_wrapper .third-left,
.gform_wrapper .third-center,
.gform_wrapper .third-right {
  float: left;
  width: 33.3333333%;
  clear: none;
}
.gform_wrapper .third-left {
  padding-right: 20px;
}
.gform_wrapper .third-center {
  padding-left: 20px;
  padding-right: 20px;
}
.gform_wrapper .third-right {
  padding-left: 20px;
}
.gform_wrapper .shorter-width input,
.gform_wrapper .shorter-width select {
  max-width: 260px;
}
.gform_wrapper .gfield_html h3 {
  font-weight: 700;
}
.gform_wrapper ul.gfield_checkbox li {
  margin-bottom: 10px;
}
.gform_wrapper ul.gfield_radio li {
  display: inline-block;
  padding-right: 50px;
  margin-bottom: 5px;
}
.gform_wrapper .address_line_1,
.gform_wrapper .address_line_2 {
  display: block;
  margin-bottom: 10px;
}
.gform_wrapper .address_line_1 label,
.gform_wrapper .address_line_2 label {
  display: none;
}
.gform_wrapper .address_line_2 {
  margin-bottom: 25px;
}
.gform_wrapper .address_city,
.gform_wrapper .address_state,
.gform_wrapper .address_zip {
  float: left;
}
.gform_wrapper .address_city {
  width: 50%;
  padding-right: 20px;
}
.gform_wrapper .address_state {
  width: 20%;
  padding-left: 20px;
  padding-right: 20px;
}
.gform_wrapper .address_zip {
  width: 30%;
  padding-left: 20px;
}
.gform_wrapper .two-column-lists .gfield_checkbox {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}
.gform_wrapper .gsection_title {
  border-bottom: 1px solid #cccccc;
  height: 0px;
}
.gform_wrapper .show-helper-text {
  margin-bottom: 0;
}
.gform_wrapper .show-helper-text .ginput_container .helper-text {
  font-size: 14px;
  font-size: 1.4rem;
}
.gform_wrapper .gform_drop_instructions {
  display: none;
}
.gform_wrapper .gform_button_select_files {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  line-height: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid #cccccc;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #E3E3E3;
  position: relative;
  padding: 8.5px 25.5px;
  font-size: 14px;
  font-size: 1.4rem;
  z-index: 1;
  color: #f1f1f1;
  font-weight: 600;
  overflow: hidden;
}
.gform_wrapper div[id^="gform_preview_"] > div:first-of-type {
  margin-top: 20px;
}
.gform_wrapper .ginput_preview {
  position: relative;
  padding-left: 23px;
  color: #5e6065;
  font-weight: 400;
}
.gform_wrapper .ginput_preview .gform_delete {
  opacity: 0;
  margin-left: -23px;
  cursor: pointer;
}
.gform_wrapper .ginput_preview:before {
  content: '\f057';
  font-family: 'Font Awesome 5 Pro';
  color: red;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 300;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
}
.gform_wrapper .ginput_preview strong {
  margin-left: 5px;
  color: #5e6065;
  font-weight: 400;
}
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="password"],
.gform_wrapper select,
.gform_wrapper textarea {
  width: 100%;
}
.gform_wrapper textarea {
  resize: vertical;
  height: 80px;
}
.gform_wrapper .gfield_required {
  color: #f1f1f1;
  margin-left: 1px;
}
.gform_wrapper .validation_error,
.gform_wrapper .validation_message {
  padding-top: 15px;
  color: red;
}
.gform_wrapper .gform_footer {
  margin-top: 1em;
  text-align: center;
}
.gform_wrapper .gform_footer .button {
  margin-top: 20px;
  width: 100%;
  max-width: 205px;
  border: none;
  margin: 0 auto;
}
.gform_wrapper .gform_footer .button span {
  transform: skew(11deg);
}
@media (max-width: 767px) {
  p + .gform_wrapper,
  h2 + .gform_wrapper,
  h3 + .gform_wrapper,
  h4 + .gform_wrapper,
  h5 + .gform_wrapper,
  h6 + .gform_wrapper {
    padding-top: 1em;
  }
  .gform_wrapper .form-column,
  .gform_wrapper .half-left,
  .gform_wrapper .half-right,
  .gform_wrapper .third-left,
  .gform_wrapper .third-center,
  .gform_wrapper .third-right {
    float: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .gform_wrapper ul li {
    margin-bottom: 10px;
  }
  .gform_wrapper .address_city,
  .gform_wrapper .address_state,
  .gform_wrapper .address_zip {
    float: left;
  }
  .gform_wrapper .address_line_2 {
    margin-bottom: 10px;
  }
  .gform_wrapper .address_city {
    width: 100%;
    padding-right: 0;
  }
  .gform_wrapper .address_state {
    width: 50%;
    padding-left: 0;
    padding-top: 10px;
  }
  .gform_wrapper .address_zip {
    width: 50%;
    padding-left: 20px;
    padding-top: 10px;
  }
}
@media (max-width: 500px) {
  .gform_wrapper {
    padding: 20px 20px 30px;
  }
  .gform_wrapper .address_state {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .gform_wrapper .address_zip {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .gform_wrapper .shorter-width input,
  .gform_wrapper .shorter-width select {
    max-width: 100%;
  }
  .gform_wrapper .two-column-lists .gfield_checkbox {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}
@media (max-width: 390px) {
  .gform_wrapper .ginput_recaptcha > div {
    width: 100% !important;
  }
}
/****************************************************************************************************/
/*******************************************Pager****************************************************/
/****************************************************************************************************/
nav.paging-navigation {
  margin: 45px auto;
}
nav.paging-navigation .pagination {
  font-size: 20px;
  font-size: 2rem;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
nav.paging-navigation .pagination .page-numbers {
  display: block;
  border-left: solid 1px #f1f1f1;
  border-top: solid 1px #f1f1f1;
  border-bottom: solid 1px #f1f1f1;
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #f1f1f1;
}
nav.paging-navigation .pagination .page-numbers.current {
  background-color: #fff100;
  color: #080806;
}
nav.paging-navigation .pagination .page-numbers:hover {
  background-color: #f1f1f1;
  color: #080806;
}
nav.paging-navigation .pagination .next,
nav.paging-navigation .pagination .prev {
  font-size: 18px;
  font-size: 1.8rem;
  color: #f1f1f1;
}
nav.paging-navigation .pagination .next:hover,
nav.paging-navigation .pagination .prev:hover {
  background-color: #f1f1f1;
}
nav.paging-navigation .pagination .next {
  border-right: solid 1px #f1f1f1;
}
nav.paging-navigation .pagination .prev {
  border-left: solid 1px #f1f1f1;
}
nav.paging-navigation .pagination .page-numbers.dots {
  border-top: none;
  border-bottom: none;
  line-height: 40px;
}
nav.paging-navigation .pagination .page-numbers.dots:hover {
  background-color: transparent;
  color: #f1f1f1;
}
nav.post-navigation {
  margin-top: 20px;
  margin-bottom: 70px;
  border-top: solid 4px #e6e8ec;
  padding-top: 20px;
}
nav.post-navigation h2.screen-reader-text {
  font-size: 0;
  line-height: 0;
  margin: 0;
}
nav.post-navigation .nav-links {
  clear: both;
}
nav.post-navigation .nav-links .nav-previous {
  float: left;
}
nav.post-navigation .nav-links .nav-next {
  float: right;
}
@media (max-width: 1024px) {
  nav.paging-navigation {
    margin: 20px auto 0;
  }
}
/****OOCSS****/
/*
* First Script Framework
* Version: 0.25
* 10/30/17
*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  overflow-y: scroll;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size-adjust: 100%;
}
/* Display Properties */
.column-wrapper,
.columns-wrapper {
  overflow: hidden;
}
.pull-left,
.left,
.alignleft {
  float: left;
}
.pull-right,
.right,
.alignright {
  float: right;
}
.no-float,
.float-none {
  float: none;
}
.clear {
  clear: both;
}
.table {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
}
.table.height-auto {
  height: auto;
}
.table-row {
  display: table-row;
}
.table-cell {
  display: table-cell;
}
.static {
  position: static;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.absolute.full,
.fixed.full {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.relative.full {
  width: 100%;
  height: 100%;
}
.hidden,
.hide {
  display: none;
}
.display-block {
  display: block;
}
.inline {
  display: inline;
}
.inline-block {
  display: inline-block;
}
.display-inherit {
  display: inherit;
}
.invisible {
  visibility: hidden;
}
.visible {
  visibility: visible;
}
.vertical-mid,
.vert-mid {
  vertical-align: middle;
}
.vertical-top,
.vert-top {
  vertical-align: top;
}
.vertical-bottom,
.vert-bottom {
  vertical-align: bottom;
}
.text-two-column,
.text-two-columns {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.z-index-1 {
  z-index: 1;
}
.z-index-2 {
  z-index: 2;
}
.z-index-3 {
  z-index: 3;
}
.z-index-4 {
  z-index: 4;
}
.z-index-5 {
  z-index: 5;
}
.z-index-100 {
  z-index: 100;
}
.z-index-200 {
  z-index: 200;
}
.z-index-500 {
  z-index: 500;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
/* Flexbox Classes
 * review mixins.less for flexbox methods available
 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-column {
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-grow-1 {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.flex-grow-2 {
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
}
.flex-grow-3 {
  -webkit-box-flex: 3;
  -ms-flex-positive: 3;
  flex-grow: 3;
}
.flex-start {
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
}
.flex-end {
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
}
.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.align-items-start {
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}
.align-items-end {
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}
.align-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.space-between {
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}
.space-around {
  -webkit-box-pack: space-around;
  -ms-flex-pack: space-around;
  justify-content: space-around;
}
.order--1 {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
.order-0 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}
.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}
.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}
.order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}
.full-height {
  height: 100%;
}
/* Percentage Widths */
.one {
  width: 1%;
}
.two {
  width: 2%;
}
.three {
  width: 3%;
}
.four {
  width: 4%;
}
.five {
  width: 5%;
}
.six {
  width: 6%;
}
.seven {
  width: 7%;
}
.eight {
  width: 8%;
}
.nine {
  width: 9%;
}
.ten {
  width: 10%;
}
.eleven {
  width: 11%;
}
.twelve {
  width: 12%;
}
.thirteen {
  width: 13%;
}
.fourteen {
  width: 14%;
}
.fifteen {
  width: 15%;
}
.sixteen,
.six-column {
  width: 16.66666%;
}
.twenty,
.five-column {
  width: 20%;
}
.twentyfive,
.twenty-five,
.four-column {
  width: 25%;
}
.thirty {
  width: 30%;
}
.thirtythree,
.thirty-three,
.three-column {
  width: 33.333%;
}
.fourty,
.forty {
  width: 40%;
}
.fortyfive,
.fourtyfive {
  width: 45%;
}
.fifty,
.two-column {
  width: 50%;
}
.fiftyfive {
  width: 55%;
}
.sixty {
  width: 60%;
}
.sixtyfive,
.sixty-five {
  width: 65%;
}
.sixtysix,
.sixty-six {
  width: 66.666%;
}
.seventy {
  width: 70%;
}
.seventyfive,
.seventy-five {
  width: 75%;
}
.eighty {
  width: 80%;
}
.eightyfive,
.eighty-five {
  width: 85%;
}
.ninety {
  width: 90%;
}
.ninetyfive,
.ninety-five {
  width: 95%;
}
.hundred,
.one-column {
  width: 100%;
}
/* Typography Properties
 * review mixins.less to see availible methods for altering font-sizes and other properties
 */
.italic {
  font-style: italic;
}
.weight-light {
  font-weight: 300;
}
.weight-normal {
  font-weight: 400;
}
.weight-semi-bold {
  font-weight: 600;
}
.weight-bold {
  font-weight: 700;
}
.weight-extra-bold {
  font-weight: 800;
}
.weight-black {
  font-weight: 900;
}
.textleft,
.text-left {
  text-align: left;
}
.textright,
.text-right {
  text-align: right;
}
.textcenter,
.text-center {
  text-align: center;
}
.line-height-0 {
  line-height: 0;
}
.line-height-1 {
  line-height: 1;
}
.line-height-1-1 {
  line-height: 1.1;
}
.line-height-1-2 {
  line-height: 1.2;
}
.line-height-1-3 {
  line-height: 1.3;
}
.line-height-1-4 {
  line-height: 1.4;
}
.line-height-1-5 {
  line-height: 1.5;
}
.line-height-1-6 {
  line-height: 1.6;
}
.line-height-1-7 {
  line-height: 1.7;
}
.line-height-1-8 {
  line-height: 1.8;
}
.line-height-1-9 {
  line-height: 1.9;
}
.line-height-2 {
  line-height: 2;
}
.underline {
  text-decoration: underline;
}
.no-txt-decor {
  text-decoration: none;
}
.uppercase,
.caps {
  text-transform: uppercase;
}
.lowercase,
.lower {
  text-transform: lowercase;
}
.no-list,
.no-list ul,
ul.no-list > li,
.slick-dots,
ul.icon-list,
ul.icon-list ul,
ulul.icon-list > li,
ol.icon-list,
ol.icon-list ul,
ulol.icon-list > li {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}
.inside-list,
.list-inside {
  list-style-position: inside;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-indent: -9999px;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.nowrap {
  white-space: nowrap;
}
/* Margin & Padding Properties */
.no-margin {
  margin: 0;
}
.no-top-margin {
  margin-top: 0;
}
.no-bottom-margin {
  margin-bottom: 0;
}
.margin-auto {
  margin: auto;
}
.margin-left-auto {
  margin-left: auto;
}
.margin-right-auto {
  margin-right: auto;
}
.margin-top-auto {
  margin-top: auto;
}
.margin-bottom-auto {
  margin-bottom: auto;
}
.no-padding {
  padding: 0;
}
body .no-lr-padding {
  padding-left: 0;
  padding-right: 0;
}
/* Color Helpers */
.white {
  color: #f1f1f1;
}
.black {
  color: #080806;
}
.charcoal {
  color: #5e6065;
}
/* Image Helpers */
.responsive {
  width: 100%;
  height: auto;
}
.max-image {
  max-width: 100%;
  height: auto;
}
.bg-no-repeat,
.background-no-repeat,
.backgroundnorepeat {
  background-repeat: no-repeat;
}
.bg-cover,
.background-cover,
.backgroundcover {
  background-size: cover;
  background-repeat: no-repeat;
}
.bg-auto,
.background-auto,
.backgroundauto {
  background-size: auto;
  background-repeat: no-repeat;
}
.bg-contain,
.background-contain,
.backgroundcontain {
  background-size: contain;
  background-repeat: no-repeat;
}
.bg-bc,
.background-bottom-center {
  background-position: center bottom;
}
.bg-bl,
.background-bottom-left {
  background-position: left bottom;
}
.bg-br,
.background-bottom-right {
  background-position: right bottom;
}
.bg-cl,
.background-center {
  background-position: center left;
}
.bg-cc,
.bg-center,
.background-center {
  background-position: center center;
}
.bg-cr,
.background-center {
  background-position: center right;
}
.bg-center,
.background-center {
  background-position: center center;
}
.bg-lc,
.background-left-center {
  background-position: left center;
}
.bg-rc,
.background-right-center {
  background-position: right center;
}
.bg-tc,
.background-top-center {
  background-position: center top;
}
.bg-tl,
.background-top-left {
  background-position: left top;
}
.bg-tr,
.background-top-right {
  background-position: right top;
}
/* Animation, Transitions, & Transforms
 * review mixins.less to view all methods for transitions and transforms
 */
.transition {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.pre-animated,
.no-visible,
.not-visible {
  visibility: hidden;
}
.animated {
  visibility: visible;
}
.delay-one,
.delay-1,
.delay1 {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.delay-two,
.delay-2,
.delay2 {
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
}
.delay-two-five,
.delay-2-5,
.delay2-5 {
  animation-delay: 2.5s;
  -webkit-animation-delay: 2.5s;
  -webkit-transition-delay: 2.5s;
  transition-delay: 2.5s;
}
.delay-three,
.delay-3,
.delay3 {
  animation-delay: 3s;
  -webkit-animation-delay: 3s;
  -webkit-transition-delay: 3s;
  transition-delay: 3s;
}
.delay-four,
.delay-4,
.delay4 {
  animation-delay: 4s;
  -webkit-animation-delay: 4s;
  -webkit-transition-delay: 4s;
  transition-delay: 4s;
}
.delay-five,
.delay-5,
.delay5 {
  animation-delay: 5s;
  -webkit-animation-delay: 5s;
  -webkit-transition-delay: 5s;
  transition-delay: 5s;
}
.parallax {
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 565px) {
  .parallax {
    background-attachment: scroll;
  }
}
/* Other Helpers */
.pointer:hover {
  cursor: pointer;
}
/* WordPress Resets */
.comment-content img,
.entry-content img,
.entry-summary img,
#site-header img,
.widget img,
.wp-caption {
  max-width: 100%;
}
.comment-content img[height],
.entry-content img,
.entry-summary img,
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"],
#site-header img {
  height: auto;
}
img.size-full,
img.size-large,
.wp-post-image,
.post-thumbnail img {
  height: auto;
  max-width: 100%;
}
p > embed,
p > iframe,
p > object,
span > embed,
span > iframe,
span > object {
  margin-bottom: 0;
}
img.alignleft {
  margin: 10px 10px 10px 0;
}
img.alignright {
  margin: 10px 0 10px 10px;
}
img.aligncenter {
  margin: auto;
  display: block;
}
/* Grid Media Queries
 * review styleguide.less to see all available media queries widths.
 */
.col-12 {
  width: 100%;
}
.col-11 {
  width: 91.66667%;
}
.col-10 {
  width: 83.33333%;
}
.col-9 {
  width: 75%;
}
.col-8 {
  width: 66.66667%;
}
.col-7 {
  width: 58.33333%;
}
.col-6 {
  width: 50%;
}
.col-5 {
  width: 41.66667%;
}
.col-4 {
  width: 33.33333%;
}
.col-3 {
  width: 25%;
}
.col-2 {
  width: 16.6666%;
}
.col-1 {
  width: 8.33333%;
}
@media (max-width: 1500px) {
  .col-xxl-12 {
    width: 100%;
  }
  .col-xxl-11 {
    width: 91.66667%;
  }
  .col-xxl-10 {
    width: 83.33333%;
  }
  .col-xxl-9 {
    width: 75%;
  }
  .col-xxl-8 {
    width: 66.66667%;
  }
  .col-xxl-7 {
    width: 58.33333%;
  }
  .col-xxl-6 {
    width: 50%;
  }
  .col-xxl-5 {
    width: 41.66667%;
  }
  .col-xxl-4 {
    width: 33.33333%;
  }
  .col-xxl-3 {
    width: 25%;
  }
  .col-xxl-2 {
    width: 16.6666%;
  }
  .col-xxl-1 {
    width: 8.33333%;
  }
  .xxl-one {
    width: 1%;
  }
  .xxl-two {
    width: 2%;
  }
  .xxl-three {
    width: 3%;
  }
  .xxl-four {
    width: 4%;
  }
  .xxl-five {
    width: 5%;
  }
  .xxl-six {
    width: 6%;
  }
  .xxl-seven {
    width: 7%;
  }
  .xxl-eight {
    width: 8%;
  }
  .xxl-nine {
    width: 9%;
  }
  .xxl-ten {
    width: 10%;
  }
  .xxl-eleven {
    width: 11%;
  }
  .xxl-twelve {
    width: 12%;
  }
  .xxl-thirteen {
    width: 13%;
  }
  .xxl-fourteen {
    width: 14%;
  }
  .xxl-fifteen {
    width: 15%;
  }
  .xxl-sixteen,
  .xxl-six-column {
    width: 16.66666%;
  }
  .xxl-twenty,
  .xxl-five-column {
    width: 20%;
  }
  .xxl-twentyfive,
  .xxl-twenty-five,
  .xxl-four-column {
    width: 25%;
  }
  .xxl-thirty {
    width: 30%;
  }
  .xxl-thirtythree,
  .xxl-thirty-three,
  .xxl-three-column {
    width: 33.333%;
  }
  .xxl-fourty,
  .xxl-forty {
    width: 40%;
  }
  .xxl-fortyfive {
    width: 45%;
  }
  .xxl-fifty,
  .xxl-two-column {
    width: 50%;
  }
  .xxl-fiftyfive {
    width: 55%;
  }
  .xxl-sixty {
    width: 60%;
  }
  .xxl-sixtysix,
  .xxl-sixty-six {
    width: 66.666%;
  }
  .xxl-seventy {
    width: 70%;
  }
  .xxl-seventyfive,
  .xxl-seventy-five {
    width: 75%;
  }
  .xxl-eighty {
    width: 80%;
  }
  .xxl-eightyfive,
  .xxl-eighty-five {
    width: 85%;
  }
  .xxl-ninety {
    width: 90%;
  }
  .xxl-ninetyfive,
  .xxl-ninety-five {
    width: 95%;
  }
  .xxl-hundred,
  .xxl-one-column {
    width: 100%;
  }
  .xxl-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .xxl-flex-column {
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .xxl-flex-row {
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .xxl-flex-wrap {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .xxl-flex-grow-1 {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .xxl-flex-grow-2 {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
  }
  .xxl-flex-grow-3 {
    -webkit-box-flex: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
  }
  .xxl-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .xxl-align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .xxl-order--1 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .xxl-order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .xxl-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .xxl-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .xxl-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .xxl-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .xxl-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .xxl-no-padding {
    padding: 0;
  }
  body .xxl-no-lr-padding {
    padding-left: 0;
    padding-right: 0;
  }
  .xxl-hidden,
  .xxl-hide {
    display: none;
  }
  .xxl-block {
    display: block;
  }
  .xxl-inline {
    display: inline;
  }
  .xxl-inline-block {
    display: inline-block;
  }
  .xxl-static {
    position: static;
  }
  .xxl-relative {
    position: relative;
  }
  .xxl-absolute {
    position: absolute;
  }
  .xxl-fixed {
    position: fixed;
  }
  .xxl-clearfix:before,
  .xxl-clearfix:after {
    content: " ";
    display: table;
  }
  .xxl-clearfix:after {
    clear: both;
  }
  .xxl-column-wrapper,
  .xxl-columns-wrapper {
    overflow: hidden;
  }
  .xxl-vertical-top,
  .xxl-vert-top {
    vertical-align: top;
  }
  .xxl-vertical-bottom,
  .xxl-vert-btm {
    vertical-align: bottom;
  }
  .xxl-vertical-middle,
  .xxl-vert-mid {
    vertical-align: middle;
  }
  .xxl-left,
  .xxl-pull-left {
    float: left;
  }
  .xxl-right,
  .xxl-pull-right {
    float: right;
  }
  .xxl-no-float,
  .xxl-float-none {
    float: none;
  }
  .xxl-textleft,
  .xxl-text-left {
    text-align: left;
  }
  .xxl-textright,
  .xxl-text-right {
    text-align: right;
  }
  .xxl-textcenter,
  .xxl-text-center {
    text-align: center;
  }
  .xxl-margin-auto {
    margin: auto;
  }
  .xxl-margin-left-auto {
    margin-left: auto;
  }
  .xxl-margin-right-auto {
    margin-right: auto;
  }
  .xxl-no-bg-img {
    background-image: none !important;
  }
  .gform_wrapper .left-column.col-xxl-12 {
    padding-right: 0px;
  }
  .gform_wrapper .right-column.col-xxl-12 {
    padding-left: 0px;
  }
}
@media (max-width: 1400px) {
  .col-xl-12 {
    width: 100%;
  }
  .col-xl-11 {
    width: 91.66667%;
  }
  .col-xl-10 {
    width: 83.33333%;
  }
  .col-xl-9 {
    width: 75%;
  }
  .col-xl-8 {
    width: 66.66667%;
  }
  .col-xl-7 {
    width: 58.33333%;
  }
  .col-xl-6 {
    width: 50%;
  }
  .col-xl-5 {
    width: 41.66667%;
  }
  .col-xl-4 {
    width: 33.33333%;
  }
  .col-xl-3 {
    width: 25%;
  }
  .col-xl-2 {
    width: 16.6666%;
  }
  .col-xl-1 {
    width: 8.33333%;
  }
  .xl-one {
    width: 1%;
  }
  .xl-two {
    width: 2%;
  }
  .xl-three {
    width: 3%;
  }
  .xl-four {
    width: 4%;
  }
  .xl-five {
    width: 5%;
  }
  .xl-six {
    width: 6%;
  }
  .xl-seven {
    width: 7%;
  }
  .xl-eight {
    width: 8%;
  }
  .xl-nine {
    width: 9%;
  }
  .xl-ten {
    width: 10%;
  }
  .xl-eleven {
    width: 11%;
  }
  .xl-twelve {
    width: 12%;
  }
  .xl-thirteen {
    width: 13%;
  }
  .xl-fourteen {
    width: 14%;
  }
  .xl-fifteen {
    width: 15%;
  }
  .xl-sixteen,
  .xl-six-column {
    width: 16.66666%;
  }
  .xl-twenty,
  .xl-five-column {
    width: 20%;
  }
  .xl-twentyfive,
  .xl-twenty-five,
  .xl-four-column {
    width: 25%;
  }
  .xl-thirty {
    width: 30%;
  }
  .xl-thirtythree,
  .xl-thirty-three,
  .xl-three-column {
    width: 33.333%;
  }
  .xl-fourty,
  .xl-forty {
    width: 40%;
  }
  .xl-fortyfive {
    width: 45%;
  }
  .xl-fifty,
  .xl-two-column {
    width: 50%;
  }
  .xl-fiftyfive {
    width: 55%;
  }
  .xl-sixty {
    width: 60%;
  }
  .xl-sixtysix,
  .xl-sixty-six {
    width: 66.666%;
  }
  .xl-seventy {
    width: 70%;
  }
  .xl-seventyfive,
  .xl-seventy-five {
    width: 75%;
  }
  .xl-eighty {
    width: 80%;
  }
  .xl-eightyfive,
  .xl-eighty-five {
    width: 85%;
  }
  .xl-ninety {
    width: 90%;
  }
  .xl-ninetyfive,
  .xl-ninety-five {
    width: 95%;
  }
  .xl-hundred,
  .xl-one-column {
    width: 100%;
  }
  .xl-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .xl-flex-column {
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .xl-flex-row {
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .xl-flex-wrap {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .xl-flex-grow-1 {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .xl-flex-grow-2 {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
  }
  .xl-flex-grow-3 {
    -webkit-box-flex: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
  }
  .xl-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .xl-align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .xl-order--1 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .xl-order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .xl-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .xl-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .xl-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .xl-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .xl-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .xl-no-padding {
    padding: 0;
  }
  body .xl-no-lr-padding {
    padding-left: 0;
    padding-right: 0;
  }
  .xl-hidden,
  .xl-hide {
    display: none;
  }
  .xl-block {
    display: block;
  }
  .xl-inline {
    display: inline;
  }
  .xl-inline-block {
    display: inline-block;
  }
  .xl-static {
    position: static;
  }
  .xl-relative {
    position: relative;
  }
  .xl-absolute {
    position: absolute;
  }
  .xl-fixed {
    position: fixed;
  }
  .xl-clearfix:before,
  .xl-clearfix:after {
    content: " ";
    display: table;
  }
  .xl-clearfix:after {
    clear: both;
  }
  .xl-column-wrapper,
  .xl-columns-wrapper {
    overflow: hidden;
  }
  .xl-vertical-top,
  .xl-vert-top {
    vertical-align: top;
  }
  .xl-vertical-bottom,
  .xl-vert-btm {
    vertical-align: bottom;
  }
  .xl-vertical-middle,
  .xl-vert-mid {
    vertical-align: middle;
  }
  .xl-left,
  .xl-pull-left {
    float: left;
  }
  .xl-right,
  .xl-pull-right {
    float: right;
  }
  .xl-no-float,
  .xl-float-none {
    float: none;
  }
  .xl-textleft,
  .xl-text-left {
    text-align: left;
  }
  .xl-textright,
  .xl-text-right {
    text-align: right;
  }
  .xl-textcenter,
  .xl-text-center {
    text-align: center;
  }
  .xl-margin-auto {
    margin: auto;
  }
  .xl-margin-left-auto {
    margin-left: auto;
  }
  .xl-margin-right-auto {
    margin-right: auto;
  }
  .xl-no-bg-img {
    background-image: none !important;
  }
  .gform_wrapper .left-column.col-xl-12 {
    padding-right: 0px;
  }
  .gform_wrapper .right-column.col-xl-12 {
    padding-left: 0px;
  }
}
@media (max-width: 1200px) {
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66667%;
  }
  .col-lg-10 {
    width: 83.33333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66667%;
  }
  .col-lg-7 {
    width: 58.33333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66667%;
  }
  .col-lg-4 {
    width: 33.33333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.6666%;
  }
  .col-lg-1 {
    width: 8.33333%;
  }
  .lg-one {
    width: 1%;
  }
  .lg-two {
    width: 2%;
  }
  .lg-three {
    width: 3%;
  }
  .lg-four {
    width: 4%;
  }
  .lg-five {
    width: 5%;
  }
  .lg-six {
    width: 6%;
  }
  .lg-seven {
    width: 7%;
  }
  .lg-eight {
    width: 8%;
  }
  .lg-nine {
    width: 9%;
  }
  .lg-ten {
    width: 10%;
  }
  .lg-eleven {
    width: 11%;
  }
  .lg-twelve {
    width: 12%;
  }
  .lg-thirteen {
    width: 13%;
  }
  .lg-fourteen {
    width: 14%;
  }
  .lg-fifteen {
    width: 15%;
  }
  .lg-sixteen,
  .lg-six-column {
    width: 16.66666%;
  }
  .lg-twenty,
  .lg-five-column {
    width: 20%;
  }
  .lg-twentyfive,
  .lg-twenty-five,
  .lg-four-column {
    width: 25%;
  }
  .lg-thirty {
    width: 30%;
  }
  .lg-thirtythree,
  .lg-thirty-three,
  .lg-three-column {
    width: 33.333%;
  }
  .lg-fourty,
  .lg-forty {
    width: 40%;
  }
  .lg-fortyfive {
    width: 45%;
  }
  .lg-fifty,
  .lg-two-column {
    width: 50%;
  }
  .lg-fiftyfive {
    width: 55%;
  }
  .lg-sixty {
    width: 60%;
  }
  .lg-sixtysix,
  .lg-sixty-six {
    width: 66.666%;
  }
  .lg-seventy {
    width: 70%;
  }
  .lg-seventyfive,
  .lg-seventy-five {
    width: 75%;
  }
  .lg-eighty {
    width: 80%;
  }
  .lg-eightyfive,
  .lg-eighty-five {
    width: 85%;
  }
  .lg-ninety {
    width: 90%;
  }
  .lg-ninetyfive,
  .lg-ninety-five {
    width: 95%;
  }
  .lg-hundred,
  .lg-one-column {
    width: 100%;
  }
  .lg-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .lg-flex-column {
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .lg-flex-row {
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .lg-flex-wrap {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .lg-flex-grow-1 {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .lg-flex-grow-2 {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
  }
  .lg-flex-grow-3 {
    -webkit-box-flex: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
  }
  .lg-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .lg-align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .lg-order--1 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .lg-order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .lg-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .lg-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .lg-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .lg-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .lg-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .lg-no-padding {
    padding: 0;
  }
  body .lg-no-lr-padding {
    padding-left: 0;
    padding-right: 0;
  }
  .lg-hidden,
  .lg-hide {
    display: none;
  }
  .lg-block {
    display: block;
  }
  .lg-inline {
    display: inline;
  }
  .lg-inline-block {
    display: inline-block;
  }
  .lg-static {
    position: static;
  }
  .lg-relative {
    position: relative;
  }
  .lg-absolute {
    position: absolute;
  }
  .lg-fixed {
    position: fixed;
  }
  .lg-clearfix:before,
  .lg-clearfix:after {
    content: " ";
    display: table;
  }
  .lg-clearfix:after {
    clear: both;
  }
  .lg-column-wrapper,
  .lg-columns-wrapper {
    overflow: hidden;
  }
  .lg-vertical-top,
  .lg-vert-top {
    vertical-align: top;
  }
  .lg-vertical-bottom,
  .lg-vert-btm {
    vertical-align: bottom;
  }
  .lg-vertical-middle,
  .lg-vert-mid {
    vertical-align: middle;
  }
  .lg-left,
  .lg-pull-left {
    float: left;
  }
  .lg-right,
  .lg-pull-right {
    float: right;
  }
  .lg-no-float,
  .lg-float-none {
    float: none;
  }
  .lg-textleft,
  .lg-text-left {
    text-align: left;
  }
  .lg-textright,
  .lg-text-right {
    text-align: right;
  }
  .lg-textcenter,
  .lg-text-center {
    text-align: center;
  }
  .lg-margin-auto {
    margin: auto;
  }
  .lg-margin-left-auto {
    margin-left: auto;
  }
  .lg-margin-right-auto {
    margin-right: auto;
  }
  .lg-no-bg-img {
    background-image: none !important;
  }
  .gform_wrapper .left-column.col-lg-12 {
    padding-right: 0px;
  }
  .gform_wrapper .right-column.col-lg-12 {
    padding-left: 0px;
  }
}
@media (max-width: 1024px) {
  .col-tbl-12 {
    width: 100%;
  }
  .col-tbl-11 {
    width: 91.66667%;
  }
  .col-tbl-10 {
    width: 83.33333%;
  }
  .col-tbl-9 {
    width: 75%;
  }
  .col-tbl-8 {
    width: 66.66667%;
  }
  .col-tbl-7 {
    width: 58.33333%;
  }
  .col-tbl-6 {
    width: 50%;
  }
  .col-tbl-5 {
    width: 41.66667%;
  }
  .col-tbl-4 {
    width: 33.33333%;
  }
  .col-tbl-3 {
    width: 25%;
  }
  .col-tbl-2 {
    width: 16.6666%;
  }
  .col-tbl-1 {
    width: 8.33333%;
  }
  .tbl-one {
    width: 1%;
  }
  .tbl-two {
    width: 2%;
  }
  .tbl-three {
    width: 3%;
  }
  .tbl-four {
    width: 4%;
  }
  .tbl-five {
    width: 5%;
  }
  .tbl-six {
    width: 6%;
  }
  .tbl-seven {
    width: 7%;
  }
  .tbl-eight {
    width: 8%;
  }
  .tbl-nine {
    width: 9%;
  }
  .tbl-ten {
    width: 10%;
  }
  .tbl-eleven {
    width: 11%;
  }
  .tbl-twelve {
    width: 12%;
  }
  .tbl-thirteen {
    width: 13%;
  }
  .tbl-fourteen {
    width: 14%;
  }
  .tbl-fifteen {
    width: 15%;
  }
  .tbl-sixteen,
  .tbl-six-column {
    width: 16.66666%;
  }
  .tbl-twenty,
  .tbl-five-column {
    width: 20%;
  }
  .tbl-twentyfive,
  .tbl-twenty-five,
  .tbl-four-column {
    width: 25%;
  }
  .tbl-thirty {
    width: 30%;
  }
  .tbl-thirtythree,
  .tbl-thirty-three,
  .tbl-three-column {
    width: 33.333%;
  }
  .tbl-fourty,
  .tbl-forty {
    width: 40%;
  }
  .tbl-fortyfive {
    width: 45%;
  }
  .tbl-fifty,
  .tbl-two-column {
    width: 50%;
  }
  .tbl-fiftyfive {
    width: 55%;
  }
  .tbl-sixty {
    width: 60%;
  }
  .tbl-sixtysix,
  .tbl-sixty-six {
    width: 66.666%;
  }
  .tbl-seventy {
    width: 70%;
  }
  .tbl-seventyfive,
  .tbl-seventy-five {
    width: 75%;
  }
  .tbl-eighty {
    width: 80%;
  }
  .tbl-eightyfive,
  .tbl-eighty-five {
    width: 85%;
  }
  .tbl-ninety {
    width: 90%;
  }
  .tbl-ninetyfive,
  .tbl-ninety-five {
    width: 95%;
  }
  .tbl-hundred,
  .tbl-one-column {
    width: 100%;
  }
  .tbl-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .tbl-flex-column {
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .tbl-flex-row {
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .tbl-flex-wrap {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .tbl-flex-grow-1 {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .tbl-flex-grow-2 {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
  }
  .tbl-flex-grow-3 {
    -webkit-box-flex: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
  }
  .tbl-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .tbl-align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .tbl-order--1 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .tbl-order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .tbl-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .tbl-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .tbl-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .tbl-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .tbl-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .tbl-no-padding {
    padding: 0;
  }
  body .tbl-no-lr-padding {
    padding-left: 0;
    padding-right: 0;
  }
  .tbl-hidden,
  .tbl-hide {
    display: none;
  }
  .tbl-block {
    display: block;
  }
  .tbl-inline {
    display: inline;
  }
  .tbl-inline-block {
    display: inline-block;
  }
  .tbl-static {
    position: static;
  }
  .tbl-relative {
    position: relative;
  }
  .tbl-absolute {
    position: absolute;
  }
  .tbl-fixed {
    position: fixed;
  }
  .tbl-clearfix:before,
  .tbl-clearfix:after {
    content: " ";
    display: table;
  }
  .tbl-clearfix:after {
    clear: both;
  }
  .tbl-column-wrapper,
  .tbl-columns-wrapper {
    overflow: hidden;
  }
  .tbl-vertical-top,
  .tbl-vert-top {
    vertical-align: top;
  }
  .tbl-vertical-bottom,
  .tbl-vert-btm {
    vertical-align: bottom;
  }
  .tbl-vertical-middle,
  .tbl-vert-mid {
    vertical-align: middle;
  }
  .tbl-left,
  .tbl-pull-left {
    float: left;
  }
  .tbl-right,
  .tbl-pull-right {
    float: right;
  }
  .tbl-no-float,
  .tbl-float-none {
    float: none;
  }
  .tbl-textleft,
  .tbl-text-left {
    text-align: left;
  }
  .tbl-textright,
  .tbl-text-right {
    text-align: right;
  }
  .tbl-textcenter,
  .tbl-text-center {
    text-align: center;
  }
  .tbl-margin-auto {
    margin: auto;
  }
  .tbl-margin-left-auto {
    margin-left: auto;
  }
  .tbl-margin-right-auto {
    margin-right: auto;
  }
  .tbl-no-bg-img {
    background-image: none !important;
  }
  .gform_wrapper .left-column.col-tbl-12 {
    padding-right: 0px;
  }
  .gform_wrapper .right-column.col-tbl-12 {
    padding-left: 0px;
  }
}
@media (max-width: 767px) {
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66667%;
  }
  .col-sm-10 {
    width: 83.33333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66667%;
  }
  .col-sm-7 {
    width: 58.33333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66667%;
  }
  .col-sm-4 {
    width: 33.33333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.6666%;
  }
  .col-sm-1 {
    width: 8.33333%;
  }
  .sm-one {
    width: 1%;
  }
  .sm-two {
    width: 2%;
  }
  .sm-three {
    width: 3%;
  }
  .sm-four {
    width: 4%;
  }
  .sm-five {
    width: 5%;
  }
  .sm-six {
    width: 6%;
  }
  .sm-seven {
    width: 7%;
  }
  .sm-eight {
    width: 8%;
  }
  .sm-nine {
    width: 9%;
  }
  .sm-ten {
    width: 10%;
  }
  .sm-eleven {
    width: 11%;
  }
  .sm-twelve {
    width: 12%;
  }
  .sm-thirteen {
    width: 13%;
  }
  .sm-fourteen {
    width: 14%;
  }
  .sm-fifteen {
    width: 15%;
  }
  .sm-sixteen,
  .sm-six-column {
    width: 16.66666%;
  }
  .sm-twenty,
  .sm-five-column {
    width: 20%;
  }
  .sm-twentyfive,
  .sm-twenty-five,
  .sm-four-column {
    width: 25%;
  }
  .sm-thirty {
    width: 30%;
  }
  .sm-thirtythree,
  .sm-thirty-three,
  .sm-three-column {
    width: 33.333%;
  }
  .sm-fourty,
  .sm-forty {
    width: 40%;
  }
  .sm-fortyfive {
    width: 45%;
  }
  .sm-fifty,
  .sm-two-column {
    width: 50%;
  }
  .sm-fiftyfive {
    width: 55%;
  }
  .sm-sixty {
    width: 60%;
  }
  .sm-sixtysix,
  .sm-sixty-six {
    width: 66.666%;
  }
  .sm-seventy {
    width: 70%;
  }
  .sm-seventyfive,
  .sm-seventy-five {
    width: 75%;
  }
  .sm-eighty {
    width: 80%;
  }
  .sm-eightyfive,
  .sm-eighty-five {
    width: 85%;
  }
  .sm-ninety {
    width: 90%;
  }
  .sm-ninetyfive,
  .sm-ninety-five {
    width: 95%;
  }
  .sm-hundred,
  .sm-one-column {
    width: 100%;
  }
  .sm-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sm-flex-column {
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .sm-flex-row {
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .sm-flex-wrap {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sm-flex-grow-1 {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .sm-flex-grow-2 {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
  }
  .sm-flex-grow-3 {
    -webkit-box-flex: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
  }
  .sm-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .sm-align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .sm-order--1 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .sm-order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .sm-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .sm-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .sm-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .sm-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .sm-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .sm-no-padding {
    padding: 0;
  }
  body .sm-no-lr-padding {
    padding-left: 0;
    padding-right: 0;
  }
  .sm-hidden,
  .sm-hide {
    display: none;
  }
  .sm-block {
    display: block;
  }
  .sm-inline {
    display: inline;
  }
  .sm-inline-block {
    display: inline-block;
  }
  .sm-static {
    position: static;
  }
  .sm-relative {
    position: relative;
  }
  .sm-absolute {
    position: absolute;
  }
  .sm-fixed {
    position: fixed;
  }
  .sm-clearfix:before,
  .sm-clearfix:after {
    content: " ";
    display: table;
  }
  .sm-clearfix:after {
    clear: both;
  }
  .sm-column-wrapper,
  .sm-columns-wrapper {
    overflow: hidden;
  }
  .sm-vertical-top,
  .sm-vert-top {
    vertical-align: top;
  }
  .sm-vertical-bottom,
  .sm-vert-btm {
    vertical-align: bottom;
  }
  .sm-vertical-middle,
  .sm-vert-mid {
    vertical-align: middle;
  }
  .sm-left,
  .sm-pull-left {
    float: left;
  }
  .sm-right,
  .sm-pull-right {
    float: right;
  }
  .sm-no-float,
  .sm-float-none {
    float: none;
  }
  .sm-textleft,
  .sm-text-left {
    text-align: left;
  }
  .sm-textright,
  .sm-text-right {
    text-align: right;
  }
  .sm-textcenter,
  .sm-text-center {
    text-align: center;
  }
  .sm-margin-auto {
    margin: auto;
  }
  .sm-margin-left-auto {
    margin-left: auto;
  }
  .sm-margin-right-auto {
    margin-right: auto;
  }
  .sm-no-bg-img {
    background-image: none !important;
  }
  .gform_wrapper .left-column.col-sm-12 {
    padding-right: 0px;
  }
  .gform_wrapper .right-column.col-sm-12 {
    padding-left: 0px;
  }
}
@media (max-width: 643px) {
  .col-xsm-12 {
    width: 100%;
  }
  .col-xsm-11 {
    width: 91.66667%;
  }
  .col-xsm-10 {
    width: 83.33333%;
  }
  .col-xsm-9 {
    width: 75%;
  }
  .col-xsm-8 {
    width: 66.66667%;
  }
  .col-xsm-7 {
    width: 58.33333%;
  }
  .col-xsm-6 {
    width: 50%;
  }
  .col-xsm-5 {
    width: 41.66667%;
  }
  .col-xsm-4 {
    width: 33.33333%;
  }
  .col-xsm-3 {
    width: 25%;
  }
  .col-xsm-2 {
    width: 16.6666%;
  }
  .col-xsm-1 {
    width: 8.33333%;
  }
  .xsm-one {
    width: 1%;
  }
  .xsm-two {
    width: 2%;
  }
  .xsm-three {
    width: 3%;
  }
  .xsm-four {
    width: 4%;
  }
  .xsm-five {
    width: 5%;
  }
  .xsm-six {
    width: 6%;
  }
  .xsm-seven {
    width: 7%;
  }
  .xsm-eight {
    width: 8%;
  }
  .xsm-nine {
    width: 9%;
  }
  .xsm-ten {
    width: 10%;
  }
  .xsm-eleven {
    width: 11%;
  }
  .xsm-twelve {
    width: 12%;
  }
  .xsm-thirteen {
    width: 13%;
  }
  .xsm-fourteen {
    width: 14%;
  }
  .xsm-fifteen {
    width: 15%;
  }
  .xsm-sixteen,
  .xsm-six-column {
    width: 16.66666%;
  }
  .xsm-twenty,
  .xsm-five-column {
    width: 20%;
  }
  .xsm-twentyfive,
  .xsm-twenty-five,
  .xsm-four-column {
    width: 25%;
  }
  .xsm-thirty {
    width: 30%;
  }
  .xsm-thirtythree,
  .xsm-thirty-three,
  .xsm-three-column {
    width: 33.333%;
  }
  .xsm-fourty,
  .xsm-forty {
    width: 40%;
  }
  .xsm-fortyfive {
    width: 45%;
  }
  .xsm-fifty,
  .xsm-two-column {
    width: 50%;
  }
  .xsm-fiftyfive {
    width: 55%;
  }
  .xsm-sixty {
    width: 60%;
  }
  .xsm-sixtysix,
  .xsm-sixty-six {
    width: 66.666%;
  }
  .xsm-seventy {
    width: 70%;
  }
  .xsm-seventyfive,
  .xsm-seventy-five {
    width: 75%;
  }
  .xsm-eighty {
    width: 80%;
  }
  .xsm-eightyfive,
  .xsm-eighty-five {
    width: 85%;
  }
  .xsm-ninety {
    width: 90%;
  }
  .xsm-ninetyfive,
  .xsm-ninety-five {
    width: 95%;
  }
  .xsm-hundred,
  .xsm-one-column {
    width: 100%;
  }
  .xsm-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .xsm-flex-column {
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .xsm-flex-row {
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .xsm-flex-wrap {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .xsm-flex-grow-1 {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .xsm-flex-grow-2 {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
  }
  .xsm-flex-grow-3 {
    -webkit-box-flex: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
  }
  .xsm-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .xsm-align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .xsm-order--1 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .xsm-order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .xsm-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .xsm-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .xsm-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .xsm-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .xsm-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .xsm-no-padding {
    padding: 0;
  }
  body .xsm-no-lr-padding {
    padding-left: 0;
    padding-right: 0;
  }
  .xsm-hidden,
  .xsm-hide {
    display: none;
  }
  .xsm-block {
    display: block;
  }
  .xsm-inline {
    display: inline;
  }
  .xsm-inline-block {
    display: inline-block;
  }
  .xsm-static {
    position: static;
  }
  .xsm-relative {
    position: relative;
  }
  .xsm-absolute {
    position: absolute;
  }
  .xsm-fixed {
    position: fixed;
  }
  .xsm-clearfix:before,
  .xsm-clearfix:after {
    content: " ";
    display: table;
  }
  .xsm-clearfix:after {
    clear: both;
  }
  .xsm-column-wrapper,
  .xsm-columns-wrapper {
    overflow: hidden;
  }
  .xsm-vertical-top,
  .xsm-vert-top {
    vertical-align: top;
  }
  .xsm-vertical-bottom,
  .xsm-vert-btm {
    vertical-align: bottom;
  }
  .xsm-vertical-middle,
  .xsm-vert-mid {
    vertical-align: middle;
  }
  .xsm-left,
  .xsm-pull-left {
    float: left;
  }
  .xsm-right,
  .xsm-pull-right {
    float: right;
  }
  .xsm-no-float,
  .xsm-float-none {
    float: none;
  }
  .xsm-textleft,
  .xsm-text-left {
    text-align: left;
  }
  .xsm-textright,
  .xsm-text-right {
    text-align: right;
  }
  .xsm-textcenter,
  .xsm-text-center {
    text-align: center;
  }
  .xsm-margin-auto {
    margin: auto;
  }
  .xsm-margin-left-auto {
    margin-left: auto;
  }
  .xsm-margin-right-auto {
    margin-right: auto;
  }
  .xsm-no-bg-img {
    background-image: none !important;
  }
  .gform_wrapper .left-column.col-xsm-12 {
    padding-right: 0px;
  }
  .gform_wrapper .right-column.col-xsm-12 {
    padding-left: 0px;
  }
}
@media (max-width: 500px) {
  .col-mbl-12 {
    width: 100%;
  }
  .col-mbl-11 {
    width: 91.66667%;
  }
  .col-mbl-10 {
    width: 83.33333%;
  }
  .col-mbl-9 {
    width: 75%;
  }
  .col-mbl-8 {
    width: 66.66667%;
  }
  .col-mbl-7 {
    width: 58.33333%;
  }
  .col-mbl-6 {
    width: 50%;
  }
  .col-mbl-5 {
    width: 41.66667%;
  }
  .col-mbl-4 {
    width: 33.33333%;
  }
  .col-mbl-3 {
    width: 25%;
  }
  .col-mbl-2 {
    width: 16.6666%;
  }
  .col-mbl-1 {
    width: 8.33333%;
  }
  .mbl-one {
    width: 1%;
  }
  .mbl-two {
    width: 2%;
  }
  .mbl-three {
    width: 3%;
  }
  .mbl-four {
    width: 4%;
  }
  .mbl-five {
    width: 5%;
  }
  .mbl-six {
    width: 6%;
  }
  .mbl-seven {
    width: 7%;
  }
  .mbl-eight {
    width: 8%;
  }
  .mbl-nine {
    width: 9%;
  }
  .mbl-ten {
    width: 10%;
  }
  .mbl-eleven {
    width: 11%;
  }
  .mbl-twelve {
    width: 12%;
  }
  .mbl-thirteen {
    width: 13%;
  }
  .mbl-fourteen {
    width: 14%;
  }
  .mbl-fifteen {
    width: 15%;
  }
  .mbl-sixteen,
  .mbl-six-column {
    width: 16.66666%;
  }
  .mbl-twenty,
  .mbl-five-column {
    width: 20%;
  }
  .mbl-twentyfive,
  .mbl-twenty-five,
  .mbl-four-column {
    width: 25%;
  }
  .mbl-thirty {
    width: 30%;
  }
  .mbl-thirtythree,
  .mbl-thirty-three,
  .mbl-three-column {
    width: 33.333%;
  }
  .mbl-fourty,
  .mbl-forty {
    width: 40%;
  }
  .mbl-fortyfive {
    width: 45%;
  }
  .mbl-fifty,
  .mbl-two-column {
    width: 50%;
  }
  .mbl-fiftyfive {
    width: 55%;
  }
  .mbl-sixty {
    width: 60%;
  }
  .mbl-sixtysix,
  .mbl-sixty-six {
    width: 66.666%;
  }
  .mbl-seventy {
    width: 70%;
  }
  .mbl-seventyfive,
  .mbl-seventy-five {
    width: 75%;
  }
  .mbl-eighty {
    width: 80%;
  }
  .mbl-eightyfive,
  .mbl-eighty-five {
    width: 85%;
  }
  .mbl-ninety {
    width: 90%;
  }
  .mbl-ninetyfive,
  .mbl-ninety-five {
    width: 95%;
  }
  .mbl-hundred,
  .mbl-one-column {
    width: 100%;
  }
  .mbl-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .mbl-flex-column {
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .mbl-flex-row {
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .mbl-flex-wrap {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .mbl-flex-grow-1 {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .mbl-flex-grow-2 {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
  }
  .mbl-flex-grow-3 {
    -webkit-box-flex: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
  }
  .mbl-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .mbl-align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .mbl-order--1 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .mbl-order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .mbl-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .mbl-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .mbl-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .mbl-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .mbl-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .mbl-no-padding {
    padding: 0;
  }
  body .mbl-no-lr-padding {
    padding-left: 0;
    padding-right: 0;
  }
  .mbl-hidden,
  .mbl-hide {
    display: none;
  }
  .mbl-block {
    display: block;
  }
  .mbl-inline {
    display: inline;
  }
  .mbl-inline-block {
    display: inline-block;
  }
  .mbl-static {
    position: static;
  }
  .mbl-relative {
    position: relative;
  }
  .mbl-absolute {
    position: absolute;
  }
  .mbl-fixed {
    position: fixed;
  }
  .mbl-clearfix:before,
  .mbl-clearfix:after {
    content: " ";
    display: table;
  }
  .mbl-clearfix:after {
    clear: both;
  }
  .mbl-column-wrapper,
  .mbl-columns-wrapper {
    overflow: hidden;
  }
  .mbl-vertical-top,
  .mbl-vert-top {
    vertical-align: top;
  }
  .mbl-vertical-bottom,
  .mbl-vert-btm {
    vertical-align: bottom;
  }
  .mbl-vertical-middle,
  .mbl-vert-mid {
    vertical-align: middle;
  }
  .mbl-left,
  .mbl-pull-left {
    float: left;
  }
  .mbl-right,
  .mbl-pull-right {
    float: right;
  }
  .mbl-no-float,
  .mbl-float-none {
    float: none;
  }
  .mbl-textleft,
  .mbl-text-left {
    text-align: left;
  }
  .mbl-textright,
  .mbl-text-right {
    text-align: right;
  }
  .mbl-textcenter,
  .mbl-text-center {
    text-align: center;
  }
  .mbl-margin-auto {
    margin: auto;
  }
  .mbl-margin-left-auto {
    margin-left: auto;
  }
  .mbl-margin-right-auto {
    margin-right: auto;
  }
  .mbl-no-bg-img {
    background-image: none !important;
  }
  .gform_wrapper .left-column.col-mbl-12 {
    padding-right: 0px;
  }
  .gform_wrapper .right-column.col-mbl-12 {
    padding-left: 0px;
  }
}
/* Site Widths
* review styleguide.less to review current variables. 
* Sets padding to site width at it's breakpoint plus the desired padding. 
* If different padding is needed per site width, add variables as needed.
*/
.panel-padding {
  padding-top: 50px;
  padding-bottom: 50px;
}
.full-width {
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 180%) {
  .full-width {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.site-width {
  width: 100%;
  max-width: 1540px;
  margin: auto;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1620px) {
  .site-width {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.med-site-width {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1280px) {
  .med-site-width {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.sm-site-width {
  width: 100%;
  max-width: 975px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1055px) {
  .sm-site-width {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.xsm-site-width {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 840px) {
  .xsm-site-width {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.sidebar-width {
  width: 100%;
  max-width: 405px;
  margin: auto;
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 485px) {
  .sidebar-width {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.lg-site-width {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1500px) {
  .lg-site-width {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.sidebar-width {
  width: 100%;
  max-width: 405px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
/*
*  Header Styles
*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999;
}
.site-header {
  z-index: 10;
  top: 0;
  left: 0;
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  -o-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  background-color: #080806;
}
.site-header .site-logo {
  padding: 10px;
}
.site-header .site-logo a {
  position: relative;
  display: block;
  width: 214px;
  height: 43px;
  background-size: cover;
}
@media (max-width: 1024px) {
  .site-header .site-logo {
    padding: 18px 18px 18px 10px;
  }
  .site-header .site-logo a {
    width: 126px;
    height: 25px;
  }
}
/*
*  Primary Navigation Styles
*/
.header-main {
  max-width: 1690px;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.header-main .primary-navigation > ul > li > a {
  padding-top: 15px;
  padding-bottom: 31px;
  padding-left: 20px;
  padding-right: 20px;
  text-transform: capitalize;
  font-size: 14px;
  font-size: 1.4rem;
  color: #f1f1f1;
  font-weight: 600;
  position: relative;
}
.header-main .primary-navigation > ul > li.menu-item-has-children > a:after {
  content: "\f078";
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
  font-size: 13px;
  font-size: 1.3rem;
  right: 3px;
  top: 14px;
  color: #f1f1f1;
  position: absolute;
}
.header-main .primary-navigation > ul > li.menu-item-has-children:hover .sub-menu,
.header-main .primary-navigation > ul > li.menu-item-has-children:focus .sub-menu {
  display: block;
}
.header-main .header-search-button {
  color: #5e6065;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
}
.header-main .header-search-button:hover {
  color: #f1f1f1;
}
body.mobile-menu-open .header-main .header-search-button,
body.header-transition-true .header-main .header-search-button,
body.no-banner-with-background-image .header-main .header-search-button,
body.search-open .header-main .header-search-button,
.header-main:hover .header-search-button {
  color: #f1f1f1;
}
body.mobile-menu-open .header-main .header-search-button:hover,
body.header-transition-true .header-main .header-search-button:hover,
body.no-banner-with-background-image .header-main .header-search-button:hover,
body.search-open .header-main .header-search-button:hover,
.header-main:hover .header-search-button:hover {
  color: #f1f1f1;
}
.header-main .search-wrapper {
  position: absolute;
  top: -65px;
  width: 100%;
  z-index: 2;
  left: 0;
  right: 0;
  padding-left: 0;
  padding-right: 0;
  -webkit-transition: all 0.3s cubic-bezier(1, -0.57, 1, 0.97);
  -moz-transition: all 0.3s cubic-bezier(1, -0.57, 1, 0.97);
  -o-transition: all 0.3s cubic-bezier(1, -0.57, 1, 0.97);
  transition: all 0.3s cubic-bezier(1, -0.57, 1, 0.97);
  transition-delay: 0.3s;
  max-width: 1615px;
}
.header-main .search-wrapper input {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
body:not(.page-template-proven-framework) .site-main {
  padding-top: 80px;
  padding-bottom: 60px;
  display: block;
}
@media (max-width: 1024px) {
  body:not(.page-template-proven-framework) .site-main {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  body:not(.page-template-proven-framework) .site-main {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
body.blog:not(.page-template-proven-framework) .site-main,
body.archive:not(.page-template-proven-framework) .site-main {
  padding-top: 60px;
  padding-bottom: 60px;
  display: block;
}
@media (max-width: 1024px) {
  body.blog:not(.page-template-proven-framework) .site-main,
  body.archive:not(.page-template-proven-framework) .site-main {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  body.blog:not(.page-template-proven-framework) .site-main,
  body.archive:not(.page-template-proven-framework) .site-main {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
/*
*  Primary Navigation Submenu Styles
*/
.header-main .primary-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: auto;
  min-width: 240px;
  max-width: 400px;
  display: none;
}
.header-main .primary-navigation .sub-menu a {
  display: block;
  padding: 15px 36px;
  font-weight: 600;
  background-color: #080806;
  border-left: 1px solid #303030;
  border-right: 1px solid #303030;
  border-bottom: 1px solid #303030;
  font-size: 16px;
  font-size: 1.6rem;
  color: #f1f1f1;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  text-transform: capitalize;
}
.header-main .primary-navigation .sub-menu .overview-link {
  display: none;
}
.header-main .primary-navigation .sub-menu a:hover,
.header-main .primary-navigation .sub-menu a:focus {
  background-color: #f7f7f7;
  color: #080806;
}
@media (max-width: 1400px) {
  .header-main .primary-navigation .sub-menu a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
/*
*  Aux Navigation Styles
*/
.header-aux {
  max-width: 1690px;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.header-aux .aux-navigation > ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: end;
  -ms-justify-content: end;
  justify-content: end;
}
.header-aux .aux-navigation ul > li > a {
  background-color: #fff100;
  letter-spacing: 3px;
  padding: 9px 33px;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
  color: #080806;
  font-weight: 600;
  display: inline-block;
  transform: skew(-21deg);
}
.header-aux .aux-navigation ul > li > a:hover {
  color: #b5b5b5;
}
.header-aux .aux-navigation ul > li > a > span {
  display: inline-block;
  transform: skew(21deg);
}
.header-aux .aux-navigation ul > li:first-of-type a > span {
  border-right: 2px solid #080806;
  padding-right: 30px;
}
.header-aux .aux-navigation ul > li:nth-of-type(2) a {
  padding-left: 0px;
  margin-left: -1px;
}
@media (max-width: 767px) {
  .header-aux {
    padding-left: 0px;
    padding-right: 0px;
  }
  .header-aux .aux-navigation ul > li {
    width: 50%;
    background-color: #fff100;
    text-align: center;
  }
  .header-aux .aux-navigation ul > li > a {
    transform: none;
  }
  .header-aux .aux-navigation ul > li > a > span {
    transform: none;
  }
  .header-aux .aux-navigation ul > li:first-of-type {
    border-right: 1px solid #080806;
  }
  .header-aux .aux-navigation ul > li:first-of-type a > span {
    border-right: none;
    padding: 0px;
    position: relative;
  }
  .header-aux .aux-navigation ul > li:nth-of-type(2) a {
    padding: 9px 33px;
  }
}
/* SEARCH BOX */
.search-wrapper.open {
  top: 100px;
  -webkit-transition: all 0.3s cubic-bezier(0, 0.105, 0.035, 1.57);
  -moz-transition: all 0.3s cubic-bezier(0, 0.105, 0.035, 1.57);
  -o-transition: all 0.3s cubic-bezier(0, 0.105, 0.035, 1.57);
  transition: all 0.3s cubic-bezier(0, 0.105, 0.035, 1.57);
  transition-delay: 0.3s;
}
.search-wrapper .input-holder {
  position: relative;
}
.search-wrapper button.search-icon.search-submit {
  position: absolute;
  z-index: 1;
  top: 12px;
  border: none;
  background: transparent;
  right: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  cursor: pointer;
  color: #080806;
}
.search-wrapper button.search-icon.search-submit .fa-search {
  font-weight: 700;
}
.search-wrapper .search-input {
  -webkit-box-shadow: 0px 10px 10px -9px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 10px 10px -9px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 10px -9px rgba(0, 0, 0, 0.1);
}
.search-wrapper input {
  height: 50px;
  z-index: 2;
}
body.search-open .header-search-button .fa-search {
  width: 18px;
  height: 18px;
  text-align: right;
}
body.search-open .header-search-button .fa-search:before {
  content: '\f00d';
  font-size: 20px;
  font-size: 2rem;
}
body.search-open .search-wrapper {
  top: 109px;
  -webkit-transition: all 0.3s cubic-bezier(0, 0.105, 0.035, 1.57);
  -moz-transition: all 0.3s cubic-bezier(0, 0.105, 0.035, 1.57);
  -o-transition: all 0.3s cubic-bezier(0, 0.105, 0.035, 1.57);
  transition: all 0.3s cubic-bezier(0, 0.105, 0.035, 1.57);
}
.menu-toggle {
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  top: 0;
  right: 0;
  padding: 9px 10px 10px;
}
.menu-toggle .inner {
  width: 18px;
  height: 14px;
  position: relative;
}
.menu-toggle .inner span {
  -webkit-transition: transform 0.2s ease-out;
  -moz-transition: transform 0.2s ease-out;
  -o-transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
}
.menu-toggle .inner span:first-child {
  top: 0px;
  height: 2px;
  width: 100%;
  background-color: #fff100;
  position: absolute;
}
.menu-toggle .inner span:nth-child(2) {
  top: 6px;
  height: 2px;
  width: 100%;
  background-color: #fff100;
  position: absolute;
}
.menu-toggle .inner span:nth-child(3) {
  top: 12px;
  height: 2px;
  width: 100%;
  background-color: #fff100;
  position: absolute;
}
.menu-toggle:hover .inner span:first-child,
.menu-toggle:hover .inner span:nth-child(2),
.menu-toggle:hover .inner span:nth-child(3) {
  background-color: #fff100;
}
body.mobile-menu-open .menu-toggle .inner span:first-child,
body.header-transition-true .menu-toggle .inner span:first-child,
body.no-banner-with-background-image .menu-toggle .inner span:first-child,
body.search-open .menu-toggle .inner span:first-child,
.menu-toggle:hover .inner span:first-child,
body.mobile-menu-open .menu-toggle .inner span:nth-child(2),
body.header-transition-true .menu-toggle .inner span:nth-child(2),
body.no-banner-with-background-image .menu-toggle .inner span:nth-child(2),
body.search-open .menu-toggle .inner span:nth-child(2),
.menu-toggle:hover .inner span:nth-child(2),
body.mobile-menu-open .menu-toggle .inner span:nth-child(3),
body.header-transition-true .menu-toggle .inner span:nth-child(3),
body.no-banner-with-background-image .menu-toggle .inner span:nth-child(3),
body.search-open .menu-toggle .inner span:nth-child(3),
.menu-toggle:hover .inner span:nth-child(3) {
  background-color: #f1f1f1;
}
body.mobile-menu-open .menu-toggle:hover .inner span:first-child,
body.header-transition-true .menu-toggle:hover .inner span:first-child,
body.no-banner-with-background-image .menu-toggle:hover .inner span:first-child,
body.search-open .menu-toggle:hover .inner span:first-child,
.menu-toggle:hover:hover .inner span:first-child,
body.mobile-menu-open .menu-toggle:hover .inner span:nth-child(2),
body.header-transition-true .menu-toggle:hover .inner span:nth-child(2),
body.no-banner-with-background-image .menu-toggle:hover .inner span:nth-child(2),
body.search-open .menu-toggle:hover .inner span:nth-child(2),
.menu-toggle:hover:hover .inner span:nth-child(2),
body.mobile-menu-open .menu-toggle:hover .inner span:nth-child(3),
body.header-transition-true .menu-toggle:hover .inner span:nth-child(3),
body.no-banner-with-background-image .menu-toggle:hover .inner span:nth-child(3),
body.search-open .menu-toggle:hover .inner span:nth-child(3),
.menu-toggle:hover:hover .inner span:nth-child(3) {
  background-color: #f1f1f1;
}
.site-header:hover .menu-toggle .inner span:first-child,
.site-header:hover .menu-toggle .inner span:nth-child(2),
.site-header:hover .menu-toggle .inner span:nth-child(3) {
  background-color: #f1f1f1;
}
body.mobile-menu-open .menu-toggle .inner span:first-child {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 10px;
}
body.mobile-menu-open .menu-toggle .inner span:nth-child(2) {
  opacity: 0;
}
body.mobile-menu-open .menu-toggle .inner span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 10px;
}
.mobile-navigation {
  position: fixed;
  top: 100px;
  width: 100%;
  z-index: 3;
  background-color: white;
  overflow-y: auto;
  bottom: 0;
  padding-bottom: 20px;
}
.mobile-navigation .nav-menu > li > a {
  color: #080806;
  font-weight: 600;
  padding: 16px 25px;
  font-size: 18px;
  font-size: 1.8rem;
  display: block;
}
.mobile-navigation .nav-menu > li > a:hover {
  color: #080806;
  background-color: #fff100;
}
.mobile-navigation .nav-menu > li.menu-item-has-children > a:after {
  content: '\f0d7';
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  right: 25px;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1;
}
.mobile-navigation .nav-menu > li.menu-item-has-children.opened > a:after {
  content: '\f0d8';
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  right: 25px;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1;
}
.mobile-navigation .nav-menu > li {
  position: relative;
  border-bottom: 1px solid #d9d9d9;
}
.mobile-navigation .sub-menu {
  background-color: #f7f7f7;
  display: none;
}
.mobile-navigation .sub-menu > li > a {
  color: #080806;
  font-weight: 600;
  padding: 12px 45px;
  font-size: 16px;
  font-size: 1.6rem;
  display: block;
}
.mobile-navigation .sub-menu > li {
  border-bottom: 1px solid #d9d9d9;
}
.mobile-navigation .sub-menu > li:first-of-type {
  border-top: 1px solid #d9d9d9;
}
.mobile-navigation .sub-menu > li:last-of-type {
  border-bottom: none;
}
.mobile-navigation span.toggle-submenu {
  top: 2px;
  right: 25px;
}
.mobile-navigation span.toggle-submenu > i {
  font-size: 24px;
  font-size: 2.4rem;
}
.mobile-navigation .bottom-menu {
  padding: 25px;
}
.mobile-navigation .search-wrapper input {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
@media (max-width: 767px) {
  .mobile-navigation {
    top: 94px;
  }
}
.no-banner-with-background-image .site-main > div:first-of-type:not(.banner-with-background-image, .top-banner-slider) {
  margin-top: 100px;
}
@media (max-width: 500px) {
  .no-banner-with-background-image .site-main > div:first-of-type:not(.banner-with-background-image, .top-banner-slider) {
    margin-top: 80px;
  }
}
/*
*  Footer Styles
*/
.footer-newsletter .gform_wrapper {
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
  background-color: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
}
.footer-newsletter .gform_wrapper .gform_body {
  width: 100%;
}
.footer-newsletter .gform_wrapper .gfield_label,
.footer-newsletter .gform_wrapper .address_city label,
.footer-newsletter .gform_wrapper .address_state label,
.footer-newsletter .gform_wrapper .address_zip label {
  display: none;
}
.footer-newsletter .gform_wrapper ul.gform_fields li.gfield {
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 40px;
}
.footer-newsletter .gform_wrapper .gform_footer {
  width: auto;
  padding: 0;
  margin: 0;
}
.footer-newsletter .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  padding: 0 20px;
  height: 50px;
  -webkit-border-radius: 38px;
  -moz-border-radius: 38px;
  border-radius: 38px;
  background-color: transparent;
}
.footer-newsletter .gform_wrapper .gform_footer .button {
  padding: 14px 22px;
  margin-top: 0;
  min-width: 120px;
}
.footer-newsletter .gform_required_legend {
  display: none;
}
.footer-newsletter .gform_wrapper.gravity-theme.newsletter-form_wrapper .gfield_required {
  display: none;
}
@media (max-width: 1024px) {
  .footer-newsletter .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    max-width: 210px;
    width: 100%;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .footer-newsletter .gform_wrapper ul.gform_fields li.gfield {
    padding-right: 20px;
  }
}
@media (max-width: 500px) {
  .footer-newsletter .gform_wrapper .gform_footer .button {
    padding: 16px 22px;
  }
}
.site-footer {
  background-color: #080806;
}
.site-footer .column-1,
.site-footer .column-2,
.site-footer .column-3,
.site-footer .column-4 {
  margin-right: 30px;
  font-size: 16px;
  font-size: 1.6rem;
}
.site-footer .column-1 .column-title,
.site-footer .column-2 .column-title,
.site-footer .column-3 .column-title,
.site-footer .column-4 .column-title {
  font-size: 18px;
  font-size: 1.8rem;
  padding-bottom: 10px;
}
.site-footer .column-1 a,
.site-footer .column-2 a,
.site-footer .column-3 a,
.site-footer .column-4 a {
  color: #f1f1f1;
}
.site-footer .column-1 a:hover,
.site-footer .column-2 a:hover,
.site-footer .column-3 a:hover,
.site-footer .column-4 a:hover,
.site-footer .column-1 a:focus,
.site-footer .column-2 a:focus,
.site-footer .column-3 a:focus,
.site-footer .column-4 a:focus {
  color: #fff100;
}
.site-footer .footer-logo img {
  width: 214px;
  max-width: 214px;
  height: 43px;
}
.site-footer .footer-inner {
  padding-top: 70px;
  padding-bottom: 20px;
  max-width: 1640px;
}
.site-footer .loc-address i,
.site-footer .loc-phone i {
  margin-top: 3px;
  margin-right: 10px;
}
.site-footer .loc-address {
  line-height: 1.8;
  margin-bottom: 20px;
}
.site-footer .loc-address i {
  margin-top: 7px;
}
.site-footer .footer-navigation a {
  font-weight: 400;
  padding: 5px 0;
  display: inline-block;
}
.site-footer .social-media {
  padding-top: 30px;
}
.site-footer .social-media li {
  padding: 20px 35px 20px 0;
}
.site-footer .social-media li:last-of-type {
  padding-right: 0;
}
.site-footer .copyright {
  margin-top: 180px;
  font-size: 14px;
  font-size: 1.4rem;
  padding-top: 20px;
  padding-bottom: 20px;
}
.site-footer .copyright span,
.site-footer .copyright a {
  border-right: 1px solid #f1f1f1;
  padding-right: 10px;
  margin-right: 5px;
}
.site-footer .copyright a:last-of-type {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.site-footer .copyright a {
  color: #f1f1f1;
}
.site-footer .copyright a:hover {
  color: #fff100;
}
.site-footer .column-3 .gfield_label {
  text-transform: none;
  color: #f1f1f1;
  font-weight: 400 !important;
}
@media (max-width: 1680px) {
  .site-footer .footer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1200px) {
  .site-footer .column-1 {
    padding-bottom: 30px;
    padding-right: 0;
  }
  .site-footer .column-1 .social-media {
    padding-top: 0;
  }
  .site-footer .social-media li a {
    font-size: 1.7em;
  }
  .site-footer .column-4 {
    padding-top: 40px;
    padding-right: 0;
  }
  .site-footer .footer-inner {
    padding-bottom: 20px;
  }
  .site-footer .footer-logo img {
    max-width: 260px;
  }
}
@media (max-width: 1024px) {
  .site-footer .footer-navigation a {
    padding: 0px;
  }
  .site-footer .column-3 {
    margin-top: 60px;
    margin-bottom: 0px;
  }
  .site-footer .column-4 {
    padding-top: 0px;
    padding-right: 0;
  }
  .site-footer .social-media {
    padding-top: 0px;
  }
  .site-footer .copyright {
    margin-top: 0px;
  }
}
@media (max-width: 400px) {
  .site-footer .column-2,
  .site-footer .column-3 {
    width: 100%;
    padding-right: 0;
  }
  .site-footer .column-2 {
    padding-bottom: 30px;
  }
  .site-footer .column-4 {
    padding-top: 40px;
  }
}
/**
 * 
 * NAME:          Template Builder Stylesheets
 * -----------------------------------------------------------------------------
*/
.accordions {
  padding-top: 100px;
  padding-bottom: 100px;
}
.accordions .top-title {
  color: #f1f1f1;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 75px;
}
.accordions.accordion-pattern-bg {
  box-shadow: 0px -23px 25px 0px rgba(0, 0, 0, 0.9) inset, 0px 77px 39px -7px rgba(0, 0, 0, 0.8) inset, 0px -79px 40px 0px rgba(0, 0, 0, 0.7) inset, 0px 2px 1px 0px rgba(0, 0, 0, 0.06), 0px 4px 2px 0px rgba(0, 0, 0, 0.09), 0px 8px 4px 0px rgba(0, 0, 0, 0.09), 0px 16px 8px 0px rgba(0, 0, 0, 0.09);
  padding-bottom: 200px;
}
.accordions .mobile-tab-title {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  color: #292b28;
  background-color: #f1f1f1;
  padding: 20px 20px 15px;
  margin-top: 15px;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  position: relative;
}
.accordions .mobile-tab-title:before {
  content: '\2b';
  color: #080806;
  background-color: #fff100;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  border-radius: 9999px;
  width: 28px;
  height: 28px;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 700;
  margin-right: 8px;
  font-size: 17px;
  font-size: 1.7rem;
  text-align: center;
}
.accordions .mobile-tab-title.active {
  color: #080806;
}
.accordions .mobile-tab-title.active:before {
  color: #fff100;
}
.accordions .mobile-tab-title.active:after {
  content: '';
  background-color: #b2b2b2;
  height: 2px;
  width: calc(100% - 40px);
  position: absolute;
  bottom: 0;
  left: 20px;
}
.accordions .mobile-tab-title.active:before {
  content: '\f068';
  color: #080806;
}
.accordions .tab-body {
  padding: 20px 50px 30px;
  background-color: #f1f1f1;
  color: #343434;
}
.banner-with-background-image {
  padding-top: 240px;
  padding-bottom: 80px;
}
.home .banner-with-background-image {
  padding-top: 270px;
  padding-bottom: 260px;
}
.banner-with-background-image.home-hero-banner {
  padding-top: 20%;
  padding-bottom: 59%;
}
.banner-with-background-image.home-hero-banner .gradient-shuttle {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  bottom: 0;
  top: unset;
}
.banner-with-background-image.home-hero-banner .overlay {
  background-image: url('../images/space-shuttle.png') !important;
  background-repeat: no-repeat !important;
  background-position: center bottom !important;
  background-size: cover !important;
  aspect-ratio: 1.9391635 !important;
  height: unset;
  bottom: 0;
  top: unset;
}
.banner-with-background-image.home-hero-banner .title {
  font-size: 56px;
  font-size: 5.6rem;
  font-weight: 600;
  margin-bottom: 150px;
}
.banner-with-background-image.home-hero-banner .content {
  bottom: 0px;
}
.banner-with-background-image.home-hero-banner .scroll-down-btn {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #f1f1f1;
  letter-spacing: 3px;
  position: relative;
}
.banner-with-background-image.home-hero-banner .scroll-down-btn:after {
  content: "\f078";
  font-family: 'Font Awesome 5 Pro';
  font-size: 15px;
  font-size: 1.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25px;
}
.banner-with-background-image.home-hero-banner .strike-thru-line {
  top: 10px;
  right: 404px;
  transition-duration: 2s !important;
}
.banner-with-background-image.home-hero-banner .text-graphic {
  top: 9px;
  right: 396px;
  transition-duration: 2s !important;
  animation-delay: 0.5s;
}
.banner-with-background-image.home-hero-banner .bottom-shuttle-message {
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
}
.banner-with-background-image.page-title-banner {
  padding-top: 244px;
  padding-bottom: 200px;
}
.banner-with-background-image.page-title-banner .pretitle {
  margin-bottom: 20px;
  color: #fff100;
}
.banner-with-background-image.page-title-banner .title {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  font-size: 46px;
  font-size: 4.6rem;
}
.banner-with-background-image.page-long-title-banner {
  padding-top: 244px;
  padding-bottom: 200px;
}
.banner-with-background-image.page-long-title-banner .pretitle {
  margin-bottom: 20px;
  color: #fff100;
}
.banner-with-background-image.page-long-title-banner .title {
  font-size: 46px;
  font-size: 4.6rem;
}
.banner-with-background-image.page-med-title-banner {
  padding-top: 244px;
  padding-bottom: 200px;
}
.banner-with-background-image.page-med-title-banner .pretitle {
  margin-bottom: 20px;
  color: #fff100;
}
.banner-with-background-image.page-med-title-banner .title {
  font-size: 46px;
  font-size: 4.6rem;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.banner-with-background-image.page-title-banner-no-image {
  padding-top: 210px;
  padding-bottom: 85px;
}
.banner-with-background-image .title {
  margin-bottom: 10px;
}
.banner-with-background-image .inner.text-center {
  margin: auto;
}
.banner-with-background-image .left-col {
  max-width: 550px;
}
.banner-with-background-image .content {
  padding-bottom: 15px;
}
@media (max-width: 1712px) {
  .banner-with-background-image.home-hero-banner .strike-thru-line {
    right: 304px;
  }
  .banner-with-background-image.home-hero-banner .text-graphic {
    top: 20px;
    right: 350px;
  }
}
@media (max-width: 1600px) {
  .banner-with-background-image.home-hero-banner .strike-thru-line {
    right: 300px;
  }
  .banner-with-background-image.home-hero-banner .text-graphic {
    right: 345px;
  }
}
@media (max-width: 1500px) {
  .banner-with-background-image.home-hero-banner .strike-thru-line {
    right: 300px;
  }
  .banner-with-background-image.home-hero-banner .text-graphic {
    right: 345px;
  }
}
@media (max-width: 1450px) {
  .banner-with-background-image.home-hero-banner .strike-thru-line {
    right: 250px;
  }
  .banner-with-background-image.home-hero-banner .text-graphic {
    right: 295px;
  }
}
@media (max-width: 1350px) {
  .banner-with-background-image.home-hero-banner .strike-thru-line {
    right: 200px;
  }
  .banner-with-background-image.home-hero-banner .text-graphic {
    right: 245px;
  }
}
@media (max-width: 1280px) {
  .banner-with-background-image.home-hero-banner .strike-thru-line {
    right: 170px;
  }
  .banner-with-background-image.home-hero-banner .text-graphic {
    right: 215px;
  }
}
@media (max-width: 1200px) {
  .banner-with-background-image.home-hero-banner .strike-thru-line {
    right: 150px;
  }
  .banner-with-background-image.home-hero-banner .text-graphic {
    right: 195px;
  }
}
@media (max-width: 1150px) {
  .banner-with-background-image.home-hero-banner .strike-thru-line {
    right: 130px;
  }
  .banner-with-background-image.home-hero-banner .text-graphic {
    right: 175px;
  }
}
@media (max-width: 1100px) {
  .banner-with-background-image.home-hero-banner .strike-thru-line {
    right: 90px;
  }
  .banner-with-background-image.home-hero-banner .text-graphic {
    right: 135px;
  }
}
@media (max-width: 1050px) {
  .banner-with-background-image.home-hero-banner .strike-thru-line {
    right: 70px;
  }
  .banner-with-background-image.home-hero-banner .text-graphic {
    right: 115px;
  }
}
@media (max-width: 1024px) {
  .banner-with-background-image.home-hero-banner .strike-thru-line {
    top: 5px;
    right: 165px;
  }
  .banner-with-background-image.home-hero-banner .strike-thru-line img {
    width: 180px;
    height: 32px;
  }
  .banner-with-background-image.home-hero-banner .text-graphic {
    right: 150px;
  }
  .banner-with-background-image.home-hero-banner .text-graphic img {
    width: 250px;
    height: 122px;
  }
  .banner-with-background-image.home-hero-banner .title {
    font-size: 38px;
    font-size: 3.8rem;
  }
}
@media (max-width: 950px) {
  .banner-with-background-image.home-hero-banner .strike-thru-line {
    right: 120px;
  }
  .banner-with-background-image.home-hero-banner .text-graphic {
    right: 110px;
  }
}
@media (max-width: 900px) {
  .banner-with-background-image.home-hero-banner .strike-thru-line {
    right: 100px;
  }
  .banner-with-background-image.home-hero-banner .text-graphic {
    right: 80px;
  }
}
@media (max-width: 850px) {
  .banner-with-background-image.home-hero-banner .strike-thru-line {
    right: 80px;
  }
  .banner-with-background-image.home-hero-banner .text-graphic {
    right: 60px;
  }
}
@media (max-width: 800px) {
  .banner-with-background-image.home-hero-banner .strike-thru-line {
    right: 70px;
  }
  .banner-with-background-image.home-hero-banner .text-graphic {
    right: 50px;
  }
}
@media (max-width: 767px) {
  .banner-with-background-image.home-hero-banner {
    padding-top: 80%;
    padding-bottom: 40%;
  }
  .banner-with-background-image.home-hero-banner .banner-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .banner-with-background-image.home-hero-banner .overlay {
    height: 60%;
  }
  .banner-with-background-image.home-hero-banner .strike-thru-line {
    right: 90px;
  }
  .banner-with-background-image.home-hero-banner .text-graphic {
    right: 90px;
  }
  .banner-with-background-image.home-hero-banner .text-graphic img {
    width: 215px;
    height: 105px;
  }
  .banner-with-background-image.home-hero-banner .banner-container .inner {
    position: relative;
    top: -400px;
  }
}
@media (max-width: 650px) {
  .banner-with-background-image.home-hero-banner {
    padding-top: 120%;
  }
  .banner-with-background-image.home-hero-banner .strike-thru-line {
    right: 50px;
  }
  .banner-with-background-image.home-hero-banner .text-graphic {
    right: 70px;
  }
  .banner-with-background-image.home-hero-banner .banner-container .inner {
    position: relative;
    top: -540px;
  }
}
@media (max-width: 630px) {
  .banner-with-background-image.home-hero-banner {
    padding-top: 120%;
  }
  .banner-with-background-image.home-hero-banner .strike-thru-line {
    right: 100px;
    top: 60px;
  }
  .banner-with-background-image.home-hero-banner .text-graphic {
    right: 100px;
    top: 80px;
  }
  .banner-with-background-image.home-hero-banner .title {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .banner-with-background-image.home-hero-banner .banner-container .inner {
    position: relative;
    top: -560px;
  }
  .banner-with-background-image.home-hero-banner .scroll-down-btn {
    margin-top: 90px;
  }
}
@media (max-width: 600px) {
  .banner-with-background-image.home-hero-banner {
    padding-top: 140%;
  }
  .banner-with-background-image.home-hero-banner .wrapper-video video {
    height: 1100px;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .banner-with-background-image.home-hero-banner {
    padding-top: 140%;
  }
  .banner-with-background-image.home-hero-banner .strike-thru-line {
    right: 60px;
    top: 60px;
  }
  .banner-with-background-image.home-hero-banner .text-graphic {
    right: 50px;
    top: 80px;
  }
  .banner-with-background-image.home-hero-banner .title {
    max-width: 308px;
  }
  .banner-with-background-image.home-hero-banner .banner-container .inner {
    position: relative;
    top: -400px;
  }
  .banner-with-background-image.home-hero-banner .wrapper-video video {
    height: 880px;
  }
}
.button-panel {
  font-family: 'Open Sans', sans-serif;
}
.button-panel .inner {
  padding-top: 15px;
  padding-bottom: 35px;
}
.button-panel .inner .fa-file-download {
  font-weight: 300;
  margin-left: 5px;
}
.button-panel .inner .button-container {
  padding: 5px;
}
@media (max-width: 1024px) {
  .button-panel .inner .button-container {
    padding: 10px;
  }
}
@media (max-width: 500px) {
  .button-panel .inner {
    padding-top: 0;
    padding-bottom: 20px;
  }
}
.cta-with-background-image {
  padding-left: 0;
  padding-right: 0;
}
.cta-with-background-image.yellow-cta {
  background-color: #fff100;
}
.cta-with-background-image.yellow-cta .title {
  color: #080806 !important;
  margin-bottom: 50px;
}
.cta-with-background-image.yellow-cta .content {
  color: #080806 !important;
}
.cta-with-background-image.yellow-cta .content {
  width: 100%;
  max-width: 584px;
  margin: 0 auto;
}
.cta-with-background-image.yellow-cta a.btn,
.cta-with-background-image.yellow-cta a.gform_wrapper .gform_footer .button {
  margin-top: 20px;
  background-color: #080806;
  color: #f1f1f1;
}
.cta-with-background-image.yellow-cta a.btn:hover,
.cta-with-background-image.yellow-cta a.gform_wrapper .gform_footer .button:hover {
  background-color: #f1f1f1;
  color: #080806;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 8px -1px 15px -3px, rgba(0, 0, 0, 0.15) 0px 4px 6px -2px;
  -moz-box-shadow: rgba(0, 0, 0, 0.1) 8px -1px 15px -3px, rgba(0, 0, 0, 0.15) 0px 4px 6px -2px;
  box-shadow: rgba(0, 0, 0, 0.1) 8px -1px 15px -3px, rgba(0, 0, 0, 0.15) 0px 4px 6px -2px;
}
.cta-with-background-image.yellow-cta .truck-img {
  background-image: url('../images/truck-image.png');
  background-size: contain;
  background-repeat: no-repeat;
  top: -130px;
  width: 752px;
  height: 186px;
  left: 50%;
  transform: translateX(-50%);
}
.cta-with-background-image.yellow-cta .tools-img {
  background-image: url('../images/tools-image.png');
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  top: 130px;
  width: 1079px;
  height: 757px;
  left: 50%;
  transform: translateX(-50%);
}
.cta-with-background-image.yellow-cta .crane-img {
  background-image: url('../images/crane-image.png');
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  width: 837px;
  height: 660px;
  left: 50%;
  transform: translateX(-50%);
}
.cta-with-background-image.black-form .banner-container {
  padding-top: 70px;
}
.cta-with-background-image.black-form .text-content.text-center {
  margin-top: 100px;
  text-align: left;
}
.cta-with-background-image.black-form .gform_wrapper {
  -webkit-box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.45);
  box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.45);
  background-color: #080806;
  border-radius: 12px;
  border: none;
}
.cta-with-background-image.black-form .gform_wrapper .gfield_required,
.cta-with-background-image.black-form .gform_wrapper .gfield_required_asterisk,
.cta-with-background-image.black-form .gform_wrapper .gform_required_legend {
  color: #f1f1f1;
}
.cta-with-background-image.black-form .gform_wrapper input[type="text"],
.cta-with-background-image.black-form .gform_wrapper input[type="tel"],
.cta-with-background-image.black-form .gform_wrapper input[type="email"],
.cta-with-background-image.black-form .gform_wrapper input[type="number"],
.cta-with-background-image.black-form .gform_wrapper input[type="password"],
.cta-with-background-image.black-form .gform_wrapper select,
.cta-with-background-image.black-form .gform_wrapper textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  width: 100%;
  height: 40px;
  color: #CCCCCC;
  border: none;
  padding: 0;
  padding-left: 15px;
  background-color: #080806;
  font-size: 14px;
  font-size: 1.4rem;
  border-bottom: 1px solid #696969;
}
.cta-with-background-image.black-form .gform_wrapper textarea {
  border: 1px solid #696969;
}
.cta-with-background-image.black-form .gform_wrapper.gravity-theme .gfield_label {
  color: #f1f1f1;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
}
.cta-with-background-image.letter-panel {
  padding-top: 50px;
  padding-bottom: 150px;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.97), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
}
.cta-with-background-image .banner-container {
  padding-top: 120px;
  padding-bottom: 120px;
  padding-left: 20px;
  padding-right: 20px;
  background: transparent;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.cta-with-background-image .inner.text-center {
  margin: auto;
}
.cta-with-background-image .left-col {
  max-width: 550px;
}
.cta-with-background-image .content {
  padding-bottom: 15px;
  max-width: 1000px;
}
.cta-with-background-image.side-by-side .banner-container .inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  padding-left: 6%;
  padding-right: 6%;
}
.cta-with-background-image.side-by-side .banner-container .text-content {
  padding-right: 40px;
}
.cta-with-background-image.side-by-side .banner-container .btn,
.cta-with-background-image.side-by-side .banner-container .gform_wrapper .gform_footer .button {
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .cta-with-background-image.yellow-cta .tools-img {
    top: 100px;
    width: 800px;
    height: 561px;
  }
}
@media (max-width: 1024px) {
  .cta-with-background-image.yellow-cta .tools-img {
    top: 50px;
  }
  .cta-with-background-image .banner-container {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cta-with-background-image.side-by-side .banner-container .inner {
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }
  .cta-with-background-image.side-by-side .banner-container .text-content {
    padding-right: 0;
    padding-bottom: 05px;
  }
  .cta-with-background-image.yellow-cta .truck-img {
    top: -130px;
    width: 608px;
    height: 150px;
  }
  .cta-with-background-image.yellow-cta .tools-img {
    width: 500px;
    height: 351px;
  }
  .cta-with-background-image.yellow-cta .crane-img {
    width: 600px;
    height: 473px;
  }
}
@media (max-width: 650px) {
  .cta-with-background-image.yellow-cta .truck-img {
    top: -88px;
    width: 400px;
    height: 106px;
  }
}
@media (max-width: 500px) {
  .cta-with-background-image .banner-container {
    padding-top: 45px;
    padding-bottom: 50px;
  }
  .cta-with-background-image.yellow-cta .truck-img {
    top: -64px;
    width: 306px;
    height: 81px;
  }
  .cta-with-background-image.yellow-cta .tools-img {
    width: 300px;
    height: 210px;
  }
  .cta-with-background-image.yellow-cta .crane-img {
    width: 300px;
    height: 237px;
  }
}
.cta-with-image-and-gradient {
  padding-top: 175px;
  padding-bottom: 175px;
}
.cta-with-image-and-gradient .inner.text-center {
  margin: auto;
}
.cta-with-image-and-gradient .left-col {
  max-width: 550px;
}
.cta-with-image-and-gradient .content {
  padding-bottom: 15px;
}
@media (max-width: 1024px) {
  .cta-with-image-and-gradient {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 500px) {
  .cta-with-image-and-gradient {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
.cta-with-panels {
  padding-top: 100px;
  padding-bottom: 100px;
}
.cta-with-panels.resources-panels .panel {
  padding: 0 20px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cta-with-panels.resources-panels .title {
  font-size: 21px;
  font-size: 2.1rem;
  margin-bottom: 50px;
}
.cta-with-panels.resources-panels .inner-panel {
  background-color: #080806;
  background-image: url('../images/resources-texture-bg.jpg');
  padding: 40px 30px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.cta-with-panels.resources-panels .inner-panel .title {
  color: #f1f1f1;
}
.cta-with-panels.resources-panels .inner-panel .content {
  color: #f1f1f1;
}
.cta-with-panels.resources-panels .inner-panel .btn.yellow-link,
.cta-with-panels.resources-panels .inner-panel .gform_wrapper .gform_footer .button.yellow-link {
  padding-left: 37px;
}
.cta-with-panels .panel {
  padding: 70px 106px 80px;
  text-align: center;
}
.cta-with-panels .title {
  color: #f1f1f1;
}
.cta-with-panels .btn.yellow-link,
.cta-with-panels .gform_wrapper .gform_footer .button.yellow-link {
  padding: 0px;
}
.cta-with-panels .content {
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .cta-with-panels.resources-panels .panel {
    margin-bottom: 70px;
  }
}
.card-repeater-panel {
  padding-top: 80px;
  padding-bottom: 70px;
}
.card-repeater-panel.plain-cards .card a.btn,
.card-repeater-panel.plain-cards .card a.gform_wrapper .gform_footer .button {
  background-color: transparent;
  color: #fff100;
  transform: none;
  padding-left: 20px;
}
.card-repeater-panel.plain-cards .card a.btn span,
.card-repeater-panel.plain-cards .card a.gform_wrapper .gform_footer .button span {
  transform: none;
  vertical-align: middle;
}
.card-repeater-panel.plain-cards .card a.btn:after,
.card-repeater-panel.plain-cards .card a.gform_wrapper .gform_footer .button:after {
  content: '\f054';
  font-size: 10px;
  font-size: 1rem;
  font-family: 'Font Awesome 5 Pro';
  position: relative;
  left: 0;
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  margin-left: 8px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.card-repeater-panel.plain-cards .card a.btn:hover,
.card-repeater-panel.plain-cards .card a.gform_wrapper .gform_footer .button:hover {
  color: #f1f1f1;
}
.card-repeater-panel.plain-cards .card a.btn:hover:after,
.card-repeater-panel.plain-cards .card a.gform_wrapper .gform_footer .button:hover:after {
  color: #f1f1f1;
  left: 8px;
}
.card-repeater-panel.staff-panel {
  padding-bottom: 270px;
}
.card-repeater-panel.staff-panel .card-wrapper {
  margin-top: 0px;
  margin-bottom: 0px;
}
.card-repeater-panel.staff-panel .title {
  padding: 10px 10px 0 0;
}
.card-repeater-panel.staff-panel .inner-card {
  padding: 10px;
  text-align: center;
}
.card-repeater-panel.staff-panel .inner-card .title {
  padding-top: 20px;
}
.card-repeater-panel.applicants-panel .title {
  color: #080806;
  text-transform: capitalize;
}
.card-repeater-panel.applicants-panel .content {
  color: #080806;
  font-size: 16px;
  font-size: 1.6rem;
}
.card-repeater-panel.no-padding-bottom {
  padding-bottom: 0px;
}
.card-repeater-panel.one-card .inner {
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.card-repeater-panel.quick-links {
  padding-bottom: 150px;
}
.card-repeater-panel.quick-links .top-section .title {
  font-size: 21px;
  font-size: 2.1rem;
  padding: 45px 10px 0px 0;
  color: #f1f1f1;
  line-height: 1.1;
}
.card-repeater-panel.quick-links .card .content a {
  color: #fff100;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 14px;
  font-size: 1.4rem;
}
.card-repeater-panel.quick-links .card .content a:hover {
  color: #f1f1f1;
}
.card-repeater-panel.quick-links .card .content {
  margin-top: 0px;
}
.card-repeater-panel.quick-links .card .content p {
  margin-bottom: 0px;
}
.card-repeater-panel.quick-links .card .inner-card {
  text-align: center !important;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.card-repeater-panel.quick-links .card .card-wrapper {
  margin-bottom: 24px;
  margin-top: 24px;
  padding-left: 0px;
  padding-right: 0px;
}
.card-repeater-panel.yellow-card-repeater {
  padding-top: 150px;
  padding-bottom: 250px;
}
.card-repeater-panel.yellow-card-repeater .top-section {
  width: 100%;
  max-width: 550px;
  margin: auto;
  padding-bottom: 70px;
}
.card-repeater-panel.yellow-card-repeater .top-section .content,
.card-repeater-panel.yellow-card-repeater .top-section .title {
  color: #080806 !important;
}
.card-repeater-panel.yellow-card-repeater .inner {
  position: relative;
}
.card-repeater-panel.yellow-card-repeater .inner:before {
  content: '';
  width: calc(100% - 60px);
  height: 1px;
  background-color: #707070;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.card-repeater-panel.yellow-card-repeater .inner-card {
  padding: 0px;
}
.card-repeater-panel.yellow-card-repeater .card-wrapper {
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 30px;
  margin-top: 50px;
}
.card-repeater-panel.yellow-card-repeater .card .content,
.card-repeater-panel.yellow-card-repeater .card .title {
  color: #080806 !important;
}
.card-repeater-panel.yellow-card-repeater .card .title {
  font-weight: 700;
  font-size: 21px;
  font-size: 2.1rem;
}
.card-repeater-panel.yellow-card-repeater .card a.btn,
.card-repeater-panel.yellow-card-repeater .card a.gform_wrapper .gform_footer .button {
  background-color: transparent;
  color: #080806;
  padding-left: 0px;
  transform: none;
}
.card-repeater-panel.yellow-card-repeater .card a.btn:after,
.card-repeater-panel.yellow-card-repeater .card a.gform_wrapper .gform_footer .button:after {
  content: '\e09f';
  font-family: 'Font Awesome 5 Pro';
  font-size: 16px;
  font-size: 1.6rem;
  margin-left: 10px;
}
.card-repeater-panel.yellow-card-repeater .card a.btn span,
.card-repeater-panel.yellow-card-repeater .card a.gform_wrapper .gform_footer .button span {
  transform: none;
}
.card-repeater-panel.yellow-card-repeater .card .btn:hover,
.card-repeater-panel.yellow-card-repeater .card .gform_wrapper .gform_footer .button:hover {
  background-color: transparent;
  color: #b5b5b5;
}
.card-repeater-panel.white-card-repeater {
  padding-top: 150px;
  padding-bottom: 250px;
}
.card-repeater-panel.white-card-repeater .top-section {
  width: 100%;
  max-width: 550px;
  margin: auto;
  padding-bottom: 50px;
}
.card-repeater-panel.white-card-repeater .top-section .content,
.card-repeater-panel.white-card-repeater .top-section .title {
  color: #080806 !important;
}
.card-repeater-panel.white-card-repeater .inner {
  position: relative;
}
.card-repeater-panel.white-card-repeater .inner:before {
  content: '';
  width: calc(100% - 60px);
  height: 1px;
  background-color: #707070;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.card-repeater-panel.white-card-repeater .inner-card {
  padding: 0px;
}
.card-repeater-panel.white-card-repeater .card-wrapper {
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 30px;
  margin-top: 50px;
}
.card-repeater-panel.white-card-repeater .card .content,
.card-repeater-panel.white-card-repeater .card .title {
  color: #080806 !important;
}
.card-repeater-panel.white-card-repeater .card .title {
  font-weight: 700;
  font-size: 21px;
  font-size: 2.1rem;
}
.card-repeater-panel.white-card-repeater .card a.btn,
.card-repeater-panel.white-card-repeater .card a.gform_wrapper .gform_footer .button {
  background-color: transparent;
  color: #080806;
  padding-left: 0px;
  transform: none;
}
.card-repeater-panel.white-card-repeater .card a.btn:after,
.card-repeater-panel.white-card-repeater .card a.gform_wrapper .gform_footer .button:after {
  content: '\e09f';
  font-family: 'Font Awesome 5 Pro';
  font-size: 16px;
  font-size: 1.6rem;
  margin-left: 10px;
}
.card-repeater-panel.white-card-repeater .card a.btn span,
.card-repeater-panel.white-card-repeater .card a.gform_wrapper .gform_footer .button span {
  transform: none;
}
.card-repeater-panel.white-card-repeater .card .btn:hover,
.card-repeater-panel.white-card-repeater .card .gform_wrapper .gform_footer .button:hover {
  background-color: transparent;
  color: #b5b5b5;
}
.card-repeater-panel.black-card-repeater {
  padding-top: 150px;
  padding-bottom: 250px;
}
.card-repeater-panel.black-card-repeater .top-section {
  width: 100%;
  max-width: 550px;
  margin: auto;
  padding-bottom: 50px;
}
.card-repeater-panel.black-card-repeater .top-section .content,
.card-repeater-panel.black-card-repeater .top-section .title {
  color: #f1f1f1 !important;
}
.card-repeater-panel.black-card-repeater .inner {
  position: relative;
}
.card-repeater-panel.black-card-repeater .inner:before {
  content: '';
  width: calc(100% - 60px);
  height: 1px;
  background-color: #707070;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.card-repeater-panel.black-card-repeater .inner-card {
  padding: 0px;
}
.card-repeater-panel.black-card-repeater .card-wrapper {
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 30px;
  margin-top: 50px;
}
.card-repeater-panel.black-card-repeater .card .content,
.card-repeater-panel.black-card-repeater .card .title {
  color: #f1f1f1 !important;
}
.card-repeater-panel.black-card-repeater .card .title {
  font-weight: 700;
  font-size: 21px;
  font-size: 2.1rem;
}
.card-repeater-panel.black-card-repeater .card a.btn,
.card-repeater-panel.black-card-repeater .card a.gform_wrapper .gform_footer .button {
  background-color: transparent;
  color: #f1f1f1;
  padding-left: 0px;
  transform: none;
}
.card-repeater-panel.black-card-repeater .card a.btn:after,
.card-repeater-panel.black-card-repeater .card a.gform_wrapper .gform_footer .button:after {
  content: '\e09f';
  font-family: 'Font Awesome 5 Pro';
  font-size: 16px;
  font-size: 1.6rem;
  margin-left: 10px;
}
.card-repeater-panel.black-card-repeater .card a.btn span,
.card-repeater-panel.black-card-repeater .card a.gform_wrapper .gform_footer .button span {
  transform: none;
}
.card-repeater-panel.black-card-repeater .card .btn:hover,
.card-repeater-panel.black-card-repeater .card .gform_wrapper .gform_footer .button:hover {
  background-color: transparent;
  color: #fff100;
}
.card-repeater-panel .right-border {
  border-right: 1px solid #707070;
}
.card-repeater-panel .inner {
  margin-left: -30px;
  margin-right: -30px;
}
.card-repeater-panel .card-wrapper {
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 30px;
  margin-top: 30px;
}
.card-repeater-panel .inner-card {
  padding: 20px;
}
.card-repeater-panel .card.w-color {
  padding: 0 15px;
  margin-bottom: 100px;
}
.card-repeater-panel .w-color .inner-card {
  padding: 0;
  height: 435px;
}
.card-repeater-panel .w-color .inner-card .card-image {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding: 10px;
}
.card-repeater-panel .w-color .title {
  color: #f1f1f1;
  border-radius: 0px;
  padding: 0;
  font-size: 28px;
  font-size: 2.8rem;
  margin-top: auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.card-repeater-panel .card .title {
  font-size: 21px;
  font-size: 2.1rem;
  padding: 45px 10px 0px 0;
  color: #f1f1f1;
  line-height: 1.1;
}
.card-repeater-panel .card .subtitle {
  font-size: 19px;
  font-size: 1.9rem;
  color: #cccccc;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 auto;
  padding: 18px;
}
.card-repeater-panel .card .content {
  font-size: 16px;
  font-size: 1.6rem;
  color: #f1f1f1;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0px;
  margin-top: 30px;
}
.card-repeater-panel .title-text {
  padding-left: 36px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100px;
}
.card-repeater-panel .title-text .title {
  font-size: 25px;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 600;
}
.card-repeater-panel .inner-card:hover .title-text-overlay {
  background: transparent;
}
.card-repeater-panel .inner-card:hover:after {
  display: none;
}
.card-repeater-panel .title-text-overlay {
  left: 0;
  bottom: 0;
  width: 100%;
  max-height: 100px;
  height: 100%;
  background: #98201e;
  mix-blend-mode: multiply;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.card-repeater-panel .content-container-hover {
  padding: 20px;
}
.card-repeater-panel .content-container-hover.absolute.full {
  top: 110%;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  padding-top: 42px;
  color: #f1f1f1;
}
.card-repeater-panel .content-container-hover {
  font-weight: 400;
  padding: 40px 40px 0 40px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
}
.card-repeater-panel .content-container-hover .title {
  font-size: 25px;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 600;
}
.card-repeater-panel .content-container-hover .learn-more {
  color: #f1f1f1;
  bottom: 0;
  width: 100%;
  padding-bottom: 30px;
  text-align: right;
  padding-right: 80px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
}
.card-repeater-panel .content-container-hover .learn-more:hover .fa-arrow-right {
  margin-left: 30px;
}
.card-repeater-panel .full-card-overlay.absolute.full {
  top: 110%;
  background: #98201e;
  mix-blend-mode: multiply;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.card-repeater-panel .inner-card:hover .content-container-hover.absolute.full,
.card-repeater-panel .inner-card:hover .full-card-overlay.absolute.full {
  top: 0;
}
.card-repeater-panel .inner-card:hover .title-text .title {
  display: none;
}
.card-repeater-panel .inner-card:hover .title-text-overlay {
  background: transparent;
}
.card-repeater-panel .inner-card:hover:after {
  visibility: hidden;
  opacity: 0;
  transition-delay: 0.2s;
}
@media (max-width: 1024px) {
  .card-repeater-panel .right-border {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .card-repeater-panel .card-wrapper {
    margin-bottom: 0px;
    margin-top: 0px;
  }
}
@media (max-width: 500px) {
  .card-repeater-panel .inner {
    margin-left: -40px;
    margin-right: -40px;
  }
  .card-repeater-panel .inner-card {
    padding: 0px;
  }
  .card-repeater-panel.staff-panel .card {
    padding: 0px;
  }
  .card-repeater-panel .card {
    padding: 40px 20px 50px;
  }
  .card-repeater-panel.quick-links .card {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .card-repeater-panel.plain-cards .card a.btn,
  .card-repeater-panel.plain-cards .card a.gform_wrapper .gform_footer .button {
    transform: none;
    padding-left: 0px;
  }
}
.employee-bios {
  padding-top: 60px;
  padding-bottom: 70px;
}
.employee-bios .employee {
  padding: 25px;
}
.employee-bios .employee-inner {
  height: 440px;
  -webkit-box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.16);
}
.employee-bios .employee .content {
  left: 0;
  bottom: 0;
  background-color: #f1f1f1;
  color: #f1f1f1;
  padding: 20px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.employee-bios .employee:hover .content {
  background-color: #f1f1f1;
  color: #fff100;
}
.employee-bios .employee .content .name {
  padding-bottom: 10px;
}
@media (max-width: 1400px) {
  .employee-bios .employees {
    margin-left: -5px;
    margin-right: -5px;
  }
  .employee-bios .employee {
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .employee-bios {
    padding-top: 30px;
    padding-bottom: 25px;
  }
}
.mfp-employee-bios .mfp-container {
  padding-left: 50px;
  padding-right: 50px;
}
.mfp-employee-bios .bio-details {
  background-color: #f1f1f1;
  margin-top: 50px;
  margin-bottom: 50px;
}
.mfp-employee-bios .bio-details .bio-inner {
  padding: 80px 20px 80px 40px;
  max-width: 1120px;
  margin: auto;
}
.mfp-employee-bios .bio-details .bio-photo {
  max-width: 500px;
  margin: auto;
}
.mfp-employee-bios .bio-details .bio-email {
  margin-top: 60px;
}
.mfp-employee-bios .bio-details .employee-name {
  margin-top: 10px;
}
.mfp-employee-bios .bio-details .middle-col {
  padding: 40px;
}
.mfp-employee-bios .slick-dots {
  bottom: -42px;
}
@media (max-width: 1400px) {
  .mfp-employee-bios .mfp-arrow {
    width: 55px;
  }
  .mfp-employee-bios .mfp-arrow-left:before,
  .mfp-employee-bios .mfp-arrow-right:before {
    display: none;
  }
  .mfp-employee-bios .mfp-arrow-left:after {
    margin-left: 15px;
  }
  .mfp-employee-bios .mfp-arrow-right:after {
    margin-left: 24px;
  }
}
@media (max-width: 1024px) {
  .mfp-employee-bios .bio-details .bio-inner {
    padding: 40px 10px;
  }
  .mfp-employee-bios .bio-details .bio-content {
    padding-top: 20px;
    padding-right: 0;
  }
  .mfp-employee-bios .bio-details .contact-info .btn,
  .mfp-employee-bios .bio-details .contact-info .gform_wrapper .gform_footer .button {
    margin-top: 30px;
  }
  .mfp-employee-bios .bio-details .middle-col {
    padding: 20px;
  }
}
@media (max-width: 900px) {
  .mfp-employee-bios .mfp-arrow-left:after {
    margin-left: 20px;
  }
  .mfp-employee-bios .mfp-arrow-right:after {
    margin-left: 14px;
  }
}
@media (max-width: 767px) {
  .mfp-employee-bios .bio-details {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 40px;
  }
  .mfp-employee-bios .bio-details .bio-inner {
    padding: 40px 0 0;
  }
  .mfp-employee-bios .bio-details .bio-content {
    padding: 20px 30px 40px;
  }
  .single-team_member .mfp-employee-bios .bio-details {
    margin-bottom: 0;
  }
  .mfp-employee-bios .bio-details .bio-photo .prev-arrow,
  .mfp-employee-bios .bio-details .bio-photo .next-arrow {
    display: none !important;
  }
}
@media (max-width: 500px) {
  .mfp-employee-bios .mfp-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .mfp-employee-bios .mfp-container .mfp-arrow {
    display: none;
  }
}
.featured-post-grid {
  padding-top: 150px;
  padding-bottom: 250px;
  background-color: #f1f1f1;
  color: #080806;
}
.featured-post-grid.feat-black-bg {
  color: #f1f1f1;
  background-color: #080806;
}
.featured-post-grid.feat-black-bg .panel-title {
  padding-top: 120px;
  padding-bottom: 50px;
  font-size: 21px;
  font-size: 2.1rem;
}
.featured-post-grid.feat-black-bg .pretitle {
  color: #f1f1f1;
}
.featured-post-grid.feat-black-bg .title {
  color: #f1f1f1;
}
.featured-post-grid.feat-black-bg a:hover {
  color: #f1f1f1;
}
.featured-post-grid.feat-black-bg .btn.black-link,
.featured-post-grid.feat-black-bg .gform_wrapper .gform_footer .button.black-link {
  color: #f1f1f1;
}
.featured-post-grid.feat-black-bg .btn.black-link:hover,
.featured-post-grid.feat-black-bg .gform_wrapper .gform_footer .button.black-link:hover {
  color: #fff100;
}
.featured-post-grid .fpost-inner-container {
  padding: 0 20px;
}
.featured-post-grid .fpost-container {
  -webkit-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  margin-left: -20px;
  margin-right: -20px;
}
.featured-post-grid .text-box {
  padding: 0 20px 0 0;
  margin-top: 20px;
}
.featured-post-grid .title {
  text-transform: none;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #080806;
}
.featured-post-grid .more-posts {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .featured-post-grid .more-posts {
    text-align: center;
  }
  .featured-post-grid .more-posts .btn.black-link,
  .featured-post-grid .more-posts .gform_wrapper .gform_footer .button.black-link {
    padding: unset;
  }
}
.tmp-form {
  padding-top: 105px;
  padding-bottom: 150px;
}
.tmp-form .top-title {
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 45px;
}
.tmp-form.black-form .gform_wrapper {
  -webkit-box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.45);
  box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.45);
  background-color: #080806;
  border-radius: 12px;
  border: none;
}
.tmp-form.black-form .gform_wrapper .gfield_required,
.tmp-form.black-form .gform_wrapper .gfield_required_asterisk,
.tmp-form.black-form .gform_wrapper .gform_required_legend {
  color: #f1f1f1;
}
.tmp-form.black-form .gform_wrapper input[type="text"],
.tmp-form.black-form .gform_wrapper input[type="tel"],
.tmp-form.black-form .gform_wrapper input[type="email"],
.tmp-form.black-form .gform_wrapper input[type="number"],
.tmp-form.black-form .gform_wrapper input[type="password"],
.tmp-form.black-form .gform_wrapper select,
.tmp-form.black-form .gform_wrapper textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  width: 100%;
  height: 40px;
  color: #CCCCCC;
  border: none;
  padding: 0;
  padding-left: 15px;
  background-color: #080806;
  font-size: 14px;
  font-size: 1.4rem;
  border-bottom: 1px solid #696969;
}
.tmp-form.black-form .gform_wrapper textarea {
  border: 1px solid #696969;
}
.tmp-form.black-form .gform_wrapper.gravity-theme .gfield_label {
  color: #f1f1f1;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
}
.tmp-form.black-form .form-col .gform_confirmation_wrapper {
  text-align: center;
}
@media (max-width: 1024px) {
  .tmp-form {
    padding-top: 75px;
    padding-bottom: 100px;
  }
}
@media (max-width: 500px) {
  .tmp-form {
    padding-top: 45px;
    padding-bottom: 50px;
  }
}
.gallery-masonry {
  padding-top: 60px;
  padding-bottom: 70px;
}
.gallery-masonry.pf-custom-class .gallery-masonry-grid .grid-item-inner:hover .overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.4);
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.1) 100%);
  background: radial-gradient(100% 100% at bottom left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 25%, rgba(0, 0, 0, 0.03) 75%, rgba(0, 0, 0, 0.03) 100%);
  border-color: #076927;
}
.gallery-masonry .grid-item.text-box .top-inner {
  padding-top: 25px;
  padding-bottom: 20px;
}
.gallery-masonry .gallery-masonry-grid,
.gallery-masonry-with-filters .gallery-masonry-grid {
  margin-left: -20px;
  margin-right: -20px;
}
.gallery-masonry .gallery-masonry-grid .grid-item,
.gallery-masonry-with-filters .gallery-masonry-grid .grid-item {
  padding: 20px;
  min-height: 380px;
}
.gallery-masonry .gallery-masonry-grid .grid-item .overlay,
.gallery-masonry-with-filters .gallery-masonry-grid .grid-item .overlay {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
  border: 5px solid transparent;
}
.gallery-masonry .gallery-masonry-grid .grid-item-inner:hover .overlay,
.gallery-masonry-with-filters .gallery-masonry-grid .grid-item-inner:hover .overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.4);
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.1) 100%);
  background: radial-gradient(100% 100% at bottom left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 25%, rgba(0, 0, 0, 0.03) 75%, rgba(0, 0, 0, 0.03) 100%);
  border-color: #fff100;
}
.gallery-masonry .gallery-masonry-grid .categories,
.gallery-masonry-with-filters .gallery-masonry-grid .categories {
  left: 0;
  bottom: 0;
  padding: 10px;
}
.gallery-masonry .gallery-masonry-grid .categories .icon,
.gallery-masonry-with-filters .gallery-masonry-grid .categories .icon {
  padding: 7px;
}
.gallery-masonry .gallery-masonry-grid .categories .icon img,
.gallery-masonry-with-filters .gallery-masonry-grid .categories .icon img {
  height: 35px;
  width: auto;
  max-width: 50px;
}
.gallery-masonry .gallery-masonry-grid .categories .icon:hover .icon-white,
.gallery-masonry-with-filters .gallery-masonry-grid .categories .icon:hover .icon-white {
  display: none;
}
.gallery-masonry .gallery-masonry-grid .categories .icon:hover .icon-color,
.gallery-masonry-with-filters .gallery-masonry-grid .categories .icon:hover .icon-color {
  display: inline;
}
@media (max-width: 1200px) {
  .gallery-masonry {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .gallery-masonry .gallery-masonry-grid,
  .gallery-masonry-with-filters .gallery-masonry-grid {
    margin-left: -10px;
    margin-right: -10px;
  }
  .gallery-masonry .gallery-masonry-grid .grid-item,
  .gallery-masonry-with-filters .gallery-masonry-grid .grid-item {
    padding: 10px;
  }
  .gallery-masonry .gallery-masonry-grid .grid-item.four-column,
  .gallery-masonry-with-filters .gallery-masonry-grid .grid-item.four-column {
    width: 50%;
  }
  .gallery-masonry .gallery-masonry-grid .grid-item,
  .gallery-masonry-with-filters .gallery-masonry-grid .grid-item {
    min-height: 275px;
  }
}
@media (max-width: 767px) {
  .gallery-masonry .gallery-masonry-grid .grid-item.text-box,
  .gallery-masonry-with-filters .gallery-masonry-grid .grid-item.text-box {
    width: 100%;
  }
  .gallery-masonry .gallery-masonry-grid .grid-item.text-box .top-inner,
  .gallery-masonry-with-filters .gallery-masonry-grid .grid-item.text-box .top-inner {
    padding: 20px;
  }
}
@media (max-width: 500px) {
  .gallery-masonry {
    padding-top: 10px;
    padding-bottom: 40px;
  }
  .gallery-masonry .gallery-masonry-grid .title,
  .gallery-masonry-with-filters .gallery-masonry-grid .title {
    margin-bottom: 10px;
  }
  .gallery-masonry .gallery-masonry-grid .grid-item,
  .gallery-masonry-with-filters .gallery-masonry-grid .grid-item {
    min-height: 240px;
  }
  .gallery-masonry .gallery-masonry-grid .categories .icon,
  .gallery-masonry-with-filters .gallery-masonry-grid .categories .icon {
    padding: 3px;
  }
  .gallery-masonry .gallery-masonry-grid .categories .icon img,
  .gallery-masonry-with-filters .gallery-masonry-grid .categories .icon img {
    height: 25px;
    max-width: 40px;
  }
}
@media (max-width: 400px) {
  .gallery-masonry .gallery-masonry-grid .grid-item,
  .gallery-masonry-with-filters .gallery-masonry-grid .grid-item {
    min-height: 180px;
  }
}
.mfp-zoom-out-cur .mfp-gallery .mfp-image-holder .mfp-close {
  cursor: pointer;
}
.gallery-masonry-with-filters {
  padding-top: 80px;
  padding-bottom: 80px;
}
.gallery-masonry-with-filters .gallery-masonry-filters {
  padding: 30px 0 25px;
}
.gallery-masonry-with-filters .gallery-masonry-filters .filter-links {
  padding-top: 10px;
}
.gallery-masonry-with-filters .gallery-masonry-filters a {
  font-size: 16px;
  font-size: 1.6rem;
  color: #f1f1f1;
  border: 1px solid #f1f1f1;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  border-radius: 9999px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  padding: 3px 20px;
}
.gallery-masonry-with-filters .gallery-masonry-filters a:hover {
  color: #f1f1f1;
  background-color: #f1f1f1;
}
.gallery-masonry-with-filters .gallery-masonry-filters a.selected {
  color: #f1f1f1;
  background-color: #f1f1f1;
}
@media (max-width: 1300px) {
  .gallery-masonry-with-filters .filter-links {
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  .gallery-masonry-with-filters .gallery-masonry-filters a {
    padding: 3px 10px;
  }
}
@media (max-width: 1100px) {
  .gallery-masonry-with-filters .gallery-masonry-filters a {
    padding: 3px 6px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}
@media (max-width: 1024px) {
  .gallery-masonry-with-filters {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .gallery-masonry-with-filters .gallery-masonry-filters a {
    font-size: 16px;
    font-size: 1.6rem;
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media (max-width: 767px) {
  .gallery-masonry-with-filters {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .gallery-masonry-with-filters .gallery-masonry-filters {
    padding: 15px 0 25px;
  }
}
.google-map-full-width .google-map-full-width-map-canvas {
  padding: 16%;
}
@media (max-width: 1400px) {
  .google-map-full-width .google-map-full-width-map-canvas {
    padding: 20%;
  }
}
@media (max-width: 1024px) {
  .google-map-full-width .google-map-full-width-map-canvas {
    padding: 24%;
  }
}
@media (max-width: 500px) {
  .google-map-full-width .google-map-full-width-map-canvas {
    padding: 50%;
  }
}
.icon-repeater {
  padding-top: 100px;
  padding-bottom: 100px;
}
.icon-repeater .icon-list {
  margin-left: -55px;
  margin-right: -55px;
}
.icon-repeater .icon-inner {
  margin: 50px 0;
  padding-left: 55px;
  padding-right: 55px;
}
.icon-repeater .content {
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: uppercase;
  padding-left: 20px;
  color: #080806;
  font-weight: 300;
  letter-spacing: 3px;
}
.icon-repeater .content p {
  margin-bottom: 0px;
}
@media (max-width: 1200px) {
  .icon-repeater .icon-list {
    margin-left: 0;
    margin-right: 0;
  }
  .icon-repeater .icon-inner {
    margin: 30px 0;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1024px) {
  .icon-repeater .icon-inner {
    margin: 25px 0;
  }
}
@media (max-width: 500px) {
  .icon-repeater .content {
    padding-left: 0px;
  }
}
.job-posting-panel {
  padding-top: 80px;
}
.job-posting-panel .top-section {
  padding-bottom: 50px;
}
.job-posting-panel .postings {
  margin-left: -20px;
  margin-right: -20px;
}
.job-posting-panel .job-posting {
  padding: 20px;
  max-width: 580px;
}
.job-posting-panel .job-location {
  padding-bottom: 70px;
}
.job-posting-panel .job-posting .title {
  padding-bottom: 10px;
}
.job-posting-panel .job-posting .content {
  margin-bottom: 20px;
}
.job-posting-panel .job-posting .content .read-more {
  color: #f1f1f1;
}
.job-posting-panel .job-posting .content .read-more:hover {
  color: #fff100;
}
.job-posting-panel .job-posting.open .content {
  display: none;
}
.job-posting-panel .job-posting.open .content-full {
  display: block;
}
.job-posting-panel .job-posting .btn,
.job-posting-panel .job-posting .gform_wrapper .gform_footer .button {
  margin-bottom: 5px;
}
@media (max-width: 1024px) {
  .job-posting-panel {
    padding-top: 65px;
  }
  .job-posting-panel .job-posting {
    max-width: 768px;
  }
}
@media (max-width: 500px) {
  .job-posting-panel {
    padding-top: 35px;
  }
  .job-posting-panel .job-location {
    padding-bottom: 25px;
  }
}
.mfp-job-posting-form .mfp-content {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 800px) {
  .mfp-job-posting-form .mfp-content button.mfp-close {
    right: 20px;
  }
}
.logo-slider {
  padding-top: 100px;
  padding-bottom: 85px;
}
.logo-slider.current-partners {
  padding-bottom: 200px;
}
.logo-slider.small-content .content {
  width: 100%;
  max-width: 550px;
  margin: auto;
  margin-bottom: 0px;
}
.logo-slider .logo-slider-slider {
  padding-left: 60px;
  padding-right: 60px;
}
.logo-slider .slick-track {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.logo-slider .logo.slick-slide {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  padding: 20px;
}
@media (max-width: 1024px) {
  .logo-slider {
    padding-top: 65px;
    padding-bottom: 60px;
  }
}
@media (max-width: 500px) {
  .logo-slider {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .logo-slider .content {
    padding-bottom: 20px;
  }
}
.post-type-slider {
  padding-top: 100px;
  padding-bottom: 100px;
}
.post-type-slider.testimonials-slider {
  padding-bottom: 200px;
}
.post-type-slider .slide-wrap {
  position: relative;
}
.post-type-slider .slide-inner {
  padding: 25px 40px;
}
.post-type-slider .content-wrap {
  margin-bottom: 75px;
  padding: 0 20px;
}
.post-type-slider .slide-body {
  margin-top: 25px;
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 700;
}
.post-type-slider .slide-link {
  display: inline-block;
  margin-top: 25px;
}
.post-type-slider .slick-slide .slide-inner {
  -webkit-transition: opacity 0.4s ease-out;
  -moz-transition: opacity 0.4s ease-out;
  -o-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
}
.post-type-slider .slick-slide.opaque .slide-inner {
  opacity: 0.5;
}
.post-type-slider .slider-wrap {
  position: relative;
  padding: 0 40px;
}
.post-type-slider .slider-wrap .pts-prev-arrow {
  position: absolute;
  left: 0px;
  top: 50%;
  color: black;
}
.post-type-slider .slider-wrap .pts-next-arrow {
  position: absolute;
  right: 0px;
  top: 50%;
  color: black;
}
.post-type-slider .slider-wrap .pts-prev-arrow:after {
  content: '\f053';
  font-family: 'Font Awesome 5 Pro';
  color: #fff100;
  position: absolute;
  right: 0;
  font-size: 28px;
  font-size: 2.8rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.post-type-slider .slider-wrap .pts-prev-arrow:hover:after {
  color: #f1f1f1;
}
.post-type-slider .slider-wrap .pts-next-arrow:hover:after {
  color: #f1f1f1;
}
.post-type-slider .slider-wrap .pts-next-arrow:after {
  content: '\f054';
  font-family: 'Font Awesome 5 Pro';
  color: #fff100;
  position: absolute;
  right: 0;
  font-size: 28px;
  font-size: 2.8rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.post-type-slider .slider-wrap .position {
  color: #8c8c8c;
  font-size: 18px;
  font-size: 1.8rem;
}
.post-type-slider .slider-wrap .company {
  font-size: 14px;
  font-size: 1.4rem;
}
.post-type-slider .slider-wrap .name {
  margin-top: 50px;
  font-weight: 400;
  padding-bottom: 8px;
}
@media (max-width: 767px) {
  .post-type-slider.testimonials-slider {
    padding-top: 0px;
    padding-bottom: 100px;
  }
}
.post-type-grid {
  padding-top: 80px;
  padding-bottom: 80px;
}
.post-type-grid .pt-outer {
  padding-left: 10px;
  padding-right: 10px;
}
.post-type-grid .pt-inner {
  padding: 20px 25px 40px;
}
.post-type-grid .pt-title {
  font-size: 30px;
  font-size: 3rem;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 30px;
  letter-spacing: 0.24px;
  line-height: 1;
  font-weight: 700;
  color: #080806;
}
.post-type-grid .pt-info {
  margin-bottom: 12px;
}
.post-type-grid .attributes-wrap .title,
.post-type-grid .attributes-wrap .value,
.post-type-grid .pt-body {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.25;
  font-weight: 500;
  color: #f1f1f1;
}
@media (max-width: 1250px) {
  .post-type-grid .pt-outer {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 1024px) {
  .post-type-grid .pt-outer {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 40px;
  }
}
@media (max-width: 900px) {
  .post-type-grid .pt-outer {
    width: 50%;
  }
}
@media (max-width: 500px) {
  .post-type-grid .pt-outer {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.stats-panel {
  padding-top: 40px;
  padding-bottom: 20px;
  margin-bottom: 80px;
}
.stats-panel .stat-card {
  text-align: left;
  padding: 0px;
  color: #f1f1f1;
  border-right: 1px solid #E7E9EC;
}
.stats-panel .stat-card .stats-number {
  font-size: 67px;
  font-size: 6.7rem;
  color: #080806;
}
.stats-panel .stat-card .content {
  font-size: 16px;
  font-size: 1.6rem;
}
.stats-panel .stat-card:nth-of-type(1) .stats-number:after {
  content: '+';
  font-size: 50px;
  font-size: 5rem;
  color: #080806;
  vertical-align: super;
}
.stats-panel .stat-card:nth-of-type(3) .stats-number:after {
  content: '+';
  font-size: 50px;
  font-size: 5rem;
  color: #080806;
  vertical-align: super;
}
.stats-panel .stat-card:nth-of-type(4) {
  border-right: none;
}
.stats-panel .content {
  color: #f1f1f1;
}
@media (max-width: 1280px) {
  .stats-panel .stat-card .stats-number {
    font-size: 50px;
    font-size: 5rem;
  }
  .stats-panel .stat-card .content {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media (max-width: 1024px) {
  .stats-panel .stat-card:nth-of-type(2) {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .stats-panel .stat-card:nth-of-type(1) {
    border-right: none;
  }
  .stats-panel .stat-card:nth-of-type(3) {
    border-right: none;
  }
}
@media (max-width: 500px) {
  .stats-panel .stat-card {
    padding: 10px 20px 10px;
  }
  .stats-panel .stat-card .stats-number {
    line-height: 1.2;
  }
}
.service-pull-panel {
  padding-top: 65px;
  padding-bottom: 70px;
}
.service-pull-panel .pulls {
  padding-bottom: 75px;
}
.service-pull-panel .pulls .service-pull {
  padding: 20px;
}
.service-pull-panel .pulls .service-pull-inner {
  padding-top: 73%;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
  -webkit-transition: box-shadow 0.2s ease-out;
  -moz-transition: box-shadow 0.2s ease-out;
  -o-transition: box-shadow 0.2s ease-out;
  transition: box-shadow 0.2s ease-out;
}
.service-pull-panel .pulls .image-inner {
  padding: 0 20px;
  background-color: #f1f1f1;
  margin-bottom: -40px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
  width: 220px;
  height: 220px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.service-pull-panel .pulls .name {
  margin-top: 12px;
  color: #f1f1f1;
  line-height: 1.2;
  width: 100%;
}
.service-pull-panel .pulls .icon,
.service-pull-panel .pulls .icon-hover {
  max-height: 115px;
  width: auto;
}
.service-pull-panel .pulls .service-pull-inner:hover {
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.16);
}
.service-pull-panel .pulls .service-pull-inner:hover .image-inner {
  background-color: #f1f1f1;
}
.service-pull-panel .pulls .service-pull-inner:hover .name {
  color: #f1f1f1;
}
.service-pull-panel .pulls .service-pull-inner:hover .icon {
  display: none;
}
.service-pull-panel .pulls .service-pull-inner:hover .icon-hover {
  display: block;
}
@media (max-width: 1400px) {
  .service-pull-panel .pulls .image-inner {
    width: 195px;
    height: 195px;
  }
  .service-pull-panel .pulls .icon,
  .service-pull-panel .pulls .icon-hover {
    max-height: 100px;
  }
}
@media (max-width: 1024px) {
  .service-pull-panel .pulls {
    padding-bottom: 50px;
  }
  .service-pull-panel .pulls .service-pull {
    padding: 30px 20px 50px;
  }
  .service-pull-panel .pulls .image-inner {
    width: 220px;
    height: 220px;
  }
  .service-pull-panel .pulls .icon,
  .service-pull-panel .pulls .icon-hover {
    max-height: 115px;
  }
}
@media (max-width: 767px) {
  .service-pull-panel .pulls .image-inner {
    width: 195px;
    height: 195px;
  }
  .service-pull-panel .pulls .icon,
  .service-pull-panel .pulls .icon-hover {
    max-height: 100px;
  }
}
@media (max-width: 500px) {
  .service-pull-panel {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .service-pull-panel .title {
    margin-bottom: 10px;
  }
  .service-pull-panel .pulls .service-pull {
    padding: 30px 10px;
    max-width: 340px;
    margin: auto;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .service-pull-panel .pulls {
    margin-left: -10px;
    margin-right: -10px;
  }
  .service-pull-panel .pulls .image-inner {
    width: 140px;
    height: 165px;
  }
  .service-pull-panel .pulls .icon,
  .service-pull-panel .pulls .icon-hover {
    max-height: 70px;
  }
}
@media (max-width: 400px) {
  .service-pull-panel .pulls .service-pull-inner {
    padding-top: 0;
    height: 300px;
  }
  .service-pull-panel .pulls .image-inner {
    width: calc(100% - 20px);
    height: auto;
    padding: 20px;
  }
}
@media (max-width: 350px) {
  .service-pull-panel .pulls .image-inner {
    width: calc(100% - 10px);
    padding: 10px;
  }
}
.text-panel {
  padding-top: 70px;
  padding-bottom: 65px;
}
@media (max-width: 1024px) {
  .text-panel {
    padding-top: 60px;
    padding-bottom: 55px;
  }
}
@media (max-width: 500px) {
  .text-panel {
    padding-top: 50px;
    padding-bottom: 45px;
  }
}
.tabs .tab-bar {
  list-style: none;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  padding-left: 0;
  margin-bottom: 65px;
  margin-top: 0;
}
.tabs .tab-bar li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0;
  background-color: #cccccc;
  width: 100%;
  border-right: 1px solid #f1f1f1;
}
.tabs .tab-bar li:last-of-type {
  border-right: none;
}
.tabs .tab-bar li:hover {
  background-color: #f1f1f1;
}
.tabs .tab-bar li:hover a {
  color: #cccccc;
}
.tabs .tab-bar li > a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  padding: 40px 20px;
  color: #f1f1f1;
  font-weight: 800;
  font-size: 18px;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  width: 100%;
  position: relative;
}
.tabs .tab-bar li > a.active {
  background-color: #f1f1f1;
  color: #cccccc;
}
.tabs .tab-bar li > a.active:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 12.5px 0 12.5px;
  border-color: #f1f1f1 transparent transparent transparent;
}
.tabs .tab-bodies {
  padding-bottom: 80px;
}
.tabs .tab-bodies .check-list {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}
.tabs .tab-bodies h2 {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  border-bottom: 2px solid #cccccc;
  margin-bottom: 30px;
  padding-bottom: 15px;
}
.tabs .tab-bodies h2 img {
  margin-right: 25px;
}
.tabs .tab-bodies .tab-body {
  background-color: #f1f1f1;
}
@media (max-width: 1024px) {
  .tabs .tab-bodies {
    padding-top: 80px;
  }
  .tabs .tab-bodies h2 {
    display: none;
  }
}
@media (max-width: 1024px) {
  .tabs {
    background-color: #fff100;
    padding-left: 20px;
    padding-right: 20px;
  }
  .tabs .tab-bar {
    display: none;
  }
  .tabs .mobile-tab-title {
    font-size: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: #292b28;
    background-color: #f1f1f1;
    padding: 20px 20px 15px;
    margin-top: 15px;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    position: relative;
  }
  .tabs .mobile-tab-title:before {
    content: '\f055';
    color: #fff100;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 700;
    margin-right: 8px;
    font-size: 25px;
    font-size: 2.5rem;
  }
  .tabs .mobile-tab-title:hover,
  .tabs .mobile-tab-title.active {
    color: #fff100;
  }
  .tabs .mobile-tab-title:hover:before,
  .tabs .mobile-tab-title.active:before {
    color: #fff100;
  }
  .tabs .mobile-tab-title.active:after {
    display: none;
  }
  .tabs .mobile-tab-title.active:before {
    content: '\f056';
  }
}
.text-panel {
  padding-top: 100px;
  padding-bottom: 100px;
}
.text-panel.hammer-panel {
  padding-top: 80px;
}
.text-panel.stand-alone-title .title {
  letter-spacing: 3px;
}
.text-panel.stand-alone-title .top-inner {
  border-top: 2px solid #E3D700;
  padding-top: 70px;
}
.text-panel.medium-size-content .content {
  width: 100%;
  margin: 0 auto;
  max-width: 720px;
}
.text-panel.image-panel {
  margin-top: -1px;
  margin-bottom: -1px;
}
.text-panel.image-panel .title {
  margin-bottom: 140px;
}
.text-panel.image-panel img {
  width: 100% !important;
}
.text-panel.box-shadow-top {
  box-shadow: 0px -76px 80px 46px #080806, 0px 45px 26px 0px #080806;
}
.text-panel.three-d-tour-video p iframe {
  max-width: 100%;
  width: 853px;
  height: 480px;
  margin: 0;
  line-height: 1;
  border: none;
}
.text-panel.linear-gradient {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.97), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
}
.text-panel .top-img-element {
  left: 50%;
  transform: translateX(-50%);
  bottom: -200px;
}
.text-panel .title {
  margin-bottom: 40px;
}
.text-panel .pretitle {
  color: #080806;
}
@media (max-width: 1024px) {
  .text-panel {
    padding-top: 60px;
    padding-bottom: 55px;
  }
  .text-panel.contact-img .top-img-element {
    bottom: -120px;
  }
}
@media (max-width: 767px) {
  .text-panel.white-skewed .title {
    margin-bottom: 0px;
  }
  .text-panel.contact-img .top-img-element {
    bottom: -120px;
  }
  .text-panel.contact-img .top-img-element img {
    width: 450px;
    height: 585px;
  }
}
@media (max-width: 500px) {
  .text-panel {
    padding-top: 50px;
    padding-bottom: 45px;
  }
}
.timeline-panel {
  padding-top: 120px;
  padding-bottom: 260px;
  background-color: #f1f1f1;
  -webkit-box-shadow: 0px -23px 25px 0px rgba(0, 0, 0, 0.17) inset, 0px 77px 39px -7px rgba(0, 0, 0, 0.15) inset, 0px -79px 40px 0px rgba(0, 0, 0, 0.1) inset, 0px 2px 1px 0px rgba(0, 0, 0, 0.06), 0px 4px 2px 0px rgba(0, 0, 0, 0.09), 0px 8px 4px 0px rgba(0, 0, 0, 0.09), 0px 16px 8px 0px rgba(0, 0, 0, 0.09);
  box-shadow: 0px -23px 25px 0px rgba(0, 0, 0, 0.17) inset, 0px 77px 39px -7px rgba(0, 0, 0, 0.15) inset, 0px -79px 40px 0px rgba(0, 0, 0, 0.1) inset, 0px 2px 1px 0px rgba(0, 0, 0, 0.06), 0px 4px 2px 0px rgba(0, 0, 0, 0.09), 0px 8px 4px 0px rgba(0, 0, 0, 0.09), 0px 16px 8px 0px rgba(0, 0, 0, 0.09);
}
.timeline-panel .title {
  color: #080806;
  text-transform: capitalize;
  text-align: center;
}
.timeline-panel .left-col .year {
  color: #080806;
}
.timeline-panel .left-col .content {
  color: #080806;
}
.timeline-panel .top-section {
  padding-bottom: 135px;
}
.timeline-panel .left-col {
  padding: 4% 8%;
}
.timeline-panel .year {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
}
.timeline-panel .header {
  font-size: 38px;
  font-size: 3.8rem;
  font-weight: 400;
  border-bottom: 2px solid #dfe2e6;
  padding-bottom: 10px;
  text-align: center;
}
.timeline-panel .timeline-hr {
  border-bottom: 1px solid #707070;
}
.timeline-panel .slick-list {
  padding-bottom: 80px;
}
.timeline-panel .slick-slider {
  padding-left: 50px;
  padding-right: 50px;
}
.timeline-panel .slick-arrow {
  background: #cccccc;
}
.timeline-panel .slick-arrow:hover {
  background: #080806;
}
.timeline-panel .slick-dots {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  position: relative;
}
.timeline-panel .slick-dots:before {
  content: '';
  background-color: #707070;
  width: 100%;
  height: 1px;
  top: calc(50% + 1px);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
}
.timeline-panel .slick-dots li {
  list-style-type: none;
  text-align: center;
  width: 120px;
  align-items: center;
  display: flex;
  justify-content: center;
}
.timeline-panel .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 25px;
  height: 25px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #fff100;
  position: relative;
  border: 4px solid #080806;
  border-radius: 9999px;
}
.timeline-panel .slick-dots li button:hover,
.timeline-panel .slick-dots li button:focus {
  border-color: #080806;
}
.timeline-panel .slick-dots li button::before {
  display: none;
}
.timeline-panel .slick-dots li.slick-active {
  padding-bottom: 0;
}
.timeline-panel .slick-dots li.slick-active button {
  -webkit-box-shadow: 0 0 13px 13px rgba(255, 241, 0, 0.1);
  -moz-box-shadow: 0 0 13px 13px rgba(255, 241, 0, 0.1);
  box-shadow: 0 0 13px 13px rgba(255, 241, 0, 0.1);
  width: 40px;
  height: 40px;
  border: 7px solid #080806;
}
.timeline-panel .inner-slider-inner {
  padding: 10px 20px;
}
@media (max-width: 1024px) {
  .timeline-panel {
    padding-top: 45px;
    padding-bottom: 70px;
  }
  .timeline-panel .left-col {
    padding-left: 0;
    padding-right: 2%;
  }
  .timeline-panel .right-col {
    padding-left: 2%;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .timeline-panel {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .timeline-panel .slick-dots {
    display: none !important;
  }
  .timeline-panel .left-col {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
  }
  .timeline-panel .right-col {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .timeline-panel .right-col img {
    max-height: 300px;
  }
  .timeline-panel .year {
    font-size: 40px;
    font-size: 4rem;
    margin-bottom: 0;
  }
  .timeline-panel .header {
    font-size: 26px;
    font-size: 2.6rem;
  }
  .timeline-panel .slick-list {
    padding-bottom: 0;
  }
  .timeline-panel .inner-slider-inner {
    padding: 10px;
  }
  .timeline-panel .top-section {
    padding-bottom: 0px;
  }
}
.top-banner-slider .slick-slide {
  height: 830px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
}
.top-banner-slider .text-box {
  max-width: 700px;
  padding: 10% 0px 0px 0px;
  width: 100%;
}
.top-banner-slider .inner-slide {
  padding-left: 30px;
  padding-right: 30px;
  margin-top: auto;
  margin-bottom: auto;
}
.top-banner-slider .sub-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #f1f1f1;
  position: relative;
  background-color: transparent;
  line-height: 1.8;
  letter-spacing: 0.36px;
  display: inline-block;
  font-size: 17px;
  font-size: 1.7rem;
}
.top-banner-slider .title {
  font-family: 'Open Sans', sans-serif;
  color: #f1f1f1;
  font-weight: 700;
  text-transform: capitalize;
}
.top-banner-slider .content {
  max-width: 700px;
  line-height: 1.33;
  font-size: 18px;
  font-size: 1.8rem;
}
.top-banner-slider .slick-dots li.slick-active button {
  background: #f1f1f1;
  border-color: #f1f1f1;
}
.top-banner-slider .slick-dots button {
  margin-bottom: 20px;
  width: 15px;
  height: 15px;
  border: 2px solid #f1f1f1;
  background-color: transparent;
}
.top-banner-slider .slick-dots button:focus {
  outline: none;
}
@media (max-width: 1024px) {
  .top-banner-slider {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .top-banner-slider .text-box {
    max-width: 415px;
    padding: 20px 25px;
  }
  .top-banner-slider .title {
    font-size: 30px;
    font-size: 3rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 500px) {
  .top-banner-slider .text-box {
    max-width: 75%;
  }
  .top-banner-slider .slick-slide {
    height: 485px;
  }
}
.two-column-double-image-text {
  padding-top: 80px;
  padding-bottom: 70px;
}
.two-column-double-image-text.pf-custom-class .image-col {
  order: 3;
  text-align: right;
}
.two-column-double-image-text.pf-custom-class .image-col .image-inner {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 40px;
  padding-left: 40px;
}
.two-column-double-image-text.pf-custom-class .image-col .image-in-front {
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 0;
  padding-left: 0;
}
.two-column-double-image-text.pf-custom-class .middle-col {
  order: 2;
}
.two-column-double-image-text.pf-custom-class .text-col {
  order: 1;
}
.two-column-double-image-text.pf-custom-class .pretitle {
  color: #076927;
}
.two-column-double-image-text.pf-custom-class .one-line span:after {
  background-color: #076927;
}
.two-column-double-image-text.pf-custom-class .btn,
.two-column-double-image-text.pf-custom-class .gform_wrapper .gform_footer .button {
  background-color: #076927;
  border: 2px solid #076927;
  color: #ffffff;
}
.two-column-double-image-text.pf-custom-class .btn:hover,
.two-column-double-image-text.pf-custom-class .gform_wrapper .gform_footer .button:hover {
  color: #076927;
  border: 2px solid #076927;
  background-color: #ffffff;
}
.two-column-double-image-text .image-col .image-inner {
  padding-top: 40px;
  padding-right: 40px;
  width: 100%;
}
.two-column-double-image-text .image-col .image-in-front {
  top: 0;
  right: 0;
  background-color: #FFF;
  padding-left: 20px;
  padding-bottom: 20px;
  width: 68%;
}
.two-column-double-image-text .middle-col {
  padding: 40px;
}
.two-column-double-image-text .text-col .content {
  padding-bottom: 15px;
}
.two-column-double-image-text .text-col .content p:last-of-type {
  margin-bottom: 0;
}
.two-column-double-image-text .text-col .btn,
.two-column-double-image-text .text-col .gform_wrapper .gform_footer .button {
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .two-column-double-image-text {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .two-column-double-image-text {
    padding-top: 40px;
  }
  .two-column-double-image-text .middle-col {
    padding: 25px;
  }
  .two-column-double-image-text .image-col {
    padding-left: 20px;
    padding-right: 20px;
  }
  .two-column-double-image-text .image-col .image-inner {
    max-width: 500px;
  }
  .two-column-double-image-text .image-col,
  .two-column-double-image-text.image-right .image-col {
    order: 3;
    text-align: center;
  }
  .two-column-double-image-text .middle-col,
  .two-column-double-image-text.image-right .middle-col {
    order: 2;
    padding: 25px;
  }
  .two-column-double-image-text .text-col,
  .two-column-double-image-text.image-right .text-col {
    order: 1;
  }
  .two-column-double-image-text .text-col .content {
    padding-bottom: 0;
  }
}
@media (max-width: 500px) {
  .two-column-double-image-text {
    padding-bottom: 50px;
  }
  .two-column-double-image-text .title {
    margin-bottom: 10px;
  }
}
.two-column-floating-text {
  padding-top: 105px;
  padding-bottom: 50px;
}
.two-column-floating-text.pf-custom-class .text-col {
  background-color: #00a8f5;
}
.two-column-floating-text.pf-custom-class .text-content {
  padding-top: 80px;
  padding-left: 15px;
  padding-bottom: 40px;
  color: #ffffff;
}
.two-column-floating-text.pf-custom-class .text-content h3 {
  font-size: 60px;
  font-size: 6rem;
  text-transform: uppercase;
}
.two-column-floating-text .inner {
  padding-top: 120px;
  padding-bottom: 120px;
  margin-bottom: 80px;
}
.two-column-floating-text .image-col {
  max-width: 890px;
}
.two-column-floating-text .text-col {
  background-color: #f1f1f1;
  padding: 40px 80px 50px 50px;
  -webkit-box-shadow: 0 5px 15px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 15px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px 5px rgba(0, 0, 0, 0.1);
  max-width: 890px;
}
.two-column-floating-text .number-or-letter {
  font-size: 200px;
  font-size: 20rem;
  line-height: 1;
}
.two-column-floating-text .text-content {
  padding-top: 80px;
  padding-left: 15px;
}
.two-column-floating-text .inner.image-left {
  padding-left: 150px;
}
.two-column-floating-text .inner.image-left .image-col {
  left: 0;
  top: 0;
}
.two-column-floating-text .inner.image-left .text-col {
  margin-left: auto;
}
.two-column-floating-text .inner.image-right {
  padding-right: 150px;
}
.two-column-floating-text .inner.image-right .image-col {
  right: 0;
  top: 0;
}
@media (max-width: 1200px) {
  .two-column-floating-text .inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 1024px) {
  .two-column-floating-text {
    padding-top: 65px;
  }
  .two-column-floating-text .inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .two-column-floating-text .text-col {
    padding: 30px 60px 40px 40px;
  }
  .two-column-floating-text .number-or-letter {
    font-size: 100px;
    font-size: 10rem;
  }
  .two-column-floating-text .text-content {
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .two-column-floating-text {
    padding-top: 50px;
    padding-bottom: 0;
  }
  .two-column-floating-text > div {
    padding-left: 0;
    padding-right: 0;
  }
  .two-column-floating-text .inner {
    padding-top: 360px;
    padding-bottom: 50px;
    margin-bottom: 0;
  }
  .two-column-floating-text .image-col {
    max-width: 100%;
    width: 100%;
    height: 400px;
  }
  .two-column-floating-text .text-col {
    width: calc(100% - 40px);
    max-width: 100%;
    margin: auto;
    padding: 30px 40px 40px;
  }
  .two-column-floating-text .text-content {
    padding-top: 20px;
    padding-left: 0;
  }
  .two-column-floating-text .title {
    margin-bottom: 5px;
    padding-left: 20px;
  }
  .two-column-floating-text .inner.image-left {
    padding-left: 0;
  }
  .two-column-floating-text .inner.image-left .image-col {
    left: 0;
    top: 0;
  }
  .two-column-floating-text .inner.image-left .text-col {
    margin-left: auto;
  }
  .two-column-floating-text .inner.image-right {
    padding-right: 0;
  }
  .two-column-floating-text .inner.image-right .image-col {
    right: 0;
    top: 0;
  }
}
.two-column-image-text {
  padding-top: 80px;
  padding-bottom: 70px;
}
.two-column-image-text.yellow-bg-img-txt {
  padding-top: 120px;
  padding-bottom: 180px;
}
.two-column-image-text .middle-col {
  padding: 40px;
}
.two-column-image-text .text-col .content {
  padding-bottom: 15px;
}
.two-column-image-text .text-col.full-padding {
  padding: 140px 7% 100px;
}
.two-column-image-text .image-col .image-inner {
  width: 100%;
}
.two-column-image-text .image-col.bg-img-panel {
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 1;
}
.two-column-image-text.smaller-content-text .text-col .inner {
  padding: 50px;
}
.two-column-image-text.bg-img .text-col.full-padding {
  padding: 0;
}
.two-column-image-text.bg-img .text-col .inner {
  padding: 150px 7% 110px;
  width: 50%;
}
.two-column-image-text.bg-img.image-left .text-col {
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}
.two-column-image-text.image-right .image-col {
  order: 3;
  text-align: right;
}
.two-column-image-text.image-right .middle-col {
  order: 2;
}
.two-column-image-text.image-right .text-col {
  order: 1;
}
.two-column-image-text.list-panel .content {
  text-align: left;
}
.two-column-image-text.list-panel .content ul {
  text-align: left;
}
.two-column-image-text.lightbulb-panel img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .two-column-image-text .text-col.full-padding {
    padding: 90px 7% 30px;
  }
}
@media (max-width: 1024px) {
  .two-column-image-text {
    padding-top: 60px;
    padding-bottom: 50px;
  }
  .two-column-image-text.bg-img .text-col .inner {
    padding: 60px 7% 50px;
    width: 100%;
  }
  .two-column-image-text.list-panel .image-inner {
    text-align: center;
  }
  .two-column-image-text.list-panel .image-inner img {
    width: 300px;
  }
  .two-column-image-text .text-col .inner {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .two-column-image-text {
    padding-top: 30px;
  }
  .two-column-image-text .text-col {
    order: 3;
  }
  .two-column-image-text .text-col.full-padding {
    padding: 30px 20px 0;
  }
  .two-column-image-text .middle-col {
    padding: 10px;
    order: 2;
  }
  .two-column-image-text .image-col {
    padding-left: 20px;
    padding-right: 20px;
    order: 1;
  }
  .two-column-image-text .image-col .image-inner {
    max-width: 500px;
  }
  .two-column-image-text.image-right .image-col {
    order: 3;
    text-align: center;
  }
  .two-column-image-text.image-right .middle-col {
    order: 2;
    padding: 10px;
  }
  .two-column-image-text.image-right .text-col {
    order: 1;
  }
  .two-column-image-text .text-col .content {
    padding-bottom: 0;
  }
}
@media (max-width: 500px) {
  .two-column-image-text {
    padding-bottom: 50px;
  }
  .two-column-image-text .title {
    margin-bottom: 10px;
  }
}
.two-column-service-list {
  padding-top: 155px;
  padding-bottom: 125px;
}
.two-column-service-list .top-inner {
  padding-bottom: 65px;
}
.two-column-service-list .service-list {
  padding-bottom: 40px;
}
.two-column-service-list .service-list:nth-of-type(even) {
  padding-left: 45px;
}
.two-column-service-list .service-list:nth-of-type(odd) {
  padding-right: 45px;
}
.two-column-service-list .service-list .icon-col {
  min-width: 130px;
  max-width: 130px;
  width: 100%;
  padding-right: 30px;
}
.two-column-service-list .service-list .icon-col img {
  min-width: 60px;
}
@media (max-width: 1024px) {
  .two-column-service-list .top-inner {
    padding-bottom: 30px;
  }
  .two-column-service-list .service-list .title {
    margin-bottom: 10px;
  }
  .two-column-service-list .service-list:nth-of-type(even) {
    padding-left: 0;
  }
  .two-column-service-list .service-list:nth-of-type(odd) {
    padding-right: 0;
  }
}
@media (max-width: 500px) {
  .two-column-service-list {
    padding-top: 40px;
    padding-bottom: 5px;
  }
  .two-column-service-list .top-inner {
    padding-bottom: 20px;
  }
  .two-column-service-list .service-list {
    padding-bottom: 80px;
  }
  .two-column-service-list .service-list .inner {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .two-column-service-list .service-list .icon-col {
    min-width: 90px;
    max-width: 90px;
    width: 100%;
    padding-right: 15px;
    margin: 0 auto;
  }
}
.two-column-text-text {
  padding-top: 105px;
  padding-bottom: 50px;
}
.two-column-text-text.text-text-list-panel {
  padding-top: 125px;
}
.two-column-text-text.text-text-list-panel .title {
  margin-bottom: 100px;
}
.two-column-text-text.contact-info h2 {
  text-transform: uppercase;
  letter-spacing: 5px;
  position: relative;
  margin-bottom: 45px;
}
.two-column-text-text.contact-info h2:after {
  content: "";
  width: calc(80%);
  height: 1px;
  background-color: #707070;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.two-column-text-text.box-shadow-top {
  box-shadow: 0px -76px 80px 46px #080806, 0px 45px 26px 0px #080806;
}
.two-column-text-text.download-resources {
  padding-bottom: 140px;
}
.two-column-text-text.download-resources .top-section {
  padding-bottom: 80px;
}
.two-column-text-text.download-resources .inner {
  border-bottom: 1px solid #707070;
}
.two-column-text-text.download-resources .left-col .content {
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 700;
}
.two-column-text-text.download-resources .right-col .flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: end;
  -ms-justify-content: end;
  justify-content: end;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.two-column-text-text .top-section {
  padding-bottom: 25px;
}
.two-column-text-text .middle-col {
  padding: 40px;
}
.two-column-text-text .content {
  padding-right: 20px;
}
@media (max-width: 1024px) {
  .two-column-text-text {
    padding-top: 65px;
  }
  .two-column-text-text .middle-col {
    padding: 10px;
  }
}
@media (max-width: 500px) {
  .two-column-text-text {
    padding-top: 35px;
    padding-bottom: 20px;
  }
  .two-column-text-text.career-overview {
    padding-top: 50px;
  }
}
.two-column-with-form {
  padding-top: 105px;
  padding-bottom: 50px;
}
.two-column-with-form .middle-col {
  padding: 40px;
}
@media (max-width: 1024px) {
  .two-column-with-form {
    padding-top: 75px;
  }
  .two-column-with-form .middle-col {
    padding: 20px;
  }
}
@media (max-width: 500px) {
  .two-column-with-form {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}
.two-column-cta {
  padding-top: 100px;
  padding-bottom: 50px;
}
.two-column-cta .inner {
  margin-left: -20px;
  margin-right: -20px;
}
.two-column-cta .panel-wrap {
  padding: 0 20px;
}
.two-column-cta .panel {
  padding: 80px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.two-column-cta .panel .title {
  color: #f1f1f1;
}
.two-column-cta .panel .btn.yellow-link,
.two-column-cta .panel .gform_wrapper .gform_footer .button.yellow-link {
  padding-left: 37px;
}
.two-column-cta .panel:hover {
  background: transparent;
  -webkit-box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.16);
  z-index: 1;
}
.two-column-cta .panel:hover .overlay {
  opacity: 1 !important;
  background-color: transparent !important;
}
.two-column-cta .content {
  padding-bottom: 30px;
}
@media (max-width: 1024px) {
  .two-column-cta .panel-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .two-column-cta {
    padding-top: 50px;
  }
}
@media (max-width: 500px) {
  .two-column-cta .panel {
    padding: 40px 20px 50px;
  }
}
.two-column-video-text {
  padding-top: 90px;
  padding-bottom: 80px;
}
.two-column-video-text.smaller-container .inner-text-col {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
.two-column-video-text .inner-video-content .left-col {
  color: #f1f1f1;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
}
.two-column-video-text .inner-video-content .right-col {
  color: #f1f1f1;
}
.two-column-video-text .title {
  margin-bottom: 60px;
}
.two-column-video-text .middle-col {
  padding: 40px;
}
.two-column-video-text .text-col .content {
  padding-bottom: 15px;
}
.two-column-video-text .text-col.full-padding {
  padding: 140px 7% 100px;
}
.two-column-video-text .video-col .image-inner {
  width: 100%;
}
.two-column-video-text .video-col.bg-img-panel {
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 1;
}
.two-column-video-text .video-wrap {
  line-height: 0;
}
.two-column-video-text .video-wrap .overlay {
  background-color: #080806;
  opacity: 0.45;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.two-column-video-text .video-wrap:hover .overlay {
  opacity: 0.65;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.two-column-video-text .video-wrap .play-icon {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.two-column-video-text .play-icon:after {
  content: '';
  background-image: url(../images/play-icon.png);
  background-repeat: no-repeat;
  width: 116px;
  height: 116px;
  -webkit-transition: transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.two-column-video-text .video-wrap:hover .play-icon:after {
  transform: scale(1.1);
  -webkit-transition: transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.two-column-video-text.image-right .video-col {
  order: 3;
  text-align: right;
}
.two-column-video-text.image-right .middle-col {
  order: 2;
}
.two-column-video-text.image-right .text-col {
  order: 1;
}
@media (max-width: 1200px) {
  .two-column-video-text .text-col.full-padding {
    padding: 90px 7% 30px;
  }
}
@media (max-width: 1024px) {
  .two-column-video-text {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .two-column-video-text {
    padding-top: 30px;
  }
  .two-column-video-text .text-col {
    order: 3;
  }
  .two-column-video-text .text-col.full-padding {
    padding: 30px 20px 0;
  }
  .two-column-video-text .middle-col {
    padding: 10px;
    order: 2;
  }
  .two-column-video-text .video-col {
    order: 1;
  }
  .two-column-video-text .video-col .image-inner {
    max-width: 500px;
  }
  .two-column-video-text.image-right .video-col {
    order: 3;
    text-align: center;
  }
  .two-column-video-text.image-right .middle-col {
    order: 2;
    padding: 10px;
  }
  .two-column-video-text.image-right .text-col {
    order: 1;
  }
  .two-column-video-text .text-col .content {
    padding-bottom: 0;
  }
}
@media (max-width: 500px) {
  .two-column-video-text {
    padding-bottom: 50px;
  }
  .two-column-video-text .title {
    margin-bottom: 10px;
  }
}
/************************************************************
 *                      Top Padding                      *
************************************************************/
body .top-padding-0 {
  padding-top: 0px !important;
}
body .top-padding-5 {
  padding-top: 5px !important;
}
body .top-padding-10 {
  padding-top: 10px !important;
}
body .top-padding-15 {
  padding-top: 15px !important;
}
body .top-padding-20 {
  padding-top: 20px !important;
}
body .top-padding-25 {
  padding-top: 25px !important;
}
body .top-padding-30 {
  padding-top: 30px !important;
}
body .top-padding-35 {
  padding-top: 35px !important;
}
body .top-padding-40 {
  padding-top: 40px !important;
}
body .top-padding-45 {
  padding-top: 45px !important;
}
body .top-padding-50 {
  padding-top: 50px !important;
}
body .top-padding-55 {
  padding-top: 55px !important;
}
body .top-padding-60 {
  padding-top: 60px !important;
}
body .top-padding-65 {
  padding-top: 65px !important;
}
body .top-padding-70 {
  padding-top: 70px !important;
}
body .top-padding-75 {
  padding-top: 75px !important;
}
body .top-padding-80 {
  padding-top: 80px !important;
}
body .top-padding-85 {
  padding-top: 85px !important;
}
body .top-padding-90 {
  padding-top: 90px !important;
}
body .top-padding-95 {
  padding-top: 95px !important;
}
body .top-padding-100 {
  padding-top: 100px !important;
}
body .top-padding-120 {
  padding-top: 120px !important;
}
body .top-padding-140 {
  padding-top: 140px !important;
}
body .top-padding-160 {
  padding-top: 160px !important;
}
body .top-padding-180 {
  padding-top: 180px !important;
}
body .top-padding-200 {
  padding-top: 200px !important;
}
@media (max-width: 1200px) {
  body .lg-top-padding-0 {
    padding-top: 0px !important;
  }
  body .lg-top-padding-5 {
    padding-top: 5px !important;
  }
  body .lg-top-padding-10 {
    padding-top: 10px !important;
  }
  body .lg-top-padding-15 {
    padding-top: 15px !important;
  }
  body .lg-top-padding-20 {
    padding-top: 20px !important;
  }
  body .lg-top-padding-25 {
    padding-top: 25px !important;
  }
  body .lg-top-padding-30 {
    padding-top: 30px !important;
  }
  body .lg-top-padding-35 {
    padding-top: 35px !important;
  }
  body .lg-top-padding-40 {
    padding-top: 40px !important;
  }
  body .lg-top-padding-45 {
    padding-top: 45px !important;
  }
  body .lg-top-padding-50 {
    padding-top: 50px !important;
  }
  body .lg-top-padding-55 {
    padding-top: 55px !important;
  }
  body .lg-top-padding-60 {
    padding-top: 60px !important;
  }
  body .lg-top-padding-65 {
    padding-top: 65px !important;
  }
  body .lg-top-padding-70 {
    padding-top: 70px !important;
  }
  body .lg-top-padding-75 {
    padding-top: 75px !important;
  }
  body .lg-top-padding-80 {
    padding-top: 80px !important;
  }
  body .lg-top-padding-85 {
    padding-top: 85px !important;
  }
  body .lg-top-padding-90 {
    padding-top: 90px !important;
  }
  body .lg-top-padding-95 {
    padding-top: 95px !important;
  }
  body .lg-top-padding-100 {
    padding-top: 100px !important;
  }
  body .lg-top-padding-120 {
    padding-top: 120px !important;
  }
  body .lg-top-padding-140 {
    padding-top: 140px !important;
  }
  body .lg-top-padding-160 {
    padding-top: 160px !important;
  }
  body .lg-top-padding-180 {
    padding-top: 180px !important;
  }
  body .lg-top-padding-200 {
    padding-top: 200px !important;
  }
}
@media (max-width: 1024px) {
  body .tbl-top-padding-0 {
    padding-top: 0px !important;
  }
  body .tbl-top-padding-5 {
    padding-top: 5px !important;
  }
  body .tbl-top-padding-10 {
    padding-top: 10px !important;
  }
  body .tbl-top-padding-15 {
    padding-top: 15px !important;
  }
  body .tbl-top-padding-20 {
    padding-top: 20px !important;
  }
  body .tbl-top-padding-25 {
    padding-top: 25px !important;
  }
  body .tbl-top-padding-30 {
    padding-top: 30px !important;
  }
  body .tbl-top-padding-35 {
    padding-top: 35px !important;
  }
  body .tbl-top-padding-40 {
    padding-top: 40px !important;
  }
  body .tbl-top-padding-45 {
    padding-top: 45px !important;
  }
  body .tbl-top-padding-50 {
    padding-top: 50px !important;
  }
  body .tbl-top-padding-55 {
    padding-top: 55px !important;
  }
  body .tbl-top-padding-60 {
    padding-top: 60px !important;
  }
  body .tbl-top-padding-65 {
    padding-top: 65px !important;
  }
  body .tbl-top-padding-70 {
    padding-top: 70px !important;
  }
  body .tbl-top-padding-75 {
    padding-top: 75px !important;
  }
  body .tbl-top-padding-80 {
    padding-top: 80px !important;
  }
  body .tbl-top-padding-85 {
    padding-top: 85px !important;
  }
  body .tbl-top-padding-90 {
    padding-top: 90px !important;
  }
  body .tbl-top-padding-95 {
    padding-top: 95px !important;
  }
  body .tbl-top-padding-100 {
    padding-top: 100px !important;
  }
  body .tbl-top-padding-120 {
    padding-top: 120px !important;
  }
  body .tbl-top-padding-140 {
    padding-top: 140px !important;
  }
  body .tbl-top-padding-160 {
    padding-top: 160px !important;
  }
  body .tbl-top-padding-180 {
    padding-top: 180px !important;
  }
  body .tbl-top-padding-200 {
    padding-top: 200px !important;
  }
}
@media (max-width: 767px) {
  body .sm-top-padding-0 {
    padding-top: 0px !important;
  }
  body .sm-top-padding-5 {
    padding-top: 5px !important;
  }
  body .sm-top-padding-10 {
    padding-top: 10px !important;
  }
  body .sm-top-padding-15 {
    padding-top: 15px !important;
  }
  body .sm-top-padding-20 {
    padding-top: 20px !important;
  }
  body .sm-top-padding-25 {
    padding-top: 25px !important;
  }
  body .sm-top-padding-30 {
    padding-top: 30px !important;
  }
  body .sm-top-padding-35 {
    padding-top: 35px !important;
  }
  body .sm-top-padding-40 {
    padding-top: 40px !important;
  }
  body .sm-top-padding-45 {
    padding-top: 45px !important;
  }
  body .sm-top-padding-50 {
    padding-top: 50px !important;
  }
  body .sm-top-padding-55 {
    padding-top: 55px !important;
  }
  body .sm-top-padding-60 {
    padding-top: 60px !important;
  }
  body .sm-top-padding-65 {
    padding-top: 65px !important;
  }
  body .sm-top-padding-70 {
    padding-top: 70px !important;
  }
  body .sm-top-padding-75 {
    padding-top: 75px !important;
  }
  body .sm-top-padding-80 {
    padding-top: 80px !important;
  }
  body .sm-top-padding-85 {
    padding-top: 85px !important;
  }
  body .sm-top-padding-90 {
    padding-top: 90px !important;
  }
  body .sm-top-padding-95 {
    padding-top: 95px !important;
  }
  body .sm-top-padding-100 {
    padding-top: 100px !important;
  }
  body .sm-top-padding-120 {
    padding-top: 120px !important;
  }
  body .sm-top-padding-140 {
    padding-top: 140px !important;
  }
  body .sm-top-padding-160 {
    padding-top: 160px !important;
  }
  body .sm-top-padding-180 {
    padding-top: 180px !important;
  }
  body .sm-top-padding-200 {
    padding-top: 200px !important;
  }
}
@media (max-width: 500px) {
  body .mbl-top-padding-0 {
    padding-top: 0px !important;
  }
  body .mbl-top-padding-5 {
    padding-top: 5px !important;
  }
  body .mbl-top-padding-10 {
    padding-top: 10px !important;
  }
  body .mbl-top-padding-15 {
    padding-top: 15px !important;
  }
  body .mbl-top-padding-20 {
    padding-top: 20px !important;
  }
  body .mbl-top-padding-25 {
    padding-top: 25px !important;
  }
  body .mbl-top-padding-30 {
    padding-top: 30px !important;
  }
  body .mbl-top-padding-35 {
    padding-top: 35px !important;
  }
  body .mbl-top-padding-40 {
    padding-top: 40px !important;
  }
  body .mbl-top-padding-45 {
    padding-top: 45px !important;
  }
  body .mbl-top-padding-50 {
    padding-top: 50px !important;
  }
  body .mbl-top-padding-55 {
    padding-top: 55px !important;
  }
  body .mbl-top-padding-60 {
    padding-top: 60px !important;
  }
  body .mbl-top-padding-65 {
    padding-top: 65px !important;
  }
  body .mbl-top-padding-70 {
    padding-top: 70px !important;
  }
  body .mbl-top-padding-75 {
    padding-top: 75px !important;
  }
  body .mbl-top-padding-80 {
    padding-top: 80px !important;
  }
  body .mbl-top-padding-85 {
    padding-top: 85px !important;
  }
  body .mbl-top-padding-90 {
    padding-top: 90px !important;
  }
  body .mbl-top-padding-95 {
    padding-top: 95px !important;
  }
  body .mbl-top-padding-100 {
    padding-top: 100px !important;
  }
  body .mbl-top-padding-120 {
    padding-top: 120px !important;
  }
  body .mbl-top-padding-140 {
    padding-top: 140px !important;
  }
  body .mbl-top-padding-160 {
    padding-top: 160px !important;
  }
  body .mbl-top-padding-180 {
    padding-top: 180px !important;
  }
  body .mbl-top-padding-200 {
    padding-top: 200px !important;
  }
}
/************************************************************
 *                      Bottom Padding                      *
************************************************************/
body .bottom-padding-0 {
  padding-bottom: 0px !important;
}
body .bottom-padding-5 {
  padding-bottom: 5px !important;
}
body .bottom-padding-10 {
  padding-bottom: 10px !important;
}
body .bottom-padding-15 {
  padding-bottom: 15px !important;
}
body .bottom-padding-20 {
  padding-bottom: 20px !important;
}
body .bottom-padding-25 {
  padding-bottom: 25px !important;
}
body .bottom-padding-30 {
  padding-bottom: 30px !important;
}
body .bottom-padding-35 {
  padding-bottom: 35px !important;
}
body .bottom-padding-40 {
  padding-bottom: 40px !important;
}
body .bottom-padding-45 {
  padding-bottom: 45px !important;
}
body .bottom-padding-50 {
  padding-bottom: 50px !important;
}
body .bottom-padding-55 {
  padding-bottom: 55px !important;
}
body .bottom-padding-60 {
  padding-bottom: 60px !important;
}
body .bottom-padding-65 {
  padding-bottom: 65px !important;
}
body .bottom-padding-70 {
  padding-bottom: 70px !important;
}
body .bottom-padding-75 {
  padding-bottom: 75px !important;
}
body .bottom-padding-80 {
  padding-bottom: 80px !important;
}
body .bottom-padding-85 {
  padding-bottom: 85px !important;
}
body .bottom-padding-90 {
  padding-bottom: 90px !important;
}
body .bottom-padding-95 {
  padding-bottom: 95px !important;
}
body .bottom-padding-100 {
  padding-bottom: 100px !important;
}
body .bottom-padding-120 {
  padding-bottom: 120px !important;
}
body .bottom-padding-140 {
  padding-bottom: 140px !important;
}
body .bottom-padding-160 {
  padding-bottom: 160px !important;
}
body .bottom-padding-180 {
  padding-bottom: 180px !important;
}
body .bottom-padding-200 {
  padding-bottom: 200px !important;
}
@media (max-width: 1200px) {
  body .lg-bottom-padding-0 {
    padding-bottom: 0px !important;
  }
  body .lg-bottom-padding-5 {
    padding-bottom: 5px !important;
  }
  body .lg-bottom-padding-10 {
    padding-bottom: 10px !important;
  }
  body .lg-bottom-padding-15 {
    padding-bottom: 15px !important;
  }
  body .lg-bottom-padding-20 {
    padding-bottom: 20px !important;
  }
  body .lg-bottom-padding-25 {
    padding-bottom: 25px !important;
  }
  body .lg-bottom-padding-30 {
    padding-bottom: 30px !important;
  }
  body .lg-bottom-padding-35 {
    padding-bottom: 35px !important;
  }
  body .lg-bottom-padding-40 {
    padding-bottom: 40px !important;
  }
  body .lg-bottom-padding-45 {
    padding-bottom: 45px !important;
  }
  body .lg-bottom-padding-50 {
    padding-bottom: 50px !important;
  }
  body .lg-bottom-padding-55 {
    padding-bottom: 55px !important;
  }
  body .lg-bottom-padding-60 {
    padding-bottom: 60px !important;
  }
  body .lg-bottom-padding-65 {
    padding-bottom: 65px !important;
  }
  body .lg-bottom-padding-70 {
    padding-bottom: 70px !important;
  }
  body .lg-bottom-padding-75 {
    padding-bottom: 75px !important;
  }
  body .lg-bottom-padding-80 {
    padding-bottom: 80px !important;
  }
  body .lg-bottom-padding-85 {
    padding-bottom: 85px !important;
  }
  body .lg-bottom-padding-90 {
    padding-bottom: 90px !important;
  }
  body .lg-bottom-padding-95 {
    padding-bottom: 95px !important;
  }
  body .lg-bottom-padding-100 {
    padding-bottom: 100px !important;
  }
  body .lg-bottom-padding-120 {
    padding-bottom: 120px !important;
  }
  body .lg-bottom-padding-140 {
    padding-bottom: 140px !important;
  }
  body .lg-bottom-padding-160 {
    padding-bottom: 160px !important;
  }
  body .lg-bottom-padding-180 {
    padding-bottom: 180px !important;
  }
  body .lg-bottom-padding-200 {
    padding-bottom: 200px !important;
  }
}
@media (max-width: 1024px) {
  body .tbl-bottom-padding-0 {
    padding-bottom: 0px !important;
  }
  body .tbl-bottom-padding-5 {
    padding-bottom: 5px !important;
  }
  body .tbl-bottom-padding-10 {
    padding-bottom: 10px !important;
  }
  body .tbl-bottom-padding-15 {
    padding-bottom: 15px !important;
  }
  body .tbl-bottom-padding-20 {
    padding-bottom: 20px !important;
  }
  body .tbl-bottom-padding-25 {
    padding-bottom: 25px !important;
  }
  body .tbl-bottom-padding-30 {
    padding-bottom: 30px !important;
  }
  body .tbl-bottom-padding-35 {
    padding-bottom: 35px !important;
  }
  body .tbl-bottom-padding-40 {
    padding-bottom: 40px !important;
  }
  body .tbl-bottom-padding-45 {
    padding-bottom: 45px !important;
  }
  body .tbl-bottom-padding-50 {
    padding-bottom: 50px !important;
  }
  body .tbl-bottom-padding-55 {
    padding-bottom: 55px !important;
  }
  body .tbl-bottom-padding-60 {
    padding-bottom: 60px !important;
  }
  body .tbl-bottom-padding-65 {
    padding-bottom: 65px !important;
  }
  body .tbl-bottom-padding-70 {
    padding-bottom: 70px !important;
  }
  body .tbl-bottom-padding-75 {
    padding-bottom: 75px !important;
  }
  body .tbl-bottom-padding-80 {
    padding-bottom: 80px !important;
  }
  body .tbl-bottom-padding-85 {
    padding-bottom: 85px !important;
  }
  body .tbl-bottom-padding-90 {
    padding-bottom: 90px !important;
  }
  body .tbl-bottom-padding-95 {
    padding-bottom: 95px !important;
  }
  body .tbl-bottom-padding-100 {
    padding-bottom: 100px !important;
  }
  body .tbl-bottom-padding-120 {
    padding-bottom: 120px !important;
  }
  body .tbl-bottom-padding-140 {
    padding-bottom: 140px !important;
  }
  body .tbl-bottom-padding-160 {
    padding-bottom: 160px !important;
  }
  body .tbl-bottom-padding-180 {
    padding-bottom: 180px !important;
  }
  body .tbl-bottom-padding-200 {
    padding-bottom: 200px !important;
  }
}
@media (max-width: 767px) {
  body .sm-bottom-padding-0 {
    padding-bottom: 0px !important;
  }
  body .sm-bottom-padding-5 {
    padding-bottom: 5px !important;
  }
  body .sm-bottom-padding-10 {
    padding-bottom: 10px !important;
  }
  body .sm-bottom-padding-15 {
    padding-bottom: 15px !important;
  }
  body .sm-bottom-padding-20 {
    padding-bottom: 20px !important;
  }
  body .sm-bottom-padding-25 {
    padding-bottom: 25px !important;
  }
  body .sm-bottom-padding-30 {
    padding-bottom: 30px !important;
  }
  body .sm-bottom-padding-35 {
    padding-bottom: 35px !important;
  }
  body .sm-bottom-padding-40 {
    padding-bottom: 40px !important;
  }
  body .sm-bottom-padding-45 {
    padding-bottom: 45px !important;
  }
  body .sm-bottom-padding-50 {
    padding-bottom: 50px !important;
  }
  body .sm-bottom-padding-55 {
    padding-bottom: 55px !important;
  }
  body .sm-bottom-padding-60 {
    padding-bottom: 60px !important;
  }
  body .sm-bottom-padding-65 {
    padding-bottom: 65px !important;
  }
  body .sm-bottom-padding-70 {
    padding-bottom: 70px !important;
  }
  body .sm-bottom-padding-75 {
    padding-bottom: 75px !important;
  }
  body .sm-bottom-padding-80 {
    padding-bottom: 80px !important;
  }
  body .sm-bottom-padding-85 {
    padding-bottom: 85px !important;
  }
  body .sm-bottom-padding-90 {
    padding-bottom: 90px !important;
  }
  body .sm-bottom-padding-95 {
    padding-bottom: 95px !important;
  }
  body .sm-bottom-padding-100 {
    padding-bottom: 100px !important;
  }
  body .sm-bottom-padding-120 {
    padding-bottom: 120px !important;
  }
  body .sm-bottom-padding-140 {
    padding-bottom: 140px !important;
  }
  body .sm-bottom-padding-160 {
    padding-bottom: 160px !important;
  }
  body .sm-bottom-padding-180 {
    padding-bottom: 180px !important;
  }
  body .sm-bottom-padding-200 {
    padding-bottom: 200px !important;
  }
}
@media (max-width: 500px) {
  body .mbl-bottom-padding-0 {
    padding-bottom: 0px !important;
  }
  body .mbl-bottom-padding-5 {
    padding-bottom: 5px !important;
  }
  body .mbl-bottom-padding-10 {
    padding-bottom: 10px !important;
  }
  body .mbl-bottom-padding-15 {
    padding-bottom: 15px !important;
  }
  body .mbl-bottom-padding-20 {
    padding-bottom: 20px !important;
  }
  body .mbl-bottom-padding-25 {
    padding-bottom: 25px !important;
  }
  body .mbl-bottom-padding-30 {
    padding-bottom: 30px !important;
  }
  body .mbl-bottom-padding-35 {
    padding-bottom: 35px !important;
  }
  body .mbl-bottom-padding-40 {
    padding-bottom: 40px !important;
  }
  body .mbl-bottom-padding-45 {
    padding-bottom: 45px !important;
  }
  body .mbl-bottom-padding-50 {
    padding-bottom: 50px !important;
  }
  body .mbl-bottom-padding-55 {
    padding-bottom: 55px !important;
  }
  body .mbl-bottom-padding-60 {
    padding-bottom: 60px !important;
  }
  body .mbl-bottom-padding-65 {
    padding-bottom: 65px !important;
  }
  body .mbl-bottom-padding-70 {
    padding-bottom: 70px !important;
  }
  body .mbl-bottom-padding-75 {
    padding-bottom: 75px !important;
  }
  body .mbl-bottom-padding-80 {
    padding-bottom: 80px !important;
  }
  body .mbl-bottom-padding-85 {
    padding-bottom: 85px !important;
  }
  body .mbl-bottom-padding-90 {
    padding-bottom: 90px !important;
  }
  body .mbl-bottom-padding-95 {
    padding-bottom: 95px !important;
  }
  body .mbl-bottom-padding-100 {
    padding-bottom: 100px !important;
  }
  body .mbl-bottom-padding-120 {
    padding-bottom: 120px !important;
  }
  body .mbl-bottom-padding-140 {
    padding-bottom: 140px !important;
  }
  body .mbl-bottom-padding-160 {
    padding-bottom: 160px !important;
  }
  body .mbl-bottom-padding-180 {
    padding-bottom: 180px !important;
  }
  body .mbl-bottom-padding-200 {
    padding-bottom: 200px !important;
  }
}
.blog-container {
  color: #080806;
}
.blog-container .col-posts {
  padding-right: 40px;
}
.blog-container .blog-post-single {
  padding: 20px 50px 20px 20px;
  -webkit-box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.06);
  margin-bottom: 40px;
  background-color: #f1f1f1;
}
.blog-container .blog-post-single .post-thumbnail {
  padding-right: 40px;
  min-width: 284px;
  max-width: 284px;
}
.blog-container .blog-post-single .entry-date {
  padding-bottom: 5px;
}
.blog-container .blog-post-single .entry-title {
  font-size: 24px;
  font-size: 2.4rem;
}
.blog-container .blog-post-single .entry-title a {
  color: #080806;
}
.blog-container .blog-post-single .entry-title a:hover {
  text-decoration: underline;
}
.blog-container .blog-post-single .more-link {
  margin-bottom: 0;
}
.blog-container .blog-post-single .more-link a {
  color: #080806;
}
.blog-container .blog-post-single .more-link a:hover:after {
  color: #080806;
}
@media (max-width: 1200px) {
  .blog-container .col-posts {
    padding-right: 0;
    padding-bottom: 40px;
  }
  .blog-container .blog-post-single {
    margin-bottom: 20px;
  }
  .blog-container .blog-post-single .post-thumbnail {
    min-width: 420px;
    max-width: 420px;
  }
}
@media (max-width: 1024px) {
  .blog-container .blog-post-single .post-thumbnail {
    min-width: 360px;
    max-width: 360px;
  }
}
@media (max-width: 767px) {
  .blog-container .blog-post-single {
    padding: 20px;
  }
  .blog-container .blog-post-single .post-thumbnail {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    padding-bottom: 20px;
    padding-right: 0;
  }
  .blog-container .blog-post-single .post-thumbnail img {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .blog-container .blog-post-single .post-thumbnail {
    min-width: 0;
    max-width: 100%;
  }
  .blog-container .blog-post-single .post-thumbnail img {
    width: 100%;
  }
}
.blog-single-container .col-posts {
  padding-right: 40px;
}
.blog-single-container .detail-section {
  font-size: 20px;
  font-size: 2rem;
  padding-bottom: 10px;
  font-weight: 400;
}
.blog-single-container .detail-section .title {
  margin-bottom: 10px;
  font-weight: 400;
}
.blog-single-container .detail-section .separator {
  display: inline-block;
  height: 30px;
  overflow: hidden;
}
.blog-single-container .detail-section .a2a_svg,
.blog-single-container .detail-section .a2a_kit > div {
  display: none;
}
.blog-single-container .detail-section .a2a_kit > a {
  display: block;
  float: none;
  line-height: 1;
  margin-left: 20px;
}
.blog-single-container .detail-section .a2a_kit > a:after {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 700;
  font-size: 28px;
  font-size: 2.8rem;
  color: #080806;
}
.blog-single-container .detail-section .a2a_button_facebook:after {
  content: '\f39e';
}
.blog-single-container .detail-section .a2a_button_twitter:after {
  content: '\f099';
}
.blog-single-container .detail-section .a2a_button_linkedin:after {
  content: '\f0e1';
}
.blog-single-container .image-container {
  padding-bottom: 30px;
}
.blog-single-container .content a {
  background-color: transparent;
  font-size: 16px;
  font-size: 1.6rem;
  color: #080806;
  transform: none;
  padding-left: 0px;
  text-decoration: underline;
}
.blog-single-container .content a span {
  transform: none;
  vertical-align: middle;
}
.blog-single-container .content a:hover {
  color: #cccccc;
}
@media (max-width: 1200px) {
  .blog-single-container .col-posts {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .blog-single-container .detail-section .post-info {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .blog-single-container .detail-section .separator {
    height: 22px;
  }
  .blog-single-container .detail-section .a2a_kit > a {
    margin-left: 10px;
  }
  .blog-single-container .detail-section .a2a_kit > a:after {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.sidebar {
  width: 405px;
  min-width: 405px;
  color: #ffffff;
}
.sidebar .top-section {
  background-color: transparent;
  padding: 40px;
  border: 1px solid #CCC;
}
.sidebar #title-sidebar {
  padding-bottom: 20px;
}
.sidebar #search-sidebar {
  padding-top: 30px;
  padding-bottom: 30px;
}
.sidebar #search-sidebar .search-wrapper .search-input {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
}
.sidebar .widget_categories,
.sidebar .widget_topics {
  padding-top: 30px;
  padding-bottom: 10px;
  border-top: 1px solid #CCC;
}
.sidebar .widget_categories .widget-title,
.sidebar .widget_topics .widget-title {
  margin-bottom: 20px;
  position: relative;
  font-size: 20px;
  font-size: 2rem;
}
.sidebar .widget_categories .widget-title:after,
.sidebar .widget_topics .widget-title:after {
  content: '\f107';
  position: absolute;
  font-family: 'Font Awesome 5 Pro';
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.sidebar .widget_categories .widget-title.opened:after,
.sidebar .widget_topics .widget-title.opened:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.sidebar .widget_categories ul,
.sidebar .widget_topics ul {
  padding-bottom: 20px;
}
.sidebar .link {
  color: #f1f1f1;
  padding: 5px 0;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
}
.sidebar .link:hover {
  color: #fff100;
}
.sidebar .topic-btn {
  padding: 5px 2px 5px 0;
}
.sidebar .topic-btn a {
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff100;
  border: 1px solid #fff100;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  border-radius: 9999px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  padding: 3px 20px;
  white-space: nowrap;
}
.sidebar .topic-btn a:hover {
  color: #f1f1f1;
  background-color: #fff100;
}
@media (max-width: 500px) {
  .sidebar {
    width: 100%;
    min-width: 0;
  }
}
.share-section {
  padding: 30px 50px 40px;
}
.share-section .pretitle {
  margin-bottom: 20px;
}
.share-section .a2a_svg,
.share-section .a2a_kit > div {
  display: none;
}
.share-section .a2a_kit > a {
  display: block;
  float: none;
  line-height: 1;
  color: #f1f1f1;
}
.share-section .a2a_kit > a:hover {
  color: #fff100;
}
.share-section .a2a_kit > a:after {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 700;
  font-size: 42px;
  font-size: 4.2rem;
}
.share-section .a2a_button_facebook:after {
  content: '\f39e';
}
.share-section .a2a_button_twitter:after {
  content: '\f099';
}
.share-section .a2a_button_linkedin:after {
  content: '\f0e1';
}
.single-pagination {
  border-top: 1px solid #CCC;
  padding: 40px 0;
}
.single-pagination .next,
.single-pagination .prev {
  display: inline-block;
  color: #080806;
  text-transform: uppercase;
}
.single-pagination .next .link span,
.single-pagination .prev .link span {
  font-size: 14px !important;
  font-size: 1.4rem !important;
  font-weight: 700;
  letter-spacing: 4px;
}
.single-pagination .next:hover,
.single-pagination .prev:hover {
  text-decoration: underline;
}
.single-pagination .next {
  text-align: right;
}
.single-pagination .fa-angle-right {
  margin-left: 10px;
}
.single-pagination .fa-angle-left {
  margin-right: 10px;
}
.featured-categories {
  margin-left: -25px;
  margin-right: -25px;
}
.blog .featured-categories {
  padding-bottom: 25px;
}
.featured-categories .featured-category {
  padding: 25px;
}
.featured-categories .overlay {
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.featured-categories .title {
  padding: 10px;
}
.featured-categories a:hover .overlay {
  background-color: #fff100;
}
@media (max-width: 1024px) {
  .featured-categories {
    margin-left: -10px;
    margin-right: -10px;
  }
  .blog .featured-categories {
    padding-bottom: 15px;
  }
  .featured-categories .featured-category {
    padding: 10px;
  }
}
body.single {
  color: #080806;
  background-color: #f1f1f1;
}
.blog .blog-top-banner {
  padding-bottom: 50px;
}
.blog-top-banner h1 {
  font-weight: 600;
}
/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sources%22%3A%5B%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fvendors%5C%2Fanimate.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fvendors%5C%2Fmagnific-popup.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fvendors%5C%2Fslick.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Ffonts.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fstyleguide.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fmixins.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fframework.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fheader.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Ffooter.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Faccordions.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fbanner_with_background_image.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fbuttons_panel.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fcta_with_background_image.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fcta_with_image_and_gradient.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fcta_with_panels.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fcards_repeater_panel.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Femployee_bios.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ffeatured_post_grid.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fform.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fgallery_masonry.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fgallery_masonry_with_filters.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fgoogle_map_full_width.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ficon_repeater.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fjob_posting_panel.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Flogo_slider.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fpost_type_slider.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fpost_type_grid.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fstats_panel.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fservices_pull_panel.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fspacer.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ftabs.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ftext_panel.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ftimeline_panel.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ftop_banner_slider.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ftwo_column_double_image_text.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ftwo_column_floating_text.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ftwo_column_image_text.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ftwo_column_service_list.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ftwo_column_text_text.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ftwo_column_with_form.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ftwo_column_cta.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ftwo_column_video_text.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fadmin-settings.less%22%2C%22var%5C%2Fwww%5C%2Fvhosts%5C%2Fbigideasusa.org%5C%2Fhttpdocs%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fblog.less%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22%3B%3B%3B%3B%3B%3BAAAA%2CSAAS%3B%3B%3B%3B%3B%3B%3BAAST%3BEACE%3BEACA%3BEACA%3BEACA%3B%3BAAGF%2CSAAS%3BEACP%3BEACA%3B%3BAAGF%2CSAAS%3BEACP%3BEACA%3B%3BAAGF%2CSAAS%3BAACT%2CSAAS%3BEACP%3BEACA%3B%3BAAGF%2CSAAS%3BAACT%2CSAAS%3BEACP%3BEACA%3B%3BAAGF%3BEACE%3BEAAI%3BEAAK%3BEAAK%3BEAAK%3BIACjB%2CoCAAoC%2CmCAApC%3BIACA%2C4BAA4B%2CmCAA5B%3BIACA%2CmBAAmB%2CoBAAnB%3BIACA%2CWAAW%2CoBAAX%3B%3BEAGF%3BEAAK%3BIACH%2CoCAAoC%2CsCAApC%3BIACA%2C4BAA4B%2CsCAA5B%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%2CoCAAoC%2CsCAApC%3BIACA%2C4BAA4B%2CsCAA5B%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3B%3BAAIJ%3BEACE%3BEAAI%3BEAAK%3BEAAK%3BEAAK%3BIACjB%2CoCAAoC%2CmCAApC%3BIACA%2C4BAA4B%2CmCAA5B%3BIACA%2CmBAAmB%2CoBAAnB%3BIACA%2CWAAW%2CoBAAX%3B%3BEAGF%3BEAAK%3BIACH%2CoCAAoC%2CsCAApC%3BIACA%2C4BAA4B%2CsCAA5B%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%2CoCAAoC%2CsCAApC%3BIACA%2C4BAA4B%2CsCAA5B%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3BEACA%2CuCAAA%3BEACA%2C%2BBAAA%3B%3BAAGF%3BEACE%3BEAAI%3BEAAK%3BIACP%3B%3BEAGF%3BEAAK%3BIACH%3B%3B%3BAAIJ%3BEACE%3BEAAI%3BEAAK%3BIACP%3B%3BEAGF%3BEAAK%3BIACH%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3B%3BAAKF%3BEACE%3BIACE%2CmBAAmB%2CgBAAnB%3BIACA%2CWAAW%2CgBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CgBAAnB%3BIACA%2CWAAW%2CgBAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%2CmBAAmB%2CgBAAnB%3BIACA%2CWAAW%2CgBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CgBAAnB%3BIACA%2CWAAW%2CgBAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CmBAAmB%2CgBAAnB%3BIACA%2CWAAW%2CgBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CgBAAnB%3BIACA%2CWAAW%2CgBAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%2CmBAAmB%2CgBAAnB%3BIACA%2CWAAW%2CgBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CgBAAnB%3BIACA%2CWAAW%2CgBAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BEAAI%3BIACF%2CmBAAmB%2CoBAAnB%3BIACA%2CWAAW%2CoBAAX%3B%3BEAGF%3BEAAK%3BEAAK%3BEAAK%3BEAAK%3BIAClB%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BEAAK%3BEAAK%3BEAAK%3BIACb%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3B%3BAAIJ%3BEACE%3BEAAI%3BIACF%2CmBAAmB%2CoBAAnB%3BIACA%2CWAAW%2CoBAAX%3B%3BEAGF%3BEAAK%3BEAAK%3BEAAK%3BEAAK%3BIAClB%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BEAAK%3BEAAK%3BEAAK%3BIACb%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3B%3BAAIJ%3BEACE%2CoCAAA%3BEACA%2C4BAAA%3BEACA%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CmBAAmB%2CgBAAnB%3BIACA%2CWAAW%2CgBAAX%3B%3BEAGF%3BEAAK%3BIACH%2CmBAAmB%2CuBAAoB%2CwBAAvC%3BIACA%2CWAAW%2CuBAAoB%2CwBAA%5C%2FB%3B%3BEAGF%3BEAAK%3BEAAK%3BEAAK%3BIACb%2CmBAAmB%2CuBAAuB%2CuBAA1C%3BIACA%2CWAAW%2CuBAAuB%2CuBAAlC%3B%3BEAGF%3BEAAK%3BEAAK%3BIACR%2CmBAAmB%2CuBAAuB%2CwBAA1C%3BIACA%2CWAAW%2CuBAAuB%2CwBAAlC%3B%3BEAGF%3BIACE%2CmBAAmB%2CgBAAnB%3BIACA%2CWAAW%2CgBAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%2CmBAAmB%2CgBAAnB%3BIACA%2CWAAW%2CgBAAX%3B%3BEAGF%3BEAAK%3BIACH%2CmBAAmB%2CuBAAoB%2CwBAAvC%3BIACA%2CWAAW%2CuBAAoB%2CwBAA%5C%2FB%3B%3BEAGF%3BEAAK%3BEAAK%3BEAAK%3BIACb%2CmBAAmB%2CuBAAuB%2CuBAA1C%3BIACA%2CWAAW%2CuBAAuB%2CuBAAlC%3B%3BEAGF%3BEAAK%3BEAAK%3BIACR%2CmBAAmB%2CuBAAuB%2CwBAA1C%3BIACA%2CWAAW%2CuBAAuB%2CwBAAlC%3B%3BEAGF%3BIACE%2CmBAAmB%2CgBAAnB%3BIACA%2CWAAW%2CgBAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3B%3BAAKF%3BEACE%3BIACE%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CwBAAwB%2CwBAA3C%3BIACA%2CWAAW%2CwBAAwB%2CwBAAnC%3B%3BEAGF%3BIACE%2CmBAAmB%2CuBAAuB%2CuBAA1C%3BIACA%2CWAAW%2CuBAAuB%2CuBAAlC%3B%3BEAGF%3BIACE%2CmBAAmB%2CwBAAwB%2CwBAA3C%3BIACA%2CWAAW%2CwBAAwB%2CwBAAnC%3B%3BEAGF%3BIACE%2CmBAAmB%2CuBAAuB%2CuBAA1C%3BIACA%2CWAAW%2CuBAAuB%2CuBAAlC%3B%3BEAGF%3BIACE%2CmBAAmB%2CuBAAuB%2CwBAA1C%3BIACA%2CWAAW%2CuBAAuB%2CwBAAlC%3B%3BEAGF%3BIACE%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CwBAAwB%2CwBAA3C%3BIACA%2CWAAW%2CwBAAwB%2CwBAAnC%3B%3BEAGF%3BIACE%2CmBAAmB%2CuBAAuB%2CuBAA1C%3BIACA%2CWAAW%2CuBAAuB%2CuBAAlC%3B%3BEAGF%3BIACE%2CmBAAmB%2CwBAAwB%2CwBAA3C%3BIACA%2CWAAW%2CwBAAwB%2CwBAAnC%3B%3BEAGF%3BIACE%2CmBAAmB%2CuBAAuB%2CuBAA1C%3BIACA%2CWAAW%2CuBAAuB%2CuBAAlC%3B%3BEAGF%3BIACE%2CmBAAmB%2CuBAAuB%2CwBAA1C%3BIACA%2CWAAW%2CuBAAuB%2CwBAAlC%3B%3BEAGF%3BIACE%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BEAAI%3BEAAK%3BEAAK%3BEAAK%3BEAAK%3BIACtB%2CoCAAoC%2CmCAApC%3BIACA%2C4BAA4B%2CmCAA5B%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CgBAAnB%3BIACA%2CWAAW%2CgBAAX%3B%3B%3BAAIJ%3BEACE%3BEAAI%3BEAAK%3BEAAK%3BEAAK%3BEAAK%3BIACtB%2CoCAAoC%2CmCAApC%3BIACA%2C4BAA4B%2CmCAA5B%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CgBAAnB%3BIACA%2CWAAW%2CgBAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BEAAI%3BEAAK%3BEAAK%3BEAAK%3BIACjB%2CoCAAoC%2CmCAApC%3BIACA%2C4BAA4B%2CmCAA5B%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2C0BAAnB%3BIACA%2CWAAW%2C0BAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEAAI%3BEAAK%3BEAAK%3BEAAK%3BIACjB%2CoCAAoC%2CmCAApC%3BIACA%2C4BAA4B%2CmCAA5B%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2C0BAAnB%3BIACA%2CWAAW%2C0BAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BEAAI%3BEAAK%3BEAAK%3BEAAK%3BIACjB%2CoCAAoC%2CmCAApC%3BIACA%2C4BAA4B%2CmCAA5B%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2C0BAAnB%3BIACA%2CWAAW%2C0BAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEAAI%3BEAAK%3BEAAK%3BEAAK%3BIACjB%2CoCAAoC%2CmCAApC%3BIACA%2C4BAA4B%2CmCAA5B%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2C0BAAnB%3BIACA%2CWAAW%2C0BAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BEAAI%3BEAAK%3BEAAK%3BEAAK%3BIACjB%2CoCAAoC%2CmCAApC%3BIACA%2C4BAA4B%2CmCAA5B%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGF%3BIACE%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEAAI%3BEAAK%3BEAAK%3BEAAK%3BIACjB%2CoCAAoC%2CmCAApC%3BIACA%2C4BAA4B%2CmCAA5B%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGF%3BIACE%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BEAAI%3BEAAK%3BEAAK%3BEAAK%3BIACjB%2CoCAAoC%2CmCAApC%3BIACA%2C4BAA4B%2CmCAA5B%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CoBAAnB%3BIACA%2CWAAW%2CoBAAX%3B%3B%3BAAIJ%3BEACE%3BEAAI%3BEAAK%3BEAAK%3BEAAK%3BIACjB%2CoCAAoC%2CmCAApC%3BIACA%2C4BAA4B%2CmCAA5B%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CoBAAnB%3BIACA%2CWAAW%2CoBAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BEAAK%3BIACH%3BIACA%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BEAAK%3BIACH%3BIACA%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGF%3BEAAK%3BIACH%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGF%3BEAAK%3BIACH%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2C0BAAnB%3BIACA%2CWAAW%2C0BAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2C0BAAnB%3BIACA%2CWAAW%2C0BAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BEAAK%3BIACH%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2C0BAAnB%3BIACA%2CWAAW%2C0BAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BEAAK%3BIACH%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2C0BAAnB%3BIACA%2CWAAW%2C0BAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3B%3BEAGF%3BIACE%3B%3B%3BAAIJ%3BEACE%3BIACE%3B%3BEAGF%3BIACE%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3BIACA%2CmBAAmB%2C0BAAnB%3BIACA%2CWAAW%2C0BAAX%3B%3BEAGF%3BIACE%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%3BIACA%2CmBAAmB%2C0BAAnB%3BIACA%2CWAAW%2C0BAAX%3B%3BEAGF%3BIACE%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3BIACA%2CmBAAmB%2C0BAAnB%3BIACA%2CWAAW%2C0BAAX%3B%3BEAGF%3BIACE%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%3BIACA%2CmBAAmB%2C0BAAnB%3BIACA%2CWAAW%2C0BAAX%3B%3BEAGF%3BIACE%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGF%3BIACE%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGF%3BIACE%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3B%3BEAGF%3BIACE%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3B%3BEAGF%3BIACE%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGF%3BIACE%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3BEAGF%3BIACE%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3B%3BEAGF%3BIACE%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3B%3BEAGF%3BIACE%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3B%3BEAGF%3BIACE%3B%3B%3BAAIJ%3BEACE%3BIACE%3B%3BEAGF%3BIACE%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2C0BAAnB%3BIACA%2CWAAW%2C0BAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2C0BAAnB%3BIACA%2CWAAW%2C0BAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CuBAAnB%3BIACA%2CWAAW%2CuBAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2C0BAAnB%3BIACA%2CWAAW%2C0BAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2C0BAAnB%3BIACA%2CWAAW%2C0BAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CmBAAmB%2CmBAAmB%2C0BAAtC%3BIACA%2CWAAW%2CmBAAmB%2C0BAA9B%3BIACA%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CyBAAyB%2C0BAA%5C%2FD%3BIACA%2CWAAW%2CmBAAmB%2CyBAAyB%2C0BAAvD%3BIACA%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CyBAAyB%2C0BAA%5C%2FD%3BIACA%2CWAAW%2CmBAAmB%2CyBAAyB%2C0BAAvD%3BIACA%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CyBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CyBAA9B%3BIACA%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CkBAAnB%3BIACA%2CWAAW%2CkBAAX%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%2CmBAAmB%2CmBAAmB%2C0BAAtC%3BIACA%2CWAAW%2CmBAAmB%2C0BAA9B%3BIACA%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CyBAAyB%2C0BAA%5C%2FD%3BIACA%2CWAAW%2CmBAAmB%2CyBAAyB%2C0BAAvD%3BIACA%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CyBAAyB%2C0BAA%5C%2FD%3BIACA%2CWAAW%2CmBAAmB%2CyBAAyB%2C0BAAvD%3BIACA%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CyBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CyBAA9B%3BIACA%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CkBAAnB%3BIACA%2CWAAW%2CkBAAX%3BIACA%3BIACA%3B%3B%3BAAIJ%2CSAAS%3BEACP%3BEACA%3BEACA%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CmBAAmB%2CmBAAmB%2CwBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CwBAA9B%3BIACA%3BIACA%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CyBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CyBAA9B%3BIACA%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CwBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CwBAA9B%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CwBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CwBAA9B%3B%3BEAGF%3BIACE%2CmBAAmB%2CkBAAnB%3BIACA%2CWAAW%2CkBAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%2CmBAAmB%2CmBAAmB%2CwBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CwBAA9B%3BIACA%3BIACA%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CyBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CyBAA9B%3BIACA%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CwBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CwBAA9B%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CwBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CwBAA9B%3B%3BEAGF%3BIACE%2CmBAAmB%2CkBAAnB%3BIACA%2CWAAW%2CkBAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3BEACA%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CmBAAmB%2CmBAAmB%2CwBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CwBAA9B%3BIACA%3BIACA%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CyBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CyBAA9B%3BIACA%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CwBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CwBAA9B%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CwBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CwBAA9B%3B%3BEAGF%3BIACE%2CmBAAmB%2CkBAAnB%3BIACA%2CWAAW%2CkBAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%2CmBAAmB%2CmBAAmB%2CwBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CwBAA9B%3BIACA%3BIACA%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CyBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CyBAA9B%3BIACA%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CwBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CwBAA9B%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CwBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CwBAA9B%3B%3BEAGF%3BIACE%2CmBAAmB%2CkBAAnB%3BIACA%2CWAAW%2CkBAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3BEACA%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CmBAAmB%2CkBAAnB%3BIACA%2CWAAW%2CkBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CyBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CyBAA9B%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CwBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CwBAA9B%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%2CmBAAmB%2CkBAAnB%3BIACA%2CWAAW%2CkBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CyBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CyBAA9B%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CwBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CwBAA9B%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3BEACA%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CmBAAmB%2CkBAAnB%3BIACA%2CWAAW%2CkBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CyBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CyBAA9B%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CwBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CwBAA9B%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%2CmBAAmB%2CkBAAnB%3BIACA%2CWAAW%2CkBAAX%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CyBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CyBAA9B%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CmBAAmB%2CwBAAtC%3BIACA%2CWAAW%2CmBAAmB%2CwBAA9B%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3BEACA%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CmBAAmB%2CwBAAwB%2CaAA3C%3BIACA%2CWAAW%2CwBAAwB%2CaAAnC%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CYAAnB%3BIACA%2CWAAW%2CYAAX%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CYAAnB%3BIACA%2CWAAW%2CYAAX%3BIACA%3B%3BEAGF%3BIACE%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%2CmBAAmB%2CwBAAwB%2CaAA3C%3BIACA%2CWAAW%2CwBAAwB%2CaAAnC%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CYAAnB%3BIACA%2CWAAW%2CYAAX%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CYAAnB%3BIACA%2CWAAW%2CYAAX%3BIACA%3B%3BEAGF%3BIACE%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3BEACA%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3B%3BEAGF%3BIACE%2CmBAAmB%2CwBAAwB%2CYAA3C%3BIACA%2CWAAW%2CwBAAwB%2CYAAnC%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%3B%3BEAGF%3BIACE%2CmBAAmB%2CwBAAwB%2CYAA3C%3BIACA%2CWAAW%2CwBAAwB%2CYAAnC%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3BEACA%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3BIACA%3BIACA%2CmBAAmB%2C0BAAnB%3BIACA%2CWAAW%2C0BAAX%3BIACA%3B%3BEAGF%3BIACE%3BIACA%3BIACA%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%3BIACA%3BIACA%2CmBAAmB%2C0BAAnB%3BIACA%2CWAAW%2C0BAAX%3BIACA%3B%3BEAGF%3BIACE%3BIACA%3BIACA%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CqCAAA%3BIACA%2C6BAAA%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3BIACA%3B%3BEAGF%3BIACE%2CqCAAA%3BIACA%2C6BAAA%3BIACA%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%2CqCAAA%3BIACA%2C6BAAA%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3BIACA%3B%3BEAGF%3BIACE%2CqCAAA%3BIACA%2C6BAAA%3BIACA%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CsCAAA%3BIACA%2C8BAAA%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3BIACA%3B%3BEAGF%3BIACE%2CsCAAA%3BIACA%2C8BAAA%3BIACA%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%2CsCAAA%3BIACA%2C8BAAA%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3BIACA%3B%3BEAGF%3BIACE%2CsCAAA%3BIACA%2C8BAAA%3BIACA%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CqCAAA%3BIACA%2C6BAAA%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3BIACA%3B%3BEAGF%3BIACE%2CqCAAA%3BIACA%2C6BAAA%3BIACA%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%2CqCAAA%3BIACA%2C6BAAA%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3BIACA%3B%3BEAGF%3BIACE%2CqCAAA%3BIACA%2C6BAAA%3BIACA%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CsCAAA%3BIACA%2C8BAAA%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3BIACA%3B%3BEAGF%3BIACE%2CsCAAA%3BIACA%2C8BAAA%3BIACA%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%2CsCAAA%3BIACA%2C8BAAA%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3BIACA%3B%3BEAGF%3BIACE%2CsCAAA%3BIACA%2C8BAAA%3BIACA%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3BIACA%3BIACA%3B%3BEAGF%3BIACE%3BIACA%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%3BIACA%3BIACA%3B%3BEAGF%3BIACE%3BIACA%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CqCAAA%3BIACA%2C6BAAA%3BIACA%3B%3BEAGF%3BIACE%2CqCAAA%3BIACA%2C6BAAA%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%2CqCAAA%3BIACA%2C6BAAA%3BIACA%3B%3BEAGF%3BIACE%2CqCAAA%3BIACA%2C6BAAA%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CsCAAA%3BIACA%2C8BAAA%3BIACA%3B%3BEAGF%3BIACE%2CsCAAA%3BIACA%2C8BAAA%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%2CsCAAA%3BIACA%2C8BAAA%3BIACA%3B%3BEAGF%3BIACE%2CsCAAA%3BIACA%2C8BAAA%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CqCAAA%3BIACA%2C6BAAA%3BIACA%3B%3BEAGF%3BIACE%2CqCAAA%3BIACA%2C6BAAA%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%2CqCAAA%3BIACA%2C6BAAA%3BIACA%3B%3BEAGF%3BIACE%2CqCAAA%3BIACA%2C6BAAA%3BIACA%2CmBAAmB%2CyBAAnB%3BIACA%2CWAAW%2CyBAAX%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CsCAAA%3BIACA%2C8BAAA%3BIACA%3B%3BEAGF%3BIACE%2CsCAAA%3BIACA%2C8BAAA%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%2CsCAAA%3BIACA%2C8BAAA%3BIACA%3B%3BEAGF%3BIACE%2CsCAAA%3BIACA%2C8BAAA%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CkCAAA%3BIACA%2C0BAAA%3BIACA%3BIACA%3B%3BEAGF%3BEAAK%3BIACH%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3BIACA%2CkCAAA%3BIACA%2C0BAAA%3BIACA%3BIACA%3B%3BEAGF%3BEAAK%3BIACH%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3BIACA%2CkCAAA%3BIACA%2C0BAAA%3BIACA%3BIACA%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%2CkCAAA%3BIACA%2C0BAAA%3BIACA%3BIACA%3B%3BEAGF%3BEAAK%3BIACH%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3BIACA%2CkCAAA%3BIACA%2C0BAAA%3BIACA%3BIACA%3B%3BEAGF%3BEAAK%3BIACH%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3BIACA%2CkCAAA%3BIACA%2C0BAAA%3BIACA%3BIACA%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3B%3BAAKF%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CyBAAyB%2C0BAA5C%3BIACA%2CWAAW%2CyBAAyB%2C0BAApC%3B%3BEAGF%3BIACE%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CyBAAyB%2C0BAA5C%3BIACA%2CWAAW%2CyBAAyB%2C0BAApC%3B%3BEAGF%3BIACE%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3B%3BAAKF%3BEACE%3BIACE%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CwBAAwB%2CyBAA3C%3BIACA%2CWAAW%2CwBAAwB%2CyBAAnC%3B%3B%3BAAIJ%3BEACE%3BIACE%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CwBAAwB%2CyBAA3C%3BIACA%2CWAAW%2CwBAAwB%2CyBAAnC%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%3B%3B%3BAAIJ%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CuBAAoB%2C0BAAvC%3BIACA%2CWAAW%2CuBAAoB%2C0BAA%5C%2FB%3BIACA%2CmCAAmC%2CsCAAnC%3BIACA%2C2BAA2B%2CsCAA3B%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2C6BAA0B%2CuBAA7C%3BIACA%2CWAAW%2C6BAA0B%2CuBAArC%3BIACA%2CmCAAmC%2CmCAAnC%3BIACA%2C2BAA2B%2CmCAA3B%3B%3B%3BAAIJ%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CuBAAoB%2C0BAAvC%3BIACA%2CWAAW%2CuBAAoB%2C0BAA%5C%2FB%3BIACA%2CmCAAmC%2CsCAAnC%3BIACA%2C2BAA2B%2CsCAA3B%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2C6BAA0B%2CuBAA7C%3BIACA%2CWAAW%2C6BAA0B%2CuBAArC%3BIACA%2CmCAAmC%2CmCAAnC%3BIACA%2C2BAA2B%2CmCAA3B%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CuBAAoB%2C0BAAvC%3BIACA%2CWAAW%2CuBAAoB%2C0BAA%5C%2FB%3BIACA%2CmCAAmC%2CsCAAnC%3BIACA%2C2BAA2B%2CsCAA3B%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2C6BAA0B%2CuBAA7C%3BIACA%2CWAAW%2C6BAA0B%2CuBAArC%3BIACA%2CmCAAmC%2CmCAAnC%3BIACA%2C2BAA2B%2CmCAA3B%3B%3B%3BAAIJ%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CuBAAoB%2C0BAAvC%3BIACA%2CWAAW%2CuBAAoB%2C0BAA%5C%2FB%3BIACA%2CmCAAmC%2CsCAAnC%3BIACA%2C2BAA2B%2CsCAA3B%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2C6BAA0B%2CuBAA7C%3BIACA%2CWAAW%2C6BAA0B%2CuBAArC%3BIACA%2CmCAAmC%2CmCAAnC%3BIACA%2C2BAA2B%2CmCAA3B%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CuBAAoB%2CyBAAvC%3BIACA%2CWAAW%2CuBAAoB%2CyBAA%5C%2FB%3BIACA%2CmCAAmC%2CsCAAnC%3BIACA%2C2BAA2B%2CsCAA3B%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2C6BAA0B%2CwBAA7C%3BIACA%2CWAAW%2C6BAA0B%2CwBAArC%3BIACA%2CmCAAmC%2CmCAAnC%3BIACA%2C2BAA2B%2CmCAA3B%3B%3B%3BAAIJ%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CuBAAoB%2CyBAAvC%3BIACA%2CWAAW%2CuBAAoB%2CyBAA%5C%2FB%3BIACA%2CmCAAmC%2CsCAAnC%3BIACA%2C2BAA2B%2CsCAA3B%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2C6BAA0B%2CwBAA7C%3BIACA%2CWAAW%2C6BAA0B%2CwBAArC%3BIACA%2CmCAAmC%2CmCAAnC%3BIACA%2C2BAA2B%2CmCAA3B%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CuBAAoB%2CyBAAvC%3BIACA%2CWAAW%2CuBAAoB%2CyBAA%5C%2FB%3BIACA%2CmCAAmC%2CsCAAnC%3BIACA%2C2BAA2B%2CsCAA3B%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2C6BAA0B%2CwBAA7C%3BIACA%2CWAAW%2C6BAA0B%2CwBAArC%3BIACA%2CmCAAmC%2CmCAAnC%3BIACA%2C2BAA2B%2CmCAA3B%3B%3B%3BAAIJ%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CuBAAoB%2CyBAAvC%3BIACA%2CWAAW%2CuBAAoB%2CyBAA%5C%2FB%3BIACA%2CmCAAmC%2CsCAAnC%3BIACA%2C2BAA2B%2CsCAA3B%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2C6BAA0B%2CwBAA7C%3BIACA%2CWAAW%2C6BAA0B%2CwBAArC%3BIACA%2CmCAAmC%2CmCAAnC%3BIACA%2C2BAA2B%2CmCAA3B%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%3B%3B%3BAAIJ%3BEACE%3BIACE%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CsBAAnB%3BIACA%2CWAAW%2CsBAAX%3B%3BEAGF%3BIACE%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3BIACA%2CmBAAmB%2C6BAA0B%2CwBAA7C%3BIACA%2CWAAW%2C6BAA0B%2CwBAArC%3BIACA%2CmCAAmC%2CsCAAnC%3BIACA%2C2BAA2B%2CsCAA3B%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CuBAAoB%2CyBAAvC%3BIACA%2CWAAW%2CuBAAoB%2CyBAA%5C%2FB%3BIACA%2CuCAAA%3BIACA%2C%2BBAAA%3BIACA%2CmCAAmC%2CmCAAnC%3BIACA%2C2BAA2B%2CmCAA3B%3B%3B%3BAAIJ%3BEACE%3BIACE%3BIACA%2CmBAAmB%2C6BAA0B%2CwBAA7C%3BIACA%2CWAAW%2C6BAA0B%2CwBAArC%3BIACA%2CmCAAmC%2CsCAAnC%3BIACA%2C2BAA2B%2CsCAA3B%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CuBAAoB%2CyBAAvC%3BIACA%2CWAAW%2CuBAAoB%2CyBAA%5C%2FB%3BIACA%2CuCAAA%3BIACA%2C%2BBAAA%3BIACA%2CmCAAmC%2CmCAAnC%3BIACA%2C2BAA2B%2CmCAA3B%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3BIACA%2CmBAAmB%2C6BAA0B%2CuBAA7C%3BIACA%2CWAAW%2C6BAA0B%2CuBAArC%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CWAAU%2C0BAA7B%3BIACA%2CWAAW%2CWAAU%2C0BAArB%3BIACA%2CqCAAA%3BIACA%2C6BAAA%3B%3B%3BAAIJ%3BEACE%3BIACE%3BIACA%2CmBAAmB%2C6BAA0B%2CuBAA7C%3BIACA%2CWAAW%2C6BAA0B%2CuBAArC%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CWAAU%2C0BAA7B%3BIACA%2CWAAW%2CWAAU%2C0BAArB%3BIACA%2CqCAAA%3BIACA%2C6BAAA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3BIACA%2CmBAAmB%2C6BAA0B%2CwBAA7C%3BIACA%2CWAAW%2C6BAA0B%2CwBAArC%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CWAAU%2CyBAA7B%3BIACA%2CWAAW%2CWAAU%2CyBAArB%3BIACA%2CsCAAA%3BIACA%2C8BAAA%3B%3B%3BAAIJ%3BEACE%3BIACE%3BIACA%2CmBAAmB%2C6BAA0B%2CwBAA7C%3BIACA%2CWAAW%2C6BAA0B%2CwBAArC%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CWAAU%2CyBAA7B%3BIACA%2CWAAW%2CWAAU%2CyBAArB%3BIACA%2CsCAAA%3BIACA%2C8BAAA%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%3BIACA%2CmBAAmB%2C6BAA0B%2CuBAA7C%3BIACA%2CWAAW%2C6BAA0B%2CuBAArC%3BIACA%2CmCAAmC%2CsCAAnC%3BIACA%2C2BAA2B%2CsCAA3B%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CuBAAoB%2C0BAAvC%3BIACA%2CWAAW%2CuBAAoB%2C0BAA%5C%2FB%3BIACA%2CuCAAA%3BIACA%2C%2BBAAA%3BIACA%2CmCAAmC%2CmCAAnC%3BIACA%2C2BAA2B%2CmCAA3B%3B%3B%3BAAIJ%3BEACE%3BIACE%3BIACA%2CmBAAmB%2C6BAA0B%2CuBAA7C%3BIACA%2CWAAW%2C6BAA0B%2CuBAArC%3BIACA%2CmCAAmC%2CsCAAnC%3BIACA%2C2BAA2B%2CsCAA3B%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CuBAAoB%2C0BAAvC%3BIACA%2CWAAW%2CuBAAoB%2C0BAA%5C%2FB%3BIACA%2CuCAAA%3BIACA%2C%2BBAAA%3BIACA%2CmCAAmC%2CmCAAnC%3BIACA%2C2BAA2B%2CmCAA3B%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CmBAAmB%2CiBAAnB%3BIACA%2CWAAW%2CiBAAX%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%2CmBAAmB%2CiBAAnB%3BIACA%2CWAAW%2CiBAAX%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CmBAAmB%2CiBAAnB%3BIACA%2CWAAW%2CiBAAX%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%2CmBAAmB%2CiBAAnB%3BIACA%2CWAAW%2CiBAAX%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CmBAAmB%2CgBAAnB%3BIACA%2CWAAW%2CgBAAX%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%2CmBAAmB%2CgBAAnB%3BIACA%2CWAAW%2CgBAAX%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CmBAAmB%2CgBAAnB%3BIACA%2CWAAW%2CgBAAX%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%2CmBAAmB%2CgBAAnB%3BIACA%2CWAAW%2CgBAAX%3BIACA%3B%3BEAGF%3BIACE%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CgBAAnB%3BIACA%2CWAAW%2CgBAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CgBAAnB%3BIACA%2CWAAW%2CgBAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CiBAAnB%3BIACA%2CWAAW%2CiBAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CiBAAnB%3BIACA%2CWAAW%2CiBAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CgBAAnB%3BIACA%2CWAAW%2CgBAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CgBAAnB%3BIACA%2CWAAW%2CgBAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3BAAGF%3BEACE%3BIACE%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CiBAAnB%3BIACA%2CWAAW%2CiBAAX%3B%3B%3BAAIJ%3BEACE%3BIACE%2CmBAAmB%2CaAAnB%3BIACA%2CWAAW%2CaAAX%3B%3BEAGF%3BIACE%3BIACA%2CmBAAmB%2CiBAAnB%3BIACA%2CWAAW%2CiBAAX%3B%3B%3BAAIJ%3BEACE%3BEACA%3B%3B%3BAC1mGF%3BEACE%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAEF%3BEACE%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAEF%3BEACE%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CcAAA%3BEACA%3B%3BAAEF%2CcAAc%3BEACZ%2CSAAS%2CEAAT%3BEACA%3BEACA%3BEACA%3B%3BAAEF%2CcAAe%2CeAAc%3BEAC3B%3B%3BAAEF%3BEACE%3BEACA%3BEACA%3BEACA%2CcAAA%3BEACA%3BEACA%3B%3BAAEF%2CkBAAmB%3BAACnB%2CgBAAiB%3BEACf%3BEACA%3B%3BAAEF%3BEACE%3B%3BAAEF%3BAAAmB%2CiBAAkB%2CkBAAkB%3BEACrD%3BEACA%3BEACA%3B%3BAAEF%3BEACE%3BEACA%3BEACA%3BEACA%3B%3BAAEF%2CgBAAiB%3BEACf%3B%3BAAEF%3BAACA%3BAACA%3BAACA%3BEACE%3BEACA%3BEACA%3B%3BAAEF%2CYAAY%3BEACV%3B%3BAAEF%3BEACE%3B%3BAAEF%3BEACE%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAACA%2CcAAe%3BEACb%3B%3BAACA%2CcAAe%2CEAAC%3BEACd%3B%3BAAEN%2CYAAa%3BEACX%3B%3BAAEF%2CYAAa%3BEACX%3B%3BAAEF%2CMAAM%3BAACN%2CMAAM%3BEACJ%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAEF%2CMAAM%3BEACJ%3BEACA%3B%3BAAEF%3BEACE%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CsBAAA%3BEACA%3BEACA%3BEACA%3BEACA%2C0CAAA%3B%3BAACA%2CUAAU%3BAACV%2CUAAU%3BEACR%3B%3BAACF%2CUAAU%3BEACR%3B%3BAAEJ%2CiBAAkB%3BEAChB%3B%3BAAEF%2CiBAAkB%3BAAClB%2CkBAAmB%3BEACjB%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAEF%3BEACE%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAEF%3BEACE%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAACA%2CUAAU%3BEACR%3B%3BAACF%2CUAAU%3BAACV%2CUAAU%3BEACR%3B%3BAACF%2CUAAU%3BAACV%2CUAAU%3BEACR%2CSAAS%2CEAAT%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CgCAAA%3B%3BAACF%2CUAAU%3BEACR%3BEACA%3BEACA%3B%3BAACF%2CUAAU%3BEACR%3BEACA%3BEACA%3B%3BAAEJ%3BEACE%3B%3BAACA%2CeAAe%3BEACb%2C6BAAA%3BEACA%3B%3BAACF%2CeAAe%3BEACb%3BEACA%2CgCAAA%3B%3BAAEJ%3BEACE%3B%3BAACA%2CgBAAgB%3BEACd%2C4BAAA%3BEACA%3B%3BAACF%2CgBAAgB%3BEACd%2C%2BBAAA%3B%3BAAEJ%3BEACE%3BEACA%3B%3BAACA%2CkBAAmB%3BEACjB%3BEACA%3BEACA%3B%3BAACF%2CkBAAmB%3BEACjB%3B%3BAAEJ%3BEACE%3BEACA%3BEACA%3BEACA%3B%3BAACA%2CkBAAmB%3BEACjB%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CsCAAA%3BEACA%3B%3B%3BAAGJ%2CGAAG%3BEACD%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CoBAAA%3BEACA%2CcAAA%3B%3B%3BAAGF%3BEACE%3B%3BAACA%2CWAAW%3BEACT%2CSAAS%2CEAAT%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CsCAAA%3BEACA%3B%3BAACF%2CWAAY%3BEACV%3BEACA%3BEACA%3BEACA%3B%3BAACF%2CWAAY%3BEACV%3B%3BAAEJ%3BEACE%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAEF%3BEACE%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAEF%2CiBAAkB%3BEAChB%3B%3BAAEF%2CYAAa%2CkBAAkB%3BEAC7B%3B%3BAAyCF%2CmBAvCqC%2CuBAA4B%2CqCAAiC%3B%3B%3B%3BEAIhG%2CeAAgB%3BIACd%3BIACA%3B%3BEACF%2CeAAgB%2CIAAG%3BIACjB%3B%3BEACF%2CeAAgB%2CYAAW%3BIACzB%3BIACA%3B%3BEACF%2CeAAgB%2CYAAY%3BIAC1B%3BIACA%3B%3BEACF%2CeAAgB%3BIACd%2C8BAAA%3BIACA%3BIACA%3BIACA%3BIACA%2CgBAAA%3BIACA%3BIACA%3B%3BEACA%2CeAAgB%2CgBAAe%3BIAC7B%3B%3BEACJ%2CeAAgB%3BIACd%3BIACA%3B%3BEACF%2CeAAgB%3BIACd%3BIACA%3BIACA%3BIACA%3BIACA%3BIACA%2C8BAAA%3BIACA%3BIACA%3BIACA%3B%3B%3BAAcuB%2CgBAZO%3BEAChC%3BIACE%2CmBAAmB%2CWAAnB%3BIACA%2CWAAW%2CWAAX%3B%3BEACF%3BIACE%3BIACA%3B%3BEACF%3BIACE%3BIACA%3B%3BEACF%3BIACE%3BIACA%3B%3B%3B%3BAC7VJ%3BEACE%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAGF%3BEACE%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAEA%2CWAAC%3BEACC%3B%3BAAGF%2CWAAC%3BEACC%3BEACA%3B%3BAAEF%2CcAAe%3BEACb%2C4EAAA%3B%3BAAIJ%2CaAAc%3BAACd%2CaAAc%3BEACZ%2CmBAAmB%2CoBAAnB%3BEACA%2CgBAAgB%2CoBAAhB%3BEACA%2CeAAe%2CoBAAf%3BEACA%2CcAAc%2CoBAAd%3BEACA%2CWAAW%2CoBAAX%3B%3BAAGF%3BEACE%3BEACA%3BEACA%3BEACA%3B%3BAAEA%2CYAAC%3BAACD%2CYAAC%3BEACC%2CSAAS%2CEAAT%3BEACA%3B%3BAAGF%2CYAAC%3BEACC%3B%3BAAGF%2CcAAe%3BEACb%3B%3BAAIJ%3BEACE%3BEACA%3BEACA%3BEACA%3BEAWA%3B%3BAAVA%2CWAAY%3BEACV%3B%3BAANJ%2CYAQE%3BEACE%3B%3BAAEF%2CYAAC%2CcAAe%3BEACd%3B%3BAAKF%2CYAAC%2CSAAU%3BEACT%3B%3BAAGF%2CkBAAmB%3BEACjB%3B%3BAAGF%2CcAAe%3BEACb%3B%3BAAGF%2CeAAgB%3BEACd%3BEACA%3BEACA%2C6BAAA%3B%3BAAIJ%2CYAAY%3BEACV%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3BACtGF%3BEACI%3BEACA%2CSAAS%2C8BAAT%3BEACA%2CSAAS%2CqCAAwC%2COAAO%2C0BAChD%2CiCAAoC%2COAAO%2CcAC3C%2C%2BBAAkC%2COAAO%2CiBACzC%2CgCAAmC%2COAAO%2CaAC1C%2CuCAA0C%2COAAO%2CMAJzD%3BEAKA%3BEACA%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CmBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CoBAAoB%3BEAChB%2CSAAS%2COAAT%3B%3BAAGJ%2CmBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CaAAa%3BEACT%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CmBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAAGJ%2CmBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAAGJ%2CaAAa%3BEACT%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CsBAAsB%3BEAClB%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CmBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAAGJ%2CmBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CoBAAoB%3BEAChB%2CSAAS%2COAAT%3B%3BAAGJ%2CmBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CoBAAoB%3BEAChB%2CSAAS%2COAAT%3B%3BAAGJ%2CmBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAAGJ%2CaAAa%3BEACT%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CaAAa%3BEACT%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CmBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAAGJ%2CYAAY%3BEACR%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CuBAAuB%3BEACnB%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CmBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CaAAa%3BEACT%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CoBAAoB%3BEAChB%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CaAAa%3BEACT%2CSAAS%2COAAT%3B%3BAAGJ%2CYAAY%3BEACR%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CmBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CoBAAoB%3BEAChB%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CaAAa%3BEACT%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CoBAAoB%3BEAChB%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CmBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CaAAa%3BEACT%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CaAAa%3BEACT%2CSAAS%2COAAT%3B%3BAAGJ%2CaAAa%3BEACT%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CaAAa%3BEACT%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CmBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CmBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAAGJ%2CmBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CsBAAsB%3BEAClB%2CSAAS%2COAAT%3B%3BAAGJ%2CqBAAqB%3BEACjB%2CSAAS%2COAAT%3B%3BAAGJ%2CqBAAqB%3BEACjB%2CSAAS%2COAAT%3B%3BAAGJ%2CmBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAAGJ%2CoBAAoB%3BEAChB%2CSAAS%2COAAT%3B%3BAAGJ%2CmBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAAGJ%2CoBAAoB%3BEAChB%2CSAAS%2COAAT%3B%3BAAGJ%2CmBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CYAAY%3BEACR%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CaAAa%3BEACT%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CaAAa%3BEACT%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CoBAAoB%3BEAChB%2CSAAS%2COAAT%3B%3BAAGJ%2CaAAa%3BEACT%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CaAAa%3BEACT%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CoBAAoB%3BEAChB%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CYAAY%3BEACR%2CSAAS%2COAAT%3B%3BAAGJ%2CsBAAsB%3BEAClB%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CaAAa%3BEACT%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CoBAAoB%3BEAChB%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CWAAW%3BEACP%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CqBAAqB%3BEACjB%2CSAAS%2COAAT%3B%3BAAGJ%2CwBAAwB%3BEACpB%2CSAAS%2COAAT%3B%3BAAGJ%2CqBAAqB%3BEACjB%2CSAAS%2COAAT%3B%3BAAGJ%2CYAAY%3BEACR%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CmBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CmBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CsBAAsB%3BEAClB%2CSAAS%2COAAT%3B%3BAAGJ%2CsBAAsB%3BEAClB%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CoBAAoB%3BEAChB%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CmBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CoBAAoB%3BEAChB%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CmBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAAGJ%2CmBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CoBAAoB%3BEAChB%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CaAAa%3BEACT%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CaAAa%3BEACT%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CiBAAiB%3BEACb%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CkBAAkB%3BEACd%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CaAAa%3BEACT%2CSAAS%2COAAT%3B%3BAAGJ%2CaAAa%3BEACT%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CaAAa%3BEACT%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CgBAAgB%3BEACZ%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CeAAe%3BEACX%2CSAAS%2COAAT%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2COAAT%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3BACj%2BBJ%3BEAAa%2CaATD%2CuBASC%3B%3B%3B%3B%3B%3B%3B%3B%3BAA4Bb%3BAAAM%3BAAAQ%3BAAAO%3BAAAQ%3BEAAW%2CcAAA%3BEAAoB%2CaArChD%2CuBAqCgD%3BEAAiC%3BEAAqC%2CgBAAA%3BECvE9H%2CeAAA%3BEACA%2CiBAAA%3BEDsE2K%3B%3BAAC%5C%2FK%3BEAAO%2CyBAAA%3BEAA0B%2CcAAA%3BEAAgB%3BEAAkB%2CiBAAA%3B%3BAAEnE%3BAAAI%3BAAAI%3BAAAI%3BAAAI%3BAAAI%3BAAAI%3BAAAK%3BAAAK%3BAAAK%3BAAAK%3BAAAK%3BEAAM%3B%3BAACvD%3BAAAI%3BAAAI%3BAAAI%3BAAAI%3BAAAI%3BEAAK%2CkBAAA%3B%3B%3BAAGzB%3BAAAI%3BEC9EA%2CeAAA%3BEACA%2CiBAAA%3BED6EsB%3B%3BAAC1B%3BAAAI%3BEC%5C%2FEA%2CeAAA%3BEACA%2CeAAA%3BED8EsB%3B%3BAAC1B%3BAAAI%3BEChFA%2CeAAA%3BEACA%2CiBAAA%3BED%2BEsB%3B%3BAAC1B%3BAAAI%3BECjFA%2CeAAA%3BEACA%2CiBAAA%3BEDgFsB%3B%3BAAC1B%3BAAAI%3BEClFA%2CeAAA%3BEACA%2CiBAAA%3BEDiFsB%3B%3BAAC1B%3BAAAI%3BECnFA%2CeAAA%3BEACA%2CiBAAA%3BEDkFsB%3B%3BAAY1B%2CQAV8B%3BEAC1B%3BEAAI%3BICtFJ%2CeAAA%3BIACA%2CeAAA%3BIDqF0B%3B%3BEAC1B%3BEAAI%3BICvFJ%2CeAAA%3BIACA%2CiBAAA%3BIDsF0B%3B%3BEAC1B%3BEAAI%3BICxFJ%2CeAAA%3BIACA%2CiBAAA%3BIDuF0B%3B%3BEAC1B%3BEAAI%3BICzFJ%2CeAAA%3BIACA%2CeAAA%3BIDwF0B%3B%3BEAC1B%3BEAAI%3BIC1FJ%2CeAAA%3BIACA%2CiBAAA%3BIDyF0B%3B%3BEAC1B%3BEAAI%3BIC3FJ%2CeAAA%3BIACA%2CiBAAA%3BID0F0B%3B%3BEAC1B%3BIC5FA%2CeAAA%3BIACA%2CiBAAA%3BID2FoB%3B%3B%3BAAiBxB%2CKAAK%3BAACL%2CKAAK%3BAACL%2CKAAK%3BAACL%2CKAAK%3BAACL%2CKAAK%3BAACL%3BAACA%3BEACI%3BEACA%3BEACA%3BECjHA%2C0BAAA%3BEACA%2CuBAAA%3BEACA%2CkBAAA%3BEDiHA%2CWAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CyBAAA%3BEC9HA%2CeAAA%3BEACA%2CiBAAA%3BED%2BHA%2CyBAAA%3B%3B%3BAAIJ%3BEACI%2CsBAAsB%2CmCAAtB%3BEACA%2CiCAAA%3BEACA%3BEACA%3BEACA%3B%3BAAGJ%2CMAAM%3BEAAe%3B%3BAACrB%2CMAAM%2CIAAI%2CYAAY%3BEAAS%3B%3BAAE%5C%2FB%3BEAAW%3BEAAe%3B%3BAAE1B%2CKAAK%2CaAAa%3BAAClB%2CKAAK%2CYAAY%3BAACjB%2CKAAK%2CcAAc%3BAACnB%2CKAAK%2CeAAe%3BAACpB%2CKAAK%2CiBAAiB%3BAACtB%2CKAAK%2CeAAe%3BAACpB%2CMAAM%3BAACN%2CQAAQ%3BAACR%2CKAAK%2CaAAa%3BAAClB%2CKAAK%2CYAAY%3BAACjB%2CKAAK%2CcAAc%3BAACnB%2CKAAK%2CeAAe%3BAACpB%2CKAAK%2CiBAAiB%3BAACtB%2CKAAK%2CeAAe%3BAACpB%2CMAAM%3BAACN%2CQAAQ%3BEAAU%3BEAAe%3B%3BAAEjC%3BEAA8B%2CcAAA%3BEAA0B%2CgBAAA%3BEClKpD%2CeAAA%3BEACA%2CiBAAA%3B%3BADkKJ%3BEAAoB%2CcAAA%3BEAA0B%2CgBAAA%3BECnK1C%2CeAAA%3BEACA%2CiBAAA%3B%3BADmKJ%3BEAAqB%2CcAAA%3BEAA0B%2CgBAAA%3BECpK3C%2CeAAA%3BEACA%2CiBAAA%3B%3BADoKJ%3BEAAyB%2CcAAA%3BEAA0B%2CgBAAA%3BECrK%5C%2FC%2CeAAA%3BEACA%2CiBAAA%3B%3BADsKJ%2CKAAK%2CMAAM%3BEAA8B%3B%3BAACzC%2CKAAK%2CMAAM%3BEAA0B%3B%3BAACrC%2CKAAK%2CMAAM%3BEAA2B%3B%3BAACtC%2CKAAK%2CMAAM%3BEAA0B%3B%3BAAErC%3BEAAI%2CcAAA%3BEAAoB%3B%3BAACxB%2CCAAC%3BAAAQ%2CCAAC%3BEAAU%2CcAAA%3BEAA0B%3B%3BAAE9C%2CCAAC%3BEAAS%3B%3BAAEV%3BEAAsB%2CcAAA%3B%3BAACtB%3BEAAsB%2CcAAA%3B%3BAAEtB%3BEAAI%3BEAAe%3B%3BAAEnB%3BEAAK%3BEAAgB%3BEAAc%2CgCAAA%3BEAAoC%3BEAAmB%3B%3BAAE1F%3BEAAI%3BEAAoB%3B%3BAACxB%3BAAAG%3BAAAQ%3BEAAQ%2CgBAAA%3B%3BAACnB%3BAAAM%3BAAAK%3BEAAK%3B%3BAAChB%3BEAAS%3BEAAc%2CWAAA%3BEAAoB%3B%3BAAE3C%2CQAAS%2CGAAG%3BAACZ%2CQAAS%2CGAAG%3BEACR%3B%3BAAGJ%2CQAAS%2CGAAG%2CGAAE%3BAACd%2CQAAS%2CGAAG%2CGAAE%3BEACV%3B%3BAAGJ%2CQAAS%2CGAAE%3BEACP%3B%3BAAGJ%3BEACI%2CaA1KQ%2CuBA0KR%3BEC5MA%2CeAAA%3BEACA%2CeAAA%3BED6MA%2CcAAA%3BEACA%2CgBAAA%3BEACA%3BEACA%3BEACA%2CiBAAA%3BEACA%3B%3B%3B%3B%3B%3B%3B%3BAAiBJ%3BAAAqB%3BEACnB%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAEF%2CaAAc%3BEAAK%3B%3BAACnB%2CaAAc%3BEAAG%2CcAAA%3BEChPb%2CeAAA%3BEACA%2CeAAA%3B%3BADgPJ%2CaAAc%2CEAAC%3BEAAQ%2CcAAA%3B%3B%3B%3B%3BAAKvB%3BAAAM%2CKAAK%3BAAquBX%2CcAkPI%2CcAAc%3BEAt9Bd%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEC3PA%2C0BAAA%3BEACA%2CuBAAA%3BEACA%2CkBAAA%3BED2PA%2CyBAAA%3BEACA%3BEACA%2CcAAA%3BEACA%3BEACA%2CkBAAA%3BEC5MA%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECiIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3BEF0E9D%2CgBAAA%3BECxQA%2CeAAA%3BEACA%2CiBAAA%3BEDyQA%2CWAAW%2CYAAX%3B%3BAApBJ%2CIAsBI%3BAAtBE%2CKAAK%2CeAsBP%3BAA%2BsBJ%2CcAkPI%2CcAAc%2CQAj8Bd%3BEACI%3BEACA%2CWAAW%2CWAAX%3B%3BAAIR%2CIAAI%3BAACJ%2CKAAK%2CeAAe%3BAAwsBpB%2CcAkPI%2CcAAc%2CQA37Bd%3BEAEA%2CyBAAA%3BEACA%2CcAAA%3B%3BAAIJ%2CIAAI%2CMACJ%2CKAAI%3BAAisBJ%2CcAkPI%2CcAAc%2CQAp7Bd%2CMAksBJ%2CeAkPI%2CcAAc%2CQAn7Bd%3BEACA%3B%3BAAGJ%2CIAAI%3BAA6rBJ%2CcAkPI%2CcAAc%2CQA%5C%2F6Bd%3BEACA%2CyBAAA%3BEACA%2CcAAA%3B%3BAACA%2CIAHA%2CUAGC%3BAA0rBL%2CcAkPI%2CcAAc%2CQA%5C%2F6Bd%2CUAGC%3BEACG%2CyBAAA%3BEACA%2CcAAA%3BEACA%2C%2BFAAA%3BEACA%2C4FAAA%3BEACA%2CuFAAA%3B%3BAAIR%2CIAAI%3BAAirBJ%2CcAkPI%2CcAAc%2CQAn6Bd%3BEACA%3BEACA%2CcAAA%3BEACA%3BEACA%3B%3BAAJJ%2CIAAI%2CWAMA%3BAA2qBJ%2CcAkPI%2CcAAc%2CQAn6Bd%2CWAMA%3BEACI%3BEACA%3B%3BAAGJ%2CIAXA%2CWAWC%3BAAsqBL%2CcAkPI%2CcAAc%2CQAn6Bd%2CWAWC%3BEACG%2CSAAS%2COAAT%3BECtTJ%2CeAAA%3BEACA%2CeAAA%3BEDuTI%2CaApRM%2CoBAoRN%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BECrQJ%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECiIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3BAFqI9D%2CIAzBA%2CWAyBC%3BAAwpBL%2CcAkPI%2CcAAc%2CQAn6Bd%2CWAyBC%3BEACG%2CcAAA%3B%3BAAGJ%2CIA7BA%2CWA6BC%2CMAAM%3BAAopBX%2CcAkPI%2CcAAc%2CQAn6Bd%2CWA6BC%2CMAAM%3BEACH%2CcAAA%3BEACA%3B%3BAAIR%2CIAAI%3BAA8oBJ%2CcAkPI%2CcAAc%2CQAh4Bd%3BEACA%3BEACA%2CcAAA%3BEACA%3B%3BAAHJ%2CIAAI%2CeAKA%3BAAyoBJ%2CcAkPI%2CcAAc%2CQAh4Bd%2CeAKA%3BEACI%3BEACA%3B%3BAAGJ%2CIAVA%2CeAUC%3BAAooBL%2CcAkPI%2CcAAc%2CQAh4Bd%2CeAUC%3BEACG%2CSAAS%2COAAT%3BECxVJ%2CeAAA%3BEACA%2CeAAA%3BEDyVI%2CaAtTM%2CoBAsTN%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BECvSJ%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECiIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3BAFuK9D%2CIAxBA%2CeAwBC%3BAAsnBL%2CcAkPI%2CcAAc%2CQAh4Bd%2CeAwBC%3BEACG%2CcAAA%3B%3BAAGJ%2CIA5BA%2CeA4BC%2CMAAM%3BAAknBX%2CcAkPI%2CcAAc%2CQAh4Bd%2CeA4BC%2CMAAM%3BEACH%2CcAAA%3BEACA%3B%3BAAIR%2CIAAI%3BAA4mBJ%2CcAkPI%2CcAAc%2CQA91Bd%3BEACA%3BEChXA%2CeAAA%3BEACA%2CiBAAA%3BEDiXA%2CcAAA%3BEACA%3BEACA%3B%3BAALJ%2CIAAI%2CiBAOA%3BAAqmBJ%2CcAkPI%2CcAAc%2CQA91Bd%2CiBAOA%3BEACI%3BEACA%3B%3BAAGJ%2CIAZA%2CiBAYC%3BAAgmBL%2CcAkPI%2CcAAc%2CQA91Bd%2CiBAYC%3BEACG%2CcAAA%3B%3BAAIR%2CIAAI%3BAA2lBJ%2CcAkPI%2CcAAc%2CQA70Bd%3BEACA%3BECjYA%2CeAAA%3BEACA%2CiBAAA%3BEDkYA%2CcAAA%3BEACA%3BEACA%3B%3BAALJ%2CIAAI%2CkBAOA%3BAAolBJ%2CcAkPI%2CcAAc%2CQA70Bd%2CkBAOA%3BEACI%3BEACA%3B%3BAAGJ%2CIAZA%2CkBAYC%3BAA%2BkBL%2CcAkPI%2CcAAc%2CQA70Bd%2CkBAYC%3BEACG%2CcAAA%3B%3BAAIR%2CIAAI%3BAA0kBJ%2CcAkPI%2CcAAc%2CQA5zBd%3BEACA%3BEACA%2CcAAA%3BEACA%3BEACA%3B%3BAAJJ%2CIAAI%2CYAMA%3BAAokBJ%2CcAkPI%2CcAAc%2CQA5zBd%2CYAMA%3BEACI%3BEACA%3B%3BAAGJ%2CIAXA%2CYAWC%3BAA%2BjBL%2CcAkPI%2CcAAc%2CQA5zBd%2CYAWC%3BEACG%2CSAAS%2COAAT%3BEC7ZJ%2CeAAA%3BEACA%2CeAAA%3BED8ZI%2CaA3XM%2CoBA2XN%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEC5WJ%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECiIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3BAF4O9D%2CIAzBA%2CYAyBC%3BAAijBL%2CcAkPI%2CcAAc%2CQA5zBd%2CYAyBC%3BEACG%2CcAAA%3B%3BAAGJ%2CIA7BA%2CYA6BC%2CMAAM%3BAA6iBX%2CcAkPI%2CcAAc%2CQA5zBd%2CYA6BC%2CMAAM%3BEACH%2CcAAA%3BEACA%3B%3BAAIR%2CeAAe%3BAACf%2CeAAe%3BEACX%2CyBAAA%3BEACA%2CqBAAA%3BEACA%2CcAAA%3B%3BAAWJ%2CQAR2B%3BEACvB%3BEACA%2CKAAK%3BEA8hBT%2CcAkPI%2CcAAc%3BIC7sCd%2CeAAA%3BIACA%2CiBAAA%3BID8bI%3B%3B%3BAAIR%3BEACI%3BEACA%2CgBAAA%3B%3BAAFJ%2CWAII%3BECvcA%2CeAAA%3BEACA%2CiBAAA%3BEDwcI%3BEACA%3BEChZJ%2C6CAAA%3BEACA%2C0CAAA%3BEACA%2CwCAAA%3BEACA%2CqCAAA%3B%3BADiZA%2CWAAC%2CMACG%3BEACI%3B%3BAAKZ%3BEACI%2CaApbQ%2CuBAobR%3BEACA%2CgBAAA%3BEACA%3BEACA%2CcAAA%3BEACA%3BEACA%3BEACA%3BEC5dA%2CeAAA%3BEACA%2CiBAAA%3B%3BAD%2BdJ%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACE%3BIACE%3BIACA%2CmBAAmB%2CwBAAnB%3BIACA%2CWAAW%2CwBAAX%3B%3BEAGF%3BIACE%3BIACA%3BIACA%3B%3B%3BAAIJ%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAAGJ%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BECzXA%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAkGA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3BEApBA%2C%2BBAAA%3BEACA%2C2BAAA%3BEACA%2CuBAAA%3BEDwSA%3BECzcA%2CmBD0cW%2CgBC1cX%3BEACA%2CgBDycW%2CgBCzcX%3BEACA%2CcDwcW%2CgBCxcX%3BEACA%2CeDucW%2CgBCvcX%3BEACA%2CWDscW%2CgBCtcX%3BEDucA%3BEC9gBA%2CeAAA%3BEACA%2CeAAA%3B%3BADghBA%2CYAAC%3BEACG%2CcAAA%3BEACA%3BEACA%2CaAhfM%2CoBAgfN%3BEACA%2CgBAAA%3B%3BAAGJ%2CYAAC%3BEACG%3B%3BAAGJ%2CYAAC%3BEACG%3B%3BAAGJ%2CYAAC%2CWAAW%3BEACR%2CSAAS%2COAAT%3B%3BAAGJ%2CYAAC%2CWAAW%3BEACR%2CSAAS%2COAAT%3B%3BAASJ%2CQAN2B%3BEAM3B%3BIALI%3BIACA%3BIC1iBJ%2CeAAA%3BIACA%2CiBAAA%3B%3B%3BADkjBJ%2CQAL%2BB%3BEAK%5C%2FB%3BIAJQ%3BIACA%3BIChjBJ%2CeAAA%3BIACA%2CiBAAA%3B%3B%3BADojBJ%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAALJ%2CWAOI%3BEACI%3BEACA%2CaAAA%3B%3BAATR%2CWAYI%3BEACI%2CmBAAA%3BEACA%3BEACA%3BEACA%2CyBAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAtBR%2CWAyBI%2CGAAE%2CaAAc%3BEACZ%2CqBAAA%3B%3BAAIR%2CEAAE%2CUAEE%3BAADJ%2CEAAE%2CUACE%3BEACI%3BEACA%3BEACA%3B%3BAALR%2CEAAE%2CUAQE%2CGAAE%3BAAPN%2CEAAE%2CUAOE%2CGAAE%3BEACE%2CSAAS%2COAAT%3BEACA%2CaAzjBM%2CoBAyjBN%3BEACA%2CcAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CgBAAA%3B%3BAAhBR%2CEAAE%2CUAmBI%2CKAAE%3BAAlBR%2CEAAE%2CUAkBI%2CKAAE%3BEACA%3B%3BAAKR%2CCAAC%2CWAAW%3BEACR%2CSAAS%2COAAT%3BEACA%2CaA1kBU%2CoBA0kBV%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CgBAAA%3BEACA%3BEACA%3BEACA%3BEACA%2CcAAA%3B%3BAAIJ%2CCAAC%3BAAAa%2CCAAC%3BEACX%2CcAAA%3B%3BAAGJ%2CCAAC%2CWAAW%3BEACR%2CSAAS%2COAAT%3BEACA%2CaA7lBU%2CoBA6lBV%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CgBAAA%3BEACA%3BEACA%3BEACA%3BEACA%2CcAAA%3BEACA%2CWAAW%2CUAAX%3B%3BAAGJ%2CCAAC%3BEC%5C%2FfG%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BED8fA%3BEACA%2CcAAA%3B%3BAAGJ%2CCAAC%2CaAAa%3BEACV%2CSAAS%2COAAT%3BEACA%2CaAlnBU%2CoBAknBV%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CgBAAA%3BEACA%3BEACA%2CcAAA%3BEACA%3B%3BAAGJ%2CCAAC%3BEACG%2CcAAA%3BEACA%3BEACA%3BECpqBA%2CeAAA%3BEACA%2CiBAAA%3BEDqqBA%2CgBAAA%3BEACA%3B%3BAACA%2CCAPH%2CcAOI%3BEACG%2CSAAS%2COAAT%3BEACA%2CaAtoBM%2CoBAsoBN%3BEC1qBJ%2CeAAA%3BEACA%2CiBAAA%3BED2qBI%3BEACA%3BEACA%3B%3BAAIR%2CCAAC%3BEACG%3BEACA%2CcAAA%3BEACA%3BEACA%3B%3BAACA%2CCALH%2CcAKI%3BEACG%2CSAAS%2COAAT%3BEACA%2CaArpBM%2CoBAqpBN%3BECzrBJ%2CeAAA%3BEACA%2CiBAAA%3BED0rBI%3B%3BAATR%2CCAAC%2CcAWG%3BEACI%3B%3BAAIR%2CSAEI%3BAADJ%2CWACI%3BEACI%3BEACA%3B%3BAAJR%2CSAOI%3BAANJ%2CWAMI%3BEC1jBA%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEDyjBI%3B%3BAATR%2CSAYI%3BAAXJ%2CWAWI%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BECptBJ%2CeAAA%3BEACA%2CiBAAA%3BEDqtBI%3BEACA%2CcAAA%3B%3BAAIR%3BEACI%2CcAAA%3BEACA%2CyBAAA%3B%3BAAFJ%2CkBAII%3BEACI%2CcAAA%3B%3BAALR%2CkBAQI%3BEACI%2CcAAA%3B%3BAATR%2CkBAYI%2CEAAC%3BEACG%3B%3BAAIR%3BEACI%2CcAAA%3BEACA%2CyBAAA%3B%3BAAFJ%2CiBAII%3BEACI%2CcAAA%3B%3BAALR%2CiBAQI%3BEACI%2CcAAA%3B%3BAATR%2CiBAYI%2CEAAC%3BEACG%2CcAAA%3B%3BAAIR%3BEC7vBI%2CeAAA%3BEACA%2CiBAAA%3BED8vBA%3BEACA%3BEACA%2CcAAA%3B%3BAAGJ%3BECpwBI%2CeAAA%3BEACA%2CiBAAA%3BEDqwBA%3BEACA%3BEACA%2CcAAA%3B%3BAAGJ%3BEC3wBI%2CeAAA%3BEACA%2CiBAAA%3B%3BAD8wBJ%3BEC%5C%2FwBI%2CeAAA%3BEACA%2CiBAAA%3B%3BADkxBJ%3BEACI%2CyBAAA%3BEACA%2CcAAA%3B%3BAAFJ%2CiBAII%3BEACI%2CcAAA%3B%3BAALR%2CiBAQI%3BEACI%2CcAAA%3B%3BAAIR%2CmBACI%3BEACI%3BEACA%3BEACA%3B%3BAAIR%3BEACI%2CyBAAA%3BEACA%3BEACA%3B%3BAAHJ%2CoBAII%3BEACI%3BEACA%3B%3BAAIR%2CoBAAqB%3BEACjB%2CWAAW%2C2CAAX%3BEACA%3B%3BAAGJ%3BEACI%2CyBAAA%3BEACA%3BEACA%3B%3BAAHJ%2CmBAII%3BEACI%3B%3BAAIR%2CoBAAqB%3BEACjB%2CWAAW%2C2CAAX%3BEACA%3B%3BAAGJ%2CaAAa%3BEACT%2CSAAS%2CEAAT%3BEACA%3BEACA%2CyBAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CWAAW%2CmCAAX%3B%3BAAGJ%2CcAAc%3BEACV%2CSAAS%2CEAAT%3BEACA%3BEACA%2CyBAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CWAAW%2CmCAAX%3BEACA%3B%3BAAGJ%2CaAAa%3BEACT%2CSAAS%2CEAAT%3BEACA%3BEACA%2CyBAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CWAAW%2CmCAAX%3BEACA%3B%3BAAGJ%3BEACI%3BEACA%3B%3BAAGJ%3BEACI%3B%3BAAGJ%2CcAAe%3BEC72BX%2C2BAAA%3BEACA%2CwBAAA%3BEACA%2CmBAAA%3B%3BAD%2B2BJ%2CEAAE%2CkBACE%3BEACI%3BEACA%3B%3BAAHR%2CEAAE%2CkBAME%2CGAAE%3BEACE%2CSAAS%2CEAAT%3BEACA%3BEACA%2C6DAAA%3BEACA%3BECj1BJ%2CWAAA%3BEACA%2CYAAA%3BEDk1BI%3BEACA%3B%3BAAIR%3BEACI%3BEACA%3B%3BAAGJ%3BEACE%3BEACA%2CcAAA%3BEACA%2CgBAAA%3BEACA%3BEACA%3BEACA%3B%3BAAIF%2COAAQ%3BEACJ%3B%3BAAKJ%2CQAH%2BB%3BEAG%5C%2FB%2COANQ%3BIAIA%3B%3B%3BAAIR%3BEACI%3BEACA%3B%3B%3B%3B%3BAASJ%2CiBAAiB%2CIAAI%3BAACrB%2CcAAc%2CIAAI%3BAAClB%2CiBAAiB%3BAACjB%2CcAAc%3BEAAW%3BEAAoB%3BEAAY%3BEAAY%3BEAAc%3B%3BAAEnF%2CiBAAiB%2CIAAI%2CUAAa%3BAAClC%2CcAAc%2CIAAI%2CUAAa%3BAAC%5C%2FB%2CiBAAiB%2CQAAW%3BAAC5B%2CcAAc%2CQAAW%3BEAAQ%3BEAAoB%3BEAAoB%3BECj7BrE%2CeAAA%3BEACA%2CiBAAA%3B%3B%3BADm7BJ%2CiBAAiB%2CIAAI%2CUAAa%2CQAAK%3BAACvC%2CcAAc%2CIAAI%2CUAAa%2CQAAK%3BAACpC%2CiBAAiB%2CQAAW%2CQAAK%3BAACjC%2CcAAc%2CQAAW%2CQAAK%3BEAAU%2CSAAS%2CEAAT%3BEAAa%3BEAAoB%3BEAAQ%3BECx4B7E%2CWAAA%3BEACA%2CYAAA%3BEDu4BuG%2CyBAAA%3BEAAyB%3BEAAkB%3B%3BAAEtJ%2CcAAc%2CIAAI%2CUAAa%2CQAAK%3BAACpC%2CcAAc%2CQAAW%2CQAAK%3BECr7B1B%2C6BAAA%3BEACA%2C0BAAA%3BEACA%2CqBAAA%3B%3B%3BADs7BJ%2CiBAAiB%2CIAAI%2CUAAa%2CQAAK%3BAACvC%2CcAAc%2CIAAI%2CUAAa%2CQAAK%3BAACpC%2CiBAAiB%2CQAAW%2CQAAK%3BAACjC%2CcAAc%2CQAAW%2CQAAK%3BEAAS%2CSAAS%2COAAT%3BEAAkB%2CaA55B3C%2CoBA45B2C%3BEAA2B%3BEAAoB%3BEAAU%3BECh8B9G%2CeAAA%3BEACA%2CiBAAA%3BED%2B7ByI%3BEAAkB%2CcAAA%3BECt4B3J%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECiIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3B%3BAFowBlE%2CiBAAiB%2CQAAW%2CQAAK%3BAACjC%2CcAAc%2CQAAW%2CQAAK%3BEAAU%3B%3B%3BAAExC%2CcAAc%2CIAAI%2CUAAa%2CQAAK%3BAACpC%2CcAAc%2CQAAW%2CQAAK%3BEAAS%2CSAAS%2CEAAT%3BEAAc%3BEAAU%3BECv5B3D%2CWAAA%3BEACA%2CYAAA%3BEDs5BqF%2CyBAAA%3BECj8BrF%2C6BAAA%3BEACA%2C0BAAA%3BEACA%2CqBAAA%3B%3B%3BADi8BJ%2CiBAAiB%2CIAAI%2CUAAa%2CQAAK%3BAACvC%2CcAAc%2CIAAI%2CUAAa%2CQAAK%3BEAAS%3B%3BAAE7C%2CiBAAiB%2CQAAW%2CQAAK%3BAACjC%2CeAAe%2CQAAW%2CQAAK%3BEAAS%3B%3B%3BAAexC%3BEACI%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3BEACA%2CaA77BQ%2CuBA67BR%3BEC19BA%2C0BAAA%3BEACA%2CuBAAA%3BEACA%2CkBAAA%3B%3BADo9BJ%2CcAOI%3BEACI%3B%3BAARR%2CcAWI%3BAAXJ%2CcAwGI%2CcAKI%3BAA7GR%2CcAyGI%2CeAII%3BAA7GR%2CcA0GI%2CaAGI%3BECxkCJ%2CeAAA%3BEACA%2CiBAAA%3BEDu%2BBI%2CgBAAA%3BEACA%2CcAAA%3BEACA%3BEACA%3BEACA%3B%3BAAjBR%2CcAoBI%3BEACI%3BEACA%3BEACA%3B%3BAAvBR%2CcA0BI%2CGAAG%3BEAAK%3BEAAqB%3B%3BAA1BjC%2CcA6BI%3BAA7BJ%2CcA6BgB%3BEACR%3BEACA%3BEACA%3B%3BAAhCR%2CcAmCI%3BEACI%3B%3BAApCR%2CcAuCI%3BEACI%3B%3BAAxCR%2CcA4CI%3BAA5CJ%2CcA6CI%3BAA7CJ%2CcA8CI%3BEACI%3BEACA%3BEACA%3B%3BAAjDR%2CcAoDI%3BEACI%3B%3BAArDR%2CcAwDI%3BEACI%3BEACA%3B%3BAA1DR%2CcA6DI%3BEACI%3B%3BAA9DR%2CcAiEI%2CeACI%3BAAlER%2CcAiEI%2CeAEI%3BEACI%3B%3BAApEZ%2CcAwEI%2CaAAa%3BEACT%2CgBAAA%3B%3BAAzER%2CcA4EI%2CGAAE%2CgBACE%3BEACI%3B%3BAA9EZ%2CcAkFI%2CGAAE%2CaACE%3BEACI%3BEACA%3BEACA%3B%3BAAtFZ%2CcA0FI%3BAA1FJ%2CcA2FI%3BEACI%3BEACA%3B%3BAA7FR%2CcA0FI%2CgBAKI%3BAA%5C%2FFR%2CcA2FI%2CgBAII%3BEACI%3B%3BAAhGZ%2CcAoGI%3BEACI%3B%3BAArGR%2CcAwGI%3BAAxGJ%2CcAyGI%3BAAzGJ%2CcA0GI%3BEACI%3B%3BAA3GR%2CcAkHI%3BEACI%3BEACA%3B%3BAApHR%2CcAuHI%3BEACI%3BEACA%3BEACA%3B%3BAA1HR%2CcA6HI%3BEACI%3BEACA%3B%3BAA%5C%2FHR%2CcAkII%2CkBAAkB%3BEACd%3BEACA%3BEACA%3B%3BAArIR%2CcAwII%3BEACI%2CgCAAA%3BEACA%3B%3BAA1IR%2CcA6II%3BEACI%3B%3BAA9IR%2CcAiJI%2CkBAAkB%2CkBAAkB%3BEC5mCpC%2CeAAA%3BEACA%2CiBAAA%3B%3BAD09BJ%2CcAqJI%3BEACI%3B%3BAAtJR%2CcAyJI%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CyBAAA%3BEC1nCJ%2C0BAAA%3BEACA%2CuBAAA%3BEACA%2CkBAAA%3BED0nCI%3BEACA%3BEACA%2CqBAAA%3BECnoCJ%2CeAAA%3BEACA%2CiBAAA%3BEDooCI%3BEACA%2CcAAA%3BEACA%3BEACA%3B%3BAA7KR%2CcAgLI%2CIAAG%2CsBAAyB%2CMAAG%3BEAC3B%3B%3BAAjLR%2CcAoLI%3BEACI%3BEACA%3BEACA%2CcAAA%3BEACA%2CgBAAA%3B%3BAAxLR%2CcAoLI%2CgBAMI%3BEACI%3BEACA%3BEACA%3B%3BAAGJ%2CcAZJ%2CgBAYK%3BEACG%2CSAAS%2COAAT%3BEACA%2CaAznCE%2CoBAynCF%3BEACA%3BEC9pCR%2CeAAA%3BEACA%2CiBAAA%3BED%2BpCQ%2CgBAAA%3BEACA%3BEACA%3BEACA%3BEChmCR%2CmBDimCmB%2CgBCjmCnB%3BEACA%2CgBDgmCmB%2CgBChmCnB%3BEACA%2CcD%2BlCmB%2CgBC%5C%2FlCnB%3BEACA%2CeD8lCmB%2CgBC9lCnB%3BEACA%2CWD6lCmB%2CgBC7lCnB%3BED8lCQ%3B%3BAA1MZ%2CcAoLI%2CgBAyBI%3BEACI%3BEACA%2CcAAA%3BEACA%2CgBAAA%3B%3BAAhNZ%2CcAqNI%2CMAAK%3BAArNT%2CcAsNI%2CMAAK%3BAAtNT%2CcAuNI%2CMAAK%3BAAvNT%2CcAwNI%2CMAAK%3BAAxNT%2CcAyNI%2CMAAK%3BAAzNT%2CcA0NI%3BAA1NJ%2CcA2NI%3BEAAW%3B%3BAA3Nf%2CcA6NI%3BEACI%3BEACA%3B%3BAA%5C%2FNR%2CcAkOI%3BEACI%2CcAAA%3BEACA%3B%3BAApOR%2CcAuOI%3BAAvOJ%2CcAwOI%3BEACI%3BEACA%3B%3BAA1OR%2CcA6OI%3BEACI%3BEACA%3B%3BAA%5C%2FOR%2CcAkPI%2CcAAc%3BEAEV%3BEACA%3BEACA%3BEACA%3BEAIA%2CcAAA%3B%3BAA3PR%2CcAkPI%2CcAAc%2CQAMV%3BEACI%2CWAAW%2CWAAX%3B%3BAA%2BDR%2CQArD%2BB%3BEAC3B%2CCAAI%3BEAAG%2CEAAK%3BEAAG%2CEAAK%3BEAAG%2CEAAK%3BEAAG%2CEAAK%3BEAAG%2CEAAK%3BIACxC%3B%3BEAmDR%2CcAhDI%3BEAgDJ%2CcA%5C%2FCI%3BEA%2BCJ%2CcA9CI%3BEA8CJ%2CcA7CI%3BEA6CJ%2CcA5CI%3BEA4CJ%2CcA3CI%3BIACI%3BIACA%3BIACA%3BIACA%3B%3BEAuCR%2CcApCI%2CGAAG%3BIACC%3B%3BEAmCR%2CcAhCI%3BEAgCJ%2CcA%5C%2FBI%3BEA%2BBJ%2CcA9BI%3BIACI%3B%3BEA6BR%2CcAtBI%3BIACI%3B%3BEAqBR%2CcAlBI%3BIACI%3BIACA%3B%3BEAgBR%2CcAbI%3BIACI%3BIACA%3BIACA%3B%3BEAUR%2CcAPI%3BIACI%3BIACA%3BIACA%3B%3B%3BAAiCR%2CQA7B4B%3BEA6B5B%3BIA5BI%2CuBAAA%3B%3BEA4BJ%2CcA1BI%3BIACI%3BIACA%3BIACA%3B%3BEAuBR%2CcApBI%3BIACI%3BIACA%3BIACA%3B%3BEAiBR%2CcAdI%2CeACI%3BEAaR%2CcAdI%2CeAEI%3BIACI%3B%3BEAWZ%2CcAPI%2CkBAAkB%3BIACd%3BIACA%3BIACA%3B%3B%3BAASZ%2CQAL8B%3BEAK9B%2CcAJQ%2CkBAAoB%3BIAChB%3B%3B%3B%3B%3B%3BAAQZ%2CGAAG%3BEACC%2CiBAAA%3B%3BAADJ%2CGAAG%2CkBAGC%3BEC7zCA%2CeAAA%3BEACA%2CeAAA%3BED8zCI%3BEChrCJ%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAyBA%2CyBAAA%3BEACA%2CqBAAA%3BEACA%2CiBAAA%3BECnHS%3BEAAyB%3BEAAqB%3B%3BAFgwC3D%2CGAAG%2CkBAGC%2CYAMI%3BEACI%3BEACA%2C8BAAA%3BEACA%2C6BAAA%3BEACA%2CgCAAA%3BECxxCR%2CWAAA%3BEACA%2CYAAA%3BEDyxCQ%3BEACA%2CcAAA%3B%3BAAEA%2CGAlBT%2CkBAGC%2CYAMI%2CcASK%3BEACG%2CyBAAA%3BEACA%2CcAAA%3B%3BAAGJ%2CGAvBT%2CkBAGC%2CYAMI%2CcAcK%3BEACG%2CyBAAA%3BEACA%2CcAAA%3B%3BAAzBhB%2CGAAG%2CkBAGC%2CYA0BI%3BAA7BR%2CGAAG%2CkBAGC%2CYA2BI%3BECx1CJ%2CeAAA%3BEACA%2CiBAAA%3BEDy1CQ%2CcAAA%3B%3BAAEA%2CGAlCT%2CkBAGC%2CYA0BI%2CMAKK%3BAAAD%2CGAlCT%2CkBAGC%2CYA2BI%2CMAIK%3BEACG%2CyBAAA%3B%3BAAnChB%2CGAAG%2CkBAGC%2CYAoCI%3BEACI%2C%2BBAAA%3B%3BAAxCZ%2CGAAG%2CkBAGC%2CYAwCI%3BEACI%2C8BAAA%3B%3BAA5CZ%2CGAAG%2CkBAGC%2CYA4CI%2CcAAa%3BEACT%3BEACA%3BEACA%3B%3BAAEA%2CGApDT%2CkBAGC%2CYA4CI%2CcAAa%2CKAKR%3BEACG%3BEACA%2CcAAA%3B%3BAAMhB%2CGAAG%3BEACC%3BEACA%3BEACA%2C6BAAA%3BEACA%3B%3BAAJJ%2CGAAG%2CgBAMC%2CGAAE%3BEACE%3BEACA%3BEACA%3B%3BAATR%2CGAAG%2CgBAYC%3BEACI%3B%3BAAbR%2CGAAG%2CgBAYC%2CWAGI%3BEACI%3B%3BAAhBZ%2CGAAG%2CgBAYC%2CWAOI%3BEACI%3B%3BAAUZ%2CQAL2B%3BEACvB%2CGAAG%3BIACC%2CmBAAA%3B%3B%3B%3B%3B%3B%3B%3B%3BAE74CR%3BEAAI%3BEAAgC%3BEAA6B%3B%3BAACjE%3BEAAO%3BEAAoB%3BEAAkB%3BEAAgC%3BEAA4B%3B%3B%3BAAUzG%3BAAAiB%3BEAAmB%3B%3BAACpC%3BAAAY%3BAAAO%3BEAAa%3B%3BAAChC%3BAAAa%3BAAAQ%3BEAAc%3B%3BAACnC%3BAAAW%3BEAAc%3B%3BAACzB%3BEAAS%3B%3BAACT%3BEAAS%3BEAAgB%3BEAAqB%3BEAAa%3B%3BAAC3D%2CMAAM%3BEAAe%3B%3BAACrB%3BEAAa%3B%3BAACb%3BEAAc%3B%3BAACd%3BEAAU%3B%3BAACV%3BEAAY%3B%3BAACZ%3BEAAY%3B%3BAACZ%3BEAAS%3B%3BAACT%2CSAAS%3BAAAO%2CMAAM%3BEAAQ%3BEAAS%3BEAAU%3BEAAQ%3BEAAW%3BEAAa%3B%3BAACjF%2CSAAS%3BEAAQ%3BEAAa%3B%3BAAC9B%3BAAAS%3BEAAQ%3B%3BAACjB%3BEAAiB%3B%3BAACjB%3BEAAU%3B%3BAACV%3BEAAgB%3B%3BAAChB%3BEAAkB%3B%3BAAClB%3BEAAa%3B%3BAACb%3BEAAW%3B%3BAACX%3BAAAe%3BEAAY%3B%3BAAC3B%3BAAAe%3BEAAY%3B%3BAAC3B%3BAAAkB%3BEAAe%3B%3BAACjC%3BAAAkB%3BEAAoB%3BEAAyB%3BEAAsB%3BEAAiB%3BEAA0B%3BEAAuB%3B%3BAACvJ%3BEAAa%3B%3BAACb%3BEAAa%3B%3BAACb%3BEAAa%3B%3BAACb%3BEAAa%3B%3BAACb%3BEAAa%3B%3BAACb%3BEAAe%3B%3BAACf%3BEAAe%3B%3BAACf%3BEAAe%3B%3BAACf%2CSAAS%3BAACT%2CSAAS%3BEAAQ%2CSAAS%2CGAAT%3BEAAc%3B%3BAAC%5C%2FB%2CSAAS%3BEAAS%3B%3B%3B%3B%3BAAKlB%3BEAAQ%3BEAAsB%3BEAAsB%3B%3BAACpD%3BEAAe%3BEAA%2BB%3BEAA4B%3B%3BAAC1E%3BEAAa%3BEAAyB%3BEAAqB%3B%3BAAC3D%3BEAAe%3BEAAqB%3BEAAsB%3B%3BAAC1D%3BEAAe%3BEAAqB%3BEAAsB%3B%3BAAC1D%3BEAAe%3BEAAqB%3BEAAsB%3B%3BAAC1D%3BEAAc%3BEAA8B%3BEAA2B%3B%3BAACvE%3BEAAY%3BEAA4B%3BEAAyB%3B%3BAACjE%3BEAAkB%3BEAA0B%3BEAAuB%3B%3BAACnE%3BEAAoB%3BEAA%2BB%3BEAA4B%3B%3BAAC%5C%2FE%3BEAAkB%3BEAA6B%3BEAA0B%3B%3BAACzE%3BEAAqB%3BEAA2B%3BEAAwB%3B%3BAACxE%3BEAAiB%3BEAAiC%3BEAA8B%3B%3BAAChF%3BEAAgB%3BEAAgC%3BEAA6B%3B%3BAAC7E%3BEAAW%3BEAA6B%3BEAAmB%3B%3BAAC3D%3BEAAU%3BEAA6B%3BEAAkB%3B%3BAACzD%3BEAAU%3BEAA6B%3BEAAkB%3B%3BAACzD%3BEAAU%3BEAA6B%3BEAAkB%3B%3BAACzD%3BEAAU%3BEAA6B%3BEAAkB%3B%3BAACzD%3BEAAU%3BEAA6B%3BEAAkB%3B%3BAACzD%3BEAAU%3BEAA6B%3BEAAkB%3B%3BAACzD%3BEAAe%3B%3B%3BAAGf%3BEAAO%3B%3BAACP%3BEAAO%3B%3BAACP%3BEAAS%3B%3BAACT%3BEAAQ%3B%3BAACR%3BEAAQ%3B%3BAACR%3BEAAO%3B%3BAACP%3BEAAS%3B%3BAACT%3BEAAS%3B%3BAACT%3BEAAQ%3B%3BAACR%3BEAAO%3B%3BAACP%3BEAAU%3B%3BAACV%3BEAAU%3B%3BAACV%3BEAAY%3B%3BAACZ%3BEAAY%3B%3BAACZ%3BEAAW%3B%3BAACX%3BAAAU%3BEAAc%3B%3BAACxB%3BAAAS%3BEAAe%3B%3BAACxB%3BAAAa%3BAAAc%3BEAAe%3B%3BAAC1C%3BEAAU%3B%3BAACV%3BAAAc%3BAAAe%3BEAAgB%3B%3BAAC7C%3BAAAS%3BEAAS%3B%3BAAClB%3BAAAY%3BEAAc%3B%3BAAC1B%3BAAAQ%3BEAAc%3B%3BAACtB%3BEAAa%3B%3BAACb%3BEAAS%3B%3BAACT%3BAAAY%3BEAAc%3B%3BAAC1B%3BAAAW%3BEAAa%3B%3BAACxB%3BEAAW%3B%3BAACX%3BAAAc%3BEAAgB%3B%3BAAC9B%3BEAAU%3B%3BAACV%3BAAAa%3BEAAe%3B%3BAAC5B%3BEAAU%3B%3BAACV%3BAAAa%3BEAAe%3B%3BAAC5B%3BAAAU%3BEAAc%3B%3B%3B%3B%3BAAKxB%3BEAAU%3B%3BAACV%3BEAAgB%2CgBAAA%3B%3BAAChB%3BEAAiB%2CgBAAA%3B%3BAACjB%3BEAAoB%2CgBAAA%3B%3BAACpB%3BEAAe%2CgBAAA%3B%3BAACf%3BEAAqB%2CgBAAA%3B%3BAACrB%3BEAAgB%2CgBAAA%3B%3BAAChB%3BAAAW%3BEAAa%3B%3BAACxB%3BAAAY%3BEAAc%3B%3BAAC1B%3BAAAa%3BEAAe%3B%3BAAC5B%3BEAAiB%3B%3BAACjB%3BEAAiB%3B%3BAACjB%3BEAAmB%3B%3BAACnB%3BEAAmB%3B%3BAACnB%3BEAAmB%3B%3BAACnB%3BEAAmB%3B%3BAACnB%3BEAAmB%3B%3BAACnB%3BEAAmB%3B%3BAACnB%3BEAAmB%3B%3BAACnB%3BEAAmB%3B%3BAACnB%3BEAAmB%3B%3BAACnB%3BEAAiB%3B%3BAACjB%3BEAAa%3B%3BAACb%3BEAAgB%3B%3BAAChB%3BAAAY%3BEAAQ%3B%3BAACpB%3BAAAY%3BEAAS%3B%3BAACrB%3BAAAU%2CQAAS%3BAAAI%2CEAAE%2CQAAW%3BAFqapC%3BAA8BA%2CEAAE%3BAAAF%2CEAAE%2CUEnciB%3BAAAI%2CEFmcvB%2CEAAE%2CUEnckC%3BAFocpC%2CEAAE%3BAAAF%2CEAAE%2CUEpciB%3BAAAI%2CEFocvB%2CEAAE%2CUEpckC%3BEAAK%3BEAAkB%3BEAAuB%3BEAAW%3BEAAY%2CqGAAA%3B%3BAACzG%3BAAAc%3BEAAe%3B%3BAAC7B%3BEAAa%2CWAAA%3BEAAa%3BEAAoB%3BEAAsB%3BEAAmB%3BEAA%2BB%3B%3BAACtH%3BEAAU%3B%3B%3BAAGV%3BEAAa%3B%3BAACb%3BEAAiB%3B%3BAACjB%3BEAAoB%3B%3BAACpB%3BEAAe%3B%3BAACf%3BEAAoB%3B%3BAACpB%3BEAAqB%3B%3BAACrB%3BEAAmB%3B%3BAACnB%3BEAAsB%3B%3BAACtB%3BEAAc%3B%3BAACd%2CIAAK%3BEAAiB%3BEAAiB%3B%3B%3BAAGvC%3BEAAS%2CcAAA%3B%3BAACT%3BEAAS%2CcAAA%3B%3BAACT%3BEAAY%2CcAAA%3B%3B%3BAAGZ%3BEAAc%3BEAAa%3B%3BAAC3B%3BEAAa%3BEAAiB%3B%3BAAC9B%3BAAAe%3BAAAuB%3BEAAsB%3B%3BAAC5D%3BAAAW%3BAAAmB%3BEAAmB%3BEAAwB%3B%3BAACzE%3BAAAU%3BAAAkB%3BEAAkB%3BEAAuB%3B%3BAACrE%3BAAAa%3BAAAqB%3BEAAqB%3BEAA0B%3B%3BAACjF%3BAAAQ%3BEAA4B%2CkCAAA%3B%3BAACpC%3BAAAQ%3BEAA0B%2CgCAAA%3B%3BAAClC%3BAAAQ%3BEAA2B%2CiCAAA%3B%3BAACnC%3BAAAQ%3BEAAqB%2CgCAAA%3B%3BAAC7B%3BAAAQ%3BAAAY%3BEAAqB%2CkCAAA%3B%3BAACzC%3BAAAQ%3BEAAqB%2CiCAAA%3B%3BAAC7B%3BAAAY%3BEAAqB%2CkCAAA%3B%3BAACjC%3BAAAQ%3BEAA0B%2CgCAAA%3B%3BAAClC%3BAAAQ%3BEAA2B%2CiCAAA%3B%3BAACnC%3BAAAQ%3BEAAyB%2C%2BBAAA%3B%3BAACjC%3BAAAQ%3BEAAuB%2C6BAAA%3B%3BAAC%5C%2FB%3BAAAQ%3BEAAwB%2C8BAAA%3B%3B%3B%3B%3BAAMhC%3BEAAc%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3BAAClE%3BAAAe%3BAAAa%3BEAAe%3B%3BAAC3C%3BEAAY%3B%3BAACZ%3BAAAY%3BAAAU%3BEAAU%3BEAAoB%3BEAA4B%3BEAA8B%3B%3BAAC9G%3BAAAY%3BAAAU%3BEAAU%3BEAAoB%3BEAA4B%3BEAA8B%3B%3BAAC9G%3BAAAiB%3BAAAY%3BEAAY%3BEAAsB%3BEAA8B%3BEAAgC%3B%3BAAC7H%3BAAAc%3BAAAU%3BEAAU%3BEAAoB%3BEAA4B%3BEAA8B%3B%3BAAChH%3BAAAa%3BAAAU%3BEAAU%3BEAAoB%3BEAA4B%3BEAA8B%3B%3BAAC%5C%2FG%3BAAAa%3BAAAU%3BEAAU%3BEAAoB%3BEAA4B%3BEAA8B%3B%3BAAE%5C%2FG%3BEAAY%3BEAAwB%3BEAA8B%3BEAA8B%3B%3BAAGhG%2CQAFyB%3BEAAE%3BIAAY%3B%3B%3B%3BAAGvC%2CQAAQ%3BEAAS%3B%3B%3BAAGjB%2CgBAAiB%3BAAAK%2CcAAe%3BAAAK%2CcAAe%3BAAAK%2CYAAa%3BAAAK%2COAAQ%3BAAAK%3BEAAc%3B%3BAAC3G%2CgBAAiB%2CIAAG%3BAAAU%2CcAAe%3BAAAK%2CcAAe%3BAAAK%2CGAAG%3BAAAkB%2CGAAG%3BAAAsB%2CGAAG%3BAAAwB%2CYAAa%3BEAAM%3B%3BAAClK%2CGAAG%3BAAAY%2CGAAG%3BAAAa%3BAAAgB%2CeAAgB%3BEAAM%3BEAAc%3B%3BAACnF%2CCAAI%3BAAAO%2CCAAI%3BAAAQ%2CCAAI%3BAAAQ%2CIAAO%3BAAAO%2CIAAO%3BAAAQ%2CIAAO%3BEAAS%3B%3BAAChF%2CGAAG%3BEAAa%2CwBAAA%3B%3BAAChB%2CGAAG%3BEAAc%2CwBAAA%3B%3BAACjB%2CGAAG%3BEAAe%3BEAAc%3B%3B%3B%3B%3BAAK%5C%2FB%3BEAAU%3B%3BAACV%3BEAAU%3B%3BAACV%3BEAAU%3B%3BAACV%3BEAAS%3B%3BAACT%3BEAAS%3B%3BAACT%3BEAAS%3B%3BAACT%3BEAAS%3B%3BAACT%3BEAAS%3B%3BAACT%3BEAAS%3B%3BAACT%3BEAAS%3B%3BAACT%3BEAAS%3B%3BAACT%3BEAAS%3B%3BAAiGV%2CQA%5C%2FF%2BB%3BEAC3B%3BIAAc%3B%3BEACd%3BIAAc%3B%3BEACd%3BIAAc%3B%3BEACd%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEAEb%3BIAAW%3B%3BEACX%3BIAAW%3B%3BEACX%3BIAAa%3B%3BEACb%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAW%3B%3BEACX%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAY%3B%3BEACZ%3BIAAW%3B%3BEACX%3BIAAc%3B%3BEACd%3BIAAc%3B%3BEACd%3BIAAgB%3B%3BEAChB%3BIAAgB%3B%3BEAChB%3BIAAe%3B%3BEACf%3BEAAc%3BIAAkB%3B%3BEAChC%3BEAAa%3BIAAmB%3B%3BEAChC%3BEAAiB%3BEAAkB%3BIAAmB%3B%3BEACtD%3BIAAc%3B%3BEACd%3BEAAkB%3BEAAmB%3BIAAoB%3B%3BEACzD%3BEAAa%3BIAAa%3B%3BEAC1B%3BIAAiB%3B%3BEACjB%3BEAAY%3BIAAkB%3B%3BEAC9B%3BIAAiB%3B%3BEACjB%3BIAAa%3B%3BEACb%3BEAAe%3BIAAiB%3B%3BEAChC%3BIAAe%3B%3BEACf%3BEAAkB%3BIAAoB%3B%3BEACtC%3BIAAc%3B%3BEACd%3BEAAiB%3BIAAmB%3B%3BEACpC%3BIAAc%3B%3BEACd%3BEAAiB%3BIAAmB%3B%3BEACpC%3BEAAc%3BIAAkB%3B%3BEAEhC%3BIAAY%3BIAAsB%3BIAAsB%3B%3BEACxD%3BIAAmB%3BIAA%2BB%3BIAA4B%3B%3BEAC9E%3BIAAgB%3BIAA%2BB%3BIAAyB%3B%3BEACxE%3BIAAiB%3BIAAqB%3BIAAyB%3B%3BEAC%5C%2FD%3BIAAmB%3BIAAqB%3BIAAsB%3B%3BEAC9D%3BIAAmB%3BIAAqB%3BIAAsB%3B%3BEAC9D%3BIAAmB%3BIAAqB%3BIAAsB%3B%3BEAC9D%3BIAAsB%3BIAA0B%3BIAAuB%3B%3BEACvE%3BIAAyB%3BIAA2B%3BIAAwB%3B%3BEAC5E%3BIAAe%3BIAA6B%3BIAAmB%3B%3BEAC%5C%2FD%3BIAAc%3BIAA6B%3BIAAkB%3B%3BEAC7D%3BIAAc%3BIAA6B%3BIAAkB%3B%3BEAC7D%3BIAAc%3BIAA6B%3BIAAkB%3B%3BEAC7D%3BIAAc%3BIAA6B%3BIAAkB%3B%3BEAC7D%3BIAAc%3BIAA6B%3BIAAkB%3B%3BEAC7D%3BIAAc%3BIAA6B%3BIAAkB%3B%3BEAE7D%3BIAAkB%3B%3BEAClB%2CIAAK%3BIAAqB%3BIAAiB%3B%3BEAC3C%3BEAAa%3BIAAY%3B%3BEACzB%3BIAAa%3B%3BEACb%3BIAAc%3B%3BEACd%3BIAAoB%3B%3BEACpB%3BIAAc%3B%3BEACd%3BIAAgB%3B%3BEAChB%3BIAAgB%3B%3BEAChB%3BIAAa%3B%3BEACb%2CaAAa%3BEACb%2CaAAa%3BIAAQ%2CSAAS%2CGAAT%3BIAAc%3B%3BEACnC%2CaAAa%3BIAAS%3B%3BEACtB%3BEAAqB%3BIAAuB%3B%3BEAC5C%3BEAAmB%3BIAAgB%3B%3BEACnC%3BEAAsB%3BIAAgB%3B%3BEACtC%3BEAAsB%3BIAAgB%3B%3BEACtC%3BEAAW%3BIAAiB%3B%3BEAC5B%3BEAAY%3BIAAkB%3B%3BEAC9B%3BEAAe%3BIAAkB%3B%3BEACjC%3BEAAe%3BIAAiB%3B%3BEAChC%3BEAAgB%3BIAAkB%3B%3BEAClC%3BEAAiB%3BIAAmB%3B%3BEACpC%3BIAAmB%3B%3BEACnB%3BIAAwB%3B%3BEACxB%3BIAAyB%3B%3BEACzB%3BIAAiB%3B%3BEACjB%2CcAAe%2CaAAY%3BIAAc%3B%3BEACzC%2CcAAe%2CcAAa%3BIAAc%3B%3B%3BAAiG9C%2CQA%5C%2FF8B%3BEAC1B%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEAEZ%3BIAAU%3B%3BEACV%3BIAAU%3B%3BEACV%3BIAAY%3B%3BEACZ%3BIAAW%3B%3BEACX%3BIAAW%3B%3BEACX%3BIAAU%3B%3BEACV%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAW%3B%3BEACX%3BIAAU%3B%3BEACV%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAe%3B%3BEACf%3BIAAe%3B%3BEACf%3BIAAc%3B%3BEACd%3BEAAa%3BIAAiB%3B%3BEAC9B%3BEAAY%3BIAAkB%3B%3BEAC9B%3BEAAgB%3BEAAiB%3BIAAkB%3B%3BEACnD%3BIAAa%3B%3BEACb%3BEAAiB%3BEAAkB%3BIAAmB%3B%3BEACtD%3BEAAY%3BIAAY%3B%3BEACxB%3BIAAgB%3B%3BEAChB%3BEAAW%3BIAAiB%3B%3BEAC5B%3BIAAgB%3B%3BEAChB%3BIAAY%3B%3BEACZ%3BEAAc%3BIAAgB%3B%3BEAC9B%3BIAAc%3B%3BEACd%3BEAAiB%3BIAAmB%3B%3BEACpC%3BIAAa%3B%3BEACb%3BEAAgB%3BIAAkB%3B%3BEAClC%3BIAAa%3B%3BEACb%3BEAAgB%3BIAAkB%3B%3BEAClC%3BEAAa%3BIAAiB%3B%3BEAE9B%3BIAAW%3BIAAsB%3BIAAsB%3B%3BEACvD%3BIAAkB%3BIAA%2BB%3BIAA4B%3B%3BEAC7E%3BIAAe%3BIAA%2BB%3BIAAyB%3B%3BEACvE%3BIAAgB%3BIAAqB%3BIAAyB%3B%3BEAC9D%3BIAAkB%3BIAAqB%3BIAAsB%3B%3BEAC7D%3BIAAkB%3BIAAqB%3BIAAsB%3B%3BEAC7D%3BIAAkB%3BIAAqB%3BIAAsB%3B%3BEAC7D%3BIAAqB%3BIAA0B%3BIAAuB%3B%3BEACtE%3BIAAwB%3BIAA2B%3BIAAwB%3B%3BEAC3E%3BIAAc%3BIAA6B%3BIAAmB%3B%3BEAC9D%3BIAAa%3BIAA6B%3BIAAkB%3B%3BEAC5D%3BIAAa%3BIAA6B%3BIAAkB%3B%3BEAC5D%3BIAAa%3BIAA6B%3BIAAkB%3B%3BEAC5D%3BIAAa%3BIAA6B%3BIAAkB%3B%3BEAC5D%3BIAAa%3BIAA6B%3BIAAkB%3B%3BEAC5D%3BIAAa%3BIAA6B%3BIAAkB%3B%3BEAE5D%3BIAAiB%3B%3BEACjB%2CIAAK%3BIAAoB%3BIAAiB%3B%3BEAC1C%3BEAAY%3BIAAW%3B%3BEACvB%3BIAAY%3B%3BEACZ%3BIAAa%3B%3BEACb%3BIAAmB%3B%3BEACnB%3BIAAa%3B%3BEACb%3BIAAe%3B%3BEACf%3BIAAe%3B%3BEACf%3BIAAY%3B%3BEACZ%2CYAAY%3BEACZ%2CYAAY%3BIAAQ%2CSAAS%2CGAAT%3BIAAc%3B%3BEAClC%2CYAAY%3BIAAS%3B%3BEACrB%3BEAAoB%3BIAAsB%3B%3BEAC1C%3BEAAkB%3BIAAe%3B%3BEACjC%3BEAAqB%3BIAAe%3B%3BEACpC%3BEAAqB%3BIAAe%3B%3BEACpC%3BEAAU%3BIAAgB%3B%3BEAC1B%3BEAAW%3BIAAiB%3B%3BEAC5B%3BEAAc%3BIAAiB%3B%3BEAC%5C%2FB%3BEAAc%3BIAAgB%3B%3BEAC9B%3BEAAe%3BIAAiB%3B%3BEAChC%3BEAAgB%3BIAAkB%3B%3BEAClC%3BIAAkB%3B%3BEAClB%3BIAAuB%3B%3BEACvB%3BIAAwB%3B%3BEACxB%3BIAAgB%3B%3BEAChB%2CcAAe%2CaAAY%3BIAAa%3B%3BEACxC%2CcAAe%2CcAAa%3BIAAa%3B%3B%3BAAiG7C%2CQA%5C%2FF8B%3BEAC1B%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEAEZ%3BIAAU%3B%3BEACV%3BIAAU%3B%3BEACV%3BIAAY%3B%3BEACZ%3BIAAW%3B%3BEACX%3BIAAW%3B%3BEACX%3BIAAU%3B%3BEACV%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAW%3B%3BEACX%3BIAAU%3B%3BEACV%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAe%3B%3BEACf%3BIAAe%3B%3BEACf%3BIAAc%3B%3BEACd%3BEAAa%3BIAAiB%3B%3BEAC9B%3BEAAY%3BIAAkB%3B%3BEAC9B%3BEAAgB%3BEAAiB%3BIAAkB%3B%3BEACnD%3BIAAa%3B%3BEACb%3BEAAiB%3BEAAkB%3BIAAmB%3B%3BEACtD%3BEAAY%3BIAAY%3B%3BEACxB%3BIAAgB%3B%3BEAChB%3BEAAW%3BIAAiB%3B%3BEAC5B%3BIAAgB%3B%3BEAChB%3BIAAY%3B%3BEACZ%3BEAAc%3BIAAgB%3B%3BEAC9B%3BIAAc%3B%3BEACd%3BEAAiB%3BIAAmB%3B%3BEACpC%3BIAAa%3B%3BEACb%3BEAAgB%3BIAAkB%3B%3BEAClC%3BIAAa%3B%3BEACb%3BEAAgB%3BIAAkB%3B%3BEAClC%3BEAAa%3BIAAiB%3B%3BEAE9B%3BIAAW%3BIAAsB%3BIAAsB%3B%3BEACvD%3BIAAkB%3BIAA%2BB%3BIAA4B%3B%3BEAC7E%3BIAAe%3BIAA%2BB%3BIAAyB%3B%3BEACvE%3BIAAgB%3BIAAqB%3BIAAyB%3B%3BEAC9D%3BIAAkB%3BIAAqB%3BIAAsB%3B%3BEAC7D%3BIAAkB%3BIAAqB%3BIAAsB%3B%3BEAC7D%3BIAAkB%3BIAAqB%3BIAAsB%3B%3BEAC7D%3BIAAqB%3BIAA0B%3BIAAuB%3B%3BEACtE%3BIAAwB%3BIAA2B%3BIAAwB%3B%3BEAC3E%3BIAAc%3BIAA6B%3BIAAmB%3B%3BEAC9D%3BIAAa%3BIAA6B%3BIAAkB%3B%3BEAC5D%3BIAAa%3BIAA6B%3BIAAkB%3B%3BEAC5D%3BIAAa%3BIAA6B%3BIAAkB%3B%3BEAC5D%3BIAAa%3BIAA6B%3BIAAkB%3B%3BEAC5D%3BIAAa%3BIAA6B%3BIAAkB%3B%3BEAC5D%3BIAAa%3BIAA6B%3BIAAkB%3B%3BEAE5D%3BIAAiB%3B%3BEACjB%2CIAAK%3BIAAoB%3BIAAiB%3B%3BEAC1C%3BEAAY%3BIAAW%3B%3BEACvB%3BIAAY%3B%3BEACZ%3BIAAa%3B%3BEACb%3BIAAmB%3B%3BEACnB%3BIAAa%3B%3BEACb%3BIAAe%3B%3BEACf%3BIAAe%3B%3BEACf%3BIAAY%3B%3BEACZ%2CYAAY%3BEACZ%2CYAAY%3BIAAQ%2CSAAS%2CGAAT%3BIAAc%3B%3BEAClC%2CYAAY%3BIAAS%3B%3BEACrB%3BEAAoB%3BIAAsB%3B%3BEAC1C%3BEAAkB%3BIAAe%3B%3BEACjC%3BEAAqB%3BIAAe%3B%3BEACpC%3BEAAqB%3BIAAe%3B%3BEACpC%3BEAAU%3BIAAgB%3B%3BEAC1B%3BEAAW%3BIAAiB%3B%3BEAC5B%3BEAAc%3BIAAiB%3B%3BEAC%5C%2FB%3BEAAc%3BIAAgB%3B%3BEAC9B%3BEAAe%3BIAAiB%3B%3BEAChC%3BEAAgB%3BIAAkB%3B%3BEAClC%3BIAAkB%3B%3BEAClB%3BIAAuB%3B%3BEACvB%3BIAAwB%3B%3BEACxB%3BIAAgB%3B%3BEAChB%2CcAAe%2CaAAY%3BIAAa%3B%3BEACxC%2CcAAe%2CcAAa%3BIAAa%3B%3B%3BAAiG7C%2CQA%5C%2FF2B%3BEACvB%3BIAAc%3B%3BEACd%3BIAAc%3B%3BEACd%3BIAAc%3B%3BEACd%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEAEb%3BIAAW%3B%3BEACX%3BIAAW%3B%3BEACX%3BIAAa%3B%3BEACb%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAW%3B%3BEACX%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAY%3B%3BEACZ%3BIAAW%3B%3BEACX%3BIAAc%3B%3BEACd%3BIAAc%3B%3BEACd%3BIAAgB%3B%3BEAChB%3BIAAgB%3B%3BEAChB%3BIAAe%3B%3BEACf%3BEAAc%3BIAAkB%3B%3BEAChC%3BEAAa%3BIAAmB%3B%3BEAChC%3BEAAiB%3BEAAkB%3BIAAmB%3B%3BEACtD%3BIAAc%3B%3BEACd%3BEAAkB%3BEAAmB%3BIAAoB%3B%3BEACzD%3BEAAa%3BIAAa%3B%3BEAC1B%3BIAAiB%3B%3BEACjB%3BEAAY%3BIAAkB%3B%3BEAC9B%3BIAAiB%3B%3BEACjB%3BIAAa%3B%3BEACb%3BEAAe%3BIAAiB%3B%3BEAChC%3BIAAe%3B%3BEACf%3BEAAkB%3BIAAoB%3B%3BEACtC%3BIAAc%3B%3BEACd%3BEAAiB%3BIAAmB%3B%3BEACpC%3BIAAc%3B%3BEACd%3BEAAiB%3BIAAmB%3B%3BEACpC%3BEAAc%3BIAAkB%3B%3BEAEhC%3BIAAY%3BIAAsB%3BIAAsB%3B%3BEACxD%3BIAAmB%3BIAA%2BB%3BIAA4B%3B%3BEAC9E%3BIAAgB%3BIAA%2BB%3BIAAyB%3B%3BEACxE%3BIAAiB%3BIAAqB%3BIAAyB%3B%3BEAC%5C%2FD%3BIAAmB%3BIAAqB%3BIAAsB%3B%3BEAC9D%3BIAAmB%3BIAAqB%3BIAAsB%3B%3BEAC9D%3BIAAmB%3BIAAqB%3BIAAsB%3B%3BEAC9D%3BIAAsB%3BIAA0B%3BIAAuB%3B%3BEACvE%3BIAAyB%3BIAA2B%3BIAAwB%3B%3BEAC5E%3BIAAe%3BIAA6B%3BIAAmB%3B%3BEAC%5C%2FD%3BIAAc%3BIAA6B%3BIAAkB%3B%3BEAC7D%3BIAAc%3BIAA6B%3BIAAkB%3B%3BEAC7D%3BIAAc%3BIAA6B%3BIAAkB%3B%3BEAC7D%3BIAAc%3BIAA6B%3BIAAkB%3B%3BEAC7D%3BIAAc%3BIAA6B%3BIAAkB%3B%3BEAC7D%3BIAAc%3BIAA6B%3BIAAkB%3B%3BEAE7D%3BIAAkB%3B%3BEAClB%2CIAAK%3BIAAqB%3BIAAiB%3B%3BEAC3C%3BEAAa%3BIAAY%3B%3BEACzB%3BIAAa%3B%3BEACb%3BIAAc%3B%3BEACd%3BIAAoB%3B%3BEACpB%3BIAAc%3B%3BEACd%3BIAAgB%3B%3BEAChB%3BIAAgB%3B%3BEAChB%3BIAAa%3B%3BEACb%2CaAAa%3BEACb%2CaAAa%3BIAAQ%2CSAAS%2CGAAT%3BIAAc%3B%3BEACnC%2CaAAa%3BIAAS%3B%3BEACtB%3BEAAqB%3BIAAuB%3B%3BEAC5C%3BEAAmB%3BIAAgB%3B%3BEACnC%3BEAAsB%3BIAAgB%3B%3BEACtC%3BEAAsB%3BIAAgB%3B%3BEACtC%3BEAAW%3BIAAiB%3B%3BEAC5B%3BEAAY%3BIAAkB%3B%3BEAC9B%3BEAAe%3BIAAkB%3B%3BEACjC%3BEAAe%3BIAAiB%3B%3BEAChC%3BEAAgB%3BIAAkB%3B%3BEAClC%3BEAAiB%3BIAAmB%3B%3BEACpC%3BIAAmB%3B%3BEACnB%3BIAAwB%3B%3BEACxB%3BIAAyB%3B%3BEACzB%3BIAAiB%3B%3BEACjB%2CcAAe%2CaAAY%3BIAAc%3B%3BEACzC%2CcAAe%2CcAAa%3BIAAc%3B%3B%3BAAiG9C%2CQA%5C%2FF8B%3BEAC1B%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEAEZ%3BIAAU%3B%3BEACV%3BIAAU%3B%3BEACV%3BIAAY%3B%3BEACZ%3BIAAW%3B%3BEACX%3BIAAW%3B%3BEACX%3BIAAU%3B%3BEACV%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAW%3B%3BEACX%3BIAAU%3B%3BEACV%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAe%3B%3BEACf%3BIAAe%3B%3BEACf%3BIAAc%3B%3BEACd%3BEAAa%3BIAAiB%3B%3BEAC9B%3BEAAY%3BIAAkB%3B%3BEAC9B%3BEAAgB%3BEAAiB%3BIAAkB%3B%3BEACnD%3BIAAa%3B%3BEACb%3BEAAiB%3BEAAkB%3BIAAmB%3B%3BEACtD%3BEAAY%3BIAAY%3B%3BEACxB%3BIAAgB%3B%3BEAChB%3BEAAW%3BIAAiB%3B%3BEAC5B%3BIAAgB%3B%3BEAChB%3BIAAY%3B%3BEACZ%3BEAAc%3BIAAgB%3B%3BEAC9B%3BIAAc%3B%3BEACd%3BEAAiB%3BIAAmB%3B%3BEACpC%3BIAAa%3B%3BEACb%3BEAAgB%3BIAAkB%3B%3BEAClC%3BIAAa%3B%3BEACb%3BEAAgB%3BIAAkB%3B%3BEAClC%3BEAAa%3BIAAiB%3B%3BEAE9B%3BIAAW%3BIAAsB%3BIAAsB%3B%3BEACvD%3BIAAkB%3BIAA%2BB%3BIAA4B%3B%3BEAC7E%3BIAAe%3BIAA%2BB%3BIAAyB%3B%3BEACvE%3BIAAgB%3BIAAqB%3BIAAyB%3B%3BEAC9D%3BIAAkB%3BIAAqB%3BIAAsB%3B%3BEAC7D%3BIAAkB%3BIAAqB%3BIAAsB%3B%3BEAC7D%3BIAAkB%3BIAAqB%3BIAAsB%3B%3BEAC7D%3BIAAqB%3BIAA0B%3BIAAuB%3B%3BEACtE%3BIAAwB%3BIAA2B%3BIAAwB%3B%3BEAC3E%3BIAAc%3BIAA6B%3BIAAmB%3B%3BEAC9D%3BIAAa%3BIAA6B%3BIAAkB%3B%3BEAC5D%3BIAAa%3BIAA6B%3BIAAkB%3B%3BEAC5D%3BIAAa%3BIAA6B%3BIAAkB%3B%3BEAC5D%3BIAAa%3BIAA6B%3BIAAkB%3B%3BEAC5D%3BIAAa%3BIAA6B%3BIAAkB%3B%3BEAC5D%3BIAAa%3BIAA6B%3BIAAkB%3B%3BEAE5D%3BIAAiB%3B%3BEACjB%2CIAAK%3BIAAoB%3BIAAiB%3B%3BEAC1C%3BEAAY%3BIAAW%3B%3BEACvB%3BIAAY%3B%3BEACZ%3BIAAa%3B%3BEACb%3BIAAmB%3B%3BEACnB%3BIAAa%3B%3BEACb%3BIAAe%3B%3BEACf%3BIAAe%3B%3BEACf%3BIAAY%3B%3BEACZ%2CYAAY%3BEACZ%2CYAAY%3BIAAQ%2CSAAS%2CGAAT%3BIAAc%3B%3BEAClC%2CYAAY%3BIAAS%3B%3BEACrB%3BEAAoB%3BIAAsB%3B%3BEAC1C%3BEAAkB%3BIAAe%3B%3BEACjC%3BEAAqB%3BIAAe%3B%3BEACpC%3BEAAqB%3BIAAe%3B%3BEACpC%3BEAAU%3BIAAgB%3B%3BEAC1B%3BEAAW%3BIAAiB%3B%3BEAC5B%3BEAAc%3BIAAiB%3B%3BEAC%5C%2FB%3BEAAc%3BIAAgB%3B%3BEAC9B%3BEAAe%3BIAAiB%3B%3BEAChC%3BEAAgB%3BIAAkB%3B%3BEAClC%3BIAAkB%3B%3BEAClB%3BIAAuB%3B%3BEACvB%3BIAAwB%3B%3BEACxB%3BIAAgB%3B%3BEAChB%2CcAAe%2CaAAY%3BIAAa%3B%3BEACxC%2CcAAe%2CcAAa%3BIAAa%3B%3B%3BAAiG7C%2CQA%5C%2FF%2BB%3BEAC3B%3BIAAc%3B%3BEACd%3BIAAc%3B%3BEACd%3BIAAc%3B%3BEACd%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEAEb%3BIAAW%3B%3BEACX%3BIAAW%3B%3BEACX%3BIAAa%3B%3BEACb%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAW%3B%3BEACX%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAY%3B%3BEACZ%3BIAAW%3B%3BEACX%3BIAAc%3B%3BEACd%3BIAAc%3B%3BEACd%3BIAAgB%3B%3BEAChB%3BIAAgB%3B%3BEAChB%3BIAAe%3B%3BEACf%3BEAAc%3BIAAkB%3B%3BEAChC%3BEAAa%3BIAAmB%3B%3BEAChC%3BEAAiB%3BEAAkB%3BIAAmB%3B%3BEACtD%3BIAAc%3B%3BEACd%3BEAAkB%3BEAAmB%3BIAAoB%3B%3BEACzD%3BEAAa%3BIAAa%3B%3BEAC1B%3BIAAiB%3B%3BEACjB%3BEAAY%3BIAAkB%3B%3BEAC9B%3BIAAiB%3B%3BEACjB%3BIAAa%3B%3BEACb%3BEAAe%3BIAAiB%3B%3BEAChC%3BIAAe%3B%3BEACf%3BEAAkB%3BIAAoB%3B%3BEACtC%3BIAAc%3B%3BEACd%3BEAAiB%3BIAAmB%3B%3BEACpC%3BIAAc%3B%3BEACd%3BEAAiB%3BIAAmB%3B%3BEACpC%3BEAAc%3BIAAkB%3B%3BEAEhC%3BIAAY%3BIAAsB%3BIAAsB%3B%3BEACxD%3BIAAmB%3BIAA%2BB%3BIAA4B%3B%3BEAC9E%3BIAAgB%3BIAA%2BB%3BIAAyB%3B%3BEACxE%3BIAAiB%3BIAAqB%3BIAAyB%3B%3BEAC%5C%2FD%3BIAAmB%3BIAAqB%3BIAAsB%3B%3BEAC9D%3BIAAmB%3BIAAqB%3BIAAsB%3B%3BEAC9D%3BIAAmB%3BIAAqB%3BIAAsB%3B%3BEAC9D%3BIAAsB%3BIAA0B%3BIAAuB%3B%3BEACvE%3BIAAyB%3BIAA2B%3BIAAwB%3B%3BEAC5E%3BIAAe%3BIAA6B%3BIAAmB%3B%3BEAC%5C%2FD%3BIAAc%3BIAA6B%3BIAAkB%3B%3BEAC7D%3BIAAc%3BIAA6B%3BIAAkB%3B%3BEAC7D%3BIAAc%3BIAA6B%3BIAAkB%3B%3BEAC7D%3BIAAc%3BIAA6B%3BIAAkB%3B%3BEAC7D%3BIAAc%3BIAA6B%3BIAAkB%3B%3BEAC7D%3BIAAc%3BIAA6B%3BIAAkB%3B%3BEAE7D%3BIAAkB%3B%3BEAClB%2CIAAK%3BIAAqB%3BIAAiB%3B%3BEAC3C%3BEAAa%3BIAAY%3B%3BEACzB%3BIAAa%3B%3BEACb%3BIAAc%3B%3BEACd%3BIAAoB%3B%3BEACpB%3BIAAc%3B%3BEACd%3BIAAgB%3B%3BEAChB%3BIAAgB%3B%3BEAChB%3BIAAa%3B%3BEACb%2CaAAa%3BEACb%2CaAAa%3BIAAQ%2CSAAS%2CGAAT%3BIAAc%3B%3BEACnC%2CaAAa%3BIAAS%3B%3BEACtB%3BEAAqB%3BIAAuB%3B%3BEAC5C%3BEAAmB%3BIAAgB%3B%3BEACnC%3BEAAsB%3BIAAgB%3B%3BEACtC%3BEAAsB%3BIAAgB%3B%3BEACtC%3BEAAW%3BIAAiB%3B%3BEAC5B%3BEAAY%3BIAAkB%3B%3BEAC9B%3BEAAe%3BIAAkB%3B%3BEACjC%3BEAAe%3BIAAiB%3B%3BEAChC%3BEAAgB%3BIAAkB%3B%3BEAClC%3BEAAiB%3BIAAmB%3B%3BEACpC%3BIAAmB%3B%3BEACnB%3BIAAwB%3B%3BEACxB%3BIAAyB%3B%3BEACzB%3BIAAiB%3B%3BEACjB%2CcAAe%2CaAAY%3BIAAc%3B%3BEACzC%2CcAAe%2CcAAa%3BIAAc%3B%3B%3BAAmG9C%2CQAjG2B%3BEACvB%3BIAAc%3B%3BEACd%3BIAAc%3B%3BEACd%3BIAAc%3B%3BEACd%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEAEb%3BIAAW%3B%3BEACX%3BIAAW%3B%3BEACX%3BIAAa%3B%3BEACb%3BIAAY%3B%3BEACZ%3BIAAY%3B%3BEACZ%3BIAAW%3B%3BEACX%3BIAAa%3B%3BEACb%3BIAAa%3B%3BEACb%3BIAAY%3B%3BEACZ%3BIAAW%3B%3BEACX%3BIAAc%3B%3BEACd%3BIAAc%3B%3BEACd%3BIAAgB%3B%3BEAChB%3BIAAgB%3B%3BEAChB%3BIAAe%3B%3BEACf%3BEAAc%3BIAAkB%3B%3BEAChC%3BEAAa%3BIAAmB%3B%3BEAChC%3BEAAiB%3BEAAkB%3BIAAmB%3B%3BEACtD%3BIAAc%3B%3BEACd%3BEAAkB%3BEAAmB%3BIAAoB%3B%3BEACzD%3BEAAa%3BIAAa%3B%3BEAC1B%3BIAAiB%3B%3BEACjB%3BEAAY%3BIAAkB%3B%3BEAC9B%3BIAAiB%3B%3BEACjB%3BIAAa%3B%3BEACb%3BEAAe%3BIAAiB%3B%3BEAChC%3BIAAe%3B%3BEACf%3BEAAkB%3BIAAoB%3B%3BEACtC%3BIAAc%3B%3BEACd%3BEAAiB%3BIAAmB%3B%3BEACpC%3BIAAc%3B%3BEACd%3BEAAiB%3BIAAmB%3B%3BEACpC%3BEAAc%3BIAAkB%3B%3BEAEhC%3BIAAY%3BIAAsB%3BIAAsB%3B%3BEACxD%3BIAAmB%3BIAA%2BB%3BIAA4B%3B%3BEAC9E%3BIAAgB%3BIAA%2BB%3BIAAyB%3B%3BEACxE%3BIAAiB%3BIAAqB%3BIAAyB%3B%3BEAC%5C%2FD%3BIAAmB%3BIAAqB%3BIAAsB%3B%3BEAC9D%3BIAAmB%3BIAAqB%3BIAAsB%3B%3BEAC9D%3BIAAmB%3BIAAqB%3BIAAsB%3B%3BEAC9D%3BIAAsB%3BIAA0B%3BIAAuB%3B%3BEACvE%3BIAAyB%3BIAA2B%3BIAAwB%3B%3BEAC5E%3BIAAe%3BIAA6B%3BIAAmB%3B%3BEAC%5C%2FD%3BIAAc%3BIAA6B%3BIAAkB%3B%3BEAC7D%3BIAAc%3BIAA6B%3BIAAkB%3B%3BEAC7D%3BIAAc%3BIAA6B%3BIAAkB%3B%3BEAC7D%3BIAAc%3BIAA6B%3BIAAkB%3B%3BEAC7D%3BIAAc%3BIAA6B%3BIAAkB%3B%3BEAC7D%3BIAAc%3BIAA6B%3BIAAkB%3B%3BEAE7D%3BIAAkB%3B%3BEAClB%2CIAAK%3BIAAqB%3BIAAiB%3B%3BEAC3C%3BEAAa%3BIAAY%3B%3BEACzB%3BIAAa%3B%3BEACb%3BIAAc%3B%3BEACd%3BIAAoB%3B%3BEACpB%3BIAAc%3B%3BEACd%3BIAAgB%3B%3BEAChB%3BIAAgB%3B%3BEAChB%3BIAAa%3B%3BEACb%2CaAAa%3BEACb%2CaAAa%3BIAAQ%2CSAAS%2CGAAT%3BIAAc%3B%3BEACnC%2CaAAa%3BIAAS%3B%3BEACtB%3BEAAqB%3BIAAuB%3B%3BEAC5C%3BEAAmB%3BIAAgB%3B%3BEACnC%3BEAAsB%3BIAAgB%3B%3BEACtC%3BEAAsB%3BIAAgB%3B%3BEACtC%3BEAAW%3BIAAiB%3B%3BEAC5B%3BEAAY%3BIAAkB%3B%3BEAC9B%3BEAAe%3BIAAkB%3B%3BEACjC%3BEAAe%3BIAAiB%3B%3BEAChC%3BEAAgB%3BIAAkB%3B%3BEAClC%3BEAAiB%3BIAAmB%3B%3BEACpC%3BIAAmB%3B%3BEACnB%3BIAAwB%3B%3BEACxB%3BIAAyB%3B%3BEACzB%3BIAAiB%3B%3BEACjB%2CcAAe%2CaAAY%3BIAAc%3B%3BEACzC%2CcAAe%2CcAAa%3BIAAc%3B%3B%3B%3B%3B%3B%3B%3BAAS9C%3BEAAiB%3BEAAmB%3B%3BAAEpC%3BEAAc%3BEAAa%2CeAAA%3BEAAwB%3BEAAc%3BEAAiB%3B%3BAAKlF%2CQAJiE%3BEAIjE%3BIAHY%2CkBAAA%3BIAAmC%2CmBAAA%3B%3B%3BAAK%5C%2FC%3BEAAc%3BEAAa%2CiBAAA%3BEAAwB%3BEAAc%3BEAAiB%3B%3BAAKlF%2CQAJiE%3BEAIjE%3BIAHY%2CkBAAA%3BIAAmC%2CmBAAA%3B%3B%3BAAI%5C%2FC%3BEAAkB%3BEAAa%2CiBAAA%3BEAA4B%3BEAAc%3BEAAiB%3B%3BAAK1F%2CQAJqE%3BEAIrE%3BIAHY%2CkBAAA%3BIAAmC%2CmBAAA%3B%3B%3BAAI%5C%2FC%3BEAAiB%3BEAAa%2CgBAAA%3BEAA2B%2CcAAA%3BEAAgB%3BEAAiB%3B%3BAAK1F%2CQAJoE%3BEAIpE%3BIAHY%2CkBAAA%3BIAAmC%2CmBAAA%3B%3B%3BAAI%5C%2FC%3BEAAkB%3BEAAa%2CgBAAA%3BEAA4B%2CcAAA%3BEAAgB%3BEAAiB%3B%3BAAK5F%2CQAJqE%3BEAIrE%3BIAHY%2CkBAAA%3BIAAmC%2CmBAAA%3B%3B%3BAAK%5C%2FC%3BEAAiB%3BEAAa%2CgBAAA%3BEAA2B%3BEAAc%3BEAAe%3BEAAiB%3B%3BAAKvG%2CQAJoE%3BEAIpE%3BIAHY%2CkBAAA%3BIAAmC%2CmBAAA%3B%3B%3BAAI%5C%2FC%3BEAAiB%3BEAAa%2CiBAAA%3BEAA2B%2CcAAA%3BEAAgB%3BEAAiB%3B%3BAAK1F%2CQAJoE%3BEAIpE%3BIAHY%2CkBAAA%3BIAAmC%2CmBAAA%3B%3B%3BAAI%5C%2FC%3BEAAiB%3BEAAa%2CgBAAA%3BEAA2B%2CcAAA%3BEAAe%3BEAAiB%3B%3B%3B%3B%3BACr7BzF%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAGJ%3BEACI%3BEACA%3BEACA%3BEF6CA%2CkDAAA%3BEACA%2C%2BCAAA%3BEACA%2C6CAAA%3BEACA%2C0CAAA%3BEE9CA%2CyBAAA%3B%3BAALJ%2CYAOI%3BEACI%3B%3BAARR%2CYAWI%2CWAAW%3BEACP%3BEACA%3BEFwBJ%2CYAAA%3BEACA%2CYAAA%3BEEvBI%3B%3BAAaR%2CQAV%2BB%3BEAU%5C%2FB%2CYARQ%3BIACI%2C4BAAA%3B%3BEAOZ%2CYAJQ%2CWAAW%3BIFaf%2CYAAA%3BIACA%2CYAAA%3B%3B%3B%3B%3B%3BAELJ%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAAGI%2CYADJ%2CoBACQ%2CKAAK%2CKAAK%3BEACV%3BEACA%3BEACA%3BEACA%3BEACA%3BEFvDR%2CeAAA%3BEACA%2CiBAAA%3BEEwDQ%2CcAAA%3BEACA%2CgBAAA%3BEACA%3B%3BAAGJ%2CYAbJ%2CoBAaQ%2CKAAK%2CKAAE%2CuBAA0B%2CIAAC%3BEAClC%2CSAAS%2COAAT%3BEACA%2CaH5BE%2CoBG4BF%3BEACA%2CgBAAA%3BEFjER%2CeAAA%3BEACA%2CiBAAA%3BEEkEQ%3BEACA%3BEACA%2CcAAA%3BEACA%3B%3BAAGJ%2CYAxBJ%2CoBAwBQ%2CKAAK%2CKAAE%2CuBAAuB%2CMAAO%3BAACzC%2CYAzBJ%2CoBAyBQ%2CKAAK%2CKAAE%2CuBAAuB%2CMAAO%3BEACrC%3B%3BAAhCZ%2CYAoCI%3BEACI%2CcAAA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAEA%2CYAPJ%2CsBAOK%3BEACG%2CcAAA%3B%3BAAIR%2CIAAI%2CiBAAkB%2CaAKlB%3BAAJJ%2CIAAI%2CuBAAwB%2CaAIxB%3BAAHJ%2CIAAI%2CgCAAiC%2CaAGjC%3BAAFJ%2CIAAI%2CYAAa%2CaAEb%3BAADJ%2CYAAC%2CMACG%3BEACI%2CcAAA%3B%3BAAEA%2CIARJ%2CiBAAkB%2CaAKlB%2CsBAGK%3BAAAD%2CIAPJ%2CuBAAwB%2CaAIxB%2CsBAGK%3BAAAD%2CIANJ%2CgCAAiC%2CaAGjC%2CsBAGK%3BAAAD%2CIALJ%2CYAAa%2CaAEb%2CsBAGK%3BAAAD%2CYAJP%2CMACG%2CsBAGK%3BEACG%2CcAAA%3B%3BAAzDhB%2CYA8DI%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEFvDJ%2C6BEwD0B%2C%2BBFxD1B%3BEACA%2C0BEuD0B%2C%2BBFvD1B%3BEACA%2CwBEsD0B%2C%2BBFtD1B%3BEACA%2CqBEqD0B%2C%2BBFrD1B%3BEEsDI%3BEACA%3B%3BAAzER%2CYA8DI%2CgBAaI%3BEFjHJ%2CwBAAA%3BEACA%2CqBAAA%3BEACA%2CgBAAA%3B%3BAEqHJ%2CIAAI%2CIAAI%2CiCAAkC%3BEACtC%3BEACA%3BEACA%3B%3BAAMA%2CQAJ2B%3BEAI3B%2CIATA%2CIAAI%2CiCAAkC%3BIAMlC%3B%3B%3BAAOR%2CQAJkC%3BEAIlC%2CIAbI%2CIAAI%2CiCAAkC%3BIAUlC%3BIACA%3B%3B%3BAAIR%2CIAAI%2CKAAK%2CIAAI%2CiCAAkC%3BAAC%5C%2FC%2CIAAI%2CQAAQ%2CIAAI%2CiCAAkC%3BEAC9C%3BEACA%3BEACA%3B%3BAAMA%2CQAJ2B%3BEAI3B%2CIAVA%2CKAAK%2CIAAI%2CiCAAkC%3BEAU3C%2CIATA%2CQAAQ%2CIAAI%2CiCAAkC%3BIAM1C%3B%3B%3BAAOR%2CQAJkC%3BEAIlC%2CIAdI%2CKAAK%2CIAAI%2CiCAAkC%3BEAc%5C%2FC%2CIAbI%2CQAAQ%2CIAAI%2CiCAAkC%3BIAU1C%3BIACA%3B%3B%3B%3B%3B%3BAAOR%2CYACI%2CoBAAoB%3BEAChB%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAPR%2CYACI%2CoBAAoB%2CUAQhB%3BEACI%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CyBAAA%3BEACA%2C8BAAA%3BEACA%2C%2BBAAA%3BEACA%2CgCAAA%3BEF9KR%2CeAAA%3BEACA%2CiBAAA%3BEE%2BKQ%2CcAAA%3BEFtHR%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECiIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3BECZtD%3B%3BAApBZ%2CYACI%2CoBAAoB%2CUAsBhB%3BEACI%3B%3BAAxBZ%2CYACI%2CoBAAoB%2CUA0BhB%2CEAAC%3BAA3BT%2CYACI%2CoBAAoB%2CUA2BhB%2CEAAC%3BEACG%3BEACA%2CcAAA%3B%3BAAQR%2CQAL8B%3BEAK9B%2CYArCA%2CoBAAoB%2CUAiCZ%3BIFhMR%2CeAAA%3BIACA%2CiBAAA%3B%3B%3B%3B%3B%3BAE0MJ%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAAJJ%2CWAMI%2CgBAAkB%3BEFlElB%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAgFA%2C4BAAA%3BEACA%2CwBAAA%3BEACA%2CoBAAA%3B%3BAEzBJ%2CWAWI%2CgBAAgB%2CGAAK%2CKAAK%3BEACtB%2CyBAAA%3BEACA%3BEACA%2CiBAAA%3BEACA%3BEF1NJ%2CeAAA%3BEACA%2CiBAAA%3BEE2NI%2CcAAA%3BEACA%2CgBAAA%3BEACA%3BEACA%2CWAAW%2CYAAX%3B%3BAACA%2CWAVJ%2CgBAAgB%2CGAAK%2CKAAK%2CIAUrB%3BEACG%3B%3BAAtBZ%2CWA0BI%2CgBAAgB%2CGAAK%2CKAAK%2CIAAI%3BEAC1B%3BEACA%2CWAAW%2CWAAX%3B%3BAA5BR%2CWA%2BBI%2CgBAAgB%2CGAAK%2CKAAE%2CcAAgB%2CEAAI%3BEACvC%2C%2BBAAA%3BEACA%3B%3BAAjCR%2CWAoCI%2CgBAAgB%2CGAAK%2CKAAE%2CYAAY%2CGAAK%3BEACpC%3BEACA%3B%3BAAmCR%2CQAhCkC%3BEAgClC%3BIA%5C%2FBQ%3BIACA%3B%3BEA8BR%2CWA5BQ%2CgBAAgB%2CGAAK%3BIACjB%3BIACA%2CyBAAA%3BIACA%3B%3BEAyBZ%2CWAtBQ%2CgBAAgB%2CGAAK%2CKAAK%3BIACtB%3B%3BEAqBZ%2CWAlBQ%2CgBAAgB%2CGAAK%2CKAAK%2CIAAI%3BIAC1B%3B%3BEAiBZ%2CWAdQ%2CgBAAgB%2CGAAK%2CKAAE%3BIACnB%2C%2BBAAA%3B%3BEAaZ%2CWAVQ%2CgBAAgB%2CGAAK%2CKAAE%2CcAAgB%2CEAAI%3BIACvC%3BIACA%3BIACA%3B%3BEAOZ%2CWAJQ%2CgBAAgB%2CGAAK%2CKAAE%2CYAAY%2CGAAK%3BIACpC%2CiBAAA%3B%3B%3B%3BAAMZ%2CeAAe%3BEACX%3BEF9NA%2C6BE%2BNsB%2CmCF%5C%2FNtB%3BEACA%2C0BE8NsB%2CmCF9NtB%3BEACA%2CwBE6NsB%2CmCF7NtB%3BEACA%2CqBE4NsB%2CmCF5NtB%3BEE6NA%3B%3BAAGJ%2CeACI%3BEACI%3B%3BAAFR%2CeAKI%2COAAM%2CYAAY%3BEACd%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEFxSJ%2CeAAA%3BEACA%2CiBAAA%3BEEySI%3BEACA%2CcAAA%3B%3BAAdR%2CeAKI%2COAAM%2CYAAY%2CcAWd%3BEACI%2CgBAAA%3B%3BAAjBZ%2CeAqBI%3BEF7LA%2CyDAAA%3BEACA%2CsDAAA%3BEACA%2CiDAAA%3B%3BAEsKJ%2CeAyBI%3BEACI%3BEACA%3B%3BAAIR%2CIAAI%2CYACA%2CsBAAsB%3BEAClB%3BEACA%3BEACA%3B%3BAAJR%2CIAAI%2CYAOA%2CsBAAsB%2CWAAU%3BEAC5B%2CSAAS%2COAAT%3BEFpUJ%2CeAAA%3BEACA%2CeAAA%3B%3BAE2TJ%2CIAAI%2CYAYA%3BEACI%3BEF%5C%2FQJ%2C6BEgR0B%2CmCFhR1B%3BEACA%2C0BE%2BQ0B%2CmCF%5C%2FQ1B%3BEACA%2CwBE8Q0B%2CmCF9Q1B%3BEACA%2CqBE6Q0B%2CmCF7Q1B%3B%3BAEiRJ%3BEF1FI%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3BEApBA%2C%2BBAAA%3BEACA%2C2BAAA%3BEACA%2CuBAAA%3BEE6GA%3BEACA%3BEACA%2CsBAAA%3B%3BAALJ%2CYAOI%3BEACI%3BEACA%3BEACA%3B%3BAAVR%2CYAOI%2COAKI%3BEACI%2C2CAAA%3BEACA%2CwCAAA%3BEACA%2CsCAAA%3BEACA%2CmCAAA%3B%3BAAhBZ%2CYAOI%2COAYI%2CKAAI%3BEACA%3BEACA%3BEACA%3BEACA%2CyBAAA%3BEACA%3B%3BAAxBZ%2CYAOI%2COAmBI%2CKAAI%2CUAAU%3BEACV%3BEACA%3BEACA%3BEACA%2CyBAAA%3BEACA%3B%3BAA%5C%2FBZ%2CYAOI%2COA0BI%2CKAAI%2CUAAU%3BEACV%3BEACA%3BEACA%3BEACA%2CyBAAA%3BEACA%3B%3BAAIR%2CYAAC%2CMAAO%2COACJ%2CKAAI%3BAADR%2CYAAC%2CMAAO%2COAEJ%2CKAAI%2CUAAU%3BAAFlB%2CYAAC%2CMAAO%2COAGJ%2CKAAI%2CUAAU%3BEACV%2CyBAAA%3B%3BAAIR%2CIAAI%2CiBAAkB%2CaAKlB%2COACI%2CKAAI%3BAALZ%2CIAAI%2CuBAAwB%2CaAIxB%2COACI%2CKAAI%3BAAJZ%2CIAAI%2CgCAAiC%2CaAGjC%2COACI%2CKAAI%3BAAHZ%2CIAAI%2CYAAa%2CaAEb%2COACI%2CKAAI%3BAAFZ%2CYAAC%2CMACG%2COACI%2CKAAI%3BAANZ%2CIAAI%2CiBAAkB%2CaAKlB%2COAEI%2CKAAI%2CUAAU%3BAANtB%2CIAAI%2CuBAAwB%2CaAIxB%2COAEI%2CKAAI%2CUAAU%3BAALtB%2CIAAI%2CgCAAiC%2CaAGjC%2COAEI%2CKAAI%2CUAAU%3BAAJtB%2CIAAI%2CYAAa%2CaAEb%2COAEI%2CKAAI%2CUAAU%3BAAHtB%2CYAAC%2CMACG%2COAEI%2CKAAI%2CUAAU%3BAAPtB%2CIAAI%2CiBAAkB%2CaAKlB%2COAGI%2CKAAI%2CUAAU%3BAAPtB%2CIAAI%2CuBAAwB%2CaAIxB%2COAGI%2CKAAI%2CUAAU%3BAANtB%2CIAAI%2CgCAAiC%2CaAGjC%2COAGI%2CKAAI%2CUAAU%3BAALtB%2CIAAI%2CYAAa%2CaAEb%2COAGI%2CKAAI%2CUAAU%3BAAJtB%2CYAAC%2CMACG%2COAGI%2CKAAI%2CUAAU%3BEACV%2CyBAAA%3B%3BAAIR%2CIAbA%2CiBAAkB%2CaAajB%2CMAAO%2COACJ%2CKAAI%3BAADR%2CIAZA%2CuBAAwB%2CaAYvB%2CMAAO%2COACJ%2CKAAI%3BAADR%2CIAXA%2CgCAAiC%2CaAWhC%2CMAAO%2COACJ%2CKAAI%3BAADR%2CIAVA%2CYAAa%2CaAUZ%2CMAAO%2COACJ%2CKAAI%3BAADR%2CYATH%2CMASI%2CMAAO%2COACJ%2CKAAI%3BAADR%2CIAbA%2CiBAAkB%2CaAajB%2CMAAO%2COAEJ%2CKAAI%2CUAAU%3BAAFlB%2CIAZA%2CuBAAwB%2CaAYvB%2CMAAO%2COAEJ%2CKAAI%2CUAAU%3BAAFlB%2CIAXA%2CgCAAiC%2CaAWhC%2CMAAO%2COAEJ%2CKAAI%2CUAAU%3BAAFlB%2CIAVA%2CYAAa%2CaAUZ%2CMAAO%2COAEJ%2CKAAI%2CUAAU%3BAAFlB%2CYATH%2CMASI%2CMAAO%2COAEJ%2CKAAI%2CUAAU%3BAAFlB%2CIAbA%2CiBAAkB%2CaAajB%2CMAAO%2COAGJ%2CKAAI%2CUAAU%3BAAHlB%2CIAZA%2CuBAAwB%2CaAYvB%2CMAAO%2COAGJ%2CKAAI%2CUAAU%3BAAHlB%2CIAXA%2CgCAAiC%2CaAWhC%2CMAAO%2COAGJ%2CKAAI%2CUAAU%3BAAHlB%2CIAVA%2CYAAa%2CaAUZ%2CMAAO%2COAGJ%2CKAAI%2CUAAU%3BAAHlB%2CYATH%2CMASI%2CMAAO%2COAGJ%2CKAAI%2CUAAU%3BEACV%2CyBAAA%3B%3BAAKZ%2CYAAY%2CMAAO%2CaACf%2COACI%2CKAAI%3BAAFZ%2CYAAY%2CMAAO%2CaACf%2COAEI%2CKAAI%2CUAAU%3BAAHtB%2CYAAY%2CMAAO%2CaACf%2COAGI%2CKAAI%2CUAAU%3BEACV%2CyBAAA%3B%3BAAKZ%2CIAAI%2CiBAAkB%2CaAClB%2COACI%2CKAAI%3BEF%5C%2FVZ%2CmBEgWuB%2CaFhWvB%3BEACA%2CgBE%2BVuB%2CaF%5C%2FVvB%3BEACA%2CcE8VuB%2CaF9VvB%3BEACA%2CeE6VuB%2CaF7VvB%3BEACA%2CWE4VuB%2CaF5VvB%3BEE6VY%3B%3BAAJZ%2CIAAI%2CiBAAkB%2CaAClB%2COAMI%2CKAAI%2CUAAU%3BEACV%3B%3BAARZ%2CIAAI%2CiBAAkB%2CaAClB%2COAUI%2CKAAI%2CUAAU%3BEFxWtB%2CmBEyWuB%2CcFzWvB%3BEACA%2CgBEwWuB%2CcFxWvB%3BEACA%2CcEuWuB%2CcFvWvB%3BEACA%2CeEsWuB%2CcFtWvB%3BEACA%2CWEqWuB%2CcFrWvB%3BEEsWY%3B%3BAAMhB%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAARJ%2CkBAUI%2CUAAY%2CKAAK%3BEACb%2CcAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEFhcJ%2CeAAA%3BEACA%2CiBAAA%3BEEicI%3B%3BAAGA%2CkBARJ%2CUAAY%2CKAAK%2CIAQZ%3BEACG%2CcAAA%3BEACA%2CyBAAA%3B%3BAApBZ%2CkBAwBI%2CUAAY%2CKAAE%2CuBAA0B%2CIAAC%3BEACrC%2CSAAS%2COAAT%3BEACA%2CaHzaM%2CoBGyaN%3BEACA%3BEACA%3BEF%5C%2FcJ%2CeAAA%3BEACA%2CiBAAA%3BEEgdI%3B%3BAA9BR%2CkBAiCI%2CUAAY%2CKAAE%2CuBAAuB%2COAAU%2CIAAC%3BEAC5C%2CSAAS%2COAAT%3BEACA%2CaHlbM%2CoBGkbN%3BEACA%3BEACA%3BEFxdJ%2CeAAA%3BEACA%2CiBAAA%3BEEydI%3B%3BAAvCR%2CkBA0CI%2CUAAY%3BEACR%3BEACA%2CgCAAA%3B%3BAA5CR%2CkBA%2BCI%3BEACI%3BEACA%3B%3BAAjDR%2CkBAoDI%2CUAAY%2CKAAK%3BEACb%2CcAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEF1eJ%2CeAAA%3BEACA%2CiBAAA%3BEE2eI%3B%3BAAzDR%2CkBA4DI%2CUAAY%3BEACR%2CgCAAA%3B%3BAA7DR%2CkBAgEI%2CUAAY%2CKAAE%3BEACV%2C6BAAA%3B%3BAAjER%2CkBAoEI%2CUAAY%2CKAAE%3BEACV%3B%3BAArER%2CkBAwEI%2CKAAI%3BEACA%3BEACA%3B%3BAA1ER%2CkBAwEI%2CKAAI%2CeAIE%3BEF%5C%2FfN%2CeAAA%3BEACA%2CiBAAA%3B%3BAEkbJ%2CkBAiFI%3BEACI%3B%3BAAlFR%2CkBAqFI%2CgBACI%3BEFpgBJ%2CwBAAA%3BEACA%2CqBAAA%3BEACA%2CgBAAA%3B%3BAE2gBA%2CQAJ8B%3BEAI9B%3BIAHI%3B%3B%3BAASR%2CgCAAiC%2CWAAa%2CMAAG%2CcAAc%2CIAAI%3BEAC%5C%2FD%3B%3BAAKJ%2CQAH%2BB%3BEAG%5C%2FB%2CgCANiC%2CWAAa%2CMAAG%2CcAAc%2CIAAI%3BIAI3D%3B%3B%3B%3B%3B%3BAC5hBR%2CkBACI%3BEACI%3BEACA%3BEACA%3BEACA%3BEHAJ%2CwBAAA%3BEACA%2CqBAAA%3BEACA%2CgBAAA%3BEGAI%3B%3BAAPR%2CkBAUI%2CeAAe%3BEACX%3B%3BAAXR%2CkBAmBI%2CeAAe%3BAAnBnB%2CkBJ29BA%2CeAwGI%2CcAKI%3BAIxkCR%2CkBJ29BA%2CeAyGI%2CeAII%3BAIxkCR%2CkBJ29BA%2CeA0GI%2CaAGI%3BEIpjCA%3B%3BAApBR%2CkBAuBI%2CeAAe%2CGAAE%2CaAAc%2CGAAE%3BEAC7B%3BEACA%3BEACA%3B%3BAA1BR%2CkBA6BI%2CeAAe%3BEACX%3BEACA%3BEACA%3B%3BAAhCR%2CkBAmCI%2CeAAe%2CMAAK%2CIAAI%2CcAAc%2CIAAI%2CiBAAiB%2CIAAI%2CeAAe%2CIAAI%2CeAAe%2CIAAI%2CcAAc%2CIAAI%3BEACnH%2CeAAA%3BEACA%3BEHhCJ%2C2BAAA%3BEACA%2CwBAAA%3BEACA%2CmBAAA%3BEGgCI%3B%3BAAvCR%2CkBA0CI%2CeAAe%2CcAAc%3BEACzB%2CkBAAA%3BEACA%3BEACA%3B%3BAA7CR%2CkBAgDI%3BEACI%3B%3BAAjDR%2CkBAoDI%2CeAAc%2CcAAc%2CwBAAyB%3BEACjD%3B%3BAAYJ%2CQAR2B%3BEAQ3B%2CkBAPI%2CeAAe%2CMAAK%2CIAAI%2CcAAc%2CIAAI%2CiBAAiB%2CIAAI%2CeAAe%2CIAAI%2CeAAe%2CIAAI%2CcAAc%2CIAAI%3BIACnH%3BIACA%3BIACA%3B%3B%3BAAUR%2CQAN8B%3BEAM9B%2CkBALI%2CeAAe%2CGAAE%2CaAAc%2CGAAE%3BIAC7B%3B%3B%3BAASZ%2CQAL%2BB%3BEAK%5C%2FB%2CkBAJQ%2CeAAe%2CcAAc%3BIACzB%2CkBAAA%3B%3B%3BAAKZ%3BEACI%2CyBAAA%3B%3BAADJ%2CYAGI%3BAAHJ%2CYAII%3BAAJJ%2CYAKI%3BAALJ%2CYAMI%3BEACI%3BEHrFJ%2CeAAA%3BEACA%2CiBAAA%3B%3BAG6EJ%2CYAGI%2CUAOI%3BAAVR%2CYAII%2CUAMI%3BAAVR%2CYAKI%2CUAKI%3BAAVR%2CYAMI%2CUAII%3BEHxFJ%2CeAAA%3BEACA%2CiBAAA%3BEGyFQ%3B%3BAAZZ%2CYAGI%2CUAYI%3BAAfR%2CYAII%2CUAWI%3BAAfR%2CYAKI%2CUAUI%3BAAfR%2CYAMI%2CUASI%3BEACI%2CcAAA%3B%3BAAEA%2CYAfR%2CUAYI%2CEAGK%3BAAAD%2CYAdR%2CUAWI%2CEAGK%3BAAAD%2CYAbR%2CUAUI%2CEAGK%3BAAAD%2CYAZR%2CUASI%2CEAGK%3BAACD%2CYAhBR%2CUAYI%2CEAIK%3BAAAD%2CYAfR%2CUAWI%2CEAIK%3BAAAD%2CYAdR%2CUAUI%2CEAIK%3BAAAD%2CYAbR%2CUASI%2CEAIK%3BEACG%2CcAAA%3B%3BAApBhB%2CYAyBI%2CaACI%3BEACI%3BEACA%3BEACA%3B%3BAA7BZ%2CYAiCI%3BEACI%3BEACA%3BEACA%3B%3BAApCR%2CYAuCI%2CaAEI%3BAAzCR%2CYAwCI%2CWACI%3BEACI%3BEACA%3B%3BAA3CZ%2CYA%2BCI%3BEACI%3BEACA%3B%3BAAjDR%2CYA%2BCI%2CaAII%3BEACI%3B%3BAApDZ%2CYAwDI%2CmBACI%3BEACI%2CgBAAA%3BEACA%2CcAAA%3BEACA%3B%3BAA5DZ%2CYAgEI%3BEACI%3B%3BAAjER%2CYAgEI%2CcAGI%3BEACI%2CyBAAA%3B%3BAApEZ%2CYAgEI%2CcAOI%2CGAAE%3BEACE%3B%3BAAxEZ%2CYA4EI%3BEACI%3BEH3JJ%2CeAAA%3BEACA%2CiBAAA%3BEG6JI%3BEACA%3B%3BAAjFR%2CYA4EI%2CWAOI%3BAAnFR%2CYA4EI%2CWAQI%3BEACI%2C%2BBAAA%3BEACA%3BEACA%3B%3BAAvFZ%2CYA4EI%2CWAcI%2CEAAC%3BEACG%3BEACA%3BEACA%3B%3BAA7FZ%2CYA4EI%2CWAoBI%3BEACI%2CcAAA%3B%3BAAEA%2CYAvBR%2CWAoBI%2CEAGK%3BEACG%2CcAAA%3B%3BAApGhB%2CYAyGI%2CUACI%3BEACI%3BEACA%2CcAAA%3BEACA%2CgBAAA%3B%3BAAWR%2CQAP0B%3BEAO1B%2CYANI%3BIACI%3BIACA%3B%3B%3BAAkCR%2CQA9B8B%3BEA8B9B%2CYA7BI%3BIACI%3BIACA%3B%3BEA2BR%2CYA7BI%2CUAII%3BIACI%3B%3BEAwBZ%2CYApBI%2CcACI%2CGAAG%3BIACC%3B%3BEAkBZ%2CYAdI%3BIACI%3BIACA%3B%3BEAYR%2CYATI%3BIACI%3B%3BEAQR%2CYALI%2CaAAa%3BIACT%3B%3B%3BAA8BR%2CQA1B2B%3BEA0B3B%2CYAzBI%2CmBACI%3BIACI%3B%3BEAuBZ%2CYAnBI%3BIACI%3BIACA%3B%3BEAiBR%2CYAdI%3BIACI%3BIACA%3B%3BEAYR%2CYATI%3BIACI%3B%3BEAQR%2CYALI%3BIACI%3B%3B%3BAAuBZ%2CQAf6B%3BEAe7B%2CYAdQ%3BEAcR%2CYAbQ%3BIACI%3BIACA%3B%3BEAWZ%2CYARQ%3BIACI%3B%3BEAOZ%2CYAJQ%3BIACI%3B%3B%3B%3B%3B%3B%3B%3BACjRZ%3BEACI%3BEACA%3B%3BAAFJ%2CWAII%3BEACI%2CcAAA%3BEJFJ%2CeAAA%3BEACA%2CeAAA%3BEIGI%2CgBAAA%3BEACA%3B%3BAAGJ%2CWAAC%3BEACG%2CsSAAA%3BEAOA%3B%3BAAnBR%2CWAsBI%3BEJnBA%2CeAAA%3BEACA%2CeAAA%3BEIoBI%2CgBAAA%3BEACA%3BEACA%2CyBAAA%3BEACA%2CuBAAA%3BEACA%3BEJ2NJ%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3BEI3NI%3B%3BAAEA%2CWAVJ%2CkBAUK%3BEACG%2CSAAS%2CKAAT%3BEACA%2CcAAA%3BEACA%2CyBAAA%3BEJ3BR%2C6BAAA%3BEACA%2C0BAAA%3BEACA%2CqBAAA%3BEAwCA%2CWAAA%3BEACA%2CYAAA%3BEIbQ%2CaLCE%2CoBKDF%3BEACA%2CgBAAA%3BEACA%3BEJrCR%2CeAAA%3BEACA%2CiBAAA%3BEIsCQ%3B%3BAAGJ%2CWAvBJ%2CkBAuBK%3BEACG%2CcAAA%3B%3BAAEA%2CWA1BR%2CkBAuBK%2COAGI%3BEACG%2CcAAA%3B%3BAAKJ%2CWAhCR%2CkBA%2BBK%2COACI%3BEACG%2CSAAS%2CEAAT%3BEACA%3BEACA%3BEACA%2CwBAAA%3BEACA%3BEACA%3BEACA%3B%3BAAGJ%2CWA1CR%2CkBA%2BBK%2COAWI%3BEACG%2CSAAS%2COAAT%3BEACA%2CcAAA%3B%3BAAlEhB%2CWAuEI%3BEACI%2CuBAAA%3BEACA%2CyBAAA%3BEACA%3B%3BAC1ER%3BEACI%3BEACA%3B%3BAAEA%2CKAAM%3BEACF%3BEACA%3B%3BAAGH%2C6BAAC%3BEACE%3BEACA%3B%3BAAFH%2C6BAAC%2CiBAIE%3BEACI%2CYAAY%2CgEAAZ%3BEACA%3BEACA%3B%3BAAPP%2C6BAAC%2CiBAUE%3BEACI%2CoDAAA%3BEACA%3BEACA%2C6CAAA%3BEACA%3BEACA%2CuBAAA%3BEACA%3BEACA%3BEACA%3B%3BAAlBP%2C6BAAC%2CiBAqBE%3BEL3BJ%2CeAAA%3BEACA%2CiBAAA%3BEK4BQ%2CgBAAA%3BEACA%3B%3BAAxBP%2C6BAAC%2CiBA2BE%3BEACI%3B%3BAA5BP%2C6BAAC%2CiBA%2BBE%3BEACI%3BELtCR%2CeAAA%3BEACA%2CiBAAA%3BEKuCQ%2CgBAAA%3BEACA%2CcAAA%3BEACA%3BEACA%3B%3BAACA%2C6BAtCN%2CiBA%2BBE%2CiBAOK%3BEACG%2CSAAS%2COAAT%3BEACA%2CaNVF%2CoBMUE%3BEL9CZ%2CeAAA%3BEACA%2CiBAAA%3BEK%2BCY%3BEACA%3BEACA%2CWAAW%2CgBAAX%3BEACA%3B%3BAA7CX%2C6BAAC%2CiBAiDE%3BEACI%3BEACA%3BEACA%3B%3BAApDP%2C6BAAC%2CiBAuDE%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAA3DP%2C6BAAC%2CiBA%2BDE%3BEACI%3BEACA%3BEACA%2CWAAW%2CgBAAX%3B%3BAAIR%2C6BAAC%3BEACG%3BEACA%3B%3BAAFJ%2C6BAAC%2CkBAIG%3BEACI%3BEACA%2CcAAA%3B%3BAANR%2C6BAAC%2CkBASG%3BEACI%3BEACA%3BEACA%2CcAAA%3BELxFR%2CeAAA%3BEACA%2CiBAAA%3B%3BAK4FA%2C6BAAC%3BEACG%3BEACA%3B%3BAAFJ%2C6BAAC%2CuBAIG%3BEACI%3BEACA%2CcAAA%3B%3BAANR%2C6BAAC%2CuBASG%3BELtGJ%2CeAAA%3BEACA%2CiBAAA%3B%3BAK0GA%2C6BAAC%3BEACG%3BEACA%3B%3BAAFJ%2C6BAAC%2CsBAIG%3BEACI%3BEACA%2CcAAA%3B%3BAANR%2C6BAAC%2CsBASG%3BELpHJ%2CeAAA%3BEACA%2CiBAAA%3BEKqHQ%3BEACA%3BEACA%2CcAAA%3B%3BAAIR%2C6BAAC%3BEACG%3BEACA%3B%3BAAjIR%2C6BAoII%3BEACI%3B%3BAArIR%2C6BAwII%2COAAM%3BEACF%3B%3BAAzIR%2C6BA4II%3BEACI%3B%3BAA7IR%2C6BAgJI%3BEACI%3B%3BAAgBJ%2CQAb0B%3BEACtB%2C6BAAC%2CiBACG%3BIACI%3B%3BEAFR%2C6BAAC%2CiBAKG%3BIACI%3BIACA%3B%3B%3BAAiBZ%2CQAZ0B%3BEACtB%2C6BAAC%2CiBACG%3BIACI%3B%3BEAFR%2C6BAAC%2CiBAKG%3BIACI%3B%3B%3BAAiBZ%2CQAZ0B%3BEACtB%2C6BAAC%2CiBACG%3BIACI%3B%3BEAFR%2C6BAAC%2CiBAKG%3BIACI%3B%3B%3BAAiBZ%2CQAZ0B%3BEACtB%2C6BAAC%2CiBACG%3BIACI%3B%3BEAFR%2C6BAAC%2CiBAKG%3BIACI%3B%3B%3BAAiBZ%2CQAZ0B%3BEACtB%2C6BAAC%2CiBACG%3BIACI%3B%3BEAFR%2C6BAAC%2CiBAKG%3BIACI%3B%3B%3BAAiBZ%2CQAZ0B%3BEACtB%2C6BAAC%2CiBACG%3BIACI%3B%3BEAFR%2C6BAAC%2CiBAKG%3BIACI%3B%3B%3BAAiBZ%2CQAZ0B%3BEACtB%2C6BAAC%2CiBACG%3BIACI%3B%3BEAFR%2C6BAAC%2CiBAKG%3BIACI%3B%3B%3BAAiBZ%2CQAZ0B%3BEACtB%2C6BAAC%2CiBACG%3BIACI%3B%3BEAFR%2C6BAAC%2CiBAKG%3BIACI%3B%3B%3BAAiBZ%2CQAZ0B%3BEACtB%2C6BAAC%2CiBACG%3BIACI%3B%3BEAFR%2C6BAAC%2CiBAKG%3BIACI%3B%3B%3BAAiBZ%2CQAZ0B%3BEACtB%2C6BAAC%2CiBACG%3BIACI%3B%3BEAFR%2C6BAAC%2CiBAKG%3BIACI%3B%3B%3BAA%2BBZ%2CQA1B2B%3BEACvB%2C6BAAC%2CiBACG%3BIACI%3BIACA%3B%3BEAHR%2C6BAAC%2CiBACG%2CkBAGI%3BIACI%3BIACA%3B%3BEANZ%2C6BAAC%2CiBAUG%3BIACI%3B%3BEAXR%2C6BAAC%2CiBAUG%2CcAEI%3BIACI%3BIACA%3B%3BEAdZ%2C6BAAC%2CiBAkBG%3BIL7RR%2CeAAA%3BIACA%2CiBAAA%3B%3B%3BAK%2BSA%2CQAZyB%3BEACtB%2C6BAAC%2CiBACG%3BIACI%3B%3BEAFR%2C6BAAC%2CiBAKI%3BIACI%3B%3B%3BAAiBZ%2CQAZyB%3BEACrB%2C6BAAC%2CiBACG%3BIACI%3B%3BEAFR%2C6BAAC%2CiBAKG%3BIACI%3B%3B%3BAAiBZ%2CQAZyB%3BEACrB%2C6BAAC%2CiBACG%3BIACI%3B%3BEAFR%2C6BAAC%2CiBAKG%3BIACI%3B%3B%3BAAiBZ%2CQAZyB%3BEACrB%2C6BAAC%2CiBACG%3BIACI%3B%3BEAFR%2C6BAAC%2CiBAKG%3BIACI%3B%3B%3BAAwCZ%2CQAnC8B%3BEAC1B%2C6BAAC%3BIACG%3BIACA%3B%3BEAFJ%2C6BAAC%2CiBAIG%3BIACI%3BIACA%3B%3BEANR%2C6BAAC%2CiBASG%3BIACI%3B%3BEAVR%2C6BAAC%2CiBAaG%3BIACI%3B%3BEAdR%2C6BAAC%2CiBAiBG%3BIACI%3B%3BEAlBR%2C6BAAC%2CiBAiBG%2CcAEK%3BIACG%3BIACA%3B%3BEArBZ%2C6BAAC%2CiBAyBG%2CkBACI%3BIACI%3BIACA%3B%3B%3BAA2BhB%2CQArByB%3BEACrB%2C6BAAC%3BIACG%3B%3BEADJ%2C6BAAC%2CiBAEG%3BIACI%3B%3BEAHR%2C6BAAC%2CiBAMG%3BIACI%3B%3BEAPR%2C6BAAC%2CiBAWG%2CkBACI%3BIACI%3BIACA%3B%3B%3BAAsChB%2CQAhCyB%3BEACrB%2C6BAAC%3BIACI%3B%3BEADL%2C6BAAC%2CiBAEG%3BIACI%3BIACA%3B%3BEAJR%2C6BAAC%2CiBAOG%3BIACI%3BIACA%3B%3BEATR%2C6BAAC%2CiBAYG%3BIACI%3BIACA%3BIACA%2CcAAA%3B%3BEAfR%2C6BAAC%2CiBAkBG%2CkBACI%3BIACI%3BIACA%3B%3BEArBZ%2C6BAAC%2CiBAyBG%3BIACI%3B%3B%3BAAgBZ%2CQAXyB%3BEACrB%2C6BAAC%3BIACG%3B%3BEADJ%2C6BAAC%2CiBAGG%2CeAAe%3BIACX%3BIACA%3B%3B%3BAAkChB%2CQA7B%2BB%3BEACvB%2C6BAAC%3BIACI%3B%3BEADL%2C6BAAC%2CiBAEG%3BIACI%3BIACA%3B%3BEAJR%2C6BAAC%2CiBAOG%3BIACI%3BIACA%3B%3BEATR%2C6BAAC%2CiBAYG%3BIACI%3B%3BEAbR%2C6BAAC%2CiBAgBG%2CkBACI%3BIACI%3BIACA%3B%3BEAnBZ%2C6BAAC%2CiBAuBG%2CeAAe%3BIACX%3B%3B%3BACndhB%3BEACI%2CaPoCQ%2CuBOpCR%3B%3BAADJ%2CaAGI%3BEACI%3BEACA%3B%3BAALR%2CaAGI%2COAII%3BEACI%2CgBAAA%3BEACA%3B%3BAATZ%2CaAGI%2COASI%3BEACI%3B%3BAAYR%2CQAR2B%3BEAQ3B%2CaAPI%2COACI%3BIACI%3B%3B%3BAAehB%2CQAN%2BB%3BEAM%5C%2FB%2CaALQ%3BIACI%3BIACA%3B%3B%3BAChCZ%3BEACI%3BEACA%3B%3BAAEA%2C0BAAC%3BEACG%2CyBAAA%3B%3BAADJ%2C0BAAC%2CWAEG%3BEACI%2CcAAA%3BEACA%3B%3BAAJR%2C0BAAC%2CWAOG%3BEACI%2CcAAA%3B%3BAARR%2C0BAAC%2CWAWG%3BEACI%3BEACA%3BEACA%2CcAAA%3B%3BAAdR%2C0BAAC%2CWAiBG%2CEAAC%3BAAjBL%2C0BAAC%2CWAiBG%2CERy8BR%2CcAkPI%2CcAAc%3BEQ1rCN%3BEACA%2CyBAAA%3BEACA%2CcAAA%3B%3BAACA%2C0BArBP%2CWAiBG%2CEAAC%2CIAII%3BAAAD%2C0BArBP%2CWAiBG%2CERy8BR%2CcAkPI%2CcAAc%2CQQvrCL%3BEACG%2CyBAAA%3BEACA%2CcAAA%3BEACA%2C%2BFAAA%3BEACA%2C4FAAA%3BEACA%2CuFAAA%3B%3BAA1BZ%2C0BAAC%2CWA8BG%3BEACI%2CkDAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CWAAW%2CgBAAX%3B%3BAAtCR%2C0BAAC%2CWAyCG%3BEAEI%2CkDAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CWAAW%2CgBAAX%3B%3BAAnDR%2C0BAAC%2CWAsDG%3BEACI%2CkDAAA%3BEACA%3BEACA%3BEACA%3BEAEA%3BEACA%3BEACA%3BEACA%2CWAAW%2CgBAAX%3B%3BAAIR%2C0BAAC%2CWAEG%3BEACI%3B%3BAAHR%2C0BAAC%2CWAMG%2CcAAa%3BEACT%3BEACA%3B%3BAARR%2C0BAAC%2CWAUG%3BEACI%2C2DAAA%3BEACA%2CmDAAA%3BEACA%2CyBAAA%3BEACA%3BEACA%3B%3BAAfR%2C0BAAC%2CWAUG%2CeAMI%3BAAhBR%2C0BAAC%2CWAUG%2CeAMsB%3BAAhB1B%2C0BAAC%2CWAUG%2CeAMiD%3BEACzC%2CcAAA%3B%3BAAjBZ%2C0BAAC%2CWAUG%2CeAUI%2CMAAK%3BAApBb%2C0BAAC%2CWAUG%2CeAWI%2CMAAK%3BAArBb%2C0BAAC%2CWAUG%2CeAYI%2CMAAK%3BAAtBb%2C0BAAC%2CWAUG%2CeAaI%2CMAAK%3BAAvBb%2C0BAAC%2CWAUG%2CeAcI%2CMAAK%3BAAxBb%2C0BAAC%2CWAUG%2CeAeI%3BAAzBR%2C0BAAC%2CWAUG%2CeAgBI%3BEACI%3BEACA%3BEACA%3BEP5FZ%2C0BAAA%3BEACA%2CuBAAA%3BEACA%2CkBAAA%3BEO4FY%2CWAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CyBAAA%3BEPzGZ%2CeAAA%3BEACA%2CiBAAA%3BEO0GY%2CgCAAA%3B%3BAAvCZ%2C0BAAC%2CWAUG%2CeAgCI%3BEACI%2CyBAAA%3B%3BAA3CZ%2C0BAAC%2CWA%2BCG%2CeAAc%2CcAAe%3BEACzB%2CcAAA%3BEACA%3BEACA%2CgBAAA%3BEPtHR%2CeAAA%3BEACA%2CiBAAA%3B%3BAO8HA%2C0BAAC%3BEACG%3BEACA%3BEACA%2CkBAAkB%2CyGAAlB%3B%3BAArIR%2C0BAwII%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEPhFJ%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECiIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3BAMjMlE%2C0BAiJI%2COAAM%3BEACF%3B%3BAAlJR%2C0BAqJI%3BEACI%3B%3BAAtJR%2C0BAyJI%3BEACI%3BEACA%3B%3BAAGJ%2C0BAAC%2CaACG%2CkBAAkB%3BEPbtB%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAkGA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3BEApBA%2CsCAAA%3BEACA%2CkCAAA%3BEACA%2C8BAAA%3BEOpEQ%3BEACA%3B%3BAANR%2C0BAAC%2CaASG%2CkBAAkB%3BEACd%3B%3BAAVR%2C0BAAC%2CaAaG%2CkBAAkB%3BAAbtB%2C0BAAC%2CaAaG%2CkBRmzBR%2CeAkPI%2CcAAc%3BEQpiCN%3B%3BAAcR%2CQAV8B%3BEACzB%2C0BAAC%2CWACE%3BIACI%3BIACA%3BIACA%3B%3B%3BAAmBZ%2CQAd2B%3BEAEtB%2C0BAAC%2CWACE%3BIACI%3B%3BEAUZ%2C0BANI%3BIACI%3BIACA%3B%3B%3BAAsCR%2CQAlC8B%3BEAC1B%2C0BAAC%2CaACG%2CkBAAkB%3BIACd%3BIP0BZ%2C%2BBAAA%3BIACA%2C2BAAA%3BIACA%2CuBAAA%3BIO1BY%3BIACA%3B%3BEALR%2C0BAAC%2CaAQG%2CkBAAkB%3BIACd%3BIACA%3B%3BEAIR%2C0BAAC%2CWACG%3BIACI%3BIACA%3BIACA%3B%3BEAJR%2C0BAAC%2CWAOG%3BIACI%3BIACA%3B%3BEATR%2C0BAAC%2CWAYG%3BIACI%3BIACA%3B%3B%3BAAeZ%2CQAVyB%3BEACrB%2C0BAAC%2CWACG%3BIACI%3BIACA%3BIACA%3B%3B%3BAA6BhB%2CQAxB%2BB%3BEAwB%5C%2FB%2C0BAvBQ%3BIACI%3BIACA%3B%3BEAGJ%2C0BAAC%2CWACG%3BIACI%3BIACA%3BIACA%3B%3BEAJR%2C0BAAC%2CWAOG%3BIACI%3BIACA%3B%3BEATR%2C0BAAC%2CWAYG%3BIACI%3BIACA%3B%3B%3BACxQhB%3BEACI%3BEACA%3B%3BAAFJ%2C4BAQI%2COAAM%3BEACF%3B%3BAATR%2C4BAYI%3BEACI%3B%3BAAbR%2C4BAgBI%3BEACI%3B%3BAAQJ%2CQAL2B%3BEAK3B%3BIAJI%3BIACA%3B%3B%3BAAOR%2CQAJ%2BB%3BEAI%5C%2FB%3BIAHQ%3BIACA%3B%3B%3BAC3BR%3BEACI%3BEACA%3B%3BAAEA%2CgBAAC%2CiBACG%3BEACI%2CeAAA%3BET4IR%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAyBA%2CuBAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3B%3BAS5KA%2CgBAAC%2CiBAOG%3BETRJ%2CeAAA%3BEACA%2CiBAAA%3BESSQ%3B%3BAATR%2CgBAAC%2CiBAYG%3BEACI%2CyBAAA%3BEACA%2C2DAAA%3BEACA%2CkBAAA%3BETXR%2C2BAAA%3BEACA%2CwBAAA%3BEACA%2CmBAAA%3BEAmDA%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECiIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3BAQ7L9D%2CgBAAC%2CiBAYG%2CaAOI%3BEACI%2CcAAA%3B%3BAApBZ%2CgBAAC%2CiBAYG%2CaAWI%3BEACI%2CcAAA%3B%3BAAxBZ%2CgBAAC%2CiBAYG%2CaAeI%2CKAAI%3BAA3BZ%2CgBAAC%2CiBAYG%2CaV88BR%2CeAkPI%2CcAAc%2CQUjrCF%3BEACA%3B%3BAAhChB%2CgBAqCI%3BEACI%2CwBAAA%3BEACA%3B%3BAAvCR%2CgBA0CI%3BEACI%2CcAAA%3B%3BAA3CR%2CgBA8CI%2CKAAI%3BAA9CR%2CgBV89BA%2CeAkPI%2CcAAc%2CQUlqCV%3BEACA%3B%3BAA%5C%2FCR%2CgBAkDI%3BEACI%3B%3BAAUR%2CQAPkC%3BEAC1B%2CgBAAC%2CiBACG%3BIACI%3B%3B%3BACzDhB%3BEACI%3BEACA%3B%3BAAEA%2CoBAAC%2CYACG%2CMAAO%2CEAAC%3BAADZ%2CoBAAC%2CYACG%2CMAAO%2CEXy9Bf%2CcAkPI%2CcAAc%3BEW1sCN%3BEACA%2CcAAA%3BEACA%3BEACA%3B%3BAALR%2CoBAAC%2CYACG%2CMAAO%2CEAAC%2CIAMJ%3BAAPR%2CoBAAC%2CYACG%2CMAAO%2CEXy9Bf%2CcAkPI%2CcAAc%2CQWrsCN%3BEACI%3BEACA%3B%3BAAGJ%2CoBAZP%2CYACG%2CMAAO%2CEAAC%2CIAWH%3BAAAD%2CoBAZP%2CYACG%2CMAAO%2CEXy9Bf%2CcAkPI%2CcAAc%2CQWhsCL%3BEACG%2CSAAS%2COAAT%3BEVdZ%2CeAAA%3BEACA%2CeAAA%3BEUeY%2CaXoBF%2CoBWpBE%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEVmCZ%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECiIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3BASnKtD%2CoBA1BP%2CYACG%2CMAAO%2CEAAC%2CIAyBH%3BAAAD%2CoBA1BP%2CYACG%2CMAAO%2CEXy9Bf%2CcAkPI%2CcAAc%2CQWlrCL%3BEACG%2CcAAA%3B%3BAAGJ%2CoBA9BP%2CYACG%2CMAAO%2CEAAC%2CIA6BH%2CMAAM%3BAAAP%2CoBA9BP%2CYACG%2CMAAO%2CEXy9Bf%2CcAkPI%2CcAAc%2CQW9qCL%2CMAAM%3BEACH%2CcAAA%3BEACA%3B%3BAAKZ%2CoBAAC%3BEACG%3B%3BAADJ%2CoBAAC%2CYAEG%3BEACI%3BEACA%3B%3BAAJR%2CoBAAC%2CYAOG%3BEACI%2CsBAAA%3B%3BAARR%2CoBAAC%2CYAWG%3BEACI%3BEACA%3B%3BAAbR%2CoBAAC%2CYAgBG%2CYAAY%3BEACR%3B%3BAAIR%2CoBAAC%2CiBACG%3BEACI%2CcAAA%3BEACA%3B%3BAAHR%2CoBAAC%2CiBAKG%3BEACI%2CcAAA%3BEVjER%2CeAAA%3BEACA%2CiBAAA%3B%3BAUqEA%2CoBAAC%3BEACG%3B%3BAAGJ%2CoBAAC%2CSACG%3BEVuJJ%2C%2BBAAA%3BEACA%2C2BAAA%3BEACA%2CuBAAA%3B%3BAUpJA%2CoBAAC%3BEACG%3B%3BAADJ%2CoBAAC%2CYAGG%2CaACI%3BEVpFR%2CeAAA%3BEACA%2CiBAAA%3BEUqFY%2CwBAAA%3BEACA%2CcAAA%3BEACA%3B%3BAARZ%2CoBAAC%2CYAYG%2CMAAM%2CSAAS%3BEACX%2CcAAA%3BEACA%2CgBAAA%3BEACA%3BEACA%3BEVhGR%2CeAAA%3BEACA%2CiBAAA%3B%3BAUiGQ%2CoBAlBP%2CYAYG%2CMAAM%2CSAAS%2CEAMV%3BEACG%2CcAAA%3B%3BAAnBZ%2CoBAAC%2CYAuBG%2CMAAM%3BEACF%3B%3BAAxBR%2CoBAAC%2CYA2BG%2CMAAM%2CSAAS%3BEACX%3B%3BAA5BR%2CoBAAC%2CYA%2BBG%2CMAAM%3BEACF%3BEV%2BBR%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAgBA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3BEA8DA%2C%2BBAAA%3BEACA%2C2BAAA%3BEACA%2CuBAAA%3BEAgBA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3B%3BAUtKA%2CoBAAC%2CYAuCG%2CMAAM%3BEACF%3BEACA%3BEACA%3BEACA%3B%3BAAIR%2CoBAAC%3BEACG%3BEACA%3B%3BAAFJ%2CoBAAC%2CqBAIG%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAARR%2CoBAAC%2CqBAIG%2CaAMI%3BAAVR%2CoBAAC%2CqBAIG%2CaAMc%3BEACN%2CcAAA%3B%3BAAXZ%2CoBAAC%2CqBAeG%3BEACI%3B%3BAAhBR%2CoBAAC%2CqBAmBG%2COAAM%3BEACF%2CSAAS%2CEAAT%3BEACA%2CwBAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CWAAW%2CgBAAX%3B%3BAA1BR%2CoBAAC%2CqBA6BG%3BEACI%3B%3BAA9BR%2CoBAAC%2CqBAiCG%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAArCR%2CoBAAC%2CqBAwCG%2CMACI%3BAAzCR%2CoBAAC%2CqBAwCG%2CMACc%3BEACN%2CcAAA%3B%3BAA1CZ%2CoBAAC%2CqBAwCG%2CMAKI%3BEACI%2CgBAAA%3BEV7KZ%2CeAAA%3BEACA%2CiBAAA%3B%3BAU8HA%2CoBAAC%2CqBAwCG%2CMAUI%2CEAAC%3BAAlDT%2CoBAAC%2CqBAwCG%2CMAUI%2CEX0yBZ%2CcAkPI%2CcAAc%3BEW3hCF%3BEACA%2CcAAA%3BEACA%3BEACA%3B%3BAACA%2CoBAvDX%2CqBAwCG%2CMAUI%2CEAAC%2CIAKI%3BAAAD%2CoBAvDX%2CqBAwCG%2CMAUI%2CEX0yBZ%2CcAkPI%2CcAAc%2CQWvhCD%3BEACG%2CSAAS%2COAAT%3BEACA%2CaXpJN%2CoBWoJM%3BEVxLhB%2CeAAA%3BEACA%2CiBAAA%3BEUyLgB%3B%3BAA3DhB%2CoBAAC%2CqBAwCG%2CMAUI%2CEAAC%2CIAWG%3BAA7DZ%2CoBAAC%2CqBAwCG%2CMAUI%2CEX0yBZ%2CcAkPI%2CcAAc%2CQWjhCF%3BEACI%3B%3BAA9DhB%2CoBAAC%2CqBAwCG%2CMA0BI%2CKAAI%3BAAlEZ%2CoBAAC%2CqBAwCG%2CMXozBR%2CeAkPI%2CcAAc%2CQW5gCF%3BEACA%3BEACA%3B%3BAAKZ%2CoBAAC%3BEACG%3BEACA%3B%3BAAFJ%2CoBAAC%2CoBAIG%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAARR%2CoBAAC%2CoBAIG%2CaAMI%3BAAVR%2CoBAAC%2CoBAIG%2CaAMc%3BEACN%2CcAAA%3B%3BAAXZ%2CoBAAC%2CoBAeG%3BEACI%3B%3BAAhBR%2CoBAAC%2CoBAmBG%2COAAM%3BEACF%2CSAAS%2CEAAT%3BEACA%2CwBAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CWAAW%2CgBAAX%3B%3BAA1BR%2CoBAAC%2CoBA6BG%3BEACI%3B%3BAA9BR%2CoBAAC%2CoBAiCG%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAArCR%2CoBAAC%2CoBAwCG%2CMACI%3BAAzCR%2CoBAAC%2CoBAwCG%2CMACc%3BEACN%2CcAAA%3B%3BAA1CZ%2CoBAAC%2CoBAwCG%2CMAKI%3BEACI%2CgBAAA%3BEVtPZ%2CeAAA%3BEACA%2CiBAAA%3B%3BAUuMA%2CoBAAC%2CoBAwCG%2CMAUI%2CEAAC%3BAAlDT%2CoBAAC%2CoBAwCG%2CMAUI%2CEXiuBZ%2CcAkPI%2CcAAc%3BEWl9BF%3BEACA%2CcAAA%3BEACA%3BEACA%3B%3BAACA%2CoBAvDX%2CoBAwCG%2CMAUI%2CEAAC%2CIAKI%3BAAAD%2CoBAvDX%2CoBAwCG%2CMAUI%2CEXiuBZ%2CcAkPI%2CcAAc%2CQW98BD%3BEACG%2CSAAS%2COAAT%3BEACA%2CaX7NN%2CoBW6NM%3BEVjQhB%2CeAAA%3BEACA%2CiBAAA%3BEUkQgB%3B%3BAA3DhB%2CoBAAC%2CoBAwCG%2CMAUI%2CEAAC%2CIAWG%3BAA7DZ%2CoBAAC%2CoBAwCG%2CMAUI%2CEXiuBZ%2CcAkPI%2CcAAc%2CQWx8BF%3BEACI%3B%3BAA9DhB%2CoBAAC%2CoBAwCG%2CMA0BI%2CKAAI%3BAAlEZ%2CoBAAC%2CoBAwCG%2CMX2uBR%2CeAkPI%2CcAAc%2CQWn8BF%3BEACA%3BEACA%3B%3BAAKZ%2CoBAAC%3BEACG%3BEACA%3B%3BAAFJ%2CoBAAC%2CoBAIG%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAARR%2CoBAAC%2CoBAIG%2CaAMI%3BAAVR%2CoBAAC%2CoBAIG%2CaAMc%3BEACN%2CcAAA%3B%3BAAXZ%2CoBAAC%2CoBAeG%3BEACI%3B%3BAAhBR%2CoBAAC%2CoBAmBG%2COAAM%3BEACF%2CSAAS%2CEAAT%3BEACA%2CwBAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CWAAW%2CgBAAX%3B%3BAA1BR%2CoBAAC%2CoBA6BG%3BEACI%3B%3BAA9BR%2CoBAAC%2CoBAiCG%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAArCR%2CoBAAC%2CoBAwCG%2CMACI%3BAAzCR%2CoBAAC%2CoBAwCG%2CMACc%3BEACN%2CcAAA%3B%3BAA1CZ%2CoBAAC%2CoBAwCG%2CMAKI%3BEACI%2CgBAAA%3BEV%5C%2FTZ%2CeAAA%3BEACA%2CiBAAA%3B%3BAUgRA%2CoBAAC%2CoBAwCG%2CMAUI%2CEAAC%3BAAlDT%2CoBAAC%2CoBAwCG%2CMAUI%2CEXwpBZ%2CcAkPI%2CcAAc%3BEWz4BF%3BEACA%2CcAAA%3BEACA%3BEACA%3B%3BAACA%2CoBAvDX%2CoBAwCG%2CMAUI%2CEAAC%2CIAKI%3BAAAD%2CoBAvDX%2CoBAwCG%2CMAUI%2CEXwpBZ%2CcAkPI%2CcAAc%2CQWr4BD%3BEACG%2CSAAS%2COAAT%3BEACA%2CaXtSN%2CoBWsSM%3BEV1UhB%2CeAAA%3BEACA%2CiBAAA%3BEU2UgB%3B%3BAA3DhB%2CoBAAC%2CoBAwCG%2CMAUI%2CEAAC%2CIAWG%3BAA7DZ%2CoBAAC%2CoBAwCG%2CMAUI%2CEXwpBZ%2CcAkPI%2CcAAc%2CQW%5C%2F3BF%3BEACI%3B%3BAA9DhB%2CoBAAC%2CoBAwCG%2CMA0BI%2CKAAI%3BAAlEZ%2CoBAAC%2CoBAwCG%2CMXkqBR%2CeAkPI%2CcAAc%2CQW13BF%3BEACA%3BEACA%2CcAAA%3B%3BAAxVhB%2CoBA6VI%3BEACI%2C%2BBAAA%3B%3BAA9VR%2CoBAiWI%3BEACI%3BEACA%3B%3BAAnWR%2CoBAsWI%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAA1WR%2CoBA6WI%3BEACI%3B%3BAA9WR%2CoBAiXI%2CMAAK%3BEACD%2CeAAA%3BEACA%3B%3BAAnXR%2CoBAsXI%2CSAAS%3BEACL%3BEACA%3B%3BAAxXR%2CoBAsXI%2CSAAS%2CYAIL%3BEVxOJ%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAgFA%2C%2BBAAA%3BEACA%2C2BAAA%3BEACA%2CuBAAA%3BEAgBA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3BEUqIQ%3B%3BAA9XZ%2CoBAkYI%2CSAAS%3BEACL%2CcAAA%3BEACA%3BEACA%3BEVlYJ%2CeAAA%3BEACA%2CiBAAA%3BEUmYI%3BEVrPJ%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAkGA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3BEApBA%2C%2BBAAA%3BEACA%2C2BAAA%3BEACA%2CuBAAA%3B%3BAUvOJ%2CoBA6YI%2CMAAM%3BEV1YN%2CeAAA%3BEACA%2CiBAAA%3BEU2YI%2CwBAAA%3BEACA%2CcAAA%3BEACA%3B%3BAAjZR%2CoBAoZI%2CMAAM%3BEVjZN%2CeAAA%3BEACA%2CiBAAA%3BEUkZI%2CcAAA%3BEACA%2CgBAAA%3BEACA%3BEACA%2CcAAA%3BEACA%3B%3BAA1ZR%2CoBA6ZI%2CMAAM%3BEV1ZN%2CeAAA%3BEACA%2CiBAAA%3BEU2ZI%2CcAAA%3BEACA%2CgBAAA%3BEACA%3BEACA%3BEACA%3B%3BAAnaR%2CoBAsaI%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAA5aR%2CoBAsaI%2CYAQI%3BEV3aJ%2CeAAA%3BEACA%2CiBAAA%3BEU4aQ%3BEACA%2CgBAAA%3B%3BAAjbZ%2CoBAqbI%2CYAAW%2CMAAO%3BEACd%3B%3BAAtbR%2CoBAybI%2CYAAW%2CMAAM%3BEACb%3B%3BAA1bR%2CoBA6bI%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CmBAAA%3BEACA%3BEVvYJ%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECiIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3BASjMlE%2CoBAwcI%3BEACI%3B%3BAAzcR%2CoBA4cI%2CyBAAwB%2CSAAS%3BEAC7B%3BEVhZJ%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECiIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3BES8Q1D%3BEACA%2CcAAA%3B%3BAAhdR%2CoBAmdI%3BEACI%2CgBAAA%3BEACA%2CyBAAA%3BEVldJ%2CeAAA%3BEACA%2CiBAAA%3BEUmdI%3B%3BAAvdR%2CoBAmdI%2CyBAKI%3BEVrdJ%2CeAAA%3BEACA%2CiBAAA%3BEUsdQ%3BEACA%2CgBAAA%3B%3BAA3dZ%2CoBAmdI%2CyBAeI%3BEACI%2CcAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CgBAAA%3BEACA%2CaXrcA%2CuBWqcA%3BEVveR%2CeAAA%3BEACA%2CiBAAA%3B%3BAUmfQ%2CoBApCR%2CyBAeI%2CYAqBK%2CMAAO%3BEACJ%3B%3BAAxfhB%2CoBA6fI%2CmBAAkB%2CSAAS%3BEACvB%3BEACA%2CmBAAA%3BEACA%3BEVncJ%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECiIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3BASjMlE%2CoBAogBI%2CYAAW%2CMAAO%2CyBAAwB%2CSAAS%3BAApgBvD%2CoBAqgBI%2CYAAW%2CMAAO%2CmBAAkB%2CSAAS%3BEACzC%3B%3BAAtgBR%2CoBAygBI%2CYAAW%2CMAAO%2CYAAY%3BEAC1B%3B%3BAA1gBR%2CoBA6gBI%2CYAAW%2CMAAO%3BEACd%3B%3BAA9gBR%2CoBAihBI%2CYAAW%2CMAAM%3BEACb%3BEACA%3BEACA%3B%3BAAWJ%2CQAP2B%3BEAO3B%2CoBANI%3BIACI%3B%3B%3BAAYR%2CQAP8B%3BEAO9B%2CoBANI%3BIACI%3BIACA%3B%3B%3BAAsCZ%2CQAlC%2BB%3BEAkC%5C%2FB%2CoBAhCQ%3BIACI%3BIACA%3B%3BEA8BZ%2CoBA3BQ%3BIACI%3B%3BEAGJ%2CoBAAC%2CYACG%3BIACI%3B%3BEAqBhB%2CoBAlBQ%3BIACI%2CuBAAA%3B%3BEAGJ%2CoBAAC%2CYACG%3BIACI%3BIACA%3B%3BEAIR%2CoBAAC%2CYACG%2CMAAO%2CEAAC%3BEADZ%2CoBAAC%2CYACG%2CMAAO%2CEX4ZnB%2CcAkPI%2CcAAc%3BIW7oBF%3BIACA%3B%3B%3BACpkBhB%3BEACI%3BEACA%3B%3BAAFJ%2CcAII%3BEACI%3B%3BAALR%2CcAQI%3BEACI%3BEX%2BGJ%2CmDAAA%3BEACA%2CgDAAA%3BEACA%2C2CAAA%3B%3BAW1HJ%2CcAaI%2CUAAU%3BEACN%3BEACA%3BEACA%2CyBAAA%3BEACA%2CcAAA%3BEACA%3BEX2CJ%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECiIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3BAUjMlE%2CcAsBI%2CUAAS%2CMAAO%3BEACZ%2CyBAAA%3BEACA%2CcAAA%3B%3BAAxBR%2CcA2BI%2CUAAU%2CSAAS%3BEACf%3B%3BAAaJ%2CQAV8B%3BEAU9B%2CcATI%3BIXJJ%2CiBAAA%3BIACA%2CkBAAA%3B%3BEWYA%2CcALI%3BIACI%3B%3B%3BAASR%2CQAL8B%3BEAK9B%3BIAJI%3BIACA%3B%3B%3BAAQR%2CkBACI%3BEACI%3BEACA%3B%3BAAHR%2CkBAMI%3BEACI%2CyBAAA%3BEACA%3BEACA%3B%3BAATR%2CkBAMI%2CaAKI%3BEACI%2C4BAAA%3BEACA%3BEACA%3B%3BAAdZ%2CkBAMI%2CaAWI%3BEACI%3BEACA%3B%3BAAnBZ%2CkBAMI%2CaAgBI%3BEACI%3B%3BAAvBZ%2CkBAMI%2CaAoBI%3BEACI%3B%3BAA3BZ%2CkBAMI%2CaAwBI%3BEACI%3B%3BAA%5C%2FBZ%2CkBAmCI%3BEACI%3B%3BAAsBJ%2CQAnB8B%3BEAmB9B%2CkBAlBI%3BIACI%3B%3BEAiBR%2CkBAdI%2CgBAAe%3BEAcnB%2CkBAbI%2CiBAAgB%3BIACZ%3B%3BEAYR%2CkBATI%2CgBAAe%3BIACX%3B%3BEAQR%2CkBALI%2CiBAAgB%3BIACZ%3B%3B%3BAA2BR%2CQAvB2B%3BEAuB3B%2CkBAtBI%2CaACI%3BIACI%2CkBAAA%3B%3BEAoBZ%2CkBAtBI%2CaAKI%3BIACI%3BIACA%3B%3BEAeZ%2CkBAtBI%2CaAUI%2CcACI%3BEAWZ%2CkBAtBI%2CaAUI%2CcZs2BZ%2CeAkPI%2CcAAc%3BIYtlCE%3B%3BEAUhB%2CkBAtBI%2CaAgBI%3BIACI%3B%3B%3BAAeZ%2CQAVyB%3BEAUzB%2CkBATI%2CgBAAe%3BIACX%3B%3BEAQR%2CkBALI%2CiBAAgB%3BIACZ%3B%3B%3BAA6BR%2CQAzB8B%3BEAyB9B%2CkBAxBI%3BIACI%3BIACA%3BIACA%3B%3BEAqBR%2CkBAxBI%2CaAKI%3BIACI%2CiBAAA%3B%3BEAkBZ%2CkBAxBI%2CaASI%3BIACI%2CuBAAA%3B%3BEAGJ%2CmBAAoB%2CmBAbxB%3BIAcQ%3B%3BEAUZ%2CkBAxBI%2CaAiBI%2CWAAW%3BEAOnB%2CkBAxBI%2CaAkBI%2CWAAW%3BIACP%3B%3B%3BAAehB%2CQAV%2BB%3BEAU%5C%2FB%2CkBATQ%3BIACI%3BIACA%3B%3BEAOZ%2CkBAJQ%2CeAAe%3BIACX%3B%3B%3BAC9KZ%3BEACI%3BEACA%3BEACA%2CyBAAA%3BEACA%2CcAAA%3B%3BAAEA%2CmBAAC%3BEACG%2CcAAA%3BEACA%2CyBAAA%3B%3BAAFJ%2CmBAAC%2CcAIG%3BEACI%3BEACA%3BEZTR%2CeAAA%3BEACA%2CiBAAA%3B%3BAYEA%2CmBAAC%2CcAUG%3BEACI%2CcAAA%3B%3BAAXR%2CmBAAC%2CcAcG%3BEACI%2CcAAA%3B%3BAAfR%2CmBAAC%2CcAkBG%2CEAAC%3BEACG%2CcAAA%3B%3BAAnBR%2CmBAAC%2CcAsBG%2CKAAI%3BAAtBR%2CmBAAC%2Ccbw9BL%2CeAkPI%2CcAAc%2CQaprCN%3BEACA%2CcAAA%3B%3BAACA%2CmBAxBP%2CcAsBG%2CKAAI%2CWAEC%3BAAAD%2CmBAxBP%2Ccbw9BL%2CeAkPI%2CcAAc%2CQaprCN%2CWAEC%3BEACG%2CcAAA%3B%3BAA%5C%2FBhB%2CmBAoCI%3BEACI%2CeAAA%3B%3BAArCR%2CmBAwCI%3BEZ6LA%2CqCAAA%3BEACA%2CiCAAA%3BEACA%2C6BAAA%3BEY7LI%3BEACA%3B%3BAA3CR%2CmBA%2BCI%3BEACI%2CmBAAA%3BEACA%3B%3BAAjDR%2CmBAoDI%3BEACI%3BEZlDJ%2CeAAA%3BEACA%2CiBAAA%3BEYmDI%3BEACA%2CcAAA%3B%3BAAxDR%2CmBA2DI%3BEACI%3B%3BAAYJ%2CQAT%2BB%3BEAS%5C%2FB%2CmBARI%3BIACI%3B%3BEAOR%2CmBARI%2CYAEI%2CKAAI%3BEAMZ%2CmBARI%2CYb85BR%2CeAkPI%2CcAAc%2CQa9oCF%3BIACA%3B%3B%3BACnEhB%3BEACI%3BEACA%3B%3BAAFJ%2CSAII%3BEbDA%2CeAAA%3BEACA%2CeAAA%3BEaEI%3B%3BAAGJ%2CSAAC%2CWACG%3BEACI%2C2DAAA%3BEACA%2CmDAAA%3BEACA%2CyBAAA%3BEACA%3BEACA%3B%3BAANR%2CSAAC%2CWACG%2CeAMI%3BAAPR%2CSAAC%2CWACG%2CeAMsB%3BAAP1B%2CSAAC%2CWACG%2CeAMiD%3BEACzC%2CcAAA%3B%3BAARZ%2CSAAC%2CWACG%2CeAUI%2CMAAK%3BAAXb%2CSAAC%2CWACG%2CeAWI%2CMAAK%3BAAZb%2CSAAC%2CWACG%2CeAYI%2CMAAK%3BAAbb%2CSAAC%2CWACG%2CeAaI%2CMAAK%3BAAdb%2CSAAC%2CWACG%2CeAcI%2CMAAK%3BAAfb%2CSAAC%2CWACG%2CeAeI%3BAAhBR%2CSAAC%2CWACG%2CeAgBI%3BEACI%3BEACA%3BEACA%3BEbrBZ%2C0BAAA%3BEACA%2CuBAAA%3BEACA%2CkBAAA%3BEaqBY%2CWAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CyBAAA%3BEblCZ%2CeAAA%3BEACA%2CiBAAA%3BEamCY%2CgCAAA%3B%3BAA9BZ%2CSAAC%2CWACG%2CeAgCI%3BEACI%2CyBAAA%3B%3BAAlCZ%2CSAAC%2CWAsCG%2CeAAc%2CcAAe%3BEACzB%2CcAAA%3BEACA%3BEACA%2CgBAAA%3BEb%5C%2FCR%2CeAAA%3BEACA%2CiBAAA%3B%3BAaKA%2CSAAC%2CWA6CG%2CUACI%3BEACI%3B%3BAAUZ%2CQAL2B%3BEAK3B%3BIAJI%3BIACA%3B%3B%3BAAOR%2CQAJ%2BB%3BEAI%5C%2FB%3BIAHQ%3BIACA%3B%3B%3BACpER%3BEACI%3BEACA%3B%3BAAEA%2CgBAAC%2CgBACG%2CsBACI%2CiBAAgB%2CMAAO%3BEACnB%3BEACA%2C8BAAA%3BEACA%2CYAAY%2C6HAAZ%3BEACA%2CYAAY%2C2IAAZ%3BEACA%3B%3BAAXhB%2CgBAgBI%2CWAAU%2CSACL%3BEACG%3BEACA%3B%3BAAnBZ%2CgBAuBI%3BACvBJ%2C6BAA8B%3BEf4B1B%2CkBAAA%3BEACA%2CmBAAA%3B%3BAc7BJ%2CgBAuBI%2CsBAGI%3BAC1BR%2C6BAA8B%2CsBD0BtB%3BEACI%3BEACA%3B%3BAA5BZ%2CgBAuBI%2CsBAQI%2CWAAW%3BAC%5C%2FBnB%2C6BAA8B%2CsBD%2BBtB%2CWAAW%3BEd8Bf%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECiIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3BEahKtD%2C4BAAA%3BEACA%3BEACA%3BEACA%2C6BAAA%3B%3BAApCZ%2CgBAuBI%2CsBAgBI%2CiBAAgB%2CMAAO%3BACvC%5C%2FB%2C6BAA8B%2CsBDuCtB%2CiBAAgB%2CMAAO%3BEACnB%3BEACA%2C8BAAA%3BEACA%2CYAAY%2C6HAAZ%3BEACA%2CYAAY%2C2IAAZ%3BEACA%2CqBAAA%3B%3BAA5CZ%2CgBAuBI%2CsBAwBI%3BAC%5C%2FCR%2C6BAA8B%2CsBD%2BCtB%3BEACI%3BEACA%3BEACA%3B%3BAAlDZ%2CgBAuBI%2CsBAwBI%2CYAKI%3BACpDZ%2C6BAA8B%2CsBD%2BCtB%2CYAKI%3BEACI%3B%3BAArDhB%2CgBAuBI%2CsBAwBI%2CYASI%2CMAAM%3BACxDlB%2C6BAA8B%2CsBD%2BCtB%2CYASI%2CMAAM%3BEACF%3BEACA%3BEACA%3B%3BAA3DhB%2CgBAuBI%2CsBAwBI%2CYAeI%2CMAAK%2CMAAO%3BAC9DxB%2C6BAA8B%2CsBD%2BCtB%2CYAeI%2CMAAK%2CMAAO%3BEACR%3B%3BAA%5C%2FDhB%2CgBAuBI%2CsBAwBI%2CYAmBI%2CMAAK%2CMAAO%3BAClExB%2C6BAA8B%2CsBD%2BCtB%2CYAmBI%2CMAAK%2CMAAO%3BEACR%3B%3BAA0BZ%2CQArB8B%3BEAqB9B%3BIApBI%3BIACA%3B%3BEAmBJ%2CgBAjBI%3BEC5ER%2C6BAA8B%3BIf4B1B%2CkBAAA%3BIACA%2CmBAAA%3B%3BEcgEA%2CgBAjBI%2CsBAGI%3BEC%5C%2FEZ%2C6BAA8B%2CsBD%2BElB%3BIACI%3B%3BEAaZ%2CgBAjBI%2CsBAOI%2CWAAU%3BECnFtB%2C6BAA8B%2CsBDmFlB%2CWAAU%3BIACN%3B%3BEASZ%2CgBAjBI%2CsBAWI%3BECvFZ%2C6BAA8B%2CsBDuFlB%3BIACI%3B%3B%3BAAiBZ%2CQAZ8B%3BEAY9B%2CgBAXI%2CsBACI%2CWAAU%3BEC%5C%2FFtB%2C6BAA8B%2CsBD%2BFlB%2CWAAU%3BIACN%3B%3BEASZ%2CgBAXI%2CsBACI%2CWAAU%2CSAGN%3BEClGhB%2C6BAA8B%2CsBD%2BFlB%2CWAAU%2CSAGN%3BIACI%3B%3B%3BAAgChB%2CQA1B2B%3BEA0B3B%3BIAzBI%3BIACA%3B%3BEAwBJ%2CgBAtBI%2CsBACI%3BEC9GZ%2C6BAA8B%2CsBD8GlB%3BIACI%3B%3BEAoBZ%2CgBAtBI%2CsBAKI%3BEClHZ%2C6BAA8B%2CsBDkHlB%3BIACI%3B%3BEAgBZ%2CgBAtBI%2CsBASI%2CYACI%3BECvHhB%2C6BAA8B%2CsBDsHlB%2CYACI%3BIACI%3B%3BEAWhB%2CgBAtBI%2CsBASI%2CYAKI%2CMAAM%3BEC3HtB%2C6BAA8B%2CsBDsHlB%2CYAKI%2CMAAM%3BIACF%3BIACA%3B%3B%3BAAapB%2CQAP6B%3BEAO7B%2CgBANQ%2CsBACI%3BECrIZ%2C6BAA8B%2CsBDqIlB%3BIACI%3B%3B%3BAAMhB%2CiBAAkB%2CaAAa%2CkBAAkB%3BEAC7C%3B%3BAC3IJ%3BEACI%3BEACA%3B%3BAAFJ%2C6BAII%3BEACI%2CoBAAA%3B%3BAALR%2C6BAQI%2CyBAAyB%3BEACrB%3B%3BAATR%2C6BAYI%2CyBAAyB%3BEfXzB%2CeAAA%3BEACA%2CiBAAA%3BEeYI%2CcAAA%3BEACA%2CyBAAA%3BEfTJ%2C6BAAA%3BEACA%2C0BAAA%3BEACA%2CqBAAA%3BEAmDA%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECiIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3BEc7K1D%2CiBAAA%3B%3BAAEA%2C6BARJ%2CyBAAyB%2CEAQpB%3BEACG%2CcAAA%3BEACA%2CyBAAA%3B%3BAAtBZ%2C6BA0BI%2CyBAAyB%2CEAAC%3BEACtB%2CcAAA%3BEACA%2CyBAAA%3B%3BAAaJ%2CQAV0B%3BEAU1B%2C6BATI%3BIfmMJ%2CsCAAA%3BIACA%2CkCAAA%3BIACA%2C8BAAA%3B%3BEe5LA%2C6BALI%2CyBAAyB%3BIACrB%2CiBAAA%3B%3B%3BAAWR%2CQAP0B%3BEAO1B%2C6BANI%2CyBAAyB%3BIACrB%2CgBAAA%3BIf1CR%2CeAAA%3BIACA%2CiBAAA%3B%3B%3BAewDA%2CQAV2B%3BEAU3B%3BIATI%3BIACA%3B%3BEAQJ%2C6BANI%2CyBAAyB%3BIfnD7B%2CeAAA%3BIACA%2CiBAAA%3BIAwBA%2CkBAAA%3BIACA%2CmBAAA%3B%3B%3BAeuCJ%2CQARkC%3BEAQlC%3BIAPQ%3BIACA%3B%3BEAMR%2C6BAJQ%3BIACI%2CoBAAA%3B%3B%3BACjEZ%2CsBACI%3BEACI%3B%3BAASJ%2CQAN8B%3BEAM9B%2CsBALI%3BIACI%3B%3B%3BAAUR%2CQAN2B%3BEAM3B%2CsBALI%3BIACI%3B%3B%3BAASZ%2CQAL%2BB%3BEAK%5C%2FB%2CsBAJQ%3BIACI%3B%3B%3BACnBZ%3BEACI%3BEACA%3B%3BAAFJ%2CcAII%3BEjBwBA%2CkBAAA%3BEACA%2CmBAAA%3B%3BAiB7BJ%2CcAQI%3BEACI%2CcAAA%3BEjBwBJ%2CkBAAA%3BEACA%2CmBAAA%3B%3BAiBlCJ%2CcAaI%3BEjBVA%2CeAAA%3BEACA%2CiBAAA%3BEiBWI%3BEACA%3BEACA%2CcAAA%3BEACA%2CgBAAA%3BEACA%3B%3BAAnBR%2CcAaI%2CSAQI%3BEACI%3B%3BAAeR%2CQAX%2BB%3BEAW%5C%2FB%2CcAVI%3BIjBCJ%2CcAAA%3BIACA%2CeAAA%3B%3BEiBQA%2CcANI%3BIACI%2CcAAA%3BIjBCR%2CkBAAA%3BIACA%2CmBAAA%3B%3B%3BAiBSA%2CQAN4B%3BEAM5B%2CcALI%3BIACI%2CcAAA%3B%3B%3BAASZ%2CQAL%2BB%3BEAK%5C%2FB%2CcAJQ%3BIACI%3B%3B%3BAC7CZ%3BEACI%3B%3BAADJ%2CkBAGI%3BEACI%3B%3BAAJR%2CkBAOI%3BElBqBA%2CkBAAA%3BEACA%2CmBAAA%3B%3BAkB7BJ%2CkBAWI%3BEACI%3BEACA%3B%3BAAbR%2CkBAgBI%3BEACI%3B%3BAAjBR%2CkBAoBI%2CaAAa%3BEACT%3B%3BAArBR%2CkBAwBI%2CaAAa%3BEACT%3B%3BAAzBR%2CkBA4BI%2CaAAa%2CSAAS%3BEAClB%2CcAAA%3B%3BAAEA%2CkBAHJ%2CaAAa%2CSAAS%2CWAGjB%3BEACG%2CcAAA%3B%3BAAhCZ%2CkBAoCI%2CaAAY%2CKACR%3BEACI%3B%3BAAtCZ%2CkBAoCI%2CaAAY%2CKAKR%3BEACI%3B%3BAA1CZ%2CkBA8CI%2CaAAa%3BAA9CjB%2CkBA8CI%2CanBg7BJ%2CeAkPI%2CcAAc%3BEmBjqCV%3B%3BAAWJ%2CQAR2B%3BEAQ3B%3BIAPI%3B%3BEAOJ%2CkBALI%3BIACI%3B%3B%3BAAWZ%2CQAP%2BB%3BEAO%5C%2FB%3BIANQ%3B%3BEAMR%2CkBAJQ%3BIACI%3B%3B%3BAAKZ%2CqBAAsB%3BEAClB%3BEACA%3B%3BAAOJ%2CQAL6B%3BEAK7B%2CqBATsB%2CaAKd%2COAAM%3BIACF%3B%3B%3BACzEZ%3BEACI%3BEACA%3B%3BAAEA%2CYAAC%3BEACG%3B%3BAAGJ%2CYAAC%2CcACG%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAAbZ%2CYAiBI%3BEACI%3BEACA%3B%3BAAnBR%2CYAsBI%3BEnB4HA%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAkGA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3B%3BAmBzPJ%2CYA2BI%2CMAAK%3BEnBuHL%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAkGA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3BEApBA%2C%2BBAAA%3BEACA%2C2BAAA%3BEACA%2CuBAAA%3BEmBxMI%3B%3BAAQJ%2CQAL2B%3BEAK3B%3BIAJI%3BIACA%3B%3B%3BAAWR%2CQAR%2BB%3BEAQ%5C%2FB%3BIAPQ%3BIACA%3B%3BEAMR%2CYAJQ%3BIACI%3B%3B%3BAC5CZ%3BEACI%3BEACA%3B%3BAAEA%2CiBAAC%3BEACG%3B%3BAALR%2CiBAQI%3BEACI%3B%3BAATR%2CiBAYI%3BEACI%2CkBAAA%3B%3BAAbR%2CiBAgBI%3BEACI%3BEACA%2CeAAA%3B%3BAAlBR%2CiBAqBI%3BEACI%3BEpBnBJ%2CeAAA%3BEACA%2CiBAAA%3BEoBoBI%2CgBAAA%3B%3BAAxBR%2CiBA2BI%3BEACI%3BEACA%3B%3BAA7BR%2CiBAgCI%2CaAAa%3BEpB6Bb%2CyCAAA%3BEACA%2CsCAAA%3BEACA%2CoCAAA%3BEACA%2CiCAAA%3B%3BAoBhEJ%2CiBAoCI%2CaAAY%2COAAQ%3BEAChB%3B%3BAArCR%2CiBAwCI%3BEACI%3BEACA%2CeAAA%3B%3BAA1CR%2CiBAwCI%2CaAII%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAAhDZ%2CiBAwCI%2CaAWI%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAAvDZ%2CiBAwCI%2CaAkBI%2CgBAAe%3BEACX%2CSAAS%2COAAT%3BEACA%2CarBrBE%2CoBqBqBF%3BEACA%2CcAAA%3BEACA%3BEACA%3BEpB5DR%2CeAAA%3BEACA%2CiBAAA%3BEA8IA%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAgFA%2C%2BBAAA%3BEACA%2C2BAAA%3BEACA%2CuBAAA%3BEAgBA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3B%3BAoBzPJ%2CiBAwCI%2CaA8BI%2CgBAAe%2CMAAM%3BEACjB%2CcAAA%3B%3BAAvEZ%2CiBAwCI%2CaAkCI%2CgBAAe%2CMAAM%3BEACjB%2CcAAA%3B%3BAA3EZ%2CiBAwCI%2CaAsCI%2CgBAAe%3BEACX%2CSAAS%2COAAT%3BEACA%2CarBzCE%2CoBqByCF%3BEACA%2CcAAA%3BEACA%3BEACA%3BEpBhFR%2CeAAA%3BEACA%2CiBAAA%3BEA8IA%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAgFA%2C%2BBAAA%3BEACA%2C2BAAA%3BEACA%2CuBAAA%3BEAgBA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3B%3BAoBzPJ%2CiBAwCI%2CaAkDI%3BEACI%3BEpBxFR%2CeAAA%3BEACA%2CiBAAA%3B%3BAoBJJ%2CiBAwCI%2CaAuDI%3BEpB5FJ%2CeAAA%3BEACA%2CiBAAA%3B%3BAoBJJ%2CiBAwCI%2CaA2DI%3BEACI%3BEACA%2CgBAAA%3BEACA%3B%3BAAeZ%2CQAPmC%3BEAE3B%2CiBAAC%3BIACG%3BIACA%3B%3B%3BAClHZ%3BEACI%3BEACA%3B%3BAAFJ%2CeAII%3BErB6BA%2CkBAAA%3BEACA%2CmBAAA%3B%3BAqBlCJ%2CeAQI%3BEACI%2CuBAAA%3B%3BAATR%2CeAYI%3BErBTA%2CeAAA%3BEACA%2CeAAA%3BEqBUI%2CatBuBI%2CuBsBvBJ%3BEACA%3BEACA%3BEACA%3BEACA%2CgBAAA%3BEACA%2CcAAA%3B%3BAAnBR%2CeAsBI%3BEACI%3B%3BAAvBR%2CeA0BI%2CiBAAiB%3BAA1BrB%2CeA0B6B%2CiBAAiB%3BAA1B9C%2CeA0BsD%3BErBvBlD%2CeAAA%3BEACA%2CiBAAA%3BEqBwBI%2CatBSI%2CuBsBTJ%3BEACA%3BEACA%2CgBAAA%3BEACA%2CcAAA%3B%3BAASJ%2CQAN2B%3BEAM3B%2CeALI%3BIrBFJ%2CkBAAA%3BIACA%2CmBAAA%3B%3B%3BAqBaA%2CQAP4B%3BEAO5B%2CeANI%3BIrBRJ%2CkBAAA%3BIACA%2CmBAAA%3BIqBSQ%3B%3B%3BAAUR%2CQAN0B%3BEAM1B%2CeALI%3BIACI%3B%3B%3BAAUZ%2CQANgC%3BEAMhC%2CeALQ%3BIACI%3BIrBtBR%2CeAAA%3BIACA%2CgBAAA%3B%3B%3BAsBlCJ%3BEACI%3BEACA%3BEACA%3B%3BAAHJ%2CYAKI%3BEACI%3BEACA%3BEACA%2CcAAA%3BEACA%2C%2BBAAA%3B%3BAATR%2CYAKI%2CWAMI%3BEtBRJ%2CeAAA%3BEACA%2CiBAAA%3BEsBSQ%2CcAAA%3B%3BAAbZ%2CYAKI%2CWAWI%3BEtBbJ%2CeAAA%3BEACA%2CiBAAA%3B%3BAsBJJ%2CYAqBI%2CWAAU%2CYAAY%2CGAClB%2CcAAa%3BEACT%2CSAAS%2CGAAT%3BEtBpBR%2CeAAA%3BEACA%2CeAAA%3BEsBqBQ%2CcAAA%3BEACA%3B%3BAA1BZ%2CYA8BI%2CWAAU%2CYAAY%2CGAClB%2CcAAa%3BEACT%2CSAAS%2CGAAT%3BEtB7BR%2CeAAA%3BEACA%2CeAAA%3BEsB8BQ%2CcAAA%3BEACA%3B%3BAAnCZ%2CYAuCI%2CWAAU%2CYAAY%3BEAClB%3B%3BAAxCR%2CYA2CI%3BEAEI%2CcAAA%3B%3BAAgBJ%2CQAb0B%3BEAa1B%2CYAXI%2CWACI%3BItBhDR%2CeAAA%3BIACA%2CeAAA%3B%3BEsByDA%2CYAXI%2CWAKI%3BItBpDR%2CeAAA%3BIACA%2CiBAAA%3B%3B%3BAsB%2BDA%2CQAN2B%3BEAM3B%2CYALI%2CWAAU%2CYAAY%3BIAClB%3B%3B%3BAAeR%2CQAX8B%3BEAEtB%2CYADJ%2CWACK%2CYAAY%3BIACT%3B%3BEAEJ%2CYAJJ%2CWAIK%2CYAAY%3BIACT%3B%3B%3BAAahB%2CQAR%2BB%3BEAQ%5C%2FB%2CYAPQ%3BIACI%2CuBAAA%3B%3BEAMZ%2CYAPQ%2CWAEI%3BIACI%3B%3B%3BAClFhB%3BEACI%3BEACA%3B%3BAAFJ%2CmBAII%3BEACI%3B%3BAALR%2CmBAII%2COAGI%3BEACI%3B%3BAARZ%2CmBAII%2COAOI%3BEACI%3BEvB2OR%2C6BAAA%3BEACA%2CyBAAA%3BEACA%2CqBAAA%3BEA5LA%2C4CAAA%3BEACA%2CyCAAA%3BEACA%2CuCAAA%3BEACA%2CoCAAA%3B%3BAuBhEJ%2CmBAII%2COAaI%3BEACI%2CeAAA%3BEACA%2CyBAAA%3BEACA%3BEACA%3BEvBmGR%2CkDAAA%3BEACA%2C%2BCAAA%3BEACA%2C0CAAA%3BEAxEA%2CYAAA%3BEACA%2CaAAA%3BEAUA%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECiIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3BAsBjMlE%2CmBAII%2COAuBI%3BEACI%3BEACA%2CcAAA%3BEACA%3BEACA%3B%3BAA%5C%2FBZ%2CmBAII%2COA8BI%3BAAlCR%2CmBAII%2COA%2BBI%3BEACI%3BEACA%3B%3BAArCZ%2CmBAII%2COAoCI%2CoBAAmB%3BEvBgFvB%2CoDAAA%3BEACA%2CiDAAA%3BEACA%2C4CAAA%3B%3BAuB1HJ%2CmBAII%2COAoCI%2CoBAAmB%2CMAGf%3BEACI%2CyBAAA%3B%3BAA5ChB%2CmBAII%2COAoCI%2CoBAAmB%2CMAOf%3BEACI%2CcAAA%3B%3BAAhDhB%2CmBAII%2COAoCI%2CoBAAmB%2CMAWf%3BEACI%3B%3BAApDhB%2CmBAII%2COAoCI%2CoBAAmB%2CMAef%3BEACI%3B%3BAAkBZ%2CQAb8B%3BEAa9B%2CmBAZI%2COACI%3BIvBbR%2CYAAA%3BIACA%2CaAAA%3B%3BEuBuBA%2CmBAZI%2COAKI%3BEAOR%2CmBAZI%2COAMI%3BIACI%3B%3B%3BAAwBZ%2CQAnB2B%3BEAmB3B%2CmBAlBI%3BIACI%3B%3BEAiBR%2CmBAlBI%2COAGK%3BIACG%2CuBAAA%3B%3BEAcZ%2CmBAlBI%2COAOI%3BIvBhCR%2CYAAA%3BIACA%2CaAAA%3B%3BEuB0CA%2CmBAlBI%2COAWI%3BEAOR%2CmBAlBI%2COAYI%3BIACI%3B%3B%3BAAkBZ%2CQAb8B%3BEAa9B%2CmBAZI%2COACI%3BIvB7CR%2CYAAA%3BIACA%2CaAAA%3B%3BEuBuDA%2CmBAZI%2COAKI%3BEAOR%2CmBAZI%2COAMI%3BIACI%3B%3B%3BAAmCZ%2CQA9B2B%3BEA8B3B%3BIA7BI%3BIACA%3B%3BEA4BJ%2CmBA1BI%3BIACI%3B%3BEAyBR%2CmBAtBI%2COAAO%3BIACH%2CkBAAA%3BIACA%3BIACA%3BIvBlHR%2CeAAA%3BIACA%2CiBAAA%3B%3BEuBoIA%2CmBAfI%3BIvB7FJ%2CkBAAA%3BIACA%2CmBAAA%3B%3BEuB2GA%2CmBAfI%2COAGI%3BIACI%3BIACA%3B%3BEAUZ%2CmBAfI%2COAQI%3BEAOR%2CmBAfI%2COASI%3BIACI%3B%3B%3BAAoBZ%2CQAfyB%3BEAezB%2CmBAdI%2COACI%3BIACI%3BIACA%3B%3BEAWZ%2CmBAdI%2COAMI%3BIACI%2COAAO%2CiBAAP%3BIACA%3BIACA%3B%3B%3BAAahB%2CQAR6B%3BEAQ7B%2CmBAPQ%2COACI%3BIACI%2COAAO%2CiBAAP%3BIACA%3B%3B%3BAC3JhB%3BEACI%3BEACA%3B%3BAAOA%2CQAL2B%3BEAK3B%3BIAJI%3BIACA%3B%3B%3BAAOR%2CQAJ%2BB%3BEAI%5C%2FB%3BIAHQ%3BIACA%3B%3B%3BACXR%2CKACI%3BEACI%3BEzBgJJ%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEyBjJI%3BEACA%3BEACA%3B%3BAANR%2CKACI%2CSAOI%3BEzB0IJ%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAyBA%2CuBAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEyBrKQ%3BEACA%2CyBAAA%3BEACA%3BEACA%2C%2BBAAA%3B%3BAAdZ%2CKACI%2CSAgBI%2CGAAE%3BEACE%3B%3BAAlBZ%2CKACI%2CSAoBI%2CGAAE%3BEACE%2CyBAAA%3B%3BAAtBZ%2CKACI%2CSAoBI%2CGAAE%2CMAGE%3BEACI%2CcAAA%3B%3BAAzBhB%2CKACI%2CSA4BI%2CGAAK%3BEzBqHT%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAkGA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3BEApBA%2C%2BBAAA%3BEACA%2C2BAAA%3BEACA%2CuBAAA%3BEyBtMQ%2CkBAAA%3BEACA%2CcAAA%3BEACA%2CgBAAA%3BEzBhCR%2CeAAA%3BEACA%2CiBAAA%3BEyBiCQ%3BEACA%3BEACA%3BEACA%3B%3BAAxCZ%2CKACI%2CSA0CI%2CGAAK%2CIAAC%3BEACF%2CyBAAA%3BEACA%2CcAAA%3B%3BAAEA%2CKA9CR%2CSA0CI%2CGAAK%2CIAAC%2COAID%3BEACG%2CSAAS%2CEAAT%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CkCAAA%3BEACA%2CyDAAA%3B%3BAA1DhB%2CKA%2BDI%3BEACI%3B%3BAAhER%2CKA%2BDI%2CYAGI%3BEACI%3BEACA%3BEACA%3B%3BAArEZ%2CKA%2BDI%2CYASI%3BEzB0EJ%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAkGA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3BEyB9KQ%2CgCAAA%3BEACA%3BEACA%3B%3BAA7EZ%2CKA%2BDI%2CYASI%2CGAOI%3BEACI%3B%3BAAhFhB%2CKA%2BDI%2CYAqBI%3BEACI%2CyBAAA%3B%3BAAUR%2CQAP%2BB%3BEAO%5C%2FB%2CKAhCA%3BIA0BQ%3B%3BEAMR%2CKAhCA%2CYA4BQ%3BIACI%3B%3B%3BAAoDhB%2CQA%5C%2FC%2BB%3BEA%2BC%5C%2FB%3BIA9CQ%2CyBAAA%3BIACA%3BIACA%3B%3BEA4CR%2CKA3CQ%3BIACI%3B%3BEA0CZ%2CKAvCQ%3BIzBtGJ%2CeAAA%3BIACA%2CeAAA%3BIyBuGQ%2CgBAAA%3BIACA%3BIACA%2CyBAAA%3BIACA%2CuBAAA%3BIACA%3BIzBwIR%2C2BAAA%3BIACA%2CuBAAA%3BIACA%2CmBAAA%3BIyBxIQ%3B%3BEAEA%2CKAVJ%2CkBAUK%3BIACG%2CSAAS%2COAAT%3BIACA%2CcAAA%3BIACA%2Ca1B%5C%2FEF%2CoB0B%2BEE%3BIACA%2CgBAAA%3BIACA%3BIzBrHZ%2CeAAA%3BIACA%2CiBAAA%3B%3BEyBwHQ%2CKAnBJ%2CkBAmBK%3BEAAQ%2CKAnBb%2CkBAmBc%3BIACN%2CcAAA%3B%3BEAEA%2CKAtBR%2CkBAmBK%2CMAGI%3BEAAD%2CKAtBR%2CkBAmBc%2COAGL%3BIACG%2CcAAA%3B%3BEAKJ%2CKA5BR%2CkBA2BK%2COACI%3BIACG%3B%3BEAGJ%2CKAhCR%2CkBA2BK%2COAKI%3BIACG%2CSAAS%2COAAT%3B%3B%3BAC1IpB%3BEAwEI%3BEACA%3B%3BAAvEA%2CWAAC%3BEACG%3B%3BAAGJ%2CWAAC%2CkBACG%3BEACI%3B%3BAAFR%2CWAAC%2CkBAKG%3BEACI%2C6BAAA%3BEACA%3B%3BAAIR%2CWAAC%2CoBACG%3BEACI%3BEACA%2CcAAA%3BEACA%3B%3BAAIR%2CWAAC%3BEACG%3BEACA%3B%3BAAFJ%2CWAAC%2CYAIG%3BEACI%3B%3BAALR%2CWAAC%2CYAQG%3BEACI%3B%3BAAIR%2CWAAC%3BEACG%2CkEAAA%3B%3BAAIJ%2CWAAC%2CmBACG%2CEAAE%3BEACE%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAIR%2CWAAC%3BEACG%2CkBAAkB%2CyGAAlB%3B%3BAAvDR%2CWA0DI%3BEACI%3BEACA%2CWAAW%2CgBAAX%3BEACA%3B%3BAA7DR%2CWAgEI%3BEACI%3B%3BAAjER%2CWAoEI%3BEACI%2CcAAA%3B%3BAAiBJ%2CQAX2B%3BEAW3B%3BIAVI%3BIACA%3B%3BEAEA%2CWAAC%2CYACG%3BIACI%3B%3B%3BAAwBZ%2CQAnB8B%3BEAE1B%2CWAAC%2CaACG%3BIACI%3B%3BEAIR%2CWAAC%2CYACG%3BIACI%3B%3BEAFR%2CWAAC%2CYACG%2CiBAEI%3BIACI%3BIACA%3B%3B%3BAAUpB%2CQAJ%2BB%3BEAI%5C%2FB%3BIAHQ%3BIACA%3B%3B%3BAC3GR%3BEACI%3BEACA%3BEACA%2CyBAAA%3BEACA%2CgTAAA%3BEAOA%2CwSAAA%3B%3BAAXJ%2CeAmBI%3BEACI%2CcAAA%3BEACA%3BEACA%3B%3BAAtBR%2CeAyBI%2CUACI%3BEACI%2CcAAA%3B%3BAA3BZ%2CeAyBI%2CUAII%3BEACI%2CcAAA%3B%3BAA9BZ%2CeAkCI%3BEACI%3B%3BAAnCR%2CeAsCI%3BEACI%2CcAAA%3B%3BAAvCR%2CeA0CI%3BE3BvCA%2CeAAA%3BEACA%2CeAAA%3BE2BwCI%2CgBAAA%3B%3BAA5CR%2CeA%2BCI%3BE3B5CA%2CeAAA%3BEACA%2CiBAAA%3BE2B6CI%2CgBAAA%3BEACA%2CgCAAA%3BEACA%3BEACA%3B%3BAApDR%2CeAuDI%3BEACI%2CgCAAA%3B%3BAAxDR%2CeA2DI%3BEACI%3B%3BAA5DR%2CeA%2BDI%3BEACI%3BEACA%3B%3BAAjER%2CeAoEG%3BEACC%2CmBAAA%3B%3BAACI%2CeAFL%2CaAEM%3BEACG%2CmBAAA%3B%3BAAvEZ%2CeA2EI%3BE3BuEA%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAkGA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3BEApBA%2C%2BBAAA%3BEACA%2C2BAAA%3BEACA%2CuBAAA%3BE2BxJI%3B%3BAAEA%2CeANJ%2CYAMK%3BEACG%2CSAAS%2CEAAT%3BEACA%3BEACA%3BEACA%3BEACA%2CKAAK%2CeAAL%3BE3BhBR%2CmB2BiBmB%2CgB3BjBnB%3BEACA%2CgB2BgBmB%2CgB3BhBnB%3BEACA%2Cc2BemB%2CgB3BfnB%3BEACA%2Ce2BcmB%2CgB3BdnB%3BEACA%2CW2BamB%2CgB3BbnB%3BE2BcQ%3B%3BAAxFZ%2CeA2EI%2CYAgBI%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAjGZ%2CeA2EI%2CYAyBI%2CGAAG%3BEACC%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CmBAAA%3BEACA%3BEACA%2CyBAAA%3BEACA%3B%3BAAlHZ%2CeA2EI%2CYA0CI%2CGAAG%2COAAM%3BAArHjB%2CeA2EI%2CYA2CI%2CGAAG%2COAAM%3BEACL%2CqBAAA%3B%3BAAvHZ%2CeA2EI%2CYA%2BCI%2CGAAG%2COAAM%3BEACL%3B%3BAA3HZ%2CeA2EI%2CYAmDI%2CGAAE%3BEACE%3B%3BAA%5C%2FHZ%2CeA2EI%2CYAuDI%2CGAAE%2CaAAc%3BE3BVpB%2CwDAAA%3BEACA%2CqDAAA%3BEACA%2CgDAAA%3BE2BUQ%3BEACA%3BEACA%2CyBAAA%3B%3BAAtIZ%2CeA0II%3BEACI%2CkBAAA%3B%3BAAkBJ%2CQAf2B%3BEAe3B%3BIAdI%3BIACA%3B%3BEAaJ%2CeAXI%3BIACI%3BIACA%3B%3BEASR%2CeANI%3BIACI%3BIACA%3B%3B%3BAAkDZ%2CQA9CkC%3BEA8ClC%3BIA7CQ%3BIACA%3B%3BEA4CR%2CeA1CQ%3BIACI%3B%3BEAyCZ%2CeAtCQ%3BIACI%3BIACA%3BIACA%3B%3BEAmCZ%2CeAhCQ%3BIACI%3BIACA%3BIACA%3BIACA%3B%3BEA4BZ%2CeAzBQ%2CWAAW%3BIACP%3B%3BEAwBZ%2CeArBQ%3BI3BnLJ%2CeAAA%3BIACA%2CeAAA%3BI2BoLQ%3B%3BEAmBZ%2CeAhBQ%3BI3BxLJ%2CeAAA%3BIACA%2CiBAAA%3B%3BE2BuMJ%2CeAZQ%3BIACI%3B%3BEAWZ%2CeARQ%3BIACI%3B%3BEAOZ%2CeAJQ%3BIACI%3B%3B%3BACxMZ%2CkBAEI%3BEACI%3BE5B%2BIJ%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3B%3BA4BrJJ%2CkBAOI%3BEACI%3BEACA%2CwBAAA%3BEACA%3B%3BAAVR%2CkBAaI%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAAjBR%2CkBAoBI%3BEACI%2Ca7BgBI%2CuB6BhBJ%3BEACA%2CgBAAA%3BEACA%2CcAAA%3BEACA%3BEACA%3BEACA%3BEAEA%3BEACA%3BE5B1BJ%2CeAAA%3BEACA%2CiBAAA%3B%3BA4BJJ%2CkBAiCI%3BEACI%2Ca7BGI%2CuB6BHJ%3BEACA%2CcAAA%3BEACA%2CgBAAA%3BEACA%3B%3BAArCR%2CkBA0CI%3BEACI%3BEACA%3BE5BzCJ%2CeAAA%3BEACA%2CiBAAA%3B%3BA4BJJ%2CkBAgDI%2CYAAY%2CGAAE%2CaAAc%3BEACxB%2CmBAAA%3BEACA%2CqBAAA%3B%3BAAlDR%2CkBAqDI%2CYAAY%3BEACR%3BE5BJJ%2CWAAA%3BEACA%2CYAAA%3BE4BKI%2CyBAAA%3BEACA%3B%3BAAEA%2CkBANJ%2CYAAY%2COAMP%3BEACG%3B%3BAAQR%2CQAJ4B%3BEAI5B%3BIAHI%3B%3B%3BAAeJ%2CQAZ%2BB%3BEAY%5C%2FB%2CkBAXI%3BIACI%3BIACA%2CkBAAA%3B%3BEASR%2CkBANI%3BI5BvEJ%2CeAAA%3BIACA%2CeAAA%3BI4BwEQ%3B%3B%3BAAaZ%2CQATgC%3BEAShC%2CkBARQ%3BIACI%3B%3BEAOZ%2CkBAJQ%3BIACI%3B%3B%3BACtFZ%3BEACI%3BEACA%3B%3BAAEA%2C6BAAC%2CgBACG%3BEACI%3BEACA%3B%3BAAHR%2C6BAAC%2CgBACG%2CWAII%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAATZ%2C6BAAC%2CgBACG%2CWAWI%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAApBZ%2C6BAAC%2CgBAwBG%3BEACI%3B%3BAAzBR%2C6BAAC%2CgBA4BG%3BEACI%3B%3BAA7BR%2C6BAAC%2CgBAgCG%3BEACI%3B%3BAAjCR%2C6BAAC%2CgBAoCG%2CUAAU%2CKAAI%3BEACV%3B%3BAArCR%2C6BAAC%2CgBAwCG%3BAAxCJ%2C6BAAC%2CgB9B09BL%2CeAkPI%2CcAAc%3BE8BnqCN%3BEACA%2CyBAAA%3BEACA%3B%3BAACA%2C6BA5CP%2CgBAwCG%2CKAIK%3BAAAD%2C6BA5CP%2CgB9B09BL%2CeAkPI%2CcAAc%2CQ8BhqCL%3BEACG%3BEACA%2CyBAAA%3BEACA%3B%3BAAnDhB%2C6BAwDI%2CWACI%3BEACI%3BEACA%3BEACA%3B%3BAA5DZ%2C6BAwDI%2CWAOI%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAArEZ%2C6BAyEI%3BEACI%3B%3BAA1ER%2C6BA6EI%2CUACI%3BEACI%3B%3BAA%5C%2FEZ%2C6BA6EI%2CUACI%2CSAGI%2CEAAC%3BEACG%3B%3BAAlFhB%2C6BA6EI%2CUASI%3BAAtFR%2C6BA6EI%2CU9Bi5BJ%2CeAkPI%2CcAAc%3BE8BznCN%3B%3BAASR%2CQAL2B%3BEAK3B%3BIAJI%3BIACA%3B%3B%3BAAyCJ%2CQAtC8B%3BEAsC9B%3BIArCI%3B%3BEAqCJ%2C6BAnCI%3BIACI%3B%3BEAkCR%2C6BA%5C%2FBI%3BIACI%3BIACA%3B%3BEA6BR%2C6BA1BI%2CWAAW%3BIACP%3B%3BEAGJ%2C6BAEI%3BEADJ%2C6BAAC%2CYACG%3BIACI%3BIACA%3B%3BEAJR%2C6BAOI%3BEANJ%2C6BAAC%2CYAMG%3BIACI%3BIACA%3B%3BEATR%2C6BAYI%3BEAXJ%2C6BAAC%2CYAWG%3BIACI%3B%3BEASZ%2C6BALI%2CUAAU%3BIACN%3B%3B%3BAAWZ%2CQAP%2BB%3BEAO%5C%2FB%3BIANQ%3B%3BEAMR%2C6BAJQ%3BIACI%3B%3B%3BAC1IZ%3BEACI%3BEACA%3B%3BAAEA%2CyBAAC%2CgBACG%3BEACI%3B%3BAAFR%2CyBAAC%2CgBAKG%3BEACI%3BEACI%3BEACA%3BEACJ%3B%3BAATR%2CyBAAC%2CgBAKG%2CcAKI%3BE9BXR%2CeAAA%3BEACA%2CeAAA%3BE8BYY%3B%3BAAhBhB%2CyBAqBI%3BEACI%3BEACA%3BEACA%3B%3BAAxBR%2CyBA2BI%3BEACI%3B%3BAA5BR%2CyBA%2BBI%3BEACI%2CyBAAA%3BEACA%2C4BAAA%3BE9BuFJ%2CqDAAA%3BEACA%2CkDAAA%3BEACA%2C6CAAA%3BE8BvFI%3B%3BAAnCR%2CyBAsCI%3BE9BnCA%2CgBAAA%3BEACA%2CgBAAA%3BE8BoCI%3B%3BAAxCR%2CyBA2CI%3BEACI%3BEACA%3B%3BAA7CR%2CyBAgDI%2COAAM%3BEACF%3B%3BAAjDR%2CyBAgDI%2COAAM%2CWAGF%3BEACI%3BEACA%3B%3BAArDZ%2CyBAgDI%2COAAM%2CWAQF%3BEACI%3B%3BAAzDZ%2CyBA6DI%2COAAM%3BEACF%3B%3BAA9DR%2CyBA6DI%2COAAM%2CYAGF%3BEACI%3BEACA%3B%3BAAWR%2CQAP8B%3BEAO9B%2CyBANI%3BIACI%3BIACA%3B%3B%3BAAyBR%2CQArB2B%3BEAqB3B%3BIApBI%3B%3BEAoBJ%2CyBAlBI%3BIACI%3BIACA%3B%3BEAgBR%2CyBAbI%3BIACI%2C4BAAA%3B%3BEAYR%2CyBATI%3BI9BtFJ%2CgBAAA%3BIACA%2CgBAAA%3B%3BE8B8FA%2CyBALI%3BIACI%3B%3B%3BAAgEZ%2CQA5DkC%3BEA4DlC%3BIA3DQ%3BIACA%3B%3BEA0DR%2CyBAxDU%3BIACE%3BIACA%3B%3BEAsDZ%2CyBAnDQ%3BIACI%3BIACA%3BIACA%3B%3BEAgDZ%2CyBA7CQ%3BIACI%3BIACA%3BIACA%3B%3BEA0CZ%2CyBAvCQ%3BIACI%2COAAO%2CiBAAP%3BIACA%3BIACA%3BIACA%2CuBAAA%3B%3BEAmCZ%2CyBAhCQ%3BIACI%3BIACA%3B%3BEA8BZ%2CyBA3BQ%3BIACI%3BIACA%3B%3BEAyBZ%2CyBAtBQ%2COAAM%3BIACF%3B%3BEAqBZ%2CyBAtBQ%2COAAM%2CWAGF%3BIACI%3BIACA%3B%3BEAiBhB%2CyBAtBQ%2COAAM%2CWAQF%3BIACI%3B%3BEAahB%2CyBATQ%2COAAM%3BIACF%3B%3BEAQZ%2CyBATQ%2COAAM%2CYAGF%3BIACI%3BIACA%3B%3B%3BAC1JhB%3BEACI%3BEACA%3B%3BAAEA%2CsBAAC%3BEACG%3BEACA%3B%3BAANR%2CsBASI%3BEACI%3B%3BAAVR%2CsBAaI%2CUACI%3BEACI%3B%3BAAfZ%2CsBAmBI%2CUAAS%3BEACL%2CuBAAA%3B%3BAApBR%2CsBAuBI%2CWACI%3BEACI%3B%3BAAzBZ%2CsBA6BI%2CWAAU%3BEACN%3BEACA%3BEACA%3BEACA%3B%3BAAGJ%2CsBAAC%2CqBACG%2CUAAU%3BEACN%3B%3BAAIR%2CsBAAC%2COACG%2CUAAS%3BEACL%3B%3BAAFR%2CsBAAC%2COAKG%2CUAAU%3BEACN%2CuBAAA%3BEACA%3B%3BAAIR%2CsBAAC%2COAAO%2CWACJ%3BE%5C%2FB%2BKJ%2CiCAAA%3BEACA%2C6BAAA%3BEACA%2CyBAAA%3B%3BA%2BB5KA%2CsBAAC%2CYACG%3BEACI%3BEACA%3B%3BAAHR%2CsBAAC%2CYAMG%3BEACI%3B%3BAAPR%2CsBAAC%2CYAUG%3BEACI%3B%3BAAIR%2CsBAAC%2CWACG%3BEACI%3B%3BAAFR%2CsBAAC%2CWACG%2CSAEI%3BEACI%3B%3BAAKZ%2CsBAAC%2CgBACG%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAAUR%2CQAN%2BB%3BEAM%5C%2FB%2CsBALI%2CUAAS%3BIACL%2CqBAAA%3B%3B%3BAA8BR%2CQA1B2B%3BEA0B3B%3BIAzBI%3BIACA%3B%3BEAEA%2CsBAAC%2COAAQ%2CUAAU%3BIACf%2CqBAAA%3BIACA%3B%3BEAGH%2CsBAAC%2CWACE%3BIACI%3B%3BEAFP%2CsBAAC%2CWAKE%2CaAAa%3BIACT%3B%3BEAWZ%2CsBAPI%2CUACI%3BIACI%3B%3B%3BAAoDZ%2CQA%5C%2FC8B%3BEA%2BC9B%3BIA9CI%3B%3BEA8CJ%2CsBA5CI%3BIACI%3B%3BEA2CR%2CsBAxCI%2CUAAS%3BIACL%2CoBAAA%3B%3BEAuCR%2CsBApCI%3BIACI%3BIACA%3B%3BEAkCR%2CsBA%5C%2FBI%3BIACI%3BIACA%3BIACA%3B%3BEA4BR%2CsBAzBI%2CWAAW%3BIACP%3B%3BEAGJ%2CsBAAC%2CYACG%3BIACI%3BIACA%3B%3BEAHR%2CsBAAC%2CYAMG%3BIACI%3BIACA%3B%3BEARR%2CsBAAC%2CYAWG%3BIACI%3B%3BEASZ%2CsBALI%2CUAAU%3BIACN%3B%3B%3BAAWZ%2CQAP%2BB%3BEAO%5C%2FB%3BIANQ%3B%3BEAMR%2CsBAJQ%3BIACI%3B%3B%3BAC%5C%2FKZ%3BEACI%3BEACA%3B%3BAAFJ%2CwBAII%3BEACI%3B%3BAALR%2CwBAQI%3BEACI%3B%3BAAEA%2CwBAHJ%2CcAGK%2CYAAY%3BEACT%3B%3BAAGJ%2CwBAPJ%2CcAOK%2CYAAY%3BEACT%3B%3BAAhBZ%2CwBAQI%2CcAWI%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAAvBZ%2CwBAQI%2CcAkBI%2CUAAU%3BEACN%3B%3BAAwBR%2CQApB2B%3BEAoB3B%2CwBAnBI%3BIACI%3B%3BEAkBR%2CwBAfI%2CcACI%3BIACI%3B%3BEAGJ%2CwBALJ%2CcAKK%2CYAAY%3BIACT%3B%3BEAGJ%2CwBATJ%2CcASK%2CYAAY%3BIACT%3B%3B%3BAA6BhB%2CQAxB%2BB%3BEAwB%5C%2FB%3BIAvBQ%3BIACA%3B%3BEAsBR%2CwBApBQ%3BIACI%3B%3BEAmBZ%2CwBAhBQ%3BIACI%3B%3BEAeZ%2CwBAhBQ%2CcAEI%3BIhCwGR%2C8BAAA%3BIACA%2C0BAAA%3BIACA%2CsBAAA%3BIgCxGY%3B%3BEAYhB%2CwBAhBQ%2CcAOI%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%2CcAAA%3B%3B%3BACvEhB%3BEACI%3BEACA%3B%3BAAEA%2CqBAAC%3BEACG%3B%3BAADJ%2CqBAAC%2CqBAEG%3BEACI%3B%3BAAIR%2CqBAAC%2CaACG%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAALR%2CqBAAC%2CaAQG%2CGAAE%3BEACE%2CSAAS%2CEAAT%3BEACA%2COAAO%2CSAAP%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAIR%2CqBAAC%3BEACG%2CkEAAA%3B%3BAAIJ%2CqBAAC%3BEACG%3B%3BAADJ%2CqBAAC%2CmBAGG%3BEACI%3B%3BAAJR%2CqBAAC%2CmBAOG%3BEACI%2CgCAAA%3B%3BAARR%2CqBAAC%2CmBAWG%2CUAAU%3BEjC3Cd%2CeAAA%3BEACA%2CiBAAA%3BEiC4CQ%2CgBAAA%3B%3BAAbR%2CqBAAC%2CmBAgBG%2CWAAW%3BEjC2Hf%2CuBAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEAqDA%2C4BAAA%3BEACA%2CwBAAA%3BEACA%2CoBAAA%3BEAgBA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3B%3BAiCzPJ%2CqBA0DI%3BEACI%3B%3BAA3DR%2CqBA8DI%3BEACI%3B%3BAA%5C%2FDR%2CqBAkEI%3BEACI%3B%3BAAWJ%2CQAR2B%3BEAQ3B%3BIAPI%3B%3BEAOJ%2CqBALI%3BIACI%3B%3B%3BAAaZ%2CQAT%2BB%3BEAS%5C%2FB%3BIAHQ%3BIACA%3B%3BEALA%2CqBAAC%3BIACG%3B%3B%3BACjFZ%3BEACI%3BEACA%3B%3BAAFJ%2CqBAII%3BEACI%3B%3BAAWJ%2CQAR2B%3BEAQ3B%3BIAPI%3B%3BEAOJ%2CqBALI%3BIACI%3B%3B%3BAAQZ%2CQAJ%2BB%3BEAI%5C%2FB%3BIAHQ%3BIACA%3B%3B%3BAClBR%3BEACI%3BEACA%3B%3BAAFJ%2CeAII%3BEACI%3BEACA%3B%3BAANR%2CeASI%3BEACI%2CeAAA%3B%3BAAVR%2CeAaI%3BEACI%3BEnCNJ%2C2BAAA%3BEACA%2CwBAAA%3BEACA%2CmBAAA%3BEAmDA%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECiIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3BAkCjMlE%2CeAaI%2COAKI%3BEACI%2CcAAA%3B%3BAAnBZ%2CeAaI%2COASI%2CKAAI%3BAAtBZ%2CeAaI%2COpCi9BJ%2CeAkPI%2CcAAc%2CQoC1rCN%3BEACA%3B%3BAAvBZ%2CeA2BI%2COAAM%3BEACF%3BEnC4FJ%2CqDAAA%3BEACA%2CkDAAA%3BEACA%2C6CAAA%3BEmC5FI%3B%3BAA9BR%2CeA2BI%2COAAM%2CMAKF%3BEACI%3BEACA%3B%3BAAlCZ%2CeAsCI%3BEACI%3B%3BAASJ%2CQAN2B%3BEAM3B%2CeALI%3BIACI%3B%3B%3BAASR%2CQAL8B%3BEAK9B%3BIAJI%3B%3B%3BAASR%2CQAL%2BB%3BEAK%5C%2FB%2CeAJQ%3BIACI%2CuBAAA%3B%3B%3BACvDZ%3BEACI%3BEACA%3B%3BAAEA%2CsBAAC%2CkBACG%3BEACI%3BEACA%3BEACA%2CcAAA%3B%3BAARZ%2CsBAYI%2CqBACI%3BEACI%2CcAAA%3BEpCXR%2CeAAA%3BEACA%2CeAAA%3BEoCYQ%2CgBAAA%3B%3BAAhBZ%2CsBAYI%2CqBAOI%3BEACI%2CcAAA%3B%3BAApBZ%2CsBAwBI%3BEACI%3B%3BAAzBR%2CsBA4BI%3BEACI%3B%3BAA7BR%2CsBAgCI%2CUACI%3BEACI%3B%3BAAlCZ%2CsBAsCI%2CUAAS%3BEACL%2CuBAAA%3B%3BAAvCR%2CsBA0CI%2CWACI%3BEACI%3B%3BAA5CZ%2CsBAgDI%2CWAAU%3BEACN%3BEACA%3BEACA%3BEACA%3B%3BAApDR%2CsBAuDI%3BEACI%3B%3BAAxDR%2CsBA2DI%2CYAAY%3BEACR%2CyBAAA%3BEACA%3BEpCAJ%2CyCAAA%3BEACA%2CsCAAA%3BEACA%2CoCAAA%3BEACA%2CiCAAA%3B%3BAoChEJ%2CsBAiEI%2CYAAW%2CMAAO%3BEACd%3BEpCLJ%2CyCAAA%3BEACA%2CsCAAA%3BEACA%2CoCAAA%3BEACA%2CiCAAA%3B%3BAoChEJ%2CsBAsEI%2CYAAY%3BEACR%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAA3ER%2CsBA8EI%2CWAAU%3BEACN%2CSAAS%2CEAAT%3BEACA%2C8CAAA%3BEACA%3BEACA%3BEACA%3BEpCtBJ%2C2CAAA%3BEACA%2CwCAAA%3BEACA%2CsCAAA%3BEACA%2CmCAAA%3B%3BAoChEJ%2CsBAuFI%2CYAAW%2CMAAO%2CWAAU%3BEACxB%2CWAAW%2CUAAX%3BEpC3BJ%2C2CAAA%3BEACA%2CwCAAA%3BEACA%2CsCAAA%3BEACA%2CmCAAA%3B%3BAoC4BA%2CsBAAC%2CYACG%3BEACI%3BEACA%3B%3BAAHR%2CsBAAC%2CYAMG%3BEACI%3B%3BAAPR%2CsBAAC%2CYAUG%3BEACI%3B%3BAAUR%2CQAN%2BB%3BEAM%5C%2FB%2CsBALI%2CUAAS%3BIACL%2CqBAAA%3B%3B%3BAASR%2CQAL2B%3BEAK3B%3BIAJI%3BIACA%3B%3B%3BAAgDJ%2CQA7C8B%3BEA6C9B%3BIA5CI%3B%3BEA4CJ%2CsBA1CI%3BIACI%3B%3BEAyCR%2CsBAtCI%2CUAAS%3BIACL%2CoBAAA%3B%3BEAqCR%2CsBAlCI%3BIACI%3BIACA%3B%3BEAgCR%2CsBA7BI%3BIACI%3B%3BEA4BR%2CsBAzBI%2CWAAW%3BIACP%3B%3BEAGJ%2CsBAAC%2CYACG%3BIACI%3BIACA%3B%3BEAHR%2CsBAAC%2CYAMG%3BIACI%3BIACA%3B%3BEARR%2CsBAAC%2CYAWG%3BIACI%3B%3BEASZ%2CsBALI%2CUAAU%3BIACN%3B%3B%3BAAWZ%2CQAP%2BB%3BEAO%5C%2FB%3BIANQ%3B%3BEAMR%2CsBAJQ%3BIACI%3B%3B%3B%3B%3B%3BACpKZ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAA6GJ%2CQA1G8B%3BEAC1B%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3B%3BAA8GR%2CQA1G2B%3BEACvB%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3B%3BAA8GR%2CQA1G8B%3BEAC1B%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3B%3BAA8GR%2CQA1G2B%3BEACvB%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3B%3B%3B%3B%3BAAOR%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAAGJ%2CIAAK%3BEACD%3B%3BAA6GJ%2CQA1G8B%3BEAC1B%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3B%3BAA8GR%2CQA1G2B%3BEACvB%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3B%3BAA8GR%2CQA1G8B%3BEAC1B%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3B%3BAA6GR%2CQAzG2B%3BEACvB%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3BEAGJ%2CIAAK%3BIACD%3B%3B%3BACliCR%3BEACI%2CcAAA%3B%3BAADJ%2CeAGI%3BEACI%3B%3BAAJR%2CeAOI%3BEACI%2C4BAAA%3BEtCgHJ%2CqDAAA%3BEACA%2CkDAAA%3BEACA%2C6CAAA%3BEsChHI%3BEACA%2CyBAAA%3B%3BAAXR%2CeAOI%2CkBAMI%3BEACI%3BEACA%3BEACA%3B%3BAAhBZ%2CeAOI%2CkBAYI%3BEACI%3B%3BAApBZ%2CeAOI%2CkBAgBI%3BEtCpBJ%2CeAAA%3BEACA%2CiBAAA%3B%3BAsCJJ%2CeAOI%2CkBAoBI%2CaAAa%3BEACT%2CcAAA%3B%3BAAEA%2CeAvBR%2CkBAoBI%2CaAAa%2CEAGR%3BEACG%3B%3BAA%5C%2FBhB%2CeAOI%2CkBA4BI%3BEACI%3B%3BAApCZ%2CeAOI%2CkBA4BI%2CWAGI%3BEACI%2CcAAA%3B%3BAAGI%2CeAnChB%2CkBA4BI%2CWAGI%2CEAGK%2CMACI%3BEACG%2CcAAA%3B%3BAAgCpB%2CQAhB8B%3BEAgB9B%2CeAfI%3BIACI%3BIACA%3B%3BEAaR%2CeAVI%3BIACI%3B%3BEASR%2CeAVI%2CkBAGI%3BIACI%3BIACA%3B%3B%3BAAcZ%2CQAT2B%3BEAS3B%2CeARI%2CkBACI%3BIACI%3BIACA%3B%3B%3BAAuBZ%2CQAlB8B%3BEAkB9B%2CeAjBI%3BIACI%3B%3BEAgBR%2CeAjBI%2CkBAGI%3BIACI%3BIACA%3BIACA%3BIACA%3BIACA%3B%3BEASZ%2CeAjBI%2CkBAWI%2CgBAAgB%3BIACZ%3B%3B%3BAAiBhB%2CQAZ%2BB%3BEAY%5C%2FB%2CeAXQ%2CkBACI%3BIACI%3BIACA%3B%3BEAQhB%2CeAXQ%2CkBACI%2CgBAII%3BIACI%3B%3B%3BAAOpB%2CsBACI%3BEACI%3B%3BAAFR%2CsBAKI%3BEtCtHA%2CeAAA%3BEACA%2CeAAA%3BEsCuHI%3BEACA%2CgBAAA%3B%3BAARR%2CsBAKI%2CgBAKI%3BEACI%3BEACA%2CgBAAA%3B%3BAAZZ%2CsBAKI%2CgBAUI%3BEACI%3BEACA%3BEACA%3B%3BAAlBZ%2CsBAKI%2CgBAgBI%3BAArBR%2CsBAKI%2CgBAiBI%2CSAAW%3BEACP%3B%3BAAvBZ%2CsBAKI%2CgBAqBI%2CSAAW%3BEACP%3BEACA%3BEACA%3BEACA%3B%3BAA9BZ%2CsBAKI%2CgBA4BI%2CSAAW%2CIAAC%3BEACR%2CavC9GO%2CuBuC8GP%3BEACA%2CgBAAA%3BEtCpJR%2CeAAA%3BEACA%2CiBAAA%3BEsCqJQ%2CcAAA%3B%3BAArCZ%2CsBAKI%2CgBAmCI%2CqBAAoB%3BEAChB%2CSAAS%2COAAT%3B%3BAAzCZ%2CsBAKI%2CgBAuCI%2CoBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAA7CZ%2CsBAKI%2CgBA2CI%2CqBAAoB%3BEAChB%2CSAAS%2COAAT%3B%3BAAjDZ%2CsBAqDI%3BEACI%3B%3BAAtDR%2CsBAyDI%2CSAAS%3BEACL%3BEtC3KJ%2CeAAA%3BEACA%2CiBAAA%3BEsC4KI%2CcAAA%3BEACA%3BEACA%3BEACA%3B%3BAA%5C%2FDR%2CsBAyDI%2CSAAS%2CEAQL%3BEACI%3BEACA%3B%3BAAGJ%2CsBAbJ%2CSAAS%2CEAaJ%3BEACG%2CcAAA%3B%3BAAUR%2CQAN8B%3BEAM9B%2CsBALI%3BIACI%3B%3B%3BAAuBZ%2CQAnBkC%3BEAmBlC%2CsBAlBQ%2CgBACI%3BItCpMR%2CeAAA%3BIACA%2CiBAAA%3B%3BEsCoNJ%2CsBAlBQ%2CgBAKI%3BIACI%3B%3BEAYhB%2CsBAlBQ%2CgBASI%2CSAAW%3BIACP%3B%3BEAQhB%2CsBAlBQ%2CgBAaI%2CSAAW%2CIAAC%3BItChNpB%2CeAAA%3BIACA%2CiBAAA%3B%3B%3BAsCsNJ%3BEACI%2CYAAA%3BEACA%2CgBAAA%3BEACA%3B%3BAAHJ%2CQAKI%3BEACI%3BEACA%3BEACA%2CsBAAA%3B%3BAARR%2CQAWI%3BEACI%3B%3BAAZR%2CQAeI%3BEACI%3BEACA%3B%3BAAjBR%2CQAeI%2CgBAKI%2CgBAAgB%3BEtCtHpB%2CwBAAA%3BEACA%2CqBAAA%3BEACA%2CgBAAA%3BEsCsHS%3B%3BAAtBb%2CQA0BI%3BAA1BJ%2CQA2BI%3BEACI%3BEACA%3BEACA%2C0BAAA%3B%3BAA9BR%2CQA0BI%2CmBAMI%3BAAhCR%2CQA2BI%2CeAKI%3BEACI%3BEACA%3BEtCzPR%2CeAAA%3BEACA%2CeAAA%3B%3BAsC2PQ%2CQAXR%2CmBAMI%2CcAKK%3BAAAD%2CQAVR%2CeAKI%2CcAKK%3BEACG%2CSAAS%2COAAT%3BEACA%3BEACA%2CavC3NF%2CoBuC2NE%3BEACA%3BEACA%3BEtC9LZ%2CmBsC%2BLuB%2CgBtC%5C%2FLvB%3BEACA%2CgBsC8LuB%2CgBtC9LvB%3BEACA%2CcsC6LuB%2CgBtC7LvB%3BEACA%2CesC4LuB%2CgBtC5LvB%3BEACA%2CWsC2LuB%2CgBtC3LvB%3BEAbA%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECiIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3BAqCwEtD%2CQArBR%2CmBAMI%2CcAeK%2COAAO%3BAAAR%2CQApBR%2CeAKI%2CcAeK%2COAAO%3BEtCnMhB%2CmBsCoMuB%2CiBAAiB%2CctCpMxC%3BEACA%2CgBsCmMuB%2CiBAAiB%2CctCnMxC%3BEACA%2CcsCkMuB%2CiBAAiB%2CctClMxC%3BEACA%2CesCiMuB%2CiBAAiB%2CctCjMxC%3BEACA%2CWsCgMuB%2CiBAAiB%2CctChMxC%3B%3BAsCgJJ%2CQA0BI%2CmBA0BI%3BAApDR%2CQA2BI%2CeAyBI%3BEACI%3B%3BAArDZ%2CQAyDI%3BEACI%2CcAAA%3BEACA%2CcAAA%3BEACA%3BEtCnRJ%2CeAAA%3BEACA%2CiBAAA%3BEsCoRI%2CgBAAA%3B%3BAAEA%2CQAPJ%2CMAOK%3BEACG%2CcAAA%3B%3BAAjEZ%2CQAqEI%3BEACI%2CsBAAA%3B%3BAAtER%2CQAqEI%2CWAGI%3BEtC%5C%2FRJ%2CeAAA%3BEACA%2CiBAAA%3BEsCgSQ%2CcAAA%3BEACA%2CyBAAA%3BEtC7RR%2C6BAAA%3BEACA%2C0BAAA%3BEACA%2CqBAAA%3BEAmDA%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECiIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3BEqCuGtD%2CiBAAA%3BEACA%3B%3BAAEA%2CQAZR%2CWAGI%2CEASK%3BEACG%2CcAAA%3BEACA%2CyBAAA%3B%3BAAShB%2CQAJ%2BB%3BEAI%5C%2FB%3BIAHQ%3BIACA%3B%3B%3BAAIR%3BEACI%2CuBAAA%3B%3BAADJ%2CcAGI%3BEACI%3B%3BAAJR%2CcAOI%3BAAPJ%2CcAQI%2CSAAW%3BEACP%3B%3BAATR%2CcAYI%2CSAAW%3BEACP%3BEACA%3BEACA%3BEACA%2CcAAA%3B%3BAAhBR%2CcAmBI%2CSAAW%2CIAAC%3BEACR%2CcAAA%3B%3BAApBR%2CcAuBI%2CSAAW%2CIAAC%3BEACR%2CavCxSW%2CuBuCwSX%3BEACA%2CgBAAA%3BEtC9UJ%2CeAAA%3BEACA%2CiBAAA%3B%3BAsCoTJ%2CcA6BI%2CqBAAoB%3BEAChB%2CSAAS%2COAAT%3B%3BAA9BR%2CcAiCI%2CoBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAAlCR%2CcAqCI%2CqBAAoB%3BEAChB%2CSAAS%2COAAT%3B%3BAAIR%3BEACI%2C0BAAA%3BEACA%2CeAAA%3B%3BAAFJ%2CkBAII%3BAAJJ%2CkBAKI%3BEACI%3BEACA%2CcAAA%3BEACA%3B%3BAARR%2CkBAII%2CMAKI%2CMAAM%3BAATd%2CkBAKI%2CMAII%2CMAAM%3BEtCxWV%2CeAAA%3BEACA%2CiBAAA%3BEsCyWQ%2CgBAAA%3BEACA%3B%3BAAGJ%2CkBAXJ%2CMAWK%3BAAAD%2CkBAVJ%2CMAUK%3BEACG%3B%3BAAhBZ%2CkBAoBI%3BEACI%3B%3BAArBR%2CkBAwBI%3BEACI%3B%3BAAzBR%2CkBA4BI%3BEACI%3B%3BAAIR%3BEtCvWI%2CkBAAA%3BEACA%2CmBAAA%3B%3BAsCyWA%2CKAAM%3BEACF%3B%3BAAJR%2CoBAOI%3BEACI%3B%3BAARR%2CoBAWI%3BEACI%2CoCAAA%3BEtClVJ%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECiIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3BAqCkMlE%2CoBAgBI%3BEACI%3B%3BAAjBR%2CoBAoBI%2CEAAC%2CMACG%3BEACI%2CyBAAA%3B%3BAAeZ%2CQAX%2BB%3BEAW%5C%2FB%3BItC5YI%2CkBAAA%3BIACA%2CmBAAA%3B%3BEsCmYI%2CKAAM%3BIACF%3B%3BEAOZ%2CoBAJQ%3BIACI%3B%3B%3BAAKZ%2CIAAI%3BEACA%2CcAAA%3BEACA%2CyBAAA%3B%3BAAIA%2CKAAM%3BEACF%3B%3BAAFR%2CgBAKI%3BEACI%2CgBAAA%22%7D */