/*
Theme Name: Breakdance Zero Theme
Theme URI: https://breakdance.com/zero-theme // todo
Author: Breakdance Builder
Author URI: https://breakdance.com/
Description: Entirely disables the WordPress theme system and lets you design every part of your site with Breakdance, while keeping other theme functionality like templates overrides and functions.php.
Version: 1.0.0
Tested up to: 5.9
Requires PHP: 7
License: GNU General Public License v2 or later // todo no idea about this
License URI: LICENSE
Text Domain: breakdance

Requires Breakdance to be installed.
/*--------------------------------------------------------------
*/
body {
  -webkit-backface-visibility: hidden;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  animation-iteration-count: infinite;
}
.animated.slowInfinite {
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@-webkit-keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
  }
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(10px);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
  }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%,
  20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
@-webkit-keyframes slow-pulse {
  0% {
    -webkit-transform: scale(1);
  }
  12.5% {
    -webkit-transform: scale(1.1);
  }
  25% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes slow-pulse {
  0% {
    -webkit-transform: scale(1);
  }
  12.5% {
    -webkit-transform: scale(1.1);
  }
  25% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
.slow-pulse {
  -webkit-animation-name: slow-pulse;
  animation-name: slow-pulse;
}
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.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: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.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;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) skewX(0);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0) skewX(0);
    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% {
    -webkit-transform: translateX(0) skewX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    transform: translateX(0) skewX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) 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 rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
meta.foundation-version {
  font-family: "/{{VERSION}}/";
}
meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0;
}
meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em;
}
meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em;
}
meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em;
}
meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em;
}
meta.foundation-data-attribute-namespace {
  font-family: false;
}
body,
html {
  height: 100%;
}
*,
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body,
html {
  font-size: 1rem;
}
body {
  background-color: #f1f1f1;
  color: #222;
  padding: 0;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.625rem;
  position: relative;
  cursor: auto;
}
a:hover {
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
}
img {
  -ms-interpolation-mode: bicubic;
}
#map_canvas embed,
#map_canvas img,
#map_canvas object,
.map_canvas embed,
.map_canvas img,
.map_canvas object {
  max-width: none !important;
}
.left {
  float: left !important;
}
.right {
  float: right !important;
}
.clearfix:after,
.clearfix:before {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.hide {
  display: none;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: inline-block;
  vertical-align: middle;
}
textarea {
  height: auto;
  min-height: 50px;
}
select {
  width: 100%;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-justify {
  text-align: justify !important;
}
@media only screen and (max-width: 40em) {
  .small-only-text-left {
    text-align: left !important;
  }
  .small-only-text-right {
    text-align: right !important;
  }
  .small-only-text-center {
    text-align: center !important;
  }
  .small-only-text-justify {
    text-align: justify !important;
  }
}
@media only screen {
  .small-text-left {
    text-align: left !important;
  }
  .small-text-right {
    text-align: right !important;
  }
  .small-text-center {
    text-align: center !important;
  }
  .small-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width: 40.063em) and (max-width: 64em) {
  .medium-only-text-left {
    text-align: left !important;
  }
  .medium-only-text-right {
    text-align: right !important;
  }
  .medium-only-text-center {
    text-align: center !important;
  }
  .medium-only-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width: 40.063em) {
  .medium-text-left {
    text-align: left !important;
  }
  .medium-text-right {
    text-align: right !important;
  }
  .medium-text-center {
    text-align: center !important;
  }
  .medium-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  .large-only-text-left {
    text-align: left !important;
  }
  .large-only-text-right {
    text-align: right !important;
  }
  .large-only-text-center {
    text-align: center !important;
  }
  .large-only-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width: 64.063em) {
  .large-text-left {
    text-align: left !important;
  }
  .large-text-right {
    text-align: right !important;
  }
  .large-text-center {
    text-align: center !important;
  }
  .large-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width: 90.063em) and (max-width: 120em) {
  .xlarge-only-text-left {
    text-align: left !important;
  }
  .xlarge-only-text-right {
    text-align: right !important;
  }
  .xlarge-only-text-center {
    text-align: center !important;
  }
  .xlarge-only-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width: 90.063em) {
  .xlarge-text-left {
    text-align: left !important;
  }
  .xlarge-text-right {
    text-align: right !important;
  }
  .xlarge-text-center {
    text-align: center !important;
  }
  .xlarge-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width: 120.063em) and (max-width: 99999999em) {
  .xxlarge-only-text-left {
    text-align: left !important;
  }
  .xxlarge-only-text-right {
    text-align: right !important;
  }
  .xxlarge-only-text-center {
    text-align: center !important;
  }
  .xxlarge-only-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width: 120.063em) {
  .xxlarge-text-left {
    text-align: left !important;
  }
  .xxlarge-text-right {
    text-align: right !important;
  }
  .xxlarge-text-center {
    text-align: center !important;
  }
  .xxlarge-text-justify {
    text-align: justify !important;
  }
}
blockquote,
dd,
div,
dl,
dt,
form,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ol,
p,
pre,
td,
th,
ul {
  margin: 0;
  padding: 0;
}
a {
  color: #008cba;
  text-decoration: none;
  line-height: inherit;
}
a:focus,
a:hover {
  color: #0078a0;
}
a img {
  border: none;
}
p {
  font-family: inherit;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  text-rendering: optimizeLegibility;
}
p.lead {
  font-size: 1.21875rem;
  line-height: 1.6;
}
p aside {
  font-size: 0.875rem;
  line-height: 1.35;
  font-style: italic;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Helvetica Neue", Helvetica, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  font-size: 60%;
  color: #6f6f6f;
  line-height: 0;
}
h1 {
  font-size: 2.109375rem;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.1979166667rem;
}
h4 {
  font-size: 1rem;
}
h5 {
  font-size: 1rem;
}
h6 {
  font-size: 1rem;
}
.subheader {
  line-height: 1.2;
  color: #6f6f6f;
  font-weight: 400;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
}
hr {
  border: solid #ddd;
  border-width: 1px 0 0;
  clear: both;
  margin: 1.25rem 0 1.1875rem;
  height: 0;
}
em,
i {
  font-style: italic;
  line-height: inherit;
}
b,
strong {
  font-weight: 700;
  line-height: inherit;
}
small {
  font-size: 60%;
  line-height: inherit;
}
code {
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: 400;
  color: #333;
  background-color: #f8f8f8;
  border-width: 1px;
  border-style: solid;
  border-color: #dfdfdf;
  padding: 0.125rem 0.3125rem 0.0625rem;
}
dl,
ol,
ul {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  list-style-position: outside;
  font-family: inherit;
}
ul {
  margin-left: 1.1rem;
}
ul.no-bullet {
  margin-left: 0;
}
ul.no-bullet li ol,
ul.no-bullet li ul {
  margin-left: 1.25rem;
  margin-bottom: 0;
  list-style: none;
}
ul li ol,
ul li ul {
  margin-left: 1.25rem;
  margin-bottom: 0;
}
ul.circle li ul,
ul.disc li ul,
ul.square li ul {
  list-style: inherit;
}
ul.square {
  list-style-type: square;
  margin-left: 1.1rem;
}
ul.circle {
  list-style-type: circle;
  margin-left: 1.1rem;
}
ul.disc {
  list-style-type: disc;
  margin-left: 1.1rem;
}
ul.no-bullet {
  list-style: none;
}
ol {
  margin-left: 1.4rem;
}
ol li ol,
ol li ul {
  margin-left: 1.25rem;
  margin-bottom: 0;
}
dl dt {
  margin-bottom: 0.3rem;
  font-weight: 700;
}
dl dd {
  margin-bottom: 0.75rem;
}
abbr,
acronym {
  text-transform: uppercase;
  font-size: 90%;
  color: #222;
  border-bottom: 1px dotted #ddd;
  cursor: help;
}
abbr {
  text-transform: none;
}
blockquote {
  margin: 0 0 1.25rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #ddd;
}
blockquote cite {
  display: block;
  font-size: 0.8125rem;
  color: #555;
}
blockquote cite:before {
  content: "\2014 \0020";
}
blockquote cite a,
blockquote cite a:visited {
  color: #555;
}
blockquote,
blockquote p {
  line-height: 1.6;
  color: #6f6f6f;
}
.vcard {
  display: inline-block;
  margin: 0 0 1.25rem 0;
  border: 1px solid #ddd;
  padding: 0.625rem 0.75rem;
}
.vcard li {
  margin: 0;
  display: block;
}
.vcard .fn {
  font-weight: 700;
  font-size: 0.9375rem;
}
.vevent .summary {
  font-weight: 700;
}
.vevent abbr {
  cursor: default;
  text-decoration: none;
  font-weight: 700;
  border: none;
  padding: 0 0.0625rem;
}
@media only screen and (min-width: 40.063em) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.2;
  }
  h1 {
    font-size: 2.8125rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.4375rem;
  }
  h4 {
    font-size: 1rem;
  }
  h5 {
    font-size: 1rem;
  }
  h6 {
    font-size: 1rem;
  }
}
.print-only {
  display: none !important;
}
@media print {
  * {
    background: 0 0 !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  blockquote,
  pre {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  img,
  tr {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  h2,
  h3,
  p {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .hide-on-print {
    display: none !important;
  }
  .print-only {
    display: block !important;
  }
  .hide-for-print {
    display: none !important;
  }
  .show-for-print {
    display: inherit !important;
  }
}
.row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 1200px;
}
.row:after,
.row:before {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}
.row.collapse > .column,
.row.collapse > .columns {
  padding-left: 0;
  padding-right: 0;
}
.row.collapse .row {
  margin-left: 0;
  margin-right: 0;
}
.row .row {
  width: auto;
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none;
}
.row .row:after,
.row .row:before {
  content: " ";
  display: table;
}
.row .row:after {
  clear: both;
}
.row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none;
}
.row .row.collapse:after,
.row .row.collapse:before {
  content: " ";
  display: table;
}
.row .row.collapse:after {
  clear: both;
}
.column,
.columns {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  width: 100%;
  float: left;
}
[class*="column"] + [class*="column"]:last-child {
  float: right;
}
[class*="column"] + [class*="column"].end {
  float: left;
}
@media only screen {
  .small-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .small-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .small-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .small-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .small-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .small-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .small-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .small-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .small-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .small-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .small-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .small-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .small-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .small-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .small-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .small-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .small-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .small-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .small-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .small-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .small-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .small-1 {
    width: 8.3333333333%;
  }
  .small-2 {
    width: 16.6666666667%;
  }
  .small-3 {
    width: 25%;
  }
  .small-4 {
    width: 33.3333333333%;
  }
  .small-5 {
    width: 41.6666666667%;
  }
  .small-6 {
    width: 50%;
  }
  .small-7 {
    width: 58.3333333333%;
  }
  .small-8 {
    width: 66.6666666667%;
  }
  .small-9 {
    width: 75%;
  }
  .small-10 {
    width: 83.3333333333%;
  }
  .small-11 {
    width: 91.6666666667%;
  }
  .small-12 {
    width: 100%;
  }
  .small-offset-0 {
    margin-left: 0 !important;
  }
  .small-offset-1 {
    margin-left: 8.3333333333% !important;
  }
  .small-offset-2 {
    margin-left: 16.6666666667% !important;
  }
  .small-offset-3 {
    margin-left: 25% !important;
  }
  .small-offset-4 {
    margin-left: 33.3333333333% !important;
  }
  .small-offset-5 {
    margin-left: 41.6666666667% !important;
  }
  .small-offset-6 {
    margin-left: 50% !important;
  }
  .small-offset-7 {
    margin-left: 58.3333333333% !important;
  }
  .small-offset-8 {
    margin-left: 66.6666666667% !important;
  }
  .small-offset-9 {
    margin-left: 75% !important;
  }
  .small-offset-10 {
    margin-left: 83.3333333333% !important;
  }
  .small-offset-11 {
    margin-left: 91.6666666667% !important;
  }
  .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left;
  }
  .column.small-centered,
  .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.small-uncentered,
  .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left;
  }
  .column.small-centered:last-child,
  .columns.small-centered:last-child {
    float: none;
  }
  .column.small-uncentered:last-child,
  .columns.small-uncentered:last-child {
    float: left;
  }
  .column.small-uncentered.opposite,
  .columns.small-uncentered.opposite {
    float: right;
  }
}
@media only screen and (min-width: 40.063em) {
  .medium-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .medium-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .medium-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .medium-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .medium-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .medium-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .medium-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .medium-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .medium-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .medium-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .medium-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .medium-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .medium-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .medium-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .medium-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .medium-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .medium-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .medium-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .medium-1 {
    width: 8.3333333333%;
  }
  .medium-2 {
    width: 16.6666666667%;
  }
  .medium-3 {
    width: 25%;
  }
  .medium-4 {
    width: 33.3333333333%;
  }
  .medium-5 {
    width: 41.6666666667%;
  }
  .medium-6 {
    width: 50%;
  }
  .medium-7 {
    width: 58.3333333333%;
  }
  .medium-8 {
    width: 66.6666666667%;
  }
  .medium-9 {
    width: 75%;
  }
  .medium-10 {
    width: 83.3333333333%;
  }
  .medium-11 {
    width: 91.6666666667%;
  }
  .medium-12 {
    width: 100%;
  }
  .medium-offset-0 {
    margin-left: 0 !important;
  }
  .medium-offset-1 {
    margin-left: 8.3333333333% !important;
  }
  .medium-offset-2 {
    margin-left: 16.6666666667% !important;
  }
  .medium-offset-3 {
    margin-left: 25% !important;
  }
  .medium-offset-4 {
    margin-left: 33.3333333333% !important;
  }
  .medium-offset-5 {
    margin-left: 41.6666666667% !important;
  }
  .medium-offset-6 {
    margin-left: 50% !important;
  }
  .medium-offset-7 {
    margin-left: 58.3333333333% !important;
  }
  .medium-offset-8 {
    margin-left: 66.6666666667% !important;
  }
  .medium-offset-9 {
    margin-left: 75% !important;
  }
  .medium-offset-10 {
    margin-left: 83.3333333333% !important;
  }
  .medium-offset-11 {
    margin-left: 91.6666666667% !important;
  }
  .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left;
  }
  .column.medium-centered,
  .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.medium-uncentered,
  .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left;
  }
  .column.medium-centered:last-child,
  .columns.medium-centered:last-child {
    float: none;
  }
  .column.medium-uncentered:last-child,
  .columns.medium-uncentered:last-child {
    float: left;
  }
  .column.medium-uncentered.opposite,
  .columns.medium-uncentered.opposite {
    float: right;
  }
  .push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
}
@media only screen and (min-width: 64.063em) {
  .large-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .large-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .large-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .large-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .large-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .large-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .large-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .large-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .large-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .large-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .large-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .large-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .large-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .large-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .large-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .large-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .large-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .large-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .large-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .large-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .large-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .large-1 {
    width: 8.3333333333%;
  }
  .large-2 {
    width: 16.6666666667%;
  }
  .large-3 {
    width: 25%;
  }
  .large-4 {
    width: 33.3333333333%;
  }
  .large-5 {
    width: 41.6666666667%;
  }
  .large-6 {
    width: 50%;
  }
  .large-7 {
    width: 58.3333333333%;
  }
  .large-8 {
    width: 66.6666666667%;
  }
  .large-9 {
    width: 75%;
  }
  .large-10 {
    width: 83.3333333333%;
  }
  .large-11 {
    width: 91.6666666667%;
  }
  .large-12 {
    width: 100%;
  }
  .large-offset-0 {
    margin-left: 0 !important;
  }
  .large-offset-1 {
    margin-left: 8.3333333333% !important;
  }
  .large-offset-2 {
    margin-left: 16.6666666667% !important;
  }
  .large-offset-3 {
    margin-left: 25% !important;
  }
  .large-offset-4 {
    margin-left: 33.3333333333% !important;
  }
  .large-offset-5 {
    margin-left: 41.6666666667% !important;
  }
  .large-offset-6 {
    margin-left: 50% !important;
  }
  .large-offset-7 {
    margin-left: 58.3333333333% !important;
  }
  .large-offset-8 {
    margin-left: 66.6666666667% !important;
  }
  .large-offset-9 {
    margin-left: 75% !important;
  }
  .large-offset-10 {
    margin-left: 83.3333333333% !important;
  }
  .large-offset-11 {
    margin-left: 91.6666666667% !important;
  }
  .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left;
  }
  .column.large-centered,
  .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.large-uncentered,
  .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left;
  }
  .column.large-centered:last-child,
  .columns.large-centered:last-child {
    float: none;
  }
  .column.large-uncentered:last-child,
  .columns.large-uncentered:last-child {
    float: left;
  }
  .column.large-uncentered.opposite,
  .columns.large-uncentered.opposite {
    float: right;
  }
  .push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
}
.accordion {
  margin-bottom: 0;
}
.accordion:after,
.accordion:before {
  content: " ";
  display: table;
}
.accordion:after {
  clear: both;
}
.accordion .accordion-navigation,
.accordion dd {
  display: block;
  margin-bottom: 0 !important;
}
.accordion .accordion-navigation.active > a,
.accordion dd.active > a {
  background: #e8e8e8;
}
.accordion .accordion-navigation > a,
.accordion dd > a {
  background: #efefef;
  color: #222;
  padding: 1rem;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Helvetica, Arial, sans-serif;
  font-size: 1rem;
}
.accordion .accordion-navigation > a:hover,
.accordion dd > a:hover {
  background: #e3e3e3;
}
.accordion .accordion-navigation > .content,
.accordion dd > .content {
  display: none;
  padding: 0.9375rem;
}
.accordion .accordion-navigation > .content.active,
.accordion dd > .content.active {
  display: block;
  background: #fff;
}
.alert-box {
  border-style: solid;
  border-width: 1px;
  display: block;
  font-weight: 400;
  margin-bottom: 1.25rem;
  position: relative;
  padding: 0.875rem 1.5rem 0.875rem 0.875rem;
  font-size: 0.8125rem;
  transition: opacity 0.3s ease-out;
  background-color: #008cba;
  border-color: #0078a0;
  color: #fff;
}
.alert-box .close {
  font-size: 1.375rem;
  padding: 9px 6px 4px;
  line-height: 0;
  position: absolute;
  top: 50%;
  margin-top: -0.6875rem;
  right: 0.25rem;
  color: #333;
  opacity: 0.3;
}
.alert-box .close:focus,
.alert-box .close:hover {
  opacity: 0.5;
}
.alert-box.radius {
  border-radius: 3px;
}
.alert-box.round {
  border-radius: 1000px;
}
.alert-box.success {
  background-color: #43ac6a;
  border-color: #3a945b;
  color: #fff;
}
.alert-box.alert {
  background-color: #ff4136;
  border-color: #ff180b;
  color: #fff;
}
.alert-box.secondary {
  background-color: #e7e7e7;
  border-color: #c7c7c7;
  color: #4f4f4f;
}
.alert-box.warning {
  background-color: #f08a24;
  border-color: #de770f;
  color: #fff;
}
.alert-box.info {
  background-color: #a0d3e8;
  border-color: #74bfdd;
  color: #4f4f4f;
}
.alert-box.alert-close {
  opacity: 0;
}
[class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem;
}
[class*="block-grid-"]:after,
[class*="block-grid-"]:before {
  content: " ";
  display: table;
}
[class*="block-grid-"]:after {
  clear: both;
}
[class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem;
}
@media only screen {
  .small-block-grid-1 > li {
    width: 100%;
    list-style: none;
  }
  .small-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-1 > li:nth-of-type(1n + 1) {
    clear: both;
  }
  .small-block-grid-2 > li {
    width: 50%;
    list-style: none;
  }
  .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-2 > li:nth-of-type(odd) {
    clear: both;
  }
  .small-block-grid-3 > li {
    width: 33.3333333333%;
    list-style: none;
  }
  .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-3 > li:nth-of-type(3n + 1) {
    clear: both;
  }
  .small-block-grid-4 > li {
    width: 25%;
    list-style: none;
  }
  .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-4 > li:nth-of-type(4n + 1) {
    clear: both;
  }
  .small-block-grid-5 > li {
    width: 20%;
    list-style: none;
  }
  .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-5 > li:nth-of-type(5n + 1) {
    clear: both;
  }
  .small-block-grid-6 > li {
    width: 16.6666666667%;
    list-style: none;
  }
  .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-6 > li:nth-of-type(6n + 1) {
    clear: both;
  }
  .small-block-grid-7 > li {
    width: 14.2857142857%;
    list-style: none;
  }
  .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-7 > li:nth-of-type(7n + 1) {
    clear: both;
  }
  .small-block-grid-8 > li {
    width: 12.5%;
    list-style: none;
  }
  .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-8 > li:nth-of-type(8n + 1) {
    clear: both;
  }
  .small-block-grid-9 > li {
    width: 11.1111111111%;
    list-style: none;
  }
  .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-9 > li:nth-of-type(9n + 1) {
    clear: both;
  }
  .small-block-grid-10 > li {
    width: 10%;
    list-style: none;
  }
  .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-10 > li:nth-of-type(10n + 1) {
    clear: both;
  }
  .small-block-grid-11 > li {
    width: 9.0909090909%;
    list-style: none;
  }
  .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-11 > li:nth-of-type(11n + 1) {
    clear: both;
  }
  .small-block-grid-12 > li {
    width: 8.3333333333%;
    list-style: none;
  }
  .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-12 > li:nth-of-type(12n + 1) {
    clear: both;
  }
}
@media only screen and (min-width: 40.063em) {
  .medium-block-grid-1 > li {
    width: 100%;
    list-style: none;
  }
  .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-1 > li:nth-of-type(1n + 1) {
    clear: both;
  }
  .medium-block-grid-2 > li {
    width: 50%;
    list-style: none;
  }
  .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-2 > li:nth-of-type(odd) {
    clear: both;
  }
  .medium-block-grid-3 > li {
    width: 33.3333333333%;
    list-style: none;
  }
  .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-3 > li:nth-of-type(3n + 1) {
    clear: both;
  }
  .medium-block-grid-4 > li {
    width: 25%;
    list-style: none;
  }
  .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-4 > li:nth-of-type(4n + 1) {
    clear: both;
  }
  .medium-block-grid-5 > li {
    width: 20%;
    list-style: none;
  }
  .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-5 > li:nth-of-type(5n + 1) {
    clear: both;
  }
  .medium-block-grid-6 > li {
    width: 16.6666666667%;
    list-style: none;
  }
  .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-6 > li:nth-of-type(6n + 1) {
    clear: both;
  }
  .medium-block-grid-7 > li {
    width: 14.2857142857%;
    list-style: none;
  }
  .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-7 > li:nth-of-type(7n + 1) {
    clear: both;
  }
  .medium-block-grid-8 > li {
    width: 12.5%;
    list-style: none;
  }
  .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-8 > li:nth-of-type(8n + 1) {
    clear: both;
  }
  .medium-block-grid-9 > li {
    width: 11.1111111111%;
    list-style: none;
  }
  .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-9 > li:nth-of-type(9n + 1) {
    clear: both;
  }
  .medium-block-grid-10 > li {
    width: 10%;
    list-style: none;
  }
  .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-10 > li:nth-of-type(10n + 1) {
    clear: both;
  }
  .medium-block-grid-11 > li {
    width: 9.0909090909%;
    list-style: none;
  }
  .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-11 > li:nth-of-type(11n + 1) {
    clear: both;
  }
  .medium-block-grid-12 > li {
    width: 8.3333333333%;
    list-style: none;
  }
  .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-12 > li:nth-of-type(12n + 1) {
    clear: both;
  }
}
@media only screen and (min-width: 64.063em) {
  .large-block-grid-1 > li {
    width: 100%;
    list-style: none;
  }
  .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-1 > li:nth-of-type(1n + 1) {
    clear: both;
  }
  .large-block-grid-2 > li {
    width: 50%;
    list-style: none;
  }
  .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-2 > li:nth-of-type(odd) {
    clear: both;
  }
  .large-block-grid-3 > li {
    width: 33.3333333333%;
    list-style: none;
  }
  .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-3 > li:nth-of-type(3n + 1) {
    clear: both;
  }
  .large-block-grid-4 > li {
    width: 25%;
    list-style: none;
  }
  .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-4 > li:nth-of-type(4n + 1) {
    clear: both;
  }
  .large-block-grid-5 > li {
    width: 20%;
    list-style: none;
  }
  .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-5 > li:nth-of-type(5n + 1) {
    clear: both;
  }
  .large-block-grid-6 > li {
    width: 16.6666666667%;
    list-style: none;
  }
  .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-6 > li:nth-of-type(6n + 1) {
    clear: both;
  }
  .large-block-grid-7 > li {
    width: 14.2857142857%;
    list-style: none;
  }
  .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-7 > li:nth-of-type(7n + 1) {
    clear: both;
  }
  .large-block-grid-8 > li {
    width: 12.5%;
    list-style: none;
  }
  .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-8 > li:nth-of-type(8n + 1) {
    clear: both;
  }
  .large-block-grid-9 > li {
    width: 11.1111111111%;
    list-style: none;
  }
  .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-9 > li:nth-of-type(9n + 1) {
    clear: both;
  }
  .large-block-grid-10 > li {
    width: 10%;
    list-style: none;
  }
  .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-10 > li:nth-of-type(10n + 1) {
    clear: both;
  }
  .large-block-grid-11 > li {
    width: 9.0909090909%;
    list-style: none;
  }
  .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-11 > li:nth-of-type(11n + 1) {
    clear: both;
  }
  .large-block-grid-12 > li {
    width: 8.3333333333%;
    list-style: none;
  }
  .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-12 > li:nth-of-type(12n + 1) {
    clear: both;
  }
}
.button,
button {
  border-style: solid;
  border-width: 0;
  cursor: pointer;
  font-family: "Helvetica Neue", Helvetica, Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 1.25rem;
  position: relative;
  text-decoration: none;
  text-align: center;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  display: inline-block;
  padding-top: 1rem;
  padding-right: 2rem;
  padding-bottom: 1.0625rem;
  padding-left: 2rem;
  font-size: 1rem;
  background-color: #008cba;
  border-color: #007095;
  color: #fff;
  transition: background-color 0.3s ease-out;
}
.button.secondary,
button.secondary {
  background-color: #e7e7e7;
  border-color: #b9b9b9;
  color: #333;
}
.button.secondary:focus,
.button.secondary:hover,
button.secondary:focus,
button.secondary:hover {
  background-color: #b9b9b9;
}
.button.secondary:focus,
.button.secondary:hover,
button.secondary:focus,
button.secondary:hover {
  color: #333;
}
.button.success,
button.success {
  background-color: #43ac6a;
  border-color: #368a55;
  color: #fff;
}
.button.success:focus,
.button.success:hover,
button.success:focus,
button.success:hover {
  background-color: #368a55;
}
.button.success:focus,
.button.success:hover,
button.success:focus,
button.success:hover {
  color: #fff;
}
.button.alert,
button.alert {
  background-color: #ff4136;
  border-color: #f70e00;
  color: #fff;
}
.button.alert:focus,
.button.alert:hover,
button.alert:focus,
button.alert:hover {
  background-color: #f70e00;
}
.button.alert:focus,
.button.alert:hover,
button.alert:focus,
button.alert:hover {
  color: #fff;
}
.button.large,
button.large {
  padding-top: 1.125rem;
  padding-right: 2.25rem;
  padding-bottom: 1.1875rem;
  padding-left: 2.25rem;
  font-size: 1.25rem;
}
.button.small,
button.small {
  padding-top: 0.875rem;
  padding-right: 1.75rem;
  padding-bottom: 0.9375rem;
  padding-left: 1.75rem;
  font-size: 0.8125rem;
}
.button.tiny,
button.tiny {
  padding-top: 0.625rem;
  padding-right: 1.25rem;
  padding-bottom: 0.6875rem;
  padding-left: 1.25rem;
  font-size: 0.6875rem;
}
.button.expand,
button.expand {
  padding-right: 0;
  padding-left: 0;
  width: 100%;
}
.button.left-align,
button.left-align {
  text-align: left;
  text-indent: 0.75rem;
}
.button.right-align,
button.right-align {
  text-align: right;
  padding-right: 0.75rem;
}
.button.radius,
button.radius {
  border-radius: 3px;
}
.button.round,
button.round {
  border-radius: 1000px;
}
.button.disabled,
.button[disabled],
button.disabled,
button[disabled] {
  background-color: #008cba;
  border-color: #007095;
  color: #fff;
  cursor: default;
  opacity: 0.7;
  box-shadow: none;
}
.button.disabled:focus,
.button.disabled:hover,
.button[disabled]:focus,
.button[disabled]:hover,
button.disabled:focus,
button.disabled:hover,
button[disabled]:focus,
button[disabled]:hover {
  background-color: #007095;
}
.button.disabled:focus,
.button.disabled:hover,
.button[disabled]:focus,
.button[disabled]:hover,
button.disabled:focus,
button.disabled:hover,
button[disabled]:focus,
button[disabled]:hover {
  color: #fff;
}
.button.disabled:focus,
.button.disabled:hover,
.button[disabled]:focus,
.button[disabled]:hover,
button.disabled:focus,
button.disabled:hover,
button[disabled]:focus,
button[disabled]:hover {
  background-color: #008cba;
}
.button.disabled.secondary,
.button[disabled].secondary,
button.disabled.secondary,
button[disabled].secondary {
  background-color: #e7e7e7;
  border-color: #b9b9b9;
  color: #333;
  cursor: default;
  opacity: 0.7;
  box-shadow: none;
}
.button.disabled.secondary:focus,
.button.disabled.secondary:hover,
.button[disabled].secondary:focus,
.button[disabled].secondary:hover,
button.disabled.secondary:focus,
button.disabled.secondary:hover,
button[disabled].secondary:focus,
button[disabled].secondary:hover {
  background-color: #b9b9b9;
}
.button.disabled.secondary:focus,
.button.disabled.secondary:hover,
.button[disabled].secondary:focus,
.button[disabled].secondary:hover,
button.disabled.secondary:focus,
button.disabled.secondary:hover,
button[disabled].secondary:focus,
button[disabled].secondary:hover {
  color: #333;
}
.button.disabled.secondary:focus,
.button.disabled.secondary:hover,
.button[disabled].secondary:focus,
.button[disabled].secondary:hover,
button.disabled.secondary:focus,
button.disabled.secondary:hover,
button[disabled].secondary:focus,
button[disabled].secondary:hover {
  background-color: #e7e7e7;
}
.button.disabled.success,
.button[disabled].success,
button.disabled.success,
button[disabled].success {
  background-color: #43ac6a;
  border-color: #368a55;
  color: #fff;
  cursor: default;
  opacity: 0.7;
  box-shadow: none;
}
.button.disabled.success:focus,
.button.disabled.success:hover,
.button[disabled].success:focus,
.button[disabled].success:hover,
button.disabled.success:focus,
button.disabled.success:hover,
button[disabled].success:focus,
button[disabled].success:hover {
  background-color: #368a55;
}
.button.disabled.success:focus,
.button.disabled.success:hover,
.button[disabled].success:focus,
.button[disabled].success:hover,
button.disabled.success:focus,
button.disabled.success:hover,
button[disabled].success:focus,
button[disabled].success:hover {
  color: #fff;
}
.button.disabled.success:focus,
.button.disabled.success:hover,
.button[disabled].success:focus,
.button[disabled].success:hover,
button.disabled.success:focus,
button.disabled.success:hover,
button[disabled].success:focus,
button[disabled].success:hover {
  background-color: #43ac6a;
}
.button.disabled.alert,
.button[disabled].alert,
button.disabled.alert,
button[disabled].alert {
  background-color: #ff4136;
  border-color: #f70e00;
  color: #fff;
  cursor: default;
  opacity: 0.7;
  box-shadow: none;
}
.button.disabled.alert:focus,
.button.disabled.alert:hover,
.button[disabled].alert:focus,
.button[disabled].alert:hover,
button.disabled.alert:focus,
button.disabled.alert:hover,
button[disabled].alert:focus,
button[disabled].alert:hover {
  background-color: #f70e00;
}
.button.disabled.alert:focus,
.button.disabled.alert:hover,
.button[disabled].alert:focus,
.button[disabled].alert:hover,
button.disabled.alert:focus,
button.disabled.alert:hover,
button[disabled].alert:focus,
button[disabled].alert:hover {
  color: #fff;
}
.button.disabled.alert:focus,
.button.disabled.alert:hover,
.button[disabled].alert:focus,
.button[disabled].alert:hover,
button.disabled.alert:focus,
button.disabled.alert:hover,
button[disabled].alert:focus,
button[disabled].alert:hover {
  background-color: #ff4136;
}
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
@media only screen and (min-width: 40.063em) {
  .button,
  button {
    display: inline-block;
  }
}
.clearing-thumbs,
[data-clearing] {
  margin-bottom: 0;
  margin-left: 0;
  list-style: none;
}
.clearing-thumbs:after,
.clearing-thumbs:before,
[data-clearing]:after,
[data-clearing]:before {
  content: " ";
  display: table;
}
.clearing-thumbs:after,
[data-clearing]:after {
  clear: both;
}
.clearing-thumbs li,
[data-clearing] li {
  float: left;
  margin-right: 10px;
}
.clearing-thumbs[class*="block-grid-"] li,
[data-clearing][class*="block-grid-"] li {
  margin-right: 0;
}
.clearing-blackout {
  background: #333;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 998;
}
.clearing-blackout .clearing-close {
  display: block;
}
.clearing-container {
  position: relative;
  z-index: 998;
  height: 100%;
  overflow: hidden;
  margin: 0;
}
.clearing-touch-label {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #aaa;
  font-size: 0.6em;
}
.visible-img {
  height: 95%;
  position: relative;
}
.visible-img img {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -50%;
  max-height: 100%;
  max-width: 100%;
}
.clearing-caption {
  color: #ccc;
  font-size: 0.875em;
  line-height: 1.3;
  margin-bottom: 0;
  text-align: center;
  bottom: 0;
  background: #333;
  width: 100%;
  padding: 10px 30px 20px;
  position: absolute;
  left: 0;
}
.clearing-close {
  z-index: 999;
  padding-left: 20px;
  padding-top: 10px;
  font-size: 30px;
  line-height: 1;
  color: #ccc;
  display: none;
}
.clearing-close:focus,
.clearing-close:hover {
  color: #ccc;
}
.clearing-assembled .clearing-container {
  height: 100%;
}
.clearing-assembled .clearing-container .carousel > ul {
  display: none;
}
.clearing-feature li {
  display: none;
}
.clearing-feature li.clearing-featured-img {
  display: block;
}
@media only screen and (min-width: 40.063em) {
  .clearing-main-next,
  .clearing-main-prev {
    position: absolute;
    height: 100%;
    width: 40px;
    top: 0;
  }
  .clearing-main-next > span,
  .clearing-main-prev > span {
    position: absolute;
    top: 50%;
    display: block;
    width: 0;
    height: 0;
    border: solid 12px;
  }
  .clearing-main-next > span:hover,
  .clearing-main-prev > span:hover {
    opacity: 0.8;
  }
  .clearing-main-prev {
    left: 0;
  }
  .clearing-main-prev > span {
    left: 5px;
    border-color: transparent;
    border-right-color: #ccc;
  }
  .clearing-main-next {
    right: 0;
  }
  .clearing-main-next > span {
    border-color: transparent;
    border-left-color: #ccc;
  }
  .clearing-main-next.disabled,
  .clearing-main-prev.disabled {
    opacity: 0.3;
  }
  .clearing-assembled .clearing-container .carousel {
    background: rgba(51, 51, 51, 0.8);
    height: 120px;
    margin-top: 10px;
    text-align: center;
  }
  .clearing-assembled .clearing-container .carousel > ul {
    display: inline-block;
    z-index: 999;
    height: 100%;
    position: relative;
    float: none;
  }
  .clearing-assembled .clearing-container .carousel > ul li {
    display: block;
    width: 120px;
    min-height: inherit;
    float: left;
    overflow: hidden;
    margin-right: 0;
    padding: 0;
    position: relative;
    cursor: pointer;
    opacity: 0.4;
    clear: none;
  }
  .clearing-assembled .clearing-container .carousel > ul li.fix-height img {
    height: 100%;
    max-width: none;
  }
  .clearing-assembled .clearing-container .carousel > ul li a.th {
    border: none;
    box-shadow: none;
    display: block;
  }
  .clearing-assembled .clearing-container .carousel > ul li img {
    cursor: pointer !important;
    width: 100% !important;
  }
  .clearing-assembled .clearing-container .carousel > ul li.visible {
    opacity: 1;
  }
  .clearing-assembled .clearing-container .carousel > ul li:hover {
    opacity: 0.8;
  }
  .clearing-assembled .clearing-container .visible-img {
    background: #333;
    overflow: hidden;
    height: 85%;
  }
  .clearing-close {
    position: absolute;
    top: 10px;
    right: 20px;
    padding-left: 0;
    padding-top: 0;
  }
}
.flex-video {
  position: relative;
  padding-top: 1.5625rem;
  padding-bottom: 67.5%;
  height: 0;
  margin-bottom: 1rem;
  overflow: hidden;
}
.flex-video.widescreen {
  padding-bottom: 56.34%;
}
.flex-video.vimeo {
  padding-top: 0;
}
.flex-video embed,
.flex-video iframe,
.flex-video object,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
form {
  margin: 0 0 0.875rem;
}
form .row .row {
  margin: 0 -0.4375rem;
}
form .row .row .column,
form .row .row .columns {
  padding: 0 0.4375rem;
}
form .row .row.collapse {
  margin: 0;
}
form .row .row.collapse .column,
form .row .row.collapse .columns {
  padding: 0;
}
form .row .row.collapse input {
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
form .row input.column,
form .row input.columns,
form .row textarea.column,
form .row textarea.columns {
  padding-left: 0.4375rem;
}
label {
  font-size: 0.875rem;
  color: #4d4c4c;
  cursor: pointer;
  display: block;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
}
label.right {
  float: none !important;
  text-align: right;
}
label.inline {
  margin: 0 0 0.875rem 0;
  padding: 0.5rem 0;
}
label small {
  text-transform: capitalize;
  color: #676767;
}
select::-ms-expand {
  display: none;
}
.postfix,
.prefix {
  display: block;
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  border-style: solid;
  border-width: 1px;
  overflow: hidden;
  font-size: 0.875rem;
  height: 2.125rem;
  line-height: 2.125rem;
}
.postfix.button {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  line-height: 2.125rem;
  border: none;
}
.prefix.button {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  line-height: 2.125rem;
  border: none;
}
.prefix.button.radius {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.postfix.button.radius {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.prefix.button.round {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 1000px;
  -webkit-border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px;
}
.postfix.button.round {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px;
}
label.prefix,
span.prefix {
  background: #f2f2f2;
  border-right: none;
  color: #333;
  border-color: #ccc;
}
label.postfix,
span.postfix {
  background: #f2f2f2;
  border-left: none;
  color: #333;
  border-color: #ccc;
}
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="datetime"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  background-color: #fff;
  font-family: inherit;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  display: block;
  font-size: 0.875rem;
  margin: 0 0 0.875rem 0;
  padding: 0.4375rem;
  height: 2.125rem;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: box-shadow 0.45s, border-color 0.45s ease-in-out;
}
input[type="color"]:focus,
input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[type="datetime"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="week"]:focus,
textarea:focus {
  box-shadow: 0 0 5px #999;
  border-color: #999;
}
input[type="color"]:focus,
input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[type="datetime"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="week"]:focus,
textarea:focus {
  background: #fafafa;
  border-color: #999;
  outline: 0;
}
input[type="color"]:disabled,
input[type="date"]:disabled,
input[type="datetime-local"]:disabled,
input[type="datetime"]:disabled,
input[type="email"]:disabled,
input[type="month"]:disabled,
input[type="number"]:disabled,
input[type="password"]:disabled,
input[type="search"]:disabled,
input[type="tel"]:disabled,
input[type="text"]:disabled,
input[type="time"]:disabled,
input[type="url"]:disabled,
input[type="week"]:disabled,
textarea:disabled {
  background-color: #ddd;
  cursor: default;
}
fieldset[disabled] input[type="color"],
fieldset[disabled] input[type="date"],
fieldset[disabled] input[type="datetime-local"],
fieldset[disabled] input[type="datetime"],
fieldset[disabled] input[type="email"],
fieldset[disabled] input[type="month"],
fieldset[disabled] input[type="number"],
fieldset[disabled] input[type="password"],
fieldset[disabled] input[type="search"],
fieldset[disabled] input[type="tel"],
fieldset[disabled] input[type="text"],
fieldset[disabled] input[type="time"],
fieldset[disabled] input[type="url"],
fieldset[disabled] input[type="week"],
fieldset[disabled] textarea,
input[type="color"][disabled],
input[type="color"][readonly],
input[type="date"][disabled],
input[type="date"][readonly],
input[type="datetime-local"][disabled],
input[type="datetime-local"][readonly],
input[type="datetime"][disabled],
input[type="datetime"][readonly],
input[type="email"][disabled],
input[type="email"][readonly],
input[type="month"][disabled],
input[type="month"][readonly],
input[type="number"][disabled],
input[type="number"][readonly],
input[type="password"][disabled],
input[type="password"][readonly],
input[type="search"][disabled],
input[type="search"][readonly],
input[type="tel"][disabled],
input[type="tel"][readonly],
input[type="text"][disabled],
input[type="text"][readonly],
input[type="time"][disabled],
input[type="time"][readonly],
input[type="url"][disabled],
input[type="url"][readonly],
input[type="week"][disabled],
input[type="week"][readonly],
textarea[disabled],
textarea[readonly] {
  background-color: #ddd;
  cursor: default;
}
input[type="color"].radius,
input[type="date"].radius,
input[type="datetime-local"].radius,
input[type="datetime"].radius,
input[type="email"].radius,
input[type="month"].radius,
input[type="number"].radius,
input[type="password"].radius,
input[type="search"].radius,
input[type="tel"].radius,
input[type="text"].radius,
input[type="time"].radius,
input[type="url"].radius,
input[type="week"].radius,
textarea.radius {
  border-radius: 3px;
}
form .row .prefix-radius.row.collapse input,
form .row .prefix-radius.row.collapse select,
form .row .prefix-radius.row.collapse textarea {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
form .row .prefix-radius.row.collapse .prefix {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
form .row .postfix-radius.row.collapse input,
form .row .postfix-radius.row.collapse select,
form .row .postfix-radius.row.collapse textarea {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
form .row .postfix-radius.row.collapse .postfix {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
form .row .prefix-round.row.collapse input,
form .row .prefix-round.row.collapse select,
form .row .prefix-round.row.collapse textarea {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px;
}
form .row .prefix-round.row.collapse .prefix {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 1000px;
  -webkit-border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px;
}
form .row .postfix-round.row.collapse input,
form .row .postfix-round.row.collapse select,
form .row .postfix-round.row.collapse textarea {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 1000px;
  -webkit-border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px;
}
form .row .postfix-round.row.collapse .postfix {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px;
}
input[type="submit"] {
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}
textarea[rows] {
  height: auto;
}
select {
  -webkit-appearance: none !important;
  -webkit-border-radius: 0px;
  background-color: #fafafa;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+);
  background-position: 100% center;
  background-repeat: no-repeat;
  border: 1px solid #ccc;
  padding: 0.4375rem;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.75);
  line-height: normal;
  border-radius: 0;
  height: 2.125rem;
}
select.radius {
  border-radius: 3px;
}
select:hover {
  background-color: #f3f2f2;
  border-color: #999;
}
select:disabled {
  background-color: #ddd;
  cursor: default;
}
input[type="checkbox"],
input[type="file"],
input[type="radio"],
select {
  margin: 0 0 0.875rem 0;
}
input[type="checkbox"] + label,
input[type="radio"] + label {
  display: inline-block;
  margin-left: 0.4375rem;
  margin-right: 0.875rem;
  margin-bottom: 0;
  vertical-align: baseline;
}
input[type="file"] {
  width: 100%;
}
fieldset {
  border: 1px solid #ddd;
  padding: 1.25rem;
  margin: 1.125rem 0;
}
fieldset legend {
  font-weight: 700;
  background: #fff;
  padding: 0 0.1875rem;
  margin: 0;
  margin-left: -0.1875rem;
}
[data-abide] .error small.error,
[data-abide] .error span.error,
[data-abide] small.error,
[data-abide] span.error {
  display: block;
  padding: 0.375rem 0.5625rem 0.5625rem;
  margin-top: -1px;
  margin-bottom: 0.875rem;
  font-size: 0.75rem;
  font-weight: 400;
  font-style: italic;
  background: #ff4136;
  color: #fff;
}
[data-abide] small.error,
[data-abide] span.error {
  display: none;
}
small.error,
span.error {
  display: block;
  padding: 0.375rem 0.5625rem 0.5625rem;
  margin-top: -1px;
  margin-bottom: 0.875rem;
  font-size: 0.75rem;
  font-weight: 400;
  font-style: italic;
  background: #ff4136;
  color: #fff;
}
.error input,
.error select,
.error textarea {
  margin-bottom: 0;
}
.error input[type="checkbox"],
.error input[type="radio"] {
  margin-bottom: 0.875rem;
}
.error label,
.error label.error {
  color: #ff4136;
}
.error small.error {
  display: block;
  padding: 0.375rem 0.5625rem 0.5625rem;
  margin-top: -1px;
  margin-bottom: 0.875rem;
  font-size: 0.75rem;
  font-weight: 400;
  font-style: italic;
  background: #ff4136;
  color: #fff;
}
.error > label > small {
  color: #676767;
  background: 0 0;
  padding: 0;
  text-transform: capitalize;
  font-style: normal;
  font-size: 60%;
  margin: 0;
  display: inline;
}
.error span.error-message {
  display: block;
}
input.error,
select.error,
textarea.error {
  margin-bottom: 0;
}
label.error {
  color: #ff4136;
}
.inline-list {
  margin: 0 auto 1.0625rem auto;
  margin-left: -1.375rem;
  margin-right: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
.inline-list > li {
  list-style: none;
  float: left;
  margin-left: 1.375rem;
  display: block;
}
.inline-list > li > * {
  display: block;
}
.label {
  font-weight: 400;
  font-family: "Helvetica Neue", Helvetica, Helvetica, Arial, sans-serif;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  display: inline-block;
  position: relative;
  margin-bottom: inherit;
  padding: 0.25rem 0.5rem 0.375rem;
  font-size: 0.6875rem;
  background-color: #008cba;
  color: #fff;
}
.label.radius {
  border-radius: 3px;
}
.label.round {
  border-radius: 1000px;
}
.label.alert {
  background-color: #ff4136;
  color: #fff;
}
.label.warning {
  background-color: #f08a24;
  color: #fff;
}
.label.success {
  background-color: #43ac6a;
  color: #fff;
}
.label.secondary {
  background-color: #e7e7e7;
  color: #333;
}
.reveal-modal-bg {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1006;
  display: none;
  left: 0;
}
.reveal-modal,
dialog {
  visibility: hidden;
  display: none;
  position: absolute;
  z-index: 999999;
  width: 100vw;
  top: 0;
  border-radius: 3px;
  left: 0;
  background-color: #fff;
  padding: 1.25rem;
  border: solid 1px #666;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  padding: 1.875rem;
}
@media only screen and (max-width: 40em) {
  .reveal-modal,
  dialog {
    min-height: 100vh;
  }
}
.reveal-modal .column,
.reveal-modal .columns,
dialog .column,
dialog .columns {
  min-width: 0;
}
.reveal-modal > :first-child,
dialog > :first-child {
  margin-top: 0;
}
.reveal-modal > :last-child,
dialog > :last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 40.063em) {
  .reveal-modal,
  dialog {
    width: 80%;
    max-width: 1200px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 40.063em) {
  .reveal-modal,
  dialog {
    top: 6.25rem;
  }
}
.reveal-modal.radius,
dialog.radius {
  border-radius: 3px;
}
.reveal-modal.round,
dialog.round {
  border-radius: 1000px;
}
.reveal-modal.collapse,
dialog.collapse {
  padding: 0;
}
@media only screen and (min-width: 40.063em) {
  .reveal-modal.tiny,
  dialog.tiny {
    width: 30%;
    max-width: 1200px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 40.063em) {
  .reveal-modal.small,
  dialog.small {
    width: 40%;
    max-width: 1200px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 40.063em) {
  .reveal-modal.medium,
  dialog.medium {
    width: 60%;
    max-width: 1200px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 40.063em) {
  .reveal-modal.large,
  dialog.large {
    width: 70%;
    max-width: 1200px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 40.063em) {
  .reveal-modal.xlarge,
  dialog.xlarge {
    width: 95%;
    max-width: 1200px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.reveal-modal.full,
dialog.full {
  top: 0;
  left: 0;
  height: 100%;
  height: 100vh;
  min-height: 100vh;
  margin-left: 0 !important;
}
@media only screen and (min-width: 40.063em) {
  .reveal-modal.full,
  dialog.full {
    width: 100vw;
    max-width: 1200px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.reveal-modal .close-reveal-modal,
dialog .close-reveal-modal {
  font-size: 2.5rem;
  line-height: 1;
  position: absolute;
  top: 0.5rem;
  right: 0.6875rem;
  color: #aaa;
  font-weight: 700;
  cursor: pointer;
}
dialog {
  display: none;
}
dialog + .backdrop,
dialog::backdrop {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  left: 0;
}
dialog[open] {
  display: block;
}
@media print {
  .reveal-modal,
  dialog {
    display: none;
    background: #fff !important;
  }
}
table {
  background: #fff;
  margin-bottom: 1.25rem;
  border: solid 1px #ddd;
  table-layout: auto;
}
table caption {
  background: 0 0;
  color: #222;
  font-size: 1rem;
  font-weight: 700;
}
table thead {
  background: #f5f5f5;
}
table thead tr td,
table thead tr th {
  padding: 0.5rem 0.625rem 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #222;
}
table tfoot {
  background: #f5f5f5;
}
table tfoot tr td,
table tfoot tr th {
  padding: 0.5rem 0.625rem 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #222;
}
table tr td,
table tr th {
  padding: 0.5625rem 0.625rem;
  font-size: 0.875rem;
  color: #222;
  text-align: left;
}
table tr.alt,
table tr.even,
table tr:nth-of-type(2n) {
  background: #f9f9f9;
}
table tbody tr td,
table tbody tr th,
table tfoot tr td,
table tfoot tr th,
table thead tr th,
table tr td {
  display: table-cell;
  line-height: 1.125rem;
}
.tabs {
  margin-bottom: 0 !important;
  margin-left: 0;
}
.tabs:after,
.tabs:before {
  content: " ";
  display: table;
}
.tabs:after {
  clear: both;
}
.tabs .tab-title,
.tabs dd {
  position: relative;
  margin-bottom: 0 !important;
  list-style: none;
  float: left;
}
.tabs .tab-title > a,
.tabs dd > a {
  display: block;
  background-color: #efefef;
  color: #222;
  padding: 1rem 2rem;
  font-family: "Helvetica Neue", Helvetica, Helvetica, Arial, sans-serif;
  font-size: 1rem;
}
.tabs .tab-title > a:hover,
.tabs dd > a:hover {
  background-color: #e1e1e1;
}
.tabs .tab-title.active a,
.tabs dd.active a {
  background-color: #fff;
  color: #222;
}
.tabs.radius .tab:first-child a,
.tabs.radius dd:first-child a {
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.tabs.radius .tab:last-child a,
.tabs.radius dd:last-child a {
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.tabs.vertical .tab-title,
.tabs.vertical dd {
  position: inherit;
  float: none;
  display: block;
  top: auto;
}
.tabs-content {
  margin-bottom: 1.5rem;
  width: 100%;
}
.tabs-content:after,
.tabs-content:before {
  content: " ";
  display: table;
}
.tabs-content:after {
  clear: both;
}
.tabs-content > .content {
  display: none;
  float: left;
  padding: 0.9375rem 0;
  width: 100%;
}
.tabs-content > .content.active {
  display: block;
  float: none;
}
.tabs-content > .content.contained {
  padding: 0.9375rem;
}
.tabs-content.vertical {
  display: block;
}
.tabs-content.vertical > .content {
  padding: 0 0.9375rem;
}
@media only screen and (min-width: 40.063em) {
  .tabs.vertical {
    width: 20%;
    max-width: 20%;
    float: left;
    margin: 0 0 1.25rem;
  }
  .tabs-content.vertical {
    width: 80%;
    max-width: 80%;
    float: left;
    margin-left: -1px;
    padding-left: 1rem;
  }
}
.no-js .tabs-content > .content {
  display: block;
  float: none;
}
meta.foundation-mq-topbar {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64em;
}
.contain-to-grid {
  width: 100%;
  background: #2272bd;
}
.contain-to-grid .top-bar {
  margin-bottom: 0;
}
.fixed {
  width: 100%;
  left: 0;
  position: fixed;
  top: 0;
  z-index: 99;
}
.fixed.expanded:not(.top-bar) {
  overflow-y: auto;
  height: auto;
  width: 100%;
  max-height: 100%;
}
.fixed.expanded:not(.top-bar) .title-area {
  position: fixed;
  width: 100%;
  z-index: 99;
}
.fixed.expanded:not(.top-bar) .top-bar-section {
  z-index: 98;
  margin-top: 40px;
}
.top-bar {
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  position: relative;
  background: #2272bd;
  margin-bottom: 0;
}
.top-bar ul {
  margin-bottom: 0;
  list-style: none;
}
.top-bar .row {
  max-width: none;
}
.top-bar form,
.top-bar input {
  margin-bottom: 0;
}
.top-bar input {
  height: 1.8rem;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  font-size: 0.75rem;
}
.top-bar .button,
.top-bar button {
  padding-top: 0.4125rem;
  padding-bottom: 0.4125rem;
  margin-bottom: 0;
  font-size: 0.75rem;
}
@media only screen and (max-width: 40em) {
  .top-bar .button,
  .top-bar button {
    position: relative;
    top: -1px;
  }
}
.top-bar .title-area {
  position: relative;
  margin: 0;
}
.top-bar .name {
  height: 40px;
  margin: 0;
  font-size: 16px;
}
.top-bar .name span {
  line-height: 40px;
  font-size: 1.0625rem;
  margin: 0;
}
.top-bar .name span a {
  font-weight: 400;
  color: #fff;
  width: 75%;
  display: block;
  padding: 0 13.3333333333px;
}
.top-bar .toggle-topbar {
  position: absolute;
  right: 0;
  top: 0;
}
.top-bar .toggle-topbar a {
  color: #fff;
  text-transform: uppercase;
  font-size: 0.8125rem;
  font-weight: 700;
  position: relative;
  display: block;
  padding: 0 13.3333333333px;
  height: 40px;
  line-height: 40px;
}
.top-bar .toggle-topbar.menu-icon {
  top: 50%;
  margin-top: -16px;
}
.top-bar .toggle-topbar.menu-icon a {
  height: 34px;
  line-height: 33px;
  padding: 0 38.3333333333px 0 13.3333333333px;
  color: #fff;
  position: relative;
}
.top-bar .toggle-topbar.menu-icon a span::after {
  content: "\f0c9";
  font: normal normal normal 1rem/1 FontAwesome;
  display: block;
  position: absolute;
  right: 0.3em;
  font-size: 2em;
  top: 0.1em;
  color: #fff;
}
.top-bar.expanded {
  height: auto;
  background: 0 0;
}
.top-bar.expanded .title-area {
  background: #2272bd;
}
.top-bar.expanded .toggle-topbar a {
  color: #888;
}
.top-bar.expanded .toggle-topbar a::after {
  box-shadow: 0 10px 0 1px #888, 0 16px 0 1px #888, 0 22px 0 1px #888;
}
.top-bar-section {
  left: 0;
  position: relative;
  width: auto;
  transition: left 0.3s ease-out;
}
.top-bar-section ul {
  padding: 0;
  width: 100%;
  height: auto;
  display: block;
  font-size: 16px;
  margin: 0;
}
.top-bar-section .divider,
.top-bar-section [role="separator"] {
  border-top: solid 1px #1a1919;
  clear: both;
  height: 1px;
  width: 100%;
}
.top-bar-section ul li {
  background: #2272bd;
}
.top-bar-section ul li > a {
  display: block;
  width: 100%;
  color: #fff;
  padding: 12px 0 12px 0;
  padding-left: 13.3333333333px;
  font-family: "Helvetica Neue", Helvetica, Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: none;
}
.top-bar-section ul li > a.button {
  font-size: 0.875rem;
  padding-right: 13.3333333333px;
  padding-left: 13.3333333333px;
  background-color: #008cba;
  border-color: #007095;
  color: #fff;
}
.top-bar-section ul li > a.button:focus,
.top-bar-section ul li > a.button:hover {
  background-color: #007095;
}
.top-bar-section ul li > a.button:focus,
.top-bar-section ul li > a.button:hover {
  color: #fff;
}
.top-bar-section ul li > a.button.secondary {
  background-color: #e7e7e7;
  border-color: #b9b9b9;
  color: #333;
}
.top-bar-section ul li > a.button.secondary:focus,
.top-bar-section ul li > a.button.secondary:hover {
  background-color: #b9b9b9;
}
.top-bar-section ul li > a.button.secondary:focus,
.top-bar-section ul li > a.button.secondary:hover {
  color: #333;
}
.top-bar-section ul li > a.button.success {
  background-color: #43ac6a;
  border-color: #368a55;
  color: #fff;
}
.top-bar-section ul li > a.button.success:focus,
.top-bar-section ul li > a.button.success:hover {
  background-color: #368a55;
}
.top-bar-section ul li > a.button.success:focus,
.top-bar-section ul li > a.button.success:hover {
  color: #fff;
}
.top-bar-section ul li > a.button.alert {
  background-color: #ff4136;
  border-color: #f70e00;
  color: #fff;
}
.top-bar-section ul li > a.button.alert:focus,
.top-bar-section ul li > a.button.alert:hover {
  background-color: #f70e00;
}
.top-bar-section ul li > a.button.alert:focus,
.top-bar-section ul li > a.button.alert:hover {
  color: #fff;
}
.top-bar-section ul li > button {
  font-size: 0.875rem;
  padding-right: 13.3333333333px;
  padding-left: 13.3333333333px;
  background-color: #008cba;
  border-color: #007095;
  color: #fff;
}
.top-bar-section ul li > button:focus,
.top-bar-section ul li > button:hover {
  background-color: #007095;
}
.top-bar-section ul li > button:focus,
.top-bar-section ul li > button:hover {
  color: #fff;
}
.top-bar-section ul li > button.secondary {
  background-color: #e7e7e7;
  border-color: #b9b9b9;
  color: #333;
}
.top-bar-section ul li > button.secondary:focus,
.top-bar-section ul li > button.secondary:hover {
  background-color: #b9b9b9;
}
.top-bar-section ul li > button.secondary:focus,
.top-bar-section ul li > button.secondary:hover {
  color: #333;
}
.top-bar-section ul li > button.success {
  background-color: #43ac6a;
  border-color: #368a55;
  color: #fff;
}
.top-bar-section ul li > button.success:focus,
.top-bar-section ul li > button.success:hover {
  background-color: #368a55;
}
.top-bar-section ul li > button.success:focus,
.top-bar-section ul li > button.success:hover {
  color: #fff;
}
.top-bar-section ul li > button.alert {
  background-color: #ff4136;
  border-color: #f70e00;
  color: #fff;
}
.top-bar-section ul li > button.alert:focus,
.top-bar-section ul li > button.alert:hover {
  background-color: #f70e00;
}
.top-bar-section ul li > button.alert:focus,
.top-bar-section ul li > button.alert:hover {
  color: #fff;
}
.top-bar-section ul li:hover:not(.has-form) > a {
  background: #555;
  background: #1d62a3;
  color: #fff;
}
.top-bar-section ul li.active > a {
  background: #0e508e;
  color: #fff;
}
.top-bar-section ul li.active > a:hover {
  background: #1d62a3;
  color: #fff;
}
.top-bar-section .has-form {
  padding: 13.3333333333px;
}
.top-bar-section .has-dropdown {
  position: relative;
}
.top-bar-section .has-dropdown > a:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.4);
  border-left-style: solid;
  margin-right: 13.3333333333px;
  margin-top: -4.5px;
  position: absolute;
  top: 50%;
  right: 0;
}
.top-bar-section .has-dropdown.moved {
  position: static;
}
.top-bar-section .has-dropdown.moved > .dropdown {
  display: block;
  position: static !important;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto;
  position: absolute !important;
  width: 100%;
}
.top-bar-section .has-dropdown.moved > a:after {
  display: none;
}
.top-bar-section .dropdown {
  padding: 0;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 99;
  display: block;
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
.top-bar-section .dropdown li {
  width: 100%;
  height: auto;
}
.top-bar-section .dropdown li a {
  font-weight: 400;
  padding: 8px 13.3333333333px;
}
.top-bar-section .dropdown li a.parent-link {
  font-weight: 400;
}
.top-bar-section .dropdown li.parent-link,
.top-bar-section .dropdown li.title div {
  margin-bottom: 0;
  margin-top: 0;
}
.top-bar-section .dropdown li.parent-link a,
.top-bar-section .dropdown li.title div a {
  color: #fff;
  display: block;
}
.top-bar-section .dropdown li.parent-link a:hover,
.top-bar-section .dropdown li.title div a:hover {
  background: 0 0;
}
.top-bar-section .dropdown li.has-form {
  padding: 8px 13.3333333333px;
}
.top-bar-section .dropdown li .button,
.top-bar-section .dropdown li button {
  top: auto;
}
.top-bar-section .dropdown label {
  padding: 8px 13.3333333333px 2px;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #777;
  font-weight: 700;
  font-size: 0.625rem;
}
.js-generated {
  display: block;
}
@media only screen and (min-width: 64.063em) {
  .top-bar {
    background: #2272bd;
    overflow: visible;
  }
  .top-bar:after,
  .top-bar:before {
    content: " ";
    display: table;
  }
  .top-bar:after {
    clear: both;
  }
  .top-bar .toggle-topbar {
    display: none;
  }
  .top-bar .title-area {
    float: left;
  }
  .top-bar .name h1 a {
    width: auto;
  }
  .top-bar .button,
  .top-bar button,
  .top-bar input {
    font-size: 0.875rem;
    position: relative;
    top: 7px;
  }
  .top-bar.expanded {
    background: #2272bd;
  }
  .contain-to-grid .top-bar {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 0;
  }
  .top-bar-section {
    transition: none 0 0;
    left: 0 !important;
  }
  .top-bar-section ul {
    width: auto;
    height: auto !important;
    display: inline;
  }
  .top-bar-section ul li {
    float: left;
  }
  .top-bar-section ul li .js-generated {
    display: none;
  }
  .top-bar-section li.hover > a:not(.button) {
    background: #555;
    background: #1d62a3;
    color: #fff;
  }
  .top-bar-section li:not(.has-form) a:not(.button) {
    padding: 0 13.3333333333px;
    line-height: 40px;
    background: #2272bd;
  }
  .top-bar-section li:not(.has-form) a:not(.button):hover {
    background: #555;
    background: #1d62a3;
  }
  .top-bar-section li.active:not(.has-form) a:not(.button) {
    padding: 0 13.3333333333px;
    line-height: 40px;
    color: #fff;
    background: #0e508e;
  }
  .top-bar-section li.active:not(.has-form) a:not(.button):hover {
    background: #1d62a3;
    color: #fff;
  }
  .top-bar-section .has-dropdown > a {
    padding-right: 33.3333333333px !important;
  }
  .top-bar-section .has-dropdown > a:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: rgba(255, 255, 255, 0.4) transparent transparent transparent;
    border-top-style: solid;
    margin-top: -2.5px;
    top: 20px;
  }
  .top-bar-section .has-dropdown.moved {
    position: relative;
  }
  .top-bar-section .has-dropdown.moved > .dropdown {
    display: block;
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
  }
  .top-bar-section .has-dropdown.hover > .dropdown,
  .top-bar-section .has-dropdown.not-click:hover > .dropdown {
    display: block;
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    position: absolute !important;
  }
  .top-bar-section .has-dropdown > a:focus + .dropdown {
    display: block;
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    position: absolute !important;
  }
  .top-bar-section .has-dropdown .dropdown li.has-dropdown > a:after {
    border: none;
    content: "\00bb";
    top: 1rem;
    margin-top: -1px;
    right: -40px;
    line-height: 1.2;
  }
  .top-bar-section .dropdown {
    left: 0;
    top: auto;
    background: 0 0;
    min-width: 100%;
  }
  .top-bar-section .dropdown li a {
    color: #fff;
    line-height: 40px;
    white-space: nowrap;
    padding: 12px 13.3333333333px;
    background: #2272bd;
  }
  .top-bar-section .dropdown li:not(.has-form):not(.active) > a:not(.button) {
    color: #fff;
    background: #2272bd;
  }
  .top-bar-section
    .dropdown
    li:not(.has-form):not(.active):hover
    > a:not(.button) {
    color: #fff;
    background: #555;
    background: #1d62a3;
  }
  .top-bar-section .dropdown li label {
    white-space: nowrap;
    background: #333;
  }
  .top-bar-section .dropdown li .dropdown {
    left: 100%;
    top: 0;
  }
  .top-bar-section > ul > .divider,
  .top-bar-section > ul > [role="separator"] {
    border-bottom: none;
    border-top: none;
    border-right: solid 1px #4e4e4e;
    clear: none;
    height: 40px;
    width: 0;
  }
  .top-bar-section .has-form {
    background: #2272bd;
    padding: 0 13.3333333333px;
    height: 40px;
  }
  .top-bar-section .right li .dropdown {
    left: auto;
    right: 0;
  }
  .top-bar-section .right li .dropdown li .dropdown {
    right: 100%;
  }
  .top-bar-section .left li .dropdown {
    right: auto;
    left: 0;
  }
  .top-bar-section .left li .dropdown li .dropdown {
    left: 100%;
  }
  .no-js .top-bar-section ul li:hover > a {
    background: #555;
    background: #1d62a3;
    color: #fff;
  }
  .no-js .top-bar-section ul li:active > a {
    background: #0e508e;
    color: #fff;
  }
  .no-js .top-bar-section .has-dropdown:hover > .dropdown {
    display: block;
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    position: absolute !important;
  }
  .no-js .top-bar-section .has-dropdown > a:focus + .dropdown {
    display: block;
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    position: absolute !important;
  }
}
@media only screen {
  .hide-for-large,
  .hide-for-large-only,
  .hide-for-large-up,
  .hide-for-medium,
  .hide-for-medium-only,
  .hide-for-medium-up,
  .hide-for-xlarge,
  .hide-for-xlarge-only,
  .hide-for-xlarge-up,
  .hide-for-xxlarge,
  .hide-for-xxlarge-only,
  .hide-for-xxlarge-up,
  .show-for-large-down,
  .show-for-medium-down,
  .show-for-small,
  .show-for-small-down,
  .show-for-small-only,
  .show-for-small-up,
  .show-for-xlarge-down,
  .show-for-xxlarge-down {
    display: inherit !important;
  }
  .hide-for-large-down,
  .hide-for-medium-down,
  .hide-for-small,
  .hide-for-small-down,
  .hide-for-small-only,
  .hide-for-small-up,
  .hide-for-xlarge-down,
  .hide-for-xxlarge-down,
  .show-for-large,
  .show-for-large-only,
  .show-for-large-up,
  .show-for-medium,
  .show-for-medium-only,
  .show-for-medium-up,
  .show-for-xlarge,
  .show-for-xlarge-only,
  .show-for-xlarge-up,
  .show-for-xxlarge,
  .show-for-xxlarge-only,
  .show-for-xxlarge-up {
    display: none !important;
  }
  .hidden-for-large,
  .hidden-for-large-only,
  .hidden-for-large-up,
  .hidden-for-medium,
  .hidden-for-medium-only,
  .hidden-for-medium-up,
  .hidden-for-xlarge,
  .hidden-for-xlarge-only,
  .hidden-for-xlarge-up,
  .hidden-for-xxlarge,
  .hidden-for-xxlarge-only,
  .hidden-for-xxlarge-up,
  .visible-for-large-down,
  .visible-for-medium-down,
  .visible-for-small,
  .visible-for-small-down,
  .visible-for-small-only,
  .visible-for-small-up,
  .visible-for-xlarge-down,
  .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .hidden-for-large-down,
  .hidden-for-medium-down,
  .hidden-for-small,
  .hidden-for-small-down,
  .hidden-for-small-only,
  .hidden-for-small-up,
  .hidden-for-xlarge-down,
  .hidden-for-xxlarge-down,
  .visible-for-large,
  .visible-for-large-only,
  .visible-for-large-up,
  .visible-for-medium,
  .visible-for-medium-only,
  .visible-for-medium-up,
  .visible-for-xlarge,
  .visible-for-xlarge-only,
  .visible-for-xlarge-up,
  .visible-for-xxlarge,
  .visible-for-xxlarge-only,
  .visible-for-xxlarge-up {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
  }
  table.hide-for-large,
  table.hide-for-large-only,
  table.hide-for-large-up,
  table.hide-for-medium,
  table.hide-for-medium-only,
  table.hide-for-medium-up,
  table.hide-for-xlarge,
  table.hide-for-xlarge-only,
  table.hide-for-xlarge-up,
  table.hide-for-xxlarge,
  table.hide-for-xxlarge-only,
  table.hide-for-xxlarge-up,
  table.show-for-large-down,
  table.show-for-medium-down,
  table.show-for-small,
  table.show-for-small-down,
  table.show-for-small-only,
  table.show-for-small-up,
  table.show-for-xlarge-down,
  table.show-for-xxlarge-down {
    display: table;
  }
  thead.hide-for-large,
  thead.hide-for-large-only,
  thead.hide-for-large-up,
  thead.hide-for-medium,
  thead.hide-for-medium-only,
  thead.hide-for-medium-up,
  thead.hide-for-xlarge,
  thead.hide-for-xlarge-only,
  thead.hide-for-xlarge-up,
  thead.hide-for-xxlarge,
  thead.hide-for-xxlarge-only,
  thead.hide-for-xxlarge-up,
  thead.show-for-large-down,
  thead.show-for-medium-down,
  thead.show-for-small,
  thead.show-for-small-down,
  thead.show-for-small-only,
  thead.show-for-small-up,
  thead.show-for-xlarge-down,
  thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }
  tbody.hide-for-large,
  tbody.hide-for-large-only,
  tbody.hide-for-large-up,
  tbody.hide-for-medium,
  tbody.hide-for-medium-only,
  tbody.hide-for-medium-up,
  tbody.hide-for-xlarge,
  tbody.hide-for-xlarge-only,
  tbody.hide-for-xlarge-up,
  tbody.hide-for-xxlarge,
  tbody.hide-for-xxlarge-only,
  tbody.hide-for-xxlarge-up,
  tbody.show-for-large-down,
  tbody.show-for-medium-down,
  tbody.show-for-small,
  tbody.show-for-small-down,
  tbody.show-for-small-only,
  tbody.show-for-small-up,
  tbody.show-for-xlarge-down,
  tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }
  tr.hide-for-large,
  tr.hide-for-large-only,
  tr.hide-for-large-up,
  tr.hide-for-medium,
  tr.hide-for-medium-only,
  tr.hide-for-medium-up,
  tr.hide-for-xlarge,
  tr.hide-for-xlarge-only,
  tr.hide-for-xlarge-up,
  tr.hide-for-xxlarge,
  tr.hide-for-xxlarge-only,
  tr.hide-for-xxlarge-up,
  tr.show-for-large-down,
  tr.show-for-medium-down,
  tr.show-for-small,
  tr.show-for-small-down,
  tr.show-for-small-only,
  tr.show-for-small-up,
  tr.show-for-xlarge-down,
  tr.show-for-xxlarge-down {
    display: table-row !important;
  }
  td.hide-for-large,
  td.hide-for-large-only,
  td.hide-for-large-up,
  td.hide-for-medium,
  td.hide-for-medium-only,
  td.hide-for-medium-up,
  td.hide-for-xlarge,
  td.hide-for-xlarge-only,
  td.hide-for-xlarge-up,
  td.hide-for-xxlarge,
  td.hide-for-xxlarge-only,
  td.hide-for-xxlarge-up,
  td.show-for-large-down,
  td.show-for-medium-down,
  td.show-for-small,
  td.show-for-small-down,
  td.show-for-small-only,
  td.show-for-small-up,
  td.show-for-xlarge-down,
  td.show-for-xxlarge-down,
  th.hide-for-large,
  th.hide-for-large-only,
  th.hide-for-large-up,
  th.hide-for-medium,
  th.hide-for-medium-only,
  th.hide-for-medium-up,
  th.hide-for-xlarge,
  th.hide-for-xlarge-only,
  th.hide-for-xlarge-up,
  th.hide-for-xxlarge,
  th.hide-for-xxlarge-only,
  th.hide-for-xxlarge-up,
  th.show-for-large-down,
  th.show-for-medium-down,
  th.show-for-small,
  th.show-for-small-down,
  th.show-for-small-only,
  th.show-for-small-up,
  th.show-for-xlarge-down,
  th.show-for-xxlarge-down {
    display: table-cell !important;
  }
}
@media only screen and (min-width: 40.063em) {
  .hide-for-large,
  .hide-for-large-only,
  .hide-for-large-up,
  .hide-for-small,
  .hide-for-small-down,
  .hide-for-small-only,
  .hide-for-xlarge,
  .hide-for-xlarge-only,
  .hide-for-xlarge-up,
  .hide-for-xxlarge,
  .hide-for-xxlarge-only,
  .hide-for-xxlarge-up,
  .show-for-large-down,
  .show-for-medium,
  .show-for-medium-down,
  .show-for-medium-only,
  .show-for-medium-up,
  .show-for-small-up,
  .show-for-xlarge-down,
  .show-for-xxlarge-down {
    display: inherit !important;
  }
  .hide-for-large-down,
  .hide-for-medium,
  .hide-for-medium-down,
  .hide-for-medium-only,
  .hide-for-medium-up,
  .hide-for-small-up,
  .hide-for-xlarge-down,
  .hide-for-xxlarge-down,
  .show-for-large,
  .show-for-large-only,
  .show-for-large-up,
  .show-for-small,
  .show-for-small-down,
  .show-for-small-only,
  .show-for-xlarge,
  .show-for-xlarge-only,
  .show-for-xlarge-up,
  .show-for-xxlarge,
  .show-for-xxlarge-only,
  .show-for-xxlarge-up {
    display: none !important;
  }
  .hidden-for-large,
  .hidden-for-large-only,
  .hidden-for-large-up,
  .hidden-for-small,
  .hidden-for-small-down,
  .hidden-for-small-only,
  .hidden-for-xlarge,
  .hidden-for-xlarge-only,
  .hidden-for-xlarge-up,
  .hidden-for-xxlarge,
  .hidden-for-xxlarge-only,
  .hidden-for-xxlarge-up,
  .visible-for-large-down,
  .visible-for-medium,
  .visible-for-medium-down,
  .visible-for-medium-only,
  .visible-for-medium-up,
  .visible-for-small-up,
  .visible-for-xlarge-down,
  .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .hidden-for-large-down,
  .hidden-for-medium,
  .hidden-for-medium-down,
  .hidden-for-medium-only,
  .hidden-for-medium-up,
  .hidden-for-small-up,
  .hidden-for-xlarge-down,
  .hidden-for-xxlarge-down,
  .visible-for-large,
  .visible-for-large-only,
  .visible-for-large-up,
  .visible-for-small,
  .visible-for-small-down,
  .visible-for-small-only,
  .visible-for-xlarge,
  .visible-for-xlarge-only,
  .visible-for-xlarge-up,
  .visible-for-xxlarge,
  .visible-for-xxlarge-only,
  .visible-for-xxlarge-up {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
  }
  table.hide-for-large,
  table.hide-for-large-only,
  table.hide-for-large-up,
  table.hide-for-small,
  table.hide-for-small-down,
  table.hide-for-small-only,
  table.hide-for-xlarge,
  table.hide-for-xlarge-only,
  table.hide-for-xlarge-up,
  table.hide-for-xxlarge,
  table.hide-for-xxlarge-only,
  table.hide-for-xxlarge-up,
  table.show-for-large-down,
  table.show-for-medium,
  table.show-for-medium-down,
  table.show-for-medium-only,
  table.show-for-medium-up,
  table.show-for-small-up,
  table.show-for-xlarge-down,
  table.show-for-xxlarge-down {
    display: table;
  }
  thead.hide-for-large,
  thead.hide-for-large-only,
  thead.hide-for-large-up,
  thead.hide-for-small,
  thead.hide-for-small-down,
  thead.hide-for-small-only,
  thead.hide-for-xlarge,
  thead.hide-for-xlarge-only,
  thead.hide-for-xlarge-up,
  thead.hide-for-xxlarge,
  thead.hide-for-xxlarge-only,
  thead.hide-for-xxlarge-up,
  thead.show-for-large-down,
  thead.show-for-medium,
  thead.show-for-medium-down,
  thead.show-for-medium-only,
  thead.show-for-medium-up,
  thead.show-for-small-up,
  thead.show-for-xlarge-down,
  thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }
  tbody.hide-for-large,
  tbody.hide-for-large-only,
  tbody.hide-for-large-up,
  tbody.hide-for-small,
  tbody.hide-for-small-down,
  tbody.hide-for-small-only,
  tbody.hide-for-xlarge,
  tbody.hide-for-xlarge-only,
  tbody.hide-for-xlarge-up,
  tbody.hide-for-xxlarge,
  tbody.hide-for-xxlarge-only,
  tbody.hide-for-xxlarge-up,
  tbody.show-for-large-down,
  tbody.show-for-medium,
  tbody.show-for-medium-down,
  tbody.show-for-medium-only,
  tbody.show-for-medium-up,
  tbody.show-for-small-up,
  tbody.show-for-xlarge-down,
  tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }
  tr.hide-for-large,
  tr.hide-for-large-only,
  tr.hide-for-large-up,
  tr.hide-for-small,
  tr.hide-for-small-down,
  tr.hide-for-small-only,
  tr.hide-for-xlarge,
  tr.hide-for-xlarge-only,
  tr.hide-for-xlarge-up,
  tr.hide-for-xxlarge,
  tr.hide-for-xxlarge-only,
  tr.hide-for-xxlarge-up,
  tr.show-for-large-down,
  tr.show-for-medium,
  tr.show-for-medium-down,
  tr.show-for-medium-only,
  tr.show-for-medium-up,
  tr.show-for-small-up,
  tr.show-for-xlarge-down,
  tr.show-for-xxlarge-down {
    display: table-row !important;
  }
  td.hide-for-large,
  td.hide-for-large-only,
  td.hide-for-large-up,
  td.hide-for-small,
  td.hide-for-small-down,
  td.hide-for-small-only,
  td.hide-for-xlarge,
  td.hide-for-xlarge-only,
  td.hide-for-xlarge-up,
  td.hide-for-xxlarge,
  td.hide-for-xxlarge-only,
  td.hide-for-xxlarge-up,
  td.show-for-large-down,
  td.show-for-medium,
  td.show-for-medium-down,
  td.show-for-medium-only,
  td.show-for-medium-up,
  td.show-for-small-up,
  td.show-for-xlarge-down,
  td.show-for-xxlarge-down,
  th.hide-for-large,
  th.hide-for-large-only,
  th.hide-for-large-up,
  th.hide-for-small,
  th.hide-for-small-down,
  th.hide-for-small-only,
  th.hide-for-xlarge,
  th.hide-for-xlarge-only,
  th.hide-for-xlarge-up,
  th.hide-for-xxlarge,
  th.hide-for-xxlarge-only,
  th.hide-for-xxlarge-up,
  th.show-for-large-down,
  th.show-for-medium,
  th.show-for-medium-down,
  th.show-for-medium-only,
  th.show-for-medium-up,
  th.show-for-small-up,
  th.show-for-xlarge-down,
  th.show-for-xxlarge-down {
    display: table-cell !important;
  }
}
@media only screen and (min-width: 64.063em) {
  .hide-for-medium,
  .hide-for-medium-down,
  .hide-for-medium-only,
  .hide-for-small,
  .hide-for-small-down,
  .hide-for-small-only,
  .hide-for-xlarge,
  .hide-for-xlarge-only,
  .hide-for-xlarge-up,
  .hide-for-xxlarge,
  .hide-for-xxlarge-only,
  .hide-for-xxlarge-up,
  .show-for-large,
  .show-for-large-down,
  .show-for-large-only,
  .show-for-large-up,
  .show-for-medium-up,
  .show-for-small-up,
  .show-for-xlarge-down,
  .show-for-xxlarge-down {
    display: inherit !important;
  }
  .hide-for-large,
  .hide-for-large-down,
  .hide-for-large-only,
  .hide-for-large-up,
  .hide-for-medium-up,
  .hide-for-small-up,
  .hide-for-xlarge-down,
  .hide-for-xxlarge-down,
  .show-for-medium,
  .show-for-medium-down,
  .show-for-medium-only,
  .show-for-small,
  .show-for-small-down,
  .show-for-small-only,
  .show-for-xlarge,
  .show-for-xlarge-only,
  .show-for-xlarge-up,
  .show-for-xxlarge,
  .show-for-xxlarge-only,
  .show-for-xxlarge-up {
    display: none !important;
  }
  .hidden-for-medium,
  .hidden-for-medium-down,
  .hidden-for-medium-only,
  .hidden-for-small,
  .hidden-for-small-down,
  .hidden-for-small-only,
  .hidden-for-xlarge,
  .hidden-for-xlarge-only,
  .hidden-for-xlarge-up,
  .hidden-for-xxlarge,
  .hidden-for-xxlarge-only,
  .hidden-for-xxlarge-up,
  .visible-for-large,
  .visible-for-large-down,
  .visible-for-large-only,
  .visible-for-large-up,
  .visible-for-medium-up,
  .visible-for-small-up,
  .visible-for-xlarge-down,
  .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .hidden-for-large,
  .hidden-for-large-down,
  .hidden-for-large-only,
  .hidden-for-large-up,
  .hidden-for-medium-up,
  .hidden-for-small-up,
  .hidden-for-xlarge-down,
  .hidden-for-xxlarge-down,
  .visible-for-medium,
  .visible-for-medium-down,
  .visible-for-medium-only,
  .visible-for-small,
  .visible-for-small-down,
  .visible-for-small-only,
  .visible-for-xlarge,
  .visible-for-xlarge-only,
  .visible-for-xlarge-up,
  .visible-for-xxlarge,
  .visible-for-xxlarge-only,
  .visible-for-xxlarge-up {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
  }
  table.hide-for-medium,
  table.hide-for-medium-down,
  table.hide-for-medium-only,
  table.hide-for-small,
  table.hide-for-small-down,
  table.hide-for-small-only,
  table.hide-for-xlarge,
  table.hide-for-xlarge-only,
  table.hide-for-xlarge-up,
  table.hide-for-xxlarge,
  table.hide-for-xxlarge-only,
  table.hide-for-xxlarge-up,
  table.show-for-large,
  table.show-for-large-down,
  table.show-for-large-only,
  table.show-for-large-up,
  table.show-for-medium-up,
  table.show-for-small-up,
  table.show-for-xlarge-down,
  table.show-for-xxlarge-down {
    display: table;
  }
  thead.hide-for-medium,
  thead.hide-for-medium-down,
  thead.hide-for-medium-only,
  thead.hide-for-small,
  thead.hide-for-small-down,
  thead.hide-for-small-only,
  thead.hide-for-xlarge,
  thead.hide-for-xlarge-only,
  thead.hide-for-xlarge-up,
  thead.hide-for-xxlarge,
  thead.hide-for-xxlarge-only,
  thead.hide-for-xxlarge-up,
  thead.show-for-large,
  thead.show-for-large-down,
  thead.show-for-large-only,
  thead.show-for-large-up,
  thead.show-for-medium-up,
  thead.show-for-small-up,
  thead.show-for-xlarge-down,
  thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }
  tbody.hide-for-medium,
  tbody.hide-for-medium-down,
  tbody.hide-for-medium-only,
  tbody.hide-for-small,
  tbody.hide-for-small-down,
  tbody.hide-for-small-only,
  tbody.hide-for-xlarge,
  tbody.hide-for-xlarge-only,
  tbody.hide-for-xlarge-up,
  tbody.hide-for-xxlarge,
  tbody.hide-for-xxlarge-only,
  tbody.hide-for-xxlarge-up,
  tbody.show-for-large,
  tbody.show-for-large-down,
  tbody.show-for-large-only,
  tbody.show-for-large-up,
  tbody.show-for-medium-up,
  tbody.show-for-small-up,
  tbody.show-for-xlarge-down,
  tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }
  tr.hide-for-medium,
  tr.hide-for-medium-down,
  tr.hide-for-medium-only,
  tr.hide-for-small,
  tr.hide-for-small-down,
  tr.hide-for-small-only,
  tr.hide-for-xlarge,
  tr.hide-for-xlarge-only,
  tr.hide-for-xlarge-up,
  tr.hide-for-xxlarge,
  tr.hide-for-xxlarge-only,
  tr.hide-for-xxlarge-up,
  tr.show-for-large,
  tr.show-for-large-down,
  tr.show-for-large-only,
  tr.show-for-large-up,
  tr.show-for-medium-up,
  tr.show-for-small-up,
  tr.show-for-xlarge-down,
  tr.show-for-xxlarge-down {
    display: table-row !important;
  }
  td.hide-for-medium,
  td.hide-for-medium-down,
  td.hide-for-medium-only,
  td.hide-for-small,
  td.hide-for-small-down,
  td.hide-for-small-only,
  td.hide-for-xlarge,
  td.hide-for-xlarge-only,
  td.hide-for-xlarge-up,
  td.hide-for-xxlarge,
  td.hide-for-xxlarge-only,
  td.hide-for-xxlarge-up,
  td.show-for-large,
  td.show-for-large-down,
  td.show-for-large-only,
  td.show-for-large-up,
  td.show-for-medium-up,
  td.show-for-small-up,
  td.show-for-xlarge-down,
  td.show-for-xxlarge-down,
  th.hide-for-medium,
  th.hide-for-medium-down,
  th.hide-for-medium-only,
  th.hide-for-small,
  th.hide-for-small-down,
  th.hide-for-small-only,
  th.hide-for-xlarge,
  th.hide-for-xlarge-only,
  th.hide-for-xlarge-up,
  th.hide-for-xxlarge,
  th.hide-for-xxlarge-only,
  th.hide-for-xxlarge-up,
  th.show-for-large,
  th.show-for-large-down,
  th.show-for-large-only,
  th.show-for-large-up,
  th.show-for-medium-up,
  th.show-for-small-up,
  th.show-for-xlarge-down,
  th.show-for-xxlarge-down {
    display: table-cell !important;
  }
}
@media only screen and (min-width: 90.063em) {
  .hide-for-large,
  .hide-for-large-down,
  .hide-for-large-only,
  .hide-for-medium,
  .hide-for-medium-down,
  .hide-for-medium-only,
  .hide-for-small,
  .hide-for-small-down,
  .hide-for-small-only,
  .hide-for-xxlarge,
  .hide-for-xxlarge-only,
  .hide-for-xxlarge-up,
  .show-for-large-up,
  .show-for-medium-up,
  .show-for-small-up,
  .show-for-xlarge,
  .show-for-xlarge-down,
  .show-for-xlarge-only,
  .show-for-xlarge-up,
  .show-for-xxlarge-down {
    display: inherit !important;
  }
  .hide-for-large-up,
  .hide-for-medium-up,
  .hide-for-small-up,
  .hide-for-xlarge,
  .hide-for-xlarge-down,
  .hide-for-xlarge-only,
  .hide-for-xlarge-up,
  .hide-for-xxlarge-down,
  .show-for-large,
  .show-for-large-down,
  .show-for-large-only,
  .show-for-medium,
  .show-for-medium-down,
  .show-for-medium-only,
  .show-for-small,
  .show-for-small-down,
  .show-for-small-only,
  .show-for-xxlarge,
  .show-for-xxlarge-only,
  .show-for-xxlarge-up {
    display: none !important;
  }
  .hidden-for-large,
  .hidden-for-large-down,
  .hidden-for-large-only,
  .hidden-for-medium,
  .hidden-for-medium-down,
  .hidden-for-medium-only,
  .hidden-for-small,
  .hidden-for-small-down,
  .hidden-for-small-only,
  .hidden-for-xxlarge,
  .hidden-for-xxlarge-only,
  .hidden-for-xxlarge-up,
  .visible-for-large-up,
  .visible-for-medium-up,
  .visible-for-small-up,
  .visible-for-xlarge,
  .visible-for-xlarge-down,
  .visible-for-xlarge-only,
  .visible-for-xlarge-up,
  .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .hidden-for-large-up,
  .hidden-for-medium-up,
  .hidden-for-small-up,
  .hidden-for-xlarge,
  .hidden-for-xlarge-down,
  .hidden-for-xlarge-only,
  .hidden-for-xlarge-up,
  .hidden-for-xxlarge-down,
  .visible-for-large,
  .visible-for-large-down,
  .visible-for-large-only,
  .visible-for-medium,
  .visible-for-medium-down,
  .visible-for-medium-only,
  .visible-for-small,
  .visible-for-small-down,
  .visible-for-small-only,
  .visible-for-xxlarge,
  .visible-for-xxlarge-only,
  .visible-for-xxlarge-up {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
  }
  table.hide-for-large,
  table.hide-for-large-down,
  table.hide-for-large-only,
  table.hide-for-medium,
  table.hide-for-medium-down,
  table.hide-for-medium-only,
  table.hide-for-small,
  table.hide-for-small-down,
  table.hide-for-small-only,
  table.hide-for-xxlarge,
  table.hide-for-xxlarge-only,
  table.hide-for-xxlarge-up,
  table.show-for-large-up,
  table.show-for-medium-up,
  table.show-for-small-up,
  table.show-for-xlarge,
  table.show-for-xlarge-down,
  table.show-for-xlarge-only,
  table.show-for-xlarge-up,
  table.show-for-xxlarge-down {
    display: table;
  }
  thead.hide-for-large,
  thead.hide-for-large-down,
  thead.hide-for-large-only,
  thead.hide-for-medium,
  thead.hide-for-medium-down,
  thead.hide-for-medium-only,
  thead.hide-for-small,
  thead.hide-for-small-down,
  thead.hide-for-small-only,
  thead.hide-for-xxlarge,
  thead.hide-for-xxlarge-only,
  thead.hide-for-xxlarge-up,
  thead.show-for-large-up,
  thead.show-for-medium-up,
  thead.show-for-small-up,
  thead.show-for-xlarge,
  thead.show-for-xlarge-down,
  thead.show-for-xlarge-only,
  thead.show-for-xlarge-up,
  thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }
  tbody.hide-for-large,
  tbody.hide-for-large-down,
  tbody.hide-for-large-only,
  tbody.hide-for-medium,
  tbody.hide-for-medium-down,
  tbody.hide-for-medium-only,
  tbody.hide-for-small,
  tbody.hide-for-small-down,
  tbody.hide-for-small-only,
  tbody.hide-for-xxlarge,
  tbody.hide-for-xxlarge-only,
  tbody.hide-for-xxlarge-up,
  tbody.show-for-large-up,
  tbody.show-for-medium-up,
  tbody.show-for-small-up,
  tbody.show-for-xlarge,
  tbody.show-for-xlarge-down,
  tbody.show-for-xlarge-only,
  tbody.show-for-xlarge-up,
  tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }
  tr.hide-for-large,
  tr.hide-for-large-down,
  tr.hide-for-large-only,
  tr.hide-for-medium,
  tr.hide-for-medium-down,
  tr.hide-for-medium-only,
  tr.hide-for-small,
  tr.hide-for-small-down,
  tr.hide-for-small-only,
  tr.hide-for-xxlarge,
  tr.hide-for-xxlarge-only,
  tr.hide-for-xxlarge-up,
  tr.show-for-large-up,
  tr.show-for-medium-up,
  tr.show-for-small-up,
  tr.show-for-xlarge,
  tr.show-for-xlarge-down,
  tr.show-for-xlarge-only,
  tr.show-for-xlarge-up,
  tr.show-for-xxlarge-down {
    display: table-row !important;
  }
  td.hide-for-large,
  td.hide-for-large-down,
  td.hide-for-large-only,
  td.hide-for-medium,
  td.hide-for-medium-down,
  td.hide-for-medium-only,
  td.hide-for-small,
  td.hide-for-small-down,
  td.hide-for-small-only,
  td.hide-for-xxlarge,
  td.hide-for-xxlarge-only,
  td.hide-for-xxlarge-up,
  td.show-for-large-up,
  td.show-for-medium-up,
  td.show-for-small-up,
  td.show-for-xlarge,
  td.show-for-xlarge-down,
  td.show-for-xlarge-only,
  td.show-for-xlarge-up,
  td.show-for-xxlarge-down,
  th.hide-for-large,
  th.hide-for-large-down,
  th.hide-for-large-only,
  th.hide-for-medium,
  th.hide-for-medium-down,
  th.hide-for-medium-only,
  th.hide-for-small,
  th.hide-for-small-down,
  th.hide-for-small-only,
  th.hide-for-xxlarge,
  th.hide-for-xxlarge-only,
  th.hide-for-xxlarge-up,
  th.show-for-large-up,
  th.show-for-medium-up,
  th.show-for-small-up,
  th.show-for-xlarge,
  th.show-for-xlarge-down,
  th.show-for-xlarge-only,
  th.show-for-xlarge-up,
  th.show-for-xxlarge-down {
    display: table-cell !important;
  }
}
@media only screen and (min-width: 120.063em) {
  .hide-for-large,
  .hide-for-large-down,
  .hide-for-large-only,
  .hide-for-medium,
  .hide-for-medium-down,
  .hide-for-medium-only,
  .hide-for-small,
  .hide-for-small-down,
  .hide-for-small-only,
  .hide-for-xlarge,
  .hide-for-xlarge-down,
  .hide-for-xlarge-only,
  .show-for-large-up,
  .show-for-medium-up,
  .show-for-small-up,
  .show-for-xlarge-up,
  .show-for-xxlarge,
  .show-for-xxlarge-down,
  .show-for-xxlarge-only,
  .show-for-xxlarge-up {
    display: inherit !important;
  }
  .hide-for-large-up,
  .hide-for-medium-up,
  .hide-for-small-up,
  .hide-for-xlarge-up,
  .hide-for-xxlarge,
  .hide-for-xxlarge-down,
  .hide-for-xxlarge-only,
  .hide-for-xxlarge-up,
  .show-for-large,
  .show-for-large-down,
  .show-for-large-only,
  .show-for-medium,
  .show-for-medium-down,
  .show-for-medium-only,
  .show-for-small,
  .show-for-small-down,
  .show-for-small-only,
  .show-for-xlarge,
  .show-for-xlarge-down,
  .show-for-xlarge-only {
    display: none !important;
  }
  .hidden-for-large,
  .hidden-for-large-down,
  .hidden-for-large-only,
  .hidden-for-medium,
  .hidden-for-medium-down,
  .hidden-for-medium-only,
  .hidden-for-small,
  .hidden-for-small-down,
  .hidden-for-small-only,
  .hidden-for-xlarge,
  .hidden-for-xlarge-down,
  .hidden-for-xlarge-only,
  .visible-for-large-up,
  .visible-for-medium-up,
  .visible-for-small-up,
  .visible-for-xlarge-up,
  .visible-for-xxlarge,
  .visible-for-xxlarge-down,
  .visible-for-xxlarge-only,
  .visible-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .hidden-for-large-up,
  .hidden-for-medium-up,
  .hidden-for-small-up,
  .hidden-for-xlarge-up,
  .hidden-for-xxlarge,
  .hidden-for-xxlarge-down,
  .hidden-for-xxlarge-only,
  .hidden-for-xxlarge-up,
  .visible-for-large,
  .visible-for-large-down,
  .visible-for-large-only,
  .visible-for-medium,
  .visible-for-medium-down,
  .visible-for-medium-only,
  .visible-for-small,
  .visible-for-small-down,
  .visible-for-small-only,
  .visible-for-xlarge,
  .visible-for-xlarge-down,
  .visible-for-xlarge-only {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
  }
  table.hide-for-large,
  table.hide-for-large-down,
  table.hide-for-large-only,
  table.hide-for-medium,
  table.hide-for-medium-down,
  table.hide-for-medium-only,
  table.hide-for-small,
  table.hide-for-small-down,
  table.hide-for-small-only,
  table.hide-for-xlarge,
  table.hide-for-xlarge-down,
  table.hide-for-xlarge-only,
  table.show-for-large-up,
  table.show-for-medium-up,
  table.show-for-small-up,
  table.show-for-xlarge-up,
  table.show-for-xxlarge,
  table.show-for-xxlarge-down,
  table.show-for-xxlarge-only,
  table.show-for-xxlarge-up {
    display: table;
  }
  thead.hide-for-large,
  thead.hide-for-large-down,
  thead.hide-for-large-only,
  thead.hide-for-medium,
  thead.hide-for-medium-down,
  thead.hide-for-medium-only,
  thead.hide-for-small,
  thead.hide-for-small-down,
  thead.hide-for-small-only,
  thead.hide-for-xlarge,
  thead.hide-for-xlarge-down,
  thead.hide-for-xlarge-only,
  thead.show-for-large-up,
  thead.show-for-medium-up,
  thead.show-for-small-up,
  thead.show-for-xlarge-up,
  thead.show-for-xxlarge,
  thead.show-for-xxlarge-down,
  thead.show-for-xxlarge-only,
  thead.show-for-xxlarge-up {
    display: table-header-group !important;
  }
  tbody.hide-for-large,
  tbody.hide-for-large-down,
  tbody.hide-for-large-only,
  tbody.hide-for-medium,
  tbody.hide-for-medium-down,
  tbody.hide-for-medium-only,
  tbody.hide-for-small,
  tbody.hide-for-small-down,
  tbody.hide-for-small-only,
  tbody.hide-for-xlarge,
  tbody.hide-for-xlarge-down,
  tbody.hide-for-xlarge-only,
  tbody.show-for-large-up,
  tbody.show-for-medium-up,
  tbody.show-for-small-up,
  tbody.show-for-xlarge-up,
  tbody.show-for-xxlarge,
  tbody.show-for-xxlarge-down,
  tbody.show-for-xxlarge-only,
  tbody.show-for-xxlarge-up {
    display: table-row-group !important;
  }
  tr.hide-for-large,
  tr.hide-for-large-down,
  tr.hide-for-large-only,
  tr.hide-for-medium,
  tr.hide-for-medium-down,
  tr.hide-for-medium-only,
  tr.hide-for-small,
  tr.hide-for-small-down,
  tr.hide-for-small-only,
  tr.hide-for-xlarge,
  tr.hide-for-xlarge-down,
  tr.hide-for-xlarge-only,
  tr.show-for-large-up,
  tr.show-for-medium-up,
  tr.show-for-small-up,
  tr.show-for-xlarge-up,
  tr.show-for-xxlarge,
  tr.show-for-xxlarge-down,
  tr.show-for-xxlarge-only,
  tr.show-for-xxlarge-up {
    display: table-row !important;
  }
  td.hide-for-large,
  td.hide-for-large-down,
  td.hide-for-large-only,
  td.hide-for-medium,
  td.hide-for-medium-down,
  td.hide-for-medium-only,
  td.hide-for-small,
  td.hide-for-small-down,
  td.hide-for-small-only,
  td.hide-for-xlarge,
  td.hide-for-xlarge-down,
  td.hide-for-xlarge-only,
  td.show-for-large-up,
  td.show-for-medium-up,
  td.show-for-small-up,
  td.show-for-xlarge-up,
  td.show-for-xxlarge,
  td.show-for-xxlarge-down,
  td.show-for-xxlarge-only,
  td.show-for-xxlarge-up,
  th.hide-for-large,
  th.hide-for-large-down,
  th.hide-for-large-only,
  th.hide-for-medium,
  th.hide-for-medium-down,
  th.hide-for-medium-only,
  th.hide-for-small,
  th.hide-for-small-down,
  th.hide-for-small-only,
  th.hide-for-xlarge,
  th.hide-for-xlarge-down,
  th.hide-for-xlarge-only,
  th.show-for-large-up,
  th.show-for-medium-up,
  th.show-for-small-up,
  th.show-for-xlarge-up,
  th.show-for-xxlarge,
  th.show-for-xxlarge-down,
  th.show-for-xxlarge-only,
  th.show-for-xxlarge-up {
    display: table-cell !important;
  }
}
.hide-for-portrait,
.show-for-landscape {
  display: inherit !important;
}
.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
table.hide-for-landscape,
table.show-for-portrait {
  display: table;
}
thead.hide-for-landscape,
thead.show-for-portrait {
  display: table-header-group !important;
}
tbody.hide-for-landscape,
tbody.show-for-portrait {
  display: table-row-group !important;
}
tr.hide-for-landscape,
tr.show-for-portrait {
  display: table-row !important;
}
td.hide-for-landscape,
td.show-for-portrait,
th.hide-for-landscape,
th.show-for-portrait {
  display: table-cell !important;
}
@media only screen and (orientation: landscape) {
  .hide-for-portrait,
  .show-for-landscape {
    display: inherit !important;
  }
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
  table.hide-for-portrait,
  table.show-for-landscape {
    display: table;
  }
  thead.hide-for-portrait,
  thead.show-for-landscape {
    display: table-header-group !important;
  }
  tbody.hide-for-portrait,
  tbody.show-for-landscape {
    display: table-row-group !important;
  }
  tr.hide-for-portrait,
  tr.show-for-landscape {
    display: table-row !important;
  }
  td.hide-for-portrait,
  td.show-for-landscape,
  th.hide-for-portrait,
  th.show-for-landscape {
    display: table-cell !important;
  }
}
@media only screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: inherit !important;
  }
  .hide-for-portrait,
  .show-for-landscape {
    display: none !important;
  }
  table.hide-for-landscape,
  table.show-for-portrait {
    display: table;
  }
  thead.hide-for-landscape,
  thead.show-for-portrait {
    display: table-header-group !important;
  }
  tbody.hide-for-landscape,
  tbody.show-for-portrait {
    display: table-row-group !important;
  }
  tr.hide-for-landscape,
  tr.show-for-portrait {
    display: table-row !important;
  }
  td.hide-for-landscape,
  td.show-for-portrait,
  th.hide-for-landscape,
  th.show-for-portrait {
    display: table-cell !important;
  }
}
.show-for-touch {
  display: none !important;
}
.hide-for-touch {
  display: inherit !important;
}
.touch .show-for-touch {
  display: inherit !important;
}
.touch .hide-for-touch {
  display: none !important;
}
table.hide-for-touch {
  display: table;
}
.touch table.show-for-touch {
  display: table;
}
thead.hide-for-touch {
  display: table-header-group !important;
}
.touch thead.show-for-touch {
  display: table-header-group !important;
}
tbody.hide-for-touch {
  display: table-row-group !important;
}
.touch tbody.show-for-touch {
  display: table-row-group !important;
}
tr.hide-for-touch {
  display: table-row !important;
}
.touch tr.show-for-touch {
  display: table-row !important;
}
td.hide-for-touch {
  display: table-cell !important;
}
.touch td.show-for-touch {
  display: table-cell !important;
}
th.hide-for-touch {
  display: table-cell !important;
}
.touch th.show-for-touch {
  display: table-cell !important;
}
@media print {
  .show-for-print {
    display: block;
  }
  .hide-for-print {
    display: none;
  }
  table.show-for-print {
    display: table;
  }
  thead.show-for-print {
    display: table-header-group !important;
  }
  tbody.show-for-print {
    display: table-row-group !important;
  }
  tr.show-for-print {
    display: table-row !important;
  }
  td.show-for-print {
    display: table-cell !important;
  }
  th.show-for-print {
    display: table-cell !important;
  }
}
@media only screen and (max-width: 40em) {
  .banner-404 {
    display: none;
  }
}
.er-bg-pattern-1 {
  background: linear-gradient(135deg, #00000002 25%, transparent 25%) -20px 0/40px
      40px,
    linear-gradient(225deg, #00000004 25%, transparent 25%) -20px 0/40px 40px,
    linear-gradient(315deg, #00000002 25%, transparent 25%) 0 0/40px 40px,
    linear-gradient(45deg, #00000004 25%, #ffffff04 25%) 0 0/40px 40px;
}
.wp-caption .img {
  margin: 0 0 1em 0;
}
.wp-caption.alignnone {
  border: 0;
  width: 100% !important;
  padding: 0;
  max-width: none;
  margin: 0 0 1.25rem 0;
}
.wp-caption.alignnone img {
  border: 4px solid #e5e5e5;
  margin: 0 auto;
  width: 100%;
  display: block;
}
.wp-caption.alignnone .wp-caption-dt {
  margin: 0;
}
.wp-caption.alignnone .wp-caption-dd,
.wp-caption.alignnone .wp-caption-text {
  border-bottom: 1px solid #e5e5e5;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  font-size: 0.75em;
  text-align: center;
  color: #595959;
  line-height: 1.4;
}
#tinymce .wp-caption.alignnone {
  width: auto !important;
}
#tinymce .wp-caption.alignnone img {
  width: auto !important;
}
form .error input[type="date"],
form .error input[type="email"],
form .error input[type="text"],
form .error select {
  margin-bottom: 0 !important;
}
form small.error {
  position: relative;
  border-radius: 0 0 3px 3px;
  padding: 0.5625rem !important;
  margin-bottom: 0.5rem !important;
  line-height: 1.3;
}
form small.error:before {
  display: block;
  content: "";
  position: absolute;
  top: -0.7em;
  left: 0.4em;
  border-left: 1em solid transparent;
  border-right: 1em solid transparent;
  border-bottom: 1em solid #ff4136;
  -moz-transform: scale(0.9999);
}
form .place-of-residence {
  background-color: rgba(0, 0, 0, 0.05);
  padding: 0.5em 0.5em 0.2em 0.5em;
  margin-top: 1em;
  margin-bottom: 1em;
  border: 1px solid #c9c9c9;
  border-radius: 5px;
}
form .place-of-residence .por {
  margin-bottom: 0.5em;
}
form .opt-in-general {
  width: 90%;
  margin: 0.5rem auto;
}
form .opt-in-general p {
  font-size: 60%;
  margin-bottom: 0;
  color: #696969;
}
form .opt-in-general #opt-in-opener-accordion,
form .opt-in-general #opt-in-opener-overlay {
  font-size: 0.875rem;
  font-style: italic;
}
form .opt-in-general #opt-in-text-accordion {
  display: none;
}
form p.textarea-maxlength {
  font-size: 0.75rem;
  text-align: right;
  line-height: 0.75rem;
  margin-top: -0.75rem;
  font-style: italic;
}
form p.textarea-maxlength span.counter {
  font-weight: 700;
  font-style: normal;
}
form button.reset-program-campus {
  margin: 0;
  padding: 0;
  background: 0 0;
  color: #2272bd;
  font-size: 85%;
  font-style: italic;
}
form button.reset-program-campus:active,
form button.reset-program-campus:hover {
  color: #1a5892;
}
form .er_form_hp {
  display: none;
}
form#contact-form #campus-field,
form#contact-form #program-field {
  display: none;
}
#er-form {
  background: #333;
  color: #fff;
  border-radius: 3px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  overflow: hidden;
  border: 0;
  font-size: 1rem;
}
#er-form.no-header .er-form-header {
  display: none;
}
#er-form label {
  color: inherit;
}
#er-form .chk-questions-wrap {
  margin-bottom: 0.3rem;
}
#er-form .checkbox input {
  margin-bottom: 0.2rem;
}
#er-form input[type="date"],
#er-form input[type="email"],
#er-form input[type="text"],
#er-form select {
  margin-bottom: 0.6rem;
  padding: 0.4rem;
  height: auto;
  border: 0;
  margin-top: 0.1rem;
}
#er-form select {
  z-index: 5;
  -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);
}
#er-form .opt-in {
  background: #222;
  color: #ddd;
  margin: 1rem 0;
  padding: 1em;
  border-radius: 3px;
}
#er-form .opt-in p {
  font-size: 60%;
  margin-bottom: 0.5em;
}
#er-form .opt-in a {
  color: #008cba;
}
#er-form .opt-in a:hover {
  text-decoration: none;
}
#er-form .opt-in #opt-in-opener-accordion,
#er-form .opt-in #opt-in-opener-overlay {
  font-size: 0.875rem;
  font-style: italic;
  color: #008cba;
  white-space: nowrap;
}
#er-form .opt-in #opt-in-opener-accordion:active,
#er-form .opt-in #opt-in-opener-accordion:hover,
#er-form .opt-in #opt-in-opener-overlay:active,
#er-form .opt-in #opt-in-opener-overlay:hover {
  color: #006687;
}
#er-form .opt-in #opt-in-text-accordion {
  display: none;
}
#er-form .submit {
  margin-top: 0.5rem;
  font-size: 1.4375rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: 600;
  color: #fff;
  border: 0;
  border-radius: 0;
  background: purple;
  background: repeating-linear-gradient(
      135deg,
      transparent,
      transparent 5px,
      purple 5px,
      purple 10px
    ),
    linear-gradient(to bottom, purple, purple, purple);
}
#er-form .submit:hover {
  background-color: #9f009f;
  background: repeating-linear-gradient(
      135deg,
      transparent,
      transparent 5px,
      #9f009f 5px,
      #9f009f 10px
    ),
    linear-gradient(to bottom, #9f009f, #9f009f, #9f009f);
}
#er-form .privacy-policy-link {
  text-align: center;
  font-size: 60%;
}
#er-form .privacy-policy-link .fa {
  margin-right: 0.2rem;
}
#er-form .privacy-policy-link a {
  color: #999;
}
#er-form .privacy-policy-link a:hover {
  text-decoration: none;
  color: #666;
}
#er-form .valid-field-wrapper {
  position: relative;
}
#er-form .valid-field {
  background: #d3f9b6 !important;
  background-position: 98% 50% !important;
  padding-right: 35px !important;
}
#er-form .valid-field-check {
  display: none;
  position: absolute;
  right: 10px;
  z-index: 2;
  display: block;
  width: 20px;
  height: 20px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}
#er-form.with-labels .valid-field-check {
  top: 30px;
}
#er-form.no-labels .valid-field-check {
  top: 10px;
}
#er-form .valid-field-check:before {
  display: block;
  content: "";
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAARCAYAAADQWvz5AAACOklEQVQ4jZ2TPYuUSRSFn3Orqt/u6ZkRE3UUdn/AusiAYmRmYCbooInIGImwsAguCMomCwaCsAiCGBiJoOIHBhqazB8QFDEwVwPB6bbfYbqqrsGM4oC2s3uCe6EoHk5x6mjx0U4gMK4tUDAC1TPTnTncM8ur7wihSy4johpC6FA9455xrwtNmF6Iam5F/occR8TjU3Hqsgi/tGX09j+DHO8H0pVe6J82GcOyfHGUBzc2BRLgQKXu6NLcTZYOFAqD/OEPYdeCRTYFcnecuq1rU0+C4nxhzLAsn3H8elpH/BTka2uuZ7OPu6E/35aPZPe/RbxuAHw7J7rJv0bFh704s3elDEhh5qpZ848UkRLIcPwraCsws8HDmrY3sX8vqbO/lE+40rNeZ9d5UwSvG+6a4GzEXnWt/zpac81hPzjuPus130lq9klGob43pT9rXW3xiiSEAGEywu/Hen2H35LS7qhmnwinhLY49ShwWBhOBbML8vo4lwEGRAWCjCCjYw06+XAHua6Yye51w5YjwsFF8TEyw9xYqe0S0oGEbXz4N4oAKcxWhxO5rj4I4pAU16tSkGKebXZeMgxNCCW6Q1AHx9smzJyrdbin1jLnMqIiozK6vTVtexoV8R/6gbjWHMe9EKx56eS/vA5vSSCMYWlvfhg8xzT5p0RTWotRYlxbqvy26ByUl8WxyoMmNEvJ4npCE0AhdHF3hBj7CnJzx/81yiKk+9NxukxGrINyab93/qaQz8rzC37i5Is+A0wf6rdVUQYFAAAAAElFTkSuQmCC");
  background-repeat: no-repeat;
  height: 18px;
  width: 18px;
}
#er-form .no-check .valid-field-check:before {
  display: none;
}
#er-form.no-labels .valid-field-checkbox,
#er-form.with-labels .valid-field-checkbox {
  top: 2px;
}
#er-form.no-labels .valid-field-radio,
#er-form.with-labels .valid-field-radio {
  top: 27px;
}
#er-form .valid-submit {
  background: #1ba502 !important;
}
#er-form .chk-questions-success {
  background: #f1fde8 !important;
  padding: 5px;
  margin: -7px;
}
#er-form .chk-success {
  display: none;
  font-size: 0.875rem;
  background: #65bd26;
  padding: 3px;
  color: #fff;
  text-align: center;
  margin: 0 -7px;
}
#er-form .chk-success-show {
  display: block;
}
.h-white-text #er-form {
  background: #333;
  color: #fff;
  border: 0;
}
.h-white-text #er-form .opt-in {
  background: #222;
  color: #ddd;
}
.h-white-text #er-form .opt-in a {
  color: #008cba;
}
.h-white-text #er-form .opt-in #opt-in-opener-accordion,
.h-white-text #er-form .opt-in #opt-in-opener-overlay {
  font-size: 0.875rem;
  font-style: italic;
  color: #008cba;
  white-space: nowrap;
}
.h-white-text #er-form .opt-in #opt-in-opener-accordion:active,
.h-white-text #er-form .opt-in #opt-in-opener-accordion:hover,
.h-white-text #er-form .opt-in #opt-in-opener-overlay:active,
.h-white-text #er-form .opt-in #opt-in-opener-overlay:hover {
  color: #00b2ed;
}
.h-white-text #er-form .submit {
  color: #fff;
  border: 0;
  background: purple;
  background: repeating-linear-gradient(
      135deg,
      transparent,
      transparent 5px,
      purple 5px,
      purple 10px
    ),
    linear-gradient(to bottom, purple, purple, purple);
}
.h-white-text #er-form .submit:hover {
  background-color: #610061;
  background: repeating-linear-gradient(
      135deg,
      transparent,
      transparent 5px,
      #610061 5px,
      #610061 10px
    ),
    linear-gradient(to bottom, #610061, #610061, #610061);
}
.h-white-text #er-form .privacy-policy-link a {
  color: #666;
}
.h-white-text #er-form .privacy-policy-link a:hover {
  color: #999;
}
.h-white-text #er-form .valid-field {
  background: #2b6001 !important;
}
.h-white-text #er-form .valid-submit {
  background: #7fff66 !important;
}
.h-white-text #er-form .chk-questions-success {
  background: #122800 !important;
}
.h-white-text #er-form .chk-success {
  background: #7ed33d;
  color: #000;
}
.er-form-content {
  padding: 1em 1em;
}
.er-form-content-hidden {
  display: none;
}
.er-form-header {
  color: #fff;
  text-align: center;
  padding: 0.75em 1em 0.5em 1em;
  position: relative;
  margin-bottom: 0.3rem;
  -moz-box-shadow: inset 0 2px 5px -1px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0 2px 5px -1px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 2px 5px -1px rgba(0, 0, 0, 0.5);
}
.er-form-header h1,
.er-form-header h2,
.er-form-header h3,
.er-form-header h4,
.er-form-header h5,
.er-form-header h6 {
  color: inherit;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: 600;
}
.er-form-header:after {
  position: absolute;
  display: block;
  content: "";
  left: 50%;
  bottom: -0.7rem;
  margin-left: -20rem;
  width: 0;
  height: 0;
  border-top-color: purple !important;
  -moz-transform: scale(0.9999);
}
.er-form-header.er-form-header-only {
  margin-bottom: 0;
  cursor: pointer;
}
.er-form-header.er-form-header-only:after {
  position: absolute;
  display: block;
  content: "";
  left: 50%;
  bottom: -0.7rem;
  margin-left: -20rem;
  width: 0;
  height: 0;
  border-top-color: purple !important;
  -moz-transform: scale(0.9999);
}
.er-form-header.er-form-header-full {
  cursor: pointer;
}
.h-white-text .er-form-header {
  color: #fff;
  -moz-box-shadow: inset 0 2px 5px -1px rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: inset 0 2px 5px -1px rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 2px 5px -1px rgba(255, 255, 255, 0.5);
}
.h-white-text .er-form-header:after {
  position: absolute;
  display: block;
  content: "";
  left: 50%;
  bottom: -0.7rem;
  margin-left: -20rem;
  width: 0;
  height: 0;
  border-top-color: purple !important;
  -moz-transform: scale(0.9999);
}
.h-white-text .er-form-header.er-form-header-only {
  margin-bottom: 0;
  cursor: pointer;
}
.h-white-text .er-form-header.er-form-header-only:after {
  position: absolute;
  display: block;
  content: "";
  left: 50%;
  bottom: -0.7rem;
  margin-left: -20rem;
  width: 0;
  height: 0;
  border-top-color: purple !important;
  -moz-transform: scale(0.9999);
}
.sidebar #er-form {
  margin-right: -2rem;
}
[data-abide] .error small.error,
[data-abide] .error span.error {
  background-color: #f5a328;
}
[data-abide] .error small.error:before,
[data-abide] .error span.error:before {
  border-bottom-color: #f5a328;
}
[data-abide] small.error,
[data-abide] span.error {
  background-color: #f5a328;
}
[data-abide] small.error:before,
[data-abide] span.error:before {
  border-bottom-color: #f5a328;
}
.h-white-text [data-abide] .error small.error,
.h-white-text [data-abide] .error span.error {
  background-color: #f5a328;
}
.h-white-text [data-abide] .error small.error:before,
.h-white-text [data-abide] .error span.error:before {
  border-bottom-color: #f5a328;
}
.h-white-text [data-abide] small.error,
.h-white-text [data-abide] span.error {
  background-color: #f5a328;
}
.h-white-text [data-abide] small.error:before,
.h-white-text [data-abide] span.error:before {
  border-bottom-color: #f5a328;
}
@media only screen and (max-width: 40em) {
  #er-form .chk-questions-mobile .checkbox {
    padding: 10px;
    margin-top: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
  }
  #er-form .chk-questions-mobile .checkbox .valid-field-checkbox {
    top: 12px;
  }
  .h-white-text #er-form .chk-questions-mobile .checkbox {
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.4);
  }
}
#mobile-cta {
  background: purple;
  color: #fff;
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 99999999;
}
#mobile-cta .hide {
  display: none;
}
#mobile-cta .row {
  display: table;
}
#mobile-cta .tighter {
  margin-left: 0;
  margin-right: 0;
}
#mobile-cta .column {
  display: table-cell;
  vertical-align: middle;
  float: none;
}
#mobile-cta .wrapper {
  padding: 0.5rem 0;
}
#mobile-cta * {
  color: #fff;
}
#mobile-cta .tagline {
  font-size: 0.875rem;
  line-height: 1.4;
  width: auto !important;
}
@media only screen and (min-width: 40.063em) {
  #mobile-cta .tagline {
    font-size: 1.4375rem;
  }
}
#mobile-cta .button {
  display: block;
  width: 100%;
  padding: 0.5rem 0.25rem;
  font-size: 1.25rem;
  margin-bottom: 0;
  font-size: 1.4375rem;
  background: #f99517;
  color: #fff;
  white-space: nowrap;
}
#mobile-cta .cta {
  text-align: center;
}
#mobile-cta .phone-button {
  background: #f99517;
  color: #fff;
}
#mobile-cta .phone-button .fa {
  padding-right: 0.5rem;
}
.lt-ie9 #mobile-cta {
  display: none;
}
@media only screen {
  #footer {
    padding-bottom: 6rem;
  }
}
@media only screen and (min-width: 64.063em) {
  #footer {
    padding-bottom: 0;
  }
  #mobile-cta {
    display: none;
  }
}
#perma-cta {
  display: block;
  z-index: 99999999;
}
@media only screen and (min-width: 64.063em) {
  #perma-cta {
    display: none;
  }
}
#perma-cta .button {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  display: block;
  position: fixed;
  bottom: 0;
  right: 0;
  margin-bottom: 0;
  width: 50%;
  width: 50vw;
  z-index: 99999999;
  float: right;
  font-size: 1.2rem;
  padding: 1rem;
  -webkit-border-radius: 20px 0px 0px 0px;
  -moz-border-radius: 20px 0 0 0;
  border-radius: 20px 0 0 0;
}
@media only screen and (min-width: 40.063em) {
  #perma-cta .button {
    width: 40%;
    width: 40vw;
  }
}
@media only screen and (min-width: 64.063em) {
  #perma-cta .button {
    width: 25%;
    width: 25vw;
    font-size: 1.2rem;
    padding: 1.3rem;
    transition: padding 0.5s;
    -webkit-transition: padding 0.5s;
  }
  #perma-cta .button:hover {
    padding: 1.8rem;
  }
}
@media (min-width: 1500px) {
  #perma-cta .button {
    width: 17%;
    width: 17vw;
  }
}
.sidebar {
  margin-top: -1rem;
  display: block;
}
@media only screen and (min-width: 64.063em) {
  .sidebar {
    display: table-cell;
  }
}
.sidebar,
.sidebar p,
.sidebar ul {
  font-size: 0.875rem;
}
.sidebar .widget {
  margin: 2rem 0 2rem 0;
  font-size: 1rem;
}
@media only screen and (min-width: 64.063em) {
  .sidebar .widget {
    width: 18rem;
  }
}
.sidebar .widget:first-child {
  margin-top: 0;
}
.sidebar .widget .title {
  color: #000;
  line-height: 1.2;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}
@media only screen and (max-width: 40em) {
  .widget_er_leadformwidget {
    display: none;
  }
}
@media only screen and (min-width: 40.063em) and (max-width: 64em) {
  .widget_er_leadformwidget {
    display: none;
  }
}
.widget_er_singletestimonial blockquote,
.widget_er_testimonialwidget blockquote {
  border: 0;
  padding: 0;
  margin: 0;
}
.widget_er_singletestimonial blockquote,
.widget_er_singletestimonial blockquote p,
.widget_er_testimonialwidget blockquote,
.widget_er_testimonialwidget blockquote p {
  color: inherit;
}
.widget_er_singletestimonial blockquote .title,
.widget_er_testimonialwidget blockquote .title {
  font-size: 1.4375rem;
  line-height: 1.2;
  margin: 0.25rem 0 0.5rem 0;
  color: #222;
}
.widget_er_singletestimonial blockquote .fa-quote-left,
.widget_er_testimonialwidget blockquote .fa-quote-left {
  font-size: 2.8125rem;
  color: #ccc;
}
.widget_er_singletestimonial blockquote .author,
.widget_er_testimonialwidget blockquote .author {
  display: table;
  width: 100%;
  color: #000;
}
.widget_er_singletestimonial blockquote .author .author-name,
.widget_er_testimonialwidget blockquote .author .author-name {
  padding: 0 0 0 0.5rem;
  display: table-cell;
  font-size: 0.875rem;
  font-weight: 700;
  vertical-align: middle;
}
.widget_er_singletestimonial blockquote .author-pic,
.widget_er_testimonialwidget blockquote .author-pic {
  float: left;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  width: 100px;
  height: 100px;
  margin: 0.3rem 1rem 0.3rem 0;
}
.widget_er_singletestimonial blockquote .author-pic img,
.widget_er_testimonialwidget blockquote .author-pic img {
  border-radius: 3px;
  width: 100px;
  height: 100px;
}
.widget_er_singletestimonial blockquote .quote-body,
.widget_er_testimonialwidget blockquote .quote-body {
  color: #666;
  margin: 0 0 0.5rem 0;
}
.widget_er_singletestimonial blockquote .quote-body p,
.widget_er_testimonialwidget blockquote .quote-body p {
  display: inline;
  margin-bottom: 0;
}
.widget_er_singletestimonial blockquote .quote-body p:after,
.widget_er_singletestimonial blockquote .quote-body p:before,
.widget_er_testimonialwidget blockquote .quote-body p:after,
.widget_er_testimonialwidget blockquote .quote-body p:before {
  content: "“";
}
.widget_er_singletestimonial blockquote .quote-body .more,
.widget_er_testimonialwidget blockquote .quote-body .more {
  font-size: 0.875rem;
  font-style: italic;
}
.lt-ie9 .widget_er_singletestimonial blockquote .author,
.lt-ie9 .widget_er_testimonialwidget blockquote .author {
  display: block;
}
.lt-ie9 .widget_er_singletestimonial blockquote .author:after,
.lt-ie9 .widget_er_singletestimonial blockquote .author:before,
.lt-ie9 .widget_er_testimonialwidget blockquote .author:after,
.lt-ie9 .widget_er_testimonialwidget blockquote .author:before {
  content: " ";
  display: table;
}
.lt-ie9 .widget_er_singletestimonial blockquote .author:after,
.lt-ie9 .widget_er_testimonialwidget blockquote .author:after {
  clear: both;
}
.lt-ie9 .widget_er_singletestimonial blockquote .author .author-pic,
.lt-ie9 .widget_er_testimonialwidget blockquote .author .author-pic {
  display: block;
  float: left;
}
.lt-ie9 .widget_er_singletestimonial blockquote .author .author-name,
.lt-ie9 .widget_er_testimonialwidget blockquote .author .author-name {
  display: block;
  float: left;
}
.widget_er_accreditationwidget .title {
  color: #000;
}
.widget_er_accreditationwidget .widget-body {
  text-align: center;
  color: inherit;
}
.widget_er_accreditationwidget .widget-body img {
  vertical-align: middle;
  margin: 0 0.5rem 0.5rem 0;
  max-width: 18rem;
}
.widget_er_accreditationimportantwidget .title {
  font-size: 1rem;
}
.widget_er_accreditationimportantwidget li,
.widget_er_accreditationimportantwidget p {
  font-size: 0.75rem;
}
.widget_er_booktourwidget {
  border-radius: 3px;
  text-align: center;
  border: 1px solid #414141;
  position: relative;
  overflow: hidden;
  background: inherit;
  color: inherit;
}
.widget_er_booktourwidget .title {
  background: #f99517;
  color: #fff;
  padding: 1rem 0 0.75rem 0;
  font-size: 1.4375rem;
  line-height: 1.2;
  position: relative;
}
.widget_er_booktourwidget .title:after {
  position: absolute;
  display: block;
  content: "";
  bottom: -0.7rem;
  left: 50%;
  margin-left: -20rem;
  width: 0;
  height: 0;
  border-left: 20rem solid transparent;
  border-right: 20rem solid transparent;
  border-top: 0.8rem solid #f99517;
  -moz-transform: scale(0.9999);
}
.widget_er_booktourwidget .button-book-tour {
  background: #f99517;
  color: #fff;
}
.widget_er_booktourwidget ul,
.widget_er_booktourwidget ul.ticks {
  margin: 1rem;
}
.widget_er_booktourwidget p {
  text-align: left;
  margin: 1rem;
}
.widget_er_vaawidget,
.widget_er_vaawidgetalternate {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem 1rem 0;
  border-radius: 3px;
  border: 0;
  background: inherit;
  color: inherit;
}
.widget_er_vaawidget .title,
.widget_er_vaawidgetalternate .title {
  margin-top: 0;
  color: #000;
}
.widget_er_vaawidget .button-vaa,
.widget_er_vaawidgetalternate .button-vaa {
  background: #f99517;
  color: #fff;
}
.widget_er_vaawidget p,
.widget_er_vaawidgetalternate p {
  text-align: left;
  margin-top: 1rem;
}
.widget_search .screen-reader-text {
  display: none;
}
.widget_search label {
  position: relative;
}
.widget_search label:after {
  position: absolute;
  top: 0.6rem;
  right: 0;
  width: 1rem;
  font-size: 1rem;
  text-align: right;
  margin-right: 0.5rem;
  content: "\f002";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.widget_search .search-field {
  border-radius: 4px;
  padding-right: 2rem;
}
.widget_search .search-submit {
  display: none;
}
.widget_archive ul,
.widget_categories ul,
.widget_meta ul,
.widget_recent_comments ul,
.widget_recent_entries ul {
  list-style: none;
  margin: 0;
}
.widget_archive ul a:hover,
.widget_categories ul a:hover,
.widget_meta ul a:hover,
.widget_recent_comments ul a:hover,
.widget_recent_entries ul a:hover {
  text-decoration: underline;
}
.widget_recent_comments li,
.widget_recent_entries li {
  margin-bottom: 0.5rem;
}
#footer-social-sidebar {
  text-align: right;
  margin-bottom: 1rem;
}
#footer-social-sidebar .widget_text .title {
  font-style: italic;
  color: #d9d7cc;
  font-size: 1.5rem;
  margin-right: 0;
  letter-spacing: 0.03rem;
}
#footer-social-sidebar .widget_er_custom_icon_widget,
#footer-social-sidebar .widget_text {
  display: inline-block;
  margin: 0.5rem 1.25rem;
  vertical-align: top;
}
.widget_er_custom_icon_widget a {
  font-size: 2rem;
  color: #fff;
  opacity: 0.8;
}
.widget_er_custom_icon_widget a:active,
.widget_er_custom_icon_widget a:hover {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #footer-social-sidebar {
    text-align: center;
  }
}
.get-info-btn,
.get-info-btn:active,
.get-info-btn:focus {
  margin: 3rem auto 3rem auto;
  display: block;
  color: #fff;
  border: 0;
  background: #f99517;
}
.get-info-btn:active:hover,
.get-info-btn:focus:hover,
.get-info-btn:hover {
  background: #f99517;
}
.h-white-text .get-info-btn,
.h-white-text .get-info-btn:active,
.h-white-text .get-info-btn:focus {
  color: #fff;
  border: 0;
  background: #f99517;
}
.h-white-text .get-info-btn:active:hover,
.h-white-text .get-info-btn:focus:hover,
.h-white-text .get-info-btn:hover {
  background: #f99517;
}
#get-info-modal {
  padding: 0;
  background: 0 0;
  border-radius: 3px;
  overflow: hidden;
  max-width: 32rem;
  border: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  min-height: 0;
  z-index: 999999;
}
#get-info-modal #er-form {
  border: 0.25rem solid #2c2c2c;
}
#get-info-modal #er-form.no-header .er-form-content {
  padding: 3em 1em 1em 1em;
}
#get-info-modal .close-reveal-modal {
  color: #fff;
  z-index: 999;
  top: 0.2rem;
}
.reveal-modal,
dialog {
  z-index: 999999;
}
.reveal-modal-bg {
  z-index: 999998;
}
.lt-ie9 #get-info {
  display: none;
}
.vaa-large {
  max-width: 30rem;
  margin: 2rem auto 2rem auto;
}
.vaa-large .heading {
  line-height: 1.2;
  font-weight: 700;
}
.vaa-large .heading .subtext {
  font-size: 1.4375rem;
  margin: 0 0 0.25rem 0;
}
.vaa-large .heading .title-large {
  font-size: 2rem;
  margin: 0 0 0.25rem 0;
}
.vaa-large .heading .title-large a {
  color: #008cba;
}
.vaa-large .heading .title-large a:hover {
  text-decoration: none;
}
.vaa-large .description .title {
  font-style: italic;
  font-size: 1.4375rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}
.vaa-large .description ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vaa-large .description ul li:before {
  font-family: FontAwesome;
  content: "\f00c";
  display: inline-block;
  width: 1rem;
  margin-right: 0.35rem;
  color: #008cba;
}
.vaa-large .button {
  margin: 1rem 0;
  line-height: 1.2;
  text-align: center;
  background: #f99517;
  color: #fff;
}
.vaa-large .button .title {
  font-size: 2rem;
  margin: 0 0 0.5rem 0;
}
.vaa-large .button .subtext {
  font-size: 0.875rem;
}
.vaa-large .button:hover {
  background: #f99517;
  text-decoration: none;
}
.vaa-body.vaa-body-image {
  margin: 2rem auto 2rem auto;
}
.vaa-body.vaa-body-image .heading {
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}
.vaa-body.vaa-body-image .heading .title-large {
  font-size: 1.4375rem;
  margin: 0 0 0.25rem 0;
}
.vaa-body.vaa-body-image .heading .title-large a {
  color: #008cba;
}
.vaa-body.vaa-body-image .heading .title-large a:hover {
  text-decoration: none;
}
.vaa-body.vaa-body-image .description .title {
  font-style: italic;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}
.vaa-body.vaa-body-image .description ul {
  list-style: none;
  margin: 0.5rem 0 0.25rem 0;
  padding: 0;
}
.vaa-body.vaa-body-image .description ul li {
  padding: 0;
}
.vaa-body.vaa-body-image .description ul li.check:before {
  font-family: FontAwesome;
  content: "\f00c";
  display: inline-block;
  width: 1rem;
  margin-right: 0.35rem;
  color: #008cba;
}
.vaa-body.vaa-body-image .button {
  margin: 0 0 0 0.5rem;
  line-height: 1.2;
  text-align: center;
  background: #f99517;
  color: #fff;
  height: 100%;
  line-height: 100%;
  padding: 0.25rem;
  display: table;
}
.vaa-body.vaa-body-image .button .valign-center {
  display: table-cell;
  vertical-align: middle;
}
.vaa-body.vaa-body-image .button .valign-center .title {
  font-size: 1.4375rem;
  margin: 0 0 0.25rem 0;
}
.vaa-body.vaa-body-image .button .valign-center .subtext {
  font-size: 0.875rem;
}
.vaa-body.vaa-body-image .button:hover {
  background: #f99517;
  text-decoration: none;
}
.vaa-body.vaa-body-image .summary {
  font-size: 0.875rem;
}
.vaa-body .headline .sub-text {
  display: block;
}
.vaa-button {
  display: block;
  text-align: center;
}
.er-countdown {
  margin: 0 0 2rem 0;
  border: 1px solid #f99517;
  border-radius: 3px;
  overflow: hidden;
}
.er-countdown.hide {
  display: block;
  height: 0;
  border: 0;
  margin-bottom: -2rem;
}
.er-countdown-header {
  padding: 0.6rem;
  background: #f99517;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}
.er-countdown-body {
  padding: 1rem;
}
.er-countdown-body .counter-col {
  background: #ddd;
  border-radius: 3px;
  text-align: center;
  padding: 0.5rem 0.1rem;
}
.er-countdown-body .counter-col .counter-value {
  font-weight: 700;
  font-size: 1.4375rem;
  margin-bottom: 0.1rem;
}
.er-countdown-body .counter-col .counter-caption {
  font-size: 60%;
}
ul.ticks {
  text-align: left;
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
}
ul.ticks li:before {
  font-family: FontAwesome;
  content: "\f00c";
  display: inline-block;
  width: 1rem;
  margin-right: 0.3em;
}
.embed-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}
.embed-wrapper.embed-vertical {
  padding-bottom: 177%;
}
.embed-wrapper embed,
.embed-wrapper iframe,
.embed-wrapper object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: none;
}
iframe {
  border: 0;
}
#main .body-testimonials.with-quote .quote:before {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: "bold";
  font-size: 6rem;
  color: #ccc;
  content: "“";
  display: block;
  float: left;
  line-height: 0.5;
  position: relative;
  top: 0.2em;
  margin-right: 0.1em;
}
#main .body-testimonials .each-testimonial .each-testimonial-container {
  background-color: rgba(255, 255, 255, 0);
  margin-bottom: 1rem;
  margin-top: 1rem;
  padding: 1rem;
}
#main .body-testimonials .each-testimonial p.stars {
  word-spacing: 0.15em;
  font-size: 120%;
  color: #ffd400;
}
#main .body-testimonials .each-testimonial q {
  color: #222;
  font-family: Bitter, Georgia, Palatino, "Times New Roman", Times, serif;
  display: block;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  text-shadow: 0 1px #fff;
  margin-bottom: 0.5em;
}
#main .body-testimonials .each-testimonial p {
  color: #666;
  margin-bottom: 0.75em;
  text-align: left;
}
#main .body-testimonials .each-testimonial .quote {
  border-left: 0;
  padding: 0;
}
#main .body-testimonials .each-testimonial .author-pic {
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
#main .body-testimonials .each-testimonial .author-pic.author-pic-round {
  border-radius: 5%;
}
#main .body-testimonials .each-testimonial .author-pic.author-pic-circle {
  border-radius: 100%;
}
#main .body-testimonials .each-testimonial footer {
  line-height: 100%;
}
#main .body-testimonials .each-testimonial footer cite {
  font-size: 90%;
  color: #666;
  display: inline;
}
#main
  .body-testimonials
  .each-testimonial
  footer
  cite
  .testimonial-additional-info {
  font-size: 90%;
  font-weight: 700;
  font-style: normal;
}
#main .body-testimonials .each-testimonial.body-testimonials-single .quote {
  margin-bottom: 2rem;
}
#main
  .body-testimonials
  .each-testimonial.each-standard-testimonial
  .each-testimonial-container {
  padding: 2rem;
}
#main .body-testimonials .each-testimonial.each-standard-testimonial .quote,
#main .body-testimonials .each-testimonial.each-standard-testimonial p.stars,
#main .body-testimonials .each-testimonial.each-standard-testimonial q {
  max-width: 40rem;
  margin: 0 auto 0.5rem auto;
}
#main .body-testimonials .each-testimonial.each-standard-testimonial .quote {
  position: relative;
}
#main .body-testimonials .each-testimonial.each-standard-testimonial .author {
  margin-top: 0.5rem;
  text-align: center;
}
#main
  .body-testimonials
  .each-testimonial.each-standard-testimonial
  .author
  br {
  display: none;
}
#main
  .body-testimonials
  .each-testimonial.each-standard-testimonial
  .author-pic {
  width: 45px;
  height: 45px;
  display: inline-block;
  margin-right: 0.5rem;
  vertical-align: middle;
}
#main .body-testimonials .each-testimonial.each-banner-testimonial .quote,
#main .body-testimonials .each-testimonial.each-banner-testimonial p.stars,
#main .body-testimonials .each-testimonial.each-banner-testimonial q {
  padding-bottom: 0.5em;
  padding-right: 1em;
  padding-left: 0;
}
#main .body-testimonials .each-testimonial.each-banner-testimonial .quote {
  margin-bottom: 0;
}
#main .body-testimonials .each-testimonial.each-banner-testimonial .author-pic {
  width: 100%;
}
#main
  .body-testimonials
  .each-testimonial.each-banner-testimonial
  .author-pic:after {
  content: "";
  display: block;
  padding: 50%;
}
#main .body-testimonials .each-testimonial.each-portrait-testimonial .quote,
#main .body-testimonials .each-testimonial.each-portrait-testimonial p.stars,
#main .body-testimonials .each-testimonial.each-portrait-testimonial q {
  padding-top: 0.5em;
  padding-right: 1em;
  padding-left: 1em;
}
#main .body-testimonials .each-testimonial.each-portrait-testimonial .quote {
  padding-bottom: 2em;
}
#main
  .body-testimonials
  .each-testimonial.each-portrait-testimonial
  .author-pic {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 1em auto;
}
#main
  .body-testimonials
  .each-testimonial.each-portrait-testimonial
  .author-pic:after {
  content: "";
  display: block;
  padding: 50%;
}
#main .h-white-text .body-testimonials.with-quote .quote:before {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: "bold";
  font-size: 6rem;
  color: #ccc;
  content: "“";
  display: block;
  float: left;
  line-height: 0.5;
  position: relative;
  top: 0.2em;
  margin-right: 0.1em;
}
#main
  .h-white-text
  .body-testimonials
  .each-testimonial
  .each-testimonial-container {
  background-color: rgba(255, 255, 255, 0);
}
#main .h-white-text .body-testimonials .each-testimonial p.stars {
  color: #ffd400;
}
#main .h-white-text .body-testimonials .each-testimonial q {
  color: #222;
}
#main .h-white-text .body-testimonials .each-testimonial p {
  color: #666;
}
#main .h-white-text .body-testimonials .each-testimonial footer cite {
  color: #666;
}
.testimonial-read-more {
  text-align: right;
  margin-right: 10%;
}
.header-basic {
  text-align: center;
  line-height: 1.625rem;
}
.header-basic .tagline {
  color: #333;
  font-size: 1rem;
  line-height: 1.4;
}
.header-basic .phone {
  color: #009fad;
  font-size: 1.4375rem;
  line-height: 1.4;
  margin: 0;
}
.header-basic .phone .phone-number {
  color: purple;
  font-weight: 700;
  white-space: nowrap;
}
.header-basic .encouragement {
  font-style: italic;
  color: #999;
  font-size: 0.875rem;
}
.header-basic-bold {
  text-align: center;
  line-height: 1.625rem;
}
.header-basic-bold .tagline {
  color: #333;
  font-size: 1.25rem;
  line-height: 1.4;
  font-style: italic;
}
.header-basic-bold .encouragement {
  color: #999;
  font-size: 1.25rem;
}
.header-basic-bold .phone {
  color: #009fad;
  font-size: 1.4375rem;
  line-height: 1.4;
  font-weight: 600;
  margin: 0;
}
.header-basic-bold .phone .phone-number {
  color: purple;
  font-weight: 700;
  white-space: nowrap;
}
.header-basic-vaa-top {
  text-align: right;
  line-height: 1.625rem;
}
.header-basic-vaa-top .vaa-cta {
  width: auto;
  float: right;
  text-align: left;
  font-size: 0.8125rem;
  padding: 0 0.25rem 0.25rem 0.25rem;
  margin-bottom: 0.5rem;
  border-bottom: 0;
}
.header-basic-vaa-top .vaa-cta .tagline {
  float: right;
  width: auto;
  line-height: 2;
  padding-right: 1rem;
  color: #333;
}
.header-basic-vaa-top .vaa-cta .vaa-button {
  float: right;
  margin: 0;
  font-size: 0.8125rem;
  height: 100%;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  background: purple;
}
.header-basic-vaa-top .vaa-cta .vaa-button:hover {
  background-color: #9f009f;
}
.header-basic-vaa-top .phone {
  width: 100%;
  clear: both;
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 0;
  padding-right: 0.25rem;
  color: #009fad;
}
.header-basic-vaa-top .phone .phone-number {
  font-weight: 700;
  white-space: nowrap;
  font-weight: 600;
  color: purple;
}
.header-basic-vaa-top .encouragement {
  font-style: italic;
  font-size: 0.875rem;
  line-height: 1;
  padding-right: 0.25rem;
  color: #999;
}
.header-columns-vaa-top {
  text-align: center;
  line-height: 1.625rem;
}
.header-columns-vaa-top .vaa-cta {
  width: auto;
  float: right;
  text-align: left;
  font-size: 0.8125rem;
  padding: 0 0.25rem 0.25rem 0.25rem;
  margin-bottom: 0.5rem;
  border-bottom: 0;
}
.header-columns-vaa-top .vaa-cta .tagline {
  float: right;
  width: auto;
  line-height: 2;
  padding-right: 1rem;
  color: #333;
}
.header-columns-vaa-top .vaa-cta .vaa-button {
  float: right;
  margin: 0;
  font-size: 0.8125rem;
  height: 100%;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  color: #fff;
  background: purple;
}
.header-columns-vaa-top .vaa-cta .vaa-button:hover {
  background-color: #9f009f;
}
.header-columns-vaa-top .name {
  white-space: nowrap;
}
.header-columns-vaa-top .phone {
  color: #009fad;
  font-size: 1rem;
  line-height: 1;
  margin: 0;
}
.header-columns-vaa-top .phone .phone-number {
  color: purple;
  font-weight: 700;
  white-space: nowrap;
}
.header-columns-vaa-top ul {
  float: right;
  clear: both;
}
.header-columns-vaa-top li {
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 800px) {
  .header-columns-vaa-top .small-block-grid-4 {
    font-size: 0.775rem;
  }
  .header-columns-vaa-top .small-block-grid-4 .phone {
    font-size: inherit;
  }
}
.header-columns {
  text-align: center;
  line-height: 1.625rem;
}
.header-columns .name {
  white-space: nowrap;
}
.header-columns .tagline {
  color: #333;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.header-columns .phone {
  color: #009fad;
  font-size: 1rem;
  line-height: 1;
  margin: 0;
}
.header-columns .phone .phone-number {
  color: purple;
  font-weight: 700;
  white-space: nowrap;
}
.header-columns li {
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 800px) {
  .header-columns .small-block-grid-4 {
    font-size: 0.775rem;
  }
  .header-columns .small-block-grid-4 .phone {
    font-size: inherit;
  }
}
.fixed {
  z-index: 900;
}
.top-bar-container {
  z-index: 999999;
}
.top-bar-container .dropdown li a {
  -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);
}
.top-bar-container.contain-to-grid {
  background: 0 0;
}
.top-bar,
.top-bar.expanded {
  background: #2272bd;
}
.top-bar .fa-search {
  font-size: 1.2rem;
  position: relative;
  top: 1px;
}
.top-bar .back a {
  background: #2272bd;
}
.top-bar .back .fa {
  margin-right: 5px;
  position: relative;
  top: -1px;
}
.top-bar .name h1 a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 64em) {
  .top-bar-menu li a {
    border-top: 1px solid #1e65a7;
  }
  .top-bar-section .has-dropdown .dropdown li.has-dropdown > a:after,
  .top-bar-section .has-dropdown > a:after {
    content: "\f061";
    font: normal normal normal 1rem/1 FontAwesome;
    border: 0;
    margin-top: -0.4rem;
    margin-right: 1.5rem;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
.admin-bar .top-bar-container.fixed {
  top: 32px;
}
@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed !important;
  }
  .admin-bar .top-bar-container.fixed {
    top: 46px;
  }
}
.top-bar-container.fixed {
  -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);
}
#menu-item-search {
  position: absolute;
  top: 0;
  right: 0;
  white-space: nowrap;
  overflow: hidden;
  padding-left: 0.875rem;
}
#menu-item-search:hover a {
  background: #2272bd;
}
#menu-item-search a {
  display: inline-block;
}
#menu-item-search a:hover {
  background: #1d62a3;
}
#top-bar-search {
  display: inline-block;
  vertical-align: middle;
  width: 0;
  overflow: hidden;
  -moz-transition: width 0.25s ease-out;
  -webkit-transition: width 0.25s ease-out;
  transition: width 0.25s ease-out;
}
#top-bar-search input {
  position: static;
  border: 1px solid #1e65a7;
  border-radius: 3px;
  background: #fff;
}
#top-bar-search.show {
  width: 180px;
}
.top-bar.expanded .toggle-topbar a {
  color: #fff;
}
.top-bar-section .dropdown li a {
  padding-top: 12px;
  padding-bottom: 12px;
}
.top-bar-section .dropdown div {
  line-height: 1.4em;
}
.expanded.top-bar .toggle-topbar.menu-icon a span::after {
  content: "\f00d";
  font: normal normal normal 1rem/1 FontAwesome;
  border: 0;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-shadow: none;
  font-size: 1.4rem;
  top: 0.2em;
}
.tabs .tab-title {
  padding: 0;
}
.tabs .tab-title a {
  margin: 0;
  background: #2272bd;
  color: #fff;
}
.tabs .tab-title a:hover {
  background: #1d62a3;
}
.tabs .tab-title a:focus {
  outline: 0;
}
.tabs .tab-title.active a {
  background: 0 0;
}
.tabs .tab-title.active a:hover {
  background: 0 0;
}
.tabs-content :focus {
  outline: 0;
}
.alignnone {
  margin: 0.5rem 1rem 1rem 0;
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 0.5rem auto 0.5rem auto;
}
.alignright {
  float: right;
  margin: 0.5rem 0 1rem 1rem;
}
.alignleft {
  float: left;
  margin: 0.5rem 1rem 1rem 0;
}
a img.alignright {
  float: right;
  margin: 0.5rem 0 1rem 1rem;
}
a img.alignnone {
  margin: 0.5rem 1rem 1rem 0;
}
a img.alignleft {
  float: left;
  margin: 0.5rem 1rem 1rem 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  background: #fff;
  max-width: 96%;
  text-align: center;
}
.wp-caption .wp-caption-text {
  border-bottom: 1px solid #e5e5e5;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  font-size: 0.75em;
  text-align: center;
  color: #595959;
  line-height: 1.4;
}
.wp-caption.alignnone {
  margin: 0.5rem 1rem 1.25rem 0;
}
.wp-caption.alignleft {
  margin: 0.3rem 1.25rem 1rem 0;
}
.wp-caption.alignright {
  margin: 0.3rem 0 1.25rem 1rem;
}
.gallery {
  text-align: center;
}
.gallery-item {
  display: inline-block;
}
.pre-footer {
  background: #fff;
}
#footer .footer-menu.footer-menu-4col {
  display: block;
  text-align: left;
}
#footer .footer-menu.footer-menu-4col li {
  width: 18%;
  display: block;
  float: left;
  padding-right: 0;
  padding-left: 2.5%;
  padding-top: 0;
}
#footer .footer-menu.footer-menu-4col li:first-child {
  padding-left: 0;
}
#footer .footer-menu.footer-menu-4col .menu-item-has-children ul {
  padding-left: 0;
  margin-left: 0;
}
#footer .footer-menu.footer-menu-4col .sub-menu li {
  float: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}
#footer a {
  color: #dfdfdf;
}
@media only screen and (max-width: 40em) {
  #footer .footer-menu li {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }
  #footer .footer-menu.footer-menu-4col li {
    width: 100%;
    padding-left: 0;
  }
}
.gform_wrapper .alert-box {
  border-radius: 3px;
}
.gform_wrapper .gform_body .gform_fields {
  list-style: none;
  margin: 0;
}
.gform_wrapper .gform_body .gform_fields .gsection {
  padding-top: 2em !important;
}
.gform_wrapper .gform_body .gform_fields .gfield .gfield_required {
  color: #ff170b;
}
.gform_wrapper
  .gform_body
  .gform_fields
  .gfield:not(.gfield_error)
  .ginput_container_date
  i,
.gform_wrapper
  .gform_body
  .gform_fields
  .gfield:not(.gfield_error)
  .ginput_container_time
  i {
  margin-top: -1rem !important;
  margin-bottom: 1rem;
}
.gform_wrapper
  .gform_body
  .gform_fields
  .gfield:not(.gfield_error)
  .ginput_container_date
  .description,
.gform_wrapper
  .gform_body
  .gform_fields
  .gfield:not(.gfield_error)
  .ginput_container_date
  .gfield_description,
.gform_wrapper
  .gform_body
  .gform_fields
  .gfield:not(.gfield_error)
  .ginput_container_date
  .gsection_description,
.gform_wrapper
  .gform_body
  .gform_fields
  .gfield:not(.gfield_error)
  .ginput_container_date
  .instruction,
.gform_wrapper
  .gform_body
  .gform_fields
  .gfield:not(.gfield_error)
  .ginput_container_date
  label,
.gform_wrapper
  .gform_body
  .gform_fields
  .gfield:not(.gfield_error)
  .ginput_container_time
  .description,
.gform_wrapper
  .gform_body
  .gform_fields
  .gfield:not(.gfield_error)
  .ginput_container_time
  .gfield_description,
.gform_wrapper
  .gform_body
  .gform_fields
  .gfield:not(.gfield_error)
  .ginput_container_time
  .gsection_description,
.gform_wrapper
  .gform_body
  .gform_fields
  .gfield:not(.gfield_error)
  .ginput_container_time
  .instruction,
.gform_wrapper
  .gform_body
  .gform_fields
  .gfield:not(.gfield_error)
  .ginput_container_time
  label {
  margin-top: -0.45rem !important;
  margin-bottom: 0.45rem;
}
.gform_wrapper
  .gform_body
  .gform_fields
  .gfield:not(.gfield_error).field_sublabel_below
  div.ginput_complex.ginput_container
  span
  .description,
.gform_wrapper
  .gform_body
  .gform_fields
  .gfield:not(.gfield_error).field_sublabel_below
  div.ginput_complex.ginput_container
  span
  .gfield_description,
.gform_wrapper
  .gform_body
  .gform_fields
  .gfield:not(.gfield_error).field_sublabel_below
  div.ginput_complex.ginput_container
  span
  .gsection_description,
.gform_wrapper
  .gform_body
  .gform_fields
  .gfield:not(.gfield_error).field_sublabel_below
  div.ginput_complex.ginput_container
  span
  .instruction,
.gform_wrapper
  .gform_body
  .gform_fields
  .gfield:not(.gfield_error).field_sublabel_below
  div.ginput_complex.ginput_container
  span
  label {
  margin-top: -0.45rem;
  margin-bottom: 0.45rem;
}
.gform_wrapper
  .gform_body
  .gform_fields
  .gfield:not(.gfield_error).field_sublabel_below
  div.ginput_complex.ginput_container
  span
  select
  + label {
  margin-top: -0.4rem;
  margin-bottom: 0.4rem;
}
.gform_wrapper .error {
  margin-top: -1.05rem;
  z-index: 10;
}
.form-wrap label {
  font-weight: 600;
}
.form-wrap label input {
  margin-top: 0.1rem;
}
.form-wrap h4 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.gform_button.button {
  border-radius: 3px;
}
@media only screen and (min-width: 40.063em) {
  .gform_wrapper ul li.gfield.gform_3rd,
  .gform_wrapper ul li.gfield.gform_4th,
  .gform_wrapper ul li.gfield.gform_half,
  .gform_wrapper ul li.gfield.gform_inline_check_3rd li,
  .gform_wrapper ul li.gfield.gform_inline_check_4th li,
  .gform_wrapper ul li.gfield.gform_inline_check_5th li,
  .gform_wrapper ul li.gfield.gform_inline_check_6th li,
  .gform_wrapper ul li.gfield.gform_inline_check_half li {
    float: left;
    clear: none;
    display: block;
  }
  .gform_wrapper ul li.gfield.gform_half {
    width: 50%;
  }
  .gform_wrapper ul li.gfield.gform_3rd {
    width: 33.3333%;
  }
  .gform_wrapper ul li.gfield.gform_4th {
    width: 25%;
  }
  .gform_wrapper ul li.gfield.gform_inline_check_half li {
    width: 50%;
  }
  .gform_wrapper ul li.gfield.gform_inline_check_3rd li {
    width: 33.3333%;
  }
  .gform_wrapper ul li.gfield.gform_inline_check_4th li {
    width: 25%;
  }
  .gform_wrapper ul li.gfield.gform_inline_check_5th li {
    width: 20%;
  }
  .gform_wrapper ul li.gfield.gform_inline_check_6th li {
    width: 16.6666%;
  }
}
.search-results .page-header {
  margin-bottom: 2rem;
}
.search-results .entry-title {
  font-size: 1.25rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  margin: 0 0 0.25rem 0;
}
.search-results article {
  margin-bottom: 2rem;
  max-width: 40rem;
}
.search-results article p {
  font-size: 0.875rem;
}
a.blog-read-more {
  font-style: italic;
  font-size: 0.9em;
  display: inline-block;
  margin-left: 0.3em;
}
nav.paging-navigation {
  clear: both;
}
#main .post .entry-header h1,
#main .post .entry-header h2,
#main .post .entry-header h3,
#main .post .entry-header h4,
#main .post .entry-header h5 {
  margin: 0;
  font-weight: 400;
}
#main .post .entry-header h2 {
  font-size: 1.3em;
  line-height: 1.4em;
}
#main .post .entry-header h2 a {
  color: #2272bd;
}
#main .post .entry-header h2 a:active,
#main .post .entry-header h2 a:hover {
  color: #2272bd;
}
#main .post .entry-date,
#main .post .entry-meta {
  color: #999;
  font-size: 0.875rem;
  margin: 0;
}
#main .post .entry-thumb {
  width: 100%;
  overflow: hidden;
  border: 1px solid #e9e9e9;
  border-radius: 0;
  position: relative;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
#main .post .entry-thumb:active,
#main .post .entry-thumb:hover {
  border-color: #2272bd;
}
#main .post.post-list {
  margin: 2rem 0 3rem;
  clear: both;
}
#main .post.post-list .entry-thumb {
  padding-bottom: 75%;
}
#main .post.post-list.post-list-featured .entry-thumb {
  padding-bottom: 45%;
}
#main .post.post-grid {
  margin: 2em 0 0 0;
  padding: 0 1em;
}
#main .post.post-grid .entry-thumb {
  padding-bottom: 45%;
}
#main .post.post-grid .entry-tag {
  text-align: right;
  float: right;
}
#main .post.post-grid h2.entry-title {
  clear: both;
}
.er-accordion {
  margin-left: 0;
}
.er-accordion dt {
  display: none;
}
.er-accordion .accordion-navigation a.panel-heading {
  line-height: 1.6;
  background-color: #900;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  border-bottom: 2px solid transparent;
}
.er-accordion .accordion-navigation a.panel-heading:active,
.er-accordion .accordion-navigation a.panel-heading:hover {
  background-color: #600;
}
.er-accordion .accordion-navigation > .content.active {
  background-color: rgba(255, 255, 255, 0.1);
}
.er-accordion .accordion-heading-icon-closed::before,
.er-accordion .accordion-heading-icon-open::before {
  font-family: FontAwesome;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #fff;
  display: block;
  float: right;
}
.er-accordion .accordion-heading-icon-closed::before {
  content: "\f107";
}
.er-accordion .accordion-heading-icon-open::before {
  content: "\f106";
}
.h-white-text .er-accordion .accordion-navigation a.panel-heading {
  background-color: #900;
  color: #fff;
  border-bottom: 2px solid transparent;
}
.h-white-text .er-accordion .accordion-navigation a.panel-heading:active,
.h-white-text .er-accordion .accordion-navigation a.panel-heading:hover {
  background-color: #c00;
}
.h-white-text .er-accordion .accordion-navigation > .content.active {
  background-color: rgba(0, 0, 0, 0.1);
}
.h-white-text .er-accordion .accordion-heading-icon-closed::before,
.h-white-text .er-accordion .accordion-heading-icon-open::before {
  font-family: FontAwesome;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #fff;
  display: block;
  float: right;
}
.h-white-text .er-accordion .accordion-heading-icon-closed::before {
  content: "\f107";
}
.h-white-text .er-accordion .accordion-heading-icon-open::before {
  content: "\f106";
}
#main .programs-list,
.sidebar .programs-list {
  margin: 2rem 0;
}
#main .programs-list .program .title,
.sidebar .programs-list .program .title {
  font-size: 1.25rem;
  line-height: 1.4;
  color: #2272bd;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 1.4375rem;
  display: inline-block;
  margin: 0 0 0.2rem 0;
  letter-spacing: -0.03rem;
}
#main .programs-list .program .title:hover,
.sidebar .programs-list .program .title:hover {
  color: #1a5892;
}
#main .programs-list .program .description,
.sidebar .programs-list .program .description {
  font-size: 0.875rem;
  color: #333;
}
body .programs-list-stacked {
  display: -webkit-flex;
  -webkit-align-items: stretch;
  -webkit-flex-wrap: wrap;
}
html .programs-list-stacked {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  list-style: none;
  margin-left: 0;
}
html .programs-list-stacked > li {
  background: 0 0;
  width: 50%;
  border: 0;
}
html .programs-list-stacked > li div.program {
  background: #f9f9f9;
  margin: 0.675rem;
}
@media only screen and (max-width: 40em) {
  html .programs-list-stacked > li {
    width: 75%;
    margin: 0 auto;
  }
}
html .programs-list-stacked.three-two-one > li {
  width: 33%;
}
@media (max-width: 57em) {
  html .programs-list-stacked.three-two-one > li {
    width: 50%;
  }
}
@media (max-width: 30em) {
  html .programs-list-stacked.three-two-one > li {
    width: 100%;
  }
}
html .programs-list-stacked .program {
  padding: 1rem;
}
html .programs-list-stacked .program .image {
  display: block;
  margin: 0 0 0.5rem 0;
}
html .programs-list-stacked .program .description {
  margin-bottom: 0;
}
html .programs-list-stacked .program .program-start-dates {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}
html .h-white-text .programs-list-stacked > li div.program {
  background: #f9f9f9;
}
#main .h-white-text .programs-list .program .title,
.sidebar .h-white-text .programs-list .program .title {
  color: #2272bd;
}
#main .h-white-text .programs-list .program .title:hover,
.sidebar .h-white-text .programs-list .program .title:hover {
  color: #1a5892;
}
#main .h-white-text .programs-list .program .description,
.sidebar .h-white-text .programs-list .program .description {
  color: #333;
}
#main html .programs-list-stacked > li,
.sidebar html .programs-list-stacked > li {
  background: #f9f9f9;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  html .programs-list-stacked {
    display: block;
  }
  html .programs-list-stacked > li {
    float: left;
  }
  html .programs-list-stacked > li:nth-child(odd) {
    clear: left;
  }
}
.lt-ie9 .programs-list-stacked {
  display: block;
}
.lt-ie9 .programs-list-stacked > li {
  float: left;
  width: 49%;
  margin-right: 1%;
  background: #f9f9f9;
}
.lt-ie9 .h-white-text .programs-list-stacked > li {
  background: #f9f9f9;
}
.programs-list-horizontal {
  list-style: none;
  margin-left: 0;
}
.programs-list-horizontal .program {
  background: #f9f9f9;
  margin-bottom: 1rem;
}
.programs-list-horizontal .program .row {
  display: table;
  height: auto;
  min-height: 7rem;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.programs-list-horizontal .program .row .column {
  display: table-cell;
  float: none;
  vertical-align: top;
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (max-width: 40em) {
  .programs-list-horizontal .program .row {
    display: block;
  }
  .programs-list-horizontal .program .row .column {
    display: block;
  }
  .programs-list-horizontal .program .row .column.medium-8 {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }
}
.programs-list-horizontal .program .thumbnail-outer {
  position: relative;
  overflow: hidden;
  box-sizing: content-box;
}
@media only screen and (max-width: 40em) {
  .programs-list-horizontal .program .thumbnail-outer {
    max-height: 12rem;
  }
}
.programs-list-horizontal .program .thumbnail {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 40em) {
  .programs-list-horizontal .program .thumbnail {
    min-height: 8rem;
    position: static;
  }
}
.programs-list-horizontal .program .thumbnail-link {
  display: block;
  position: static;
  float: left;
  background-size: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
}
.programs-list-horizontal .program .program-copy {
  padding-left: 1rem;
}
@media only screen and (max-width: 40em) {
  .programs-list-horizontal .program .program-copy {
    padding-left: 0;
    padding-right: 0;
  }
  .programs-list-horizontal .program .program-copy .title {
    width: 100%;
    text-align: center;
    padding-bottom: 0.5rem;
  }
  .programs-list-horizontal .program .program-copy .description {
    display: none;
  }
}
.programs-list-horizontal .program .title {
  padding-top: 1rem;
}
.programs-list-horizontal .program .description {
  padding-bottom: 1rem;
  padding-right: 2rem;
  margin: 0;
}
.programs-list-horizontal .program-start-dates {
  font-size: 0.875rem;
}
.lt-ie9 .programs-list-horizontal .program .medium-4 {
  height: 160px;
}
.lt-ie9 .programs-list-horizontal .program .row .thumbnail-link {
  position: static;
}
.ie .programs-list-horizontal .program .medium-4 {
  height: 160px;
}
@media screen and (min-width: 40.063em) {
  .programs-list-horizontal .program-copy-bar {
    height: 100%;
    border-left: 10px solid #2272bd;
    margin-left: 2px;
  }
  .h-white-text .programs-list-horizontal .program-copy-bar {
    border-left: 10px solid #ff0;
  }
}
.programs-blinds {
  margin: 0 0 1.5rem 0;
  padding: 0;
  list-style: none;
}
.programs-blinds:after,
.programs-blinds:before {
  content: " ";
  display: table;
}
.programs-blinds:after {
  clear: both;
}
.programs-blinds .program {
  float: left;
  width: 33%;
  background-size: cover;
  background-position: center center;
  position: relative;
  height: 18rem;
}
.programs-blinds .program-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.programs-blinds .program-link .program-title {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(34, 114, 189, 0.7);
  color: #fff;
  width: 100%;
  padding: 1rem;
  text-align: center;
  font-size: 1.2rem;
  -moz-transition: background 0.25s ease-out;
  -webkit-transition: background 0.25s ease-out;
  transition: background 0.25s ease-out;
}
.programs-blinds .program-link:hover .program-title {
  background: rgba(34, 114, 189, 0.9);
}
.programs-blinds.columns-2 .program {
  width: 50%;
}
.programs-blinds.columns-3 .program {
  width: 33%;
}
.programs-blinds.columns-4 .program {
  width: 25%;
}
@media only screen and (max-width: 40em) {
  .programs-blinds .program {
    float: none;
    width: 100% !important;
    height: 12rem;
    background-position: center center !important;
  }
}
.campus-list {
  list-style: none;
  margin: 2rem 0;
}
footer#footer .campus-list:first-child {
  margin-top: 0.5em;
}
.campus-list-item.row {
  margin-bottom: 2rem;
}
.campus-list-item .campus-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 1.25rem;
  margin: 0 0 0.25rem 0;
}
.campus-list-item .campus-meta p {
  font-size: 0.875rem;
}
.campus-list-item .campus-hours-title {
  font-weight: 700;
  margin-bottom: 0;
}
.campus-list-item table.campus-hours-table tbody tr td {
  line-height: 1em;
  padding: 0.5em 1em;
}
.campus-list-item .campus-map {
  position: relative;
  overflow: hidden;
}
.campus-list-item .campus-map.campus-map-ratio-33 {
  padding-top: 33%;
}
.campus-list-item .campus-map.campus-map-ratio-40 {
  padding-top: 40%;
}
.campus-list-item .campus-map.campus-map-ratio-50 {
  padding-top: 50%;
}
.campus-list-item .campus-map.campus-map-ratio-66 {
  padding-top: 66%;
}
.campus-list-item .campus-map.campus-map-ratio-75 {
  padding-top: 75%;
}
.campus-list-item .campus-map.campus-map-ratio-100 {
  padding-top: 100%;
}
.campus-list-item .campus-map .campus-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.campus-list-item p {
  margin-bottom: 1em;
}
.show-modal .close-reveal-modal {
  top: -7px;
  right: 2px;
}
.facebook-video-embed,
.vimeo-embed,
.youtube-embed {
  margin: 2rem 0;
}
.facebook-video-embed .lazy-video,
.vimeo-embed .lazy-video,
.youtube-embed .lazy-video {
  background-color: #393939;
}
.facebook-video-embed .lazy-video:after,
.vimeo-embed .lazy-video:after,
.youtube-embed .lazy-video:after {
  cursor: pointer;
  content: "\f144";
  display: inline-block;
  font-family: FontAwesome;
  font-size: 4em;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #ffffffdd;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.facebook-video-embed iframe.facebook-video-iframe,
.facebook-video-embed iframe.youtube-iframe,
.vimeo-embed iframe.facebook-video-iframe,
.vimeo-embed iframe.youtube-iframe,
.youtube-embed iframe.facebook-video-iframe,
.youtube-embed iframe.youtube-iframe {
  border: 0;
}
.facebook-video-embed .facebook-video-embed-caption,
.facebook-video-embed .vimeo-embed-caption,
.facebook-video-embed .youtube-embed-caption,
.vimeo-embed .facebook-video-embed-caption,
.vimeo-embed .vimeo-embed-caption,
.vimeo-embed .youtube-embed-caption,
.youtube-embed .facebook-video-embed-caption,
.youtube-embed .vimeo-embed-caption,
.youtube-embed .youtube-embed-caption {
  font-style: italic;
  text-align: center;
  border-top: 1px solid #ccc;
  max-width: 65%;
  margin: 2rem auto 2rem auto;
  position: relative;
  padding: 0.5rem 0 0 0;
  font-size: 1.2rem;
}
.facebook-video-embed .facebook-video-embed-caption:before,
.facebook-video-embed .vimeo-embed-caption:before,
.facebook-video-embed .youtube-embed-caption:before,
.vimeo-embed .facebook-video-embed-caption:before,
.vimeo-embed .vimeo-embed-caption:before,
.vimeo-embed .youtube-embed-caption:before,
.youtube-embed .facebook-video-embed-caption:before,
.youtube-embed .vimeo-embed-caption:before,
.youtube-embed .youtube-embed-caption:before {
  position: absolute;
  top: -19px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 19px solid #d0d0d0;
  margin-left: -13px;
  content: "";
  display: block;
}
.youtube-embed .lazy-video {
  background-image: url("assets/img/youtube-blk.png");
}
.vimeo-embed .lazy-video {
  background-image: url("assets/img/vimeo-blk.png");
}
.facebook-video-embed .lazy-video {
  background-image: url("assets/img/facebook-video-blk.png");
}
.h-white-text .facebook-video-embed,
.h-white-text .vimeo-embed,
.h-white-text .youtube-embed {
  margin: 2rem 0;
}
.h-white-text .facebook-video-embed .lazy-video,
.h-white-text .vimeo-embed .lazy-video,
.h-white-text .youtube-embed .lazy-video {
  background-color: #cfcfcf;
}
.h-white-text .facebook-video-embed .lazy-video:after,
.h-white-text .vimeo-embed .lazy-video:after,
.h-white-text .youtube-embed .lazy-video:after {
  color: #000000dd;
}
.h-white-text .youtube-embed .lazy-video {
  background-image: url("assets/img/youtube-wht.png");
}
.h-white-text .vimeo-embed .lazy-video {
  background-image: url("assets/img/vimeo-wht.png");
}
.h-white-text .facebook-video-embed .lazy-video {
  background-image: url("assets/img/facebook-video-wht.png");
}
.show-staff-modal .staff-profile-title,
.staff-profile-container .staff-profile-title {
  margin-bottom: 1em;
}
.show-staff-modal .staff-profile-title h3,
.staff-profile-container .staff-profile-title h3 {
  margin-bottom: 0;
}
.show-staff-modal .staff-profile-title p.dept,
.show-staff-modal .staff-profile-title p.email,
.show-staff-modal .staff-profile-title p.role,
.staff-profile-container .staff-profile-title p.dept,
.staff-profile-container .staff-profile-title p.email,
.staff-profile-container .staff-profile-title p.role {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.75em;
}
.show-staff-modal a.staff-full-anchor,
.staff-profile-container a.staff-full-anchor {
  color: #333;
}
.show-staff-modal .photo-legend h3,
.staff-profile-container .photo-legend h3 {
  font-size: 0.7em;
  text-align: center;
}
.show-staff-modal .photo-legend h3.caption-left,
.staff-profile-container .photo-legend h3.caption-left {
  text-align: left;
}
.show-staff-modal .photo-legend h3.caption-right,
.staff-profile-container .photo-legend h3.caption-right {
  text-align: right;
}
.show-staff-modal .staff-photo,
.staff-profile-container .staff-photo {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.show-staff-modal .container-circle,
.staff-profile-container .container-circle {
  border-radius: 100%;
}
article.staffprofiles .staff-profile-title {
  margin-bottom: 1em;
}
article.staffprofiles .staff-profile-title h1 {
  margin-bottom: 0;
}
article.staffprofiles .staff-profile-title p.dept,
article.staffprofiles .staff-profile-title p.email,
article.staffprofiles .staff-profile-title p.role {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.75em;
}
article.staffprofiles .staff-profile-portrait-full {
  max-width: 50%;
  float: right;
  margin-left: 2em;
  margin-bottom: 1em;
}
@media only screen and (max-width: 40em) {
  article.staffprofiles .staff-profile-portrait-full {
    width: 100%;
    float: none;
    margin: 0 0 1em 0;
  }
}
.upcoming_start_dates {
  color: #000 !important;
  position: relative;
}
.upcoming_start_dates h3 {
  margin-top: 0;
  color: #000 !important;
  position: relative;
}
.upcoming_start_dates ul {
  list-style: none;
}
.general_template_start_dates {
  border-top: 4px solid #696969;
  border-bottom: 4px solid #696969;
  margin-bottom: 1rem;
  background-color: rgba(200, 200, 200, 0.3);
  padding: 1rem 2rem;
}
.general_template_start_dates ul {
  margin-left: 0;
  margin-bottom: 0;
}
.general_template_start_dates .upcoming_start_date_link {
  display: block;
  margin-top: 0.5rem;
}
.program_template_start_dates {
  padding: 0.5rem 1rem;
  border-top: 4px solid #696969;
  border-bottom: 4px solid #696969;
  margin-bottom: 1rem;
  background-color: rgba(200, 200, 200, 0.3);
}
.program_template_start_dates .upcoming_start_date_link {
  display: inline-block;
  padding-left: 2rem;
}
.program_template_start_dates p {
  padding: 0;
  margin: 0;
}
.upcoming_template_start_dates h3 {
  border-top: 2px solid #e9e9e9;
}
.widget_template_start_dates ul {
  margin-top: 1em;
  margin-left: 0;
  margin-bottom: 0;
}
.widget_template_start_dates ul li {
  line-height: 1.75em !important;
}
.general_blue_template_start_dates {
  position: relative;
  height: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.general_blue_template_start_dates .date-blue {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2372bd;
  background-image: url("assets/img/next_start_dates_120x75.png");
  background-repeat: no-repeat;
  background-position: center center;
  float: left;
  width: 125px;
  color: #fff;
  height: 100%;
}
@media only screen and (max-width: 40em) {
  .general_blue_template_start_dates .date-blue {
    background-size: contain;
    width: 80px;
  }
}
.general_blue_template_start_dates .grey-text {
  margin-left: 125px;
  background-color: rgba(200, 200, 200, 0.3);
  padding: 1rem;
}
@media only screen and (max-width: 40em) {
  .general_blue_template_start_dates .grey-text {
    margin-left: 80px;
  }
}
.general_blue_template_start_dates .grey-text ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}
.general_blue_template_start_dates .upcoming_start_date_link {
  display: block;
  margin-top: 0.5rem;
}
.program_blue_template_start_dates {
  background-color: rgba(200, 200, 200, 0.3);
  margin-bottom: 1rem;
}
.program_blue_template_start_dates .date-blue {
  display: inline-block;
  background-color: #2372bd;
  color: #fff;
  padding: 0.5rem 1rem;
  margin-right: 0.5rem;
}
.program_blue_template_start_dates .blue-icon {
  display: inline-block;
  padding-right: 0.4rem;
  color: #000;
  opacity: 0.5;
}
.program_blue_template_start_dates .upcoming_start_date_link {
  display: inline-block;
  padding-left: 2rem;
}
.program_blue_template_start_dates p {
  padding: 0;
  margin: 0;
}
.h-white-text .upcoming_start_dates {
  color: #fff !important;
}
.h-white-text .upcoming_start_dates h3 {
  color: #fff !important;
}
.h-white-text .general_template_start_dates {
  border-top: 4px solid #969696;
  border-bottom: 4px solid #969696;
  background-color: rgba(55, 55, 55, 0.3);
}
.h-white-text .program_template_start_dates {
  border-top: 4px solid #969696;
  border-bottom: 4px solid #969696;
  margin-bottom: 1rem;
  background-color: rgba(55, 55, 55, 0.3);
}
.h-white-text .general_blue_template_start_dates {
  background-color: rgba(55, 55, 55, 0.3);
}
.h-white-text .general_blue_template_start_dates .date-blue {
  background-image: url("assets/img/next_start_dates_120x75_inv.png");
  background-color: #2372bd;
  color: #000;
}
.h-white-text .general_blue_template_start_dates .grey-text {
  background-color: rgba(55, 55, 55, 0.3);
}
.h-white-text .program_blue_template_start_dates {
  background-color: rgba(55, 55, 55, 0.3);
}
.h-white-text .program_blue_template_start_dates .date-blue {
  background-color: #2372bd;
  color: #000;
}
.h-white-text .program_blue_template_start_dates .blue-icon {
  color: #fff;
}
.ghost-button .button,
.ghost-button button {
  color: #2272bd;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #2272bd;
}
.ghost-button .button:active,
.ghost-button .button:hover,
.ghost-button button:active,
.ghost-button button:hover {
  color: #164b7c;
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid #164b7c;
}
.reverse-button .button,
.reverse-button button {
  color: #2272bd;
  background-color: #fff;
  border: 1px solid #2272bd;
}
.reverse-button .button:active,
.reverse-button .button:hover,
.reverse-button button:active,
.reverse-button button:hover {
  color: #fff;
  background-color: #2272bd;
  border: 1px solid #2272bd;
}
.gradient-button .button,
.gradient-button button {
  background: #3b8edc;
  background-image: -webkit-linear-gradient(#3b8edc, #19558d);
  background-image: -o-linear-gradient(#3b8edc, #19558d);
  background-image: -moz-linear-gradient(#3b8edc, #19558d);
  background-image: linear-gradient(#3b8edc, #19558d);
  box-shadow: inset 0 -3px 3px rgba(0, 0, 0, 0.35),
    inset 0 4px 4px rgba(255, 255, 255, 0.45);
  -moz-box-shadow: inset 0 -3px 3px rgba(0, 0, 0, 0.35),
    inset 0 4px 4px rgba(255, 255, 255, 0.45);
  -webkit-box-shadow: inset 0 -3px 3px rgba(0, 0, 0, 0.35),
    inset 0 4px 4px rgba(255, 255, 255, 0.45);
}
.gradient-button .button:active,
.gradient-button .button:hover,
.gradient-button button:active,
.gradient-button button:hover {
  background: #19558d;
  background-image: -webkit-linear-gradient(#19558d, #3b8edc);
  background-image: -o-linear-gradient(#19558d, #3b8edc);
  background-image: -moz-linear-gradient(#19558d, #3b8edc);
  background-image: linear-gradient(#19558d, #3b8edc);
  box-shadow: inset 0 -4px 4px rgba(255, 255, 255, 0.25),
    inset 0 3px 3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 -4px 4px rgba(255, 255, 255, 0.25),
    inset 0 3px 3px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: inset 0 -4px 4px rgba(255, 255, 255, 0.25),
    inset 0 3px 3px rgba(0, 0, 0, 0.15);
}
.h-white-text {
  color: #fff;
}
.h-white-text blockquote,
.h-white-text cite,
.h-white-text dd,
.h-white-text dl,
.h-white-text dt,
.h-white-text h1,
.h-white-text h2,
.h-white-text h3,
.h-white-text h4,
.h-white-text h5,
.h-white-text h6,
.h-white-text li,
.h-white-text ol,
.h-white-text p,
.h-white-text pre,
.h-white-text ul {
  color: #fff;
}
.h-white-text a {
  color: #ff0;
}
.h-white-text a:active,
.h-white-text a:hover {
  color: #cc0;
}
.h-white-text .button,
.h-white-text button {
  color: #000;
  background-color: #ff0;
}
.h-white-text .button:active,
.h-white-text .button:hover,
.h-white-text button:active,
.h-white-text button:hover {
  color: #000;
  background-color: #cc0;
}
.h-white-text .ghost-button .button,
.h-white-text .ghost-button button,
.h-white-text.ghost-button .button,
.h-white-text.ghost-button button {
  color: #ff0;
  background-color: rgba(0, 0, 0, 0.25);
  border: 1px solid #ff0;
}
.h-white-text .ghost-button .button:active,
.h-white-text .ghost-button .button:hover,
.h-white-text .ghost-button button:active,
.h-white-text .ghost-button button:hover,
.h-white-text.ghost-button .button:active,
.h-white-text.ghost-button .button:hover,
.h-white-text.ghost-button button:active,
.h-white-text.ghost-button button:hover {
  color: #ff3;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #ff3;
}
.h-white-text .reverse-button .button,
.h-white-text .reverse-button button,
.h-white-text.reverse-button .button,
.h-white-text.reverse-button button {
  color: #ff0;
  background-color: #000;
  border: 1px solid #ff0;
}
.h-white-text .reverse-button .button:active,
.h-white-text .reverse-button .button:hover,
.h-white-text .reverse-button button:active,
.h-white-text .reverse-button button:hover,
.h-white-text.reverse-button .button:active,
.h-white-text.reverse-button .button:hover,
.h-white-text.reverse-button button:active,
.h-white-text.reverse-button button:hover {
  color: #000;
  background-color: #ff0;
  border: 1px solid #000;
}
.h-white-text gradient-button .button,
.h-white-text gradient-button button,
.h-white-text.gradient-button .button,
.h-white-text.gradient-button button {
  background: #ffff2e;
  background-image: -webkit-linear-gradient(#ffff2e, #d1d100);
  background-image: -o-linear-gradient(#ffff2e, #d1d100);
  background-image: -moz-linear-gradient(#ffff2e, #d1d100);
  background-image: linear-gradient(#ffff2e, #d1d100);
  box-shadow: inset 0 -3px 3px rgba(0, 0, 0, 0.35),
    inset 0 4px 4px rgba(255, 255, 255, 0.45);
  -moz-box-shadow: inset 0 -3px 3px rgba(0, 0, 0, 0.35),
    inset 0 4px 4px rgba(255, 255, 255, 0.45);
  -webkit-box-shadow: inset 0 -3px 3px rgba(0, 0, 0, 0.35),
    inset 0 4px 4px rgba(255, 255, 255, 0.45);
}
.h-white-text gradient-button .button:active,
.h-white-text gradient-button .button:hover,
.h-white-text gradient-button button:active,
.h-white-text gradient-button button:hover,
.h-white-text.gradient-button .button:active,
.h-white-text.gradient-button .button:hover,
.h-white-text.gradient-button button:active,
.h-white-text.gradient-button button:hover {
  background: #d1d100;
  background-image: -webkit-linear-gradient(#d1d100, #ffff2e);
  background-image: -o-linear-gradient(#d1d100, #ffff2e);
  background-image: -moz-linear-gradient(#d1d100, #ffff2e);
  background-image: linear-gradient(#d1d100, #ffff2e);
  box-shadow: inset 0 -4px 4px rgba(255, 255, 255, 0.25),
    inset 0 3px 3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 -4px 4px rgba(255, 255, 255, 0.25),
    inset 0 3px 3px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: inset 0 -4px 4px rgba(255, 255, 255, 0.25),
    inset 0 3px 3px rgba(0, 0, 0, 0.15);
}
.h-masthead-lower-gradient {
  content: " ";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0) 28%,
    rgba(0, 0, 0, 0.65) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0) 28%,
    rgba(0, 0, 0, 0.65) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0) 28%,
    rgba(0, 0, 0, 0.65) 100%
  );
}
.h-text-shadow {
  text-shadow: 1px 1px 20px rgba(0, 0, 0, 0.8);
}
.h-text-shadow-light {
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.75);
}
.h-text-shadow-dark {
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.75);
}
.h-box-shadow {
  box-shadow: 3px 4px 16px 0 rgba(0, 0, 0, 0.25);
}
.h-box-shadow-light {
  box-shadow: 3px 4px 6px 0 rgba(255, 255, 255, 0.25);
}
.h-box-shadow-dark {
  box-shadow: 3px 4px 6px 0 rgba(0, 0, 0, 0.25);
}
.h-homepage-form #er-form-wrap {
  margin-top: -93px;
}
@media screen and (max-width: 40em) {
  .table-scroll-wrapper {
    width: 100%;
    overflow-x: scroll;
    background-color: #f4f4f4;
    border: 1px solid #c9c9c9;
    margin-bottom: 1em;
  }
  .table-scroll-wrapper table {
    margin: 1em;
  }
}
a {
  overflow-wrap: break-word;
}
#main .hero-fluid {
  padding: 3rem 0;
  background-size: cover;
  background-position: center center;
  -moz-box-shadow: inset 0 2px 2px 0 rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0 2px 2px 0 rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 2px 2px 0 rgba(0, 0, 0, 0.5);
  position: relative;
  vertical-align: middle;
  color: #fff;
}
#main .hero-fluid:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: -o-radial-gradient(
    50% 159%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.66) 100%
  );
  background-image: -moz-radial-gradient(
    50% 159%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.66) 100%
  );
  background-image: -ms-radial-gradient(
    50% 159%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.66) 100%
  );
  background-image: radial-gradient(
    50% 159%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.66) 100%
  );
}
#main .hero-fluid .hero-fluid-content {
  position: relative;
  z-index: 5;
  display: table;
  width: 100%;
  height: 100%;
}
#main .hero-fluid .hero-fluid-content .hero-fluid-content-inner {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 0 10%;
}
#main .hero-fluid .hero-fluid-content h1,
#main .hero-fluid .hero-fluid-content h2 {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  letter-spacing: 0;
  margin-top: 0.2rem;
}
#main .hero-fluid .hero-fluid-content h1 {
  color: #fff;
  position: relative;
  font-size: 2.25rem;
}
#main .hero-fluid .hero-fluid-content h2 {
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 1.2rem;
  margin: 0 auto 2rem auto;
  font-weight: 300;
  line-height: 1.3;
}
@media only screen and (min-width: 40.063em) {
  #main .hero-fluid .hero-fluid-content {
    height: 540px;
  }
  #main .hero-fluid .hero-fluid-content h1 {
    font-size: 3.25rem;
  }
  #main .hero-fluid .hero-fluid-content h2 {
    font-size: 1.5rem;
    max-width: 80%;
  }
  #main .hero-fluid .hero-fluid-content .hero-fluid-buttons .button {
    margin-right: 1rem;
  }
  #main .hero-fluid .hero-fluid-content .hero-fluid-buttons .button:last-child {
    margin-right: 0;
  }
}
.lt-ie9 .hero-fluid-content-inner {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.lt-ie9 .hero-fluid-content-inner > * {
  padding-left: 2rem;
  padding-right: 2rem;
}
.page-template-page-home-hero-full #page {
  padding: 0 1rem;
}
@media only screen and (min-width: 64.063em) {
  .page-template-page-home-hero-full #page {
    padding: 0 2rem;
  }
}
.page-template-page-home-hero-full .hero-full-full-width-text #main {
  padding-top: 0;
}
.page-template-page-home-hero-full .hero-full-full-width-text .sidebar {
  margin-top: 0;
}
.page-template-page-home-hero-full .hero-full-full-width-text #er-form {
  -webkit-box-shadow: -2px 5px 49px -8px rgba(0, 0, 0, 0.33);
  -moz-box-shadow: -2px 5px 49px -8px rgba(0, 0, 0, 0.33);
  box-shadow: -2px 5px 49px -8px rgba(0, 0, 0, 0.33);
  z-index: 7;
  position: relative;
}
.page-template-page-home-hero-full
  .hero-full-full-width-text
  #er-form
  .er-form-header {
  -webkit-box-shadow: inset 0 20px 20px -20px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0 20px 20px -20px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 5px 5px -5px rgba(0, 0, 0, 0.9);
}
.hero-full-full-width-text #main .hero-full {
  margin-left: -1rem;
  margin-right: -1rem;
  margin-bottom: 2rem;
  background-size: cover;
  background-position: center center;
  position: relative;
  vertical-align: middle;
  color: #fff;
}
.hero-full-full-width-text #main .hero-full:before {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: -o-radial-gradient(
    50% 159%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.66) 100%
  );
  background-image: -moz-radial-gradient(
    50% 159%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.66) 100%
  );
  background-image: -ms-radial-gradient(
    50% 159%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.66) 100%
  );
  background-image: radial-gradient(
    50% 159%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.66) 100%
  );
  -webkit-box-shadow: inset -21px 21px 20px -20px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset -21px 21px 20px -20px rgba(0, 0, 0, 0.5);
  box-shadow: inset -21px 21px 20px -20px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 64.063em) {
  .hero-full-full-width-text #main .hero-full {
    margin-left: -2rem;
    margin-right: 0;
  }
}
.hero-full-full-width-text #main .hero-full .hero-full-content {
  position: relative;
  z-index: 5;
  display: table;
  width: 100%;
  height: 100%;
  padding: 4rem 0 3rem;
}
.hero-full-full-width-text
  #main
  .hero-full
  .hero-full-content.hero-full-content-transparent {
  -webkit-box-shadow: inset 0 -15px 0 0 #000;
  -moz-box-shadow: inset 0 -15px 0 0 rgba(0, 0, 0, 0.31);
  box-shadow: inset 0 -15px 0 0 rgba(0, 0, 0, 0.31);
}
.hero-full-full-width-text
  #main
  .hero-full
  .hero-full-content.hero-full-content-opaque {
  -webkit-box-shadow: inset 0 -15px 0 0 #dbdbdb;
  -moz-box-shadow: inset 0 -15px 0 0 #dbdbdb;
  box-shadow: inset 0 -15px 0 0 #dbdbdb;
}
@media only screen and (min-width: 40.063em) {
  .hero-full-full-width-text #main .hero-full .hero-full-content {
    padding: 5rem 0 5rem;
  }
  .hero-full-full-width-text
    #main
    .hero-full
    .hero-full-content.hero-full-content-transparent {
    -webkit-box-shadow: inset 0 -32px 0 0 rgba(0, 0, 0, 0.31);
    -moz-box-shadow: inset 0 -32px 0 0 rgba(0, 0, 0, 0.31);
    box-shadow: inset 0 -32px 0 0 rgba(0, 0, 0, 0.31);
  }
  .hero-full-full-width-text
    #main
    .hero-full
    .hero-full-content.hero-full-content-opaque {
    -webkit-box-shadow: inset 0 -32px 0 0 #dbdbdb;
    -moz-box-shadow: inset 0 -32px 0 0 #dbdbdb;
    box-shadow: inset 0 -32px 0 0 #dbdbdb;
  }
}
@media only screen and (min-width: 64.063em) {
  .hero-full-full-width-text #main .hero-full .hero-full-content {
    padding: 4rem 0 4rem;
    height: 460px;
  }
}
.hero-full-full-width-text
  #main
  .hero-full
  .hero-full-content
  .hero-full-content-inner {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  padding: 0;
}
.hero-full-full-width-text
  #main
  .hero-full
  .hero-full-content
  .hero-text-horiz-right {
  text-align: right;
}
.hero-full-full-width-text
  #main
  .hero-full
  .hero-full-content
  .hero-text-horiz-center {
  text-align: center;
}
.hero-full-full-width-text
  #main
  .hero-full
  .hero-full-content.hero-text-vertical-top
  .hero-full-content-inner {
  vertical-align: top;
}
.hero-full-full-width-text
  #main
  .hero-full
  .hero-full-content.hero-text-vertical-bottom
  .hero-full-content-inner {
  vertical-align: bottom;
}
@media only screen and (max-width: 64em) {
  .hero-full-full-width-text
    #main
    .hero-full
    .hero-full-content
    .hero-text-cta-button {
    text-align: center;
  }
  .hero-full-full-width-text
    #main
    .hero-full
    .hero-full-content
    .hero-text-cta-button
    .hero-full-heading-cta {
    float: none;
    margin-right: 0 !important;
  }
}
@media only screen and (max-width: 40em) {
  .hero-full-full-width-text
    #main
    .hero-full
    .hero-full-content
    .hero-text-cta-button
    .hero-full-heading-cta {
    padding: 0.2rem 1rem;
  }
}
.hero-full-full-width-text
  #main
  .hero-full
  .hero-full-content
  .hero-h1-container,
.hero-full-full-width-text
  #main
  .hero-full
  .hero-full-content
  .hero-h2-container {
  width: 100%;
  margin: 0.3rem 0;
}
.hero-full-full-width-text
  #main
  .hero-full
  .hero-full-content
  .hero-h1-container
  h1,
.hero-full-full-width-text
  #main
  .hero-full
  .hero-full-content
  .hero-h1-container
  h2,
.hero-full-full-width-text
  #main
  .hero-full
  .hero-full-content
  .hero-h2-container
  h1,
.hero-full-full-width-text
  #main
  .hero-full
  .hero-full-content
  .hero-h2-container
  h2 {
  padding: 10px 2rem;
  margin-top: 0.2rem;
}
@media only screen and (max-width: 40em) {
  .hero-full-full-width-text
    #main
    .hero-full
    .hero-full-content
    .hero-h2-container {
    margin: 0 0 -0.5rem;
  }
}
.hero-full-full-width-text #main .hero-full .hero-full-content h1,
.hero-full-full-width-text #main .hero-full .hero-full-content h2 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 0;
  display: inline-block;
  color: #fff;
  padding: 10px 20px;
  text-align: left;
  margin-top: 0.2rem;
}
.hero-full-full-width-text #main .hero-full .hero-full-content h1 {
  position: relative;
  font-size: 1.4rem;
  border: 0;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.03em;
  vertical-align: middle;
}
@media only screen and (min-width: 40.063em) {
  .hero-full-full-width-text #main .hero-full .hero-full-content h1 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 64.063em) {
  .hero-full-full-width-text #main .hero-full .hero-full-content h1 {
    font-size: 2.25rem;
  }
}
.hero-full-full-width-text #main .hero-full .hero-full-content h2 {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.3;
}
@media only screen and (min-width: 40.063em) {
  .hero-full-full-width-text #main .hero-full .hero-full-content h2 {
    font-size: 1.4rem;
  }
}
.hero-full-full-width-text
  #main
  .hero-full
  .hero-full-content
  .hero-full-heading-cta {
  position: relative;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  color: #fff;
  font-size: 0.875rem;
  background: #f99517;
  padding: 1rem;
  margin-top: 0;
  text-decoration: none;
  -webkit-box-shadow: 4px 7px 12px -8px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 4px 7px 12px -8px rgba(0, 0, 0, 0.75);
  box-shadow: 4px 7px 12px -8px #000;
  cursor: pointer;
  float: right;
}
@media only screen and (min-width: 40.063em) {
  .hero-full-full-width-text
    #main
    .hero-full
    .hero-full-content
    .hero-full-heading-cta {
    font-size: 1.3rem;
    padding: 0.6rem;
  }
}
.hero-full-full-width-text
  #main
  .hero-full
  .hero-full-content
  .hero-full-heading-cta:hover:before {
  content: "";
  position: absolute;
  border-radius: 7px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.hero-full-full-width-text
  #main
  .hero-full
  .hero-full-content
  .hero-full-buttons {
  text-align: center;
  margin: 0.3rem;
}
@media only screen and (min-width: 40.063em) {
  .hero-full-full-width-text
    #main
    .hero-full
    .hero-full-content
    .hero-full-buttons {
    text-align: left;
  }
}
.hero-full-full-width-text
  #main
  .hero-full
  .hero-full-content
  .hero-full-buttons:last-child {
  margin-right: 0;
}
.hero-full-full-width-text
  #main
  .hero-full
  .hero-full-content
  .hero-full-buttons
  .button {
  margin-right: 0.5rem;
  font-size: 1rem;
  background-color: #000;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  display: inline-block;
  padding: 10px 15px;
  font-style: normal;
  font-weight: 300;
}
@media only screen and (min-width: 40.063em) {
  .hero-full-full-width-text
    #main
    .hero-full
    .hero-full-content
    .hero-full-buttons
    .button {
    font-size: 1.4rem;
  }
}
.hero-full-full-width-text
  #main
  .hero-full
  .hero-full-content
  .hero-full-buttons
  .button:hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 64.063em) {
  .hero-full-full-width-text
    #main
    .hero-full
    .hero-full-content
    .hero-full-buttons {
    text-align: left;
  }
}
.hero-full-full-width-text
  #main
  .hero-full
  .hero-full-content-without-h2.hero-text-vertical-bottom {
  padding: 7rem 0 0;
}
@media only screen and (min-width: 40.063em) {
  .hero-full-full-width-text
    #main
    .hero-full
    .hero-full-content-without-h2.hero-text-vertical-bottom {
    padding: 9rem 0 1rem;
  }
}
@media only screen and (min-width: 64.063em) {
  .hero-full-full-width-text
    #main
    .hero-full
    .hero-full-content-without-h2.hero-text-vertical-bottom {
    padding: 5rem 0 3rem;
  }
}
@media only screen and (max-width: 40em) {
  .hero-full-full-width-text
    #main
    .hero-full
    .hero-full-content-without-h2.hero-text-vertical-bottom
    .hero-h1-container {
    margin-bottom: -0.5rem;
  }
}
.hero-full-full-width-text
  #main
  .hero-full
  .hero-full-content-without-h2.hero-text-vertical-top {
  padding: 0 0 7rem;
}
@media only screen and (min-width: 40.063em) {
  .hero-full-full-width-text
    #main
    .hero-full
    .hero-full-content-without-h2.hero-text-vertical-top {
    padding: 1rem 0 9rem;
  }
}
@media only screen and (min-width: 64.063em) {
  .hero-full-full-width-text
    #main
    .hero-full
    .hero-full-content-without-h2.hero-text-vertical-top {
    padding: 3em 0 5rem;
  }
}
@media only screen and (max-width: 40em) {
  .hero-full-full-width-text
    #main
    .hero-full
    .hero-full-content-without-h2.hero-text-vertical-top
    .hero-h1-container {
    margin-bottom: -0.5rem;
  }
}
.hero-full-full-width-text #main .hero-full-light-vignette:before {
  background-image: -o-radial-gradient(
    50% 159%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  background-image: -moz-radial-gradient(
    50% 159%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  background-image: -ms-radial-gradient(
    50% 159%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  background-image: radial-gradient(
    50% 159%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
}
.hero-full-full-width-text #main .hero-full-no-vignette:before {
  background-image: none;
}
.hero-full-full-width-text #main .lt-ie9 .hero-full-content-inner {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.hero-full-full-width-text #main .lt-ie9 .hero-full-content-inner > * {
  padding-left: 2rem;
  padding-right: 2rem;
}
.page-template-page-home-hero-full #page {
  padding: 0 1rem;
}
@media only screen and (min-width: 64.063em) {
  .page-template-page-home-hero-full #page {
    padding: 0 2rem;
  }
}
.page-template-page-home-hero-full .hero-full-original #main {
  padding-top: 0;
}
.page-template-page-home-hero-full .hero-full-original .sidebar {
  margin-top: 0;
}
.page-template-page-home-hero-full .hero-full-original #er-form {
  -webkit-box-shadow: -2px 5px 49px -8px rgba(0, 0, 0, 0.33);
  -moz-box-shadow: -2px 5px 49px -8px rgba(0, 0, 0, 0.33);
  box-shadow: -2px 5px 49px -8px rgba(0, 0, 0, 0.33);
  z-index: 7;
  position: relative;
}
.page-template-page-home-hero-full
  .hero-full-original
  #er-form
  .er-form-header {
  -webkit-box-shadow: inset 0 20px 20px -20px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0 20px 20px -20px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 5px 5px -5px rgba(0, 0, 0, 0.9);
}
.hero-full-original #main .hero-full {
  margin-left: -1rem;
  margin-right: -1rem;
  margin-bottom: 2rem;
  background-size: cover;
  background-position: center center;
  position: relative;
  vertical-align: middle;
  color: #fff;
}
.hero-full-original #main .hero-full:before {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: -o-radial-gradient(
    50% 159%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.66) 100%
  );
  background-image: -moz-radial-gradient(
    50% 159%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.66) 100%
  );
  background-image: -ms-radial-gradient(
    50% 159%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.66) 100%
  );
  background-image: radial-gradient(
    50% 159%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.66) 100%
  );
  -webkit-box-shadow: inset -21px 21px 20px -20px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset -21px 21px 20px -20px rgba(0, 0, 0, 0.5);
  box-shadow: inset -21px 21px 20px -20px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 64.063em) {
  .hero-full-original #main .hero-full {
    margin-left: -2rem;
    margin-right: 0;
  }
}
.hero-full-original #main .hero-full .hero-full-content {
  position: relative;
  z-index: 5;
  display: table;
  width: 100%;
  height: 100%;
  padding: 4rem 0 3rem;
  -webkit-box-shadow: inset 0 -15px 0 0 rgba(0, 0, 0, 0.31);
  -moz-box-shadow: inset 0 -15px 0 0 rgba(0, 0, 0, 0.31);
  box-shadow: inset 0 -15px 0 0 rgba(0, 0, 0, 0.31);
}
@media only screen and (min-width: 40.063em) {
  .hero-full-original #main .hero-full .hero-full-content {
    padding: 5rem 0 5rem;
    -webkit-box-shadow: inset 0 -32px 0 0 rgba(0, 0, 0, 0.31);
    -moz-box-shadow: inset 0 -32px 0 0 rgba(0, 0, 0, 0.31);
    box-shadow: inset 0 -32px 0 0 rgba(0, 0, 0, 0.31);
  }
}
@media only screen and (min-width: 64.063em) {
  .hero-full-original #main .hero-full .hero-full-content {
    padding: 4rem 0 4rem;
    height: 460px;
  }
}
.hero-full-original
  #main
  .hero-full
  .hero-full-content
  .hero-full-content-inner {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  padding: 0 5%;
}
.hero-full-original #main .hero-full .hero-full-content .hero-text-horiz-right {
  text-align: right;
}
.hero-full-original
  #main
  .hero-full
  .hero-full-content
  .hero-text-horiz-center {
  text-align: center;
}
.hero-full-original
  #main
  .hero-full
  .hero-full-content
  .hero-text-vertical-top {
  vertical-align: top;
}
.hero-full-original
  #main
  .hero-full
  .hero-full-content
  .hero-text-vertical-bottom {
  vertical-align: bottom;
}
@media only screen and (max-width: 64em) {
  .hero-full-original
    #main
    .hero-full
    .hero-full-content
    .hero-text-cta-button {
    text-align: center;
  }
  .hero-full-original
    #main
    .hero-full
    .hero-full-content
    .hero-text-cta-button
    .hero-full-heading-cta {
    float: none;
  }
  .hero-full-original
    #main
    .hero-full
    .hero-full-content
    .hero-text-cta-button
    h1 {
    margin-bottom: 2rem;
  }
}
.hero-full-original #main .hero-full .hero-full-content h1,
.hero-full-original #main .hero-full .hero-full-content h2 {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  letter-spacing: 0;
  display: inline-block;
  color: #fff;
  background-color: #000;
  padding: 10px 20px;
  margin: 0.3rem;
  margin-top: 0.2rem;
  text-align: left;
}
.hero-full-original #main .hero-full .hero-full-content h1 {
  position: relative;
  font-size: 1.4rem;
  border: 0;
  font-style: normal;
  font-weight: 300;
  letter-spacing: -0.007em;
  vertical-align: middle;
}
@media only screen and (min-width: 40.063em) {
  .hero-full-original #main .hero-full .hero-full-content h1 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 64.063em) {
  .hero-full-original #main .hero-full .hero-full-content h1 {
    font-size: 2.25rem;
  }
}
.hero-full-original #main .hero-full .hero-full-content h2 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.3;
}
@media only screen and (min-width: 40.063em) {
  .hero-full-original #main .hero-full .hero-full-content h2 {
    font-size: 1.4rem;
  }
}
.hero-full-original #main .hero-full .hero-full-content .hero-full-heading-cta {
  position: relative;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  color: #fff;
  font-size: 0.875rem;
  background: #f99517;
  padding: 1rem;
  margin-top: 0;
  text-decoration: none;
  -webkit-box-shadow: 4px 7px 12px -8px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 4px 7px 12px -8px rgba(0, 0, 0, 0.75);
  box-shadow: 4px 7px 12px -8px #000;
  cursor: pointer;
  float: right;
}
@media only screen and (min-width: 40.063em) {
  .hero-full-original
    #main
    .hero-full
    .hero-full-content
    .hero-full-heading-cta {
    font-size: 1.3rem;
    padding: 0.8rem;
  }
}
.hero-full-original
  #main
  .hero-full
  .hero-full-content
  .hero-full-heading-cta:hover:before {
  content: "";
  position: absolute;
  border-radius: 7px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.hero-full-original #main .hero-full .hero-full-content .hero-full-buttons {
  text-align: center;
  margin: 0.3rem;
}
@media only screen and (min-width: 40.063em) {
  .hero-full-original #main .hero-full .hero-full-content .hero-full-buttons {
    text-align: left;
  }
}
.hero-full-original
  #main
  .hero-full
  .hero-full-content
  .hero-full-buttons:last-child {
  margin-right: 0;
}
.hero-full-original
  #main
  .hero-full
  .hero-full-content
  .hero-full-buttons
  .button {
  margin-right: 0.5rem;
  font-size: 1rem;
  background-color: #000;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  display: inline-block;
  padding: 10px 15px;
  font-style: normal;
  font-weight: 300;
}
@media only screen and (min-width: 40.063em) {
  .hero-full-original
    #main
    .hero-full
    .hero-full-content
    .hero-full-buttons
    .button {
    font-size: 1.4rem;
  }
}
.hero-full-original
  #main
  .hero-full
  .hero-full-content
  .hero-full-buttons
  .button:hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 64.063em) {
  .hero-full-original #main .hero-full .hero-full-content .hero-full-buttons {
    text-align: left;
  }
}
.hero-full-original #main .hero-full-light-vignette:before {
  background-image: -o-radial-gradient(
    50% 159%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  background-image: -moz-radial-gradient(
    50% 159%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  background-image: -ms-radial-gradient(
    50% 159%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  background-image: radial-gradient(
    50% 159%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
}
.hero-full-original #main .hero-full-no-vignette:before {
  background-image: none;
}
.hero-full-original #main .lt-ie9 .hero-full-content-inner {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.hero-full-original #main .lt-ie9 .hero-full-content-inner > * {
  padding-left: 2rem;
  padding-right: 2rem;
}
.page-template-page-home-no-sidebar #page {
  padding: 0 1rem;
}
@media only screen and (min-width: 64.063em) {
  .page-template-page-home-no-sidebar #page {
    padding: 0 2rem;
  }
}
.home-no-sidebar #main {
  padding-top: 0;
}
.home-no-sidebar #main .panel-grid {
  margin-left: -32px;
  margin-right: -32px;
}
.home-no-sidebar #main .siteorigin-widget-tinymce {
  padding: 2rem 3rem;
}
.home-no-sidebar #main .inner-wrap {
  padding-right: 0;
}
.home-no-sidebar #main .hero-container {
  -webkit-box-shadow: inset 2px 10px 23px -5px rgba(0, 0, 0, 0.29);
  -moz-box-shadow: inset 2px 10px 23px -5px rgba(0, 0, 0, 0.29);
  box-shadow: inset 2px 10px 23px -5px rgba(0, 0, 0, 0.29);
}
.home-no-sidebar #main .hero {
  margin-left: -1rem;
  margin-right: -1rem;
  margin-bottom: 2rem;
  padding: 4rem 3rem;
  background-size: cover;
  background-position: center center;
  position: relative;
  vertical-align: middle;
  color: #fff;
}
.home-no-sidebar #main .hero h1 {
  margin-top: 0;
  color: #fff;
}
.home-no-sidebar #main .hero h2 {
  color: #fff;
}
#main .hero-video {
  max-height: 600px;
  overflow: hidden;
}
#main .hero-video #video-player {
  width: 100%;
  height: auto;
  opacity: 0;
  -moz-transition: opacity 0.5s;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
#main .hero-video #video-player.playing {
  opacity: 1;
}
@media screen and (max-width: 999px) {
  #main .hero-video #video-player {
    width: 170vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}
@media screen and (min-width: 1000px) {
  #main .hero-video #video-player {
    width: 100%;
    height: 70vw;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
}
.page-template-page-home-columns-video .wrapper {
  max-width: none;
}
.page-template-page-home-columns-video .top-bar {
  max-width: none;
}
.page-template-page-home-columns-video #main .hero-fluid:before {
  z-index: 2;
}
.widget_er_pageswidget {
  margin: 0 0 1rem 0;
}
.widget_er_pageswidget .title {
  margin: 0 0 1rem 0;
}
.widget_er_pageswidget .pages-page {
  margin: 0 0 1rem 0;
  border-bottom: 1px solid #e4e4e4;
}
.widget_er_pageswidget .pages-page-title {
  font-size: 1.075rem;
  margin-bottom: 0.25rem;
  display: inline-block;
}
.widget_er_pageswidget .pages-page-excerpt,
.widget_er_pageswidget .pages-start-date {
  font-size: 0.875rem;
  line-height: 1.3;
  color: #494949;
}
.widget_er_pageswidget .pages-start-date {
  margin-top: 0.25rem;
}
.widget_er_pageswidget .pages-page-row {
  display: table;
  margin: 0 0 1rem 0;
  width: 100%;
}
.widget_er_pageswidget .pages-page-cell {
  display: table-cell;
  vertical-align: top;
}
.widget_er_pageswidget .pages-page-thumb {
  background-size: cover;
  background-position: center center;
  width: 40%;
  position: relative;
  display: none;
}
.widget_er_pageswidget .pages-page-thumb a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
}
.widget_er_pageswidget .pages-page-content-inner {
  line-height: 1.4;
}
.widget_er_pageswidget .pages-page-content-inner p {
  margin-bottom: 0;
}
@media only screen and (min-width: 40.063em) {
  .widget_er_pageswidget .pages-page-thumb {
    display: table-cell;
  }
  .widget_er_pageswidget .pages-page-content {
    width: 60%;
  }
  .widget_er_pageswidget .pages-page-content-inner {
    padding-left: 1rem;
  }
}
.lt-ie9 .widget_er_pageswidget .pages-page-content {
  padding-left: 1rem;
}
button.button-align-center,
button.button-align-left,
button.button-align-right {
  display: block;
}
button.button-align-left {
  margin-left: 0;
  margin-right: auto;
}
button.button-align-right {
  margin-left: auto;
  margin-right: 0;
}
button.button-align-center {
  margin-left: auto;
  margin-right: auto;
}
a.button.button-align-center,
a.button.button-align-left,
a.button.button-align-right {
  display: block;
}
a.button.button-align-left {
  margin-left: 0;
  margin-right: auto;
}
a.button.button-align-right {
  margin-left: auto;
  margin-right: 0;
}
a.button.button-align-center {
  margin-left: auto;
  margin-right: auto;
}
.button-ghost {
  background: 0 0 !important;
  color: #fff !important;
  background: rgba(0, 0, 0, 0.25) !important;
  border: 2px solid #fff;
  border-radius: 2px;
  text-transform: uppercase;
  -moz-transition: background 0.2s ease-out;
  -webkit-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}
.button-ghost:active,
.button-ghost:hover {
  background: #000 !important;
  background: rgba(0, 0, 0, 0.5) !important;
}
.circle-img-row {
  margin: 1rem 0 1rem 0;
}
.circle-img-row .circle-img-wrapper {
  text-align: center;
}
.circle-img-row .circle-img {
  border-radius: 50%;
  border: 5px solid #e2e2e2;
}
@media only screen and (max-width: 40em) {
  .circle-img {
    margin-bottom: 1.5rem;
  }
}
.ss_invisible {
  display: none;
}
.social-icons li {
  padding-bottom: 0.7rem;
}
.social-icons .fa {
  font-size: 1.2rem;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  padding: 1px 4px 0 4px;
}
.social-icons.icon-circle .fa {
  border-radius: 50%;
}
.social-icons .fa:active,
.social-icons .fa:hover {
  color: #fff;
  -webkit-box-shadow: 1px 1px 3px #333;
  -moz-box-shadow: 1px 1px 3px #333;
  box-shadow: 1px 1px 3px #333;
}
.social-icons.icon-zoom .fa:active,
.social-icons.icon-zoom .fa:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.social-icons .fa-facebook {
  background-color: #3c599f;
}
.social-icons .fa-flickr {
  background-color: #ff0084;
}
.social-icons .fa-google-plus {
  background-color: #cf3d2e;
}
.social-icons .fa-instagram {
  background-color: #a1755c;
}
.social-icons .fa-linkedin {
  background-color: #0085ae;
}
.social-icons .fa-pinterest {
  background-color: #bd081c;
}
.social-icons .fa-tumblr {
  background-color: #314e6c;
}
.social-icons .fa-twitter {
  background-color: #1b95e0;
}
.social-icons .fa-vimeo {
  background-color: #229acc;
}
.social-icons .fa-youtube {
  background-color: #c52f30;
}
.social-icons .fa-flickr {
  background-color: #ff0084;
}
.social-icons .fa-snapchat-ghost {
  background-color: #fffc00;
}
.social-icons .fa-x-twitter {
  background-color: #000;
}
@media only screen and (max-width: 40em) {
  .social-icons.small-block-grid-2 {
    width: 150px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 40em) {
  .social-row {
    text-align: center;
  }
}
.social-row .social-button {
  display: inline-block;
  text-align: center;
  font-size: 0.875rem;
  padding: 0.1rem 0.5rem;
  color: #fff;
}
@media only screen and (max-width: 40em) {
  .social-row .social-button {
    margin-bottom: 0.3rem;
    font-size: 0;
    width: 23%;
  }
  .social-row .social-button:before {
    position: relative;
    top: 2px;
    margin: 0 !important;
  }
}
.social-row .social-button:before {
  font-family: FontAwesome;
  margin: 0 0.5rem 0 0.3rem;
  font-size: 1rem;
}
.social-row .social-button:hover {
  color: #fff;
}
.social-row .social-button.facebook {
  background: #3c599f;
}
.social-row .social-button.facebook:before {
  content: "\f09a";
}
.social-row .social-button.twitter {
  background: #1b95e0;
}
.social-row .social-button.twitter:before {
  content: "\f099";
}
.social-row .social-button.googleplus {
  background: #cf3d2e;
}
.social-row .social-button.googleplus:before {
  content: "\f0d5";
}
.social-row .social-button.pinterest {
  background: #bd081c;
}
.social-row .social-button.pinterest:before {
  content: "\f0d2";
}
.social-row .social-button.linkedin {
  background: #0085ae;
}
.social-row .social-button.linkedin:before {
  content: "\f08c";
}
.follow-us-inline a {
  display: inline-block;
  margin-right: 0.5em;
}
.follow-us-block a:active,
.follow-us-block a:hover,
.follow-us-inline a:active,
.follow-us-inline a:hover {
  opacity: 0.8;
  filter: Alpha(Opacity=80);
}
.social-row {
  margin-left: 0 !important;
}
.social-row li {
  float: left;
  padding-right: 10px;
  list-style-type: none;
  padding-top: 5px;
}
.social-row li.share-facebook {
  padding-top: 0;
}
.testimonial-article {
  margin-top: 1.5rem;
}
.testimonial-article .outer_rating {
  float: right;
  margin-top: 5px;
  margin-left: 5px;
  width: 65px;
  height: 15px;
  overflow: hidden;
  position: relative;
  background: url("assets/img/star_rating.png") no-repeat;
}
.testimonial-article .outer_rating .inner_rating {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  height: 15px;
  background: url("assets/img/star_rating.png") no-repeat bottom left;
}
.testimonial-article .author-pic {
  float: left;
  margin-right: 5px;
}
.testimonial-article .author-pic img {
  width: 40px;
  height: 40px;
}
.testimonial-article .author-name {
  color: #0e2960;
  font-size: 1rem;
  line-height: 1.2rem;
  font-weight: 700;
}
.testimonial-article .testimonial-date {
  color: #a9a9a9;
  font-size: 0.8rem;
  line-height: 1.2rem;
  letter-spacing: 0.05rem;
}
.testimonial-article blockquote.testimonial-body {
  clear: both;
  border: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: #6f6f6f;
}
.testimonial-fblink {
  margin-top: 1.5rem;
}
.pre-footer .accreditation-logos {
  display: block;
  margin: 0.5rem auto;
  padding-bottom: 10px;
  list-style: none;
}
@media only screen and (min-width: 40.063em) {
  .pre-footer .accreditation-logos {
    display: table;
    table-layout: fixed;
  }
}
.pre-footer .accreditation-logos li {
  display: block;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 40.063em) {
  .pre-footer .accreditation-logos li {
    display: table-cell;
    vertical-align: middle;
    width: 11.1%;
    margin-bottom: 0;
  }
}
.pre-footer .accreditation-logos li img {
  max-width: 90%;
  max-height: 90px;
  width: auto;
  height: auto;
}
.pre-footer .accreditation-logos .accreditation-has-text img {
  margin-bottom: 1rem;
}
.pre-footer .accreditation-logos .accreditation-text {
  display: block;
  font-size: 0.875rem;
}
.pre-footer .accreditation-logos .accreditation-title {
  color: #a9a9a9;
  font-size: 0.8em;
  border-top: 1px solid #a9a9a9;
  width: 66%;
  margin: 0.5em auto;
}
.pre-footer .accreditation-logos.accreditation-has-title .accreditation-logo {
  height: 100px;
  vertical-align: bottom;
  display: table-cell;
  width: 10000px;
  text-align: center;
}
@media only screen and (min-width: 40.063em) {
  .pre-footer .accreditation-logos.accreditation-has-title li {
    vertical-align: top;
  }
}
.pre-footer .accreditation-logos-2 li {
  display: inline-block;
}
.pre-footer .accreditation-logos-2 li img {
  max-height: 120px;
  width: auto;
  height: auto;
}
@media only screen and (min-width: 40.063em) {
  .pre-footer .accreditation-logos-2 li {
    width: 50%;
  }
  .pre-footer .accreditation-logos-2 li img {
    padding: 0 2rem;
  }
  .pre-footer .accreditation-logos-2 .accreditation-text {
    display: inline-block;
    padding: 0 2rem;
    vertical-align: middle;
    width: 60%;
  }
}
@media only screen and (min-width: 40.063em) {
  .pre-footer .accreditation-logos-3 li {
    width: 33%;
  }
  .pre-footer .accreditation-logos-3 li img {
    max-height: 120px;
    width: auto;
    height: auto;
  }
  .pre-footer .accreditation-logos-3 .accreditation-text {
    display: inline-block;
    padding: 0 1rem;
    vertical-align: middle;
    width: 60%;
  }
}
@media only screen and (min-width: 40.063em) {
  .pre-footer .accreditation-logos-4 .accreditation-has-text img {
    max-height: 100px;
    width: auto;
    height: auto;
  }
  .pre-footer .accreditation-logos-4 li img {
    max-height: 150px;
    width: auto;
    height: auto;
  }
  .pre-footer .accreditation-logos-4 .accreditation-text {
    padding: 0 1rem;
  }
}
.home-columns-column .accreditation-logos,
.sidebar .accreditation-logos {
  display: block;
  margin: 0.5rem auto;
  list-style: none;
}
.home-columns-column .accreditation-logos li,
.sidebar .accreditation-logos li {
  margin-bottom: 2rem;
  text-align: center;
}
.home-columns-column .accreditation-logos li .accreditation-title,
.sidebar .accreditation-logos li .accreditation-title {
  color: #a9a9a9;
  font-size: 0.8em;
  border-top: 1px solid #a9a9a9;
  width: 66%;
  margin: 0.5em auto;
}
.home-columns-column .accreditation-logos li img,
.sidebar .accreditation-logos li img {
  display: block;
  max-width: 90%;
  max-height: 90px;
  margin: 0 auto;
  width: auto;
  height: auto;
}
.admin-bar .full-width-header.is-sticky {
  top: 32px;
}
.full-width-header {
  background: #fff;
}
.full-width-header .pre-header {
  text-align: center;
  background: #fff;
  color: #000;
  border-bottom: 1px solid #696969;
  font-size: 0.875rem;
  padding-bottom: 0.5rem;
}
.full-width-header .pre-header .left {
  float: none !important;
}
.full-width-header .pre-header .left .textwidget {
  text-align: center;
}
.full-width-header .pre-header .left p {
  color: #000;
  margin: 0.5rem 0;
  font-size: 1.2em;
}
.full-width-header .pre-header .left a {
  color: #2272bd;
}
.full-width-header .pre-header .left a:active,
.full-width-header .pre-header .left a:hover {
  color: #378cdb;
}
.full-width-header .pre-header .right {
  display: none;
}
.full-width-header .pre-header .right p {
  color: #000;
  margin: 0.5rem 0;
  font-size: 1.2em;
}
.full-width-header .pre-header .right a {
  color: #2272bd;
}
.full-width-header .pre-header .right a:active,
.full-width-header .pre-header .right a:hover {
  color: #378cdb;
}
@media only screen and (min-width: 64.063em) {
  .full-width-header .pre-header {
    margin-bottom: 0;
  }
  .full-width-header .pre-header .left {
    float: left !important;
  }
  .full-width-header .pre-header .left .textwidget {
    text-align: left;
  }
  .full-width-header .pre-header .right {
    display: inline-block;
  }
}
.full-width-header .header-container {
  background: #fff;
}
.full-width-header .header-container .inner-header {
  position: relative;
}
.full-width-header .header-container .inner-header .logo {
  text-align: center;
}
@media only screen and (max-width: 40em) {
  .full-width-header .header-container .inner-header .logo {
    margin-bottom: 1rem;
  }
}
@media only screen and (min-width: 40.063em) and (max-width: 64em) {
  .full-width-header .header-container .inner-header .logo {
    margin-bottom: 1rem;
  }
}
@media only screen and (min-width: 64.063em) {
  .full-width-header {
    position: relative;
    width: 100%;
    z-index: 1000;
  }
  .full-width-header .pre-header {
    text-align: left;
    padding: 0 2rem;
    font-size: 0.775rem;
    border-bottom: 1px solid #ededed;
  }
  .full-width-header .header-container {
    padding: 0 3rem;
    height: 80px;
    -webkit-transition: height 0.5s, -webkit-transform 0.5s;
    transition: height 0.5s, transform 0.5s;
  }
  .full-width-header .header-container .inner-header .logo.logo-absolute {
    position: absolute;
    top: 0;
    left: 0;
  }
  .full-width-header .header-container .inner-header .logo.logo-float {
    float: left;
  }
  .full-width-header .header-container .inner-header .logo #header-logo {
    -webkit-transition: max-height 0.5s, -webkit-transform 0.5s;
    transition: max-height 0.5s, transform 0.5s;
  }
  .full-width-header .info {
    float: right;
  }
  .full-width-header .top-bar-container {
    margin-left: 14em;
  }
  .full-width-header .top-bar {
    background: 0 0 !important;
    margin: 0 0 0 2rem;
    max-width: none;
  }
  .full-width-header .top-bar-section ul li {
    background: 0 0;
    float: none;
  }
  .full-width-header .top-bar-section li.active:not(.has-form) a:not(.button) {
    background: 0 0 !important;
  }
  .full-width-header .top-bar-section li:not(.has-form) a:not(.button) {
    background: 0 0 !important;
  }
  .full-width-header .top-bar-section ul li > a {
    border: 0;
  }
  .full-width-header .top-bar-section .has-dropdown > a {
    position: relative;
  }
  .full-width-header .top-bar-section .has-dropdown > a:after {
    position: absolute;
    border: solid 4px;
    border-color: #969696 transparent transparent transparent;
    top: 55%;
    right: -30px;
  }
  .full-width-header
    .top-bar-section
    .has-dropdown
    .dropdown
    li.has-dropdown
    > a:after {
    right: -30px;
  }
  .full-width-header .top-bar-menu li a ul:not(.sub-menu) {
    line-height: 17px !important;
  }
  .full-width-header .top-bar-menu {
    display: table;
    height: 80px !important;
    margin: 0 20px;
    -webkit-transition: height 0.5s, -webkit-transform 0.5s;
    transition: height 0.5s, transform 0.5s;
  }
  .full-width-header .menu-item {
    display: table-cell;
    vertical-align: bottom;
    padding: 0 20px 30px 20px;
    font-size: 0.875rem;
  }
  .full-width-header .top-bar-section ul li:hover:not(.has-form) > a {
    padding: 0;
  }
  .full-width-header .top-bar-section li:not(.has-form) a:not(.button) {
    padding: 0;
  }
  .full-width-header .top-bar-section ul.sub-menu li:hover:not(.has-form) > a {
    color: #fff !important;
  }
  .full-width-header .top-bar-section .has-dropdown > a {
    padding-right: 0 !important;
  }
  .full-width-header .top-bar-section li:not(.has-form) a:not(.button) {
    line-height: 19px;
  }
  .full-width-header .sub-menu li:not(.has-form) a:not(.button) {
    line-height: 40px;
  }
  .full-width-header ul.sub-menu li {
    float: left;
    background: #e41b23;
    transition: background ease-in-out 0.15s;
  }
  .full-width-header ul.sub-menu li:hover {
    background: #ce161c;
  }
  .full-width-header ul.sub-menu .menu-item {
    padding: 0 50px 0 20px;
  }
  .full-width-header .top-bar-menu > .menu-item > .dropdown {
    padding-top: 30px;
  }
  .full-width-header .top-bar-section .dropdown .dropdown {
    padding-top: 0;
  }
  .full-width-header #show-topbar-search {
    margin-right: 2rem;
  }
  .full-width-header #menu-item-search {
    top: 24px;
  }
  .full-width-header.is-sticky {
    position: fixed;
    top: 0;
    -webkit-box-shadow: 0 3px 10px -1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 3px 10px -1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 10px -1px rgba(0, 0, 0, 0.2);
  }
  .full-width-header.is-sticky .menu-item {
    vertical-align: middle;
    padding: 0 20px 0 20px;
  }
}
@media only screen and (min-width: 64.063em) and (min-width: 64.063em) {
  .full-width-header.is-sticky .header-container {
    height: 40px;
    -webkit-transition: height 0.5s, -webkit-transform 0.5s;
    transition: height 0.5s, transform 0.5s;
  }
  .full-width-header.is-sticky .top-bar-container {
    margin-left: 6em;
  }
  .full-width-header.is-sticky .top-bar-menu {
    -webkit-transition: height 0.5s, -webkit-transform 0.5s;
    transition: height 0.5s, transform 0.5s;
  }
  .full-width-header.is-sticky #menu-item-search {
    top: 7px;
  }
  .full-width-header.is-sticky .top-bar-menu > .menu-item > .dropdown {
    padding-top: 11px;
  }
  .full-width-header.is-sticky .top-bar-section .dropdown .dropdown {
    padding-top: 0;
  }
}
@media (min-width: 1026px) and (max-width: 1300px) {
  .full-width-header .menu-item {
    margin: 0 10px;
  }
  .full-width-header #menu-item-search {
    display: none;
  }
}
body.page-template-page-full-width #header .wrapper {
  max-width: 100%;
}
@media only screen and (min-width: 40.063em) {
  body.page-template-page-full-width .contain-to-grid .top-bar {
    max-width: 100%;
  }
}
.masthead-hero {
  -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);
}
.masthead-hero:before {
  content: " ";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0) 28%,
    rgba(0, 0, 0, 0.65) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0) 28%,
    rgba(0, 0, 0, 0.65) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0) 28%,
    rgba(0, 0, 0, 0.65) 100%
  );
}
.masthead-hero.vc_row-has-fill > .vc_column_container > .vc_column-inner {
  padding-top: 14em;
  padding-bottom: 6em;
}
.masthead-text {
  text-shadow: 1px 1px 20px rgba(0, 0, 0, 0.8);
}
@media (min-width: 480px) {
  .full-width-page #er-form-wrap {
    margin-top: -96px;
  }
}
@media (max-width: 480px) {
  .masthead-hero.vc_row-has-fill > .vc_column_container > .vc_column-inner {
    padding-top: 5em;
    padding-bottom: 1em;
  }
}
.masthead-hero-video .vc_video-bg {
  -webkit-animation: fadein 5s;
  -moz-animation: fadein 5s;
  -ms-animation: fadein 5s;
  -o-animation: fadein 5s;
  animation: fadein 5s;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadein {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: polygon(0px 0px, 0px 0px, 0px 0px, 0px 0px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
#er-roi-calculator {
  padding: 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fdfdfd;
}
#er-roi-calculator table td {
  vertical-align: middle;
  font-size: 13px;
}
#er-roi-calculator .field label {
  font-weight: 700;
}
#er-roi-calculator [name="age"] {
  width: 100px;
}
#er-roi-calculator .field input,
#er-roi-calculator .field select {
  margin-top: 2px;
}
#er-roi-calculator table input {
  margin: 0;
  border: 0;
  background: 0 0;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  outline: 0;
  padding: 0;
}
#er-roi-calculator h3 {
  margin-bottom: 0;
}
#er-roi-calculator p {
  font-size: 13px;
}
@media only screen and (max-width: 40em) {
  #er-roi-calculator .er-roi-calculator-disclaimer {
    margin-left: 0;
  }
  #er-roi-calculator .er-roi-detail-table {
    width: 100%;
    overflow-y: scroll;
  }
  #er-roi-calculator table th {
    font-size: 12px;
  }
  #er-roi-calculator table td {
    font-size: 10px;
  }
}
.er-roi-results {
  margin: 5px 0;
}
.er-roi-result {
  margin: 0;
  height: 0;
  overflow: hidden;
  border-radius: 3px 3px 0;
  opacity: 0;
  transition: opacity 0.25s ease-out;
}
.er-roi-result.active {
  margin: 0 0 15px 0;
  opacity: 100;
  height: auto;
}
.firstrun .er-roi-result-after.active {
  transition-delay: 2.1s;
}
.er-roi-result-bar {
  background: #555;
  height: 35px;
  width: 0%;
  transition: width 0.3s ease-out;
  border-radius: 3px 3px 3px 0;
  padding: 0 15px;
}
.firstrun .er-roi-result-bar {
  transition-duration: 1s;
}
.firstrun .er-roi-result-after .er-roi-result-bar {
  transition-delay: 2.1s;
}
.er-roi-result-label {
  border-left: 5px solid #555;
  padding: 5px 10px;
  color: #2a2a2a;
}
.er-roi-result-number {
  font-size: 18px;
  color: #fff;
  line-height: 35px;
}
.er-roi-result-desc {
  font-size: 13px;
  margin-top: -1px;
}
.er-roi-result-meta {
  color: #828282;
  font-size: 13px;
  margin-top: -7px;
}
.er-roi-result-desc,
.er-roi-result-meta {
  transition: opacity 0.3s ease-out;
  transition-delay: 1.2s;
}
.er-roi-result-after .er-roi-result-desc,
.er-roi-result-after .er-roi-result-meta {
  transition-delay: 3.4s;
}
.firstrun .er-roi-result-desc,
.firstrun .er-roi-result-meta {
  opacity: 0;
}
.firstrun .active .er-roi-result-desc,
.firstrun .active .er-roi-result-meta {
  opacity: 1;
}
.er-roi-increase .er-roi-result-bar {
  background: #209837;
}
.er-roi-increase .er-roi-result-label {
  color: #046d18;
  border-color: #209837;
}
.er-roi-decrease .er-roi-result-bar {
  background: #e33838;
}
.er-roi-decrease .er-roi-result-label {
  color: #721f1f;
  border-color: #e33838;
}
.er-roi-results-increase-range {
  height: 0;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  background: #f5fff3;
  border: 1px solid #8fc98c;
  border-radius: 3px;
  font-size: 16px;
  color: #018719;
  text-align: center;
  padding: 0;
  line-height: 1.3;
  margin-bottom: 0;
}
.firstrun .er-roi-results-increase-range {
  transition-delay: 4.6s;
}
.er-roi-results-increase-lifetime-value,
.er-roi-results-increase-monthly-value {
  font-size: 20px;
  font-weight: 700;
}
.er-roi-results-increase-range.active {
  opacity: 100;
  height: auto;
  margin-bottom: 15px;
  padding: 10px;
}
.er-roi-calculator-disclaimer {
  font-size: 12px;
  color: #666;
  list-style: none;
}
.er-roi-calculator-disclaimer .message {
  margin-top: 0.5rem;
}
.er-roi-details {
  height: 0;
  opacity: 0;
  transition: opacity 0.6s ease-out;
  transition-delay: 5.5s;
}
.er-roi-details.active {
  opacity: 100;
  height: auto;
}
.roi-change-increase {
  color: #046d18;
}
.roi-change-decrease {
  color: #721f1f;
}
.review-widget .hide {
  display: none;
}
.review-widget .message-entice-rate,
.review-widget .thank-you-text {
  text-align: center;
}
.review-widget .rating-stars {
  text-align: center;
}
.review-widget .rating-stars ul {
  list-style-type: none;
  padding: 0;
  -moz-user-select: none;
  -webkit-user-select: none;
  margin-top: 1rem;
}
.review-widget .rating-stars ul li.star {
  display: inline-block;
  cursor: pointer;
}
.review-widget .rating-stars ul li.star i.fa {
  font-size: 2.5em;
  color: #ccc;
}
.review-widget .rating-stars ul li.star.hover > i.fa {
  color: #ffcc36;
}
.review-widget .rating-stars ul li.star.selected > i.fa {
  color: #ff912c;
}
.review-widget .review-button {
  padding: 0.5em;
}
.review-widget .review-button i.fa {
  display: inline-block;
  padding: 0.4em 0.6em;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 0.5em;
  background-color: rgba(255, 255, 255, 0.15);
}
.review-widget .review-button.button-facebook {
  background: #3c599f;
}
.review-widget .review-button.button-facebook:active,
.review-widget .review-button.button-facebook:hover {
  background: #2e447a;
}
.review-widget .review-button.button-google {
  background: #cf3d2e;
}
.review-widget .review-button.button-google:active,
.review-widget .review-button.button-google:hover {
  background: #a53125;
}
.review-widget .review-button.button-twitter {
  background: #1b95e0;
}
.review-widget .review-button.button-twitter:active,
.review-widget .review-button.button-twitter:hover {
  background: #1677b2;
}
.review-widget .review-button.button-linkedin {
  background: #0085ae;
}
.review-widget .review-button.button-linkedin:active,
.review-widget .review-button.button-linkedin:hover {
  background: #005e7b;
}
.review-widget .review-button.button-pinterest {
  background: #bd081c;
}
.review-widget .review-button.button-pinterest:active,
.review-widget .review-button.button-pinterest:hover {
  background: #8c0615;
}
.review-widget .review-button.button-instagram {
  background-color: #a1755c;
}
.review-widget .review-button.button-instagram:active,
.review-widget .review-button.button-instagram:hover {
  background: #8c0615;
}
#pop-cta {
  display: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  position: fixed;
  bottom: 0;
  right: 40px;
  margin-bottom: 0;
  width: 380px;
  z-index: 1004;
  float: right;
  -webkit-border-radius: 5px 5px 0px 0px;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  background: #a928d1;
  color: #fff;
  font-weight: 600;
  box-shadow: -2px 6px 20px -2px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
#pop-cta h2 {
  font-size: 1rem;
  padding: 0;
  margin: 15px;
  color: #fff;
}
@media only screen and (max-width: 40em) {
  #pop-cta {
    width: 100%;
    right: 0;
  }
}
#pop-cta .chevron {
  position: absolute;
  right: 24px;
  bottom: 16px;
}
#pop-cta-wrapper {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
#pop-cta-window {
  position: fixed;
  bottom: 0;
  right: 40px;
  margin-bottom: 0;
  width: 380px;
  height: 500px;
  transform: translateY(100%);
  z-index: 1008;
  float: right;
  -webkit-border-radius: 5px 5px 0px 0px;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  border-top: 3px solid #a928d1;
  border-left: 3px solid #a928d1;
  border-right: 3px solid #a928d1;
  box-shadow: -2px 6px 20px -2px rgba(0, 0, 0, 0.4);
  background: #fff;
  font-weight: 600;
  padding: 1rem;
  overflow-y: scroll;
  visibility: hidden;
  transition: transform 0.3s ease-in, visibility 0.3s;
}
@media only screen and (max-width: 40em) {
  #pop-cta-window {
    width: 100%;
    right: 0;
  }
}
#pop-cta-window.show {
  visibility: visible;
  transform: translateY(0);
}
@media only screen and (max-width: 40em) {
  #pop-cta-window.show {
    height: 60%;
    height: 60vh;
  }
}
#pop-cta-window .close {
  color: #ccc;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
#pop-cta-window h3 {
  color: #a928d1;
  margin-bottom: 0.5rem;
}
#pop-cta-window p {
  font-size: 0.875rem;
}
.pop-form {
  background: #fff !important;
}
.pop-form .er-form-header {
  display: none;
}
.pop-form .er-form-content {
  padding: 0;
}
.form-placeholder {
  background: #e5e5e5;
  margin-right: -2rem;
}
.accessibility-shortcut {
  position: absolute;
  transform: translateX(-1000em);
}
body,
html {
  height: auto;
}
body {
  background-color: #f1f1f1;
}
.nowrap {
  white-space: nowrap;
}
.row {
  max-width: 100%;
}
.row.tighter {
  margin-left: -0.46875rem;
  margin-right: -0.46875rem;
}
.row.tighter .column,
.row.tighter .columns {
  padding-left: 0.46875rem;
  padding-right: 0.46875rem;
}
.form-wrap {
  margin: 0 auto;
  max-width: 40rem;
}
.remarketing-code {
  height: 0;
  overflow: hidden;
}
.cms-float-left {
  margin-right: 1rem;
}
.cms-float-right {
  margin-left: 1rem;
}
.wrapper {
  margin: 0 auto;
  max-width: 1200px;
}
.skip-to-content-link {
  position: absolute;
  padding: 0.5rem 1rem;
  color: #fff;
  background-color: #000;
  text-decoration: none;
  font-weight: 700;
  z-index: 10;
  transform: translate3d(0.125rem, -5rem, 0);
  transition: transform 0.3s ease-out;
  border-radius: 0 0 5px 5px;
  z-index: 9000;
}
.skip-to-content-link:active,
.skip-to-content-link:focus {
  color: #fff;
}
.skip-to-content-link:focus-within {
  transform: translate3d(0.125rem, 0.125rem, 0);
  outline: #fff solid 0.125rem;
}
@media print {
  .skip-to-content-link {
    display: none;
  }
}
#page {
  background-color: #fff;
  color: #333;
  padding: 1rem 4%;
}
@media only screen and (min-width: 40.063em) {
  #page {
    padding: 1rem 2rem;
  }
}
@media only screen and (min-width: 64.063em) {
  #main {
    padding-bottom: 4rem;
  }
}
@media only screen and (min-width: 40.063em) {
  #main {
    padding-top: 0.5rem;
  }
}
@media only screen and (min-width: 64.063em) {
  #main .inner-wrap {
    padding-right: 4%;
  }
}
.sidebar {
  background: #fff;
}
@media only screen and (min-width: 64.063em) {
  .l-right-column {
    display: table;
  }
  .l-right-column #main {
    display: table-cell;
    vertical-align: top;
    width: 100%;
  }
  .l-right-column .sidebar {
    width: 18rem;
    vertical-align: top;
  }
  .l-left-column {
    display: table;
  }
  .l-left-column #main {
    display: table-cell;
    vertical-align: top;
    width: 100%;
  }
  .l-left-column .sidebar {
    width: 18rem;
    display: table-cell;
    vertical-align: top;
  }
  .l-left-column .sidebar .sidebar-widget {
    margin-right: 0;
    margin-left: 1rem;
  }
}
.l-one-column #main {
  max-width: 60rem;
  margin: 0 auto;
}
.l-one-column-full {
  padding: 0 !important;
}
.l-one-column-full #main {
  margin: 0;
  padding: 0;
  max-width: none;
}
.l-one-column-full .home-columns-column {
  padding: 1.5rem;
}
.l-one-column-full .column-middle {
  background: #ececec;
}
.l-one-column-full .widget {
  margin: 0 0 1rem 0;
}
.l-one-column-full .widget:not(.widget_er_vaawidget) .title {
  border-left: 4px solid #9fc9ea;
  text-transform: uppercase;
  padding-left: 19px;
  font-weight: 600;
  font-size: 0.875rem;
  color: #555;
  margin: 0 0 0.75rem 0;
  margin-left: -1.5rem;
}
.l-one-column-full .widget_er_leadformwidget {
  margin-top: -1.5rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.l-one-column-full .widget_er_leadformwidget {
  display: none;
}
@media only screen and (min-width: 64.063em) {
  .l-one-column-full .widget_er_leadformwidget {
    display: block;
  }
}
.l-one-column-full .widget_er_leadformwidget #er-form .er-form-header {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.l-one-column-full .widget_er_leadformwidget #er-form .er-form-header h2 {
  color: inherit;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: 600;
}
@media only screen and (min-width: 64.063em) {
  .l-one-column-full .widget_er_leadformwidget #er-form .er-form-content {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.l-one-column-full .widget_er_leadformwidget #er-form input[type="date"],
.l-one-column-full .widget_er_leadformwidget #er-form input[type="email"],
.l-one-column-full .widget_er_leadformwidget #er-form input[type="text"],
.l-one-column-full .widget_er_leadformwidget #er-form select {
  border: 1px solid #ccc;
}
.l-one-column-full .widget_er_leadformwidget #er-form .opt-in {
  background: 0 0;
  padding: 0;
}
.l-one-column-full .widget_er_leadformwidget #er-form .submit {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: 600;
}
.row-gutterless {
  margin: 0 !important;
}
#header.wrapper-full-width {
  background: #fff;
}
#header .wrapper {
  background: #fff;
  padding: 1rem 0;
}
#header .wrapper .row {
  padding: 0 1.5rem;
}
@media only screen and (min-width: 40.063em) {
  #header .row {
    display: table;
  }
  #header .row .column {
    display: table-cell !important;
    float: none;
    vertical-align: middle;
  }
}
#header-logo {
  max-height: 5em;
}
#footer {
  background: #333;
  color: #fff;
  text-align: center;
}
#footer,
#footer ol,
#footer ul {
  font-size: 0.875rem;
}
@media only screen and (min-width: 40.063em) {
  #footer {
    text-align: left;
  }
}
#footer .wrapper {
  padding: 2rem 2rem 1rem;
}
#footer .tagline {
  background: purple;
  text-align: center;
}
#footer .tagline .wrapper {
  padding: 1rem 4%;
}
#footer .tagline .wrapper h3 {
  margin: 0;
  font-weight: 400;
}
#footer .tagline * {
  color: #fff;
}
#footer .tagline .no-orphans .phone {
  font-weight: 700;
  color: #009fad;
}
#footer .footer-menu {
  margin: 0 0 2rem 0;
  padding: 0;
  text-align: center;
}
#footer .footer-menu li {
  display: block;
  padding: 0.5rem;
}
#footer .footer-menu a {
  color: #dfdfdf;
}
#footer .footer-menu a:hover {
  text-decoration: underline;
}
#footer .footer-menu .button,
#footer .footer-menu button {
  backgroun-color: #dfdfdf;
}
#footer .footer-menu .button:hover,
#footer .footer-menu button:hover {
  background-color: #f9f8f8;
}
@media only screen and (min-width: 40.063em) {
  #footer .footer-menu li {
    display: inline-block;
    width: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
#footer .widget-title {
  font-weight: 600;
  font-size: 1rem;
}
#footer .menu {
  list-style: none;
  margin: 0 0 2rem 0;
}
#footer .menu .sub-menu {
  display: none;
}
#footer .menu li {
  padding: 0.5rem;
}
#footer .menu li a {
  color: #dfdfdf;
}
#footer .menu li a:hover {
  color: #f9f8f8;
}
#footer .menu li .button,
#footer .menu li button {
  background-color: #dfdfdf;
}
#footer .menu li .button:hover,
#footer .menu li button:hover {
  background-color: #f9f8f8;
}
#footer .menu ul {
  margin-left: 1rem;
  list-style: none;
  font-size: 0.875rem;
}
@media only screen and (min-width: 40.063em) {
  #footer .menu {
    text-align: left;
    font-size: 0.875rem;
  }
  #footer .menu .sub-menu {
    display: block;
  }
  #footer .menu li {
    padding: 0;
  }
  #footer .menu li a {
    display: inline-block;
    margin: 0.2rem 0;
  }
  #footer .menu ul {
    display: none;
  }
}
#footer .copyright {
  font-size: 60%;
  color: #ddd;
  text-align: center;
  margin: 1rem 0 0 0;
}
#footer .copyright a {
  color: #ddd;
}
@media only screen {
  .small-2-columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-width: 50%;
    -moz-column-width: 50%;
    column-width: 50%;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    -webkit-column-rule: 1px solid #c9c9c9;
    -moz-column-rule: 1px solid #c9c9c9;
    column-rule: 1px solid #c9c9c9;
  }
  .small-3-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-width: 33.3333333333%;
    -moz-column-width: 33.3333333333%;
    column-width: 33.3333333333%;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    -webkit-column-rule: 1px solid #c9c9c9;
    -moz-column-rule: 1px solid #c9c9c9;
    column-rule: 1px solid #c9c9c9;
  }
  .small-4-columns {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-width: 25%;
    -moz-column-width: 25%;
    column-width: 25%;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    -webkit-column-rule: 1px solid #c9c9c9;
    -moz-column-rule: 1px solid #c9c9c9;
    column-rule: 1px solid #c9c9c9;
  }
  .small-5-columns {
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
    -webkit-column-width: 20%;
    -moz-column-width: 20%;
    column-width: 20%;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    -webkit-column-rule: 1px solid #c9c9c9;
    -moz-column-rule: 1px solid #c9c9c9;
    column-rule: 1px solid #c9c9c9;
  }
  .small-6-columns {
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
    -webkit-column-width: 16.6666666667%;
    -moz-column-width: 16.6666666667%;
    column-width: 16.6666666667%;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    -webkit-column-rule: 1px solid #c9c9c9;
    -moz-column-rule: 1px solid #c9c9c9;
    column-rule: 1px solid #c9c9c9;
  }
  .small-7-columns {
    -webkit-column-count: 7;
    -moz-column-count: 7;
    column-count: 7;
    -webkit-column-width: 14.2857142857%;
    -moz-column-width: 14.2857142857%;
    column-width: 14.2857142857%;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    -webkit-column-rule: 1px solid #c9c9c9;
    -moz-column-rule: 1px solid #c9c9c9;
    column-rule: 1px solid #c9c9c9;
  }
  .small-8-columns {
    -webkit-column-count: 8;
    -moz-column-count: 8;
    column-count: 8;
    -webkit-column-width: 12.5%;
    -moz-column-width: 12.5%;
    column-width: 12.5%;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    -webkit-column-rule: 1px solid #c9c9c9;
    -moz-column-rule: 1px solid #c9c9c9;
    column-rule: 1px solid #c9c9c9;
  }
}
@media only screen and (min-width: 40.063em) {
  .medium-2-columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-width: 50%;
    -moz-column-width: 50%;
    column-width: 50%;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    -webkit-column-rule: 1px solid #c9c9c9;
    -moz-column-rule: 1px solid #c9c9c9;
    column-rule: 1px solid #c9c9c9;
  }
  .medium-3-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-width: 33.3333333333%;
    -moz-column-width: 33.3333333333%;
    column-width: 33.3333333333%;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    -webkit-column-rule: 1px solid #c9c9c9;
    -moz-column-rule: 1px solid #c9c9c9;
    column-rule: 1px solid #c9c9c9;
  }
  .medium-4-columns {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-width: 25%;
    -moz-column-width: 25%;
    column-width: 25%;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    -webkit-column-rule: 1px solid #c9c9c9;
    -moz-column-rule: 1px solid #c9c9c9;
    column-rule: 1px solid #c9c9c9;
  }
  .medium-5-columns {
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
    -webkit-column-width: 20%;
    -moz-column-width: 20%;
    column-width: 20%;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    -webkit-column-rule: 1px solid #c9c9c9;
    -moz-column-rule: 1px solid #c9c9c9;
    column-rule: 1px solid #c9c9c9;
  }
  .medium-6-columns {
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
    -webkit-column-width: 16.6666666667%;
    -moz-column-width: 16.6666666667%;
    column-width: 16.6666666667%;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    -webkit-column-rule: 1px solid #c9c9c9;
    -moz-column-rule: 1px solid #c9c9c9;
    column-rule: 1px solid #c9c9c9;
  }
  .medium-7-columns {
    -webkit-column-count: 7;
    -moz-column-count: 7;
    column-count: 7;
    -webkit-column-width: 14.2857142857%;
    -moz-column-width: 14.2857142857%;
    column-width: 14.2857142857%;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    -webkit-column-rule: 1px solid #c9c9c9;
    -moz-column-rule: 1px solid #c9c9c9;
    column-rule: 1px solid #c9c9c9;
  }
  .medium-8-columns {
    -webkit-column-count: 8;
    -moz-column-count: 8;
    column-count: 8;
    -webkit-column-width: 12.5%;
    -moz-column-width: 12.5%;
    column-width: 12.5%;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    -webkit-column-rule: 1px solid #c9c9c9;
    -moz-column-rule: 1px solid #c9c9c9;
    column-rule: 1px solid #c9c9c9;
  }
}
@media only screen and (min-width: 64.063em) {
  .large-2-columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-width: 50%;
    -moz-column-width: 50%;
    column-width: 50%;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    -webkit-column-rule: 1px solid #c9c9c9;
    -moz-column-rule: 1px solid #c9c9c9;
    column-rule: 1px solid #c9c9c9;
  }
  .large-3-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-width: 33.3333333333%;
    -moz-column-width: 33.3333333333%;
    column-width: 33.3333333333%;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    -webkit-column-rule: 1px solid #c9c9c9;
    -moz-column-rule: 1px solid #c9c9c9;
    column-rule: 1px solid #c9c9c9;
  }
  .large-4-columns {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-width: 25%;
    -moz-column-width: 25%;
    column-width: 25%;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    -webkit-column-rule: 1px solid #c9c9c9;
    -moz-column-rule: 1px solid #c9c9c9;
    column-rule: 1px solid #c9c9c9;
  }
  .large-5-columns {
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
    -webkit-column-width: 20%;
    -moz-column-width: 20%;
    column-width: 20%;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    -webkit-column-rule: 1px solid #c9c9c9;
    -moz-column-rule: 1px solid #c9c9c9;
    column-rule: 1px solid #c9c9c9;
  }
  .large-6-columns {
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
    -webkit-column-width: 16.6666666667%;
    -moz-column-width: 16.6666666667%;
    column-width: 16.6666666667%;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    -webkit-column-rule: 1px solid #c9c9c9;
    -moz-column-rule: 1px solid #c9c9c9;
    column-rule: 1px solid #c9c9c9;
  }
  .large-7-columns {
    -webkit-column-count: 7;
    -moz-column-count: 7;
    column-count: 7;
    -webkit-column-width: 14.2857142857%;
    -moz-column-width: 14.2857142857%;
    column-width: 14.2857142857%;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    -webkit-column-rule: 1px solid #c9c9c9;
    -moz-column-rule: 1px solid #c9c9c9;
    column-rule: 1px solid #c9c9c9;
  }
  .large-8-columns {
    -webkit-column-count: 8;
    -moz-column-count: 8;
    column-count: 8;
    -webkit-column-width: 12.5%;
    -moz-column-width: 12.5%;
    column-width: 12.5%;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    -webkit-column-rule: 1px solid #c9c9c9;
    -moz-column-rule: 1px solid #c9c9c9;
    column-rule: 1px solid #c9c9c9;
  }
}
@media medium-up {
  .extra-padding-bottom-1 {
    padding-bottom: 1em;
  }
  .extra-padding-top-1 {
    padding-top: 1em;
  }
  .extra-padding-right-1 {
    padding-right: 1em;
  }
  .extra-padding-left-1 {
    padding-left: 1em;
  }
  .extra-padding-1 {
    padding: 1em;
  }
  .extra-margin-bottom-1 {
    margin-bottom: 1em;
  }
  .extra-margin-top-1 {
    margin-top: 1em;
  }
  .extra-margin-right-1 {
    margin-right: 1em;
  }
  .extra-margin-left-1 {
    margin-left: 1em;
  }
  .extra-margin-1 {
    margin: 1em;
  }
  .extra-padding-bottom-2 {
    padding-bottom: 2em;
  }
  .extra-padding-top-2 {
    padding-top: 2em;
  }
  .extra-padding-right-2 {
    padding-right: 2em;
  }
  .extra-padding-left-2 {
    padding-left: 2em;
  }
  .extra-padding-2 {
    padding: 2em;
  }
  .extra-margin-bottom-2 {
    margin-bottom: 2em;
  }
  .extra-margin-top-2 {
    margin-top: 2em;
  }
  .extra-margin-right-2 {
    margin-right: 2em;
  }
  .extra-margin-left-2 {
    margin-left: 2em;
  }
  .extra-margin-2 {
    margin: 2em;
  }
  .extra-padding-bottom-3 {
    padding-bottom: 3em;
  }
  .extra-padding-top-3 {
    padding-top: 3em;
  }
  .extra-padding-right-3 {
    padding-right: 3em;
  }
  .extra-padding-left-3 {
    padding-left: 3em;
  }
  .extra-padding-3 {
    padding: 3em;
  }
  .extra-margin-bottom-3 {
    margin-bottom: 3em;
  }
  .extra-margin-top-3 {
    margin-top: 3em;
  }
  .extra-margin-right-3 {
    margin-right: 3em;
  }
  .extra-margin-left-3 {
    margin-left: 3em;
  }
  .extra-margin-3 {
    margin: 3em;
  }
  .extra-padding-bottom-4 {
    padding-bottom: 4em;
  }
  .extra-padding-top-4 {
    padding-top: 4em;
  }
  .extra-padding-right-4 {
    padding-right: 4em;
  }
  .extra-padding-left-4 {
    padding-left: 4em;
  }
  .extra-padding-4 {
    padding: 4em;
  }
  .extra-margin-bottom-4 {
    margin-bottom: 4em;
  }
  .extra-margin-top-4 {
    margin-top: 4em;
  }
  .extra-margin-right-4 {
    margin-right: 4em;
  }
  .extra-margin-left-4 {
    margin-left: 4em;
  }
  .extra-margin-4 {
    margin: 4em;
  }
  .extra-padding-bottom-5 {
    padding-bottom: 5em;
  }
  .extra-padding-top-5 {
    padding-top: 5em;
  }
  .extra-padding-right-5 {
    padding-right: 5em;
  }
  .extra-padding-left-5 {
    padding-left: 5em;
  }
  .extra-padding-5 {
    padding: 5em;
  }
  .extra-margin-bottom-5 {
    margin-bottom: 5em;
  }
  .extra-margin-top-5 {
    margin-top: 5em;
  }
  .extra-margin-right-5 {
    margin-right: 5em;
  }
  .extra-margin-left-5 {
    margin-left: 5em;
  }
  .extra-margin-5 {
    margin: 5em;
  }
}
.wave-bottom-right-white > div.upb_row_bg:before {
  content: "";
  position: absolute;
  left: -35%;
  right: -105%;
  bottom: 30px;
  height: 180px;
  background: radial-gradient(closest-side, #fff, #fff 50%, transparent 50%);
  background-size: 50% 180px;
  background-position: 0 115px;
  background-repeat: repeat-x;
  overflow: hidden;
  z-index: 1;
}
.wave-bottom-right-white > div.upb_row_bg:after {
  content: "";
  position: absolute;
  left: -105%;
  right: -35%;
  bottom: -150px;
  height: 180px;
  background: radial-gradient(
    closest-side,
    transparent,
    transparent 50%,
    #fff 50%
  );
  background-size: 50% 180px;
  background-position: 0 -115px;
  background-repeat: repeat-x;
  overflow: hidden;
  z-index: 1;
}
.wave-bottom-left-white > div.upb_row_bg:before {
  content: "";
  position: absolute;
  right: -35%;
  left: -105%;
  bottom: 30px;
  height: 180px;
  background: radial-gradient(closest-side, #fff, #fff 50%, transparent 50%);
  background-size: 50% 180px;
  background-position: 0 115px;
  background-repeat: repeat-x;
  overflow: hidden;
  z-index: 1;
}
.wave-bottom-left-white > div.upb_row_bg:after {
  content: "";
  position: absolute;
  right: -105%;
  left: -35%;
  bottom: -150px;
  height: 180px;
  background: radial-gradient(
    closest-side,
    transparent,
    transparent 50%,
    #fff 50%
  );
  background-size: 50% 180px;
  background-position: 0 -115px;
  background-repeat: repeat-x;
  overflow: hidden;
  z-index: 1;
}
.wave-top-right-white > div.upb_row_bg:before {
  content: "";
  position: absolute;
  left: -35%;
  right: -105%;
  top: 30px;
  height: 180px;
  background: radial-gradient(closest-side, #fff, #fff 50%, transparent 50%);
  background-size: 50% 180px;
  background-position: 0 -115px;
  background-repeat: repeat-x;
  overflow: hidden;
  z-index: 1;
}
.wave-top-right-white > div.upb_row_bg:after {
  content: "";
  position: absolute;
  left: -105%;
  right: -35%;
  top: -150px;
  height: 180px;
  background: radial-gradient(
    closest-side,
    transparent,
    transparent 50%,
    #fff 50%
  );
  background-size: 50% 180px;
  background-position: 0 115px;
  background-repeat: repeat-x;
  overflow: hidden;
  z-index: 1;
}
.wave-top-left-white > div.upb_row_bg:before {
  content: "";
  position: absolute;
  right: -35%;
  left: -105%;
  top: 30px;
  height: 180px;
  background: radial-gradient(closest-side, #fff, #fff 50%, transparent 50%);
  background-size: 50% 180px;
  background-position: 0 -115px;
  background-repeat: repeat-x;
  overflow: hidden;
  z-index: 1;
}
.wave-top-left-white > div.upb_row_bg:after {
  content: "";
  position: absolute;
  right: -105%;
  left: -35%;
  top: -150px;
  height: 180px;
  background: radial-gradient(
    closest-side,
    transparent,
    transparent 50%,
    #fff 50%
  );
  background-size: 50% 180px;
  background-position: 0 115px;
  background-repeat: repeat-x;
  overflow: hidden;
  z-index: 1;
}
.wave-bottom-right-black > div.upb_row_bg:before {
  content: "";
  position: absolute;
  left: -35%;
  right: -105%;
  bottom: 30px;
  height: 180px;
  background: radial-gradient(closest-side, #000, #000 50%, transparent 50%);
  background-size: 50% 180px;
  background-position: 0 115px;
  background-repeat: repeat-x;
  overflow: hidden;
  z-index: 1;
}
.wave-bottom-right-black > div.upb_row_bg:after {
  content: "";
  position: absolute;
  left: -105%;
  right: -35%;
  bottom: -150px;
  height: 180px;
  background: radial-gradient(
    closest-side,
    transparent,
    transparent 50%,
    #000 50%
  );
  background-size: 50% 180px;
  background-position: 0 -115px;
  background-repeat: repeat-x;
  overflow: hidden;
  z-index: 1;
}
.wave-bottom-left-black > div.upb_row_bg:before {
  content: "";
  position: absolute;
  right: -35%;
  left: -105%;
  bottom: 30px;
  height: 180px;
  background: radial-gradient(closest-side, #000, #000 50%, transparent 50%);
  background-size: 50% 180px;
  background-position: 0 115px;
  background-repeat: repeat-x;
  overflow: hidden;
  z-index: 1;
}
.wave-bottom-left-black > div.upb_row_bg:after {
  content: "";
  position: absolute;
  right: -105%;
  left: -35%;
  bottom: -150px;
  height: 180px;
  background: radial-gradient(
    closest-side,
    transparent,
    transparent 50%,
    #000 50%
  );
  background-size: 50% 180px;
  background-position: 0 -115px;
  background-repeat: repeat-x;
  overflow: hidden;
  z-index: 1;
}
.wave-top-right-black > div.upb_row_bg:before {
  content: "";
  position: absolute;
  left: -35%;
  right: -105%;
  top: 30px;
  height: 180px;
  background: radial-gradient(closest-side, #000, #000 50%, transparent 50%);
  background-size: 50% 180px;
  background-position: 0 -115px;
  background-repeat: repeat-x;
  overflow: hidden;
  z-index: 1;
}
.wave-top-right-black > div.upb_row_bg:after {
  content: "";
  position: absolute;
  left: -105%;
  right: -35%;
  top: -150px;
  height: 180px;
  background: radial-gradient(
    closest-side,
    transparent,
    transparent 50%,
    #000 50%
  );
  background-size: 50% 180px;
  background-position: 0 115px;
  background-repeat: repeat-x;
  overflow: hidden;
  z-index: 1;
}
.wave-top-left-black > div.upb_row_bg:before {
  content: "";
  position: absolute;
  right: -35%;
  left: -105%;
  top: 30px;
  height: 180px;
  background: radial-gradient(closest-side, #000, #000 50%, transparent 50%);
  background-size: 50% 180px;
  background-position: 0 -115px;
  background-repeat: repeat-x;
  overflow: hidden;
  z-index: 1;
}
.wave-top-left-black > div.upb_row_bg:after {
  content: "";
  position: absolute;
  right: -105%;
  left: -35%;
  top: -150px;
  height: 180px;
  background: radial-gradient(
    closest-side,
    transparent,
    transparent 50%,
    #000 50%
  );
  background-size: 50% 180px;
  background-position: 0 115px;
  background-repeat: repeat-x;
  overflow: hidden;
  z-index: 1;
}
.row-skew-left-up-3deg {
  transform-origin: center center;
  transform: skewY(3deg);
}
.row-skew-left-up-3deg > div {
  transform-origin: center center;
  transform: skewY(-3deg);
}
.row-skew-right-up-3deg {
  transform-origin: center center;
  transform: skewY(-3deg);
}
.row-skew-right-up-3deg > div {
  transform-origin: center center;
  transform: skewY(3deg);
}
.row-skew-left-up-6deg {
  transform-origin: center center;
  transform: skewY(6deg);
}
.row-skew-left-up-6deg > div {
  transform-origin: center center;
  transform: skewY(-6deg);
}
.row-skew-right-up-6deg {
  transform-origin: center center;
  transform: skewY(-6deg);
}
.row-skew-right-up-6deg > div {
  transform-origin: center center;
  transform: skewY(6deg);
}
.row-skew-left-up-9deg {
  transform-origin: center center;
  transform: skewY(9deg);
}
.row-skew-left-up-9deg > div {
  transform-origin: center center;
  transform: skewY(-9deg);
}
.row-skew-right-up-9deg {
  transform-origin: center center;
  transform: skewY(-9deg);
}
.row-skew-right-up-9deg > div {
  transform-origin: center center;
  transform: skewY(9deg);
}
.row-skew-left-up-12deg {
  transform-origin: center center;
  transform: skewY(12deg);
}
.row-skew-left-up-12deg > div {
  transform-origin: center center;
  transform: skewY(-12deg);
}
.row-skew-right-up-12deg {
  transform-origin: center center;
  transform: skewY(-12deg);
}
.row-skew-right-up-12deg > div {
  transform-origin: center center;
  transform: skewY(12deg);
}
.row-skew-left-up-15deg {
  transform-origin: center center;
  transform: skewY(15deg);
}
.row-skew-left-up-15deg > div {
  transform-origin: center center;
  transform: skewY(-15deg);
}
.row-skew-right-up-15deg {
  transform-origin: center center;
  transform: skewY(-15deg);
}
.row-skew-right-up-15deg > div {
  transform-origin: center center;
  transform: skewY(15deg);
}
.col-round-top-left-100 > div,
.row-round-top-left-100 {
  border-top-left-radius: 100px;
}
.col-round-top-right-100 > div,
.row-round-top-right-100 {
  border-top-right-radius: 100px;
}
.col-round-bottom-left-100 > div,
.row-round-bottom-left-100 {
  border-bottom-left-radius: 100px;
}
.col-round-bottom-right-100 > div,
.row-round-bottom-right-100 {
  border-bottom-right-radius: 100px;
}
.col-round-full-100 > div,
.row-round-full-100 {
  border-radius: 100px;
}
.col-round-top-100 > div,
.row-round-top-100 {
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
}
.col-round-bottom-100 > div,
.row-round-bottom-100 {
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}
.col-round-left-100 > div,
.row-round-left-100 {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.col-round-right-100 > div,
.row-round-right-100 {
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}
@media only screen and (max-width: 768px) {
  .col-round-bottom-100 > div,
  .col-round-bottom-left-100 > div,
  .col-round-bottom-right-100 > div,
  .col-round-full-100 > div,
  .col-round-left-100 > div,
  .col-round-right-100 > div,
  .col-round-top-100 > div,
  .col-round-top-left-100 > div,
  .col-round-top-right-100 > div {
    min-height: 300px;
  }
}
.col-round-top-left-1000 > div,
.row-round-top-left-1000 {
  border-top-left-radius: 1000px;
}
.col-round-top-right-1000 > div,
.row-round-top-right-1000 {
  border-top-right-radius: 1000px;
}
.col-round-bottom-left-1000 > div,
.row-round-bottom-left-1000 {
  border-bottom-left-radius: 1000px;
}
.col-round-bottom-right-1000 > div,
.row-round-bottom-right-1000 {
  border-bottom-right-radius: 1000px;
}
.col-round-full-1000 > div,
.row-round-full-1000 {
  border-radius: 1000px;
}
.col-round-top-1000 > div,
.row-round-top-1000 {
  border-top-left-radius: 1000px;
  border-top-right-radius: 1000px;
}
.col-round-bottom-1000 > div,
.row-round-bottom-1000 {
  border-bottom-left-radius: 1000px;
  border-bottom-right-radius: 1000px;
}
.col-round-left-1000 > div,
.row-round-left-1000 {
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
}
.col-round-right-1000 > div,
.row-round-right-1000 {
  border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
}
@media only screen and (max-width: 768px) {
  .col-round-bottom-1000 > div,
  .col-round-bottom-left-1000 > div,
  .col-round-bottom-right-1000 > div,
  .col-round-full-1000 > div,
  .col-round-left-1000 > div,
  .col-round-right-1000 > div,
  .col-round-top-1000 > div,
  .col-round-top-left-1000 > div,
  .col-round-top-right-1000 > div {
    min-height: 300px;
  }
}
.col-round-top-left-10000 > div,
.row-round-top-left-10000 {
  border-top-left-radius: 10000px;
}
.col-round-top-right-10000 > div,
.row-round-top-right-10000 {
  border-top-right-radius: 10000px;
}
.col-round-bottom-left-10000 > div,
.row-round-bottom-left-10000 {
  border-bottom-left-radius: 10000px;
}
.col-round-bottom-right-10000 > div,
.row-round-bottom-right-10000 {
  border-bottom-right-radius: 10000px;
}
.col-round-full-10000 > div,
.row-round-full-10000 {
  border-radius: 10000px;
}
.col-round-top-10000 > div,
.row-round-top-10000 {
  border-top-left-radius: 10000px;
  border-top-right-radius: 10000px;
}
.col-round-bottom-10000 > div,
.row-round-bottom-10000 {
  border-bottom-left-radius: 10000px;
  border-bottom-right-radius: 10000px;
}
.col-round-left-10000 > div,
.row-round-left-10000 {
  border-top-left-radius: 10000px;
  border-bottom-left-radius: 10000px;
}
.col-round-right-10000 > div,
.row-round-right-10000 {
  border-top-right-radius: 10000px;
  border-bottom-right-radius: 10000px;
}
@media only screen and (max-width: 768px) {
  .col-round-bottom-10000 > div,
  .col-round-bottom-left-10000 > div,
  .col-round-bottom-right-10000 > div,
  .col-round-full-10000 > div,
  .col-round-left-10000 > div,
  .col-round-right-10000 > div,
  .col-round-top-10000 > div,
  .col-round-top-left-10000 > div,
  .col-round-top-right-10000 > div {
    min-height: 300px;
  }
}
.col-curve-top-left-25 > div,
.row-curve-top-left-25 {
  border-top-left-radius: 25%;
}
.col-curve-top-right-25 > div,
.row-curve-top-right-25 {
  border-top-right-radius: 25%;
}
.col-curve-bottom-left-25 > div,
.row-curve-bottom-left-25 {
  border-bottom-left-radius: 25%;
}
.col-curve-bottom-right-25 > div,
.row-curve-bottom-right-25 {
  border-bottom-right-radius: 25%;
}
.col-curve-full-25 > div,
.row-curve-full-25 {
  border-radius: 25%;
}
.col-curve-top-25 > div,
.row-curve-top-25 {
  border-top-left-radius: 25%;
  border-top-right-radius: 25%;
}
.col-curve-bottom-25 > div,
.row-curve-bottom-25 {
  border-bottom-left-radius: 25%;
  border-bottom-right-radius: 25%;
}
.col-curve-left-25 > div,
.row-curve-left-25 {
  border-top-left-radius: 25%;
  border-bottom-left-radius: 25%;
}
.col-curve-right-25 > div,
.row-curve-right-25 {
  border-top-right-radius: 25%;
  border-bottom-right-radius: 25%;
}
@media only screen and (max-width: 768px) {
  .col-curve-bottom-25 > div,
  .col-curve-bottom-left-25 > div,
  .col-curve-bottom-right-25 > div,
  .col-curve-full-25 > div,
  .col-curve-left-25 > div,
  .col-curve-right-25 > div,
  .col-curve-top-25 > div,
  .col-curve-top-left-25 > div,
  .col-curve-top-right-25 > div {
    min-height: 300px;
  }
}
.col-curve-top-left-50 > div,
.row-curve-top-left-50 {
  border-top-left-radius: 50%;
}
.col-curve-top-right-50 > div,
.row-curve-top-right-50 {
  border-top-right-radius: 50%;
}
.col-curve-bottom-left-50 > div,
.row-curve-bottom-left-50 {
  border-bottom-left-radius: 50%;
}
.col-curve-bottom-right-50 > div,
.row-curve-bottom-right-50 {
  border-bottom-right-radius: 50%;
}
.col-curve-full-50 > div,
.row-curve-full-50 {
  border-radius: 50%;
}
.col-curve-top-50 > div,
.row-curve-top-50 {
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}
.col-curve-bottom-50 > div,
.row-curve-bottom-50 {
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
}
.col-curve-left-50 > div,
.row-curve-left-50 {
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}
.col-curve-right-50 > div,
.row-curve-right-50 {
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .col-curve-bottom-50 > div,
  .col-curve-bottom-left-50 > div,
  .col-curve-bottom-right-50 > div,
  .col-curve-full-50 > div,
  .col-curve-left-50 > div,
  .col-curve-right-50 > div,
  .col-curve-top-50 > div,
  .col-curve-top-left-50 > div,
  .col-curve-top-right-50 > div {
    min-height: 300px;
  }
}
.col-curve-top-left-75 > div,
.row-curve-top-left-75 {
  border-top-left-radius: 75%;
}
.col-curve-top-right-75 > div,
.row-curve-top-right-75 {
  border-top-right-radius: 75%;
}
.col-curve-bottom-left-75 > div,
.row-curve-bottom-left-75 {
  border-bottom-left-radius: 75%;
}
.col-curve-bottom-right-75 > div,
.row-curve-bottom-right-75 {
  border-bottom-right-radius: 75%;
}
.col-curve-full-75 > div,
.row-curve-full-75 {
  border-radius: 75%;
}
.col-curve-top-75 > div,
.row-curve-top-75 {
  border-top-left-radius: 75%;
  border-top-right-radius: 75%;
}
.col-curve-bottom-75 > div,
.row-curve-bottom-75 {
  border-bottom-left-radius: 75%;
  border-bottom-right-radius: 75%;
}
.col-curve-left-75 > div,
.row-curve-left-75 {
  border-top-left-radius: 75%;
  border-bottom-left-radius: 75%;
}
.col-curve-right-75 > div,
.row-curve-right-75 {
  border-top-right-radius: 75%;
  border-bottom-right-radius: 75%;
}
@media only screen and (max-width: 768px) {
  .col-curve-bottom-75 > div,
  .col-curve-bottom-left-75 > div,
  .col-curve-bottom-right-75 > div,
  .col-curve-full-75 > div,
  .col-curve-left-75 > div,
  .col-curve-right-75 > div,
  .col-curve-top-75 > div,
  .col-curve-top-left-75 > div,
  .col-curve-top-right-75 > div {
    min-height: 300px;
  }
}
.col-curve-top-left-100 > div,
.row-curve-top-left-100 {
  border-top-left-radius: 100%;
}
.col-curve-top-right-100 > div,
.row-curve-top-right-100 {
  border-top-right-radius: 100%;
}
.col-curve-bottom-left-100 > div,
.row-curve-bottom-left-100 {
  border-bottom-left-radius: 100%;
}
.col-curve-bottom-right-100 > div,
.row-curve-bottom-right-100 {
  border-bottom-right-radius: 100%;
}
.col-curve-full-100 > div,
.row-curve-full-100 {
  border-radius: 100%;
}
.col-curve-top-100 > div,
.row-curve-top-100 {
  border-top-left-radius: 100%;
  border-top-right-radius: 100%;
}
.col-curve-bottom-100 > div,
.row-curve-bottom-100 {
  border-bottom-left-radius: 100%;
  border-bottom-right-radius: 100%;
}
.col-curve-left-100 > div,
.row-curve-left-100 {
  border-top-left-radius: 100%;
  border-bottom-left-radius: 100%;
}
.col-curve-right-100 > div,
.row-curve-right-100 {
  border-top-right-radius: 100%;
  border-bottom-right-radius: 100%;
}
@media only screen and (max-width: 768px) {
  .col-curve-bottom-100 > div,
  .col-curve-bottom-left-100 > div,
  .col-curve-bottom-right-100 > div,
  .col-curve-full-100 > div,
  .col-curve-left-100 > div,
  .col-curve-right-100 > div,
  .col-curve-top-100 > div,
  .col-curve-top-left-100 > div,
  .col-curve-top-right-100 > div {
    min-height: 300px;
  }
}
@media only screen and (min-width: 40.063em) {
  .col-left-skew-left-15deg {
    transform-origin: bottom right;
    transform: skewX(15deg);
    overflow: hidden;
  }
  .col-left-skew-left-15deg > div {
    transform-origin: bottom right;
    transform: skewX(-15deg);
  }
  .col-left-skew-right-15deg {
    transform-origin: top left;
    transform: skewX(-15deg);
    overflow: hidden;
  }
  .col-left-skew-right-15deg > div {
    transform-origin: top left;
    transform: skewX(15deg);
  }
  .col-center-skew-left-15deg {
    transform-origin: center center;
    transform: scale(1.2) skewX(15deg);
    overflow: hidden;
  }
  .col-center-skew-left-15deg > div {
    transform-origin: center center;
    transform: scale(1.25) skewX(-15deg);
  }
  .col-center-skew-right-15deg {
    transform-origin: center center;
    transform: scale(1.2) skewX(-15deg);
    overflow: hidden;
  }
  .col-center-skew-right-15deg > div {
    transform-origin: center center;
    transform: scale(1.25) skewX(15deg);
  }
  .col-right-skew-left-15deg {
    transform-origin: top right;
    transform: skewX(15deg);
    overflow: hidden;
  }
  .col-right-skew-left-15deg > div {
    transform-origin: top right;
    transform: skewX(-15deg);
  }
  .col-right-skew-right-15deg {
    transform-origin: bottom left;
    transform: skewX(-15deg);
    overflow: hidden;
  }
  .col-right-skew-right-15deg > div {
    transform-origin: bottom left;
    transform: skewX(15deg);
  }
  .col-left-skew-left-25deg {
    transform-origin: bottom right;
    transform: skewX(25deg);
    overflow: hidden;
  }
  .col-left-skew-left-25deg > div {
    transform-origin: bottom right;
    transform: skewX(-25deg);
  }
  .col-left-skew-right-25deg {
    transform-origin: top left;
    transform: skewX(-25deg);
    overflow: hidden;
  }
  .col-left-skew-right-25deg > div {
    transform-origin: top left;
    transform: skewX(25deg);
  }
  .col-center-skew-left-25deg {
    transform-origin: center center;
    transform: scale(1.2) skewX(25deg);
    overflow: hidden;
  }
  .col-center-skew-left-25deg > div {
    transform-origin: center center;
    transform: scale(1.25) skewX(-25deg);
  }
  .col-center-skew-right-25deg {
    transform-origin: center center;
    transform: scale(1.2) skewX(-25deg);
    overflow: hidden;
  }
  .col-center-skew-right-25deg > div {
    transform-origin: center center;
    transform: scale(1.25) skewX(25deg);
  }
  .col-right-skew-left-25deg {
    transform-origin: top right;
    transform: skewX(25deg);
    overflow: hidden;
  }
  .col-right-skew-left-25deg > div {
    transform-origin: top right;
    transform: skewX(-25deg);
  }
  .col-right-skew-right-25deg {
    transform-origin: bottom left;
    transform: skewX(-25deg);
    overflow: hidden;
  }
  .col-right-skew-right-25deg > div {
    transform-origin: bottom left;
    transform: skewX(25deg);
  }
  .col-left-skew-left-35deg {
    transform-origin: bottom right;
    transform: skewX(35deg);
    overflow: hidden;
  }
  .col-left-skew-left-35deg > div {
    transform-origin: bottom right;
    transform: skewX(-35deg);
  }
  .col-left-skew-right-35deg {
    transform-origin: top left;
    transform: skewX(-35deg);
    overflow: hidden;
  }
  .col-left-skew-right-35deg > div {
    transform-origin: top left;
    transform: skewX(35deg);
  }
  .col-center-skew-left-35deg {
    transform-origin: center center;
    transform: scale(1.2) skewX(35deg);
    overflow: hidden;
  }
  .col-center-skew-left-35deg > div {
    transform-origin: center center;
    transform: scale(1.25) skewX(-35deg);
  }
  .col-center-skew-right-35deg {
    transform-origin: center center;
    transform: scale(1.2) skewX(-35deg);
    overflow: hidden;
  }
  .col-center-skew-right-35deg > div {
    transform-origin: center center;
    transform: scale(1.25) skewX(35deg);
  }
  .col-right-skew-left-35deg {
    transform-origin: top right;
    transform: skewX(35deg);
    overflow: hidden;
  }
  .col-right-skew-left-35deg > div {
    transform-origin: top right;
    transform: skewX(-35deg);
  }
  .col-right-skew-right-35deg {
    transform-origin: bottom left;
    transform: skewX(-35deg);
    overflow: hidden;
  }
  .col-right-skew-right-35deg > div {
    transform-origin: bottom left;
    transform: skewX(35deg);
  }
  .col-left-skew-left-45deg {
    transform-origin: bottom right;
    transform: skewX(45deg);
    overflow: hidden;
  }
  .col-left-skew-left-45deg > div {
    transform-origin: bottom right;
    transform: skewX(-45deg);
  }
  .col-left-skew-right-45deg {
    transform-origin: top left;
    transform: skewX(-45deg);
    overflow: hidden;
  }
  .col-left-skew-right-45deg > div {
    transform-origin: top left;
    transform: skewX(45deg);
  }
  .col-center-skew-left-45deg {
    transform-origin: center center;
    transform: scale(1.2) skewX(45deg);
    overflow: hidden;
  }
  .col-center-skew-left-45deg > div {
    transform-origin: center center;
    transform: scale(1.25) skewX(-45deg);
  }
  .col-center-skew-right-45deg {
    transform-origin: center center;
    transform: scale(1.2) skewX(-45deg);
    overflow: hidden;
  }
  .col-center-skew-right-45deg > div {
    transform-origin: center center;
    transform: scale(1.25) skewX(45deg);
  }
  .col-right-skew-left-45deg {
    transform-origin: top right;
    transform: skewX(45deg);
    overflow: hidden;
  }
  .col-right-skew-left-45deg > div {
    transform-origin: top right;
    transform: skewX(-45deg);
  }
  .col-right-skew-right-45deg {
    transform-origin: bottom left;
    transform: skewX(-45deg);
    overflow: hidden;
  }
  .col-right-skew-right-45deg > div {
    transform-origin: bottom left;
    transform: skewX(45deg);
  }
}
body.page-template-page-home-full-width .wrapper {
  max-width: 1400px;
}
body.page-template-page-home-full-width .page-content .row {
  max-width: 75rem;
  margin: 0 auto;
}
body.page-template-page-home-full-width .row-wrapper {
  width: 100%;
}
body.page-template-page-home-full-width .inset-row {
  -webkit-box-shadow: inset 2px 1px 174px 2px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: inset 2px 1px 174px 2px rgba(0, 0, 0, 0.24);
  box-shadow: inset 2px 1px 174px 2px rgba(0, 0, 0, 0.24);
}
body.page-template-page-home-full-width .form-row {
  padding-right: 12vw;
}
body.page-template-page-home-full-width .sidebar .widget {
  width: auto !important;
}
body.page-template-page-home-full-width .sidebar {
  margin-top: -3.92rem;
}
body.page-template-page-home-full-width .panel-grid {
  max-width: 75rem !important;
  margin: 0 auto !important;
}
body.page-template-page-home-full-width .section-top {
  padding-top: 3rem;
}
body.page-template-page-home-full-width .section-bottom {
  padding-bottom: 3rem;
}
body.page-template-page-home-full-width #er-form .row {
  margin-left: -0.46875rem;
  margin-right: -0.46875rem;
}
body.page-template-page-home-full-width .programs-list {
  margin: 0;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}
h1 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: "bold";
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
h1 sup {
  font-size: 0.875rem;
  vertical-align: super;
  line-height: 0;
  top: auto;
}
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}
h2 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: "bold";
}
h2 sup {
  font-size: 0.875rem;
  vertical-align: super;
  line-height: 0;
  top: auto;
}
h3 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: "bold";
}
h3 sup {
  font-size: 0.875rem;
  vertical-align: super;
  line-height: 0;
  top: auto;
}
h4 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: "bold";
}
h5 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: "bold";
}
h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: "bold";
}
#main .title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}
.sidebar .widget .title {
  color: #000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}
.no-orphans {
  display: inline-block;
}
.subheading {
  color: #565656;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  letter-spacing: -0.03em;
}
dl,
ol,
ul {
  margin-left: 1.3em;
}
.er-fa-quote-left {
  display: inline-block;
  position: relative;
  line-height: 100%;
  font-size: 5rem;
  height: 5rem;
  margin-bottom: -0.5em;
}
.er-fa-quote-left:before {
  font-family: "Times New Roman", Times, serif;
  content: "\201C";
  position: absolute;
  top: 0;
  left: 0;
}
@media print {
  #header {
    display: none;
  }
  #main-sidebar {
    display: none;
  }
  #mobile-cta {
    display: none;
  }
  #footer {
    display: none;
  }
}
.no-js #top-bar:target {
  height: auto;
}
@media (max-width: 1024px) {
  .no-js .top-bar-section .dropdown {
    width: auto;
    height: auto;
    padding-left: 2rem;
    left: 0;
    position: static !important;
  }
}

#main-sidebar {
  padding-top: 7rem;
}
