/**
 * 
 * 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
 */
.gray {
  color: #676d72;
}
.blue {
  color: #0971ce;
}
.light-blue {
  color: #67a8e2;
}
.dark-blue {
  color: #003562;
}
.purple {
  color: #ab56aa;
}
.bg-gray {
  color: #f6f6f6;
}
.white-bg {
  background-color: #ffffff;
}
/*
 * Fonts
 */
.open-sans {
  font-family: 'Open Sans', sans-serif;
}
.lora {
  font-family: 'Lora', serif;
}
.poppins {
  font-family: 'Poppins', sans-serif;
}
/* Font Weights */
/*
 *  Widths
 *  add custom widths in marked area below
 */
.max-content-size-920 {
  max-width: 920px;
}
.max-content-size-700 {
  max-width: 700px;
}
.max-content-size-520 {
  max-width: 520px;
}
/* Site Width Padding */
/* Global elements Styles */
body,
button,
input,
select,
textarea {
  color: #343434;
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.58;
}
body {
  background-color: #ffffff;
  margin: 0 auto;
  overflow: hidden;
  max-width: 2600px;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  clear: both;
  font-weight: 600;
}
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: 40px;
  font-size: 4rem;
  line-height: 1.4;
}
h2,
.h2 {
  font-size: 45px;
  font-size: 4.5rem;
  line-height: 1.2;
}
h3,
.h3 {
  font-size: 31px;
  font-size: 3.1rem;
  line-height: 1.4;
}
h4,
.h4 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.4;
}
h5,
.h5 {
  font-size: 20.5px;
  font-size: 2.05rem;
  line-height: 1.4;
}
h6,
.h6 {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  h1,
  .h1 {
    font-size: 40px;
    font-size: 4rem;
    line-height: 1.4;
  }
  h2,
  .h2 {
    font-size: 28px;
    font-size: 2.8rem;
    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: 14px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  h6,
  .h6 {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 30px;
    font-size: 3rem;
    line-height: 1.4;
  }
  h2,
  .h2 {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.2;
  }
  h3,
  .h3 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.4;
  }
  h4,
  .h4 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.4;
  }
  h5,
  .h5 {
    font-size: 15px;
    font-size: 1.5rem;
    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: #ffffff;
  font-size: 14px;
  font-size: 1.4rem;
  border: 1px solid #CCCCCC;
}
/* Use for custom select dropdowns styles */
select {
  background-image: url('../images/select-arrow.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: #0971ce;
  text-decoration: none;
}
a:hover,
a:active {
  color: #343434;
  text-decoration: none;
}
a:focus {
  outline: none;
}
.link-color {
  color: #0971ce;
}
.link-color-hover {
  color: #343434;
}
p {
  margin-top: 0;
  margin-bottom: 30px;
}
hr {
  display: block;
  border: none;
  border-bottom: 3px solid #333333;
  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;
}
blockquote {
  font-family: 'Lora', serif;
  font-size: 30px;
  font-size: 3rem;
  color: #343434;
  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 {
  font-size: 16px;
  font-size: 1.6rem;
}
.social-icons a:hover i:after {
  filter: brightness(0.5);
}
.social-icons i {
  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;
  position: relative;
}
.social-icons i:before {
  z-index: 2;
}
.social-icons i:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  z-index: 1;
}
.social-icons .fa-facebook-f:after {
  background-color: #3b5998;
}
.social-icons .fa-linkedin-in:after {
  background-color: #0077b5;
}
.social-icons .fa-youtube:after {
  background-color: #df1f00;
}
/****************************************************************************************************/
/*******************************************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;
  letter-spacing: 0.75px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #0971ce;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 17px;
  font-size: 1.7rem;
  padding: 14px 32px;
  -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: 600;
  -webkit-box-shadow: 5px 8px 13px 0px rgba(0, 53, 98, 0.3);
  -moz-box-shadow: 5px 8px 13px 0px rgba(0, 53, 98, 0.3);
  box-shadow: 5px 8px 13px 0px rgba(0, 53, 98, 0.3);
}
.btn.btn-dark-blue,
input[type="submit"].btn-dark-blue,
.gform_wrapper .gform_footer .button.btn-dark-blue {
  background-color: #003562;
}
.btn.btn-purple,
input[type="submit"].btn-purple,
.gform_wrapper .gform_footer .button.btn-purple {
  background-color: #ab56aa;
}
.btn.btn-white,
input[type="submit"].btn-white,
.gform_wrapper .gform_footer .button.btn-white {
  background-color: #ffffff;
  color: #003562;
}
.btn.request-btn,
input[type="submit"].request-btn,
.gform_wrapper .gform_footer .button.request-btn {
  padding: 14px 28px 14px 70px;
  font-size: 15px;
  font-size: 1.5rem;
  position: relative;
}
.btn.request-btn:before,
input[type="submit"].request-btn:before,
.gform_wrapper .gform_footer .button.request-btn:before {
  content: '\f073';
  font-family: 'Font Awesome 5 Pro';
  font-size: 26px;
  font-size: 2.6rem;
  position: absolute;
  left: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
a.arrows:after,
div.arrows:after,
span.arrows:after {
  content: '\f324';
  color: #0971ce;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 500;
  margin-left: 10px;
  -webkit-transition: margin 0.3s ease-out;
  -moz-transition: margin 0.3s ease-out;
  -o-transition: margin 0.3s ease-out;
  transition: margin 0.3s ease-out;
}
span.arrows:hover:after {
  margin-left: 20px;
  -webkit-transition: margin 0.3s ease-out;
  -moz-transition: margin 0.3s ease-out;
  -o-transition: margin 0.3s ease-out;
  transition: margin 0.3s ease-out;
}
.btn:hover,
input[type="submit"]:hover,
.gform_wrapper .gform_footer .button:hover {
  opacity: 0.8;
  color: #ffffff;
}
.btn:focus .btn:active,
.gform_wrapper .gform_footer .button:focus .gform_wrapper .gform_footer .button:active {
  outline: none;
}
.btn-hover-full:hover,
.btn-hover-full:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #343434;
}
@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: 'Lora', serif;
  font-style: italic;
  font-weight: 700;
  color: #343434;
  position: relative;
  margin-bottom: 5px;
}
.pretitle span {
  position: relative;
}
.pretitle span:after {
  content: '';
  width: 0;
  height: 3px;
  background-color: #343434;
  position: absolute;
  top: 50%;
  left: calc(100% + 13px);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: width 0.6s ease-out;
  -moz-transition: width 0.6s ease-out;
  -o-transition: width 0.6s ease-out;
  transition: width 0.6s ease-out;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  border-radius: 9999px;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.pretitle.two-lines span:before {
  content: '';
  width: 0;
  height: 3px;
  background-color: #343434;
  position: absolute;
  top: 50%;
  right: calc(100% + 13px);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: width 0.6s ease-out;
  -moz-transition: width 0.6s ease-out;
  -o-transition: width 0.6s ease-out;
  transition: width 0.6s ease-out;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  border-radius: 9999px;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.pretitle.animated span:before,
.pretitle.animated span:after {
  width: 60px;
}
.purple-top-border {
  border-top: 24px solid #ab56aa;
}
@-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: #343434;
  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: #ffffff;
  color: transparent;
  border-radius: 9999px;
  border: 2px solid #676d72;
  height: 12px;
  width: 12px;
  padding: 0;
  overflow: hidden;
  font-size: 1px;
  cursor: pointer;
}
.slick-dots li.slick-active button {
  border-color: #343434;
}
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: #343434;
  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;
}
.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: #343434;
}
.search .spacer {
  height: 10px;
}
@media (max-width: 1024px) {
  .search .spacer {
    height: 30px;
  }
}
/***** CHECK LIST PANEL *****/
.blue-check-mark {
  list-style-type: none;
  line-height: 2.8;
  padding-inline-start: 0;
  padding-left: 50px;
  position: relative;
  margin: 25px 0 0 0;
}
.blue-check-mark > li:before {
  content: url(../images/check-mark.png);
  position: absolute;
  left: 0;
  line-height: 2.8;
}
/***** LEFT BLUE BORDER *****/
.left-blue-border {
  border-left: 6px solid #67a8e2;
  padding-left: 40px;
  display: block;
}
p.left-blue-border {
  margin-bottom: 0;
  padding-bottom: 30px;
}
h3.left-blue-border {
  margin-bottom: 0;
  padding-bottom: 20px;
  padding-top: 50px;
}
/******* FINE PRINT *******/
.fine-print {
  width: 100%;
  max-width: 700px;
  padding-left: 100px;
  font-size: 14px;
}
/***** BOTTOM BORDER ******/
.box-bottom-border {
  border-bottom: 28px solid #fdfdfd26;
}
/****** NO POINTER ******/
.no-pointer a {
  cursor: auto;
}
.pointer a {
  cursor: pointer;
}
/****************************************************************************************************/
/**************************************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 #676d72;
  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: #343434;
  -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: #343434;
  -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: transparent;
  border: 1px solid #676d72;
  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: #333333;
  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;
  clear: left;
}
.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: 25px;
}
.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 #676d72;
  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 #676d72;
  -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: #343434;
  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: #333333;
  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: #333333;
  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%;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.gform_wrapper textarea {
  resize: vertical;
  height: 80px;
}
.gform_wrapper .gfield_required {
  color: #343434;
  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: 250px;
}
.gform_wrapper.get_in_touch_form_wrapper {
  background-color: transparent;
  border: none;
}
.gform_wrapper.get_in_touch_form_wrapper #gform_1 .gfield_label {
  color: #ffffff;
}
.gform_wrapper.get_in_touch_form_wrapper #gform_1 .gfield_label .gfield_required {
  color: #ffffff;
}
.gform_wrapper.get_in_touch_form_wrapper #gform_1 .gform_footer {
  margin-top: 1em;
  text-align: left;
}
.gform_wrapper.get_in_touch_form_wrapper #gform_3 .address_city {
  margin-bottom: 25px;
}
.gform_wrapper.get_in_touch_form_wrapper #gform_3 .address_state {
  margin-bottom: 25px;
}
.gform_wrapper.get_in_touch_form_wrapper #gform_3 .address_zip {
  margin-bottom: 25px;
}
@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 #343434;
  border-top: solid 1px #343434;
  border-bottom: solid 1px #343434;
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #343434;
}
nav.paging-navigation .pagination .page-numbers.current {
  background-color: #343434;
  color: #ffffff;
}
nav.paging-navigation .pagination .page-numbers:hover {
  background-color: #343434;
  color: #ffffff;
}
nav.paging-navigation .pagination .next,
nav.paging-navigation .pagination .prev {
  font-size: 18px;
  font-size: 1.8rem;
  color: #343434;
}
nav.paging-navigation .pagination .next:hover,
nav.paging-navigation .pagination .prev:hover {
  background-color: #343434;
}
nav.paging-navigation .pagination .next {
  border-right: solid 1px #343434;
}
nav.paging-navigation .pagination .prev {
  border-left: solid 1px #343434;
}
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: #343434;
}
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-medium {
  font-weight: 500;
}
.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: #ffffff;
}
.black {
  color: #000000;
}
.charcoal {
  color: #333333;
}
/* 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-wrap {
    white-space: normal;
  }
  .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;
}
.site-width {
  width: 100%;
  max-width: 1410px;
  margin: auto;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1450px) {
  .site-width {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.med-site-width {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1240px) {
  .med-site-width {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sm-site-width {
  width: 100%;
  max-width: 975px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1015px) {
  .sm-site-width {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.xsm-site-width {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 800px) {
  .xsm-site-width {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sidebar-width {
  width: 100%;
  max-width: 420px;
  margin: auto;
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 460px) {
  .sidebar-width {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.lg-site-width {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1640px) {
  .lg-site-width {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sidebar-width {
  width: 100%;
  max-width: 420px;
  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-content {
  margin-top: 173px;
}
.emergency-message {
  color: #0971ce;
  padding: 5px 0;
  border-bottom: 1px solid #0971ce;
  text-align: center;
}
.emergency-message p {
  margin: 0 !important;
}
.emergency-message a {
  color: #ab56aa;
  text-decoration: underline;
}
.site-header {
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  -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;
}
.site-header .header-inner {
  max-width: 1600px;
  margin: auto;
}
.site-header .site-logo a {
  position: relative;
  display: block;
  width: 389px;
  height: 59px;
  background-size: cover;
}
@media (max-width: 1200px) {
  .site-header .site-logo a {
    width: 350px;
    height: 53px;
  }
}
@media (max-width: 500px) {
  .site-header .site-logo {
    padding: 12px 0;
  }
}
@media (max-width: 375px) {
  .site-header .site-logo a {
    width: 280px;
    height: 42px;
  }
}
.header-top {
  padding: 32px 0 32px;
}
.header-top .request-btn {
  margin-right: 25px;
}
.header-bottom {
  background-color: #003562;
  color: #ffffff;
}
/*
*  Primary Navigation Styles
*/
.header-main .primary-navigation > ul,
.header-main .primary-navigation > ul > li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  position: relative;
  height: 50px;
}
.header-main .primary-navigation > ul.mobile-menu-custom,
.header-main .primary-navigation > ul > li.mobile-menu-custom {
  display: none;
}
.header-main .primary-navigation > ul > li:hover {
  font-weight: 500;
  color: #ffffff;
}
.header-main .primary-navigation > ul > li > a {
  display: flex;
  align-items: center;
  padding: 9px 30px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.4px;
  -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;
}
.header-main .primary-navigation > ul > li:hover > a {
  color: #ffffff;
  top: 5px;
  background-color: #0971ce;
}
.header-main .primary-navigation > ul > li > a > span {
  line-height: 1;
}
.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;
}
@media (max-width: 1024px) {
  .header-main .primary-navigation > ul.mobile-menu-custom,
  .header-main .primary-navigation > ul > li.mobile-menu-custom {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
  }
}
.header-main .search-wrapper {
  width: 290px;
}
.header-main .search-wrapper .search-input {
  border: none;
  border-radius: 0;
  background-color: #0971ce;
  color: #ffffff;
}
.header-main .search-wrapper input::placeholder {
  color: #ffffff !important;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}
.header-main .search-wrapper .input-holder {
  position: relative;
}
.header-main .search-wrapper button.search-icon.search-submit {
  position: absolute;
  z-index: 1;
  top: 50%;
  border: none;
  background: transparent;
  right: 10px;
  font-size: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: #ffffff;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header-main .search-wrapper button.search-icon.search-submit .fa-search {
  font-weight: 700;
}
.header-main .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);
}
.header-main .search-wrapper input {
  height: 50px;
  z-index: 2;
}
@media (max-width: 1500px) {
  .header-main .header-search-button,
  .header-main .primary-navigation > ul > li > a {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1400px) {
  .header-main .header-search-button,
  .header-main .primary-navigation > ul > li > a {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media (max-width: 1350px) {
  .header-main .header-search-button,
  .header-main .primary-navigation > ul > li > a {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 1250px) {
  .header-main .header-search-button,
  .header-main .primary-navigation > ul > li > a {
    font-size: 15px;
    font-size: 1.5rem;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 1200px) {
  .header-main .right-col {
    -webkit-align-self: center;
    -ms-align-self: center;
    align-self: center;
    padding-bottom: 0;
  }
  .header-main .header-search-button {
    font-size: 18px;
    font-size: 1.8rem;
    margin-right: 10px;
  }
}
.header-aux {
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}
/*
*  Primary Navigation Submenu Styles
*/
.header-main .primary-navigation .sub-menu {
  background-color: #0971ce;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 320px;
  max-width: 400px;
  display: none;
  padding: 20px 10px 10px 5px;
}
.header-main .primary-navigation .sub-menu a {
  display: block;
  padding: 10px 20px;
  font-family: 'poppins';
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
  -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: #0971ce;
  color: #ffffff;
  -webkit-flex: initial;
  -ms-flex: initial;
  flex: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-size: 1.6rem;
}
/* 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;
}
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: 15px 10px 15px;
}
.menu-toggle .inner {
  width: 32px;
  height: 20px;
  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: 3px;
  width: 100%;
  background-color: #ffffff;
  position: absolute;
}
.menu-toggle .inner span:nth-child(2) {
  top: 9px;
  height: 3px;
  width: 100%;
  background-color: #ffffff;
  position: absolute;
}
.menu-toggle .inner span:nth-child(3) {
  top: 18px;
  height: 3px;
  width: 100%;
  background-color: #ffffff;
  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: #343434;
}
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: #ffffff;
}
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: #ffffff;
}
.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: #ffffff;
}
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: 150px;
  width: 100%;
  z-index: 3;
  background-color: white;
  overflow-y: auto;
  bottom: 0;
  padding-bottom: 20px;
}
.mobile-navigation .nav-menu > li > a {
  color: #343434;
  font-weight: 600;
  padding: 16px 25px;
  font-size: 18px;
  font-size: 1.8rem;
  display: block;
  -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;
}
.mobile-navigation .nav-menu > li > a:hover {
  color: #ffffff;
  background-color: #0971ce;
}
.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: #343434;
  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:hover {
  background-color: #cecece;
}
.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 form .input-holder {
  position: relative;
}
.mobile-navigation .search-wrapper input {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.mobile-navigation .search-wrapper button {
  border: none;
  background-color: transparent;
  position: absolute;
  right: 4px;
  top: 8px;
}
@media (max-width: 500px) {
  .mobile-navigation {
    top: 174px;
  }
}
.mfp-content {
  max-width: 850px;
  background-color: #ffffff;
  padding: 30px;
}
.mfp-content #ref-req-popup {
  text-align: center;
}
.mfp-content #ref-req-popup h3 {
  color: #003562;
}
.mfp-content #ref-req-popup .content {
  max-width: 570px;
  margin: auto;
  padding-bottom: 40px;
}
.mfp-content #ref-req-popup .popup-two-column .col-left {
  background-color: #e9eff3;
  padding: 30px 20px;
}
.mfp-content #ref-req-popup .popup-two-column .col-left .inner-title {
  padding-bottom: 20px;
}
.mfp-content #ref-req-popup .popup-two-column .col-right {
  background-color: #e9eff3;
  padding: 30px 20px;
}
.mfp-content #ref-req-popup .popup-two-column .col-right .inner-title {
  padding-bottom: 20px;
}
@media (max-width: 1200px) {
  .header-top {
    padding: 24px 0 24px;
  }
}
@media (max-width: 1200px) {
  .site-content {
    margin-top: 150px;
  }
}
/*
*  Footer Styles
*/
.site-footer {
  background-color: #f6f6f6;
}
.site-footer .column-1,
.site-footer .column-2,
.site-footer .column-3 {
  padding-right: 30px;
  font-size: 14px;
  font-size: 1.4rem;
}
.site-footer .column-1 a,
.site-footer .column-2 a,
.site-footer .column-3 a {
  color: #000000;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}
.site-footer .column-1 a:hover,
.site-footer .column-2 a:hover,
.site-footer .column-3 a:hover,
.site-footer .column-1 a:focus,
.site-footer .column-2 a:focus,
.site-footer .column-3 a:focus {
  color: #0971ce;
}
.site-footer .footer-logo img {
  width: 290px;
  max-width: 290px;
  height: 43px;
}
.site-footer .footer-inner {
  max-width: 1680px;
  margin: auto;
  padding-top: 70px;
  padding-bottom: 70px;
}
.site-footer .main-footer ul {
  column-count: 2;
}
.site-footer .main-footer ul li {
  display: block;
  margin-bottom: 10px;
}
.site-footer .social-media > ul {
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}
.site-footer .social-media > ul > li {
  width: 40px;
  height: 40px;
  margin-left: 10px;
}
.site-footer .copyright {
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  color: #676d72;
  border-top: 1px solid #676d72;
  padding-top: 20px;
  padding-bottom: 235px;
  max-width: 1680px;
  margin: auto;
}
.site-footer .copyright .creds-col {
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}
.site-footer .copyright a {
  padding-left: 10px;
  margin-left: 5px;
  border-left: 1px solid #676d72;
}
.site-footer .copyright a:last-of-type {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.site-footer .copyright a {
  color: #676d72;
}
.site-footer .copyright a:hover {
  color: #0971ce;
}
@media (max-width: 1720px) {
  .site-footer .footer-inner,
  .site-footer .copyright {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1680px) {
  .site-footer .footer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1400px) {
  .site-footer .menu-col {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .site-footer .footer-inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .site-footer .menu-col {
    margin-top: 20px;
  }
  .site-footer .social-media {
    margin-top: 40px;
  }
  .site-footer .social-media > ul {
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
  }
  .site-footer .social-media > ul > li {
    margin-left: 0;
    margin-right: 10px;
  }
  .site-footer .copyright {
    padding-bottom: 20px;
  }
  .site-footer .copyright .creds-col {
    margin-top: 20px;
  }
  .site-footer .copyright a {
    padding-left: 0;
    margin-left: 0;
    border-left: none;
  }
}
@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;
  }
}
.img-wrap {
  line-height: 0;
}
.no-image-banner {
  padding: 85px 0 80px;
}
.no-image-banner .sixty {
  padding: 20px;
}
.locations.main {
  background-color: #f6f6f6;
}
body .locations.main .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  -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;
  opacity: 0;
  left: 10px;
  right: 10px;
  bottom: 10px;
  top: 10px;
}
body.searching .locations.main .overlay {
  visibility: visible;
  opacity: 1;
}
body .locations.main .overlay svg {
  font-size: 28px;
}
.locations.main .location-search {
  padding: 10px;
  max-width: 440px;
}
.locations.main .location-search-form {
  padding: 80px 40px;
  background-color: #f6f6f6;
}
.locations.main .location-search .title {
  padding-bottom: 45px;
}
.locations.main .location-search label {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #0971ce;
  padding-bottom: 5px;
  display: inline-block;
}
.locations.main .location-search input,
.locations.main .location-search select {
  border-radius: 4px;
  background-color: #ffffff;
  color: #7d8890;
  margin-bottom: 15px;
}
.locations.main .location-search .actions {
  margin-top: 60px;
}
.locations.main .map {
  padding: 70px 0;
}
.locations.main #map-canvas {
  max-height: 80vh;
  height: 650px;
  height: 100%;
}
.locations.main .loc-list {
  padding: 60px 10px 10px;
  margin-bottom: 60px;
  border-top: 25px solid #67a8e2;
  background-color: #ffffff;
}
.locations.main .loc-list .location {
  border-bottom: 1px solid #cbcfd3;
  padding: 50px 35px;
}
.locations.main .loc-list .location .title {
  font-family: 'Poppins', sans-serif;
  padding-right: 30px;
  line-height: 1.2;
}
.locations.main .loc-list .location .title a {
  color: #003562;
}
.locations.main .loc-list .location .title a:hover {
  color: #0971ce;
}
.locations.main .loc-list .location .addr {
  padding-right: 30px;
}
.locations.main .loc-list .services {
  padding: 15px 0;
}
.locations.main .loc-list .location .dist {
  padding-bottom: 10px;
}
.locations.main .loc-list .location .phone {
  padding-bottom: 10px;
}
.locations.main .loc-list .location .directions {
  padding-bottom: 5px;
}
.locations.main .loc-list .location .links {
  padding-right: 30px;
  padding-bottom: 15px;
}
.locations.main .loc-list .location .action {
  width: 340px;
}
.loc-list .location .services span.item:after {
  content: ', ';
  color: #343434;
}
.loc-list .location .services span.item:last-of-type:after {
  content: '';
}
.info-window-content-inner .title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #0971ce;
  font-weight: 500;
  margin-bottom: 5px;
}
.info-window-content-inner .address {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}
.info-window-content-inner .phone {
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}
.info-window-content-inner a {
  font-weight: 600 !important;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
  display: inline-block;
}
.info-window-content-inner a.arrows:hover svg,
.info-window-content-inner div.arrows:hover svg,
.info-window-content-inner span.arrows:hover svg {
  left: 0;
}
@media (max-width: 1200px) {
  .locations.main .loc-list .location .title {
    font-size: 24px;
    margin-bottom: 5px;
  }
}
@media (max-width: 1024px) {
  .locations.main .location-search-form {
    padding: 70px 20px;
  }
  .locations.main #map-canvas {
    height: 550px !important;
  }
  .locations.main .location-search .actions {
    margin-top: 30px;
  }
  .locations.main .loc-list {
    margin-top: 25px;
  }
  .locations.main .loc-list .location .links,
  .locations.main .loc-list .location .action {
    width: 100%;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .locations.main .loc-list .location {
    padding: 50px 10px;
  }
  .locations.main .location-search {
    max-width: 100%;
  }
  .locations.main .location-search-form {
    padding: 35px 20px;
  }
}
/******************** SINGLE LOCATION ********************/
.single-location {
  /* *** MODULE -- gallery 
    ============================================================================ */
}
.single-location .purple-top-border {
  border-top: 24px solid #ab56aa;
}
@media (max-width: 500px) {
  .single-location .two-column-image-text .text-col {
    padding-top: 20px;
  }
}
.single-location .loc-list {
  padding: 70px 0;
  background-color: #f6f6f6;
}
.single-location .loc-list .action {
  margin-top: 15px;
}
.single-location .loc-list .hours,
.single-location .loc-list .phone {
  margin-top: 30px;
}
.single-location .loc-list .hours > span.blue > div.office-hrs-msg {
  display: flex;
  color: gray;
  font-size: 15px;
  margin-left: -10px;
  margin-top: -10px;
  list-style: none;
  margin-left: 10px;
  margin-top: 5px;
}
.single-location .loc-list .hours > span.blue > div.office-hrs-msg:before {
  content: "*";
  margin-right: 5px;
}
.single-location .loc-list .location .thirty {
  padding-right: 15px;
}
.single-location .loc-doctors {
  padding: 75px 0;
}
.single-location .loc-doctors .img-col .inner {
  padding-right: 70px;
}
.single-location .loc-doctors .prof-title {
  margin-bottom: 5px;
}
.single-location .loc-doctors .short-bio {
  margin-bottom: 20px;
}
.single-location .loc-doctors .action {
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .single-location .loc-doctors .img-col .inner {
    padding-right: 0px;
    padding-bottom: 20px;
  }
}
.single-location .module-gallery {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f6f6f6;
}
.single-location .module-gallery .module-gallery-inner {
  border: 1px solid #ddd;
  max-width: 1024px;
  margin: auto;
}
.single-location .module-gallery .module__imgs {
  padding: 0 4em;
  background-color: #f6f6f6;
  text-align: center;
  margin: 0;
}
.single-location .module-gallery .module__imgs li img {
  margin: auto;
}
.single-location .module-gallery .module__thumbs {
  padding-left: 0;
  border: 1px solid #f6f6f6;
  margin: 0;
}
.single-location .module-gallery .module__thumbs li {
  border: 1px solid #f6f6f6;
  cursor: pointer;
}
.single-location .module-gallery .module__thumbs li:hover img {
  opacity: 0.9;
}
.single-location .module-gallery .module__thumbs li img {
  width: calc(100% - 8px);
  margin-left: 4px;
}
.single-location .module-gallery .module__thumbs .slick-current {
  position: relative;
}
.single-location .module-gallery .module__thumbs .slick-current:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 4px solid #0971ce;
}
.single-location .module-gallery .module__count {
  font-size: 14px;
  font-size: 1.4rem;
  padding: 1.4em 0;
  text-align: center;
  line-height: 1;
  background-color: #FFF;
}
.single-location .module-gallery .slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 54px;
  height: 54px;
  margin: auto;
  z-index: 3;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: 100%;
  border: none;
  outline: none;
  text-indent: -9999px;
  -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;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
  transform: none;
  cursor: pointer;
}
.single-location .module-gallery .slick-arrow.slick-disabled {
  cursor: not-allowed;
  opacity: 0.3;
}
.single-location .module-gallery .slick-arrow.slick-prev {
  left: 10px;
  background-image: url(../images/slick-prev.png);
}
.single-location .module-gallery .slick-arrow.slick-next {
  right: 10px;
  background-image: url(../images/slick-next.png);
}
@media (max-width: 767px) {
  .single-location .module-gallery .module__imgs {
    padding: 0 2em;
  }
  .single-location .module-gallery .module__count {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 1em 0;
  }
}
.single-location .comments {
  padding-bottom: 70px;
}
.single-location .comments .comments-outer {
  position: relative;
  padding: 75px 40px 115px;
}
.single-location .comments .comment {
  max-width: 520px;
  margin: auto;
  padding-bottom: 15px;
}
.single-location .comments .comment p {
  font-weight: 400;
}
.single-location .comments .comment p:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .single-location .comments .comments-outer {
    padding: 80px 20px 80px;
  }
}
@media (max-width: 1024px) {
  .single-location .loc-list .thirty {
    padding-bottom: 50px;
  }
}
.doctor-bio {
  padding: 84px 0;
}
.doctor-bio .img-col {
  padding-right: 40px;
}
.doctor-bio .name h1 {
  color: #003562;
}
.doctor-bio h5.prof-title {
  color: #003562;
}
.doctor-bio .rating {
  margin-bottom: 20px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.doctor-bio .rating p {
  margin-bottom: 20px;
}
.doctor-bio .rating .stars-box,
.doctor-bio .rating .count-box {
  line-height: 1;
}
.doctor-bio .bio {
  margin: 40px 0 0;
}
@media (max-width: 1024px) {
  .doctor-bio .img-col {
    padding-bottom: 20px;
  }
}
.doctor-reviews {
  padding-top: 80px;
  padding-bottom: 40px;
}
.doctor-reviews .upper {
  max-width: 700px;
  margin: 0 auto 30px;
}
.doctor-reviews .rating .count {
  top: 0;
}
.doctor-reviews .reviews div.wrap:nth-child(odd) {
  background-color: #f6f6f6;
}
.doctor-reviews .reviews > div:first-of-type {
  border-top: 0;
}
.doctor-reviews .reviews .wrap {
  border-top: 1px solid #d4d5d6;
  padding: 30px;
}
.doctor-reviews .reviews .wrap .date {
  font-size: 14px;
}
.doctor-reviews .reviews .wrap .col-stars {
  min-width: 220px;
}
.doctor-reviews .see-all-wrap {
  margin-top: 20px;
}
.doctor-reviews .see-all-wrap button {
  border: none;
  background: none;
}
.doc-loc-list {
  background-color: #f6f6f6;
  padding: 65px 0;
}
.doc-loc-list .doc-info {
  padding-right: 40px;
}
.doc-loc-list .doc-info > .inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: 470px;
  padding: 60px 0;
  -webkit-box-shadow: 0px 0px 20.44px 7.56px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 0px 20.44px 7.56px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 0px 20.44px 7.56px rgba(0, 0, 0, 0.18);
}
.doc-loc-list h5 {
  margin-bottom: 15px;
}
.doc-loc-list .doc-contact-info,
.doc-loc-list .doc-locations {
  padding: 0 15px 0 50px;
}
.doc-loc-list .doc-locations {
  margin-bottom: 50px;
}
.doc-loc-list .appointment {
  padding: 0 15px;
  margin-top: auto;
}
@media (max-width: 1024px) {
  .doc-loc-list .doc-info > .inner {
    min-height: auto;
  }
  .doc-loc-list .thirty {
    padding-bottom: 60px;
  }
  .doc-loc-list .doc-info {
    padding-right: 0px;
  }
}
/**
 * 
 * NAME:          Template Builder Stylesheets
 * -----------------------------------------------------------------------------
*/
.accordions .mobile-tab-title {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 500;
  color: #676d72;
  background-color: #f4f6fa;
  padding: 20px 20px 15px;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  position: relative;
  color: #0971ce;
  border: 1px solid #d4d6d9;
}
.accordions .mobile-tab-title:hover,
.accordions .mobile-tab-title.active {
  color: #0971ce;
}
.accordions .mobile-tab-title:hover:before,
.accordions .mobile-tab-title.active:before {
  color: #0971ce;
}
.accordions .tab-body {
  padding: 20px 50px 30px;
  background-color: #ffffff;
  border: 1px solid #d4d6d9;
}
.banner-with-background-image {
  padding-top: 240px;
  padding-bottom: 80px;
}
.banner-with-background-image .overlay {
  -webkit-box-shadow: 0px 10px 13px -7px rgba(0, 0, 0, 0.06), 1px 1px 20px 20px rgba(0, 0, 0, 0);
  box-shadow: 0px 10px 13px -7px rgba(0, 0, 0, 0.06), 1px 1px 20px 20px rgba(0, 0, 0, 0);
}
.home .banner-with-background-image {
  padding-top: 150px;
  padding-bottom: 115px;
}
.banner-with-background-image .title {
  margin-bottom: 10px;
}
.banner-with-background-image h2 {
  font-size: 40px;
  font-size: 4rem;
  line-height: 1.125;
  font-weight: 600;
  margin-bottom: 15px;
}
.banner-with-background-image .content {
  color: #1a3b68;
  font-weight: 500;
  background-color: #ffffffbd;
  padding: 40px;
}
.banner-with-background-image .content p {
  line-height: 1.58;
}
.banner-with-background-image .content p:last-of-type {
  margin-bottom: 0;
}
.banner-with-background-image .content .btn,
.banner-with-background-image .content .gform_wrapper .gform_footer .button {
  margin-top: 35px;
}
.banner-with-background-image .inner.text-center {
  margin: auto;
}
.banner-with-background-image .left-col {
  max-width: 550px;
}
@media (max-width: 1200px) {
  .banner-with-background-image .banner-with-background-image .bg-lc {
    background-position: center center !important;
  }
}
@media (max-width: 1024px) {
  .banner-with-background-image,
  .home .banner-with-background-image {
    padding-top: 205px;
    padding-bottom: 110px;
  }
}
@media (max-width: 500px) {
  .banner-with-background-image,
  .home .banner-with-background-image {
    padding-top: 165px;
    padding-bottom: 75px;
  }
  .banner-with-background-image .banner-container,
  .home .banner-with-background-image .banner-container {
    padding-left: 0px;
    padding-right: 0px;
  }
  .banner-with-background-image .title {
    margin-bottom: 10px;
  }
}
.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 .banner-container {
  padding-top: 75px;
  padding-bottom: 75px;
  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;
}
.cta-with-background-image a.btn,
.cta-with-background-image a.gform_wrapper .gform_footer .button {
  margin-bottom: -80px;
}
.cta-with-background-image .purple-top-border {
  border-top: 24px solid #ab56aa;
}
.cta-with-background-image a.banner-container:hover {
  color: #343434;
  background: #ffffff;
  -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);
}
.cta-with-background-image a.banner-container:hover .btn-transparent-reverse-main-color {
  background-color: #343434;
  color: #ffffff;
  border-color: #343434;
}
.cta-with-background-image a.banner-container:hover .title,
.cta-with-background-image a.banner-container:hover .content {
  color: #343434 !important;
}
.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: 1024px) {
  .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;
  }
}
@media (max-width: 500px) {
  .cta-with-background-image .banner-container {
    padding-top: 45px;
    padding-bottom: 50px;
  }
}
.cta-with-image-and-gradient {
  padding-top: 75px;
  padding-bottom: 75px;
}
.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: 55px;
  padding-bottom: 55px;
}
.cta-with-panels .panel {
  padding: 50px;
  -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 .purple-top-border {
  border-top: 28px solid #ab56aa;
}
.cta-with-panels p a {
  margin-bottom: 0px;
}
@media (max-width: 1024px) {
  .cta-with-panels .panel {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cta-with-panels .panel {
    padding: 50px;
  }
}
@media (max-width: 500px) {
  .cta-with-panels .panel {
    padding: 40px 20px 50px;
  }
}
.doctors {
  padding-top: 60px;
  padding-bottom: 70px;
}
.doctors .doctors-inner {
  padding: 50px 90px;
}
.doctors .top-inner .content {
  max-width: 940px;
  margin: 0 auto 50px;
}
.doctors .top-inner .content p:last-of-type {
  margin-bottom: 0;
}
.doctors .doctors-wrap {
  margin-left: -50px;
  margin-right: -50px;
}
.doctors .doctor {
  padding-left: 50px;
  padding-right: 50px;
}
.doctors .doctor-inner {
  flex-flow: column;
}
.doctors .rating {
  margin-top: 10px;
}
.doctors .top {
  padding: 60px 30px 30px;
  background-color: #ffffff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  flex: 1 1 auto;
}
.doctors .img-wrap {
  margin-bottom: 30px;
}
.doctors .name,
.doctors .credentials {
  line-height: 1.2;
}
.doctors .link-wrap {
  padding: 30px 30px 60px;
  background-color: #0971ce;
  position: relative;
}
.doctors .link-wrap:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.15);
}
@media (max-width: 1400px) {
  .doctors .doctors {
    margin-left: -5px;
    margin-right: -5px;
  }
  .doctors .doctor {
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .doctors {
    padding-top: 30px;
    padding-bottom: 25px;
  }
}
@media (max-width: 500px) {
  .doctors .doctors-inner {
    padding: 60px 30px 40px;
  }
}
.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: #343434;
  color: #ffffff;
  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: #ffffff;
  color: #c76400;
}
.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: #ffffff;
  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;
  }
}
.tmp-form {
  padding-top: 105px;
  padding-bottom: 150px;
}
@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 .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.text-box .top-inner,
.gallery-masonry-with-filters .gallery-masonry-grid .grid-item.text-box .top-inner {
  padding: 55px;
}
.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: #c76400;
}
.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: #343434;
  border: 1px solid #343434;
  -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: #ffffff;
  background-color: #343434;
}
.gallery-masonry-with-filters .gallery-masonry-filters a.selected {
  color: #ffffff;
  background-color: #343434;
}
@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%;
  }
}
.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: #343434;
}
.job-posting-panel .job-posting .content .read-more:hover {
  color: #c76400;
}
.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 .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;
  }
}
.press-ganey {
  border-top: 28px solid #ab56aa;
  padding: 70px 0 80px;
  color: #ffffff;
}
.press-ganey img {
  display: block;
  margin: auto;
  max-width: 180px;
}
.press-ganey .rating {
  text-align: center;
}
.press-ganey .action {
  margin-top: 40px;
}
.press-ganey .rating .count {
  top: 0;
  margin-left: 0;
}
.press-ganey .rating .stars.no-fill {
  display: block;
  margin: 0 auto 5px;
}
.press-ganey .rating .stars.fill {
  left: 50%;
  margin-left: -48.5px;
}
.press-ganey .text-col {
  padding-left: 30px;
}
.press-ganey .rating .stars {
  background-image: url('../images/stars-white.png');
}
.press-ganey .rating .stars.no-fill {
  background-image: url('../images/no-stars-white.png');
}
@media (max-width: 643px) {
  .press-ganey .text-col {
    padding-left: 0;
    padding-top: 25px;
  }
}
.home .count-box {
  display: block;
}
.rating {
  position: relative;
}
.rating .stars.no-fill {
  background-image: url('../images/REVIEW_STAR_nofill2.png');
  display: inline-block;
  width: 98px;
  height: 17px;
  position: relative;
}
.rating .stars {
  background-image: url('../images/REVIEW_STAR_fill2.png');
  display: inline-block;
  height: 17px;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}
.rating .count {
  margin-left: 10px;
  position: relative;
}
.rating .total-reviews {
  display: inline-block;
}
.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: #343434;
  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: #ffffff;
  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: #ffffff;
}
.service-pull-panel .pulls .service-pull-inner:hover .name {
  color: #343434;
}
.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;
  margin-bottom: 0;
  background-color: #676d72;
  width: 100%;
  border-right: 1px solid #ffffff;
}
.tabs .tab-bar li:last-of-type {
  border-right: none;
}
.tabs .tab-bar li:hover {
  background-color: #343434;
}
.tabs .tab-bar li:hover a {
  color: #676d72;
}
.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: #ffffff;
  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: #343434;
  color: #676d72;
}
.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: #343434 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 #676d72;
  margin-bottom: 30px;
  padding-bottom: 15px;
}
.tabs .tab-bodies h2 img {
  margin-right: 25px;
}
.testimonials {
  padding-bottom: 70px;
}
.testimonials .purple-top-border {
  border-top: 24px solid #ab56aa;
}
.testimonials .testimonials-outer {
  position: relative;
  padding: 100px 80px 80px;
}
.testimonials .testimonial {
  max-width: 850px;
  margin: auto;
}
.testimonials .testimonial p {
  font-weight: 500;
  padding-left: 20px;
  padding-right: 20px;
}
.testimonials .testimonial p:last-of-type {
  margin-bottom: 0;
}
.testimonials h3 {
  margin-bottom: 0;
  padding-right: 10px;
  padding-left: 10px;
}
.testimonials .slider-arrows {
  margin-left: -10px;
  margin-right: -10px;
}
.testimonials .arrow-wrap {
  padding-left: 10px;
  padding-right: 10px;
}
.testimonials .slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 2px solid #ffffff;
  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;
  cursor: pointer;
  z-index: 2;
}
.testimonials .slider-arrow:after {
  font-family: 'Font Awesome 5 Pro';
  color: #ffffff;
  font-size: 34px;
  font-size: 3.4rem;
  font-weight: 700;
  cursor: pointer;
}
.testimonials .slider-arrow.prev-arrow:after {
  content: '\f104';
}
.testimonials .slider-arrow.next-arrow:after {
  content: '\f105';
}
@media (max-width: 1200px) {
  .testimonials .slider-arrows {
    margin: 0 auto;
  }
  .testimonials .testimonials-outer .twenty {
    flex-direction: column;
    align-content: center;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (max-width: 1024px) {
  .testimonials .testimonials-outer .twenty {
    flex-direction: column;
    align-content: center;
  }
  .testimonials .testimonials-outer .twenty h3 {
    padding-bottom: 20px;
    text-align: center;
  }
  .testimonials .testimonials-outer .eighty {
    padding-top: 20px;
  }
}
@media (max-width: 500px) {
  .testimonials .testimonials-outer {
    padding: 70px 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;
  }
}
.two-column-double-image-text {
  padding-top: 80px;
  padding-bottom: 70px;
}
.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;
}
.two-column-double-image-text.image-right .image-col {
  order: 3;
  text-align: right;
}
.two-column-double-image-text.image-right .image-col .image-inner {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 40px;
  padding-left: 40px;
}
.two-column-double-image-text.image-right .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.image-right .middle-col {
  order: 2;
}
.two-column-double-image-text.image-right .text-col {
  order: 1;
}
@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 .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: #ffffff;
  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 .middle-col {
  width: 10%;
}
.two-column-image-text .text-col .content p:last-of-type {
  margin-bottom: 0;
}
.two-column-image-text .text-col .btn,
.two-column-image-text .text-col .gform_wrapper .gform_footer .button {
  margin-top: 10px;
}
.two-column-image-text .text-col.full-padding {
  padding: 140px 7% 100px;
}
.two-column-image-text .purple-bar:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 28px;
  z-index: 2;
  background-color: #ab56aa;
}
.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.bg-img .text-col.full-padding {
  padding: 0;
}
.two-column-image-text.bg-img .text-col .inner {
  padding: 90px 50px 60px;
  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;
}
@media (max-width: 1200px) {
  .two-column-image-text .text-col.full-padding {
    padding: 90px 7% 30px;
  }
  .two-column-image-text .image-col .image-inner {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: left;
  }
}
@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%;
  }
}
@media (max-width: 767px) {
  .two-column-image-text {
    padding-top: 30px;
  }
  .two-column-image-text .text-col {
    order: 1;
  }
  .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;
  }
  .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: 55px;
  padding-bottom: 25px;
}
.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: 20px;
  }
  .two-column-service-list .service-list .icon-col {
    min-width: 90px;
    max-width: 90px;
    width: 100%;
    padding-right: 15px;
  }
}
.two-column-text-text {
  padding-top: 105px;
  padding-bottom: 50px;
}
.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-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: 35px;
  padding-bottom: 55px;
}
.two-column-cta .inner {
  margin-left: -20px;
  margin-right: -20px;
}
.two-column-cta .panel-wrap {
  padding: 0 20px;
}
.two-column-cta .panel {
  padding: 55px 20px 60px;
  -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:hover {
  -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;
}
.two-column-cta .content {
  padding-bottom: 30px;
}
@media (max-width: 500px) {
  .two-column-cta .panel {
    padding: 40px 20px 50px;
  }
}
.two-column-video-text {
  padding-top: 80px;
  padding-bottom: 70px;
}
.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: #000000;
  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);
  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: 1;
  }
  .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: 3;
  }
  .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;
  }
}
.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;
}
.post-type-slider .slide-link {
  display: inline-block;
  margin-top: 25px;
}
.post-type-slider .slick-slide:before {
  content: '';
  width: 2px;
  height: 100%;
  position: absolute;
  left: 0;
  background-color: #ffffff;
}
.post-type-slider .slick-slide.slick-current:before {
  content: none;
}
.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 {
  display: none;
}
.post-type-slider .slider-wrap .pts-next-arrow {
  position: absolute;
  right: 40px;
  top: 50%;
  width: 116px;
  height: 116px;
}
.post-type-slider .slider-wrap .pts-next-arrow:hover:after {
  color: #c76400;
  border-color: #c76400;
}
.post-type-slider .slider-wrap .pts-next-arrow:after {
  content: '\f30b';
  font-family: 'Font Awesome 5 Pro';
  color: #ffffff;
  position: absolute;
  right: 0;
  width: 116px;
  height: 116px;
  font-size: 20px;
  font-size: 2rem;
  border-radius: 999px;
  border: 2px solid #ffffff;
  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;
}
@media (max-width: 1024px) {
  .post-type-slider .slider-wrap .pts-next-arrow {
    width: 100px;
    height: 100px;
  }
  .post-type-slider .slider-wrap .pts-next-arrow:after {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 767px) {
  .post-type-slider .slider-wrap {
    padding: 0;
  }
  .post-type-slider .slider-wrap .pts-next-arrow {
    width: 80px;
    height: 80px;
    right: 0;
  }
  .post-type-slider .slider-wrap .pts-next-arrow:after {
    width: 80px;
    height: 80px;
  }
}
.icon-repeater .icon-list {
  margin-left: -45px;
  margin-right: -45px;
}
.icon-repeater .icon-inner {
  margin: 50px 0;
  padding-left: 45px;
  padding-right: 45px;
}
.icon-repeater .content {
  font-size: 14px;
  font-size: 1.4rem;
  padding-left: 20px;
}
@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;
  }
}
.box-links .links-outer {
  margin-left: -10px;
  margin-right: -10px;
}
.box-links .link-outer:first-of-type .link-inner .link-wrap a {
  background-color: #ffffff;
  color: #003562;
}
.box-links .link-outer {
  padding-left: 10px;
  padding-right: 10px;
}
.box-links .link-inner {
  padding: 155px 30px 80px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.box-links .img-wrap {
  top: 50px;
  left: 30px;
}
.box-links .img-wrap img {
  max-height: 65px;
}
.box-links .content-wrap {
  margin-bottom: 30px;
}
.box-links .link-title {
  font-size: 31px;
  font-size: 3.1rem;
  margin-bottom: 15px;
}
.box-links .link-content {
  font-weight: 500;
}
.box-links .link-wrap {
  margin-top: auto;
}
@media (max-width: 1430px) {
  .box-links .links-outer {
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media (max-width: 1024px) {
  .box-links .link-outer {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.four-col-boxes .box-inner {
  padding: 155px 30px 80px;
  border-bottom: 28px solid #fdfdfd26;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.four-col-boxes .img-wrap {
  top: 50px;
  left: 30px;
}
.four-col-boxes .img-wrap img {
  max-height: 65px;
}
.four-col-boxes .content-wrap {
  margin-bottom: 30px;
}
.four-col-boxes .box-title {
  font-size: 31px;
  font-size: 3.1rem;
  margin-bottom: 15px;
}
.four-col-boxes .box-content {
  font-weight: 500;
}
.four-col-boxes .box-wrap {
  margin-top: auto;
}
@media (max-width: 1430px) {
  .four-col-boxes .boxes-outer {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.sbs_panels .sbs-panel-inner {
  padding: 80px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.sbs_panels .content-area {
  font-weight: 500;
  color: #343434;
}
.sbs_panels .content-wrap {
  -webkit-flex: initial;
  -ms-flex: initial;
  flex: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1430px) {
  .sbs_panels .sbs-panels-outer {
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media (max-width: 500px) {
  .sbs_panels .sbs-panels-outer .sbs-panel-inner {
    padding: 20px;
  }
}
/**** INSURANCE AND PAYMENT ****/
.page-id-800 .sbs_panels .sbs-panel-inner {
  padding: 28px 45px;
  margin-right: 20px;
}
/* Paying for Your Care page */
.page-id-800 .banner-with-background-image {
  padding-top: 140px;
}
.page-id-800 .banner-with-background-image h1.title {
  color: #ffffff !important;
  padding: 0px 40px 0px 40px;
}
/* First Visit page */
.page-id-798 .banner-with-background-image {
  padding-top: 140px;
}
.page-id-798 .banner-with-background-image h1.title {
  color: #ffffff !important;
  padding: 0px 40px 0px 40px;
}
/* Schedule Your Consultation page */
.page-id-1050 .banner-with-background-image {
  padding-top: 140px;
}
.page-id-1050 .banner-with-background-image h1.title {
  color: #ffffff !important;
  padding: 0px 40px 0px 40px;
}
/* Refer a Patient page */
.page-id-1110 .banner-with-background-image {
  padding-top: 140px;
}
.page-id-1110 .banner-with-background-image h1.title {
  color: #ffffff !important;
  padding: 0px 40px 0px 40px;
}
/* Questions & Comments page */
.page-id-1165 .banner-with-background-image {
  padding-top: 140px;
}
.page-id-1165 .banner-with-background-image h1.title {
  color: #ffffff !important;
  padding: 0px 40px 0px 40px;
}
/* About Our Patient Ratings page */
.page-id-564 .banner-with-background-image {
  padding-top: 140px;
}
.page-id-564 .banner-with-background-image h1.title {
  color: #ffffff !important;
  padding: 0px 40px 0px 40px;
}
/* Sleep Apnea */
@media (max-width: 767px) {
  .page-id-454 .cta-with-panels .inner .panel:nth-child(2),
  .page-id-775 .cta-with-panels .inner .panel:nth-child(2) {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: -80px;
  }
  .page-id-454 .cta-with-panels .inner .panel:nth-child(3),
  .page-id-775 .cta-with-panels .inner .panel:nth-child(3) {
    padding-top: 0px;
    margin-top: -30px;
  }
  .page-id-456 .cta-with-panels .inner .panel:nth-child(2) {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: -80px;
  }
  .page-id-456 .cta-with-panels .inner .panel:nth-child(3) {
    padding-top: 0px;
    margin-top: -30px;
  }
}
/* Search Results */
.search .site-main {
  padding-top: 100px;
  padding-bottom: 100px;
}
/* 404 page */
.error404 .site-main {
  padding-top: 100px;
  padding-bottom: 100px;
}
/************************************************************
 *                      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 .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;
}
.blog-container .blog-post-single .post-thumbnail {
  padding-right: 40px;
  min-width: 420px;
  max-width: 420px;
}
.blog-container .blog-post-single .entry-date {
  padding-bottom: 5px;
}
.blog-container .blog-post-single .entry-title {
  font-size: 36px;
  font-size: 3.6rem;
}
.blog-container .blog-post-single .entry-title a {
  color: #343434;
}
.blog-container .blog-post-single .entry-title a:hover {
  color: #c76400;
}
.blog-container .blog-post-single .more-link {
  margin-bottom: 0;
}
@media (max-width: 1400px) {
  .blog-container .blog-post-single .post-thumbnail {
    min-width: 360px;
    max-width: 360px;
  }
}
@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 {
    min-width: 420px;
    max-width: 420px;
    padding-bottom: 20px;
    padding-right: 0;
  }
}
@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: 24px;
  font-size: 2.4rem;
  padding-bottom: 10px;
}
.blog-single-container .detail-section .title {
  margin-bottom: 10px;
}
.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;
}
.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;
}
@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: 420px;
  min-width: 420px;
}
.sidebar .top-section {
  background-color: #F4F4F4;
  padding: 40px;
  border: 1px solid #CCC;
}
.sidebar #title-sidebar {
  padding-bottom: 20px;
}
.sidebar #search-sidebar {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #CCC;
}
.sidebar #search-sidebar .search-wrapper .search-input {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.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: #343434;
  padding: 5px 0;
}
.sidebar .link:hover {
  color: #c76400;
}
.sidebar .topic-btn {
  padding: 5px 2px 5px 0;
}
.sidebar .topic-btn a {
  font-size: 16px;
  font-size: 1.6rem;
  color: #c76400;
  border: 1px solid #c76400;
  -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: #ffffff;
  background-color: #c76400;
}
@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;
}
.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;
}
.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: #c76400;
}
@media (max-width: 1024px) {
  .featured-categories {
    margin-left: -10px;
    margin-right: -10px;
  }
  .blog .featured-categories {
    padding-bottom: 15px;
  }
  .featured-categories .featured-category {
    padding: 10px;
  }
}
/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sources%22%3A%5B%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fvendors%5C%2Fanimate.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fvendors%5C%2Fmagnific-popup.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fvendors%5C%2Fslick.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Ffonts.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fstyleguide.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fmixins.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fframework.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fheader.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Ffooter.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fglobal.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Flocations.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fdoctors.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Faccordions.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fbanner_with_background_image.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fbuttons_panel.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fcta_with_background_image.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fcta_with_image_and_gradient.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fcta_with_panels.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fdoctors.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Femployee_bios.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fform.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fgallery_masonry.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fgallery_masonry_with_filters.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fgoogle_map_full_width.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fjob_posting_panel.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Flogo_slider.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fpress_ganey.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fservices_pull_panel.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fspacer.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ftabs.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ftestimonials.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ftext_panel.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ftwo_column_double_image_text.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ftwo_column_floating_text.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ftwo_column_image_text.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ftwo_column_service_list.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ftwo_column_text_text.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ftwo_column_with_form.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ftwo_column_cta.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ftwo_column_video_text.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fpost_type_slider.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ficon_repeater.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fbox_links.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Ffour_col_box.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fproven-framework%5C%2Fside_by_side_panels.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fpages.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%5C%2Fwp-content%5C%2Fthemes%5C%2Fproven-framework%5C%2Fless%5C%2Fadmin-settings.less%22%2C%22home%5C%2Ffpcstaging%5C%2Fpublic_html%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%3BAC1%2BBJ%3BEAAQ%2CcAAA%3B%3BAACR%3BEAAQ%2CcAAA%3B%3BAACR%3BEAAc%2CcAAA%3B%3BAACd%3BEAAa%2CcAAA%3B%3BAACb%3BEAAU%2CcAAA%3B%3BAACV%3BEAAW%2CcAAA%3B%3BAACX%3BEAAY%2CyBAAA%3B%3B%3B%3B%3BAAYZ%3BEAAa%2CaALD%2CuBAKC%3B%3BAACb%3BEAAQ%2CaALD%2CaAKC%3B%3BAACR%3BEAAW%2CaALD%2CqBAKC%3B%3B%3B%3B%3B%3B%3BAAyBX%3BEAAwB%2CgBAAA%3B%3BAAExB%3BEAAwB%2CgBAAA%3B%3BAAExB%3BEAAwB%2CgBAAA%3B%3B%3B%3BAAMxB%3BAAAM%3BAAAQ%3BAAAO%3BAAAQ%3BEAAW%2CcAAA%3BEAAoB%2CaAxClD%2CqBAwCkD%3BEAAiC%3BEAAqC%2CgBAAA%3BECzF9H%2CeAAA%3BEACA%2CiBAAA%3BEDwF2K%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%3BEAAa%2CgBAAA%3B%3BAACpE%3BAAAI%3BAAAI%3BAAAI%3BAAAI%3BAAAI%3BEAAK%2CkBAAA%3B%3B%3BAAGzB%3BAAAI%3BEChGA%2CeAAA%3BEACA%2CeAAA%3BED%2BFsB%3B%3BAAC1B%3BAAAI%3BECjGA%2CeAAA%3BEACA%2CiBAAA%3BEDgGsB%3B%3BAAC1B%3BAAAI%3BEClGA%2CeAAA%3BEACA%2CiBAAA%3BEDiGsB%3B%3BAAC1B%3BAAAI%3BECnGA%2CeAAA%3BEACA%2CiBAAA%3BEDkGsB%3B%3BAAC1B%3BAAAI%3BECpGA%2CiBAAA%3BEACA%2CkBAAA%3BEDmGwB%3B%3BAAC5B%3BAAAI%3BECrGA%2CeAAA%3BEACA%2CiBAAA%3BEDoGsB%3B%3BAAW1B%2CQAT2B%3BEACvB%3BEAAI%3BICxGJ%2CeAAA%3BIACA%2CeAAA%3BIDuG0B%3B%3BEAC1B%3BEAAI%3BICzGJ%2CeAAA%3BIACA%2CiBAAA%3BIDwG0B%3B%3BEAC1B%3BEAAI%3BIC1GJ%2CeAAA%3BIACA%2CiBAAA%3BIDyG0B%3B%3BEAC1B%3BEAAI%3BIC3GJ%2CeAAA%3BIACA%2CeAAA%3BID0G0B%3B%3BEAC1B%3BEAAI%3BIC5GJ%2CeAAA%3BIACA%2CiBAAA%3BID2G0B%3B%3BEAC1B%3BEAAI%3BIC7GJ%2CeAAA%3BIACA%2CiBAAA%3BID4G0B%3B%3B%3BAAa9B%2CQAV8B%3BEAC1B%3BEAAI%3BICjHJ%2CeAAA%3BIACA%2CeAAA%3BIDgH0B%3B%3BEAC1B%3BEAAI%3BIClHJ%2CeAAA%3BIACA%2CiBAAA%3BIDiH0B%3B%3BEAC1B%3BEAAI%3BICnHJ%2CeAAA%3BIACA%2CeAAA%3BIDkH0B%3B%3BEAC1B%3BEAAI%3BICpHJ%2CeAAA%3BIACA%2CiBAAA%3BIDmH0B%3B%3BEAC1B%3BEAAI%3BICrHJ%2CeAAA%3BIACA%2CiBAAA%3BIDoH0B%3B%3BEAC1B%3BEAAI%3BICtHJ%2CeAAA%3BIACA%2CiBAAA%3BIDqH0B%3B%3BEAC1B%3BICvHA%2CeAAA%3BIACA%2CiBAAA%3BIDsHoB%3B%3B%3BAAOxB%2CKAAK%3BAACL%2CKAAK%3BAACL%2CKAAK%3BAACL%2CKAAK%3BAACL%2CKAAK%3BAACL%3BAACA%3BEACI%3BEACA%3BEACA%3BEClIA%2C0BAAA%3BEACA%2CuBAAA%3BEACA%2CkBAAA%3BEDkIA%2CWAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CyBAAA%3BEC%5C%2FIA%2CeAAA%3BEACA%2CiBAAA%3BEDgJA%2CyBAAA%3B%3B%3BAAIJ%3BEACI%2CsBAAsB%2C6BAAtB%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%3BECnLpD%2CeAAA%3BEACA%2CiBAAA%3B%3BADmLJ%3BEAAoB%2CcAAA%3BEAA0B%2CgBAAA%3BECpL1C%2CeAAA%3BEACA%2CiBAAA%3B%3BADoLJ%3BEAAqB%2CcAAA%3BEAA0B%2CgBAAA%3BECrL3C%2CeAAA%3BEACA%2CiBAAA%3B%3BADqLJ%3BEAAyB%2CcAAA%3BEAA0B%2CgBAAA%3BECtL%5C%2FC%2CeAAA%3BEACA%2CiBAAA%3B%3BADuLJ%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%3BAAO3C%3BEACI%2CaApKG%2CaAoKH%3BECpNA%2CeAAA%3BEACA%2CeAAA%3BEDqNA%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%3BEACV%3B%3BAAGJ%2CaAAc%3BEC3PV%2CeAAA%3BEACA%2CiBAAA%3B%3BAD8PJ%2CaAAc%2CEAAC%2CMACX%2CEAAC%3BEACG%2CQAAQ%2CeAAR%3B%3BAAGR%2CaACI%3BECtHA%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAgFA%2C%2BBAAA%3BEACA%2C2BAAA%3BEACA%2CuBAAA%3BEAgBA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3BEDmBI%3B%3BAAEA%2CaANJ%2CEAMK%3BEACG%3B%3BAAGJ%2CaAVJ%2CEAUK%3BEACG%2CSAAS%2CEAAT%3BEACA%3BEClOR%2CWAAA%3BEACA%2CYAAA%3BEDmOQ%3BEACA%3B%3BAAhBZ%2CaAoBI%2CeAAc%3BEACV%3B%3BAArBR%2CaAwBI%2CgBAAe%3BEACX%3B%3BAAzBR%2CaA4BI%2CYAAW%3BEACP%3B%3B%3B%3B%3BAAOR%3BAAAM%2CKAAK%3BAAqdX%2CcAmPI%2CcAAc%3BEAvsBd%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEC%5C%2FSA%2C0BAAA%3BEACA%2CuBAAA%3BEACA%2CkBAAA%3BED%2BSA%2CyBAAA%3BEACA%2CaAtQM%2CqBAsQN%3BEACA%3BEACA%2CcAAA%3BECzTA%2CeAAA%3BEACA%2CiBAAA%3BED0TA%2CkBAAA%3BECjQA%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECkIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3BEF8H9D%2CgBAAA%3BECxMA%2CyDAAA%3BEACA%2CsDAAA%3BEACA%2CiDAAA%3B%3BADyMA%2CIAAC%3BAAAD%2CKAxBO%2CeAwBN%3BAA6bL%2CcAmPI%2CcAAc%2CQAhrBb%3BEACG%2CyBAAA%3B%3BAAGJ%2CIAAC%3BAAAD%2CKA5BO%2CeA4BN%3BAAybL%2CcAmPI%2CcAAc%2CQA5qBb%3BEACG%2CyBAAA%3B%3BAAGJ%2CIAAC%3BAAAD%2CKAhCO%2CeAgCN%3BAAqbL%2CcAmPI%2CcAAc%2CQAxqBb%3BEACG%2CyBAAA%3BEACA%2CcAAA%3B%3BAAGJ%2CIAAC%3BAAAD%2CKArCO%2CeAqCN%3BAAgbL%2CcAmPI%2CcAAc%2CQAnqBb%3BEACG%2C4BAAA%3BEC9UJ%2CeAAA%3BEACA%2CiBAAA%3BED%2BUI%3B%3BAAEA%2CIALH%2CYAKI%3BAAAD%2CKA1CG%2CeAqCN%2CYAKI%3BAA2aT%2CcAmPI%2CcAAc%2CQAnqBb%2CYAKI%3BEACG%2CSAAS%2COAAT%3BEACA%2CaAvSE%2CoBAuSF%3BECpVR%2CeAAA%3BEACA%2CiBAAA%3BEDqVQ%3BEACA%3BEACA%3BECrRR%2CmBDsRmB%2CgBCtRnB%3BEACA%2CgBDqRmB%2CgBCrRnB%3BEACA%2CcDoRmB%2CgBCpRnB%3BEACA%2CeDmRmB%2CgBCnRnB%3BEACA%2CWDkRmB%2CgBClRnB%3B%3BADwRJ%2CCAAC%2COAAO%3BAAAQ%2CGAAG%2COAAO%3BAAAQ%2CIAAI%2COAAO%3BEACzC%2CSAAS%2COAAT%3BEACA%2CcAAA%3BECjWA%2CeAAA%3BEACA%2CiBAAA%3BEDkWA%2CaAtTU%2CoBAsTV%3BEACA%2CgBAAA%3BEACA%3BEC3SA%2CwCAAA%3BEACA%2CqCAAA%3BEACA%2CmCAAA%3BEACA%2CgCAAA%3B%3BAD6SA%2CIADA%2COAAO%2CMACN%3BEACG%3BECjTJ%2CwCAAA%3BEACA%2CqCAAA%3BEACA%2CmCAAA%3BEACA%2CgCAAA%3B%3BADmTJ%2CIAAI%3BAACJ%2CKAAK%2CeAAe%3BAA4YpB%2CcAmPI%2CcAAc%2CQAhoBd%3BEAEA%3BEACA%2CcAAA%3B%3BAAGJ%2CIAAI%2CMACJ%2CKAAI%3BAAsYJ%2CcAmPI%2CcAAc%2CQA1nBd%2CMAuYJ%2CeAmPI%2CcAAc%2CQAznBd%3BEACA%3B%3BAAGJ%2CeAAe%3BAACf%2CeAAe%3BEACX%2CyBAAA%3BEACA%2CqBAAA%3BEACA%2CcAAA%3B%3BAAWJ%2CQAR2B%3BEACvB%3BEACA%2CKAAK%3BEAyXT%2CcAmPI%2CcAAc%3BICh%5C%2FBd%2CeAAA%3BIACA%2CiBAAA%3BIDqYI%3B%3B%3BAAIR%3BEACI%3BEACA%2CgBAAA%3B%3BAAFJ%2CWAII%3BEC9YA%2CeAAA%3BEACA%2CiBAAA%3BED%2BYI%3BEACA%3BECvVJ%2C6CAAA%3BEACA%2C0CAAA%3BEACA%2CwCAAA%3BEACA%2CqCAAA%3B%3BADwVA%2CWAAC%2CMACG%3BEACI%3B%3BAAKZ%3BEACI%2CaA7WG%2CaA6WH%3BEACA%3BEACA%2CgBAAA%3BEACA%2CcAAA%3BEACA%3BEACA%3B%3BAANJ%2CSAQI%3BEACI%3B%3BAAEA%2CSAHJ%2CKAGK%3BEACG%2CSAAS%2CEAAT%3BEACA%3BEACA%3BEACA%2CyBAAA%3BEACA%3BEACA%3BEACA%2CMAAM%2CiBAAN%3BEC3WR%2CmBD4WmB%2CgBC5WnB%3BEACA%2CgBD2WmB%2CgBC3WnB%3BEACA%2CcD0WmB%2CgBC1WnB%3BEACA%2CeDyWmB%2CgBCzWnB%3BEACA%2CWDwWmB%2CgBCxWnB%3BEAbA%2CuCAAA%3BEACA%2CoCAAA%3BEACA%2CkCAAA%3BEACA%2C%2BBAAA%3BEAxDA%2C6BAAA%3BEACA%2C0BAAA%3BEACA%2CqBAAA%3BED2aQ%3BEACA%3B%3BAAIR%2CSAAC%2CUACG%2CKAAI%3BEACA%2CSAAS%2CEAAT%3BEACA%3BEACA%3BEACA%2CyBAAA%3BEACA%3BEACA%3BEACA%2COAAO%2CiBAAP%3BEC5XR%2CmBD6XmB%2CgBC7XnB%3BEACA%2CgBD4XmB%2CgBC5XnB%3BEACA%2CcD2XmB%2CgBC3XnB%3BEACA%2CeD0XmB%2CgBC1XnB%3BEACA%2CWDyXmB%2CgBCzXnB%3BEAbA%2CuCAAA%3BEACA%2CoCAAA%3BEACA%2CkCAAA%3BEACA%2C%2BBAAA%3BEAxDA%2C6BAAA%3BEACA%2C0BAAA%3BEACA%2CqBAAA%3BED4bQ%3BEACA%3B%3BAAMA%2CSAFP%2CSACG%2CKACK%3BAACD%2CSAHP%2CSACG%2CKAEK%3BEACG%3B%3BAAMhB%3BEACI%2C8BAAA%3B%3BAAGJ%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%3BEC%5C%2FWA%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAkGA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3BEApBA%2C%2BBAAA%3BEACA%2C2BAAA%3BEACA%2CuBAAA%3BED8RA%3BEC%5C%2FbA%2CmBDgcW%2CgBChcX%3BEACA%2CgBD%2BbW%2CgBC%5C%2FbX%3BEACA%2CcD8bW%2CgBC9bX%3BEACA%2CeD6bW%2CgBC7bX%3BEACA%2CWD4bW%2CgBC5bX%3BED6bA%3BECpgBA%2CeAAA%3BEACA%2CeAAA%3B%3BADsgBA%2CYAAC%3BEACG%2CcAAA%3BEACA%3BEACA%2CaA7dM%2CoBA6dN%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%3BIChiBJ%2CeAAA%3BIACA%2CiBAAA%3B%3B%3BADwiBJ%2CQAL%2BB%3BEAK%5C%2FB%3BIAJQ%3BIACA%3BICtiBJ%2CeAAA%3BIACA%2CiBAAA%3B%3B%3BAD0iBJ%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%2CaAtiBM%2CoBAsiBN%3BEACA%2CcAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CgBAAA%3B%3BAAhBR%2CEAAE%2CUAmBI%2CKAAE%3BAAlBR%2CEAAE%2CUAkBI%2CKAAE%3BEACA%3B%3BAAIR%2CSAEI%3BAADJ%2CWACI%3BEACI%3BEACA%3B%3BAAJR%2CSAOI%3BAANJ%2CWAMI%3BECzdA%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEDwdI%3B%3BAATR%2CSAYI%3BAAXJ%2CWAWI%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BECnnBJ%2CeAAA%3BEACA%2CiBAAA%3BEDonBI%3BEACA%2CcAAA%3B%3BAAIR%2COAAQ%3BEACJ%3B%3BAAKJ%2CQAH%2BB%3BEAG%5C%2FB%2COANQ%3BIAIA%3B%3B%3B%3BAAOR%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CkBAAA%3B%3BAACA%2CgBAAG%2CKAAE%3BEACD%2CsCAAA%3BEACA%3BEACA%3BEACA%3B%3B%3BAAKR%3BEACI%2C8BAAA%3BEACA%3BEACA%3B%3BAAGJ%2CCAAC%3BEACG%3BEACA%3B%3BAAIJ%2CEAAE%3BEACE%3BEACA%3BEACA%3B%3B%3BAAIJ%3BEACI%3BEACA%3BEACA%3BEACA%3B%3B%3BAAKJ%3BEACI%2CmCAAA%3B%3B%3BAAKJ%2CWACI%3BEACI%3B%3BAAIR%2CQACI%3BEACI%3B%3B%3B%3B%3BAAYR%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%3BECntBrE%2CeAAA%3BEACA%2CiBAAA%3B%3B%3BADqtBJ%2CiBAAiB%2CIAAI%2CUAAa%2CQAAK%3BAACvC%2CcAAc%2CIAAI%2CUAAa%2CQAAK%3BAACpC%2CiBAAiB%2CQAAW%2CQAAK%3BAACjC%2CcAAc%2CQAAW%2CQAAK%3BEAAU%2CSAAS%2CEAAT%3BEAAa%3BEAAoB%3BEAAQ%3BEC1qB7E%2CWAAA%3BEACA%2CYAAA%3BEDyqBuG%2CyBAAA%3BEAAyB%3BEAAkB%3B%3BAAEtJ%2CcAAc%2CIAAI%2CUAAa%2CQAAK%3BAACpC%2CcAAc%2CQAAW%2CQAAK%3BECvtB1B%2C6BAAA%3BEACA%2C0BAAA%3BEACA%2CqBAAA%3B%3B%3BADwtBJ%2CiBAAiB%2CIAAI%2CUAAa%2CQAAK%3BAACvC%2CcAAc%2CIAAI%2CUAAa%2CQAAK%3BAACpC%2CiBAAiB%2CQAAW%2CQAAK%3BAACjC%2CcAAc%2CQAAW%2CQAAK%3BEAAS%2CSAAS%2COAAT%3BEAAkB%2CaArrB3C%2CoBAqrB2C%3BEAA2B%3BEAAoB%3BEAAU%3BECluB9G%2CeAAA%3BEACA%2CiBAAA%3BEDiuByI%3BEAAkB%2CcAAA%3BECxqB3J%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECkIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3B%3BAFqiBlE%2CiBAAiB%2CQAAW%2CQAAK%3BAACjC%2CcAAc%2CQAAW%2CQAAK%3BEAAU%3B%3B%3BAAExC%2CcAAc%2CIAAI%2CUAAa%2CQAAK%3BAACpC%2CcAAc%2CQAAW%2CQAAK%3BEAAS%2CSAAS%2CEAAT%3BEAAc%3BEAAU%3BECzrB3D%2CWAAA%3BEACA%2CYAAA%3BEDwrBqF%2CyBAAA%3BECnuBrF%2C6BAAA%3BEACA%2C0BAAA%3BEACA%2CqBAAA%3B%3B%3BADmuBJ%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%2CaAltBQ%2CuBAktBR%3BEC5vBA%2C0BAAA%3BEACA%2CuBAAA%3BEACA%2CkBAAA%3B%3BADsvBJ%2CcAOI%3BEACI%3B%3BAARR%2CcAWI%3BAAXJ%2CcAyGI%2CcAKI%3BAA9GR%2CcA0GI%2CeAII%3BAA9GR%2CcA2GI%2CaAGI%3BEC32BJ%2CeAAA%3BEACA%2CiBAAA%3BEDywBI%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%3BEACA%3B%3BAArCR%2CcAwCI%3BEACI%3B%3BAAzCR%2CcA6CI%3BAA7CJ%2CcA8CI%3BAA9CJ%2CcA%2BCI%3BEACI%3BEACA%3BEACA%3B%3BAAlDR%2CcAqDI%3BEACI%3B%3BAAtDR%2CcAyDI%3BEACI%3BEACA%3B%3BAA3DR%2CcA8DI%3BEACI%3B%3BAA%5C%2FDR%2CcAkEI%2CeACI%3BAAnER%2CcAkEI%2CeAEI%3BEACI%3B%3BAArEZ%2CcAyEI%2CaAAa%3BEACT%2CgBAAA%3B%3BAA1ER%2CcA6EI%2CGAAE%2CgBACE%3BEACI%3B%3BAA%5C%2FEZ%2CcAmFI%2CGAAE%2CaACE%3BEACI%3BEACA%3BEACA%3B%3BAAvFZ%2CcA2FI%3BAA3FJ%2CcA4FI%3BEACI%3BEACA%3B%3BAA9FR%2CcA2FI%2CgBAKI%3BAAhGR%2CcA4FI%2CgBAII%3BEACI%3B%3BAAjGZ%2CcAqGI%3BEACI%3B%3BAAtGR%2CcAyGI%3BAAzGJ%2CcA0GI%3BAA1GJ%2CcA2GI%3BEACI%3B%3BAA5GR%2CcAmHI%3BEACI%3BEACA%3B%3BAArHR%2CcAwHI%3BEACI%3BEACA%3BEACA%3B%3BAA3HR%2CcA8HI%3BEACI%3BEACA%3B%3BAAhIR%2CcAmII%2CkBAAkB%3BEACd%3BEACA%3BEACA%3B%3BAAtIR%2CcAyII%3BEACI%2CgCAAA%3BEACA%3B%3BAA3IR%2CcA8II%3BEACI%3B%3BAA%5C%2FIR%2CcAkJI%2CkBAAkB%2CkBAAkB%3BEC%5C%2F4BpC%2CeAAA%3BEACA%2CiBAAA%3B%3BAD4vBJ%2CcAsJI%3BEACI%3B%3BAAvJR%2CcA0JI%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CyBAAA%3BEC75BJ%2C0BAAA%3BEACA%2CuBAAA%3BEACA%2CkBAAA%3BED65BI%3BEACA%3BEACA%2CqBAAA%3BECt6BJ%2CeAAA%3BEACA%2CiBAAA%3BEDu6BI%3BEACA%2CcAAA%3BEACA%3BEACA%3B%3BAA9KR%2CcAiLI%2CIAAG%2CsBAAyB%2CMAAG%3BEAC3B%3B%3BAAlLR%2CcAqLI%3BEACI%3BEACA%3BEACA%2CcAAA%3BEACA%2CgBAAA%3B%3BAAzLR%2CcAqLI%2CgBAMI%3BEACI%3BEACA%3BEACA%3B%3BAAGJ%2CcAZJ%2CgBAYK%3BEACG%2CSAAS%2COAAT%3BEACA%2CaAn5BE%2CoBAm5BF%3BEACA%3BECj8BR%2CeAAA%3BEACA%2CiBAAA%3BEDk8BQ%2CgBAAA%3BEACA%3BEACA%3BEACA%3BECn4BR%2CmBDo4BmB%2CgBCp4BnB%3BEACA%2CgBDm4BmB%2CgBCn4BnB%3BEACA%2CcDk4BmB%2CgBCl4BnB%3BEACA%2CeDi4BmB%2CgBCj4BnB%3BEACA%2CWDg4BmB%2CgBCh4BnB%3BEDi4BQ%3B%3BAA3MZ%2CcAqLI%2CgBAyBI%3BEACI%3BEACA%2CcAAA%3BEACA%2CgBAAA%3B%3BAAjNZ%2CcAsNI%2CMAAK%3BAAtNT%2CcAuNI%2CMAAK%3BAAvNT%2CcAwNI%2CMAAK%3BAAxNT%2CcAyNI%2CMAAK%3BAAzNT%2CcA0NI%2CMAAK%3BAA1NT%2CcA2NI%3BAA3NJ%2CcA4NI%3BEAAW%3BECp9BX%2C0BAAA%3BEACA%2CuBAAA%3BEACA%2CkBAAA%3B%3BADsvBJ%2CcA8NI%3BEACI%3BEACA%3B%3BAAhOR%2CcAmOI%3BEACI%2CcAAA%3BEACA%3B%3BAArOR%2CcAwOI%3BAAxOJ%2CcAyOI%3BEACI%3BEACA%3B%3BAA3OR%2CcA8OI%3BEACI%3BEACA%3B%3BAAhPR%2CcAmPI%2CcAAc%3BEAEV%3BEACA%3BEACA%3B%3BAAQJ%2CcAAC%3BEACG%3BEACA%3B%3BAAFJ%2CcAAC%2C0BAIG%2CSAEI%3BEACI%2CcAAA%3B%3BAAPZ%2CcAAC%2C0BAIG%2CSAEI%2CcAEI%3BEACI%2CcAAA%3B%3BAAThB%2CcAAC%2C0BAIG%2CSASI%3BEACI%3BEACA%3B%3BAAfZ%2CcAAC%2C0BAmBG%2CSACI%3BEACI%3B%3BAArBZ%2CcAAC%2C0BAmBG%2CSAII%3BEACI%3B%3BAAxBZ%2CcAAC%2C0BAmBG%2CSAOI%3BEACI%3B%3BAA6DZ%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%3BEC9nCA%2CeAAA%3BEACA%2CeAAA%3BED%2BnCI%3BECj%5C%2FBJ%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAyBA%2CyBAAA%3BEACA%2CqBAAA%3BEACA%2CiBAAA%3BECnHS%3BEAAyB%3BEAAqB%3B%3BAFikC3D%2CGAAG%2CkBAGC%2CYAMI%3BEACI%3BEACA%2C8BAAA%3BEACA%2C6BAAA%3BEACA%2CgCAAA%3BECzlCR%2CWAAA%3BEACA%2CYAAA%3BED0lCQ%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%3BECzpCJ%2CeAAA%3BEACA%2CiBAAA%3BED0pCQ%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%3BAE9sCR%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%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%3BAF0ZpC%3BAA8BA%2CEAAE%3BAAAF%2CEAAE%2CUExbiB%3BAAAI%2CEFwbvB%2CEAAE%2CUExbkC%3BAFybpC%2CEAAE%3BAAAF%2CEAAE%2CUEzbiB%3BAAAI%2CEFybvB%2CEAAE%2CUEzbkC%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%3BAAkG9C%2CQAhG8B%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%3BEAC5D%3BIAAW%3B%3BEAEX%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%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%3BACh7BzF%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAGJ%3BEACI%3B%3BAAEJ%3BEACI%3BEACA%2CcAAA%3BEACA%2CgCAAA%3BEACA%3B%3BAAEJ%2CkBAAmB%3BEACf%3B%3BAAEJ%2CkBAAmB%3BEACf%3BEACA%3B%3BAAEJ%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%2CyBAAA%3BEF2BA%2CkDAAA%3BEACA%2C%2BCAAA%3BEACA%2C6CAAA%3BEACA%2C0CAAA%3B%3BAEnCJ%2CYAQI%3BEACI%3BEACA%3B%3BAAVR%2CYAaI%2CWAAW%3BEACP%3BEACA%3BEFMJ%2CYAAA%3BEACA%2CYAAA%3BEELI%3B%3BAAWJ%2CQAP0B%3BEAO1B%2CYANG%2CWAAW%3BIACN%3BIACA%3B%3B%3BAAUR%2CQAN2B%3BEAM3B%2CYALI%3BIACI%2CeAAA%3B%3B%3BAAUZ%2CQAN6B%3BEAM7B%2CYALO%2CWAAW%3BIACN%3BIACA%3B%3B%3BAAKZ%3BEACI%2CoBAAA%3B%3BAADJ%2CWAGI%3BEACI%3B%3BAAIR%3BEACI%2CyBAAA%3BEACA%2CcAAA%3B%3B%3B%3B%3BAAUI%2CYAHJ%2CoBAGQ%3BAAAI%2CYAHZ%2CoBAGgB%2CKAAK%3BEFuDrB%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEExDQ%3BEACA%3B%3BAAEA%2CYARR%2CoBAGQ%2CKAKC%3BAAAD%2CYARR%2CoBAGgB%2CKAAK%2CKAKZ%3BEACG%3B%3BAAIR%2CYAbJ%2CoBAaQ%2CKAAK%2CKAAE%3BEACP%2CgBAAA%3BEACA%2CcAAA%3B%3BAAGJ%2CYAlBJ%2CoBAkBQ%2CKAAK%2CKAAK%3BEACV%3BEACA%3BEACA%2CiBAAA%3BEF1GR%2CeAAA%3BEACA%2CiBAAA%3BEE2GQ%2CgBAAA%3BEACA%2CcAAA%3BEACA%3BEFpDR%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECkIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3BACzE1D%2CYAjCJ%2CoBAiCQ%2CKAAK%2CKAAE%2CMAAS%3BEAChB%2CcAAA%3BEACA%3BEACA%2CyBAAA%3B%3BAAIJ%2CYAxCJ%2CoBAwCQ%2CKAAK%2CKAAK%2CIAAI%3BEACd%3B%3BAAGJ%2CYA5CJ%2CoBA4CQ%2CKAAK%2CKAAE%2CuBAAuB%2CMAAO%3BAACzC%2CYA7CJ%2CoBA6CQ%2CKAAK%2CKAAE%2CuBAAuB%2CMAAO%3BEACrC%3B%3BAAWR%2CQAR%2BB%3BEAEnB%2CYAnDZ%2CoBAkDY%2CKACC%3BEAAD%2CYAnDZ%2CoBAkDoB%2CKAAK%2CKACZ%3BIFOb%2CqBAAA%3BIACA%2CoBAAA%3BIACA%2CiBAAA%3BIACA%2CaAAA%3B%3B%3BAE9DJ%2CYA4DI%3BEACI%3B%3BAA7DR%2CYA4DI%2CgBAGI%3BEACI%3BEACA%3BEACA%2CyBAAA%3BEACA%2CcAAA%3B%3BAAnEZ%2CYA4DI%2CgBAUI%2CMAAK%3BEACD%2CcAAA%3BEF3JR%2CeAAA%3BEACA%2CiBAAA%3BEE4JQ%2CgBAAA%3BEACA%2CaH7GF%2CqBG6GE%3B%3BAA1EZ%2CYA4DI%2CgBAiBI%3BEACI%3B%3BAA9EZ%2CYA4DI%2CgBAqBI%2COAAM%2CYAAY%3BEACd%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEF3KR%2CeAAA%3BEACA%2CeAAA%3BEE4KQ%3BEACA%2CcAAA%3BEF3GR%2CmBE4GmB%2CgBF5GnB%3BEACA%2CgBE2GmB%2CgBF3GnB%3BEACA%2CcE0GmB%2CgBF1GnB%3BEACA%2CeEyGmB%2CgBFzGnB%3BEACA%2CWEwGmB%2CgBFxGnB%3B%3BAEaJ%2CYA4DI%2CgBAqBI%2COAAM%2CYAAY%2CcAYd%3BEACI%2CgBAAA%3B%3BAA9FhB%2CYA4DI%2CgBAsCI%3BEFjEJ%2CyDAAA%3BEACA%2CsDAAA%3BEACA%2CiDAAA%3B%3BAEnCJ%2CYA4DI%2CgBA0CI%3BEACI%3BEACA%3B%3BAAYR%2CQAR0B%3BEAQ1B%2CYAPI%3BEAOJ%2CYANI%2CoBAAsB%2CKAAK%2CKAAK%3BIAC5B%3BIACA%3B%3B%3BAAWR%2CQAP0B%3BEAO1B%2CYANI%3BEAMJ%2CYALI%2CoBAAsB%2CKAAK%2CKAAK%3BIF1MpC%2CeAAA%3BIACA%2CiBAAA%3B%3B%3BAEsNA%2CQAR0B%3BEAQ1B%2CYAPI%3BEAOJ%2CYANI%2CoBAAsB%2CKAAK%2CKAAK%3BIAC5B%3BIACA%3B%3B%3BAAaR%2CQAT0B%3BEAS1B%2CYARI%3BEAQJ%2CYAPI%2CoBAAsB%2CKAAK%2CKAAK%3BIFzNpC%2CeAAA%3BIACA%2CiBAAA%3BIE0NQ%3BIACA%3B%3B%3BAAeZ%2CQAX8B%3BEAW9B%2CYAVQ%3BIF4BJ%2C0BAAA%3BIACA%2CsBAAA%3BIACA%2CkBAAA%3BIE5BQ%3B%3BEAQZ%2CYALQ%3BIFtOJ%2CeAAA%3BIACA%2CiBAAA%3BIEuOQ%3B%3B%3BAAKZ%3BEFXI%2CiCAAA%3BEACA%2C6BAAA%3BEACA%2CyBAAA%3B%3B%3B%3B%3BAEgBJ%2CYACI%2CoBAAoB%3BEAChB%2CyBAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2C2BAAA%3B%3BAATR%2CYACI%2CoBAAoB%2CUAUhB%3BEACI%3BEACA%2CkBAAA%3BEACA%3BEFlQR%2CeAAA%3BEACA%2CiBAAA%3BEEmQQ%2CgBAAA%3BEACA%2CcAAA%3BEF3MR%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECkIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3BECwEtD%3B%3BAAnBZ%2CYACI%2CoBAAoB%2CUAqBhB%3BEACI%3B%3BAAvBZ%2CYACI%2CoBAAoB%2CUAyBhB%2CEAAC%3BAA1BT%2CYACI%2CoBAAoB%2CUA0BhB%2CEAAC%3BEACG%3BEACA%2CcAAA%3BEFxHR%2CqBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BECnGI%3BEAAsB%3BEAAsB%3BEDxDhD%2CeAAA%3BEACA%2CiBAAA%3B%3B%3BAE0RJ%2CeAAe%3BEACX%3BEFlOA%2C6BEmOsB%2CmCFnOtB%3BEACA%2C0BEkOsB%2CmCFlOtB%3BEACA%2CwBEiOsB%2CmCFjOtB%3BEACA%2CqBEgOsB%2CmCFhOtB%3BEEiOA%3B%3BAAGJ%2CIAAI%2CYACA%2CsBAAsB%3BEAClB%3BEACA%3BEACA%3B%3BAAJR%2CIAAI%2CYAOA%2CsBAAsB%2CWAAU%3BEAC5B%2CSAAS%2COAAT%3BEFzSJ%2CeAAA%3BEACA%2CeAAA%3B%3BAEgSJ%2CIAAI%2CYAYA%3BEACI%3BEFpPJ%2C6BEqP0B%2CmCFrP1B%3BEACA%2C0BEoP0B%2CmCFpP1B%3BEACA%2CwBEmP0B%2CmCFnP1B%3BEACA%2CqBEkP0B%2CmCFlP1B%3B%3BAEsPJ%3BEF%5C%2FDI%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3BEApBA%2C%2BBAAA%3BEACA%2C2BAAA%3BEACA%2CuBAAA%3BEEkFA%3BEACA%3BEACA%2CuBAAA%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%3BEFpUZ%2CmBEqUuB%2CaFrUvB%3BEACA%2CgBEoUuB%2CaFpUvB%3BEACA%2CcEmUuB%2CaFnUvB%3BEACA%2CeEkUuB%2CaFlUvB%3BEACA%2CWEiUuB%2CaFjUvB%3BEEkUY%3B%3BAAJZ%2CIAAI%2CiBAAkB%2CaAClB%2COAMI%2CKAAI%2CUAAU%3BEACV%3B%3BAARZ%2CIAAI%2CiBAAkB%2CaAClB%2COAUI%2CKAAI%2CUAAU%3BEF7UtB%2CmBE8UuB%2CcF9UvB%3BEACA%2CgBE6UuB%2CcF7UvB%3BEACA%2CcE4UuB%2CcF5UvB%3BEACA%2CeE2UuB%2CcF3UvB%3BEACA%2CWE0UuB%2CcF1UvB%3BEE2UY%3B%3BAAMhB%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAARJ%2CkBAUI%2CUAAY%2CKAAK%3BEACb%2CcAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEFraJ%2CeAAA%3BEACA%2CiBAAA%3BEEsaI%3BEF7WJ%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECkIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3BAC2O1D%2CkBARJ%2CUAAY%2CKAAK%2CIAQZ%3BEACG%2CcAAA%3BEACA%2CyBAAA%3B%3BAApBZ%2CkBAwBI%2CUAAY%2CKAAE%2CuBAA0B%2CIAAC%3BEACrC%2CSAAS%2COAAT%3BEACA%2CaHrYM%2CoBGqYN%3BEACA%3BEACA%3BEFpbJ%2CeAAA%3BEACA%2CiBAAA%3BEEqbI%3B%3BAA9BR%2CkBAiCI%2CUAAY%2CKAAE%2CuBAAuB%2COAAU%2CIAAC%3BEAC5C%2CSAAS%2COAAT%3BEACA%2CaH9YM%2CoBG8YN%3BEACA%3BEACA%3BEF7bJ%2CeAAA%3BEACA%2CiBAAA%3BEE8bI%3B%3BAAvCR%2CkBA0CI%2CUAAY%3BEACR%3BEACA%2CgCAAA%3B%3BAA5CR%2CkBA%2BCI%3BEACI%3BEACA%3B%3BAAjDR%2CkBAoDI%2CUAAY%2CKAAK%3BEACb%2CcAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEF%5C%2FcJ%2CeAAA%3BEACA%2CiBAAA%3BEEgdI%3B%3BAAzDR%2CkBA4DI%2CUAAY%3BEACR%2CgCAAA%3B%3BAACA%2CkBAFJ%2CUAAY%2CKAEP%3BEACG%3B%3BAA%5C%2FDZ%2CkBAmEI%2CUAAY%2CKAAE%3BEACV%2C6BAAA%3B%3BAApER%2CkBAuEI%2CUAAY%2CKAAE%3BEACV%3B%3BAAxER%2CkBA2EI%2CKAAI%3BEACA%3BEACA%3B%3BAA7ER%2CkBA2EI%2CKAAI%2CeAIE%3BEFveN%2CeAAA%3BEACA%2CiBAAA%3B%3BAEuZJ%2CkBAoFI%3BEACI%3B%3BAArFR%2CkBAwFI%2CgBAEI%2CKAAK%3BEACD%3B%3BAA3FZ%2CkBAwFI%2CgBAKI%3BEFhfJ%2CwBAAA%3BEACA%2CqBAAA%3BEACA%2CgBAAA%3B%3BAEiZJ%2CkBAwFI%2CgBASI%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAOZ%2CQAH%2BB%3BEAG%5C%2FB%3BIAFQ%3B%3B%3BAAIR%3BEACI%3BEACA%2CyBAAA%3BEACA%3B%3BAAHJ%2CYAKI%3BEACI%3B%3BAANR%2CYAKI%2CeAEI%3BEACI%2CcAAA%3B%3BAARZ%2CYAKI%2CeAMI%3BEACI%3BEACA%3BEACA%3B%3BAAdZ%2CYAKI%2CeAYI%2CkBACI%3BEACI%3BEACA%2CkBAAA%3B%3BAApBhB%2CYAKI%2CeAYI%2CkBACI%2CUAII%3BEACI%3B%3BAAvBpB%2CYAKI%2CeAYI%2CkBAUI%3BEACI%3BEACA%2CkBAAA%3B%3BAA7BhB%2CYAKI%2CeAYI%2CkBAUI%2CWAII%3BEACI%3B%3BAAgBpB%2CQAN0B%3BEACtB%3BIACI%2CoBAAA%3B%3B%3BAAWR%2CQAP8B%3BEAC1B%3BIACI%3B%3B%3B%3B%3B%3BACzjBR%3BEACI%2CyBAAA%3B%3BAADJ%2CYAGI%3BAAHJ%2CYAII%3BAAJJ%2CYAKI%3BEACI%3BEHNJ%2CeAAA%3BEACA%2CiBAAA%3B%3BAGDJ%2CYAGI%2CUAMI%3BAATR%2CYAII%2CUAKI%3BAATR%2CYAKI%2CUAII%3BEACI%2CcAAA%3BEHVR%2CeAAA%3BEACA%2CiBAAA%3BEGWQ%2CgBAAA%3B%3BAAEA%2CYAXR%2CUAMI%2CEAKK%3BAAAD%2CYAVR%2CUAKI%2CEAKK%3BAAAD%2CYATR%2CUAII%2CEAKK%3BAACD%2CYAZR%2CUAMI%2CEAMK%3BAAAD%2CYAXR%2CUAKI%2CEAMK%3BAAAD%2CYAVR%2CUAII%2CEAMK%3BEACG%2CcAAA%3B%3BAAhBhB%2CYAqBI%2CaACI%3BEACI%3BEACA%3BEACA%3B%3BAAzBZ%2CYA6BI%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAAjCR%2CYAoCI%2CaACI%3BEACI%3B%3BAAtCZ%2CYAoCI%2CaACI%2CGAGI%3BEACI%3BEACA%3B%3BAA1ChB%2CYA%2BCI%2CcAAgB%3BEHmLhB%2CiCAAA%3BEACA%2C6BAAA%3BEACA%2CyBAAA%3B%3BAGpOJ%2CYAmDI%2CcAAgB%2CKAAK%3BEHJrB%2CWAAA%3BEACA%2CYAAA%3BEGKI%3B%3BAArDR%2CYAwDI%3BEHxDA%2CeAAA%3BEACA%2CiBAAA%3BEAmPA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3BEG3LI%2CcAAA%3BEACA%2C6BAAA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAhER%2CYAwDI%2CWAUI%3BEHgKJ%2CiCAAA%3BEACA%2C6BAAA%3BEACA%2CyBAAA%3B%3BAGpOJ%2CYAwDI%2CWAcI%3BEACI%3BEACA%3BEACA%2C8BAAA%3B%3BAAzEZ%2CYAwDI%2CWAoBI%2CEAAC%3BEACG%3BEACA%3BEACA%3B%3BAA%5C%2FEZ%2CYAwDI%2CWA0BI%3BEACI%2CcAAA%3B%3BAAEA%2CYA7BR%2CWA0BI%2CEAGK%3BEACG%2CcAAA%3B%3BAAYZ%2CQAP2B%3BEAO3B%2CYANI%3BEAMJ%2CYANmB%3BIACX%3BIACA%3B%3B%3BAAWR%2CQAP0B%3BEAO1B%2CYANI%3BIACI%3BIACA%3B%3B%3BAAUR%2CQAN%2BB%3BEAM%5C%2FB%2CYALI%3BIACI%3B%3B%3BAA0CR%2CQAtC%2BB%3BEAsC%5C%2FB%2CYArCI%3BIACI%3BIACA%3B%3BEAmCR%2CYAhCI%3BIACI%3B%3BEA%2BBR%2CYA5BI%3BIACI%3B%3BEA2BR%2CYAxBI%2CcAAgB%3BIHqGpB%2CmCAAA%3BIACA%2C%2BBAAA%3BIACA%2C2BAAA%3B%3BEG%5C%2FEA%2CYApBI%2CcAAgB%2CKAAK%3BIACjB%3BIACA%3B%3BEAkBR%2CYAfI%3BIACI%3B%3BEAcR%2CYAfI%2CWAGI%3BIACI%3B%3BEAWZ%2CYAfI%2CWAOI%3BIACI%3BIACA%3BIACA%3B%3B%3BAAoBhB%2CQAf6B%3BEAe7B%2CYAdQ%3BEAcR%2CYAbQ%3BIACI%3BIACA%3B%3BEAWZ%2CYARQ%3BIACI%3B%3BEAOZ%2CYAJQ%3BIACI%3B%3B%3BACpKZ%3BEACI%3B%3BACAJ%3BEACI%2CoBAAA%3B%3BAADJ%2CgBAGI%3BEACI%3B%3BAAGR%2CUAAU%3BEAAQ%2CyBAAA%3B%3BAAClB%2CIAAK%2CWAAU%2CKAAM%3BEAAW%2CoCAAA%3BELoD5B%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BEKvDqF%3BEAAY%3BEAAY%3BEAAa%3BEAAc%3B%3BAAC5I%2CIAAI%2CUAAW%2CWAAU%2CKAAM%3BEAAW%3BEAAqB%3B%3BAAC%5C%2FD%2CIAAK%2CWAAU%2CKAAM%2CSAAS%3BEAAM%3B%3BAACpC%2CUAAU%2CKAAM%3BEAAmB%3BEAAe%3B%3BAAClD%2CUAAU%2CKAAM%3BEAAwB%2CkBAAA%3BEAAoB%3B%3BAAC5D%2CUAAU%2CKAAM%2CiBAAiB%3BEAAS%3B%3BAAC1C%2CUAAU%2CKAAM%2CiBAAiB%3BEAAQ%2CaNqC%5C%2FB%2CqBMrC%2BB%3BEAAuB%2CgBAAA%3BEAA6B%2CcAAA%3BEAAc%3BEAAqB%3B%3BAAChI%2CUAAU%2CKAAM%2CiBAAiB%3BAACjC%2CUAAU%2CKAAM%2CiBAAiB%3BEAAS%3BEAAoB%2CyBAAA%3BEAA0B%3BEAAgB%3B%3BAACxG%2CUAAU%2CKAAM%2CiBAAiB%3BEAAW%3B%3BAAE5C%2CUAAU%2CKAAM%3BEAAO%2CeAAA%3B%3BAACvB%2CUAAU%2CKAAM%3BEAAc%3BEAAkB%3BEAAe%3B%3BAAE%5C%2FD%2CUAAU%2CKAAM%3BEAAY%2CuBAAA%3BEAAyB%3BEAAqB%2C8BAAA%3BEAAoC%2CyBAAA%3B%3BAAC9G%2CUAAU%2CKAAM%2CUAAU%3BEAAY%2CgCAAA%3BEAAkC%2CkBAAA%3B%3BAACxE%2CUAAU%2CKAAM%2CUAAU%2CUAAU%3BEAAS%2CaN2BnC%2CqBM3BmC%3BEAAuB%3BEAAqB%3B%3BAACzF%2CUAAU%2CKAAM%2CUAAU%2CUAAU%2COAAO%3BEAAI%2CcAAA%3B%3BAAC%5C%2FC%2CUAAU%2CKAAM%2CUAAU%2CUAAU%2COAAO%2CEAAC%3BEAAS%2CcAAA%3B%3BAACrD%2CUAAU%2CKAAM%2CUAAU%2CUAAU%3BEAAQ%3B%3BAAC5C%2CUAAU%2CKAAM%2CUAAU%3BEAAY%2CeAAA%3B%3BAACtC%2CUAAU%2CKAAM%2CUAAU%2CUAAU%3BEAAQ%3B%3BAAC5C%2CUAAU%2CKAAM%2CUAAU%2CUAAU%3BEAAS%3B%3BAAC7C%2CUAAU%2CKAAM%2CUAAU%2CUAAU%3BEAAc%3B%3BAAClD%2CUAAU%2CKAAM%2CUAAU%2CUAAU%3BEAAS%3BEAAqB%3B%3BAAClE%2CUAAU%2CKAAM%2CUAAU%2CUAAU%3BEAAU%3B%3BAAC9C%2CSAAU%2CUAAU%2CUAAU%2CKAAI%2CKAAK%3BEAAS%2CSAAS%2CIAAT%3BEAAe%2CcAAA%3B%3BAAC%5C%2FD%2CSAAU%2CUAAU%2CUAAU%2CKAAI%2CKAAK%2CaAAa%3BEAAS%2CSAAS%2CEAAT%3B%3BAAE7D%2C0BAA2B%3BEAAS%2CaNc1B%2CqBMd0B%3BEAAuB%3BEAAiB%2CcAAA%3BEAAc%2CgBAAA%3BEAA6B%3B%3BAACvH%2C0BAA2B%3BEAAW%2CaNa5B%2CqBMb4B%3BEAAuB%3B%3BAAC7D%2C0BAA2B%3BEAAS%3BEAAqB%2CaNY%5C%2FC%2CqBMZ%2BC%3BEAAuB%3B%3BAAChF%2C0BAA2B%3BEAAI%2CgBAAA%3BEAA2C%2CaNWhE%2CqBMXgE%3BEAAuB%3BEAAqB%3B%3BAACtH%2C0BAA2B%2CEAAC%2COAAO%2CMAAO%3BAAAK%2C0BAA2B%2CIAAG%2COAAO%2CMAAO%3BAAAK%2C0BAA2B%2CKAAI%2COAAO%2CMAAO%3BEAAM%3B%3BAAMnJ%2CQAJgC%3BEAC5B%2CUAAU%2CKAAM%2CUAAU%2CUAAU%3BIAAS%3BIAAiB%3B%3B%3BAAYlE%2CQAT6B%3BEACzB%2CUAAU%2CKAAM%3BIAAwB%2CkBAAA%3B%3BEACxC%2CUAAU%2CKAAM%3BIAAc%3B%3BEAC9B%2CUAAU%2CKAAM%2CiBAAiB%3BIAAW%3B%3BEAC5C%2CUAAU%2CKAAM%3BIAAY%3B%3BEAC5B%2CUAAU%2CKAAM%2CUAAU%2CUAAU%3BEACpC%2CUAAU%2CKAAM%2CUAAU%2CUAAU%3BIAAU%3BIAAa%3B%3B%3BAAS%5C%2FD%2CQANgC%3BEAC5B%2CUAAU%2CKAAM%2CUAAU%3BIAAY%2CkBAAA%3B%3BEACtC%2CUAAU%2CKAAM%3BIAAmB%3B%3BEACnC%2CUAAU%2CKAAM%3BIAAwB%2CkBAAA%3B%3B%3B%3BAAI5C%3B%3B%3B%3BAAAA%2CgBAEI%3BEACI%2C8BAAA%3B%3BAASJ%2CQAL%2BB%3BEAK%5C%2FB%2CgBANA%2CuBAEQ%3BIACI%3B%3B%3BAAThB%2CgBAcI%3BEACI%2CeAAA%3BEACA%2CyBAAA%3B%3BAAhBR%2CgBAcI%2CUAII%3BEACI%3B%3BAAnBZ%2CgBAcI%2CUAQI%3BAAtBR%2CgBAcI%2CUAQY%3BEACJ%3B%3BAAvBZ%2CgBAcI%2CUAYI%2COAAS%2COAAI%2CKAAQ%2CMAAG%3BEACpB%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAACA%2CgBArBR%2CUAYI%2COAAS%2COAAI%2CKAAQ%2CMAAG%2CeASnB%3BEACG%2CSAAS%2CGAAT%3BEACA%3B%3BAArChB%2CgBAcI%2CUA4BI%2CUACI%3BEACI%3B%3BAA5ChB%2CgBAiDI%3BEACI%2CeAAA%3B%3BAAlDR%2CgBAiDI%2CaAGI%2CSAAS%3BEACL%3B%3BAArDZ%2CgBAiDI%2CaAOI%3BEACI%3B%3BAAzDZ%2CgBAiDI%2CaAWI%3BEACI%3B%3BAA7DZ%2CgBAiDI%2CaAeI%3BEACI%3B%3BAASR%2CQAN%2BB%3BEAM%5C%2FB%2CgBAzBA%2CaAoBQ%2CSAAS%3BIACL%3BIACA%3B%3B%3BAAvEhB%2CgBAgFI%3BEACI%3BEACA%3BEACA%3B%3BAAnFR%2CgBAgFI%2CgBAKI%3BEACI%2CsBAAA%3BEACA%3BEACA%3B%3BAAxFZ%2CgBAgFI%2CgBAWI%3BEACI%2CcAAA%3BEAAgB%3BEAA2B%3BEAAoB%3B%3BAA5F3E%2CgBAgFI%2CgBAWI%2CcAEI%2CGAAG%3BEAAM%3B%3BAA7FrB%2CgBAgFI%2CgBAgBI%3BEACI%3BEACA%2CyBAAA%3BEACA%3B%3BAAnGZ%2CgBAgFI%2CgBAgBI%2CgBAII%3BEAAK%2CyBAAA%3BEAA2B%3B%3BAAAiB%2CgBApBzD%2CgBAgBI%2CgBAII%2CGAAkD%2CMAAO%3BEAAM%3B%3BAApG3E%2CgBAgFI%2CgBAgBI%2CgBAKI%2CGAAG%3BEAAM%2COAAO%2CgBAAP%3BEAA4B%3B%3BAArGjD%2CgBAgFI%2CgBAgBI%2CgBAMI%3BEAAiB%3B%3BAAAoB%2CgBAtB7C%2CgBAgBI%2CgBAMI%2CeAAsC%3BEAAS%2CSAAQ%2CEAAR%3BEAAY%3BEAAoB%3BEAAQ%3BEAAW%2COAAO%2CgBAAP%3BEAA4B%2CQAAQ%2CgBAAR%3BEAA6B%2CyBAAA%3B%3BAAtGvK%2CgBAgFI%2CgBAyBI%3BELtKJ%2CeAAA%3BEACA%2CiBAAA%3BEKqKqC%2CgBAAA%3BEAAkB%3BEAAoB%3BEAAgB%3B%3BAAzG%5C%2FF%2CgBAgFI%2CgBA2BI%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CyCAAA%3BEACA%2CsCAAA%3BEACA%2CoCAAA%3BEACA%2CiCAAA%3BELtHR%2CuBAAA%3BEACA%2CoBAAA%3BEACA%2CkBAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEKoHQ%3B%3BAA9HZ%2CgBAgFI%2CgBAiDI%2CaAAY%3BEACR%3BEACA%3B%3BAAnIZ%2CgBAgFI%2CgBAsDI%2CaAAY%3BEACR%3BEACA%2C%2BCAAA%3B%3BAAxIZ%2CgBAgFI%2CgBA2DI%2CaAAY%3BEACR%3BEACA%2C%2BCAAA%3B%3BAAQR%2CQAJkC%3BEAIlC%2CgBArEA%2CgBAkEQ%3BIAAgB%2CcAAA%3B%3BEAGxB%2CgBArEA%2CgBAmEQ%3BILhNR%2CeAAA%3BIACA%2CiBAAA%3BIK%2BMyC%2CcAAA%3B%3B%3BAAnJ7C%2CgBAuJI%3BEACI%3B%3BAAxJR%2CgBAuJI%2CUAGI%3BEACI%3BEACA%2CwBAAA%3B%3BAA5JZ%2CgBAuJI%2CUAQI%3BEACI%3BEACA%3BEACA%3B%3BAAlKZ%2CgBAuJI%2CUAQI%2CSAKI%3BEACI%2CgBAAA%3B%3BAAEA%2CgBAhBZ%2CUAQI%2CSAKI%2CEAGK%3BEACG%3B%3BAAmBhB%2CQAN%2BB%3BEAM%5C%2FB%2CgBApCA%2CUA%2BBQ%3BIAEI%2CuBAAA%3B%3B%3BAAYhB%2CQAP%2BB%3BEAO%5C%2FB%2CgBANQ%2CUACI%3BIACI%3B%3B%3BAChQhB%3BEACI%2CeAAA%3B%3BAADJ%2CWAGI%3BEACI%3B%3BAAJR%2CWAOI%2CMAAM%3BEACF%2CcAAA%3B%3BAARR%2CWAWI%2CGAAE%3BEACE%2CcAAA%3B%3BAAZR%2CWAeI%3BEACI%3BENkIJ%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAyBA%2CuBAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEAuEA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3B%3BAMzPJ%2CWAeI%2CQAMI%3BEACI%3B%3BAAtBZ%2CWAeI%2CQAUI%3BAAzBR%2CWAeI%2CQAWI%3BEACI%3B%3BAA3BZ%2CWA%2BBI%3BEACI%2CgBAAA%3B%3BAASR%2CQAL%2BB%3BEAK%5C%2FB%2CWAJQ%3BIACI%3B%3B%3BAAKZ%3BEACI%3BEACA%3B%3BAAFJ%2CeAII%3BEACI%3BEACA%2CmBAAA%3B%3BAANR%2CeAQI%2CQAAQ%3BEACJ%3B%3BAATR%2CeAWI%2CSAAS%2CIAAG%2CKAAK%2CUAAU%3BEACvB%3B%3BAAZR%2CeAcI%2CSAAW%2CMAAG%3BEACV%3B%3BAAfR%2CeAiBI%2CSAAS%3BEACL%2C6BAAA%3BEACA%3B%3BAAnBR%2CeAqBI%2CSAAS%2CMAAM%3BEACX%3B%3BAAtBR%2CeAwBI%2CSAAS%2CMAAM%3BEACX%3B%3BAAzBR%2CeA2BI%3BEACI%3B%3BAA5BR%2CeA8BI%2CcAAc%3BEACV%3BEACA%3B%3BAAIR%3BEACI%2CyBAAA%3BEACA%2CeAAA%3B%3BAAFJ%2CaAII%3BEACI%3B%3BAAEA%2CaAHJ%2CUAGO%3BEN4DP%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAyBA%2CuBAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEMvFQ%3BEACA%2CeAAA%3BEN8BR%2C8DAAA%3BEACA%2C2DAAA%3BEACA%2CsDAAA%3B%3BAM3CJ%2CaAgBI%3BEACI%3B%3BAAjBR%2CaAoBI%3BAApBJ%2CaAoBuB%3BEACf%2CsBAAA%3B%3BAArBR%2CaAwBI%3BEACI%3B%3BAAzBR%2CaA4BI%3BEACI%2CeAAA%3BEACA%3B%3BAAmBR%2CQAhB%2BB%3BEAGnB%2CaADJ%2CUACO%3BIACC%3B%3BEAYhB%2CaARQ%3BIACI%3B%3BEAOZ%2CaAJQ%3BIACI%3B%3B%3B%3B%3B%3B%3B%3BAC7HZ%2CWACI%3BEPEA%2CeAAA%3BEACA%2CiBAAA%3BEODI%2CgBAAA%3BEACA%2CcAAA%3BEACA%3BEACA%2CuBAAA%3BEPiPJ%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3BEOhPI%3BEACA%2CcAAA%3BEACA%2CyBAAA%3B%3BAAWA%2CWArBJ%2CkBAqBK%3BAAAQ%2CWArBb%2CkBAqBc%3BEACN%2CcAAA%3B%3BAAEA%2CWAxBR%2CkBAqBK%2CMAGI%3BAAAD%2CWAxBR%2CkBAqBc%2COAGL%3BEACG%2CcAAA%3B%3BAA1BhB%2CWA%2BCI%3BEACI%2CuBAAA%3BEACA%2CyBAAA%3BEACA%2CyBAAA%3B%3BAClDR%3BEACI%3BEACA%3B%3BAAFJ%2C6BAII%3BEACI%2C8FAAA%3BEACA%2CsFAAA%3B%3BAAGJ%2CKAAM%3BEACF%3BEACA%3B%3BAAXR%2C6BAcI%3BEACI%3B%3BAAfR%2C6BAkBI%3BERfA%2CeAAA%3BEACA%2CeAAA%3BEQgBI%3BEACA%2CgBAAA%3BEACA%3B%3BAAtBR%2C6BAyBI%3BEACI%3BEACA%2CgBAAA%3BEACA%3BEACA%3B%3BAA7BR%2C6BAyBI%2CSAMI%3BEACI%3B%3BAAhCZ%2C6BAyBI%2CSAUI%2CEAAC%3BEACG%3B%3BAApCZ%2C6BAyBI%2CSAcI%3BAAvCR%2C6BAyBI%2CSTuuBJ%2CeAmPI%2CcAAc%3BES38BN%3B%3BAAxCZ%2C6BA4CI%2COAAM%3BEACF%3B%3BAA7CR%2C6BAgDI%3BEACI%3B%3BAASJ%2CQAN0B%3BEAM1B%2C6BALI%2C8BAA8B%3BIAC1B%2C6CAAA%3B%3B%3BAAYR%2CQAR2B%3BEACvB%3BEACA%2CKAAM%3BIACF%3BIACA%3B%3B%3BAAwBZ%2CQApB%2BB%3BEACvB%3BEACA%2CKAAM%3BIACF%3BIACA%3B%3BEAHJ%2C6BAII%3BEAHJ%2CKAAM%2C8BAGF%3BIACI%3BIACA%3B%3BEAahB%2C6BATQ%3BIACI%3B%3B%3BAC9EZ%3BEACI%2CaViDQ%2CuBUjDR%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%3BAAFJ%2C0BAII%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEVoDJ%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECkIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3BASlMlE%2C0BAaI%2COAAM%3BEACF%3B%3BAAdR%2C0BAiBI%3BEACI%3B%3BAAlBR%2C0BAqBI%3BEACI%3B%3BAAtBR%2C0BAyBI%2CEAAC%3BAAzBL%2C0BAyBI%2CEXuuBJ%2CcAmPI%2CcAAc%3BEWz9BV%3B%3BAA1BR%2C0BA6BI%3BEACI%2C8BAAA%3B%3BAA9BR%2C0BAiCI%2CEAAC%2CiBAAiB%3BEACd%2CcAAA%3BEACA%2CmBAAA%3BEVqFJ%2CqDAAA%3BEACA%2CkDAAA%3BEACA%2C6CAAA%3B%3BAU1HJ%2C0BAiCI%2CEAAC%2CiBAAiB%2CMAKd%3BEACI%2CyBAAA%3BEACA%2CcAAA%3BEACA%2CqBAAA%3B%3BAAzCZ%2C0BAiCI%2CEAAC%2CiBAAiB%2CMAWd%3BAA5CR%2C0BAiCI%2CEAAC%2CiBAAiB%2CMAYd%3BEACI%2CcAAA%3B%3BAAIR%2C0BAAC%2CaACG%2CkBAAkB%3BEV%2BFtB%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAkGA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3BEApBA%2CsCAAA%3BEACA%2CkCAAA%3BEACA%2C8BAAA%3BEUhLQ%3BEACA%3B%3BAANR%2C0BAAC%2CaASG%2CkBAAkB%3BEACd%3B%3BAAVR%2C0BAAC%2CaAaG%2CkBAAkB%3BAAbtB%2C0BAAC%2CaAaG%2CkBXisBR%2CeAmPI%2CcAAc%3BEWn7BN%3B%3BAAWR%2CQAP2B%3BEAO3B%2C0BANI%3BIACI%3BIACA%3B%3B%3BAAoBR%2CQAhB8B%3BEAC1B%2C0BAAC%2CaACG%2CkBAAkB%3BIACd%3BIVuJZ%2C%2BBAAA%3BIACA%2C2BAAA%3BIACA%2CuBAAA%3BIUvJY%3BIACA%3B%3BEALR%2C0BAAC%2CaAQG%2CkBAAkB%3BIACd%3BIACA%3B%3B%3BAAWhB%2CQAN%2BB%3BEAM%5C%2FB%2C0BALQ%3BIACI%3BIACA%3B%3B%3BAC9FZ%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%3BAAFJ%2CgBAII%3BEACI%3BEZwDJ%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECkIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3BAWlMlE%2CgBASI%3BEACI%2C8BAAA%3B%3BAAVR%2CgBAaI%2CEAAE%3BEACE%3B%3BAA%2BBJ%2CQAN2B%3BEAM3B%2CgBALI%3BIACI%3B%3B%3BAAUR%2CQAN8B%3BEAM9B%2CgBALI%3BIACI%3B%3B%3BAASZ%2CQAL%2BB%3BEAK%5C%2FB%2CgBAJQ%3BIACI%2CuBAAA%3B%3B%3BACrDZ%3BEACI%3BEACA%3B%3BAAFJ%2CQAII%3BEACI%2CkBAAA%3B%3BAALR%2CQAQI%2CWAAW%3BEACP%3BEACA%2CmBAAA%3B%3BAAVR%2CQAQI%2CWAAW%2CSAIP%2CEAAC%3BEACG%3B%3BAAbZ%2CQAiBI%3BEbWA%2CkBAAA%3BEACA%2CmBAAA%3B%3BAa7BJ%2CQAqBI%3BEbYA%2CkBAAA%3BEACA%2CmBAAA%3B%3BAalCJ%2CQAyBI%3BEACI%3B%3BAA1BR%2CQA6BI%3BEACI%3B%3BAA9BR%2CQAiCI%3BEACI%2CuBAAA%3BEACA%2CyBAAA%3BEb%2BGJ%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAyBA%2CuBAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3BEAqDA%2C%2BBAAA%3BEACA%2C2BAAA%3BEACA%2CuBAAA%3BEahMI%2CcAAA%3B%3BAAvCR%2CQA0CI%3BEACI%3B%3BAA3CR%2CQA8CI%3BAA9CJ%2CQA8CW%3BEACH%3B%3BAA%5C%2FCR%2CQAkDI%3BEACI%2CuBAAA%3BEACA%2CyBAAA%3BEACA%3B%3BAAEA%2CQALJ%2CWAKK%3BEACG%2CSAAS%2CEAAT%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2C2CAAA%3B%3BAAcR%2CQAV8B%3BEAU9B%2CQATI%3BIbvCJ%2CiBAAA%3BIACA%2CkBAAA%3B%3BEa%2BCA%2CQALI%3BIACI%3B%3B%3BAASR%2CQAL8B%3BEAK9B%3BIAJI%3BIACA%3B%3B%3BAAQR%2CQAL%2BB%3BEAK%5C%2FB%2CQAJQ%3BIACI%2CuBAAA%3B%3B%3BACnFZ%3BEACI%3BEACA%3B%3BAAFJ%2CcAII%3BEACI%3B%3BAALR%2CcAQI%3BEACI%3BEd%2BGJ%2CmDAAA%3BEACA%2CgDAAA%3BEACA%2C2CAAA%3B%3BAc1HJ%2CcAaI%2CUAAU%3BEACN%3BEACA%3BEACA%2CyBAAA%3BEACA%2CcAAA%3BEACA%3BEd2CJ%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECkIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3BAalMlE%2CcAsBI%2CUAAS%2CMAAO%3BEACZ%2CyBAAA%3BEACA%2CcAAA%3B%3BAAxBR%2CcA2BI%2CUAAU%2CSAAS%3BEACf%3B%3BAAaJ%2CQAV8B%3BEAU9B%2CcATI%3BIdJJ%2CiBAAA%3BIACA%2CkBAAA%3B%3BEcYA%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%2CcfwoBZ%2CeAmPI%2CcAAc%3BIez3BE%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%3B%3BAAOA%2CQAL2B%3BEAK3B%3BIAJI%3BIACA%3B%3B%3BAAOR%2CQAJ%2BB%3BEAI%5C%2FB%3BIAHQ%3BIACA%3B%3B%3BACXR%3BEACI%3BEACA%3B%3BAAFJ%2CgBAII%3BACJJ%2C6BAA8B%3BEjB4B1B%2CkBAAA%3BEACA%2CmBAAA%3B%3BAgB7BJ%2CgBAII%2CsBAGI%3BACPR%2C6BAA8B%2CsBDOtB%3BEACI%3BEACA%3B%3BAATZ%2CgBAII%2CsBAQI%2CWAAU%2CSACL%3BACbb%2C6BAA8B%2CsBDYtB%2CWAAU%2CSACL%3BEACG%3B%3BAAdhB%2CgBAII%2CsBAcI%2CWAAW%3BAClBnB%2C6BAA8B%2CsBDkBtB%2CWAAW%3BEhB2Cf%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECkIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3BEe9KtD%2C4BAAA%3BEACA%3BEACA%3BEACA%2C6BAAA%3B%3BAAvBZ%2CgBAII%2CsBAsBI%2CiBAAgB%2CMAAO%3BAC1B%5C%2FB%2C6BAA8B%2CsBD0BtB%2CiBAAgB%2CMAAO%3BEACnB%3BEACA%2C8BAAA%3BEACA%2CYAAY%2C6HAAZ%3BEACA%2CYAAY%2C2IAAZ%3BEACA%2CqBAAA%3B%3BAA%5C%2FBZ%2CgBAII%2CsBA8BI%3BAClCR%2C6BAA8B%2CsBDkCtB%3BEACI%3BEACA%3BEACA%3B%3BAArCZ%2CgBAII%2CsBA8BI%2CYAKI%3BACvCZ%2C6BAA8B%2CsBDkCtB%2CYAKI%3BEACI%3B%3BAAxChB%2CgBAII%2CsBA8BI%2CYASI%2CMAAM%3BAC3ClB%2C6BAA8B%2CsBDkCtB%2CYASI%2CMAAM%3BEACF%3BEACA%3BEACA%3B%3BAA9ChB%2CgBAII%2CsBA8BI%2CYAeI%2CMAAK%2CMAAO%3BACjDxB%2C6BAA8B%2CsBDkCtB%2CYAeI%2CMAAK%2CMAAO%3BEACR%3B%3BAAlDhB%2CgBAII%2CsBA8BI%2CYAmBI%2CMAAK%2CMAAO%3BACrDxB%2C6BAA8B%2CsBDkCtB%2CYAmBI%2CMAAK%2CMAAO%3BEACR%3B%3BAA0BZ%2CQArB8B%3BEAqB9B%3BIApBI%3BIACA%3B%3BEAmBJ%2CgBAjBI%3BEC%5C%2FDR%2C6BAA8B%3BIjB4B1B%2CkBAAA%3BIACA%2CmBAAA%3B%3BEgBmDA%2CgBAjBI%2CsBAGI%3BEClEZ%2C6BAA8B%2CsBDkElB%3BIACI%3B%3BEAaZ%2CgBAjBI%2CsBAOI%2CWAAU%3BECtEtB%2C6BAA8B%2CsBDsElB%2CWAAU%3BIACN%3B%3BEASZ%2CgBAjBI%2CsBAWI%3BEC1EZ%2C6BAA8B%2CsBD0ElB%3BIACI%3B%3B%3BAAiBZ%2CQAZ8B%3BEAY9B%2CgBAXI%2CsBACI%2CWAAU%3BEClFtB%2C6BAA8B%2CsBDkFlB%2CWAAU%3BIACN%3B%3BEASZ%2CgBAXI%2CsBACI%2CWAAU%2CSAGN%3BECrFhB%2C6BAA8B%2CsBDkFlB%2CWAAU%2CSAGN%3BIACI%3B%3B%3BAAgChB%2CQA1B2B%3BEA0B3B%3BIAzBI%3BIACA%3B%3BEAwBJ%2CgBAtBI%2CsBACI%3BECjGZ%2C6BAA8B%2CsBDiGlB%3BIACI%3B%3BEAoBZ%2CgBAtBI%2CsBAKI%3BECrGZ%2C6BAA8B%2CsBDqGlB%3BIACI%3B%3BEAgBZ%2CgBAtBI%2CsBASI%2CYACI%3BEC1GhB%2C6BAA8B%2CsBDyGlB%2CYACI%3BIACI%3B%3BEAWhB%2CgBAtBI%2CsBASI%2CYAKI%2CMAAM%3BEC9GtB%2C6BAA8B%2CsBDyGlB%2CYAKI%2CMAAM%3BIACF%3BIACA%3B%3B%3BAAapB%2CQAP6B%3BEAO7B%2CgBANQ%2CsBACI%3BECxHZ%2C6BAA8B%2CsBDwHlB%3BIACI%3B%3B%3BAAMhB%2CiBAAkB%2CaAAa%2CkBAAkB%3BEAC7C%3B%3BAC9HJ%3BEACI%3BEACA%3B%3BAAFJ%2C6BAII%3BEACI%2CoBAAA%3B%3BAALR%2C6BAQI%2CyBAAyB%3BEACrB%3B%3BAATR%2C6BAYI%2CyBAAyB%3BEjBXzB%2CeAAA%3BEACA%2CiBAAA%3BEiBYI%2CcAAA%3BEACA%2CyBAAA%3BEjBTJ%2C6BAAA%3BEACA%2C0BAAA%3BEACA%2CqBAAA%3BEAmDA%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECkIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3BEgB9K1D%2CiBAAA%3B%3BAAEA%2C6BARJ%2CyBAAyB%2CEAQpB%3BEACG%2CcAAA%3BEACA%2CyBAAA%3B%3BAAtBZ%2C6BA0BI%2CyBAAyB%2CEAAC%3BEACtB%2CcAAA%3BEACA%2CyBAAA%3B%3BAAaJ%2CQAV0B%3BEAU1B%2C6BATI%3BIjBmMJ%2CsCAAA%3BIACA%2CkCAAA%3BIACA%2C8BAAA%3B%3BEiB5LA%2C6BALI%2CyBAAyB%3BIACrB%2CiBAAA%3B%3B%3BAAWR%2CQAP0B%3BEAO1B%2C6BANI%2CyBAAyB%3BIACrB%2CgBAAA%3BIjB1CR%2CeAAA%3BIACA%2CiBAAA%3B%3B%3BAiBwDA%2CQAV2B%3BEAU3B%3BIATI%3BIACA%3B%3BEAQJ%2C6BANI%2CyBAAyB%3BIjBnD7B%2CeAAA%3BIACA%2CiBAAA%3BIAwBA%2CkBAAA%3BIACA%2CmBAAA%3B%3B%3BAiBuCJ%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%3B%3BAADJ%2CkBAGI%3BEACI%3B%3BAAJR%2CkBAOI%3BEnBqBA%2CkBAAA%3BEACA%2CmBAAA%3B%3BAmB7BJ%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%2CapBktBJ%2CeAmPI%2CcAAc%3BEoBp8BV%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%3BAAFJ%2CYAII%3BEACI%3BEACA%3B%3BAANR%2CYASI%3BEpByIA%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAkGA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3B%3BAoBzPJ%2CYAcI%2CMAAK%3BEpBoIL%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAkGA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3BEApBA%2C%2BBAAA%3BEACA%2C2BAAA%3BEACA%2CuBAAA%3BEoBrNI%3B%3BAAQJ%2CQAL2B%3BEAK3B%3BIAJI%3BIACA%3B%3B%3BAAWR%2CQAR%2BB%3BEAQ%5C%2FB%3BIAPQ%3BIACA%3B%3BEAMR%2CYAJQ%3BIACI%3B%3B%3BAC9BZ%3BEACI%2C8BAAA%3BEACA%2CoBAAA%3BEACA%2CcAAA%3B%3BAAHJ%2CYAKI%3BEACI%3BEACA%3BEACA%3B%3BAARR%2CYAWI%3BEACI%3B%3BAAZR%2CYAeI%3BEACI%3B%3BAAhBR%2CYAmBI%2CQAAQ%3BEACJ%3BEACA%3B%3BAArBR%2CYAwBI%2CQAAQ%2COAAM%3BEACV%3BEACA%2CkBAAA%3B%3BAA1BR%2CYA6BI%2CQAAQ%2COAAM%3BEACV%3BEACA%3B%3BAA%5C%2FBR%2CYAkCI%3BEACI%3B%3BAAnCR%2CYAsCI%2CQAAQ%3BEACJ%2CkDAAA%3B%3BAAvCR%2CYA0CI%2CQAAQ%2COAAM%3BEACV%2CqDAAA%3B%3BAASR%2CQANqC%3BEAMrC%2CYALQ%3BIACI%3BIACA%3B%3B%3BAAKZ%2CKAAM%3BEAAa%3B%3BAAGnB%3BEACI%3B%3BAADJ%2COAGI%2COAAM%3BEACF%2C0DAAA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAARR%2COAWI%3BEACI%2CwDAAA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAlBR%2COAqBI%3BEACI%3BEACA%3B%3BAAvBR%2COA0BI%3BEACI%3B%3BACrFR%3BEACI%3BEACA%3B%3BAAFJ%2CmBAII%3BEACI%3B%3BAALR%2CmBAII%2COAGI%3BEACI%3B%3BAARZ%2CmBAII%2COAOI%3BEACI%3BEtB2OR%2C6BAAA%3BEACA%2CyBAAA%3BEACA%2CqBAAA%3BEA5LA%2C4CAAA%3BEACA%2CyCAAA%3BEACA%2CuCAAA%3BEACA%2CoCAAA%3B%3BAsBhEJ%2CmBAII%2COAaI%3BEACI%2CeAAA%3BEACA%2CyBAAA%3BEACA%3BEACA%3BEtBmGR%2CkDAAA%3BEACA%2C%2BCAAA%3BEACA%2C0CAAA%3BEAxEA%2CYAAA%3BEACA%2CaAAA%3BEAUA%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECkIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3BAqBlMlE%2CmBAII%2COAuBI%3BEACI%3BEACA%2CcAAA%3BEACA%3BEACA%3B%3BAA%5C%2FBZ%2CmBAII%2COA8BI%3BAAlCR%2CmBAII%2COA%2BBI%3BEACI%3BEACA%3B%3BAArCZ%2CmBAII%2COAoCI%2CoBAAmB%3BEtBgFvB%2CoDAAA%3BEACA%2CiDAAA%3BEACA%2C4CAAA%3B%3BAsB1HJ%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%3BItBbR%2CYAAA%3BIACA%2CaAAA%3B%3BEsBuBA%2CmBAZI%2COAKI%3BEAOR%2CmBAZI%2COAMI%3BIACI%3B%3B%3BAAwBZ%2CQAnB2B%3BEAmB3B%2CmBAlBI%3BIACI%3B%3BEAiBR%2CmBAlBI%2COAGK%3BIACG%2CuBAAA%3B%3BEAcZ%2CmBAlBI%2COAOI%3BItBhCR%2CYAAA%3BIACA%2CaAAA%3B%3BEsB0CA%2CmBAlBI%2COAWI%3BEAOR%2CmBAlBI%2COAYI%3BIACI%3B%3B%3BAAkBZ%2CQAb8B%3BEAa9B%2CmBAZI%2COACI%3BItB7CR%2CYAAA%3BIACA%2CaAAA%3B%3BEsBuDA%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%3BItBlHR%2CeAAA%3BIACA%2CiBAAA%3B%3BEsBoIA%2CmBAfI%3BItB7FJ%2CkBAAA%3BIACA%2CmBAAA%3B%3BEsB2GA%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%3BExBgJJ%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEwBjJI%3BEACA%3BEACA%3B%3BAANR%2CKACI%2CSAOI%3BExB0IJ%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEwB3IQ%3BEACA%2CyBAAA%3BEACA%3BEACA%2C%2BBAAA%3B%3BAAbZ%2CKACI%2CSAeI%2CGAAE%3BEACE%3B%3BAAjBZ%2CKACI%2CSAmBI%2CGAAE%3BEACE%2CyBAAA%3B%3BAArBZ%2CKACI%2CSAmBI%2CGAAE%2CMAGE%3BEACI%2CcAAA%3B%3BAAxBhB%2CKACI%2CSA2BI%2CGAAK%3BExBsHT%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAkGA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3BEApBA%2C%2BBAAA%3BEACA%2C2BAAA%3BEACA%2CuBAAA%3BEwBvMQ%2CkBAAA%3BEACA%2CcAAA%3BEACA%2CgBAAA%3BExB%5C%2FBR%2CeAAA%3BEACA%2CiBAAA%3BEwBgCQ%3BEACA%3BEACA%3BEACA%3B%3BAAvCZ%2CKACI%2CSAyCI%2CGAAK%2CIAAC%3BEACF%2CyBAAA%3BEACA%2CcAAA%3B%3BAAEA%2CKA7CR%2CSAyCI%2CGAAK%2CIAAC%2COAID%3BEACG%2CSAAS%2CEAAT%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CkCAAA%3BEACA%2CyDAAA%3B%3BAAzDhB%2CKA8DI%3BEACI%3B%3BAA%5C%2FDR%2CKA8DI%2CYAGI%3BEACI%3BEACA%3BEACA%3B%3BAApEZ%2CKA8DI%2CYASI%3BExB2EJ%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAkGA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3BEwB%5C%2FKQ%2CgCAAA%3BEACA%3BEACA%3B%3BAA5EZ%2CKA8DI%2CYASI%2CGAOI%3BEACI%3B%3BAC%5C%2FEhB%3BEACI%3B%3BAADJ%2CaAGI%3BEACI%2C8BAAA%3B%3BAAJR%2CaAOI%3BEACI%3BEACA%2CwBAAA%3B%3BAATR%2CaAsBI%3BEACI%3BEACA%3B%3BAAxBR%2CaAsBI%2CaAII%3BEACI%2CgBAAA%3BEAKA%3BEACA%3B%3BAAJA%2CaAPR%2CaAII%2CEAGK%3BEACG%3B%3BAA9BhB%2CaAqCI%3BEACI%3BEACA%3BEACA%3B%3BAAxCR%2CaA2CI%3BEzBfA%2CkBAAA%3BEACA%2CmBAAA%3B%3BAyB7BJ%2CaA%2BCI%3BEzBdA%2CkBAAA%3BEACA%2CmBAAA%3B%3BAyBlCJ%2CaAmDI%3BEzBDA%2CWAAA%3BEACA%2CYAAA%3BEyBEI%3BEACA%2CyBAAA%3BEzB4FJ%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAkGA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3BEApBA%2C%2BBAAA%3BEACA%2C2BAAA%3BEACA%2CuBAAA%3BEyB7KI%3BEACA%3B%3BAAEA%2CaAVJ%2CcAUK%3BEACG%2Ca1BdE%2CoB0BcF%3BEACA%2CcAAA%3BEzB5DR%2CeAAA%3BEACA%2CiBAAA%3BEyB6DQ%2CgBAAA%3BEACA%3B%3BAAGJ%2CaAlBJ%2CcAkBK%2CWAAW%3BEACR%2CSAAS%2COAAT%3B%3BAAGJ%2CaAtBJ%2CcAsBK%2CWAAW%3BEACR%2CSAAS%2COAAT%3B%3BAAkBR%2CQAd8B%3BEAc9B%2CaAZI%3BIACI%2CcAAA%3B%3BEAWR%2CaARI%2CoBAAoB%3BIAChB%3BIACA%3BIACA%3BIACA%3B%3B%3BAAmBR%2CQAf2B%3BEAe3B%2CaAdI%2CoBAAoB%3BIAChB%3BIACA%3B%3BEAYR%2CaAdI%2CoBAAoB%2CQAGhB%3BIACI%3BIACA%3B%3BEASZ%2CaALI%2CoBAAoB%3BIAChB%3B%3B%3BAAUZ%2CQAN%2BB%3BEAM%5C%2FB%2CaAJQ%3BIACI%2CkBAAA%3B%3B%3BAC9GZ%3BEACI%3BEACA%3B%3BAAOA%2CQAL2B%3BEAK3B%3BIAJI%3BIACA%3B%3B%3BAAOR%2CQAJ%2BB%3BEAI%5C%2FB%3BIAHQ%3BIACA%3B%3B%3BACXR%3BEACI%3BEACA%3B%3BAAFJ%2C6BAII%2CWACI%3BEACI%3BEACA%3BEACA%3B%3BAARZ%2C6BAII%2CWAOI%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAjBZ%2C6BAqBI%3BEACI%3B%3BAAtBR%2C6BAyBI%2CUACI%3BEACI%3B%3BAA3BZ%2C6BAyBI%2CUACI%2CSAGI%2CEAAC%3BEACG%3B%3BAA9BhB%2C6BAyBI%2CUASI%3BAAlCR%2C6BAyBI%2CU5BuuBJ%2CeAmPI%2CcAAc%3BE4Bh9BN%3B%3BAAIR%2C6BAAC%2CYACG%3BEACI%3BEACA%3B%3BAAHR%2C6BAAC%2CYACG%2CWAII%3BEACI%3BEACA%3BEACA%3BEACA%3B%3BAATZ%2C6BAAC%2CYACG%2CWAWI%3BEACI%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAApBZ%2C6BAAC%2CYAwBG%3BEACI%3B%3BAAzBR%2C6BAAC%2CYA4BG%3BEACI%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%3BACvHZ%3BEACI%3BEACA%3B%3BAAFJ%2CyBAII%3BEACI%3BEACA%3BEACA%3B%3BAAPR%2CyBAUI%3BEACI%3B%3BAAXR%2CyBAcI%3BEACI%2CyBAAA%3BEACA%2C4BAAA%3BE5BwGJ%2CqDAAA%3BEACA%2CkDAAA%3BEACA%2C6CAAA%3BE4BxGI%3B%3BAAlBR%2CyBAqBI%3BE5BlBA%2CgBAAA%3BEACA%2CgBAAA%3BE4BmBI%3B%3BAAvBR%2CyBA0BI%3BEACI%3BEACA%3B%3BAA5BR%2CyBA%2BBI%2COAAM%3BEACF%3B%3BAAhCR%2CyBA%2BBI%2COAAM%2CWAGF%3BEACI%3BEACA%3B%3BAApCZ%2CyBA%2BBI%2COAAM%2CWAQF%3BEACI%3B%3BAAxCZ%2CyBA4CI%2COAAM%3BEACF%3B%3BAA7CR%2CyBA4CI%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%3BI5BrEJ%2CgBAAA%3BIACA%2CgBAAA%3B%3BE4B6EA%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%3BACzIhB%3BEACI%3BEACA%3B%3BAAFJ%2CsBAII%3BEACI%3B%3BAALR%2CsBAQI%2CUACI%2CSAAS%2CEAAC%3BEACN%3B%3BAAVZ%2CsBAQI%2CUAKI%3BAAbR%2CsBAQI%2CU9BwvBJ%2CeAmPI%2CcAAc%3BE8Br%2BBN%3B%3BAAdZ%2CsBAkBI%2CUAAS%3BEACL%2CuBAAA%3B%3BAAIA%2CsBADJ%2CYACK%3BEACG%2CSAAS%2CEAAT%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CyBAAA%3B%3BAA%5C%2FBZ%2CsBAmCI%2CWACI%3BEACI%3B%3BAArCZ%2CsBAyCI%2CWAAU%3BEACN%3BEACA%3BEACA%3BEACA%3B%3BAAGJ%2CsBAAC%2COACG%2CUAAS%3BEACL%3B%3BAAFR%2CsBAAC%2COAKG%2CUAAU%3BEACN%2CuBAAA%3BEACA%3B%3BAAIR%2CsBAAC%2COAAO%2CWACJ%3BE7ByKJ%2CiCAAA%3BEACA%2C6BAAA%3BEACA%2CyBAAA%3B%3BA6BtKA%2CsBAAC%2CYACG%3BEACI%3BEACA%3B%3BAAHR%2CsBAAC%2CYAMG%3BEACI%3B%3BAAPR%2CsBAAC%2CYAUG%3BEACI%3B%3BAAgBR%2CQAZ%2BB%3BEAY%5C%2FB%2CsBAXI%2CUAAS%3BIACL%2CqBAAA%3B%3BEAUR%2CsBAPI%2CWAAW%3BIACP%3BIACA%3BIACA%3B%3B%3BAAcR%2CQAV2B%3BEAU3B%3BIATI%3BIACA%3B%3BEAEA%2CsBAAC%2COAAQ%2CUAAU%3BIACf%2CqBAAA%3BIACA%3B%3B%3BAAmDR%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%3B%3BEA6BR%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%3BACzJZ%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%3BAAwBhB%2CQAnB%2BB%3BEAmB%5C%2FB%3BIAlBQ%3BIACA%3B%3BEAiBR%2CwBAfQ%3BIACI%3B%3BEAcZ%2CwBAXQ%3BIACI%3B%3BEAUZ%2CwBAXQ%2CcAGI%3BIACI%3BIACA%3BIACA%3BIACA%3B%3B%3BAClEhB%3BEACI%3BEACA%3B%3BAAFJ%2CqBAII%3BEACI%3B%3BAALR%2CqBAQI%3BEACI%3B%3BAATR%2CqBAYI%3BEACI%3B%3BAAWJ%2CQAR2B%3BEAQ3B%3BIAPI%3B%3BEAOJ%2CqBALI%3BIACI%3B%3B%3BAAQZ%2CQAJ%2BB%3BEAI%5C%2FB%3BIAHQ%3BIACA%3B%3B%3BAC1BR%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%2CuBAAA%3BEjC%2BCJ%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECkIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3BAgClMlE%2CeAkBI%2COAAM%3BEjCsGN%2CqDAAA%3BEACA%2CkDAAA%3BEACA%2C6CAAA%3BEiCtGI%3B%3BAApBR%2CeAkBI%2COAAM%2CMAIF%3BEACI%3B%3BAAvBZ%2CeA2BI%3BEACI%3B%3BAAYR%2CQAL%2BB%3BEAK%5C%2FB%2CeAJQ%3BIACI%2CuBAAA%3B%3B%3BACrCZ%3BEACI%3BEACA%3B%3BAAFJ%2CsBAII%3BEACI%3B%3BAALR%2CsBAQI%2CUACI%3BEACI%3B%3BAAVZ%2CsBAcI%2CUAAS%3BEACL%2CuBAAA%3B%3BAAfR%2CsBAkBI%2CWACI%3BEACI%3B%3BAApBZ%2CsBAwBI%2CWAAU%3BEACN%3BEACA%3BEACA%3BEACA%3B%3BAA5BR%2CsBA%2BBI%3BEACI%3B%3BAAhCR%2CsBAmCI%2CYAAY%3BEACR%2CyBAAA%3BEACA%3BElCwBJ%2CyCAAA%3BEACA%2CsCAAA%3BEACA%2CoCAAA%3BEACA%2CiCAAA%3B%3BAkChEJ%2CsBAyCI%2CYAAW%2CMAAO%3BEACd%3BElCmBJ%2CyCAAA%3BEACA%2CsCAAA%3BEACA%2CoCAAA%3BEACA%2CiCAAA%3B%3BAkChEJ%2CsBA8CI%2CYAAY%3BEACR%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BAAnDR%2CsBAsDI%2CWAAU%3BEACN%2CSAAS%2CEAAT%3BEACA%2C8CAAA%3BEACA%3BEACA%3BElCGJ%2C2CAAA%3BEACA%2CwCAAA%3BEACA%2CsCAAA%3BEACA%2CmCAAA%3B%3BAkChEJ%2CsBA8DI%2CYAAW%2CMAAO%2CWAAU%3BEACxB%2CWAAW%2CUAAX%3BElCFJ%2C2CAAA%3BEACA%2CwCAAA%3BEACA%2CsCAAA%3BEACA%2CmCAAA%3B%3BAkCGA%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%3BAC9IZ%2CiBAEI%3BEACI%3B%3BAAHR%2CiBAMI%3BEACI%2CkBAAA%3B%3BAAPR%2CiBAUI%3BEACI%3BEACA%2CeAAA%3B%3BAAZR%2CiBAeI%3BEACI%3B%3BAAhBR%2CiBAmBI%3BEACI%3BEACA%3B%3BAArBR%2CiBAwBI%2CaAAY%3BEACR%2CSAAS%2CEAAT%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%2CyBAAA%3B%3BAA9BR%2CiBAiCI%2CaAAY%2CcAAc%3BEACtB%3B%3BAAlCR%2CiBAqCI%2CaAAa%3BEnCwBb%2CyCAAA%3BEACA%2CsCAAA%3BEACA%2CoCAAA%3BEACA%2CiCAAA%3B%3BAmChEJ%2CiBAyCI%2CaAAY%2COAAQ%3BEAChB%3B%3BAA1CR%2CiBA6CI%3BEACI%3BEACA%2CeAAA%3B%3BAA%5C%2FCR%2CiBA6CI%2CaAII%3BEACI%3B%3BAAlDZ%2CiBA6CI%2CaAQI%3BEACI%3BEACA%3BEACA%3BEnCNR%2CYAAA%3BEACA%2CaAAA%3B%3BAmCUQ%2CiBAhBR%2CaAeI%2CgBAAe%2CMACV%3BEACG%2CcAAA%3BEACA%2CqBAAA%3B%3BAA%5C%2FDhB%2CiBA6CI%2CaAsBI%2CgBAAe%3BEACX%2CSAAS%2COAAT%3BEACA%2CapCrBE%2CoBoCqBF%3BEACA%2CcAAA%3BEACA%3BEACA%3BEnCtBR%2CYAAA%3BEACA%2CaAAA%3BEAhDA%2CeAAA%3BEACA%2CeAAA%3BEmCuEQ%3BEACA%2CyBAAA%3BEnCsER%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAgFA%2C%2BBAAA%3BEACA%2C2BAAA%3BEACA%2CuBAAA%3BEAgBA%2C2BAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3B%3BAmCzJA%2CQAb4B%3BEAa5B%2CiBAZI%2CaAEI%3BInCpCR%2CYAAA%3BIACA%2CaAAA%3B%3BEmC6CA%2CiBAZI%2CaAMI%2CgBAAe%3BInCxCvB%2CYAAA%3BIACA%2CaAAA%3B%3B%3BAmC2DJ%2CQAdmC%3BEAcnC%2CiBAbQ%3BIACI%3B%3BEAYZ%2CiBAbQ%2CaAGI%3BInClDR%2CWAAA%3BIACA%2CYAAA%3BImCmDY%3B%3BEAQhB%2CiBAbQ%2CaAQI%2CgBAAe%3BInCvDvB%2CWAAA%3BIACA%2CYAAA%3B%3B%3BAoCnDJ%2CcAEI%3BEpC0BA%2CkBAAA%3BEACA%2CmBAAA%3B%3BAoC7BJ%2CcAMI%3BEACI%2CcAAA%3BEpC0BJ%2CkBAAA%3BEACA%2CmBAAA%3B%3BAoClCJ%2CcAWI%3BEpCRA%2CeAAA%3BEACA%2CiBAAA%3BEoCSI%3B%3BAAcJ%2CQAX%2BB%3BEAW%5C%2FB%2CcAVI%3BIpCWJ%2CcAAA%3BIACA%2CeAAA%3B%3BEoCFA%2CcANI%3BIACI%2CcAAA%3BIpCWR%2CkBAAA%3BIACA%2CmBAAA%3B%3B%3BAoCFJ%2CQALgC%3BEAKhC%2CcAJQ%3BIACI%2CcAAA%3B%3B%3BAC7BZ%2CUAEI%3BErC0BA%2CkBAAA%3BEACA%2CmBAAA%3B%3BAqC7BJ%2CUAMI%2CYAAW%2CcACP%2CYACI%2CWAAW%3BEACP%2CyBAAA%3BEACA%2CcAAA%3B%3BAAVhB%2CUAgBI%3BErCiBA%2CkBAAA%3BEACA%2CmBAAA%3B%3BAqClCJ%2CUAoBI%3BEACI%2CwBAAA%3BErC6HJ%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAyBA%2CuBAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3B%3BAqChLJ%2CUA0BI%3BEACI%3BEACA%3B%3BAA5BR%2CUA0BI%2CUAII%3BEACI%3B%3BAA%5C%2FBZ%2CUAmCI%3BEACI%3B%3BAApCR%2CUAuCI%3BErCpCA%2CeAAA%3BEACA%2CiBAAA%3BEqCqCI%3B%3BAAzCR%2CUA4CI%3BEACI%2CgBAAA%3B%3BAA7CR%2CUAgDI%3BEACI%3B%3BAASJ%2CQAN2B%3BEAM3B%2CUALI%3BIrCzBJ%2CgBAAA%3BIACA%2CiBAAA%3B%3B%3BAqCmCJ%2CQAN%2BB%3BEAM%5C%2FB%2CUALQ%3BIACI%3BIACA%3B%3B%3BAC7DZ%2CeAUI%3BEACI%2CwBAAA%3BEACA%2CmCAAA%3BEtCsIJ%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAyBA%2CuBAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3B%3BAsChLJ%2CeAiBI%3BEACI%3BEACA%3B%3BAAnBR%2CeAiBI%2CUAII%3BEACI%3B%3BAAtBZ%2CeA0BI%3BEACI%3B%3BAA3BR%2CeA8BI%3BEtC3BA%2CeAAA%3BEACA%2CiBAAA%3BEsC4BI%3B%3BAAhCR%2CeAmCI%3BEACI%2CgBAAA%3B%3BAApCR%2CeAuCI%3BEACI%3B%3BAAQR%2CQAL%2BB%3BEAK%5C%2FB%2CeAJQ%3BItChBJ%2CgBAAA%3BIACA%2CiBAAA%3B%3B%3BAuC7BJ%2CWAUI%3BEACI%3BEvCuIJ%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BEAyBA%2CuBAAA%3BEACA%2CmBAAA%3BEACA%2CeAAA%3B%3BAuChLJ%2CWAoBI%3BEACI%2CgBAAA%3BEACA%2CcAAA%3B%3BAAtBR%2CWAyBI%3BEvCmIA%2CqBAAA%3BEACA%2CiBAAA%3BEACA%2CaAAA%3BECnGI%3BEAAsB%3BEAAsB%3B%3BAsCrBhD%2CQAN2B%3BEAM3B%2CWALI%3BIvCLJ%2CgBAAA%3BIACA%2CiBAAA%3B%3B%3BAuCgBJ%2CQAP%2BB%3BEAO%5C%2FB%2CWANQ%2CkBACI%3BIACI%3B%3B%3B%3BAAQhB%2CYACI%2CYACI%3BEACI%2CkBAAA%3BEACA%3B%3B%3BAClDZ%2CYACI%3BEACI%3B%3BAAFR%2CYACI%2C8BAEI%2CGAAE%3BEACE%2CcAAA%3BEACA%2C0BAAA%3B%3B%3BAAMZ%2CYACI%3BEACI%3B%3BAAFR%2CYACI%2C8BAEI%2CGAAE%3BEACE%2CcAAA%3BEACA%2C0BAAA%3B%3B%3BAAMZ%2CaACI%3BEACI%3B%3BAAFR%2CaACI%2C8BAEI%2CGAAE%3BEACE%2CcAAA%3BEACA%2C0BAAA%3B%3B%3BAAMZ%2CaACI%3BEACI%3B%3BAAFR%2CaACI%2C8BAEI%2CGAAE%3BEACE%2CcAAA%3BEACA%2C0BAAA%3B%3B%3BAAMZ%2CaACI%3BEACI%3B%3BAAFR%2CaACI%2C8BAEI%2CGAAE%3BEACE%2CcAAA%3BEACA%2C0BAAA%3B%3B%3BAAMZ%2CYACI%3BEACI%3B%3BAAFR%2CYACI%2C8BAEI%2CGAAE%3BEACE%2CcAAA%3BEACA%2C0BAAA%3B%3B%3BAA2CZ%2CQApC8B%3BEAC1B%2CYACI%2CiBACI%2COACI%2COAAM%2CUAAU%3BEAHd%2CYACV%2CiBACI%2COACI%2COAAM%2CUAAU%3BIACZ%3BIACA%3BIACA%3B%3BEANhB%2CYACI%2CiBACI%2COAOI%2COAAM%2CUAAU%3BEATd%2CYACV%2CiBACI%2COAOI%2COAAM%2CUAAU%3BIACZ%3BIACA%3B%3BEAMhB%2CYACI%2CiBACI%2COACI%2COAAM%2CUAAU%3BIACZ%3BIACA%3BIACA%3B%3BEANhB%2CYACI%2CiBACI%2COAOI%2COAAM%2CUAAU%3BIACZ%3BIACA%3B%3B%3B%3BAASpB%2COACI%3BEACI%3BEACA%3B%3B%3BAAMR%2CSACI%3BEACI%3BEACA%3B%3B%3B%3B%3BACrHR%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%2CeACI%3BEACI%3B%3BAAFR%2CeAKI%3BEACI%2C4BAAA%3BE1CkHJ%2CqDAAA%3BEACA%2CkDAAA%3BEACA%2C6CAAA%3BE0ClHI%3B%3BAARR%2CeAKI%2CkBAKI%3BEACI%3BEACA%3BEACA%3B%3BAAbZ%2CeAKI%2CkBAWI%3BEACI%3B%3BAAjBZ%2CeAKI%2CkBAeI%3BE1CjBJ%2CeAAA%3BEACA%2CiBAAA%3B%3BA0CJJ%2CeAKI%2CkBAmBI%2CaAAa%3BEACT%2CcAAA%3B%3BAAEA%2CeAtBR%2CkBAmBI%2CaAAa%2CEAGR%3BEACG%2CcAAA%3B%3BAA5BhB%2CeAKI%2CkBA2BI%3BEACI%3B%3BAAaR%2CQAT8B%3BEAS9B%2CeARI%2CkBACI%3BIACI%3BIACA%3B%3B%3BAAqBZ%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%3BAAkBZ%2CQAb8B%3BEAa9B%2CeAZI%3BIACI%3B%3BEAWR%2CeAZI%2CkBAGI%3BIACI%3BIACA%3BIACA%3BIACA%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%3BE1CpGA%2CeAAA%3BEACA%2CiBAAA%3BE0CqGI%3B%3BAAPR%2CsBAKI%2CgBAII%3BEACI%3B%3BAAVZ%2CsBAKI%2CgBAQI%3BEACI%3BEACA%3BEACA%3B%3BAAhBZ%2CsBAKI%2CgBAcI%3BAAnBR%2CsBAKI%2CgBAeI%2CSAAW%3BEACP%3B%3BAArBZ%2CsBAKI%2CgBAmBI%2CSAAW%3BEACP%3BEACA%3BEACA%3BEACA%3B%3BAA5BZ%2CsBAKI%2CgBA0BI%2CSAAW%2CIAAC%3BEACR%2Ca3CjFO%2CuB2CiFP%3BEACA%2CgBAAA%3BE1ChIR%2CeAAA%3BEACA%2CiBAAA%3B%3BA0C8FJ%2CsBAKI%2CgBAgCI%2CqBAAoB%3BEAChB%2CSAAS%2COAAT%3B%3BAAtCZ%2CsBAKI%2CgBAoCI%2CoBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAA1CZ%2CsBAKI%2CgBAwCI%2CqBAAoB%3BEAChB%2CSAAS%2COAAT%3B%3BAA9CZ%2CsBAkDI%3BEACI%3B%3BAASJ%2CQAN8B%3BEAM9B%2CsBALI%3BIACI%3B%3B%3BAAuBZ%2CQAnBkC%3BEAmBlC%2CsBAlBQ%2CgBACI%3BI1C7JR%2CeAAA%3BIACA%2CiBAAA%3B%3BE0C6KJ%2CsBAlBQ%2CgBAKI%3BIACI%3B%3BEAYhB%2CsBAlBQ%2CgBASI%2CSAAW%3BIACP%3B%3BEAQhB%2CsBAlBQ%2CgBAaI%2CSAAW%2CIAAC%3BI1CzKpB%2CeAAA%3BIACA%2CiBAAA%3B%3B%3BA0C%2BKJ%3BEACI%2CYAAA%3BEACA%2CgBAAA%3B%3BAAFJ%2CQAII%3BEACI%3BEACA%3BEACA%2CsBAAA%3B%3BAAPR%2CQAUI%3BEACI%3B%3BAAXR%2CQAcI%3BEACI%3BEACA%3BEACA%2C0BAAA%3B%3BAAjBR%2CQAcI%2CgBAKI%2CgBAAgB%3BE1C9EpB%2CwBAAA%3BEACA%2CqBAAA%3BEACA%2CgBAAA%3B%3BA0CyDJ%2CQAwBI%3BAAxBJ%2CQAyBI%3BEACI%3BEACA%3BEACA%2C0BAAA%3B%3BAA5BR%2CQAwBI%2CmBAMI%3BAA9BR%2CQAyBI%2CeAKI%3BEACI%3BEACA%3BE1ChNR%2CeAAA%3BEACA%2CeAAA%3B%3BA0CkNQ%2CQAXR%2CmBAMI%2CcAKK%3BAAAD%2CQAVR%2CeAKI%2CcAKK%3BEACG%2CSAAS%2COAAT%3BEACA%3BEACA%2Ca3CzKF%2CoB2CyKE%3BEACA%3BEACA%3BE1CrJZ%2CmB0CsJuB%2CgB1CtJvB%3BEACA%2CgB0CqJuB%2CgB1CrJvB%3BEACA%2Cc0CoJuB%2CgB1CpJvB%3BEACA%2Ce0CmJuB%2CgB1CnJvB%3BEACA%2CW0CkJuB%2CgB1ClJvB%3BEAbA%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECkIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3BAyC8BtD%2CQArBR%2CmBAMI%2CcAeK%2COAAO%3BAAAR%2CQApBR%2CeAKI%2CcAeK%2COAAO%3BE1C1JhB%2CmB0C2JuB%2CiBAAiB%2Cc1C3JxC%3BEACA%2CgB0C0JuB%2CiBAAiB%2Cc1C1JxC%3BEACA%2Cc0CyJuB%2CiBAAiB%2Cc1CzJxC%3BEACA%2Ce0CwJuB%2CiBAAiB%2Cc1CxJxC%3BEACA%2CW0CuJuB%2CiBAAiB%2Cc1CvJxC%3B%3BA0CyGJ%2CQAwBI%2CmBA0BI%3BAAlDR%2CQAyBI%2CeAyBI%3BEACI%3B%3BAAnDZ%2CQAuDI%3BEACI%2CcAAA%3BEACA%2CcAAA%3B%3BAAEA%2CQAJJ%2CMAIK%3BEACG%2CcAAA%3B%3BAA5DZ%2CQAgEI%3BEACI%2CsBAAA%3B%3BAAjER%2CQAgEI%2CWAGI%3BE1CnPJ%2CeAAA%3BEACA%2CiBAAA%3BE0CoPQ%2CcAAA%3BEACA%2CyBAAA%3BE1CjPR%2C6BAAA%3BEACA%2C0BAAA%3BEACA%2CqBAAA%3BEAmDA%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECkIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3BEyC0DtD%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%3B%3BAAfR%2CcAkBI%2CSAAW%2CIAAC%3BEACR%2Ca3C9OW%2CuB2C8OX%3BEACA%2CgBAAA%3BE1C7RJ%2CeAAA%3BEACA%2CiBAAA%3B%3BA0CwQJ%2CcAwBI%2CqBAAoB%3BEAChB%2CSAAS%2COAAT%3B%3BAAzBR%2CcA4BI%2CoBAAmB%3BEACf%2CSAAS%2COAAT%3B%3BAA7BR%2CcAgCI%2CqBAAoB%3BEAChB%2CSAAS%2COAAT%3B%3BAAIR%3BEACI%2C0BAAA%3BEACA%2CeAAA%3B%3BAAFJ%2CkBAII%3BAAJJ%2CkBAKI%3BEACI%3B%3BAANR%2CkBASI%3BEACI%3B%3BAAVR%2CkBAaI%3BEACI%3B%3BAAdR%2CkBAiBI%3BEACI%3B%3BAAIR%3BE1C3SI%2CkBAAA%3BEACA%2CmBAAA%3B%3BA0C6SA%2CKAAM%3BEACF%3B%3BAAJR%2CoBAOI%3BEACI%3B%3BAARR%2CoBAWI%3BEACI%2CoCAAA%3BE1CtRJ%2CqCAAA%3BEACA%2CkCAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BECkIU%2CoBAAA%3BEAAsB%2C4BAAA%3BEAA8B%2CyBAAA%3B%3BAyCqIlE%2CoBAgBI%3BEACI%3B%3BAAjBR%2CoBAoBI%2CEAAC%2CMACG%3BEACI%2CyBAAA%3B%3BAAeZ%2CQAX%2BB%3BEAW%5C%2FB%3BI1ChVI%2CkBAAA%3BIACA%2CmBAAA%3B%3BE0CuUI%2CKAAM%3BIACF%3B%3BEAOZ%2CoBAJQ%3BIACI%22%7D */