/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

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

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

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

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

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

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

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

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

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

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

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

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

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

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

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

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

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

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

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

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

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

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

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

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

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

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

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

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

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

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

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

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

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

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

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

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

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

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

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

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

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

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

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

@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

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

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

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

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

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

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

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

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

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

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

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

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

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

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

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

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

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

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

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

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

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

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

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

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

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

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

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

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

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

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

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

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

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

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

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

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

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

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

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

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

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

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

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

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

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

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

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

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

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

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

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

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

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

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

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

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

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

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

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

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

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

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

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

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

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

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

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

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

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

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

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

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

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

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

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

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

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

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

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

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

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

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

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

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

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

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

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

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

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

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

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

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

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

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

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

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

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

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

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

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

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

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

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

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

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

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

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

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

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

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

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

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

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

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

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

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

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

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

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

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

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

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

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

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

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

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

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

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

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

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

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

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

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

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

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

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

.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

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

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

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

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

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

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

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

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

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

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

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

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

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

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

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

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

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

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

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

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

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

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

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

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

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

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

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

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

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

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

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

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

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

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

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

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

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

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

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

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

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

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

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

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

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

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

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

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

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

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

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

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

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

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

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

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

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

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

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

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

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

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

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

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

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

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */

/*
 *  Owl Carousel - Core
 */

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */

.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */

.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */

.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */

.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  -webkit-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

@charset "UTF-8";

.slick-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: black;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.slick-lightbox .slick-loading .slick-list {
  background-color: transparent;
}

.slick-lightbox .slick-prev {
  left: 15px;
}

.slick-lightbox .slick-next {
  right: 15px;
}

.slick-lightbox-hide {
  opacity: 0;
}

.slick-lightbox-hide.slick-lightbox-ie {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.slick-lightbox-hide-init {
  position: absolute;
  top: -9999px;
  opacity: 0;
}

.slick-lightbox-hide-init.slick-lightbox-ie {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.slick-lightbox-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slick-lightbox-slick-item {
  text-align: center;
  overflow: hidden;
}

.slick-lightbox-slick-item:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.slick-caption-bottom .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.slick-caption-dynamic .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
  display: block;
  text-align: center;
}

.slick-lightbox-slick-item-inner {
  display: inline-block;
  vertical-align: middle;
  max-width: 90%;
  max-height: 90%;
}

.slick-lightbox-slick-img {
  margin: 0 auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
}

.slick-lightbox-slick-caption {
  margin: 10px 0 0;
  color: white;
}

.slick-lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  padding: 0;
  border: none;
}

.slick-lightbox-close:focus {
  outline: none;
}

.slick-lightbox-close:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "×";
}

@charset "UTF-8";

/*!
 * FullCalendar v3.10.5
 * Docs & License: https://fullcalendar.io/
 * (c) 2019 Adam Shaw
 */

.fc {
  direction: ltr;
  text-align: left;
}

.fc-rtl {
  text-align: right;
}

body .fc {
  /* extra precedence to overcome jqui */
  font-size: 1em;
}

/* Colors
--------------------------------------------------------------------------------------------------*/

.fc-highlight {
  /* when user is selecting cells */
  background: #bce8f1;
  opacity: 0.3;
}

.fc-bgevent {
  /* default look for background events */
  background: #8fdf82;
  opacity: 0.3;
}

.fc-nonbusiness {
  /* default look for non-business-hours areas */
  /* will inherit .fc-bgevent's styles */
  background: #d7d7d7;
}

/* Buttons (styled <button> tags, normalized to work cross-browser)
--------------------------------------------------------------------------------------------------*/

.fc button {
  /* force height to include the border and padding */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* dimensions */
  margin: 0;
  height: 2.1em;
  padding: 0 0.6em;
  /* text & cursor */
  font-size: 1em;
  /* normalize */
  white-space: nowrap;
  cursor: pointer;
}

/* Firefox has an annoying inner border */

.fc button::-moz-focus-inner {
  margin: 0;
  padding: 0;
}

.fc-state-default {
  /* non-theme */
  border: 1px solid;
}

.fc-state-default.fc-corner-left {
  /* non-theme */
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.fc-state-default.fc-corner-right {
  /* non-theme */
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* icons in buttons */

.fc button .fc-icon {
  /* non-theme */
  position: relative;
  top: -0.05em;
  /* seems to be a good adjustment across browsers */
  margin: 0 0.2em;
  vertical-align: middle;
}

/*
  button states
  borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
*/

.fc-state-default {
  background-color: #f5f5f5;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e6e6e6));
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-hover,
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
  color: #333333;
  background-color: #e6e6e6;
}

.fc-state-hover {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}

.fc-state-down,
.fc-state-active {
  background-color: #cccccc;
  background-image: none;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-disabled {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* Buttons Groups
--------------------------------------------------------------------------------------------------*/

.fc-button-group {
  display: inline-block;
}

/*
every button that is not first in a button group should scootch over one pixel and cover the
previous button's border...
*/

.fc .fc-button-group > * {
  /* extra precedence b/c buttons have margin set to zero */
  float: left;
  margin: 0 0 0 -1px;
}

.fc .fc-button-group > :first-child {
  /* same */
  margin-left: 0;
}

/* Popover
--------------------------------------------------------------------------------------------------*/

.fc-popover {
  position: absolute;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.fc-popover .fc-header {
  /* TODO: be more consistent with fc-head/fc-body */
  padding: 2px 4px;
}

.fc-popover .fc-header .fc-title {
  margin: 0 2px;
}

.fc-popover .fc-header .fc-close {
  cursor: pointer;
}

.fc-ltr .fc-popover .fc-header .fc-title,
.fc-rtl .fc-popover .fc-header .fc-close {
  float: left;
}

.fc-rtl .fc-popover .fc-header .fc-title,
.fc-ltr .fc-popover .fc-header .fc-close {
  float: right;
}

/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/

.fc-divider {
  border-style: solid;
  border-width: 1px;
}

hr.fc-divider {
  height: 0;
  margin: 0;
  padding: 0 0 2px;
  /* height is unreliable across browsers, so use padding */
  border-width: 1px 0;
}

.fc-clear {
  clear: both;
}

.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-helper-skeleton {
  /* these element should always cling to top-left/right corners */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.fc-bg {
  bottom: 0;
  /* strech bg to bottom edge */
}

.fc-bg table {
  height: 100%;
  /* strech bg to bottom edge */
}

/* Tables
--------------------------------------------------------------------------------------------------*/

.fc table {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* fix scrollbar issue in firefox */
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
  /* normalize cross-browser */
}

.fc th {
  text-align: center;
}

.fc th,
.fc td {
  border-style: solid;
  border-width: 1px;
  padding: 0;
  vertical-align: top;
}

.fc td.fc-today {
  border-style: double;
  /* overcome neighboring borders */
}

/* Internal Nav Links
--------------------------------------------------------------------------------------------------*/

a[data-goto] {
  cursor: pointer;
}

a[data-goto]:hover {
  text-decoration: underline;
}

/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/

.fc .fc-row {
  /* extra precedence to overcome themes w/ .ui-widget-content forcing a 1px border */
  /* no visible border by default. but make available if need be (scrollbar width compensation) */
  border-style: solid;
  border-width: 0;
}

.fc-row table {
  /* don't put left/right border on anything within a fake row.
     the outer tbody will worry about this */
  border-left: 0 hidden transparent;
  border-right: 0 hidden transparent;
  /* no bottom borders on rows */
  border-bottom: 0 hidden transparent;
}

.fc-row:first-child table {
  border-top: 0 hidden transparent;
  /* no top border on first row */
}

/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/

.fc-row {
  position: relative;
}

.fc-row .fc-bg {
  z-index: 1;
}

/* highlighting cells & background event skeleton */

.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
  bottom: 0;
  /* stretch skeleton to bottom of row */
}

.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
  height: 100%;
  /* stretch skeleton to bottom of row */
}

.fc-row .fc-highlight-skeleton td,
.fc-row .fc-bgevent-skeleton td {
  border-color: transparent;
}

.fc-row .fc-bgevent-skeleton {
  z-index: 2;
}

.fc-row .fc-highlight-skeleton {
  z-index: 3;
}

/*
row content (which contains day/week numbers and events) as well as "helper" (which contains
temporary rendered events).
*/

.fc-row .fc-content-skeleton {
  position: relative;
  z-index: 4;
  padding-bottom: 2px;
  /* matches the space above the events */
}

.fc-row .fc-helper-skeleton {
  z-index: 5;
}

.fc .fc-row .fc-content-skeleton table,
.fc .fc-row .fc-content-skeleton td,
.fc .fc-row .fc-helper-skeleton td {
  /* see-through to the background below */
  /* extra precedence to prevent theme-provided backgrounds */
  background: none;
  /* in case <td>s are globally styled */
  border-color: transparent;
}

.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td {
  /* don't put a border between events and/or the day number */
  border-bottom: 0;
}

.fc-row .fc-content-skeleton tbody td,
.fc-row .fc-helper-skeleton tbody td {
  /* don't put a border between event cells */
  border-top: 0;
}

/* Scrolling Container
--------------------------------------------------------------------------------------------------*/

.fc-scroller {
  -webkit-overflow-scrolling: touch;
}

/* TODO: move to agenda/basic */

.fc-scroller > .fc-day-grid,
.fc-scroller > .fc-time-grid {
  position: relative;
  /* re-scope all positions */
  width: 100%;
  /* hack to force re-sizing this inner element when scrollbars appear/disappear */
}

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/

.fc-event {
  position: relative;
  /* for resize handle and other inner positioning */
  display: block;
  /* make the <a> tag block */
  font-size: 0.85em;
  line-height: 1.3;
  border-radius: 3px;
  border: 1px solid #3a87ad;
  /* default BORDER color */
}

.fc-event,
.fc-event-dot {
  background-color: #3a87ad;
  /* default BACKGROUND color */
}

.fc-event,
.fc-event:hover {
  color: #fff;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */
}

.fc-event[href],
.fc-event.fc-draggable {
  cursor: pointer;
  /* give events with links and draggable events a hand mouse pointer */
}

.fc-not-allowed,
.fc-not-allowed .fc-event {
  /* to override an event's custom cursor */
  cursor: not-allowed;
}

.fc-event .fc-bg {
  /* the generic .fc-bg already does position */
  z-index: 1;
  background: #fff;
  opacity: 0.25;
}

.fc-event .fc-content {
  position: relative;
  z-index: 2;
}

/* resizer (cursor AND touch devices) */

.fc-event .fc-resizer {
  position: absolute;
  z-index: 4;
}

/* resizer (touch devices) */

.fc-event .fc-resizer {
  display: none;
}

.fc-event.fc-allow-mouse-resize .fc-resizer,
.fc-event.fc-selected .fc-resizer {
  /* only show when hovering or selected (with touch) */
  display: block;
}

/* hit area */

.fc-event.fc-selected .fc-resizer:before {
  /* 40x40 touch area */
  content: "";
  position: absolute;
  z-index: 9999;
  /* user of this util can scope within a lower z-index */
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
}

/* Event Selection (only for touch devices)
--------------------------------------------------------------------------------------------------*/

.fc-event.fc-selected {
  z-index: 9999 !important;
  /* overcomes inline z-index */
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.fc-event.fc-selected.fc-dragging {
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}

/* Horizontal Events
--------------------------------------------------------------------------------------------------*/

/* bigger touch area when selected */

.fc-h-event.fc-selected:before {
  content: "";
  position: absolute;
  z-index: 3;
  /* below resizers */
  top: -10px;
  bottom: -10px;
  left: 0;
  right: 0;
}

/* events that are continuing to/from another week. kill rounded corners and butt up against edge */

.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
  margin-left: 0;
  border-left-width: 0;
  padding-left: 1px;
  /* replace the border with padding */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
  margin-right: 0;
  border-right-width: 0;
  padding-right: 1px;
  /* replace the border with padding */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* resizer (cursor AND touch devices) */

/* left resizer  */

.fc-ltr .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-end-resizer {
  cursor: w-resize;
  left: -1px;
  /* overcome border */
}

/* right resizer */

.fc-ltr .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-start-resizer {
  cursor: e-resize;
  right: -1px;
  /* overcome border */
}

/* resizer (mouse devices) */

.fc-h-event.fc-allow-mouse-resize .fc-resizer {
  width: 7px;
  top: -1px;
  /* overcome top border */
  bottom: -1px;
  /* overcome bottom border */
}

/* resizer (touch devices) */

.fc-h-event.fc-selected .fc-resizer {
  /* 8x8 little dot */
  border-radius: 4px;
  border-width: 1px;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* vertically center */
  top: 50%;
  margin-top: -4px;
}

/* left resizer  */

.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
  margin-left: -4px;
  /* centers the 8x8 dot on the left edge */
}

/* right resizer */

.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
  margin-right: -4px;
  /* centers the 8x8 dot on the right edge */
}

/* DayGrid events
----------------------------------------------------------------------------------------------------
We use the full "fc-day-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/

.fc-day-grid-event {
  margin: 1px 2px 0;
  /* spacing between events and edges */
  padding: 0 1px;
}

tr:first-child > td > .fc-day-grid-event {
  margin-top: 2px;
  /* a little bit more space before the first event */
}

.fc-day-grid-event.fc-selected:after {
  content: "";
  position: absolute;
  z-index: 1;
  /* same z-index as fc-bg, behind text */
  /* overcome the borders */
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  /* darkening effect */
  background: #000;
  opacity: 0.25;
}

.fc-day-grid-event .fc-content {
  /* force events to be one-line tall */
  white-space: nowrap;
  overflow: hidden;
}

.fc-day-grid-event .fc-time {
  font-weight: bold;
}

/* resizer (cursor devices) */

/* left resizer  */

.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
  margin-left: -2px;
  /* to the day cell's edge */
}

/* right resizer */

.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
  margin-right: -2px;
  /* to the day cell's edge */
}

/* Event Limiting
--------------------------------------------------------------------------------------------------*/

/* "more" link that represents hidden events */

a.fc-more {
  margin: 1px 3px;
  font-size: 0.85em;
  cursor: pointer;
  text-decoration: none;
}

a.fc-more:hover {
  text-decoration: underline;
}

.fc-limited {
  /* rows and cells that are hidden because of a "more" link */
  display: none;
}

/* popover that appears when "more" link is clicked */

.fc-day-grid .fc-row {
  z-index: 1;
  /* make the "more" popover one higher than this */
}

.fc-more-popover {
  z-index: 2;
  width: 220px;
}

.fc-more-popover .fc-event-container {
  padding: 10px;
}

/* Now Indicator
--------------------------------------------------------------------------------------------------*/

.fc-now-indicator {
  position: absolute;
  border: 0 solid red;
}

/* Utilities
--------------------------------------------------------------------------------------------------*/

.fc-unselectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*
TODO: more distinction between this file and common.css
*/

/* Colors
--------------------------------------------------------------------------------------------------*/

.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-content,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-list-view,
.fc-unthemed .fc-list-heading td {
  border-color: #ddd;
}

.fc-unthemed .fc-popover {
  background-color: #fff;
}

.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover .fc-header,
.fc-unthemed .fc-list-heading td {
  background: #eee;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
  color: #666;
}

.fc-unthemed td.fc-today {
  background: #fcf8e3;
}

.fc-unthemed .fc-disabled-day {
  background: #d7d7d7;
  opacity: 0.3;
}

/* Icons (inline elements with styled text that mock arrow icons)
--------------------------------------------------------------------------------------------------*/

.fc-icon {
  display: inline-block;
  height: 1em;
  line-height: 1em;
  font-size: 1em;
  text-align: center;
  overflow: hidden;
  font-family: "Courier New", Courier, monospace;
  /* don't allow browser text-selection */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*
Acceptable font-family overrides for individual icons:
  "Arial", sans-serif
  "Times New Roman", serif

NOTE: use percentage font sizes or else old IE chokes
*/

.fc-icon:after {
  position: relative;
}

.fc-icon-left-single-arrow:after {
  content: "‹";
  font-weight: bold;
  font-size: 200%;
  top: -7%;
}

.fc-icon-right-single-arrow:after {
  content: "›";
  font-weight: bold;
  font-size: 200%;
  top: -7%;
}

.fc-icon-left-double-arrow:after {
  content: "«";
  font-size: 160%;
  top: -7%;
}

.fc-icon-right-double-arrow:after {
  content: "»";
  font-size: 160%;
  top: -7%;
}

.fc-icon-left-triangle:after {
  content: "◄";
  font-size: 125%;
  top: 3%;
}

.fc-icon-right-triangle:after {
  content: "►";
  font-size: 125%;
  top: 3%;
}

.fc-icon-down-triangle:after {
  content: "▼";
  font-size: 125%;
  top: 2%;
}

.fc-icon-x:after {
  content: "×";
  font-size: 200%;
  top: 6%;
}

/* Popover
--------------------------------------------------------------------------------------------------*/

.fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
  font-size: 0.9em;
  margin-top: 2px;
}

/* List View
--------------------------------------------------------------------------------------------------*/

.fc-unthemed .fc-list-item:hover td {
  background-color: #f5f5f5;
}

/* Colors
--------------------------------------------------------------------------------------------------*/

.ui-widget .fc-disabled-day {
  background-image: none;
}

/* Popover
--------------------------------------------------------------------------------------------------*/

.fc-popover > .ui-widget-header + .ui-widget-content {
  border-top: 0;
  /* where they meet, let the header have the border */
}

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/

.ui-widget .fc-event {
  /* overpower jqui's styles on <a> tags. TODO: more DRY */
  color: #fff;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */
  /* undo ui-widget-header bold */
  font-weight: normal;
}

/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/

.ui-widget td.fc-axis {
  font-weight: normal;
  /* overcome bold */
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-slats .ui-widget-content {
  background: none;
  /* see through to fc-bg */
}

.fc.fc-bootstrap3 a {
  text-decoration: none;
}

.fc.fc-bootstrap3 a[data-goto]:hover {
  text-decoration: underline;
}

.fc-bootstrap3 hr.fc-divider {
  border-color: inherit;
}

.fc-bootstrap3 .fc-today.alert {
  border-radius: 0;
}

/* Popover
--------------------------------------------------------------------------------------------------*/

.fc-bootstrap3 .fc-popover .panel-body {
  padding: 0;
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/

.fc-bootstrap3 .fc-time-grid .fc-slats table {
  /* some themes have background color. see through to slats */
  background: none;
}

.fc.fc-bootstrap4 a {
  text-decoration: none;
}

.fc.fc-bootstrap4 a[data-goto]:hover {
  text-decoration: underline;
}

.fc-bootstrap4 hr.fc-divider {
  border-color: inherit;
}

.fc-bootstrap4 .fc-today.alert {
  border-radius: 0;
}

.fc-bootstrap4 a.fc-event:not([href]):not([tabindex]) {
  color: #fff;
}

.fc-bootstrap4 .fc-popover.card {
  position: absolute;
}

/* Popover
--------------------------------------------------------------------------------------------------*/

.fc-bootstrap4 .fc-popover .card-body {
  padding: 0;
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/

.fc-bootstrap4 .fc-time-grid .fc-slats table {
  /* some themes have background color. see through to slats */
  background: none;
}

/* Toolbar
--------------------------------------------------------------------------------------------------*/

.fc-toolbar {
  text-align: center;
}

.fc-toolbar.fc-header-toolbar {
  margin-bottom: 1em;
}

.fc-toolbar.fc-footer-toolbar {
  margin-top: 1em;
}

.fc-toolbar .fc-left {
  float: left;
}

.fc-toolbar .fc-right {
  float: right;
}

.fc-toolbar .fc-center {
  display: inline-block;
}

/* the things within each left/right/center section */

.fc .fc-toolbar > * > * {
  /* extra precedence to override button border margins */
  float: left;
  margin-left: 0.75em;
}

/* the first thing within each left/center/right section */

.fc .fc-toolbar > * > :first-child {
  /* extra precedence to override button border margins */
  margin-left: 0;
}

/* title text */

.fc-toolbar h2 {
  margin: 0;
}

/* button layering (for border precedence) */

.fc-toolbar button {
  position: relative;
}

.fc-toolbar .fc-state-hover,
.fc-toolbar .ui-state-hover {
  z-index: 2;
}

.fc-toolbar .fc-state-down {
  z-index: 3;
}

.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
  z-index: 4;
}

.fc-toolbar button:focus {
  z-index: 5;
}

/* View Structure
--------------------------------------------------------------------------------------------------*/

/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */

/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */

.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.fc-view,
.fc-view > table {
  /* so dragged elements can be above the view's main element */
  position: relative;
  z-index: 1;
}

/* BasicView
--------------------------------------------------------------------------------------------------*/

/* day row structure */

.fc-basicWeek-view .fc-content-skeleton,
.fc-basicDay-view .fc-content-skeleton {
  /* there may be week numbers in these views, so no padding-top */
  padding-bottom: 1em;
  /* ensure a space at bottom of cell for user selecting/clicking */
}

.fc-basic-view .fc-body .fc-row {
  min-height: 4em;
  /* ensure that all rows are at least this tall */
}

/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */

.fc-row.fc-rigid {
  overflow: hidden;
}

.fc-row.fc-rigid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* week and day number styling */

.fc-day-top.fc-other-month {
  opacity: 0.3;
}

.fc-basic-view .fc-week-number,
.fc-basic-view .fc-day-number {
  padding: 2px;
}

.fc-basic-view th.fc-week-number,
.fc-basic-view th.fc-day-number {
  padding: 0 2px;
  /* column headers can't have as much v space */
}

.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  float: right;
}

.fc-rtl .fc-basic-view .fc-day-top .fc-day-number {
  float: left;
}

.fc-ltr .fc-basic-view .fc-day-top .fc-week-number {
  float: left;
  border-radius: 0 0 3px 0;
}

.fc-rtl .fc-basic-view .fc-day-top .fc-week-number {
  float: right;
  border-radius: 0 0 0 3px;
}

.fc-basic-view .fc-day-top .fc-week-number {
  min-width: 1.5em;
  text-align: center;
  background-color: #f2f2f2;
  color: #808080;
}

/* when week/day number have own column */

.fc-basic-view td.fc-week-number {
  text-align: center;
}

.fc-basic-view td.fc-week-number > * {
  /* work around the way we do column resizing and ensure a minimum width */
  display: inline-block;
  min-width: 1.25em;
}

/* AgendaView all-day area
--------------------------------------------------------------------------------------------------*/

.fc-agenda-view .fc-day-grid {
  position: relative;
  z-index: 2;
  /* so the "more.." popover will be over the time grid */
}

.fc-agenda-view .fc-day-grid .fc-row {
  min-height: 3em;
  /* all-day section will never get shorter than this */
}

.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
  padding-bottom: 1em;
  /* give space underneath events for clicking/selecting days */
}

/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/

.fc .fc-axis {
  /* .fc to overcome default cell styles */
  vertical-align: middle;
  padding: 0 4px;
  white-space: nowrap;
}

.fc-ltr .fc-axis {
  text-align: right;
}

.fc-rtl .fc-axis {
  text-align: left;
}

/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/

.fc-time-grid-container,
.fc-time-grid {
  /* so slats/bg/content/etc positions get scoped within here */
  position: relative;
  z-index: 1;
}

.fc-time-grid {
  min-height: 100%;
  /* so if height setting is 'auto', .fc-bg stretches to fill height */
}

.fc-time-grid table {
  /* don't put outer borders on slats/bg/content/etc */
  border: 0 hidden transparent;
}

.fc-time-grid > .fc-bg {
  z-index: 1;
}

.fc-time-grid .fc-slats,
.fc-time-grid > hr {
  /* the <hr> AgendaView injects when grid is shorter than scroller */
  position: relative;
  z-index: 2;
}

.fc-time-grid .fc-content-col {
  position: relative;
  /* because now-indicator lives directly inside */
}

.fc-time-grid .fc-content-skeleton {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
}

/* divs within a cell within the fc-content-skeleton */

.fc-time-grid .fc-business-container {
  position: relative;
  z-index: 1;
}

.fc-time-grid .fc-bgevent-container {
  position: relative;
  z-index: 2;
}

.fc-time-grid .fc-highlight-container {
  position: relative;
  z-index: 3;
}

.fc-time-grid .fc-event-container {
  position: relative;
  z-index: 4;
}

.fc-time-grid .fc-now-indicator-line {
  z-index: 5;
}

.fc-time-grid .fc-helper-container {
  /* also is fc-event-container */
  position: relative;
  z-index: 6;
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-slats td {
  height: 1.5em;
  border-bottom: 0;
  /* each cell is responsible for its top border */
}

.fc-time-grid .fc-slats .fc-minor td {
  border-top-style: dotted;
}

/* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-highlight-container {
  /* a div within a cell within the fc-highlight-skeleton */
  position: relative;
  /* scopes the left/right of the fc-highlight to be in the column */
}

.fc-time-grid .fc-highlight {
  position: absolute;
  left: 0;
  right: 0;
  /* top and bottom will be in by JS */
}

/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/

.fc-ltr .fc-time-grid .fc-event-container {
  /* space on the sides of events for LTR (default) */
  margin: 0 2.5% 0 2px;
}

.fc-rtl .fc-time-grid .fc-event-container {
  /* space on the sides of events for RTL */
  margin: 0 2px 0 2.5%;
}

.fc-time-grid .fc-event,
.fc-time-grid .fc-bgevent {
  position: absolute;
  z-index: 1;
  /* scope inner z-index's */
}

.fc-time-grid .fc-bgevent {
  /* background events always span full width */
  left: 0;
  right: 0;
}

/* Generic Vertical Event
--------------------------------------------------------------------------------------------------*/

.fc-v-event.fc-not-start {
  /* events that are continuing from another day */
  /* replace space made by the top border with padding */
  border-top-width: 0;
  padding-top: 1px;
  /* remove top rounded corners */
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.fc-v-event.fc-not-end {
  /* replace space made by the top border with padding */
  border-bottom-width: 0;
  padding-bottom: 1px;
  /* remove bottom rounded corners */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* TimeGrid Event Styling
----------------------------------------------------------------------------------------------------
We use the full "fc-time-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/

.fc-time-grid-event {
  overflow: hidden;
  /* don't let the bg flow over rounded corners */
}

.fc-time-grid-event.fc-selected {
  /* need to allow touch resizers to extend outside event's bounding box */
  /* common fc-selected styles hide the fc-bg, so don't need this anyway */
  overflow: visible;
}

.fc-time-grid-event.fc-selected .fc-bg {
  display: none;
  /* hide semi-white background, to appear darker */
}

.fc-time-grid-event .fc-content {
  overflow: hidden;
  /* for when .fc-selected */
}

.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
  padding: 0 1px;
}

.fc-time-grid-event .fc-time {
  font-size: 0.85em;
  white-space: nowrap;
}

/* short mode, where time and title are on the same line */

.fc-time-grid-event.fc-short .fc-content {
  /* don't wrap to second line (now that contents will be inline) */
  white-space: nowrap;
}

.fc-time-grid-event.fc-short .fc-time,
.fc-time-grid-event.fc-short .fc-title {
  /* put the time and title on the same line */
  display: inline-block;
  vertical-align: top;
}

.fc-time-grid-event.fc-short .fc-time span {
  display: none;
  /* don't display the full time text... */
}

.fc-time-grid-event.fc-short .fc-time:before {
  content: attr(data-start);
  /* ...instead, display only the start time */
}

.fc-time-grid-event.fc-short .fc-time:after {
  content: " - ";
  /* seperate with a dash, wrapped in nbsp's */
}

.fc-time-grid-event.fc-short .fc-title {
  font-size: 0.85em;
  /* make the title text the same size as the time */
  padding: 0;
  /* undo padding from above */
}

/* resizer (cursor device) */

.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer {
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  overflow: hidden;
  line-height: 8px;
  font-size: 11px;
  font-family: monospace;
  text-align: center;
  cursor: s-resize;
}

.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after {
  content: "=";
}

/* resizer (touch device) */

.fc-time-grid-event.fc-selected .fc-resizer {
  /* 10x10 dot */
  border-radius: 5px;
  border-width: 1px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* horizontally center */
  left: 50%;
  margin-left: -5px;
  /* center on the bottom edge */
  bottom: -5px;
}

/* Now Indicator
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-now-indicator-line {
  border-top-width: 1px;
  left: 0;
  right: 0;
}

/* arrow on axis */

.fc-time-grid .fc-now-indicator-arrow {
  margin-top: -5px;
  /* vertically center on top coordinate */
}

.fc-ltr .fc-time-grid .fc-now-indicator-arrow {
  left: 0;
  /* triangle pointing right... */
  border-width: 5px 0 5px 6px;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.fc-rtl .fc-time-grid .fc-now-indicator-arrow {
  right: 0;
  /* triangle pointing left... */
  border-width: 5px 6px 5px 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

/* List View
--------------------------------------------------------------------------------------------------*/

/* possibly reusable */

.fc-event-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
}

/* view wrapper */

.fc-rtl .fc-list-view {
  direction: rtl;
  /* unlike core views, leverage browser RTL */
}

.fc-list-view {
  border-width: 1px;
  border-style: solid;
}

/* table resets */

.fc .fc-list-table {
  table-layout: auto;
  /* for shrinkwrapping cell content */
}

.fc-list-table td {
  border-width: 1px 0 0;
  padding: 8px 14px;
}

.fc-list-table tr:first-child td {
  border-top-width: 0;
}

/* day headings with the list */

.fc-list-heading {
  border-bottom-width: 1px;
}

.fc-list-heading td {
  font-weight: bold;
}

.fc-ltr .fc-list-heading-main {
  float: left;
}

.fc-ltr .fc-list-heading-alt {
  float: right;
}

.fc-rtl .fc-list-heading-main {
  float: right;
}

.fc-rtl .fc-list-heading-alt {
  float: left;
}

/* event list items */

.fc-list-item.fc-has-url {
  cursor: pointer;
  /* whole row will be clickable */
}

.fc-list-item-marker,
.fc-list-item-time {
  white-space: nowrap;
  width: 1px;
}

/* make the dot closer to the event title */

.fc-ltr .fc-list-item-marker {
  padding-right: 0;
}

.fc-rtl .fc-list-item-marker {
  padding-left: 0;
}

.fc-list-item-title a {
  /* every event title cell has an <a> tag */
  text-decoration: none;
  color: inherit;
}

.fc-list-item-title a[href]:hover {
  /* hover effect only on titles with hrefs */
  text-decoration: underline;
}

/* message when no events */

.fc-list-empty-wrap2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.fc-list-empty-wrap1 {
  width: 100%;
  height: 100%;
  display: table;
}

.fc-list-empty {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.fc-unthemed .fc-list-empty {
  /* theme will provide own background */
  background-color: #eee;
}

@charset "UTF-8";

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::after,
*::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.aoc-secondary-colors--medium {
  color: #4a4a4a;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-social-media,
  #aoc .aoc-header__dropdown-link,
  #aoc .aoc-header .aoc-search-bar,
  #aoc .aoc-header .aoc-social-media,
  .desktop-only {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {
  #aoc .aoc-pub-header .aoc-pub-header__menu-button,
  #aoc .aoc-header .aoc-header__menu-button,
  .mobile-only {
    display: none !important;
  }
}

@media print {
  a[href]:after {
    content: none !important;
  }
}

@media print {
  .aoc-top-nav,
  .aoc-header__dropdown-link,
  .aoc-social-media,
  .aoc-search-bar {
    display: none !important;
  }

  .aoc-header__top-row {
    margin-bottom: 0 !important;
  }
}

.slick-lightbox-slick-item:focus,
.slick-lightbox-slick-item:active {
  outline: none;
}

.slick-lightbox-close {
  right: 80px;
  top: 70px;
}

.slick-lightbox-close:before {
  font-size: 80px;
}

.slick-lightbox-slick .slick-next,
.slick-lightbox-slick .slick-prev {
  background-size: 70px;
  width: 70px;
  height: 70px;
}

@media screen and (max-width: 800px) {
  .slick-lightbox-slick .slick-next,
  .slick-lightbox-slick .slick-prev {
    background-size: 30px;
    width: 30px;
    height: 30px;
  }
}

.slick-lightbox-slick .slick-next {
  background-image: url("./img/arrow-next.svg");
}

@media screen and (max-width: 480px) {
  .slick-lightbox-slick .slick-next {
    right: 5px;
  }
}

.slick-lightbox-slick .slick-next:before {
  content: "";
}

.slick-lightbox-slick .slick-next:hover {
  background: url("./img/arrow-next.svg") no-repeat;
}

.slick-lightbox-slick .slick-prev {
  background-image: url("./img/arrow-prev.svg");
}

@media screen and (max-width: 480px) {
  .slick-lightbox-slick .slick-prev {
    left: 5px;
  }
}

.slick-lightbox-slick .slick-prev:before {
  content: "";
}

.slick-lightbox-slick .slick-prev:hover {
  background: url("./img/arrow-prev.svg") no-repeat;
}

/* Slider */

/* Arrows */

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.slick-lightbox-slick-img {
  margin-bottom: 1em;
}

.slick-lightbox-slick-caption,
.slick-lightbox-slick-item-inner {
  font-family: "Alright Sans CE Lt", sans-serif !important;
  font-style: normal;
  font-weight: bold;
}

.slick-lightbox-slick.slick-initialized .slick-lightbox-slick-caption {
  display: block;
  max-width: 75vw !important;
  margin: auto;
  font-weight: normal;
  height: 100%;
  padding-bottom: 20px;
  width: 100%;
}

.slick-lightbox-slick.slick-initialized.slick-slider {
  max-height: 100vh !important;
  overflow: auto;
}

.slick-lightbox-slick.slick-initialized .slick-lightbox-slick-item-inner {
  max-height: 100vh !important;
  overflow: auto;
}

.slick-lightbox-slick.slick-initialized .slick-slide,
.slick-lightbox-slick.slick-initialized .slick-lightbox-slick-item {
  height: 100vh !important;
  max-height: 100vh !important;
}

@media screen and (max-width: 846px) and (orientation: landscape) {
  .slick-lightbox-slick.slick-initialized .slick-slide,
  .slick-lightbox-slick.slick-initialized .slick-lightbox-slick-item {
    position: relative;
  }
}

.slick-lightbox-slick.slick-initialized .slick-lightbox-slick-caption {
  display: block;
  max-width: 75vw !important;
  margin: auto;
  font-weight: normal;
  height: 100%;
  padding-bottom: 20px;
}

.slick-lightbox-slick.slick-initialized .slick-lightbox-slick-img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.slick-lightbox-close {
  right: 50px;
  top: 10px;
}

.slick-lightbox-slick.slick-initialized .slick-prev,
.slick-next {
  z-index: 6;
}

@media screen and (max-width: 846px) and (orientation: landscape) {
  .slick-lightbox-slick.slick-initialized .slick-lightbox-slick-item-inner img {
    position: relative;
    height: 70vh;
    max-height: 70vh;
  }
}

#aoc {
  /*
  Typography

  Markup: typography.hbs

  Shown below are Alright Sans Light and Alright Sans Bold respectively. 
  These are the only two types used throughout the site.

  Styleguide Elements.Typography
  */
  font-family: "Alright Sans CE Lt";
  color: #000;
  font-size: 17px;
  /*
  Elements

  A constituent part of a block that can't be used outside of it.

  Styleguide Elements
  */
  /*
  Primary Colors

  Markup: colors.hbs 

  Styleguide Colors.Primary-Colors
  */
  /*
  Headers

  Markup: headers.hbs

  Styleguide Elements.Headers
  */
  /*
  Text Link

  Markup: link.hbs

  Styleguide Elements.Link
  */
  /*
  Paragraphs

  Markup: paragraphs.hbs

  Styleguide Elements.Paragraphs
  */
  /*
  Unordered Lists

  Styled ordered lists are good for displaying list data, while unstyled ordered lists are a good starting point patterns like navigation menus

  Markup: unordered-list.hbs

  Styleguide Elements.Lists.Unordered-List
  */
  /*
  Ordered Lists


  Markup: ordered-list.hbs

  Styleguide Elements.Lists.Ordered-Lists
  */
  /*
  Unstyled Lists


  Markup: unstyled-list.hbs

  Styleguide Elements.Lists.Unstyled-Lists
  */
  /*
  Pagination


  Markup: pagination.hbs

  Styleguide Elements.Pagination
  */
  /*
  Tables

  Markup: tables.hbs

  Styleguide Elements.Tables
  */
  /*
  Accordion

  Markup: accordion.hbs

  Styleguide Accordion
  */
  /*
  Content Types

  Styleguide Content Types
  */
  /*
  Content with Intro

  Markup: center-content.hbs

  Styleguide Content Types.Content-with-Intro
  */
  /*
  Daybook

  Markup: daybook.hbs

  Styleguide Content Types.Daybook
  */
  /*
  Article-1

  Markup: article-1.hbs

  Styleguide Content Types.Article-1
  */
  /*
  Article-2

  Markup: article-2.hbs

  Styleguide Content Types.Article-2
  */
  /*
  Bio Detail

  Markup: bio-detail.hbs

  Styleguide Content Types.Bio-List
  */
  /*
  Bio List-1

  Markup: bio-list-1.hbs

  Styleguide Content Types.Bio List-1
  */
  /*
  Bio List-2

  Markup: bio-list-2.hbs

  Styleguide Content Types.Bio List-2
  */
  /*
  Bio List-3

  Markup: bio-list-3.hbs

  Styleguide Content Types.Bio List-3
  */
  /*
  Directory

  Markup: directory.hbs

  Styleguide Content Types.Directory
  */
  /*
  Schedule

  Markup: schedule.hbs

  Styleguide Content Types.Schedule
  */
  /*
  Sectional Content

  Markup: sectional-content.hbs

  Styleguide Content Types.Sectional Content
  */
  /*
  Statements List

  Markup: statements.hbs

  Styleguide Content Types.News and Statements.Statements List
  */
  /*
  News Release List

  Markup: news-releases.hbs

  Styleguide Content Types.News and Statements.News Release List
  */
  /*
  News Detail

  Markup: news-release-detail.hbs

  Styleguide Content Types.News and Statements.News Detail-2
  */
  /*
  Four Column Tiles

  Markup: four-column-tiles.hbs

  Styleguide Content Types.Four Column Tiles
  */
  /*
  Side Navigation

  Markup: side-navigation.hbs

  Styleguide Side Navigation
  */
  /*
  Forms

  Markup: forms.hbs

  Styleguide Forms
  */
  /* field states */
  /* with labels */
  /* Select Dropdown List */
  /*********************
  FORM VALIDATION STYLES
  **********************/
  /*
  Hero

  Please close the left nav menu by pressing `ctrl + l` in order to view the header closer to its ideal width.

  Markup: hero.hbs

  Styleguide Hero
  */
  /*
  Header

  Please close the left nav menu by pressing `ctrl + l` in order to view the header closer to its ideal width.

  Markup: header.hbs

  Styleguide Header
  */
  /* Language */
  /* Logo */
  /* Mega Menu Button*/
  /* Social Media */
  /* Search */
  /* Top Nav */
  /* Top Nav Dropdown */
  /* Dropdown/Mobile Chevron */
  /* 3rd Level Navigation */
  /* Mega Menu/Site Menu */
  /* Mobile Social Media */
  /*
  Subsite Header

  Please close the left nav menu by pressing `ctrl + l` in order to view the header closer to its ideal width.

  Markup: subsite-header.hbs

  Styleguide Subsite Header
  */
  /*
  Footer

  Markup: footer.hbs

  Styleguide Footer
  */
  /*
  Subpage Banner

  Please close the left nav menu by pressing `ctrl + l` in order to view the header closer to its ideal width.

  Markup: subpage-banner.hbs

  Styleguide Subpage Banner
  */
  /*
  Horizontal Stamps

  Please close the left nav menu by pressing `ctrl + l` in order to view the header closer to its ideal width.

  Markup: thumbnails.hbs

  Styleguide Stamps.Horizontal Stamps
  */
  /*
  Vertical Stamps

  Please close the left nav menu by pressing `ctrl + l` in order to view the header closer to its ideal width.

  Markup: vertical-thumbnails.hbs

  Styleguide Stamps.Vertical Stamps
  */
  /*
  Alphabet Directory

  Markup: alphabet-directory.hbs

  Styleguide Alphabet Directory
  */
  /*
  Publications

  A constituent part of a block that can't be used outside of it.

  Styleguide Publications

  */
  /*
  Article

  Markup: article--publications.hbs 

  Styleguide Publications.Article
  */
  /*
  Article - Book Detail

  Markup: book-detail--publications.hbs 

  Styleguide Publications.Article.Book-Detail
  */
  /*
  Article - Banner

  Markup: banner--publications.hbs 

  Styleguide Publications.Article.Baanner
  */
  /*
  Ad Banner

  Markup: ad-banner--publications.hbs 

  Styleguide Publications.Ad-Banner--Publications
  */
  /*
  Classifieds

  Markup: classifieds--publications.hbs 

  Styleguide Publications.Classifieds
  */
  /*
  Classifieds - Sidebar

  Markup: classifieds-sidebar--publications.hbs 

  Styleguide Publications.Classifieds.Sidebar
  */
  /*
  Classifieds - List

  Markup: classifieds-list--publications.hbs 

  Styleguide Publications.Classifieds.List
  */
  /*
  Elements - Headings

  Markup: headings--publications.hbs 

  Styleguide Publications.Elements.Headings
  */
  /*
  Elements - Unordered List

  Markup: unordered-list--publications.hbs 

  Styleguide Publications.Elements.Unordered List
  */
  /*
  Elements - Unstyled List

  Markup: unstyled-list--publications.hbs

  Styleguide Publications.Elements.Unstyled List
  */
  /*
  Events

  Markup: events--publications.hbs 

  Styleguide Publications.Events
  */
  /*
  Events Nav

  Markup: events-nav--publications.hbs 

  Styleguide Publications.Events.Nav
  */
  /*
  Events List

  Markup: events-list--publications.hbs 

  Styleguide Publications.Events.List
  */
  /*
  Events Info

  Markup: events-info--publications.hbs 

  Styleguide Publications.Events.Info
  */
  /*
  Subscribe Form

  Markup: forms--publications.hbs

  Styleguide Publications.Forms--Publications
  */
  /*
  Signup

  Markup: signup--publications.hbs

  Styleguide Publications.Forms--Publications.Signup--Publications
  */
  /* field states */
  /* with labels */
  /* Select Dropdown List */
  /*
  Good News Form

  Markup: forms--good-news.hbs

  Styleguide Publications.Forms--Good-News-Form
  */
  /**** See _forms.scss for styles ****/
  /*
  Footer

  Markup: footer--publications.hbs 

  Styleguide Publications.Footer--Publications
  */
  /*
  Header

  Markup: header--publications.hbs

  Styleguide Publications.Header--Publications
  */
  /* Top Nav Dropdown */
  /* Dropdown/Mobile Chevron */
  /* 3rd Level Navigation */
  /*
  Issues

  Markup: issues--publications.hbs 

  Styleguide Publications.Issues
  */
  /*
  Issues - Past Issues

  Markup: past-issues--publications.hbs 

  Styleguide Publications.Issues.Past-Issues
  */
  /*
  Lists

  Markup: lists--publications.hbs 

  Styleguide Publications.Lists
  */
  /*
  Lists-Topic Page

  Markup: topic-page--publications.hbs 

  Styleguide Publications.Lists.Topic
  */
  /*
  Lists-Photo Page

  Markup: photo-page--publications.hbs 

  Styleguide Publications.Lists.Photo 
  */
  /*
  Lists-Articles

  Markup: topics--publications.hbs 

  Styleguide Publications.Lists.Articles
  */
  /* Photo Page */
  /*
  Lists-Books

  Markup: books--publications.hbs 

  Styleguide Publications.Lists.Books
  */
  /*
  Lists-Obituary

  Markup: obituary--publications.hbs 

  Styleguide Publications.Lists.Obituary 
  */
  /*
  Popup

  Markup: popup--publications.hbs

  Styleguide Publications.Popup--Publications
  */
  /*
  Stamps

  Markup: stamps--publications.hbs 

  Styleguide Publications.Stamps--Publications
  */
  /*
  Vertical Stamps

  Please close the left nav menu by pressing `ctrl + l` in order to view the header closer to its ideal width.

  Markup: vertical-thumbnails.hbs

  Styleguide Stamps.Vertical Stamps
  */
  /*
  Slider - Article

  Please close the left nav menu by pressing `ctrl + l` in order to view the header closer to its ideal width.

  Markup: slider-article--publications.hbs

  Styleguide Publications.Slider
  */
  /*
  Slider - Images

  Please close the left nav menu by pressing `ctrl + l` in order to view the header closer to its ideal width.

  Markup: slider-images--publications.hbs

  Styleguide Publications.Slider-Images
  */
  /*
  Primary Posts

  Markup: primary-posts.hbs 

  Styleguide Publications.Primary-Posts
  */
  /*
  Secondary Posts

  Markup: secondary-posts.hbs 

  Styleguide Publications.Secondary-Posts
  */
  /*
  Tertiary Posts

  Markup: tertiary-posts.hbs 

  Styleguide Publications.Tertiary-Posts
  */
  /*
  Article Summary - Good News

  Markup: summary.hbs

  Styleguide Publications.Article--Good-News
  */
  /*
  Sidebar

  Markup: sidebar--publications.hbs 

  Styleguide Publications.Sidebar
  */
  /*
  Calendar

  Markup: calendar.hbs

  Styleguide Calendar
  */
  /*
  Video

  Markup: video.hbs

  Styleguide Video
  */
  /*
  AOC Miscellaneous Styles

  Markup: aoc-misc.hbs 

  Styleguide Misc
  */
}

#aoc .alrightsansbolditalic,
#aoc .alrightsanscebolditalic {
  font-family: "Alright Sans CE Bd It", sans;
  font-display: swap;
  font-style: italic;
  font-weight: normal;
}

#aoc .alrightsansbold,
#aoc .aoc-article-summary__author,
#aoc .aoc-article-summary__date,
#aoc .aoc-pub-tertiary-post__label,
#aoc .aoc-pub-secondary-post__label,
#aoc .aoc-pub-primary-post__label,
#aoc .aoc-pub-slider-counter__button span,
#aoc .aoc-pub-image-slider__tabs .slick-current,
#aoc .aoc-pub-image-slider__tabs .slick-next:before,
#aoc .aoc-pub-image-slider__tabs .slick-prev:before,
#aoc .aoc-pub-image-slider__caption,
#aoc .slick-lightbox-slick-caption,
#aoc .aoc-pub-slider__nav .slick-slider-item:hover,
#aoc .aoc-pub-slider__nav .slick-current,
#aoc .aoc-pub-slider__image-caption .aoc-pub-topic-title,
#aoc .aoc-pub-slider__image-caption a .aoc-pub-topic-title,
#aoc .aoc-pub-slider-container .aoc-pub-latest-news,
#aoc .aoc-pub-popup__close,
#aoc .aoc-pub-popup__button,
#aoc .aoc-pub-topic__hero--label,
#aoc .aoc-pub-past-issues__item--title,
#aoc .aoc-pub-past-issues__nav__next,
#aoc .aoc-pub-past-issues__nav__prev,
#aoc .aoc-pub-past-issues__nav__item,
#aoc .aoc-pub-issue-list__item--subtitle,
#aoc .aoc-pub-issue-list__item--title,
#aoc .aoc-pub-issue-cover--caption,
#aoc .aoc-pub-header__site-menu-item,
#aoc .aoc-pub-header__dropdown-link,
#aoc .aoc-pub-subnav__right__link,
#aoc .aoc-pub-subnav__left__link,
#aoc .aoc-pub-signup__form input[type=submit],
#aoc .aoc-pub-signup__title,
#aoc .aoc-pub-button,
#aoc .aoc-pub-forms__subscribe__title,
#aoc .aoc-pub-event__subtitle,
#aoc .aoc-pub-event__title,
#aoc .aoc-pub-headers-h4,
#aoc .aoc-pub-events-nav__item.active,
#aoc .aoc-pub-classifieds-post__title,
#aoc .aoc-pub-headers-h3,
#aoc .aoc-pub-classifieds-sidebar__title,
#aoc .aoc-pub-article-hero__caption,
#aoc .aoc-pub-article__header--label,
#aoc .aoc-pub-article__topics__title,
#aoc .aoc-pub-article__book-summary__info,
#aoc .aoc-button,
#aoc .gsc-results .gsc-cursor-box .gsc-cursor-page,
#aoc .aoc-form__input--file + label,
#aoc .aoc-post__content .aoc-ul__unstyled .aoc-ul-title,
#aoc .aoc-post__content .aoc-pub-sublist__dropdown .aoc-ul-title,
#aoc .aoc-post__content .aoc-pub-nav-bar__sublist .aoc-ul-title,
#aoc .aoc-post__content .aoc-sublist__dropdown .aoc-ul-title,
#aoc .aoc-post__content .aoc-nav-bar__sublist .aoc-ul-title,
#aoc .aoc-post__content .aoc-sidenav .aoc-sidenav__list .aoc-ul-title,
#aoc .aoc-sidenav .aoc-post__content .aoc-sidenav__list .aoc-ul-title,
#aoc .aoc-post__content .aoc-sidenav .aoc-sidenav__sublist .aoc-ul-title,
#aoc .aoc-sidenav .aoc-post__content .aoc-sidenav__sublist .aoc-ul-title,
#aoc .aoc-post__contact strong,
#aoc .aoc-center-content__subtitle--light,
#aoc .aoc-headers-h5,
#aoc .aoc-pub-headers-h5,
#aoc .aoc-center-content__subtitle--bold,
#aoc .aoc-center-content__h3,
#aoc .aoc-accordion__header,
#aoc .aoc-headers-h4,
#aoc .aoc-headers-h3,
#aoc .gs-result .gs-title,
#aoc .gs-result .gs-title *,
#aoc b,
#aoc strong,
#aoc .alrightsanscebold {
  font-family: "Alright Sans CE Bd", sans-serif;
  font-display: swap;
  font-style: normal;
  font-weight: normal;
}

#aoc .alrightsansmedium,
#aoc .alrightsanscelightbold {
  font-family: "Alright Sans CE Lt Bd", sans-serif;
  font-display: swap;
  font-style: normal;
  font-weight: normal;
}

#aoc .alrightsansmediumitalic,
#aoc .alrightsanscelightbolditalic {
  font-family: "Alright Sans CE Lt Bd It", sans-serif;
  font-display: swap;
  font-style: italic;
  font-weight: normal;
}

#aoc .aoc-pub-form__input-field::-webkit-input-placeholder {
  font-family: "Alright Sans CE Lt", sans-serif;
  font-display: swap;
  font-style: normal;
  font-weight: normal;
}

#aoc .aoc-pub-form__input-field::-moz-placeholder {
  font-family: "Alright Sans CE Lt", sans-serif;
  font-display: swap;
  font-style: normal;
  font-weight: normal;
}

#aoc .aoc-pub-form__input-field:-ms-input-placeholder {
  font-family: "Alright Sans CE Lt", sans-serif;
  font-display: swap;
  font-style: normal;
  font-weight: normal;
}

#aoc .aoc-pub-form__input-field::-ms-input-placeholder {
  font-family: "Alright Sans CE Lt", sans-serif;
  font-display: swap;
  font-style: normal;
  font-weight: normal;
}

#aoc .alrightsanslight,
#aoc .gsc-control-cse .gsc-table-result,
#aoc .cse .gsc-control-cse,
#aoc .gsc-control-cse,
#aoc .fc-title,
#aoc .aoc-article-summary__title,
#aoc .aoc-pub-slider-counter__button--fullscreen,
#aoc .aoc-pub-slider-counter__button,
#aoc .aoc-pub-image-slider__title,
#aoc .aoc-pub-slider__image-caption .aoc-pub-article-title,
#aoc .aoc-pub-thumbnails-vertical__wrapper p,
#aoc .aoc-pub-popup__subtitle,
#aoc .aoc-pub-popup__title,
#aoc .aoc-pub-books__subtitle,
#aoc .aoc-pub-books,
#aoc .aoc-pub-list-topic__content,
#aoc .aoc-pub-topic__hero--caption,
#aoc .aoc-pub-topic__hero--title,
#aoc .aoc-pub-search-bar__input,
#aoc .aoc-pub-header__description,
#aoc .aoc-pub-signup__form input[type=text],
#aoc .aoc-pub-forms__subscribe__extend input[type=text],
#aoc .aoc-pub-form__input-field::placeholder,
#aoc .aoc-pub-form__input-field,
#aoc .aoc-pub-headers-h2,
#aoc .aoc-pub-tertiary-post__title,
#aoc .aoc-pub-secondary-post__title,
#aoc .aoc-pub-primary-post__title,
#aoc .aoc-pub-books__title,
#aoc .aoc-pub-list-topic__content--title,
#aoc .aoc-pub-page-title,
#aoc .aoc-pub-article-banner__title,
#aoc .aoc-pub-article__header--author,
#aoc .aoc-pub-article__header--subtitle,
#aoc .aoc-pub-article__header--title,
#aoc .aoc-pub-headers-h1,
#aoc .aoc-header--subsite,
#aoc .aoc-slider__title,
#aoc .aoc-center-content__intro,
#aoc .aoc-headers-h1,
#aoc .alrightsanscelight {
  font-family: "Alright Sans CE Lt", sans-serif;
  font-display: swap;
  font-style: normal;
  font-weight: normal;
}

#aoc .alrightsanslightitalic,
#aoc .alrightsanscelightitalic {
  font-family: "Alright Sans CE Lt It", sans-serif;
  font-display: swap;
  font-style: italic;
  font-weight: normal;
}

#aoc html,
#aoc body,
#aoc div,
#aoc span,
#aoc applet,
#aoc object,
#aoc iframe,
#aoc h1,
#aoc h2,
#aoc h3,
#aoc h4,
#aoc h5,
#aoc h6,
#aoc p,
#aoc blockquote,
#aoc pre,
#aoc a,
#aoc abbr,
#aoc acronym,
#aoc address,
#aoc big,
#aoc cite,
#aoc code,
#aoc del,
#aoc dfn,
#aoc em,
#aoc img,
#aoc ins,
#aoc kbd,
#aoc q,
#aoc s,
#aoc samp,
#aoc small,
#aoc strike,
#aoc strong,
#aoc sub,
#aoc sup,
#aoc tt,
#aoc var,
#aoc b,
#aoc u,
#aoc i,
#aoc center,
#aoc fieldset,
#aoc form,
#aoc label,
#aoc legend,
#aoc table,
#aoc caption,
#aoc tbody,
#aoc tfoot,
#aoc thead,
#aoc tr,
#aoc th,
#aoc td,
#aoc article,
#aoc aside,
#aoc canvas,
#aoc details,
#aoc embed,
#aoc figure,
#aoc figcaption,
#aoc footer,
#aoc header,
#aoc hgroup,
#aoc menu,
#aoc nav,
#aoc output,
#aoc ruby,
#aoc summary,
#aoc time,
#aoc mark,
#aoc audio,
#aoc video {
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

#aoc html,
#aoc body {
  margin: 0;
  padding: 0;
}

#aoc body {
  font-family: "Alright Sans Light", sans-serif;
  color: #000;
  font-size: 17px;
}

#aoc a {
  color: inherit;
  text-decoration: none;
}

#aoc .aoc-primary-colors--light {
  background-color: #fff;
}

#aoc .aoc-primary-colors--medium-light {
  background-color: #ffffe6;
}

#aoc .aoc-primary-colors--medium {
  background-color: #D71920;
}

#aoc .aoc-primary-colors--medium-dark {
  background-color: #878787;
}

#aoc .aoc-primary-colors--dark {
  background-color: #000;
}

#aoc .aoc-footer--bg {
  background-color: #FDFAE9;
}

#aoc .aoc-footer--alt-bg {
  background-color: #d9eef8;
}

#aoc .aoc-schools-red {
  background-color: #D71920;
}

#aoc .aoc-blue {
  background-color: #1A568A;
}

#aoc .aoc-green {
  background-color: #73B564;
}

#aoc .aoc-headers-h1 {
  font-size: 3.2941176471em;
  margin: 0;
}

#aoc .aoc-headers-h2 {
  font-size: 1.6470588235em;
  margin: 0 0 8px 0;
}

#aoc .aoc-headers-h3,
#aoc .gs-result .gs-title,
#aoc .gs-result .gs-title * {
  font-size: 1.0588235294em;
  line-height: 22px;
  margin: 0;
}

#aoc .aoc-headers-h4 {
  font-size: 1.0588235294em;
  line-height: 22px;
  margin: 0 0 0.5882352941em;
  text-transform: uppercase;
}

#aoc .aoc-headers-h5,
#aoc .aoc-pub-headers-h5 {
  margin: 0;
}

#aoc .aoc-link {
  color: #008DD0;
  line-height: 19px;
}

#aoc .aoc-paragraph,
#aoc .gs-bidi-start-align.gs-snippet {
  color: #000;
  font-size: 100%;
  line-height: 22px;
}

#aoc .aoc-ul__unstyled,
#aoc .aoc-pub-header__site-mobile-menu__item .aoc-pub-nav-bar__sublist,
#aoc .aoc-pub-sublist__dropdown,
#aoc .aoc-pub-nav-bar__sublist,
#aoc .aoc-sublist__dropdown,
#aoc .aoc-nav-bar__sublist,
#aoc .aoc-sidenav .aoc-sidenav__list,
#aoc .aoc-sidenav .aoc-sidenav__sublist,
#aoc .aoc-header__nav-bar,
#aoc .aoc-social-media,
#aoc .aoc-accordion {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}

#aoc .aoc-ul li,
#aoc .aoc-pub-ul li,
#aoc .aoc-ol li {
  line-height: 1.2941176471em;
  margin-bottom: 0.4705882353em;
}

#aoc .aoc-pagination,
#aoc .gsc-cursor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0;
  width: 100%;
}

#aoc .aoc-pagination a,
#aoc .gsc-cursor a {
  color: #fff;
}

#aoc .aoc-pagination .aoc-button,
#aoc .aoc-pagination .gsc-results .gsc-cursor-box .gsc-cursor-page,
#aoc .gsc-results .gsc-cursor-box .aoc-pagination .gsc-cursor-page,
#aoc .gsc-cursor .aoc-button,
#aoc .gsc-cursor .gsc-results .gsc-cursor-box .gsc-cursor-page,
#aoc .gsc-results .gsc-cursor-box .gsc-cursor .gsc-cursor-page,
#aoc .aoc-pagination .aoc-form__input--file + label,
#aoc .gsc-cursor .aoc-form__input--file + label {
  font-size: 1.2352941176em;
  margin-right: 0.7058823529em;
  min-width: 2.0588235294em;
  text-align: center;
}

@media screen and (max-width: 515px) {
  #aoc .aoc-pagination .aoc-button,
  #aoc .aoc-pagination .gsc-results .gsc-cursor-box .gsc-cursor-page,
  #aoc .gsc-results .gsc-cursor-box .aoc-pagination .gsc-cursor-page,
  #aoc .gsc-cursor .aoc-button,
  #aoc .gsc-cursor .gsc-results .gsc-cursor-box .gsc-cursor-page,
  #aoc .gsc-results .gsc-cursor-box .gsc-cursor .gsc-cursor-page,
  #aoc .aoc-pagination .aoc-form__input--file + label,
  #aoc .gsc-cursor .aoc-form__input--file + label {
    min-width: 1.4705882353em;
  }
}

#aoc .aoc-pagination a.aoc-button.selected,
#aoc .aoc-pagination .gsc-results .gsc-cursor-box a.selected.gsc-cursor-page,
#aoc .gsc-results .gsc-cursor-box .aoc-pagination a.selected.gsc-cursor-page,
#aoc .gsc-cursor a.aoc-button.selected,
#aoc .gsc-cursor .gsc-results .gsc-cursor-box a.selected.gsc-cursor-page,
#aoc .gsc-results .gsc-cursor-box .gsc-cursor a.selected.gsc-cursor-page {
  opacity: 0.8;
}

#aoc .aoc-table-contracts {
  max-width: 600px;
  width: 100%;
}

#aoc .aoc-table-contracts tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
}

#aoc .aoc-table-contracts tr:first-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

#aoc .aoc-table-contracts tr:nth-child(2) {
  margin-top: 10px;
}

#aoc .aoc-table-contracts tr:hover {
  background: rgba(0, 0, 0, 0.1);
}

#aoc .aoc-table-contracts tr:hover:first-child {
  background: transparent;
}

#aoc .aoc-table-contracts tr td {
  min-height: 27px;
  padding-top: 5px;
  padding-bottom: 5px;
  vertical-align: bottom;
}

#aoc .aoc-table-contracts tr td:first-child {
  width: 65%;
  padding-left: 5px;
}

#aoc .aoc-table-contracts tr td:last-child {
  width: 32%;
  padding-right: 5px;
}

#aoc .aoc-accordion__container {
  border-bottom: 1px solid #ccc;
}

#aoc .aoc-accordion__container:first-of-type {
  border-top: 1px solid #ccc;
  margin: -1px;
}

#aoc .aoc-accordion__container.bio-summary,
#aoc .aoc-accordion__container.bio-summary:first-of-type {
  border: none;
}

#aoc .aoc-accordion__container--expanded .aoc-accordion__chevron {
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

#aoc .aoc-accordion__header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 3.41176em;
}

#aoc .aoc-accordion__header a {
  width: 95%;
}

#aoc .aoc-accordion__chevron,
#aoc .aoc-accordion__close {
  color: #D71920;
  height: 1.1764705882em;
  width: 1.1764705882em;
}

#aoc .aoc-accordion__chevron {
  -ms-flex-item-align: center;
  align-self: center;
  margin-left: auto;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  margin-right: 0.5294117647em;
}

#aoc .aoc-accordion__close {
  cursor: pointer;
  position: absolute;
  bottom: -24px;
  right: 0.5294117647em;
}

#aoc .aoc-accordion__body {
  display: none;
  padding-right: 1.7647058824em;
  margin-bottom: 2.05882em;
  position: relative;
  /* span {
      line-height: 44px;
  }
  span p {
      margin: 0;
      padding: 0;
      &+p {
          margin-top: 44px;
      }
  } */
}

#aoc .aoc-center-content {
  width: 100%;
}

#aoc .aoc-center-content__intro {
  color: #4d4d4d;
  font-size: 1.4117647059em;
  line-height: normal;
  margin-bottom: 22px;
}

@media screen and (max-width: 1080px) {
  #aoc .aoc-center-content__intro {
    font-size: 18px;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-center-content__intro {
    font-size: 1.1764705882em;
  }
}

#aoc .aoc-center-content__h3 {
  margin: 14px 0;
}

#aoc .aoc-center-content p {
  line-height: normal;
}

#aoc .aoc-center-content__block,
#aoc .aoc-pub-obituary {
  border-top: 1px solid #CCC;
  padding: 0.8235294118em 0;
  width: 100%;
}

@media screen and (max-width: 324px) {
  #aoc .aoc-center-content__block,
  #aoc .aoc-pub-obituary {
    padding-bottom: 0;
  }
}

#aoc .aoc-center-content__subtitle--bold {
  font-size: 1.4117647059em;
  line-height: normal;
  margin: 0.5882352941em 0 0.2352941176em 0;
}

@media screen and (max-width: 515px) {
  #aoc .aoc-center-content__subtitle--bold {
    margin-bottom: 0.5em;
  }
}

#aoc .aoc-center-content__subtitle--light,
#aoc .aoc-headers-h5,
#aoc .aoc-pub-headers-h5 {
  color: #878787;
  font-size: 1.0588235294em;
}

#aoc .aoc-post__content {
  margin-top: 0.7058823529em;
}

#aoc .aoc-post__contact {
  margin-top: 0.7058823529em;
}

#aoc .aoc-article-1 {
  line-height: normal;
  overflow: hidden;
  width: 100%;
}

#aoc .aoc-article-1__img {
  display: block;
  float: left;
  height: auto;
  margin-bottom: 1.0588235294em;
  margin-right: 1.0588235294em;
  max-width: 100%;
  width: 300px;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-article-1__img {
    float: none;
  }
}

#aoc .aoc-article-1 p {
  margin-top: 0;
}

#aoc .aoc-article-2 {
  line-height: normal;
  overflow: hidden;
  width: 100%;
}

#aoc .aoc-article-2__img {
  display: block;
  height: auto;
  margin-bottom: 1.0588235294em;
  max-height: 30.1176470588em;
  max-width: 100%;
  width: 50%;
}

#aoc .aoc-bio-main {
  line-height: normal;
  overflow: hidden;
  width: 100%;
}

#aoc .aoc-bio-main__img {
  display: block;
  float: left;
  height: auto;
  margin-bottom: 1.0588235294em;
  margin-right: 1.0588235294em;
  max-width: 100%;
  width: 300px;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-bio-main__img {
    float: none;
  }
}

#aoc .aoc-bio-main p {
  margin-top: 0;
}

#aoc .aoc-bio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-bio {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#aoc .aoc-bio__column {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  margin-left: 1.7647058824em;
  margin-top: -0.1176470588em;
}

@media screen and (max-width: 560px) {
  #aoc .aoc-bio__column {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin: 1.4705882353em 0 1.0588235294em 0;
  }
}

#aoc .aoc-bio__subtitle {
  font-size: 1.1176470588em;
  margin-top: 0;
}

#aoc .aoc-bio__img-wrap {
  width: 100%;
  max-width: 150px;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-bio__img-wrap {
    max-width: 100%;
  }
}

#aoc .aoc-bio__img {
  -ms-flex-item-align: start;
  align-self: flex-start;
  display: block;
  max-width: 140px;
  width: auto;
}

#aoc .aoc-bio__content {
  margin: 1.1764705882em 0 0.5882352941em;
  line-height: normal;
}

#aoc .aoc-bio__content a {
  color: #008DD0;
}

#aoc .aoc-bio-2 h3 {
  margin-bottom: 14px;
  margin-top: 0;
}

#aoc .aoc-bio-2__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.5882352941em;
  overflow: hidden;
  width: 100%;
}

#aoc .aoc-bio-2__images img:nth-child(2) {
  margin-left: 1.7647058824em;
}

#aoc .aoc-bio-2__content {
  margin-left: 0;
  margin-top: 1.0588235294em;
}

#aoc .aoc-bio-2__content .aoc-ul__unstyled,
#aoc .aoc-bio-2__content .aoc-pub-sublist__dropdown,
#aoc .aoc-bio-2__content .aoc-pub-nav-bar__sublist,
#aoc .aoc-bio-2__content .aoc-sublist__dropdown,
#aoc .aoc-bio-2__content .aoc-nav-bar__sublist,
#aoc .aoc-bio-2__content .aoc-sidenav .aoc-sidenav__list,
#aoc .aoc-sidenav .aoc-bio-2__content .aoc-sidenav__list,
#aoc .aoc-bio-2__content .aoc-sidenav .aoc-sidenav__sublist,
#aoc .aoc-sidenav .aoc-bio-2__content .aoc-sidenav__sublist {
  margin-bottom: 1.0588235294em;
}

#aoc .aoc-bio-2__content .aoc-ul__unstyled.aoc-bio-2__info li,
#aoc .aoc-bio-2__content .aoc-bio-2__info.aoc-pub-sublist__dropdown li,
#aoc .aoc-bio-2__content .aoc-bio-2__info.aoc-pub-nav-bar__sublist li,
#aoc .aoc-bio-2__content .aoc-bio-2__info.aoc-sublist__dropdown li,
#aoc .aoc-bio-2__content .aoc-bio-2__info.aoc-nav-bar__sublist li,
#aoc .aoc-bio-2__content .aoc-sidenav .aoc-bio-2__info.aoc-sidenav__list li,
#aoc .aoc-sidenav .aoc-bio-2__content .aoc-bio-2__info.aoc-sidenav__list li,
#aoc .aoc-bio-2__content .aoc-sidenav .aoc-bio-2__info.aoc-sidenav__sublist li,
#aoc .aoc-sidenav .aoc-bio-2__content .aoc-bio-2__info.aoc-sidenav__sublist li {
  margin-bottom: 0.4705882353em;
}

#aoc .aoc-bio-2__content h3 {
  margin-bottom: 10px;
}

#aoc .aoc-bio-2__content .aoc-ul__unstyled li,
#aoc .aoc-bio-2__content .aoc-pub-sublist__dropdown li,
#aoc .aoc-bio-2__content .aoc-pub-nav-bar__sublist li,
#aoc .aoc-bio-2__content .aoc-sublist__dropdown li,
#aoc .aoc-bio-2__content .aoc-nav-bar__sublist li,
#aoc .aoc-bio-2__content .aoc-sidenav .aoc-sidenav__list li,
#aoc .aoc-sidenav .aoc-bio-2__content .aoc-sidenav__list li,
#aoc .aoc-bio-2__content .aoc-sidenav .aoc-sidenav__sublist li,
#aoc .aoc-sidenav .aoc-bio-2__content .aoc-sidenav__sublist li {
  margin-bottom: 0;
}

#aoc .aoc-bio-2 .aoc-accordion__qa-container {
  border-bottom: none;
}

#aoc .aoc-bio-2 .aoc-accordion__qa-container:first-of-type {
  border-top: none;
}

#aoc .aoc-directory-list .aoc-post {
  padding-bottom: 0.3529411765em;
}

#aoc .aoc-post__content .aoc-ul__unstyled,
#aoc .aoc-post__content .aoc-pub-header__site-mobile-menu__item .aoc-pub-nav-bar__sublist,
#aoc .aoc-pub-header__site-mobile-menu__item .aoc-post__content .aoc-pub-nav-bar__sublist,
#aoc .aoc-post__content .aoc-pub-sublist__dropdown,
#aoc .aoc-post__content .aoc-pub-nav-bar__sublist,
#aoc .aoc-post__content .aoc-sublist__dropdown,
#aoc .aoc-post__content .aoc-nav-bar__sublist,
#aoc .aoc-post__content .aoc-sidenav .aoc-sidenav__list,
#aoc .aoc-sidenav .aoc-post__content .aoc-sidenav__list,
#aoc .aoc-post__content .aoc-sidenav .aoc-sidenav__sublist,
#aoc .aoc-sidenav .aoc-post__content .aoc-sidenav__sublist {
  line-height: 1.5294117647em;
}

#aoc .aoc-post__content .aoc-ul__unstyled a,
#aoc .aoc-post__content .aoc-pub-header__site-mobile-menu__item .aoc-pub-nav-bar__sublist a,
#aoc .aoc-pub-header__site-mobile-menu__item .aoc-post__content .aoc-pub-nav-bar__sublist a,
#aoc .aoc-post__content .aoc-pub-sublist__dropdown a,
#aoc .aoc-post__content .aoc-pub-nav-bar__sublist a,
#aoc .aoc-post__content .aoc-sublist__dropdown a,
#aoc .aoc-post__content .aoc-nav-bar__sublist a,
#aoc .aoc-post__content .aoc-sidenav .aoc-sidenav__list a,
#aoc .aoc-sidenav .aoc-post__content .aoc-sidenav__list a,
#aoc .aoc-post__content .aoc-sidenav .aoc-sidenav__sublist a,
#aoc .aoc-sidenav .aoc-post__content .aoc-sidenav__sublist a {
  color: #008DD0;
}

#aoc .aoc-post__content .aoc-ul__unstyled .aoc-ul-title,
#aoc .aoc-post__content .aoc-pub-sublist__dropdown .aoc-ul-title,
#aoc .aoc-post__content .aoc-pub-nav-bar__sublist .aoc-ul-title,
#aoc .aoc-post__content .aoc-sublist__dropdown .aoc-ul-title,
#aoc .aoc-post__content .aoc-nav-bar__sublist .aoc-ul-title,
#aoc .aoc-post__content .aoc-sidenav .aoc-sidenav__list .aoc-ul-title,
#aoc .aoc-sidenav .aoc-post__content .aoc-sidenav__list .aoc-ul-title,
#aoc .aoc-post__content .aoc-sidenav .aoc-sidenav__sublist .aoc-ul-title,
#aoc .aoc-sidenav .aoc-post__content .aoc-sidenav__sublist .aoc-ul-title {
  color: #000;
}

#aoc .aoc-post__content .aoc-ul__unstyled strong,
#aoc .aoc-post__content .aoc-pub-header__site-mobile-menu__item .aoc-pub-nav-bar__sublist strong,
#aoc .aoc-pub-header__site-mobile-menu__item .aoc-post__content .aoc-pub-nav-bar__sublist strong,
#aoc .aoc-post__content .aoc-pub-sublist__dropdown strong,
#aoc .aoc-post__content .aoc-pub-nav-bar__sublist strong,
#aoc .aoc-post__content .aoc-sublist__dropdown strong,
#aoc .aoc-post__content .aoc-nav-bar__sublist strong,
#aoc .aoc-post__content .aoc-sidenav .aoc-sidenav__list strong,
#aoc .aoc-sidenav .aoc-post__content .aoc-sidenav__list strong,
#aoc .aoc-post__content .aoc-sidenav .aoc-sidenav__sublist strong,
#aoc .aoc-sidenav .aoc-post__content .aoc-sidenav__sublist strong {
  color: #878787;
}

#aoc .aoc-post__content .aoc-ul__unstyled,
#aoc .aoc-post__content .aoc-pub-header__site-mobile-menu__item .aoc-pub-nav-bar__sublist,
#aoc .aoc-pub-header__site-mobile-menu__item .aoc-post__content .aoc-pub-nav-bar__sublist,
#aoc .aoc-post__content .aoc-pub-sublist__dropdown,
#aoc .aoc-post__content .aoc-pub-nav-bar__sublist,
#aoc .aoc-post__content .aoc-sublist__dropdown,
#aoc .aoc-post__content .aoc-nav-bar__sublist,
#aoc .aoc-post__content .aoc-sidenav .aoc-sidenav__list,
#aoc .aoc-sidenav .aoc-post__content .aoc-sidenav__list,
#aoc .aoc-post__content .aoc-sidenav .aoc-sidenav__sublist,
#aoc .aoc-sidenav .aoc-post__content .aoc-sidenav__sublist {
  margin-bottom: 1.1764705882em;
}

#aoc .aoc-post__content.radio-content {
  margin: 0.70588em 0;
}

#aoc .aoc-schedule {
  border-collapse: collapse;
  display: block;
  margin: 0 0 -1px 0;
  padding: 0;
  width: 100%;
}

#aoc .aoc-schedule tr {
  border-top: 1px solid #CCC;
}

#aoc .aoc-schedule tr:last-child {
  border-bottom: 1px solid #CCC;
}

#aoc .aoc-schedule td {
  padding: 0.5882352941em;
}

#aoc .aoc-schedule td.aoc-schedule-empty {
  border-top: 1px solid #fff;
}

#aoc .aoc-schedule td.aoc-schedule__date-time {
  min-width: 101px;
  padding-left: 0;
  white-space: nowrap;
}

@media screen and (max-width: 324px) {
  #aoc .aoc-schedule td.aoc-schedule__date-time {
    min-width: 70px;
  }
}

#aoc .aoc-schedule td.aoc-schedule__details {
  width: 100%;
}

#aoc .aoc-center-content__block.aoc-post div.aoc-post__content,
#aoc .aoc-post.aoc-pub-obituary div.aoc-post__content {
  margin-top: 0;
  margin-bottom: 0.2352941176em;
}

#aoc .aoc-post__content h3,
#aoc .aoc-post__content h3.aoc-center-content__subtitle--bold {
  line-height: normal;
  margin-bottom: 0.5882352941em;
  margin-top: 0;
}

#aoc .aoc-accordion__body .aoc-center-content__block.aoc-post:first-child,
#aoc .aoc-accordion__body .aoc-post.aoc-pub-obituary:first-child {
  border-top: 0;
}

#aoc .aoc-statements {
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-statements {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#aoc .aoc-statements__img {
  display: block;
  height: 100%;
  margin-right: 1.7647058824em;
  max-height: 180px;
  max-width: 100%;
  width: 140px;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-statements__img {
    float: none;
    margin: 1.4705882353em 0 0 0;
  }
}

#aoc .aoc-statements__column {
  margin-top: -0.1176470588em;
}

#aoc .aoc-statements__column h3.aoc-center-content__subtitle--bold {
  margin-top: 0;
}

#aoc .aoc-news-release-1 {
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-news-release-1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#aoc .aoc-news-release-1__img {
  display: block;
  height: 100%;
  margin-right: 1.7647058824em;
  max-height: 180px;
  max-width: 100%;
  padding-bottom: 10px;
  width: 140px;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-news-release-1__img {
    float: none;
    margin: 1.4705882353em 0 0 0;
  }
}

#aoc .aoc-news-release-1__column {
  margin-top: -0.1176470588em;
}

#aoc .aoc-news-release-1__column h3.aoc-center-content__subtitle--bold {
  margin-top: 0;
}

#aoc .aoc-news .aoc-button,
#aoc .aoc-news .gsc-results .gsc-cursor-box .gsc-cursor-page,
#aoc .gsc-results .gsc-cursor-box .aoc-news .gsc-cursor-page,
#aoc .aoc-news .aoc-form__input--file + label {
  margin: 0.5882352941em 1.1764705882em 0 0;
}

#aoc .aoc-news__unordered-list {
  margin-left: 1.1764705882em;
  padding: 0;
}

#aoc .aoc-news__unordered-list li {
  margin-bottom: 0.9411764706em;
}

#aoc .aoc-news h3.aoc-center-content__subtitle--bold {
  margin-top: 0;
}

#aoc .aoc-news-release-2 .aoc-center-content__subtitle {
  margin-bottom: 18px;
}

#aoc .aoc-news-release-2 {
  border-top: none;
}

#aoc .aoc-news-release-2 img {
  height: auto;
  /* margin: 18px 0; */
  width: 100%;
}

@media screen and (min-width: 1025px) {
  #aoc .aoc-hero-banner-aapeal {
    margin-top: -18px;
  }
}

#aoc .aoc-hero-banner-aapeal .aoc-slider__title {
  overflow: hidden;
}

#aoc .aoc-hero-banner-aapeal .aoc-slider__title em {
  font-style: normal;
}

#aoc .aoc-hero-banner-aapeal .aoc-slider.owl-carousel h1.aoc-slider__title em {
  font-size: 42px;
  line-height: 48px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-hero-banner-aapeal .aoc-slider.owl-carousel h1.aoc-slider__title em {
    display: block;
    font-weight: 100;
    font-size: 24px !important;
    font-style: normal;
    line-height: 30px !important;
    margin-bottom: 0 !important;
  }
}

#aoc .aoc-hero-banner-aapeal .aoc-slider.owl-carousel h1.aoc-slider__title span {
  display: block;
  font-family: "Alright Sans CE Bd", sans-serif;
  font-size: 1.5rem;
  /* 18pt; */
  line-height: 24px;
  height: auto;
  max-width: 415px;
  margin-left: 0;
  margin-top: 15px;
}

#aoc .aoc-fcc-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 18px auto 2.125rem auto;
  max-width: 1366px;
  /* 930px; */
  padding: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (min-width: 1091px) {
  #aoc .aoc-fcc-list {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-fcc-list {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 960px) {
  #aoc .aoc-fcc-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  #aoc .aoc-fcc-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 22px;
    padding-right: 22px;
  }
}

#aoc .aoc-fcc-list li {
  margin: 0 0 2.33rem 0;
  max-width: unset;
  padding: 0;
  width: calc(25% - 12px);
}

@media screen and (max-width: 960px) {
  #aoc .aoc-fcc-list li {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    width: calc(50% - 18px);
  }
}

@media screen and (max-width: 580px) {
  #aoc .aoc-fcc-list li {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    width: 100%;
  }
}

#aoc .aoc-fcc-list li .aoc-fcc-title-block {
  background-color: #D71920;
  background-position: center center;
  background-size: cover;
  color: #fff;
  margin-bottom: 1.75rem;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-fcc-list li .aoc-fcc-title-block {
    background-position: top center;
    padding-bottom: 66.66%;
  }
}

#aoc .aoc-fcc-list li .aoc-fcc-title-block h2 {
  font-size: 30px;
  line-height: 34px;
  left: 14px;
  margin: 0;
  position: absolute;
  top: 13px;
  width: calc(100% - 25px);
}

#aoc .aoc-fcc-list li .aoc-fcc-content-blurb {
  font-weight: 200;
  font-size: 1.166rem;
  line-height: 1.5rem;
  margin-bottom: 2.33rem;
}

#aoc .aoc-fcc-list li .aoc-fcc-link-block a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #0d5e7a;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
  font-family: "Alright Sans CE Bd", sans-serif;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  min-height: 43px;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
}

#aoc .aoc-aapeal-tribute {
  font-weight: light;
  color: #000000;
  font-size: 2rem;
  line-height: 2.5rem;
  margin: 0 auto;
  max-width: 1366px;
  /* 930px; */
  padding-bottom: 2.125rem;
  padding-left: 50px;
  padding-right: 50px;
}

@media screen and (min-width: 1091px) {
  #aoc .aoc-aapeal-tribute {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-aapeal-tribute {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 768px) {
  #aoc .aoc-aapeal-tribute {
    padding-left: 22px;
    padding-right: 22px;
  }
}

#aoc .aoc-aapeal-tribute hr {
  height: 4px;
  background-color: #73b564;
  margin: 10px 0 0 0;
}

#aoc .aoc-aapeal-tribute h2 {
  font-family: "Alright Sans CE Bd", sans-serif;
  font-weight: 400;
  color: #73b564;
  font-size: 3rem;
  padding-top: 1.0625rem;
  margin-bottom: 1.3125rem;
}

@media screen and (min-width: 769px) {
  #aoc .aoc-aapeal-tribute h2 {
    font-size: 36px;
    line-height: 36px;
  }
}

@media screen and (max-width: 768px) {
  #aoc .aoc-aapeal-tribute h2 {
    font-size: 28px;
    line-height: 28px;
  }
}

#aoc .aoc-aapeal-tribute p {
  font-size: 24px;
  line-height: 30px;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-aapeal-tribute p {
    ffont-size: 18px;
    line-height: 24px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav {
    margin-top: 41px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-sidenav {
    margin-top: 20px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__list,
  #aoc .aoc-sidenav .aoc-sidenav__sublist {
    background-color: #fafafa;
  }
}

#aoc .aoc-sidenav .aoc-sidenav__sublist {
  padding-left: 0.8235294118em;
  display: none;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__sublist .aoc-sidenav__list li {
    margin-left: 0em;
    padding-left: 0em;
  }

  #aoc .aoc-sidenav .aoc-sidenav__sublist .aoc-sidenav__list li:last-child {
    border-bottom: none;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li.selected,
  #aoc .aoc-sidenav .aoc-sidenav__item__has-children > a:first-child {
    border-bottom: 2px solid #d7d7d7;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__list .aoc-sidenav__item__has-children {
    border-bottom: none;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__list .aoc-sidenav__item__has-children:first-child {
    border-top: 2px solid #d7d7d7;
  }
}

#aoc .aoc-sidenav .aoc-sidenav__list li a,
#aoc .aoc-sidenav .aoc-sidenav__sublist li a,
#aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a {
  background-color: transparent;
  color: #000;
  display: block;
  line-height: normal;
  margin: 0;
  padding: 0 0 0 0.8235294118em;
  text-decoration: none;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li a,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li a,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a {
    font-size: 1.2352941176em;
    line-height: normal;
    margin: 0;
    padding: 15px 30px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li a,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li a,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a {
    line-height: normal;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li a,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li a,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a {
    padding: 10px 10px;
  }
}

#aoc .aoc-sidenav .aoc-sidenav__list li a,
#aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a {
  padding: 0.4117647059em 1.5882352941em 0.2941176471em 0.8235294118em;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li a,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a {
    padding: 15px 30px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li a,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a {
    line-height: normal;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li a,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a {
    padding: 10px 10px;
  }
}

#aoc .aoc-sidenav .aoc-sidenav__sublist li:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}

#aoc .aoc-sidenav .aoc-sidenav__list li.selected > a:first-child,
#aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a,
#aoc .aoc-sidenav .aoc-sidenav__list li.selected:hover > a:first-child,
#aoc .aoc-sidenav .aoc-sidenav__list li:hover .aoc-sidenav__sublist li.selected a,
#aoc .aoc-sidenav .aoc-sidenav__list li.aoc-sidenav__item__has-children.aoc-sidenav__item__has-children--show .aoc-sidenav__sublist li.selected a:hover {
  background-color: #D71920;
  color: #fff;
  display: block;
}

#aoc .aoc-sidenav .aoc-sidenav__list li.selected .aoc-sidenav__sublist li.selected a {
  padding: 0 0 0 0.5882352941em;
}

#aoc .aoc-sidenav .aoc-sidenav__list li:hover .aoc-sidenav__sublist li a {
  background: transparent;
}

#aoc .aoc-sidenav .aoc-sidenav__list li a:hover,
#aoc .aoc-sidenav .aoc-sidenav__list li.aoc-sidenav__item__has-children.aoc-sidenav__item__has-children--show .aoc-sidenav__sublist li a:hover {
  background-color: #E8EEF3;
  color: #000;
  display: block;
  line-height: normal;
  margin: 0;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li a:hover,
  #aoc .aoc-sidenav .aoc-sidenav__list li.aoc-sidenav__item__has-children.aoc-sidenav__item__has-children--show .aoc-sidenav__sublist li a:hover {
    line-height: normal;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li a:hover,
  #aoc .aoc-sidenav .aoc-sidenav__list li.aoc-sidenav__item__has-children.aoc-sidenav__item__has-children--show .aoc-sidenav__sublist li a:hover {
    padding: 10px 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li a:hover,
  #aoc .aoc-sidenav .aoc-sidenav__list li.aoc-sidenav__item__has-children.aoc-sidenav__item__has-children--show .aoc-sidenav__sublist li a:hover {
    padding: 10px 10px;
  }
}

#aoc .aoc-sidenav .aoc-sidenav__list li.selected a:hover,
#aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a:hover {
  color: #fff;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__sublist li a {
    padding-left: 30px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-sidenav .aoc-sidenav__sublist li a {
    line-height: normal;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-sidenav .aoc-sidenav__sublist li a {
    padding: 10px 10px;
  }
}

@media screen and (max-width: 515px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li a:hover,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li a:hover {
    background-color: #fafafa;
  }
}

#aoc .aoc-sidenav .aoc-sidenav__list li.selected a:hover,
#aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a:hover {
  color: #000;
}

#aoc .aoc-sidenav .aoc-sidenav__item__has-children {
  position: relative;
  overflow: hidden;
}

#aoc .aoc-sidenav .aoc-sidenav__item__has-children:after {
  background-position: center center;
  background: url("img/arrow-next-gray.svg") no-repeat;
  color: #000;
  content: "";
  display: inline-block;
  height: 15px;
  position: absolute;
  right: 6px;
  top: 10px;
  width: 20px;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__item__has-children:after {
    right: 30px;
    top: 19px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-sidenav .aoc-sidenav__item__has-children:after {
    right: 20px;
    top: 16px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-sidenav .aoc-sidenav__item__has-children:after {
    right: 10px;
  }
}

#aoc .aoc-sidenav .aoc-sidenav__item__has-children--show:after {
  background: url("img/arrow-next-gray.svg") no-repeat;
  color: #000;
  content: "";
  display: inline-block;
  position: absolute;
  right: 8px;
  top: 12px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  width: 20px;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__item__has-children--show:after {
    right: 30px;
    top: 22px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-sidenav .aoc-sidenav__item__has-children--show:after {
    right: 20px;
    top: 19px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-sidenav .aoc-sidenav__item__has-children--show:after {
    right: 10px;
  }
}

#aoc .aoc-sidenav .aoc-sidenav__item__has-children .aoc-sidenav__sublist li {
  font-size: 1em;
}

#aoc .aoc-sidenav .aoc-sidenav__list li.selected.aoc-sidenav__item__has-children .aoc-sidenav__sublist,
#aoc .aoc-sidenav .aoc-sidenav__list li.aoc-sidenav__item__has-children--show .aoc-sidenav__sublist {
  display: block;
}

#aoc .aoc-sidenav .aoc-sidenav__item__has-children.selected .aoc-sidenav__sublist li a:hover {
  background-color: #E8EEF3;
}

#aoc .aoc-sidenav .aoc-sidenav__item__has-children:hover .aoc-sidenav__sublist li a {
  color: #000;
}

#aoc .aoc-sidenav .selected.aoc-sidenav__item__has-children:after {
  background: url("img/arrow-next.svg") no-repeat;
  right: 8px;
  top: 12px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .selected.aoc-sidenav__item__has-children:after {
    right: 30px;
    top: 22px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-sidenav .selected.aoc-sidenav__item__has-children:after {
    right: 20px;
    top: 19px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-sidenav .selected.aoc-sidenav__item__has-children:after {
    right: 10px;
  }
}

#aoc .aoc-sidenav .selected.aoc-sidenav__item__has-children--show:after {
  background: url("img/arrow-next.svg") no-repeat;
  position: absolute;
  right: 6px;
  top: 10px;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .selected.aoc-sidenav__item__has-children--show:after {
    right: 30px;
    top: 19px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-sidenav .selected.aoc-sidenav__item__has-children--show:after {
    right: 20px;
    top: 16px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-sidenav .selected.aoc-sidenav__item__has-children--show:after {
    right: 10px;
  }
}

#aoc .aoc-form__input-field {
  background-color: #fafafa;
  border: 1px solid #ccc;
  height: 44px;
  margin-bottom: 23px;
  padding: 10px;
  width: 100%;
  max-width: 704px;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

#aoc .aoc-form__input--file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

#aoc .aoc-form__input--file:focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}

#aoc .aoc-form__input-container {
  margin: 1em 0;
}

#aoc .aoc-form__input-field--text-area,
#aoc textarea {
  -webkit-border-radius: 0;
  background-color: #fafafa;
  border: 1px solid #ccc;
  height: auto;
  min-height: 176px;
  max-width: 100%;
  width: 100%;
}

#aoc .aoc-form__file-name-container {
  display: inline-block;
}

#aoc .aoc-form__input-field:active,
#aoc .aoc-form__input-field:focus,
#aoc .aoc-form__input-field.active {
  border-color: #D71920;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

#aoc .aoc-form__input-field--date {
  max-width: 288px;
  position: relative;
}

#aoc .aoc-form__input-field[type=date]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

#aoc .aoc-form__input-field[type=date]::-webkit-datetime-edit-text,
#aoc .aoc-form__input-field[type=date]::-webkit-datetime-edit-month-field,
#aoc .aoc-form__input-field[type=date]::-webkit-datetime-edit-day-field,
#aoc .aoc-form__input-field[type=date]::-webkit-datetime-edit-year-field {
  color: #ccc;
}

#aoc .aoc-form__input-field[type=date]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

#aoc .aoc-form__input-field[type=date]::-webkit-calendar-picker-indicator {
  background: transparent;
  border: 0;
  color: transparent;
  height: 100%;
  position: absolute;
  width: 100%;
}

#aoc .aoc-form__label {
  line-height: 24px;
  margin-bottom: 9px;
  display: block;
}

#aoc .aoc-form__field-tip {
  margin-top: -10px;
}

#aoc .aoc-form__field-tip.parsley-error {
  color: #ff0000;
}

#aoc .parsley-maxwords {
  display: none;
}

#aoc .aoc-select-dropdown {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 704px;
  height: 44px;
  margin: 5px 0;
}

#aoc .aoc-select-dropdown.inactive {
  pointer-events: none;
}

#aoc .aoc-select-dropdown__text {
  background-color: #fafafa;
  border: 1px solid #ccc;
  cursor: pointer;
  line-height: 44px;
  position: absolute;
  text-indent: 10px;
  width: 100%;
  color: #333;
}

#aoc .aoc-select-dropdown__text:after {
  background: url("img/arrow-dropdown.svg") no-repeat;
  content: "";
  height: 16px;
  position: absolute;
  right: 10px;
  top: 14px;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 16px;
}

#aoc .aoc-select-dropdown__text--open {
  background-color: #e8e8e8;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) inset, 0 1px 0 rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) inset, 0 1px 0 rgba(255, 255, 255, 0.8);
  z-index: 2;
}

#aoc .aoc-select-dropdown__text--open:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

#aoc .aoc-select-dropdown__content a {
  color: #333;
}

#aoc .aoc-select-dropdown__toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0;
  height: 44px;
  margin: 0 0 0 1px;
  padding: 0;
  position: absolute;
  text-indent: -10px;
  top: 0;
  width: 100%;
  z-index: 10;
}

#aoc .aoc-select-dropdown__toggle:focus {
  outline: 0;
}

#aoc .aoc-select-dropdown__content {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  list-style-type: none;
  position: absolute;
  top: 32px;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  text-indent: 10px;
  line-height: 32px;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 100%;
  z-index: 100;
}

#aoc .aoc-select-dropdown__content a {
  display: block;
}

#aoc .aoc-select-dropdown__content a:hover {
  background: #d2dde7;
}

#aoc .aoc-select-dropdown__content--show {
  opacity: 1;
  visibility: visible;
  top: 46px;
}

#aoc .aoc-select-dropdown__toggle:hover ~ .aoc-select-dropdown__text {
  background-color: #e8e8e8;
}

#aoc .aoc-button,
#aoc .gsc-results .gsc-cursor-box .gsc-cursor-page,
#aoc .aoc-form__input--file + label {
  background-color: #878787;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.2352941176em;
  line-height: 100%;
  margin-right: 0.7058823529em;
  max-height: 44px;
  padding: 0.5882352941em 0.5882352941em 0.7058823529em;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

#aoc .aoc-button--submit {
  background-color: #1a568a;
}

#aoc .aoc-button:hover,
#aoc .gsc-results .gsc-cursor-box .gsc-cursor-page:hover,
#aoc .aoc-form__input--file + label:hover {
  opacity: 0.8;
}

#aoc .aoc-radio__fieldset {
  display: inline-block;
  margin: 20px 0;
  overflow: hidden;
  padding: 4px 0;
  width: 100%;
}

#aoc .aoc-radio {
  float: left;
  height: 35px;
  margin: 0 35px 0 0;
  position: relative;
  width: 35px;
}

#aoc .aoc-radio__inner-button {
  background: #1a568a;
}

#aoc .aoc-radio--approve .aoc-radio__input,
#aoc .aoc-radio--deny .aoc-radio__input {
  left: -999em;
  position: absolute;
  z-index: 1;
}

#aoc .aoc-radio--approve .aoc-radio__label,
#aoc .aoc-radio--deny .aoc-radio__label {
  cursor: pointer;
}

#aoc .aoc-radio--deny .aoc-radio__label .aoc-radio__outer-button,
#aoc .aoc-radio--approve .aoc-radio__label .aoc-radio__outer-button {
  background-color: #fff;
}

#aoc .aoc-radio--approve .aoc-radio__input + .aoc-radio__label .aoc-radio__inner-button,
#aoc .aoc-radio--deny .aoc-radio__input + .aoc-radio__label .aoc-radio__inner-button {
  border-radius: 100%;
  height: 24px;
  left: 5px;
  opacity: 0.5;
  position: relative;
  top: 5px;
  width: 24px;
}

#aoc .aoc-radio--approve .aoc-radio__input + .aoc-radio__label .aoc-radio__inner-button:after,
#aoc .aoc-radio--deny .aoc-radio__input + .aoc-radio__label .aoc-radio__inner-button:after {
  background-color: black;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 50%;
  position: relative;
  top: 4px;
  width: 50%;
}

#aoc .aoc-radio--approve .aoc-radio__input:checked + .aoc-radio__label .aoc-radio__inner-button,
#aoc .aoc-radio--deny .aoc-radio__input:checked + .aoc-radio__label .aoc-radio__inner-button {
  border-radius: 100%;
  position: relative;
  height: 24px;
  width: 24px;
  top: 5px;
  left: 5px;
  opacity: 1;
}

#aoc .aoc-radio--approve .aoc-radio__input:checked + .aoc-radio__label .aoc-radio__inner-button:after,
#aoc .aoc-radio--deny .aoc-radio__input:checked + .aoc-radio__label .aoc-radio__inner-button:after {
  background-color: black;
  content: "";
  display: inline-block;
  height: 50%;
  width: 50%;
  border-radius: 50%;
  position: relative;
  top: 4px;
}

#aoc .aoc-radio--approve .aoc-radio__outer-button,
#aoc .aoc-radio--deny .aoc-radio__outer-button {
  content: " ";
  display: inline-block;
  height: 36px;
  margin: -2px 8px 0 0;
  vertical-align: top;
  text-align: center;
  left: 0;
  width: 36px;
  position: absolute;
  z-index: 1;
}

#aoc input[type=checkbox] + label::before {
  background: white;
  border-radius: 2px;
  border: 1px solid #CCC;
  color: #000;
  content: "";
  font-size: 25px;
  display: inline-block;
  height: 36px;
  line-height: 24px;
  margin-right: 15px;
  text-indent: 6px;
  width: 36px;
}

#aoc input[type=checkbox]:checked + label::before {
  background: #fff url("img/check.png") no-repeat center center;
  color: #000;
  padding-top: 5px;
}

#aoc input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

#aoc .aoc-checkbox-label {
  font-size: 0;
}

#aoc .aoc-form__p--mt-0 {
  margin-top: 0;
}

#aoc input.parsley-error,
#aoc select.parsley-error,
#aoc textarea.parsley-error {
  color: #B94A48;
  background-color: #F2DEDE;
  border: 1px solid #EED3D7;
}

#aoc .parsley-errors-list.filled {
  opacity: 1;
}

#aoc .parsley-errors-list {
  color: #ff0000;
  margin: 2px 0 3px;
  padding: 0;
  list-style-type: none;
  font-size: 0.9em;
  line-height: 0.9em;
  margin-top: -10px;
  opacity: 0;
  transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}

#aoc .parsley-errors-list li {
  padding: 4px 0;
}

#aoc .aoc-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
  margin: 0;
  max-height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

#aoc .aoc-slider__slide {
  height: 512px;
  margin: 0;
  max-height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 5;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-slider__slide {
    height: 384px;
  }
}

@media screen and (max-width: 520px) {
  #aoc .aoc-slider__slide {
    min-height: 288px;
    height: auto;
  }
}

@media screen and (max-width: 320px) {
  #aoc .aoc-slider__slide {
    min-height: 192px;
  }
}

#aoc .aoc-slider__img-mobile {
  height: 100%;
  overflow: hidden;
  width: 100%;
}

@media screen and (max-width: 520px) {
  #aoc .aoc-slider__img-mobile {
    min-height: 288px;
    height: auto;
  }
}

@media screen and (max-width: 320px) {
  #aoc .aoc-slider__img-mobile {
    min-height: 192px;
    overflow: hidden;
    position: relative;
  }
}

#aoc .aoc-slider__caption {
  margin: 37px auto 0;
  max-width: 1366px;
  padding-left: 50px;
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-slider__caption {
    padding-left: 15px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-slider__caption {
    margin: 16px auto 0;
    padding-left: 30px;
  }
}

@media screen and (max-width: 520px) {
  #aoc .aoc-slider__caption {
    display: none;
  }
}

#aoc .aoc-slider__caption--mobile {
  display: none;
}

@media screen and (max-width: 520px) {
  #aoc .aoc-slider__caption--mobile {
    display: block;
    margin: 0 auto;
    padding: 15px 20px 10px 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-slider__caption--mobile {
    padding: 15px 10px 10px;
  }
}

#aoc .aoc-slider__title {
  color: #FFF;
  font-size: 56px;
  margin: 0;
  max-width: 52%;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 2;
}

@media screen and (max-width: 1080px) {
  #aoc .aoc-slider__title {
    font-size: 42px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-slider__title {
    font-size: 36px;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-slider__title {
    max-width: 70%;
  }
}

@media screen and (max-width: 520px) {
  #aoc .aoc-slider__title {
    color: #000;
    width: auto;
    max-width: 100%;
  }
}

@media screen and (max-width: 320px) {
  #aoc .aoc-slider__title {
    font-size: 28px;
  }
}

#aoc .aoc-slider a.aoc-slider__link {
  color: #FFF;
  display: inline-block;
  font-size: 19px;
  margin-top: 8px;
  max-width: 52%;
  text-decoration: none;
}

#aoc .aoc-slider a.aoc-slider__link:after {
  content: ">";
  display: inline-block;
  font-size: 18px;
  margin-left: 7px;
  position: relative;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-slider a.aoc-slider__link {
    background-color: #878787;
    padding: 12px 8px 8px;
    font-size: 21px;
    width: 100%;
    max-width: 131px;
    text-align: center;
  }

  #aoc .aoc-slider a.aoc-slider__link:after {
    display: none;
  }
}

#aoc .aoc-slider .slider-nav {
  height: 100%;
  opacity: 0.8;
  width: 70px;
  fill: #fff;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-slider .slider-nav {
    display: none;
  }
}

#aoc .slideshow-dark .slider-nav {
  fill: #a9a9a9;
}

#aoc .owl-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 50%;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 200px;
  width: 100%;
}

#aoc .owl-prev,
#aoc .owl-next {
  pointer-events: auto;
}

#aoc .owl-prev {
  margin-left: -10px;
}

#aoc .owl-next {
  margin-right: -10px;
}

#aoc .owl-nav {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: none;
  height: 70px;
  top: 46%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 1;
}

@media screen and (max-width: 1023px) {
  #aoc .owl-nav {
    top: 44%;
    height: 50px;
  }
}

#aoc .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

#aoc .owl-dots {
  -ms-flex-item-align: end;
  align-self: flex-end;
  bottom: 2.8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  position: absolute;
  right: 70px;
  text-align: center;
}

@media screen and (max-width: 800px) {
  #aoc .owl-dots {
    bottom: 4.8%;
  }
}

@media screen and (max-width: 520px) {
  #aoc .owl-dots {
    bottom: 0;
    top: 230px;
    right: 20px;
    height: 40px;
  }
}

@media screen and (max-width: 320px) {
  #aoc .owl-dots {
    top: 140px;
    right: 10px;
  }
}

#aoc .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
  position: relative;
  width: 20px;
  margin: 0 10px;
  background-color: transparent;
}

@media screen and (max-width: 520px) {
  #aoc .owl-dots .owl-dot {
    margin: 0 12px;
  }
}

@media screen and (max-width: 320px) {
  #aoc .owl-dots .owl-dot {
    margin: 0 6px;
  }
}

#aoc .owl-dots .owl-dot span {
  -webkit-backface-visibility: visible;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #fff;
  border-radius: 30px;
  display: block;
  height: 24px;
  margin: 5px 7px;
  position: relative;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  width: 24px;
}

#aoc .owl-dots .owl-dot span:hover:after {
  content: "";
  background-color: white;
  border-radius: 30px;
  height: 10px;
  left: 6px;
  position: absolute;
  top: 6px;
  width: 10px;
}

@media screen and (max-width: 520px) {
  #aoc .owl-dots .owl-dot span:hover:after {
    top: 6px;
    left: 6px;
  }
}

@media screen and (max-width: 520px) {
  #aoc .owl-dots .owl-dot span {
    width: 24px;
    height: 24px;
    margin: 0;
  }
}

@media screen and (max-width: 320px) {
  #aoc .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
  }
}

#aoc .owl-dots .owl-dot.active span {
  background: rgba(250, 250, 250, 0.9);
}

#aoc .aoc-header {
  padding: 0 0 11px;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header {
    padding-top: 11px;
  }
}

@media screen and (max-width: 515px) {
  #aoc .aoc-header {
    padding: 0;
  }
}

#aoc .aoc-header .aoc-social-media {
  margin: 0 1.8301610542%;
}

#aoc .aoc-header__language-select {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #e5e5e5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 32px;
  width: 100%;
}

#aoc .aoc-header__language-select div {
  margin: 0 auto;
  max-width: 1366px;
  padding: 0 50px;
  width: 100%;
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-header__language-select div {
    padding: 0 15px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header__language-select div {
    padding: 0 30px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header__language-select {
    display: none;
  }
}

#aoc .aoc-header__language {
  padding: 0 0.5882352941em;
}

#aoc .aoc-header__language:first-of-type {
  border-right: 1px solid #000;
  padding-left: 0;
}

#aoc .aoc-header__top-row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1.1764705882em auto 2.0588235294em;
  max-width: 1366px;
  padding: 0 50px;
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-header__top-row {
    padding: 0 15px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header__top-row {
    padding: 14px 30px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header__top-row {
    padding: 10px 20px;
  }
}

@media screen and (max-width: 512px) {
  #aoc .aoc-header__top-row {
    padding: 5px 20px;
  }
}

@media screen and (max-width: 512px) {
  #aoc .aoc-header__top-row {
    padding: 5px 10px;
  }
}

#aoc .aoc-header__logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
}

#aoc .aoc-header__logo {
  height: 3.8235294118em;
  margin-right: 0.5882352941em;
  width: 27.4705882353em;
}

@media screen and (max-width: 1365px) {
  #aoc .aoc-header__logo {
    height: 2.8235294118em;
    width: 20.4117647059em;
  }
}

@media screen and (max-width: 515px) {
  #aoc .aoc-header__logo {
    height: 2.8235294118em;
    width: 13.8235294118em;
  }
}

#aoc .aoc-header__dropdown-link {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  color: #000;
  font-weight: normal;
  cursor: pointer;
  font-size: 0.8235294118em;
  text-align: left;
}

#aoc .aoc-header__dropdown-link:focus {
  outline: 0;
}

#aoc button.aoc-header__dropdown-link:hover {
  color: #D71920;
}

#aoc .other_sites_target--active {
  color: #D71920;
}

#aoc .aoc-social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

#aoc .aoc-social-media__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 1.8823529412em;
  margin-right: 1em;
  width: 1.8823529412em;
}

@media screen and (max-width: 1365px) {
  #aoc .aoc-social-media__icon {
    height: 1.6470588235em;
    margin-right: 0.5882352941em;
    width: 1.6470588235em;
  }
}

#aoc .aoc-social-media ul li {
  padding-right: 10px;
}

#aoc .aoc-search-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#aoc .aoc-search-bar__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: none;
  border-top: 1px solid #ccc;
  background-color: #f2f2f2;
  height: 2.1176470588em;
  padding-left: 0.5882352941em;
  padding-top: 0.2352941176em;
  width: 8.8235294118em;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}

@media screen and (max-width: 800px) {
  #aoc .aoc-search-bar__input {
    height: 2.5882352941em;
  }
}

#aoc .aoc-search-bar__input:focus {
  outline: 0;
}

#aoc .aoc-search-bar__input::-webkit-input-placeholder {
  color: #000;
  opacity: 1;
}

#aoc .aoc-search-bar__input::-moz-placeholder {
  color: #000;
  opacity: 1;
}

#aoc .aoc-search-bar__input:-ms-input-placeholder {
  color: #000;
  opacity: 1;
}

#aoc .aoc-search-bar__input::-ms-input-placeholder {
  color: #000;
  opacity: 1;
}

#aoc .aoc-search-bar__input::placeholder {
  color: #000;
  opacity: 1;
}

#aoc .aoc-search-bar__button {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -moz-appearance: none;
  appearance: none;
  background: url("img/search-icon-md.png") no-repeat center center;
  background-size: 25px 25px;
  border-bottom: 1px solid #ccc;
  border-left: none;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  cursor: pointer;
  width: 2.0588235294em;
}

#aoc .aoc-search-bar__button:focus {
  outline: 0;
}

#aoc .aoc-top-nav {
  margin: 0 auto;
  max-width: 1366px;
  min-height: 34px;
  padding: 0 50px;
  position: relative;
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-top-nav {
    padding: 0 0.8823529412em;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-top-nav {
    min-height: 0;
    padding-bottom: 0;
  }
}

#aoc .aoc-header__nav-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

#aoc .aoc-header__nav-bar-item {
  border-right: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -ms-flex: 0 auto;
  flex: 0 auto;
  font-size: 1em;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  min-width: 50px;
  padding: 0 1.0588235294em 0 0.4705882353em;
}

#aoc .aoc-header__nav-bar-item:first-of-type {
  padding-left: 0;
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  #aoc .aoc-header__nav-bar-item {
    font-size: 0.7647058824em;
    max-width: 90px;
  }
}

@media screen and (min-width: 1366px) {
  #aoc .aoc-header__nav-bar-item {
    max-width: 120px;
  }
}

@media screen and (min-width: 1023px) {
  #aoc .aoc-header__nav-bar-item {
    line-height: 19px;
  }
}

#aoc .aoc-header__nav-bar-item a:hover,
#aoc .aoc-header__nav-bar-item a:active {
  color: #D71920;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header__nav-bar-item a:hover,
  #aoc .aoc-header__nav-bar-item a:active {
    color: #fff;
  }
}

@media screen and (min-width: 1023px) {
  #aoc .aoc-header__nav-bar-item:hover .aoc-nav-bar__sublist-wrapper {
    display: block;
  }
}

#aoc .aoc-nav-bar__sublist-wrapper {
  margin-left: -9px;
  overflow: hidden;
  padding: 11px 0 0;
  position: absolute;
  top: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  min-width: 250px;
  z-index: 100;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #aoc .aoc-nav-bar__sublist-wrapper {
    top: auto;
  }
}

@media screen and (min-width: 1365px) {
  #aoc .aoc-nav-bar__sublist-wrapper {
    width: 300px;
  }
}

@media screen and (min-width: 1023px) {
  #aoc .aoc-nav-bar__sublist-wrapper {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-nav-bar__sublist-wrapper {
    max-height: 0;
    opacity: 0;
    -webkit-transform: translateY(-2em);
    -ms-transform: translateY(-2em);
    transform: translateY(-2em);
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-nav-bar__sublist-wrapper.expand {
    max-height: 1500px;
    opacity: 1;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
}

#aoc .aoc-nav-bar__sublist {
  background: hsla(358, 79%, 47%, 0.85);
  padding: 11px 0;
}

#aoc .aoc-nav-bar__sub-item {
  padding: 2px 0;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-nav-bar__sub-item {
    padding: 0;
  }
}

#aoc .aoc-nav-bar__sub-item,
#aoc .aoc-sublist__dropdown-item {
  line-height: 14px;
}

#aoc .aoc-nav-bar__sub-item a,
#aoc .aoc-sublist__dropdown-item a {
  color: #fff;
  display: inline-block;
  padding: 0 12px;
}

@media screen and (min-width: 1023px) {
  #aoc .aoc-nav-bar__sub-item a,
  #aoc .aoc-sublist__dropdown-item a {
    line-height: 19px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-nav-bar__sub-item a,
  #aoc .aoc-sublist__dropdown-item a {
    line-height: 25px;
    padding: 8px 30px 0 25px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-nav-bar__sub-item a,
  #aoc .aoc-sublist__dropdown-item a {
    line-height: 25px;
    padding: 8px 20px 0;
  }
}

#aoc .aoc-nav-bar__sub-item .aoc-sublist__sub-item-link,
#aoc .aoc-sublist__dropdown-item .aoc-sublist__sub-item-link {
  display: block;
  padding: 4px 0;
}

#aoc .aoc-nav-bar__sub-item .aoc-sublist__sub-item-link:hover,
#aoc .aoc-sublist__dropdown-item .aoc-sublist__sub-item-link:hover {
  background: #EF010D;
}

#aoc .aoc-nav-bar__sub-item .aoc-sublist__sub-item-link a:first-child,
#aoc .aoc-sublist__dropdown-item .aoc-sublist__sub-item-link a:first-child {
  width: 90%;
}

#aoc .aoc-sublist__dropdown-item {
  padding: 4px 0;
}

#aoc .aoc-sublist__trigger {
  display: none;
  height: 0;
  position: absolute;
  right: 0;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sublist__trigger {
    display: inline-block;
    right: 0;
    position: absolute;
  }
}

#aoc .aoc-nav-bar__chevron {
  color: #fff;
  height: 0.5882352941em;
  width: 0.5882352941em;
}

#aoc .aoc-nav-bar__chevron.rotate {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

#aoc .aoc-nav-bar__sub-item--dropdown {
  position: relative;
}

#aoc .aoc-nav-bar__sub-item a:hover {
  background: #EF010D;
  color: #fff;
  display: inline-block;
}

#aoc .aoc-sublist__dropdown {
  max-height: 0;
  opacity: 0;
  padding-left: 12px;
  -webkit-transform: translateY(-2em);
  -ms-transform: translateY(-2em);
  transform: translateY(-2em);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  visibility: hidden;
  z-index: -1;
}

#aoc .aoc-sublist__dropdown.expand {
  max-height: 1500px;
  opacity: 1;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  visibility: visible;
  z-index: 1;
}

#aoc .aoc-sublist__dropdown-item:hover {
  background: #EF010D;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__top-row {
    margin: 0;
  }
}

#aoc .aoc-header .aoc-header__menu-button {
  color: #999;
  cursor: pointer;
  margin-left: auto;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  width: 3.1764705882em;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__menu-button {
    height: 2.8235294118em;
    width: 1.5em;
  }
}

@media screen and (max-width: 515px) {
  #aoc .aoc-header .aoc-header__menu-button {
    height: 1.5em;
  }
}

#aoc .aoc-header .aoc-header__menu-button.aoc-header__menu-button--open {
  color: #D71920;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar {
    background: rgba(215, 25, 31, 0.85);
    color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 21px;
    max-height: 0;
    line-height: 43px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    right: 0;
    -webkit-transition: max-height 0.3s ease-in-out;
    transition: max-height 0.3s ease-in-out;
    width: 506px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar.aoc-header__nav-bar--open {
    margin-top: 11px;
    max-height: 1500px;
    line-height: 41px;
  }
}

@media screen and (max-width: 515px) {
  #aoc .aoc-header .aoc-header__nav-bar.aoc-header__nav-bar--open {
    margin-top: 0;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header .aoc-header__nav-bar {
    width: 100%;
  }

  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__trigger {
    right: 0;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-header__nav-bar-item {
    padding: 0;
    line-height: 41px;
    min-height: 41px;
  }
}

#aoc .aoc-header .aoc-header__nav-bar .aoc-header__nav-bar-item .aoc-header__nav-bar-link .aoc-nav-bar__chevron {
  margin: 0 30px;
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-header__nav-bar-item .aoc-header__nav-bar-link .aoc-nav-bar__chevron {
    margin: 0 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-header__nav-bar-item .aoc-header__nav-bar-link .aoc-nav-bar__chevron {
    margin-right: 10px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-header__nav-bar-item .aoc-header__nav-bar-link {
    border-bottom: 2px solid #df525a;
    padding: 0 21px;
  }

  #aoc .aoc-header .aoc-header__nav-bar .aoc-header__nav-bar-item .aoc-header__nav-bar-link:hover {
    color: #fff;
    background: #EF010D;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-header__nav-bar-item .aoc-header__nav-bar-link {
    padding: 0 15px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-header__nav-bar-item .aoc-header__nav-bar-link {
    padding: 0 10px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-nav-bar__sublist-wrapper {
    margin-left: 0;
    padding: 0;
    position: relative;
    width: auto;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-nav-bar__sublist {
    background: transparent;
    padding: 0;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-header__nav-bar-item,
  #aoc .aoc-header .aoc-header__nav-bar .aoc-nav-bar__sub-item--dropdown {
    line-height: 41px;
    min-height: 41px;
    overflow: hidden;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__sub-item-link,
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__dropdown-item,
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__dropdown-item-link {
    line-height: 41px;
    min-height: 41px;
    padding: 0 19px;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__sub-item-link,
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__dropdown-item,
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__dropdown-item-link {
    padding: 0 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__sub-item-link,
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__dropdown-item,
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__dropdown-item-link {
    padding: 0 10px;
  }
}

#aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__sub-item-link {
  width: 100%;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-nav-bar__sub-item {
    border-bottom: 2px solid #df525a;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__sub-item-link {
    padding: 0 0.5238095238em;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__dropdown-item {
    border-bottom: 2px solid #df525a;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__dropdown-item:last-of-type {
    border-bottom: 0;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__dropdown-item-link {
    line-height: 25px;
    padding: 0.4705882353em 1.1764705882em 0;
  }
}

#aoc .aoc-header__site-menu {
  background: rgba(215, 25, 31, 0.85);
  color: #fff;
  display: none;
  font-size: 1em;
  padding: 1em 0;
  position: absolute;
  width: 100%;
  z-index: 500;
}

#aoc .aoc-header__site-menu div {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header__site-menu {
    margin-top: 11px;
  }
}

@media screen and (max-width: 515px) {
  #aoc .aoc-header__site-menu {
    margin-top: 0;
  }
}

#aoc .aoc-header__site-menu-list {
  margin: 0;
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-header__site-menu-list {
    padding: 0 15px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header__site-menu-list {
    margin: 0 auto;
    padding: 0;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header__site-menu-list {
    margin: 0;
  }
}

#aoc .aoc-header__site-menu-item {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 31.7615656014%;
  cursor: pointer;
  font-size: 0.8235294118em;
  line-height: 19px;
  padding: 4px 8px;
}

#aoc .aoc-header__site-menu-item:last-child {
  margin-right: 0;
}

#aoc .aoc-header__site-menu-item:nth-child(3n) {
  margin-right: 0;
}

#aoc .aoc-header__site-menu-item:nth-child(3n+1) {
  clear: left;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header__site-menu-item {
    cursor: pointer;
    float: none;
    font-size: 21px;
    line-height: 25px;
    min-height: 41px;
    padding: 8px 30px;
    width: 90%;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header__site-menu-item {
    line-height: 25px;
    min-height: 41px;
    padding: 9px 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-header__site-menu-item {
    padding: 9px 10px;
    margin-bottom: 0;
  }
}

#aoc .aoc-header__site-menu-item:last-of-type {
  margin-right: 0;
}

#aoc .aoc-header__site-menu-item:hover {
  background: #EF010D;
}

#aoc .aoc-header__site-menu-close {
  color: #fff;
  cursor: pointer;
  height: 20px;
  margin-right: 50px;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-header__site-menu-close {
    margin-right: 15px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header__site-menu-close {
    margin-right: 30px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header__site-menu-close {
    margin-right: 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-header__site-menu-close {
    margin-right: 10px;
  }
}

#aoc .aoc-search-social-mobile {
  display: none;
  margin-top: 20px;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-search-social-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 30px;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  #aoc .aoc-search-social-mobile .aoc-social-media li:last-child .aoc-social-media__icon {
    margin-right: 0;
  }

  #aoc .aoc-search-social-mobile .aoc-search-bar {
    margin-right: 1.4117647059em;
    height: 2.58824em;
    width: 40%;
  }

  #aoc .aoc-search-social-mobile .aoc-search-bar__input {
    height: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 1023px) and (max-width: 1023px) {
  #aoc .aoc-search-social-mobile .aoc-search-bar__button {
    height: 2.5882352941em;
    width: 2.5882352941em;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-search-social-mobile .aoc-social-media__icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 2em;
    margin-right: 1.4117647059em;
    width: 2em;
  }
}

@media screen and (max-width: 1023px) and (max-width: 1023px) {
  #aoc .aoc-search-social-mobile .aoc-social-media__icon {
    width: 2.5882352941em;
    height: 2.5882352941em;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-search-social-mobile {
    padding: 0 20px;
  }
}

@media screen and (max-width: 580px) {
  #aoc .aoc-search-social-mobile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    min-height: 120px;
    padding: 0 20px;
  }

  #aoc .aoc-search-social-mobile .aoc-search-bar,
  #aoc .aoc-search-social-mobile .aoc-search-bar__input {
    width: 100%;
  }

  #aoc .aoc-search-social-mobile .aoc-social-media {
    margin-top: 1.0588235294em;
  }
}

@media screen and (max-width: 375px) {
  #aoc .aoc-search-social-mobile .aoc-social-media__icon {
    width: 2.4em;
    margin-right: 1em;
  }
}

@media screen and (max-width: 320px) {
  #aoc .aoc-search-social-mobile {
    padding: 0 10px;
  }

  #aoc .aoc-search-social-mobile .aoc-social-media__icon {
    width: 2em;
    margin-right: 0.7em;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #aoc .aoc-pub-header__top-row a {
    display: block;
  }
}

#aoc .aoc-header.aoc-header--subsite {
  padding: 0;
}

#aoc .aoc-header--subsite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

#aoc .aoc-header--subsite__logo {
  margin: 1.1764705882em 0em;
}

@media screen and (max-width: 515px) {
  #aoc .aoc-header--subsite__logo {
    margin: 0.5882352941em 0em;
  }
}

#aoc .aoc-header--subsite__top {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1366px;
  padding: 0 50px;
  width: 100%;
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-header--subsite__top {
    padding: 0 15px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header--subsite__top {
    padding: 0 30px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header--subsite__top {
    padding: 0 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-header--subsite__top {
    padding: 0 10px;
  }
}

#aoc .aoc-header--subsite__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1366px;
  padding: 0 50px 11px;
  width: 100%;
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-header--subsite__links {
    padding: 0 15px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header--subsite__links {
    padding: 0;
  }
}

#aoc .aoc-header--subsite__links .aoc-top-nav {
  margin: 0;
  padding: 0;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header--subsite__links .aoc-top-nav .aoc-header__nav-bar.aoc-header__nav-bar--open {
    margin-top: 0;
  }
}

@media screen and (min-width: 1365px) {
  #aoc .aoc-header--subsite__links .aoc-top-nav .aoc-header__nav-bar-item {
    max-width: 136px;
    min-width: 120px;
  }
}

@media screen and (max-width: 1365px) {
  #aoc .aoc-header--subsite__links .aoc-top-nav .aoc-header__nav-bar-item {
    max-width: 109px;
    min-width: 90px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header--subsite__links .aoc-top-nav .aoc-header__nav-bar-item {
    max-width: 100%;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header--subsite__search {
    padding: 0;
  }
}

#aoc .aoc-header--subsite .aoc-header__nav-bar {
  min-height: 34px;
  padding: 0;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header--subsite .aoc-header__nav-bar {
    min-height: 0;
  }
}

#aoc .aoc-header--subsite .aoc-social-media {
  margin-right: 0;
}

#aoc .aoc-header--subsite .aoc-social-media li:last-child .aoc-social-media__icon {
  margin-right: 0;
}

#aoc .aoc-header--subsite__subtitle {
  background-color: #008ccf;
  width: 100%;
  margin-bottom: 1.05882em;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header--subsite__subtitle {
    margin: 0;
  }
}

#aoc .aoc-header--subsite__subtitle h2 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-size: 1.6470588235em;
  height: 58px;
  line-height: 64px;
  margin: 0 auto;
  max-width: 1366px;
  padding: 0 50px;
  text-transform: uppercase;
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-header--subsite__subtitle h2 {
    padding: 0 15px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header--subsite__subtitle h2 {
    margin: 0;
    padding: 0 30px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header--subsite__subtitle h2 {
    font-size: 1.2352941176em;
    height: 44px;
    line-height: 50px;
    padding: 0 20px;
  }
}

@media screen and (max-width: 580px) {
  #aoc .aoc-header--subsite__subtitle h2 {
    font-size: 1.1764705882em;
    height: auto;
    line-height: 120%;
    min-height: 44px;
    padding: 10px 20px;
  }
}

#aoc .aoc-footer {
  color: #1c1c1b;
  font-size: 0.8823529412em;
  margin-top: 48px;
  padding: 1.38em 0;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-footer {
    font-size: 0.7647058824em;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-footer {
    font-size: 1em;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-footer {
    height: auto;
    padding: 1em;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-footer {
    padding: 1em 10px;
  }
}

#aoc .aoc-footer div.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  max-width: 1366px;
  padding: 0 50px;
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-footer div.row {
    padding: 0 0.8823529412em;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-footer div.row {
    padding: 0 30px;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-footer div.row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0;
    width: 100%;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-footer div.row {
    padding: 0 20px;
  }
}

@media screen and (max-width: 515px) {
  #aoc .aoc-footer div.row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-footer div.row {
    padding: 0;
  }
}

#aoc .aoc-footer__col {
  margin: 0 24px;
  width: 184px;
}

@media screen and (max-width: 1200px) {
  #aoc .aoc-footer__col {
    width: auto;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-footer__col {
    margin: 0 auto;
    width: 100%;
  }
}

#aoc .aoc-footer__one-half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#aoc .aoc-footer__one-half .aoc-footer__col:first-child {
  width: auto;
  white-space: nowrap;
  margin-left: 0;
}

@media screen and (max-width: 800px) {
  #aoc .aoc-footer__one-half {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 15px;
  }

  #aoc .aoc-footer__one-half .aoc-footer__col:first-child {
    width: auto;
    min-width: none;
  }

  #aoc .aoc-footer__one-half .aoc-footer__col {
    margin: 0;
  }

  #aoc .aoc-footer__one-half .aoc-footer__col:nth-child(2) {
    margin-top: 16px;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-footer__one-half {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-footer__one-half {
    width: 80%;
  }
}

#aoc .aoc-footer__second-half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 515px) {
  #aoc .aoc-footer__second-half {
    margin-top: 14px;
  }
}

#aoc .aoc-footer__second-half .aoc-footer__col {
  width: auto;
}

@media screen and (max-width: 800px) {
  #aoc .aoc-footer__second-half .aoc-footer__col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#aoc .aoc-footer__second-half .aoc-ul__unstyled,
#aoc .aoc-footer__second-half .aoc-pub-sublist__dropdown,
#aoc .aoc-footer__second-half .aoc-pub-nav-bar__sublist,
#aoc .aoc-footer__second-half .aoc-sidenav .aoc-sidenav__list,
#aoc .aoc-sidenav .aoc-footer__second-half .aoc-sidenav__list,
#aoc .aoc-footer__second-half .aoc-sidenav .aoc-sidenav__sublist,
#aoc .aoc-sidenav .aoc-footer__second-half .aoc-sidenav__sublist,
#aoc .aoc-footer__second-half .aoc-nav-bar__sublist,
#aoc .aoc-footer__second-half .aoc-sublist__dropdown {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

@media screen and (max-width: 800px) {
  #aoc .aoc-footer__second-half .aoc-ul__unstyled,
  #aoc .aoc-footer__second-half .aoc-pub-sublist__dropdown,
  #aoc .aoc-footer__second-half .aoc-pub-nav-bar__sublist,
  #aoc .aoc-footer__second-half .aoc-sidenav .aoc-sidenav__list,
  #aoc .aoc-sidenav .aoc-footer__second-half .aoc-sidenav__list,
  #aoc .aoc-footer__second-half .aoc-sidenav .aoc-sidenav__sublist,
  #aoc .aoc-sidenav .aoc-footer__second-half .aoc-sidenav__sublist,
  #aoc .aoc-footer__second-half .aoc-nav-bar__sublist,
  #aoc .aoc-footer__second-half .aoc-sublist__dropdown {
    -webkit-column-count: 0;
    -moz-column-count: 0;
    column-count: 0;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#aoc .aoc-footer__second-half .aoc-ul__unstyled .aoc-footer-nav__item:nth-child(4),
#aoc .aoc-footer__second-half .aoc-pub-sublist__dropdown .aoc-footer-nav__item:nth-child(4),
#aoc .aoc-footer__second-half .aoc-pub-nav-bar__sublist .aoc-footer-nav__item:nth-child(4),
#aoc .aoc-footer__second-half .aoc-sidenav .aoc-sidenav__list .aoc-footer-nav__item:nth-child(4),
#aoc .aoc-sidenav .aoc-footer__second-half .aoc-sidenav__list .aoc-footer-nav__item:nth-child(4),
#aoc .aoc-footer__second-half .aoc-sidenav .aoc-sidenav__sublist .aoc-footer-nav__item:nth-child(4),
#aoc .aoc-sidenav .aoc-footer__second-half .aoc-sidenav__sublist .aoc-footer-nav__item:nth-child(4),
#aoc .aoc-footer__second-half .aoc-nav-bar__sublist .aoc-footer-nav__item:nth-child(4),
#aoc .aoc-footer__second-half .aoc-sublist__dropdown .aoc-footer-nav__item:nth-child(4) {
  /* margin-top: -12px;
  */
}

@media screen and (max-width: 800px) {
  #aoc .aoc-footer__second-half .aoc-ul__unstyled .aoc-footer-nav__item:nth-child(4),
  #aoc .aoc-footer__second-half .aoc-pub-sublist__dropdown .aoc-footer-nav__item:nth-child(4),
  #aoc .aoc-footer__second-half .aoc-pub-nav-bar__sublist .aoc-footer-nav__item:nth-child(4),
  #aoc .aoc-footer__second-half .aoc-sidenav .aoc-sidenav__list .aoc-footer-nav__item:nth-child(4),
  #aoc .aoc-sidenav .aoc-footer__second-half .aoc-sidenav__list .aoc-footer-nav__item:nth-child(4),
  #aoc .aoc-footer__second-half .aoc-sidenav .aoc-sidenav__sublist .aoc-footer-nav__item:nth-child(4),
  #aoc .aoc-sidenav .aoc-footer__second-half .aoc-sidenav__sublist .aoc-footer-nav__item:nth-child(4),
  #aoc .aoc-footer__second-half .aoc-nav-bar__sublist .aoc-footer-nav__item:nth-child(4),
  #aoc .aoc-footer__second-half .aoc-sublist__dropdown .aoc-footer-nav__item:nth-child(4) {
    margin-top: 0;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-footer__second-half .aoc-footer__col:first-child {
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-footer__second-half {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-footer__second-half {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 35%;
  }
}

@media screen and (max-width: 375px) {
  #aoc .aoc-footer__second-half {
    margin-top: 16px;
    width: auto;
  }
}

#aoc .aoc-footer__second-half .aoc-footer__col {
  min-width: 184px;
  width: auto;
}

#aoc .aoc-footer__second-half .aoc-footer__col ul {
  -moz-column-count: 2;
  -webkit-column-count: 2;
  column-count: 2;
}

#aoc .aoc-footer__second-half .aoc-footer__col ul li {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  display: block;
  min-width: 184px;
  page-break-inside: avoid;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-footer__second-half .aoc-footer__col ul li {
    min-width: 112px;
  }
}

#aoc .aoc-footer-nav__item {
  margin-bottom: 0;
  padding-bottom: 12px;
}

#aoc .aoc-footer-nav__item a {
  color: #1c1c1b;
  text-decoration: none;
}

#aoc .aoc-footer-nav__item a:hover {
  color: #666;
}

#aoc .aoc-subpage-banner {
  background-image: url("http:/placehold.it/1400x300?text=image");
  background-position: top left;
  background-repeat: repeat-x;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  margin-bottom: 24px;
  min-height: 84px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-subpage-banner {
    margin-bottom: 14px;
  }
}

#aoc .aoc-subpage-banner div {
  margin: 0 auto;
  max-width: 1366px;
  padding: 0 50px;
  width: 100%;
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-subpage-banner div {
    padding: 0 15px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-subpage-banner div {
    padding: 0 30px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-subpage-banner div {
    padding: 0 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-subpage-banner div {
    padding: 0 10px;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-subpage-banner {
    min-height: 66px;
  }
}

@media screen and (max-width: 512px) {
  #aoc .aoc-subpage-banner {
    padding-bottom: 9px;
  }
}

@media screen and (max-width: 320px) {
  #aoc .aoc-subpage-banner {
    min-height: 44px;
  }
}

#aoc .aoc-subpage-banner__title {
  bottom: 9px;
  color: #fff;
  font-size: 2.7647058824em;
  font-weight: normal;
  line-height: 47px;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 2;
}

@media screen and (max-width: 800px) {
  #aoc .aoc-subpage-banner__title {
    bottom: 0;
    font-size: 2.1176470588em;
    margin-bottom: 0;
    margin-top: 15px;
    position: relative;
    top: 0;
  }
}

@media screen and (max-width: 512px) {
  #aoc .aoc-subpage-banner__title {
    line-height: 37px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-subpage-banner__title {
    font-size: 1.4117647059em;
    line-height: 30px;
  }
}

#aoc .aoc-thumbnails {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 1366px;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
}

@media only screen and (max-width: 1023px) {
  #aoc .aoc-thumbnails {
    padding: 2% 30px 3%;
  }
}

@media only screen and (max-width: 799px) {
  #aoc .aoc-thumbnails {
    padding: 2% 20px 3%;
  }
}

#aoc .aoc-thumbnails__thumbnail {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 14.1%;
  flex: 1 0 14.1%;
  font-size: 0;
  margin: 9px 1.4% 0 0;
  max-width: 15.46%;
}

#aoc .aoc-thumbnails__thumbnail:nth-child(6n+6) {
  margin-right: 0;
}

@media only screen and (max-width: 1023px) {
  #aoc .aoc-thumbnails__thumbnail {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 29.5%;
    flex: 1 0 29.5%;
    max-width: 32.4%;
    margin-right: 1.3%;
  }

  #aoc .aoc-thumbnails__thumbnail:nth-child(6) {
    margin-right: 1.3%;
  }

  #aoc .aoc-thumbnails__thumbnail:nth-child(3n+3) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 600px) {
  #aoc .aoc-thumbnails__thumbnail {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 32%;
    flex: 1 0 32%;
    max-width: 48.2%;
    margin-right: 3.2%;
  }

  #aoc .aoc-thumbnails__thumbnail:nth-child(3n+3) {
    margin-right: 3.2%;
  }

  #aoc .aoc-thumbnails__thumbnail:nth-child(2n+2) {
    margin-right: 0;
  }
}

#aoc .aoc-thumbnails__img {
  max-width: 100%;
  width: 100%;
}

#aoc .aoc-thumbnails-vertical__wrapper {
  width: 20%;
  height: 100%;
}

@media only screen and (max-width: 1023px) {
  #aoc .aoc-thumbnails-vertical__wrapper {
    width: 100%;
  }
}

#aoc .aoc-thumbnails-vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

#aoc .aoc-thumbnails-vertical:before {
  content: normal;
}

#aoc .aoc-thumbnails-vertical:after {
  content: normal;
}

@media only screen and (max-width: 1023px) {
  #aoc .aoc-thumbnails-vertical {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

#aoc .aoc-thumbnails-vertical__thumbnail {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  font-size: 0;
  margin: 9px 1.4% 0 0;
  width: 100%;
}

#aoc .aoc-thumbnails-vertical__thumbnail:before {
  content: normal;
}

#aoc .aoc-thumbnails-vertical__thumbnail:after {
  content: normal;
}

@media only screen and (max-width: 1023px) {
  #aoc .aoc-thumbnails-vertical__thumbnail {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 23%;
    flex: 1 0 23%;
    max-width: 24%;
    margin-right: 1.3%;
  }

  #aoc .aoc-thumbnails-vertical__thumbnail:nth-child(4n+4) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 799px) {
  #aoc .aoc-thumbnails-vertical__thumbnail {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 24%;
    flex: 1 0 24%;
    max-width: 31.5%;
    margin-right: 2.6%;
  }

  #aoc .aoc-thumbnails-vertical__thumbnail:nth-child(4n+4) {
    margin-right: 2.6%;
  }

  #aoc .aoc-thumbnails-vertical__thumbnail:nth-child(3n+3) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 515px) {
  #aoc .aoc-thumbnails-vertical__thumbnail {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 40%;
    flex: 1 0 40%;
    max-width: 48.2%;
    margin-right: 3.2%;
  }

  #aoc .aoc-thumbnails-vertical__thumbnail:nth-child(3n+3) {
    margin-right: 3.2%;
  }

  #aoc .aoc-thumbnails-vertical__thumbnail:nth-child(2n+2) {
    margin-right: 0;
  }
}

#aoc .aoc-thumbnails-vertical__img {
  max-width: 100%;
  width: 100%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) and (min-width: 799px) {
  #aoc {
    /* IE10+ CSS styles go here */
  }

  #aoc .aoc-thumbnails-vertical {
    display: block;
  }
}

#aoc .aoc-alphabet-directory__letters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
  list-style-type: none;
  margin-left: 0;
  padding: 0;
}

#aoc .aoc-alphabet-directory__letters--mobile {
  display: none;
}

@media screen and (max-width: 799px) {
  #aoc .aoc-alphabet-directory__letters--desktop {
    display: none;
  }

  #aoc .aoc-alphabet-directory__letters--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#aoc .aoc-alphabet-directory__letter {
  border-left: 1px solid #bbb;
  line-height: 30px;
  text-align: center;
  width: 25px;
}

#aoc .aoc-alphabet-directory__letter:last-of-type {
  border-right: 1px solid #bbb;
}

#aoc .aoc-alphabet-directory__letter--disabled {
  color: #bbb;
}

@media screen and (max-width: 799px) {
  #aoc .aoc-alphabet-directory__letter {
    width: 50px;
  }
}

#aoc .aoc-alphabet-directory__title {
  font-weight: bold;
  margin-bottom: 0;
}

#aoc .aoc-alphabet-directory__list {
  list-style-type: none;
  margin: 0.5em 0;
  padding: 0;
}

#aoc .aoc-alphabet-directory__sublist {
  list-style-type: none;
  margin-top: 5px;
}

#aoc .aoc-pub-article__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

#aoc .aoc-pub-article {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
  max-width: 1300px;
  position: relative;
  width: 100%;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-article {
    padding: 0;
  }
}

#aoc .aoc-pub-article__content {
  font-size: 1.2941176471em;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-article__content {
    font-size: 1.0588235294em;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-article__content {
    font-size: 0.9411764706em;
  }
}

#aoc .aoc-pub-article__content p {
  line-height: 132%;
  word-spacing: 2px;
}

#aoc .aoc-pub-article__content--quote {
  font-size: 2.1176470588em;
  line-height: 100%;
  padding: 0.1764705882em 0;
  margin: 0;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-article__content--quote {
    font-size: 1.5294117647em;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-article__content--quote {
    font-size: 1.1764705882em;
  }
}

#aoc .aoc-pub-article hr {
  border-color: #ccc;
  border-style: solid;
  border-top: none;
  border-width: 1px;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin: 0 0 1.1764705882em;
}

#aoc .aoc-pub-article__posts {
  padding-top: 8px;
  margin-top: 0em;
}

#aoc .aoc-pub-article__posts-header {
  font-size: 1.0588235294em;
  padding-bottom: 0;
}

#aoc .aoc-pub-article__author-note {
  border-top: 1px solid #CCC;
  padding-bottom: 18px;
  padding-top: 8px;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-article__author-note {
    margin-top: 20px;
  }
}

#aoc .aoc-pub-article__author-note p {
  font-size: 18px;
  margin: 12px 0;
  line-height: 130%;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-article__author-note p {
    font-size: 0.9411764706em;
  }
}

#aoc .aoc-pub-article__book-summary {
  border-bottom: 1px solid #CCC;
  border-right: 1px solid #CCC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  float: left;
  margin-bottom: 0.5882352941em;
  margin-right: 1.1764705882em;
  max-width: 210px;
  padding-bottom: 0.5882352941em;
  padding-right: 10px;
  width: 100%;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-article__book-summary {
    border: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    float: none;
    margin: 0 0 20px 0;
    padding-bottom: 0;
    max-width: 100%;
  }
}

#aoc .aoc-pub-article__book-summary__image {
  display: block;
  height: auto;
  max-height: 252px;
  max-width: 162px;
  width: auto;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-article__book-summary__image {
    max-height: 125px;
    max-width: 80px;
  }
}

#aoc .aoc-pub-article__book-summary__info {
  padding-top: 0.4705882353em;
  font-size: 18px;
  color: #555;
  line-height: 130%;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-article__book-summary__info {
    border-bottom: 1px solid #CCC;
    margin-left: 10px;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-article__book-summary__info {
    font-size: 14px;
    padding-right: 10px;
    padding-top: 0;
  }
}

#aoc .aoc-pub-article__book-summary__info--author,
#aoc .aoc-pub-article__book-summary__info--date {
  margin-bottom: 5px;
  line-height: 120%;
}

#aoc .aoc-pub-article__book-summary__info--date {
  font-style: italic;
}

#aoc .aoc-pub-article__social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 245px 15px 0 0;
  max-width: 2.9411764706em;
  width: 100%;
}

#aoc .aoc-pub-article__social-media--book {
  padding-top: 215px;
}

@media screen and (max-width: 1000px) {
  #aoc .aoc-pub-article__social-media {
    padding-top: 310px;
  }
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-article__social-media {
    display: none;
  }
}

#aoc .aoc-pub-article__social-media--icon {
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
  display: inline-flex;
  height: 35px;
  width: 35px;
}

#aoc .aoc-pub-article__social-media--icon:first-child {
  margin-bottom: 5px;
}

#aoc .aoc-pub-article__social-media-mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-article__social-media-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  #aoc .aoc-pub-article__social-media-mobile--book {
    margin-bottom: 0.8235294118em;
  }
}

#aoc .aoc-pub-article__social-media-mobile--icon {
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
  display: inline-flex;
  height: 35px;
  width: 35px;
  margin-right: 10px;
}

#aoc .aoc-pub-article .aoc-pub-article-title {
  text-indent: -2px;
}

@media screen and (max-width: 599px) {
  #aoc .aoc-pub-article .aoc-pub-article__posts {
    margin-top: 1.1764705882em;
  }
}

@media screen and (max-width: 599px) {
  #aoc .aoc-pub-article .aoc-pub-secondary-post:first-child {
    border: none;
    margin-top: 0;
    padding-top: 0;
  }
}

#aoc .aoc-pub-article .aoc-pub-secondary-post-feed {
  border-top: none;
  padding-top: 18px;
}

#aoc .aoc-pub-article__topics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 30px 0 22px 0;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-article__topics {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 15px 0;
  }
}

#aoc .aoc-pub-article__topics__title {
  line-height: 120%;
  margin: 0;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-article__topics__title {
    padding: 0;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-article__topics__title {
    margin: 0;
  }
}

#aoc .aoc-pub-article__topics__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-article__topics__list {
    padding-top: 0.4705882353em;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

#aoc .aoc-pub-article__topics__list--item {
  font-size: 1em;
  margin-bottom: 0;
}

#aoc .aoc-pub-article__topics__list--item a {
  color: #1a568a;
  font-weight: normal;
  padding: 0 0.5882352941em;
  position: relative;
  display: inline-block;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-article__topics__list--item a {
    padding: 0.1176470588em 0;
    margin-right: 0.5882352941em;
  }
}

#aoc .aoc-pub-article__topics__list--item a:after {
  border-right: 1px solid #1a568a;
  content: "";
  display: inline-block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-article__topics__list--item a:after {
    border: none;
  }
}

#aoc .aoc-pub-article__topics__list--item a:hover {
  text-decoration: underline;
}

#aoc .aoc-pub-article__header--title,
#aoc .aoc-pub-headers-h1 {
  color: #000;
  font-size: 3.2941176471em;
  line-height: 110%;
  margin: 0.2352941176em 0 0 0;
  text-indent: -2px;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-article__header--title,
  #aoc .aoc-pub-headers-h1 {
    font-size: 2.1176470588em;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-article__header--title,
  #aoc .aoc-pub-headers-h1 {
    font-size: 1.6470588235em;
  }
}

#aoc .aoc-pub-article__header--subtitle {
  color: #666;
  border-bottom: 1px solid #CCC;
  padding-bottom: 0.4705882353em;
  font-size: 2em;
  margin: 0 0 0.4705882353em 0;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-article__header--subtitle {
    font-size: 1.2941176471em;
  }
}

#aoc .aoc-pub-article__header--label {
  color: #D71920;
  font-size: 1.2941176471em;
  margin-bottom: 2px;
  padding-bottom: 0;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-article__header--label {
    font-size: 0.9411764706em;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-article__header--label {
    font-size: 0.8235294118em;
  }
}

#aoc .aoc-pub-article__header--author {
  font-size: 1.0588235294em;
  line-height: 142%;
  margin: 0.5882352941em 0 1.1764705882em 0;
  text-transform: none;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-article__header--author {
    display: block;
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 0.5882352941em;
    padding-top: 0.5882352941em;
  }
}

@media screen and (max-width: 760px) {
  #aoc .aoc-pub-article__header--author {
    margin-bottom: 0.7058823529em;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-article__header--author {
    font-size: 0.8823529412em;
  }
}

#aoc .aoc-pub-article-hero {
  margin: 0 0 0.5882352941em 0;
  position: relative;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-article-hero {
    margin-top: 0.8235294118em;
  }
}

#aoc .aoc-pub-article-hero__image-container {
  background: #000;
  margin-top: 10px;
}

#aoc .aoc-pub-article-hero__image {
  display: block;
  height: 500px;
  margin: 0 auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: auto;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-article-hero__image {
    height: 400px;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-article-hero__image {
    height: 200px;
  }
}

#aoc .aoc-pub-article-hero__caption {
  display: block;
  color: #555;
  font-size: 1.0588235294em;
  line-height: 130%;
  padding: 10px 0;
  width: 100%;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-article-hero__caption {
    font-size: 0.9411764706em;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-article-hero__caption {
    font-size: 0.8235294118em;
  }
}

#aoc .aoc-pub-article-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  max-height: 183px;
  max-width: 100%;
  position: relative;
  width: 912px;
}

@media screen and (max-width: 520px) {
  #aoc .aoc-pub-article-banner {
    display: block;
    max-height: 100%;
  }
}

#aoc .aoc-pub-article-banner__image {
  display: block;
  max-width: 100%;
  max-height: 182px;
  width: 100%;
  z-index: 1;
}

@media screen and (max-width: 520px) {
  #aoc .aoc-pub-article-banner__image {
    display: none;
  }
}

#aoc .aoc-pub-article-banner__title {
  font-size: 2.4705882353em;
  color: #000;
  line-height: 120%;
  left: 20px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 20px;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-article-banner__title {
    font-size: 1.8823529412em;
  }
}

@media screen and (max-width: 580px) {
  #aoc .aoc-pub-article-banner__title {
    font-size: 1.6470588235em;
    line-height: 120%;
    max-width: 400px;
    width: 100%;
    top: 10px;
    left: 10px;
  }
}

@media screen and (max-width: 520px) {
  #aoc .aoc-pub-article-banner__title {
    color: #666;
    font-size: 1.2941176471em;
    left: 0;
    line-height: 120%;
    margin-bottom: 11px;
    padding: 0;
    position: relative;
    text-indent: -1px;
    top: 0;
  }
}

#aoc #aoc-pub-social-media-sticky-sticky-wrapper,
#aoc #aoc-pub-social-media-books-sticky-sticky-wrapper {
  max-width: 2.9411764706em;
  width: 100%;
}

@media screen and (max-width: 768px) {
  #aoc #aoc-pub-social-media-sticky-sticky-wrapper,
  #aoc #aoc-pub-social-media-books-sticky-sticky-wrapper {
    display: none;
  }
}

#aoc #aoc-pub-events-nav-sticky-sticky-wrapper {
  width: 20%;
}

#aoc .aoc-pub-ad-banner {
  height: auto;
  margin: 0 auto 11px;
  text-align: center;
  width: 728px;
}

#aoc .aoc-pub-classifieds-sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 1.0588235294em;
  max-width: 288px;
  width: 100%;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-classifieds-sidebar {
    font-size: 0.9411764706em;
  }
}

#aoc .aoc-pub-classifieds-sidebar__title {
  font-size: 1.0588235294em;
  line-height: 120%;
  margin: 0;
  padding: 0 0 0.7058823529em 0;
}

#aoc .aoc-pub-classifieds-sidebar__content {
  margin-bottom: 0.5882352941em;
  line-height: 120%;
}

#aoc .aoc-pub-classifieds-post {
  border-bottom: 1px solid #CCC;
  font-size: 1.0588235294em;
  margin-bottom: 0.5882352941em;
  padding-bottom: 1.1764705882em;
  width: 100%;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-classifieds-post {
    font-size: 0.9411764706em;
  }
}

#aoc .aoc-pub-classifieds-post__title,
#aoc .aoc-pub-headers-h3 {
  font-size: 1.0588235294em;
  line-height: 120%;
  margin: 0;
  padding: 0 0 0.3529411765em 0;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-classifieds-post__title,
  #aoc .aoc-pub-headers-h3 {
    font-size: 0.9411764706em;
  }
}

#aoc .aoc-pub-classifieds-post__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 0.5882352941em;
}

#aoc .aoc-pub-classifieds-post__list {
  margin: 0;
  list-style: none;
  padding: 0;
}

#aoc .aoc-pub-classifieds-post__list__item {
  padding: 0.1176470588em 0 0;
  margin-bottom: 0;
}

#aoc .aoc-pub-classifieds-post__list__item a {
  color: #1a568a;
}

#aoc .aoc-pub-classifieds-post__list__item a:hover {
  text-decoration: underline;
}

#aoc .aoc-pub-classifieds-post__info {
  line-height: 130%;
  margin-top: 0.8235294118em;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-classifieds-post__info {
    margin-top: 0.4705882353em;
  }
}

#aoc .aoc-pub-page-title {
  color: #666;
  font-size: 2em;
  line-height: 120%;
  margin-bottom: 11px;
  padding: 0;
  text-indent: -1px;
}

#aoc .aoc-pub-page-title--underline {
  border-bottom: 1px solid #CCC;
  padding-bottom: 15px;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-page-title--underline {
    padding-bottom: 8px;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-page-title {
    font-size: 1.2941176471em;
  }
}

#aoc .aoc-pub-headers-h1 {
  text-indent: -2px;
}

#aoc .aoc-pub-headers-h2,
#aoc .aoc-pub-tertiary-post__title,
#aoc .aoc-pub-secondary-post__title,
#aoc .aoc-pub-primary-post__title,
#aoc .aoc-pub-books__title,
#aoc .aoc-pub-list-topic__content--title {
  color: #000;
  font-size: 1.8823529412em;
  line-height: 120%;
  margin: 0;
  margin-bottom: 0.4705882353em;
}

@media screen and (max-width: 799px) {
  #aoc .aoc-pub-headers-h2,
  #aoc .aoc-pub-tertiary-post__title,
  #aoc .aoc-pub-secondary-post__title,
  #aoc .aoc-pub-primary-post__title,
  #aoc .aoc-pub-books__title,
  #aoc .aoc-pub-list-topic__content--title {
    font-size: 1.1764705882em;
  }
}

#aoc .aoc-pub-headers-h4 {
  text-transform: uppercase;
}

#aoc .aoc-pub-headers-h5 {
  margin-bottom: 5px;
}

#aoc .aoc-pub-ul__unstyled {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}

#aoc .aoc-pub-ul__unstyled strong {
  color: #000;
}

#aoc .aoc-pub-events-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1366px;
  padding-top: 0.5882352941em;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-events-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#aoc .aoc-pub-events-main .aoc-pub-events-nav {
  width: 20%;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-events-main .aoc-pub-events-nav {
    width: 100%;
  }
}

#aoc .aoc-pub-events-main .aoc-pub-events-list {
  max-width: 100%;
  width: 50%;
  padding-right: 2.9411764706em;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-events-main .aoc-pub-events-list {
    width: 100%;
    padding-right: 0;
  }
}

#aoc .aoc-pub-events-main .aoc-pub-events-info {
  width: 30%;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-events-main .aoc-pub-events-info {
    width: 100%;
  }
}

#aoc .aoc-pub-events-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-events-nav__list {
    display: none;
  }
}

#aoc .aoc-pub-events-nav__item {
  display: block;
  margin-bottom: 0.5882352941em;
  font-size: 1.0588235294em;
  line-height: 120%;
}

#aoc .aoc-pub-events-nav__item.active {
  color: #D71920;
}

#aoc .aoc-pub-events-nav__item a:hover {
  color: #D71920;
}

#aoc .aoc-pub-event {
  border-top: 1px solid #CCC;
  padding-bottom: 1.1764705882em;
  padding-top: 0.5882352941em;
  position: relative;
  width: 100%;
}

#aoc .aoc-pub-event:first-child {
  border-top: none;
  padding-top: 0;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-event {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }

  #aoc .aoc-pub-event:first-child {
    margin-top: 1.1764705882em;
    border-top: 1px solid #CCC;
  }
}

#aoc .aoc-pub-event__title,
#aoc .aoc-pub-headers-h4 {
  font-size: 1.0588235294em;
  line-height: 120%;
  margin: 0 0 0.6470588235em 0;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-event__title,
  #aoc .aoc-pub-headers-h4 {
    margin: 0;
    padding: 1.1764705882em 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-event__title,
  #aoc .aoc-pub-headers-h4 {
    font-size: 1.1764705882em;
  }
}

#aoc .aoc-pub-event__title .aoc-accordion__chevron,
#aoc .aoc-pub-headers-h4 .aoc-accordion__chevron {
  display: none;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-event__title .aoc-accordion__chevron,
  #aoc .aoc-pub-headers-h4 .aoc-accordion__chevron {
    display: block;
  }

  #aoc .aoc-pub-event__title .aoc-accordion__chevron--expand,
  #aoc .aoc-pub-headers-h4 .aoc-accordion__chevron--expand {
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-event__title .aoc-accordion__chevron,
  #aoc .aoc-pub-headers-h4 .aoc-accordion__chevron {
    height: 1.1764705882em;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-event__wrapper {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    display: none;
  }

  #aoc .aoc-pub-event__wrapper--open {
    display: block;
    padding-bottom: 2.3529411765em;
  }
}

#aoc .aoc-pub-event__content {
  font-size: 1.0588235294em;
  line-height: 130%;
  margin-bottom: 0.5882352941em;
  position: relative;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-event__content {
    padding-right: 1.1764705882em;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-event__content {
    font-size: 0.9411764706em;
    padding-right: 0.5882352941em;
  }
}

#aoc .aoc-pub-event__content a {
  color: #1a568a;
  word-wrap: break-word;
}

#aoc .aoc-pub-events__close {
  display: none;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-events__close {
    display: block;
    color: #D71920;
    bottom: 14px;
    cursor: pointer;
    height: 1.1764705882em;
    position: absolute;
    right: 0.5294117647em;
    width: 1.1764705882em;
  }
}

#aoc .aoc-pub-events-info {
  border-top: 1px solid #CCC;
  font-size: 1.0588235294em;
  line-height: 130%;
  max-width: 290px;
  padding-top: 0.4705882353em;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-events-info {
    display: none;
  }
}

#aoc .aoc-pub-events-info--mobile {
  display: none;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-events-info--mobile {
    border-bottom: 1px solid #ccc;
    border-top: none;
    display: block;
    max-width: 100%;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-events-info--mobile {
    font-size: 0.9411764706em;
  }
}

#aoc .aoc-pub-events-info__copy {
  margin-bottom: 0.7058823529em;
}

#aoc .aoc-pub-events-info__list {
  line-height: 120%;
  margin: 10px 0 10px 30px;
  padding: 0;
}

#aoc .aoc-pub-events-info__list__item {
  margin: 0.7058823529em 0;
}

#aoc .aoc-pub-events-info a {
  color: #1a568a;
}

#aoc .aoc-pub-form {
  margin-top: 20px;
}

#aoc .aoc-pub-form__input-field {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  background-color: #fafafa;
  border: 1px solid #ccc;
  font-size: 18px;
  height: 44px;
  margin-bottom: 23px;
  max-width: 704px;
  padding: 10px;
  width: 100%;
}

#aoc .aoc-pub-form__input-field--short {
  max-width: 450px;
}

#aoc .aoc-pub-form__input-field--shorter {
  max-width: 250px;
}

#aoc .aoc-pub-form__input-field::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}

#aoc .aoc-pub-form__input-field::-moz-placeholder {
  opacity: 1;
  color: #000;
}

#aoc .aoc-pub-form__input-field:-ms-input-placeholder {
  opacity: 1;
  color: #000;
}

#aoc .aoc-pub-form__input-field::-ms-input-placeholder {
  opacity: 1;
  color: #000;
}

#aoc .aoc-pub-form__input-field::placeholder {
  opacity: 1;
  color: #000;
}

#aoc .aoc-pub-form__input-field--text-area {
  height: auto;
}

#aoc .aoc-pub-form__input-field:active,
#aoc .aoc-pub-form__input-field:focus,
#aoc .aoc-pub-form__input-field.active {
  border-color: #D71920;
  outline: none;
}

#aoc .aoc-pub-form__label {
  line-height: 24px;
  margin-bottom: 9px;
}

#aoc .aoc-pub-select-dropdown {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 704px;
  height: 44px;
  margin: 5px 0;
}

#aoc .aoc-pub-select-dropdown__state {
  max-width: 250px;
}

#aoc .aoc-pub-select-dropdown__text {
  background-color: #fafafa;
  border: 1px solid #ccc;
  cursor: pointer;
  line-height: 44px;
  position: absolute;
  text-indent: 10px;
  width: 100%;
  color: #333;
}

#aoc .aoc-pub-select-dropdown__text:after {
  background: url("img/arrow-dropdown.svg") no-repeat;
  content: "";
  height: 16px;
  position: absolute;
  right: 10px;
  top: 14px;
  width: 16px;
}

#aoc .aoc-pub-select-dropdown__content a {
  color: #333;
}

#aoc .aoc-pub-select-dropdown__toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0;
  height: 44px;
  margin: 0 0 0 1px;
  padding: 0;
  position: absolute;
  text-indent: -10px;
  top: 0;
  width: 100%;
  z-index: 10;
}

#aoc .aoc-pub-select-dropdown__toggle:focus {
  outline: 0;
}

#aoc .aoc-pub-select-dropdown__content {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  list-style-type: none;
  position: absolute;
  top: 32px;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  text-indent: 10px;
  line-height: 32px;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 100%;
  z-index: 2;
}

#aoc .aoc-pub-select-dropdown__content a {
  display: block;
}

#aoc .aoc-pub-select-dropdown__content a:hover {
  background: #d2dde7;
}

#aoc .aoc-pub-select-dropdown__toggle:hover ~ .aoc-pub-select-dropdown__text {
  background-color: #e8e8e8;
}

#aoc .aoc-pub-select-dropdown__toggle:focus ~ .aoc-pub-select-dropdown__text {
  background-color: #e8e8e8;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) inset, 0 1px 0 rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) inset, 0 1px 0 rgba(255, 255, 255, 0.8);
  z-index: 2;
}

#aoc .aoc-pub-select-dropdown__toggle:focus ~ .aoc-pub-select-dropdown__text:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

#aoc .aoc-pub-select-dropdown__toggle:focus ~ .aoc-pub-select-dropdown__content {
  opacity: 1;
  visibility: visible;
  top: 46px;
}

#aoc .aoc-pub-forms__subscribe {
  padding-bottom: 20px;
  max-width: 800px;
}

#aoc .aoc-pub-forms__subscribe__title {
  border-top: 1px solid #CCC;
  margin-bottom: 12px;
  padding-top: 6px;
}

#aoc .aoc-pub-forms__subscribe__mail-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: 120%;
  margin-left: 40px;
  padding-top: 20px;
}

#aoc .aoc-pub-forms__subscribe__extend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: 120%;
  margin-left: 40px;
  max-width: 500px;
}

#aoc .aoc-pub-forms__subscribe__extend.subscribe {
  margin-bottom: 20px;
}

#aoc .aoc-pub-forms__subscribe__extend input[type=text] {
  background-color: #fafafa;
  border: 1px solid #ccc;
  height: 44px;
  margin-bottom: 10px;
  max-width: 200px;
  padding: 0.5em;
  width: 100%;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

#aoc .aoc-pub-forms__subscribe__extend input[type=text]:focus {
  outline: none;
}

#aoc .aoc-pub-forms__subscribe__extend input[type=text]:last-child {
  margin-bottom: 0;
}

#aoc .aoc-pub-forms__subscribe__extend label {
  margin-bottom: 6px;
}

#aoc .aoc-pub-button {
  background-color: #878787;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 0.9411764706em;
  line-height: 120%;
  padding: 0.8em 1em;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

#aoc .aoc-pub-button__subscribe {
  max-width: 150px;
}

#aoc .aoc-pub-button__subscribe--blue {
  background-color: #1a568a;
  margin-top: 20px;
}

#aoc .aoc-pub-button:hover {
  opacity: 0.8;
}

#aoc .aoc-pub-radio__fieldset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 5px 0;
  padding: 0;
  width: 100%;
}

#aoc .aoc-pub-radio-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 40px;
}

#aoc .aoc-pub-radio-field__label {
  margin-left: 6px;
}

#aoc .aoc-pub-radio-field__multi-line {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

#aoc .aoc-pub-radio-field__multi-line .aoc-pub-radio-field__label {
  margin-top: 5px;
}

#aoc .aoc-pub-radio-field__multi-line .aoc-pub-radio-field__label span {
  margin-top: 12px;
  display: block;
}

#aoc .aoc-pub-radio {
  height: 35px;
  margin: 0;
  position: relative;
  width: 35px;
}

#aoc .aoc-pub-radio__inner-button {
  background: #1a568a;
}

#aoc .aoc-pub-radio--approve .aoc-pub-radio__input,
#aoc .aoc-pub-radio--deny .aoc-pub-radio__input {
  left: -999em;
  position: absolute;
  z-index: 1;
}

#aoc .aoc-pub-radio--approve .aoc-pub-radio__label,
#aoc .aoc-pub-radio--deny .aoc-pub-radio__label {
  cursor: pointer;
}

#aoc .aoc-pub-radio--deny .aoc-pub-radio__label .aoc-pub-radio__outer-button,
#aoc .aoc-pub-radio--approve .aoc-pub-radio__label .aoc-pub-radio__outer-button {
  background-color: #fff;
}

#aoc .aoc-pub-radio--approve .aoc-pub-radio__input + .aoc-pub-radio__label .aoc-pub-radio__inner-button,
#aoc .aoc-pub-radio--deny .aoc-pub-radio__input + .aoc-pub-radio__label .aoc-pub-radio__inner-button {
  border-radius: 100%;
  height: 24px;
  left: 5px;
  opacity: 0.5;
  position: relative;
  top: 5px;
  width: 24px;
}

#aoc .aoc-pub-radio--approve .aoc-pub-radio__input + .aoc-pub-radio__label .aoc-pub-radio__inner-button:after,
#aoc .aoc-pub-radio--deny .aoc-pub-radio__input + .aoc-pub-radio__label .aoc-pub-radio__inner-button:after {
  background-color: black;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 10px;
  position: relative;
  top: 2px;
  width: 10px;
}

#aoc .aoc-pub-radio--approve .aoc-pub-radio__input:checked + .aoc-pub-radio__label .aoc-pub-radio__inner-button,
#aoc .aoc-pub-radio--deny .aoc-pub-radio__input:checked + .aoc-pub-radio__label .aoc-pub-radio__inner-button {
  border-radius: 100%;
  position: relative;
  height: 24px;
  width: 24px;
  top: 5px;
  left: 5px;
  opacity: 1;
}

#aoc .aoc-pub-radio--approve .aoc-pub-radio__input:checked + .aoc-pub-radio__label .aoc-pub-radio__inner-button:after,
#aoc .aoc-pub-radio--deny .aoc-pub-radio__input:checked + .aoc-pub-radio__label .aoc-pub-radio__inner-button:after {
  background-color: black;
  content: "";
  display: inline-block;
  height: 10px;
  position: relative;
  top: 2px;
  width: 10px;
}

#aoc .aoc-pub-radio--approve .aoc-pub-radio__outer-button,
#aoc .aoc-pub-radio--deny .aoc-pub-radio__outer-button {
  content: " ";
  display: inline-block;
  height: 36px;
  margin: -2px 8px 0 0;
  vertical-align: top;
  text-align: center;
  left: 0;
  width: 36px;
  position: absolute;
  z-index: 1;
}

#aoc .aoc-pub-signup {
  width: 100%;
}

#aoc .aoc-pub-signup__title {
  color: #676767;
  margin-bottom: 0.8em;
}

#aoc .aoc-pub-signup__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  width: 100%;
}

#aoc .aoc-pub-signup__form input[type=text] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  background-color: #EEE;
  border-right: 0;
  border: 1px solid #CCC;
  height: 36px;
  margin-bottom: 0;
  min-width: 162px;
  padding: 0 0.5em;
  width: 100%;
}

#aoc .aoc-pub-signup__form input[type=text]::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}

#aoc .aoc-pub-signup__form input[type=text]::-moz-placeholder {
  opacity: 1;
  color: #000;
}

#aoc .aoc-pub-signup__form input[type=text]:-ms-input-placeholder {
  opacity: 1;
  color: #000;
}

#aoc .aoc-pub-signup__form input[type=text]::-ms-input-placeholder {
  opacity: 1;
  color: #000;
}

#aoc .aoc-pub-signup__form input[type=text]::placeholder {
  opacity: 1;
  color: #000;
}

#aoc .aoc-pub-signup__form input[type=text]:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

#aoc .aoc-pub-signup__form input[type=submit] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  background-color: #8c8c8c;
  border: none;
  color: #fff;
  display: inline-block;
  font-size: 1.0588235294em;
  height: 36px;
  margin-left: 9px;
  max-width: 36px;
  min-width: 36px;
  padding: 0;
  text-align: center;
  width: 100%;
}

#aoc .aoc-pub-signup__form input[type=submit]:hover {
  cursor: pointer;
}

#aoc .aoc-form--good-news .aoc-form__note {
  color: #ccc;
}

#aoc .aoc-form--good-news .aoc-checkbox__fieldset {
  padding: 0 0.625em 0 0;
}

#aoc .aoc-form--good-news .aoc-checkbox__agree-terms {
  margin-top: 10px;
  opacity: 0;
  position: absolute;
  width: 100%;
}

#aoc .aoc-form--good-news #aoc-checkbox-good-news:checked ~ .aoc-checkbox__agree-terms {
  opacity: 1;
}

#aoc .aoc-form--good-news .aoc-checkbox-label {
  display: inline;
}

#aoc .aoc-form--good-news .aoc-form__input-field {
  max-width: 100%;
}

#aoc .aoc-pub-footer {
  background-color: #e5ebf0;
  color: #1c1c1b;
  font-size: 0.9411764706em;
  margin-top: 2.8235294118em;
  padding: 1.38em 0;
  width: 100%;
}

@media screen and (max-width: 800px) {
  #aoc .aoc-pub-footer {
    font-size: 1.0588235294em;
  }
}

@media screen and (max-width: 700px) {
  #aoc .aoc-pub-footer {
    height: auto;
    padding: 1.0588235294em 0 1.4117647059em 0;
    font-size: 0.9411764706em;
  }
}

#aoc .aoc-pub-footer div.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  max-width: 1366px;
  padding: 0 50px;
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-pub-footer div.row {
    padding: 0 0.8823529412em;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-footer div.row {
    padding: 0 30px;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-pub-footer div.row {
    margin: 0;
    width: 100%;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-pub-footer div.row {
    padding: 0 20px;
  }
}

@media screen and (max-width: 700px) {
  #aoc .aoc-pub-footer div.row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#aoc .aoc-pub-footer__col {
  margin: 0 50px 0 24px;
  width: 184px;
}

#aoc .aoc-pub-footer__col:nth-child(2) {
  margin-right: 0;
}

@media screen and (max-width: 950px) {
  #aoc .aoc-pub-footer__col {
    width: 140px;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-pub-footer__col {
    margin: 0 auto;
    width: 100%;
  }
}

#aoc .aoc-pub-footer__ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#aoc .aoc-pub-footer__li {
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-footer__li a {
    line-height: 1.29412em;
    font-size: 0.88235em;
  }
}

#aoc .aoc-pub-footer__li a:hover {
  color: #666;
}

#aoc .aoc-pub-footer__one-half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 800px) {
  #aoc .aoc-pub-footer__one-half {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  #aoc .aoc-pub-footer__one-half .aoc-pub-footer__ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  #aoc .aoc-pub-footer__one-half .aoc-pub-footer__ul:first-child {
    padding-left: 40%;
    white-space: nowrap;
  }
}

@media screen and (max-width: 800px) and (max-width: 800px) {
  #aoc .aoc-pub-footer__one-half .aoc-pub-footer__ul:first-child {
    min-width: 200px;
    padding-left: 30%;
  }
}

@media screen and (max-width: 800px) and (max-width: 760px) {
  #aoc .aoc-pub-footer__one-half .aoc-pub-footer__ul:first-child {
    min-width: 160px;
    padding-left: 20%;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-pub-footer__one-half .aoc-pub-footer__ul:first-child .aoc-pub-footer__li {
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-pub-footer__one-half .aoc-pub-footer__ul .aoc-pub-footer__li {
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-pub-footer__one-half .aoc-pub-footer__col:first-child .aoc-pub-footer__ul {
    font-size: 0.8823529412em;
  }
}

@media screen and (max-width: 700px) {
  #aoc .aoc-pub-footer__one-half {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }

  #aoc .aoc-pub-footer__one-half .aoc-pub-footer__ul:first-child {
    padding-left: 0;
  }

  #aoc .aoc-pub-footer__one-half .aoc-pub-footer__ul .aoc-pub-footer__li {
    margin-bottom: 12px;
  }

  #aoc .aoc-pub-footer__one-half .aoc-pub-footer__col:first-child .aoc-pub-footer__ul {
    font-size: 1em;
  }
}

#aoc .aoc-pub-footer__one-half .aoc-pub-footer__col:nth-child(2) {
  margin-top: 0;
  padding-right: 24px;
}

@media screen and (max-width: 760px) {
  #aoc .aoc-pub-footer__one-half .aoc-pub-footer__col:nth-child(2) {
    padding-right: 0;
  }
}

#aoc .aoc-pub-footer__one-half .aoc-pub-footer__col:first-child {
  width: auto;
  white-space: nowrap;
  margin-left: 0;
}

@media screen and (max-width: 800px) {
  #aoc .aoc-pub-footer__one-half .aoc-pub-footer__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
  }
}

#aoc .aoc-pub-footer__second-half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#aoc .aoc-pub-footer__second-half .aoc-pub-footer__col {
  margin-left: 0;
  min-width: 150px;
  width: auto;
}

@media screen and (max-width: 1024px) {
  #aoc .aoc-pub-footer__second-half .aoc-pub-footer__col {
    margin-right: 0;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-pub-footer__second-half .aoc-pub-footer__col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-pub-footer__second-half .aoc-pub-footer__ul {
    min-width: 200px;
    padding-left: 10%;
  }
}

@media screen and (max-width: 760px) {
  #aoc .aoc-pub-footer__second-half .aoc-pub-footer__ul {
    min-width: 160px;
  }
}

@media screen and (max-width: 700px) {
  #aoc .aoc-pub-footer__second-half .aoc-pub-footer__ul {
    padding-left: 0;
  }
}

#aoc .aoc-pub-footer__second-half .aoc-pub-ul__unstyled {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  max-width: 370px;
  padding: 0;
  width: 100%;
}

@media screen and (max-width: 800px) {
  #aoc .aoc-pub-footer__second-half .aoc-pub-ul__unstyled {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    max-width: 100%;
    width: auto;
  }
}

@media screen and (max-width: 375px) {
  #aoc .aoc-pub-footer__second-half .aoc-pub-ul__unstyled {
    width: auto;
    margin-top: 0;
  }
}

#aoc .aoc-pub-footer__second-half .aoc-pub-ul__unstyled .aoc-pub-footer-nav__item {
  display: inline-block;
  height: auto;
  min-width: 175px;
}

@media screen and (max-width: 800px) {
  #aoc .aoc-pub-footer__second-half .aoc-pub-ul__unstyled .aoc-pub-footer-nav__item {
    min-width: 0;
  }

  #aoc .aoc-pub-footer__second-half .aoc-pub-ul__unstyled .aoc-pub-footer-nav__item:last-child {
    margin-bottom: 0;
  }
}

#aoc .aoc-pub-footer-nav__item {
  margin-bottom: 12px;
}

#aoc .aoc-pub-footer-nav__item a {
  color: #1c1c1b;
  text-decoration: none;
}

#aoc .aoc-pub-footer-nav__item a:hover {
  color: #666;
}

#aoc .aoc-pub-footer__social-media {
  display: none;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-footer__social-media {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 2px solid #CCC;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0 0 0.7058823529em 0;
    width: auto;
  }

  #aoc .aoc-pub-footer__social-media li:first-of-type {
    margin-right: 20px;
    font-size: 1.0588235294em;
  }

  #aoc .aoc-pub-footer__social-media li {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}

@media screen and (max-width: 700px) {
  #aoc .aoc-pub-footer__social-media {
    margin-bottom: 15px;
    padding: 0 0 10px 0;
    width: 100%;
    max-width: 100%;
  }

  #aoc .aoc-pub-footer__social-media li {
    -webkit-box-flex: inherit;
    -ms-flex: inherit;
    flex: inherit;
  }
}

#aoc .aoc-pub-footer__social-media__icon {
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
  display: inline-flex;
  height: 1.9411764706em;
  margin-right: 1em;
  width: 1.8823529412em;
}

#aoc .aoc-pub-footer__social-media li:last-child .aoc-pub-footer__social-media__icon {
  margin-right: 0;
}

#aoc .aoc-pub-header {
  background: #fff;
  padding: 0;
  margin: 0 0 24px;
}

@media screen and (max-width: 515px) {
  #aoc .aoc-pub-header {
    margin-bottom: 11px;
    margin-top: 11px;
  }
}

#aoc .aoc-pub-header__top-row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 5.2941176471em;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1366px;
  padding: 1.1764705882em 50px 1.4117647059em;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-header__top-row {
    border-bottom: 1px solid #ccc;
    height: auto;
    padding: 1.1764705882em 30px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-pub-header__top-row {
    margin: 0 auto 0.8823529412em;
    padding: 0.8823529412em 20px;
  }
}

@media screen and (max-width: 515px) {
  #aoc .aoc-pub-header__top-row {
    border-bottom: none;
    height: auto;
    margin: 0 auto;
    max-height: 40px;
    padding: 0 20px;
  }
}

#aoc .aoc-pub-header__logos-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#aoc .aoc-pub-header__logo-catholic {
  height: 3.1176470588em;
  width: 21.4117647059em;
}

@media screen and (max-width: 515px) {
  #aoc .aoc-pub-header__logo-catholic {
    height: 32px;
    width: 220px;
  }
}

#aoc .aoc-pub-header__logo-catolico {
  height: 3.1176470588em;
  width: 13.9411764706em;
}

@media screen and (max-width: 515px) {
  #aoc .aoc-pub-header__logo-catolico {
    height: 3.2em;
    width: 10.7058823529em;
  }
}

#aoc .aoc-pub-header__logo-aoc {
  height: 2.2352941176em;
  margin-left: -0.9411764706em;
  width: 18em;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-header__logo-aoc {
    margin-left: 0;
    width: 16em;
  }
}

@media screen and (max-width: 515px) {
  #aoc .aoc-pub-header__logo-aoc {
    height: 1.5em;
    width: 11em;
  }
}

#aoc .aoc-pub-header__description {
  color: #000;
  font-size: 1em;
  line-height: 1.0588235294em;
  padding: 0 1.0588235294em;
  position: relative;
}

@media screen and (min-width: 1366px) {
  #aoc .aoc-pub-header__description {
    left: -5%;
  }
}

@media screen and (min-width: 1201px) and (max-width: 1365px) {
  #aoc .aoc-pub-header__description {
    left: -3%;
  }
}

@media screen and (min-width: 1023px) and (max-width: 1200px) {
  #aoc .aoc-pub-header__description {
    left: 0;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-header__description {
    display: none;
  }
}

#aoc .aoc-pub-social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: flex-end;
  flex-direction: flex-end;
  list-style: none;
  margin: 0;
  padding: 0 0 0.5882352941em;
}

#aoc .aoc-pub-social-media__icon {
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
  display: inline-flex;
  height: 2.2em;
  margin-right: 0.5em;
  width: 2.2em;
}

#aoc .aoc-pub-social-media li:last-child .aoc-pub-social-media__icon {
  margin-right: 0;
}

#aoc .aoc-pub-header__bottom-row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto 0;
  max-width: 1366px;
  padding: 0 50px;
  position: relative;
  z-index: 1000;
}

#aoc .aoc-pub-top-nav {
  margin: 0;
  max-width: 1366px;
  padding: 0;
  position: relative;
}

#aoc .aoc-pub-search-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: baseline;
  align-self: baseline;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-search-bar {
    display: none;
  }
}

#aoc .aoc-pub-search-bar__input {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #f2f2f2;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-radius: 0;
  border-right: none;
  border-top: 1px solid #ccc;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 1.0588235294em;
  height: 2em;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0.58824em;
  padding-top: 0;
  width: 14em;
}

#aoc .aoc-pub-search-bar__input::-webkit-input-placeholder {
  color: #000;
  opacity: 1;
}

#aoc .aoc-pub-search-bar__input::-moz-placeholder {
  color: #000;
  opacity: 1;
}

#aoc .aoc-pub-search-bar__input:-ms-input-placeholder {
  color: #000;
  opacity: 1;
}

#aoc .aoc-pub-search-bar__input::-ms-input-placeholder {
  color: #000;
  opacity: 1;
}

#aoc .aoc-pub-search-bar__input::placeholder {
  color: #000;
  opacity: 1;
}

#aoc .aoc-pub-search-bar__button {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -moz-appearance: none;
  appearance: none;
  background: #fff url("img/search-icon-md.png") no-repeat 50%;
  background-size: 28px;
  border-bottom: 1px solid #ccc;
  border-left: none;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  cursor: pointer;
  width: 2.5882352941em;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-search-bar__button {
    background-size: 28px;
  }
}

#aoc .aoc-pub-header .aoc-pub-header__menu-button {
  color: #999;
  cursor: pointer;
  margin-left: auto;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  width: 3.17647em;
}

#aoc .aoc-pub-header__site-menu {
  background: rgba(215, 25, 31, 0.85);
  color: #fff;
  display: none;
  font-size: 1em;
  padding: 1em 0;
  position: absolute;
  width: 100%;
  z-index: 500;
}

#aoc .aoc-pub-header__site-menu-close {
  color: #fff;
  cursor: pointer;
  height: 20px;
  margin-right: 50px;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

#aoc .aoc-pub-header__site-menu-list {
  margin: 0;
}

#aoc .aoc-pub-header__site-menu-item {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
  cursor: pointer;
  font-size: 0.82353em;
  line-height: 19px;
  padding: 4px 8px;
}

#aoc .aoc-pub-header__nav-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

#aoc .aoc-pub-header__nav-bar-item {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -ms-flex: 0 auto;
  flex: 0 auto;
  font-size: 1.0588235294em;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 0;
  padding: 0.8em 0.5882352941em;
  position: relative;
}

#aoc .aoc-pub-header__nav-bar-item:first-child:before {
  border-left: 1px solid #ccc;
  content: "";
  display: inline-block;
  height: 50%;
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 1px;
}

#aoc .aoc-pub-header__nav-bar-item:first-child:hover:before {
  border-left: none;
}

#aoc .aoc-pub-header__nav-bar-item:after {
  border-right: 1px solid #ccc;
  content: "";
  display: inline-block;
  height: 50%;
  position: absolute;
  right: 0;
  bottom: 18px;
  width: 1px;
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  #aoc .aoc-pub-header__nav-bar-item {
    font-size: 0.8823529412em;
  }
}

@media screen and (min-width: 1023px) {
  #aoc .aoc-pub-header__nav-bar-item {
    line-height: 23px;
    padding-bottom: 15px;
  }
}

#aoc .aoc-pub-header__nav-bar-item:hover {
  background: rgb(215, 25, 32);
  color: #fff;
  margin-left: -1px;
  padding-right: 0.5882352941em;
}

#aoc .aoc-pub-header__nav-bar-item:hover:after {
  border-right: none;
}

#aoc .selected.aoc-pub-header__nav-bar-item {
  background: rgb(215, 25, 32);
  color: #fff;
  margin-left: -1px;
  padding-right: 0.5882352941em;
}

#aoc .selected.aoc-pub-header__nav-bar-item:after {
  border-right: none;
}

#aoc .selected.aoc-pub-header__nav-bar-item:before {
  border-left: none;
}

#aoc .aoc-pub-header__nav-bar-item a:hover,
#aoc .aoc-pub-header__nav-bar-item a:active {
  color: #fff;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-header__nav-bar-item a:hover,
  #aoc .aoc-pub-header__nav-bar-item a:active {
    color: #fff;
  }
}

@media screen and (min-width: 1023px) {
  #aoc .aoc-pub-header__nav-bar-item:hover .aoc-pub-nav-bar__sublist-wrapper {
    display: block;
  }
}

#aoc .aoc-pub-nav-bar__sublist-wrapper {
  margin-left: -9px;
  min-width: 250px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 100;
}

@media screen and (min-width: 1365px) {
  #aoc .aoc-pub-nav-bar__sublist-wrapper {
    margin-left: -11px;
    width: 300px;
  }
}

@media screen and (min-width: 1023px) {
  #aoc .aoc-pub-nav-bar__sublist-wrapper {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-nav-bar__sublist-wrapper {
    max-height: 0;
    opacity: 0;
    -webkit-transform: translateY(-2em);
    -ms-transform: translateY(-2em);
    transform: translateY(-2em);
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-nav-bar__sublist-wrapper.expand {
    max-height: 1500px;
    opacity: 1;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
}

#aoc .aoc-pub-nav-bar__sublist {
  background: hsla(358, 79%, 47%, 0.85);
  padding: 11px 0;
}

#aoc .aoc-pub-nav-bar__sub-item {
  padding: 2px 0;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-nav-bar__sub-item {
    margin-bottom: 0;
    padding: 0;
  }
}

#aoc .aoc-pub-nav-bar__sub-item,
#aoc .aoc-pub-sublist__dropdown-item {
  line-height: 14px;
}

#aoc .aoc-pub-nav-bar__sub-item a,
#aoc .aoc-pub-sublist__dropdown-item a {
  color: #fff;
  display: inline-block;
  padding: 0 12px;
}

@media screen and (min-width: 1023px) {
  #aoc .aoc-pub-nav-bar__sub-item a,
  #aoc .aoc-pub-sublist__dropdown-item a {
    line-height: 19px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-nav-bar__sub-item a,
  #aoc .aoc-pub-sublist__dropdown-item a {
    line-height: 25px;
    margin-bottom: 0;
    padding: 8px 30px 0 25px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-pub-nav-bar__sub-item a,
  #aoc .aoc-pub-sublist__dropdown-item a {
    line-height: 25px;
    padding: 8px 20px 0;
  }
}

#aoc .aoc-pub-nav-bar__sub-item .aoc-pub-sublist__sub-item-link,
#aoc .aoc-pub-sublist__dropdown-item .aoc-pub-sublist__sub-item-link {
  display: block;
  padding: 4px 0;
}

#aoc .aoc-pub-nav-bar__sub-item .aoc-pub-sublist__sub-item-link:hover,
#aoc .aoc-pub-sublist__dropdown-item .aoc-pub-sublist__sub-item-link:hover {
  background: #EF010D;
}

#aoc .aoc-pub-sublist__dropdown-item {
  padding: 4px 0;
}

#aoc .aoc-pub-sublist__trigger {
  display: none;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-sublist__trigger {
    display: inline-block;
    right: 20px;
    padding: 0 10px;
    position: absolute;
  }
}

#aoc .aoc-pub-nav-bar__chevron {
  color: #fff;
  height: 0.5882352941em;
  width: 0.5882352941em;
}

#aoc .aoc-pub-nav-bar__chevron.rotate {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

#aoc .aoc-pub-nav-bar__sub-item--dropdown {
  position: relative;
}

#aoc .aoc-pub-nav-bar__sub-item a:hover {
  background: #EF010D;
  color: #fff;
  display: inline-block;
}

#aoc .aoc-pub-sublist__dropdown {
  max-height: 0;
  opacity: 0;
  padding-left: 12px;
  -webkit-transform: translateY(-2em);
  -ms-transform: translateY(-2em);
  transform: translateY(-2em);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  visibility: hidden;
  z-index: -1;
}

#aoc .aoc-pub-sublist__dropdown.expand {
  max-height: 1500px;
  opacity: 1;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  visibility: visible;
  z-index: 1;
}

#aoc .aoc-pub-sublist__dropdown-item:hover {
  background: #EF010D;
}

#aoc .aoc-pub-header .aoc-pub-header__menu-button {
  color: #999;
  cursor: pointer;
  margin-left: auto;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  width: 3.1764705882em;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-header .aoc-pub-header__menu-button {
    height: 2.8235294118em;
    margin-top: 0;
    width: 3.2em;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-pub-header .aoc-pub-header__menu-button {
    height: 38px;
  }
}

@media screen and (max-width: 515px) {
  #aoc .aoc-pub-header .aoc-pub-header__menu-button {
    max-height: 32px;
    width: 25px;
  }
}

#aoc .aoc-pub-header .aoc-pub-header__menu-button.aoc-pub-header__menu-button--open {
  color: #D71920;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-header .aoc-pub-header__nav-bar {
    background: rgba(215, 25, 31, 0.85);
    color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 21px;
    max-height: 0;
    line-height: 43px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    right: 0;
    -webkit-transition: max-height 0.3s ease-in-out;
    transition: max-height 0.3s ease-in-out;
    width: 506px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-header .aoc-pub-header__nav-bar.aoc-pub-header__nav-bar--open {
    max-height: 1500px;
    line-height: 41px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-pub-header .aoc-pub-header__nav-bar {
    width: 100%;
  }

  #aoc .aoc-pub-header .aoc-pub-header__nav-bar .aoc-pub-sublist__trigger {
    right: 0;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-header .aoc-pub-header__nav-bar .aoc-pub-header__nav-bar-item {
    padding: 0;
    line-height: 41px;
    min-height: 41px;
  }
}

#aoc .aoc-pub-header .aoc-pub-header__nav-bar .aoc-pub-header__nav-bar-item .aoc-pub-header__nav-bar-link {
  cursor: pointer;
}

#aoc .aoc-pub-header .aoc-pub-header__nav-bar .aoc-pub-header__nav-bar-item .aoc-pub-header__nav-bar-link > a {
  position: relative;
  top: 3px;
}

#aoc .aoc-pub-header .aoc-pub-header__nav-bar .aoc-pub-header__nav-bar-item .aoc-pub-header__nav-bar-link .aoc-pub-nav-bar__chevron {
  margin: 0 30px;
}

@media screen and (max-width: 799px) {
  #aoc .aoc-pub-header .aoc-pub-header__nav-bar .aoc-pub-header__nav-bar-item .aoc-pub-header__nav-bar-link .aoc-pub-nav-bar__chevron {
    margin: 0 20px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-header .aoc-pub-header__nav-bar .aoc-pub-header__nav-bar-item .aoc-pub-header__nav-bar-link {
    border-bottom: 2px solid #df525a;
    padding: 0 21px;
  }

  #aoc .aoc-pub-header .aoc-pub-header__nav-bar .aoc-pub-header__nav-bar-item .aoc-pub-header__nav-bar-link:hover {
    color: #fff;
    background: #EF010D;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-pub-header .aoc-pub-header__nav-bar .aoc-pub-header__nav-bar-item .aoc-pub-header__nav-bar-link {
    padding: 0 15px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-header .aoc-pub-header__nav-bar .aoc-pub-nav-bar__sublist-wrapper {
    margin-left: 0;
    padding: 0;
    position: relative;
    width: auto;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-header .aoc-pub-header__nav-bar .aoc-pub-nav-bar__sublist {
    background: transparent;
    padding: 0;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-header .aoc-pub-header__nav-bar .aoc-pub-header__nav-bar-item,
  #aoc .aoc-pub-header .aoc-pub-header__nav-bar .aoc-pub-nav-bar__sub-item--dropdown {
    line-height: 41px;
    min-height: 41px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-header .aoc-pub-header__nav-bar .aoc-pub-sublist__sub-item-link,
  #aoc .aoc-pub-header .aoc-pub-header__nav-bar .aoc-pub-sublist__dropdown-item,
  #aoc .aoc-pub-header .aoc-pub-header__nav-bar .aoc-pub-sublist__dropdown-item-link {
    line-height: 41px;
    min-height: 41px;
    padding: 0 19px;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-pub-header .aoc-pub-header__nav-bar .aoc-pub-sublist__sub-item-link,
  #aoc .aoc-pub-header .aoc-pub-header__nav-bar .aoc-pub-sublist__dropdown-item,
  #aoc .aoc-pub-header .aoc-pub-header__nav-bar .aoc-pub-sublist__dropdown-item-link {
    padding: 0 20px;
  }
}

#aoc .aoc-pub-header .aoc-pub-header__nav-bar .aoc-pub-sublist__sub-item-link {
  width: 100%;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-header .aoc-pub-header__nav-bar .aoc-pub-nav-bar__sub-item {
    border-bottom: 2px solid #df525a;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-header .aoc-pub-header__nav-bar .aoc-pub-sublist__sub-item-link {
    padding: 0 0.5238095238em;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-header .aoc-pub-header__nav-bar .aoc-pub-sublist__dropdown-item {
    border-bottom: 2px solid #df525a;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-header .aoc-pub-header__nav-bar .aoc-pub-sublist__dropdown-item:last-of-type {
    border-bottom: 0;
  }
}

#aoc .aoc-pub-header__site-mobile-menu {
  display: none;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-header__site-mobile-menu {
    display: block;
    margin: 0 auto;
    position: relative;
  }

  #aoc .aoc-pub-header__site-mobile-menu .aoc-pub-search-bar__mobile {
    border-bottom: 2px solid #df525a;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    padding: 0.8823529412em 1.1764705882em;
  }

  #aoc .aoc-pub-header__site-mobile-menu .aoc-pub-search-bar__mobile .aoc-pub-search-bar__input {
    width: 100%;
    height: 2.35em;
  }

  #aoc .aoc-pub-header__site-mobile-menu .aoc-pub-search-bar__mobile .aoc-pub-search-bar__input:focus {
    outline: none;
  }

  #aoc .aoc-pub-header__site-mobile-menu .aoc-pub-search-bar__mobile .aoc-pub-search-bar__button {
    height: auto;
    width: 50px;
  }

  #aoc .aoc-pub-header__site-mobile-menu .aoc-pub-search-bar__mobile .aoc-pub-search-bar__button:focus {
    outline: none;
  }
}

#aoc .aoc-pub-mobile-menu__wrapper {
  background: rgba(215, 25, 31, 0.9);
  display: block;
  height: auto;
  max-height: 0;
  max-width: 400px;
  overflow: hidden;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 500;
}

#aoc .aoc-pub-mobile-menu__wrapper--open {
  max-height: 1500px;
}

@media screen and (max-width: 515px) {
  #aoc .aoc-pub-mobile-menu__wrapper {
    max-width: 100%;
  }
}

#aoc .aoc-pub-header__site-mobile-menu-bar {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: 41px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  -webkit-transition: max-height 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out;
  width: 100%;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-header__site-mobile-menu-bar {
    margin: 0;
  }
}

#aoc .aoc-pub-header__site-mobile-menu__item {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -ms-flex: 0 auto;
  flex: 0 auto;
  font-size: 1.2352941176em;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  line-height: 50px;
  margin-bottom: 0;
  min-height: 50px;
  padding: 0;
  position: relative;
}

#aoc .aoc-pub-header__site-mobile-menu__item:last-of-type {
  margin-right: 0;
}

#aoc .aoc-pub-header__site-mobile-menu__item:hover .aoc-nav-bar__sublist-wrapper {
  display: block;
}

#aoc .aoc-pub-header__site-mobile-menu__item .aoc-pub-header__nav-bar-link {
  border-bottom: 2px solid #df525a;
  padding: 0 21px;
  position: relative;
}

#aoc .aoc-pub-header__site-mobile-menu__item .aoc-pub-header__nav-bar-link:hover {
  background: #EF010D;
}

#aoc .aoc-pub-header__site-mobile-menu__item .aoc-pub-nav-bar__sublist-wrapper {
  margin-left: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  top: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: auto;
  z-index: 100;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-header__site-mobile-menu__item .aoc-pub-nav-bar__sublist-wrapper {
    top: 0;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-header__site-mobile-menu__item .aoc-pub-nav-bar__sublist-wrapper.expand {
    max-height: 1500px;
    opacity: 1;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    top: 0;
  }
}

#aoc .aoc-pub-header__site-mobile-menu__item .aoc-pub-nav-bar__sub-item,
#aoc .aoc-pub-header__site-mobile-menu__item .aoc-pub-sublist__dropdown-item {
  line-height: 42px;
  min-height: 42px;
}

#aoc .aoc-pub-header__site-mobile-menu__item .aoc-pub-nav-bar__sub-item a,
#aoc .aoc-pub-header__site-mobile-menu__item .aoc-pub-sublist__dropdown-item a {
  color: #fff;
  display: inline-block;
  padding: 0 32px;
}

#aoc .aoc-pub-header__site-mobile-menu__item .aoc-pub-nav-bar__sub-item .aoc-pub-sublist__sub-item-link,
#aoc .aoc-pub-header__site-mobile-menu__item .aoc-pub-sublist__dropdown-item .aoc-pub-sublist__sub-item-link {
  border-bottom: 2px solid #df525a;
  display: block;
}

#aoc .aoc-pub-header__site-mobile-menu__item .aoc-pub-nav-bar__sub-item .aoc-pub-sublist__sub-item-link:hover,
#aoc .aoc-pub-header__site-mobile-menu__item .aoc-pub-sublist__dropdown-item .aoc-pub-sublist__sub-item-link:hover {
  background: #EF010D;
}

#aoc .aoc-pub-header__site-mobile-menu__item .aoc-pub-nav-bar__sublist {
  background: transparent;
  padding: 0;
}

#aoc .aoc-pub-header__site-mobile-menu__item .aoc-pub-header__site-menu-close {
  color: #fff;
  cursor: pointer;
  height: 20px;
  margin-right: 50px;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-header__site-mobile-menu__item .aoc-pub-header__site-menu-close {
    margin-right: 30px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-pub-header__site-mobile-menu__item .aoc-pub-header__site-menu-close {
    margin-right: 20px;
  }
}

#aoc .aoc-pub-search-social-mobile {
  display: none;
  margin-top: 20px;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-search-social-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 30px;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  #aoc .aoc-pub-search-social-mobile .aoc-pub-social-media li:last-child .aoc-pub-social-media__icon {
    margin-right: 0;
  }

  #aoc .aoc-pub-search-social-mobile .aoc-pub-search-bar {
    margin-right: 1.4117647059em;
    height: 2.58824em;
    width: 40%;
  }

  #aoc .aoc-pub-search-social-mobile .aoc-pub-search-bar__input {
    height: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 1023px) and (max-width: 1023px) {
  #aoc .aoc-pub-search-social-mobile .aoc-pub-search-bar__button {
    height: 2.5882352941em;
    width: 2.5882352941em;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-search-social-mobile .aoc-pub-social-media__icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 2em;
    margin-right: 1.4117647059em;
    width: 2em;
  }

  #aoc .aoc-pub-search-social-mobile .aoc-pub-social-media__icon:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 1023px) and (max-width: 1023px) {
  #aoc .aoc-pub-search-social-mobile .aoc-pub-social-media__icon {
    width: 2.5882352941em;
    height: 2.5882352941em;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-pub-search-social-mobile {
    padding: 0 20px;
  }
}

@media screen and (max-width: 580px) {
  #aoc .aoc-pub-search-social-mobile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    min-height: 120px;
    padding: 0 20px;
  }

  #aoc .aoc-pub-search-social-mobile .aoc-pub-search-bar,
  #aoc .aoc-pub-search-social-mobile .aoc-pub-search-bar__input {
    width: 100%;
  }

  #aoc .aoc-pub-search-social-mobile .aoc-pub-social-media {
    margin-top: 1.0588235294em;
  }
}

@media screen and (max-width: 375px) {
  #aoc .aoc-pub-search-social-mobile .aoc-pub-social-media__icon {
    width: 2.4em;
    margin-right: 1em;
  }
}

@media screen and (max-width: 320px) {
  #aoc .aoc-pub-search-social-mobile .aoc-pub-social-media__icon {
    width: 2em;
    margin-right: 0.7em;
  }
}

#aoc .aoc-pub-subnav {
  background-color: #1a568a;
  padding: 0;
  position: relative;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-subnav {
    display: none;
  }
}

#aoc .aoc-pub-subnav__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto 0.9411764706em;
  max-width: 1366px;
  width: 100%;
}

#aoc .aoc-pub-subnav__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 1.2em 0.47059em 0.8em 2.47059em;
  list-style: none;
}

#aoc .aoc-pub-subnav__left {
  -ms-flex-item-align: end;
  align-self: flex-end;
  padding: 0.7058823529em 1em 0.7058823529em 2.9em;
}

#aoc .aoc-pub-subnav__left__link {
  color: #87a6c2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -ms-flex: 0 auto;
  flex: 0 auto;
  font-size: 1em;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 0;
  position: relative;
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  #aoc .aoc-pub-subnav__left__link {
    font-size: 0.8235294118em;
  }
}

#aoc .aoc-pub-subnav__left__link:first-child {
  color: #bfd6ea;
  letter-spacing: 1px;
  margin-right: 10px;
}

#aoc .aoc-pub-subnav__left__link a,
#aoc .aoc-pub-subnav__left__link button {
  color: #bfd6ea;
  padding: 0.6470588235em 0.8em 0.6470588235em 0.8em;
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  #aoc .aoc-pub-subnav__left__link a,
  #aoc .aoc-pub-subnav__left__link button {
    padding: 11px 0.8em 12px 0.8em;
  }
}

#aoc .aoc-pub-subnav__left__link a:after,
#aoc .aoc-pub-subnav__left__link button:after {
  border-right: 1px solid #ccc;
  content: "";
  display: inline-block;
  height: 100%;
  position: absolute;
  right: -1px;
  top: 0;
  width: 1px;
}

#aoc .aoc-pub-subnav__left__link a:hover,
#aoc .aoc-pub-subnav__left__link button:hover {
  background-color: #D71920;
  color: #fff;
}

#aoc .aoc-pub-subnav__left__link a:hover:after,
#aoc .aoc-pub-subnav__left__link button:hover:after {
  border-right: none;
}

#aoc .aoc-pub-subnav__left__link.selected a,
#aoc .aoc-pub-subnav__left__link.selected button {
  background-color: #D71920;
  color: #fff;
}

#aoc .aoc-pub-subnav__left__link.selected a:after,
#aoc .aoc-pub-subnav__left__link.selected button:after {
  border-right: none;
}

#aoc .aoc-pub-subnav__right {
  -ms-flex-item-align: end;
  align-self: flex-end;
  padding: 0.7058823529em 2.9em 0.7058823529em 0;
}

#aoc .aoc-pub-subnav__right__link {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -ms-flex: 0 auto;
  flex: 0 auto;
  font-size: 1em;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  margin-bottom: 0;
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  #aoc .aoc-pub-subnav__right__link {
    font-size: 0.8235294118em;
  }
}

#aoc .aoc-pub-subnav__right__link:first-child:before {
  border-left: 1px solid #ccc;
  display: inline-block;
  content: "";
  height: 100%;
  position: absolute;
  left: 0;
  width: 1px;
}

#aoc .aoc-pub-subnav__right__link a {
  color: #fff;
  padding: 0.6470588235em 0.8em 0.6470588235em 0.8em;
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  #aoc .aoc-pub-subnav__right__link a {
    padding: 11px 0.8em 12px 0.8em;
  }
}

#aoc .aoc-pub-subnav__right__link a:after {
  border-right: 1px solid #ccc;
  content: "";
  display: inline-block;
  height: 100%;
  position: absolute;
  right: -1px;
  top: 0;
  width: 1px;
}

#aoc .aoc-pub-subnav__right__link a:hover {
  background-color: #facd31;
  color: #fff;
}

#aoc .aoc-pub-subnav__right__link a:hover:after {
  border-right: none;
}

#aoc .aoc-pub-subnav__right__link a.active {
  background-color: #facd31;
  color: #fff;
  padding-bottom: 13px;
  padding-top: 12px;
}

#aoc .aoc-pub-subnav__right__link.selected a {
  background-color: #facd31;
  color: #fff;
}

#aoc .aoc-pub-subnav__right__link.selected a:after {
  border-right: none;
}

#aoc .aoc-pub-sublist__sub-item-link.aoc-pub-sublist__sub-item-link--dropdown:hover {
  background-color: #EF010D;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-sublist__trigger,
  #aoc .aoc-pub-header__site-mobile-menu__item .aoc-pub-nav-bar__sub-item a.aoc-pub-sublist__trigger {
    line-height: 44px;
    padding: 0 10px;
  }
}

@media screen and (min-width: 1023px) {
  #aoc .aoc-pub-sublist__trigger,
  #aoc .aoc-pub-header__site-mobile-menu__item .aoc-pub-nav-bar__sub-item a.aoc-pub-sublist__trigger {
    position: absolute;
    right: 0;
  }
}

#aoc .aoc-pub-header__dropdown-link {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

#aoc .aoc-pub-header__dropdown-link:hover {
  opacity: 1;
}

#aoc button.aoc-pub-header__dropdown-link:first-child {
  letter-spacing: 0;
  margin-top: -11px;
  margin-bottom: -12px;
  margin-right: 0;
}

#aoc .aoc-pub-subnav__left__link button.trending_nav_target--active {
  background-color: #D71920;
  color: #fff;
}

#aoc .aoc-pub-header__site-menu {
  top: 182px;
  background: rgba(26, 86, 138, 0.85);
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-header__site-menu {
    display: none !important;
  }
}

#aoc .aoc-pub-header__site-menu-item {
  color: #bfd6ea;
  margin-left: -8px;
  width: auto;
  padding: 4px 8px;
}

#aoc .aoc-pub-header__site-menu-item:hover {
  background-color: #D71920;
  color: #fff;
}

@media screen and (min-width: 1366px) {
  #aoc .aoc-pub-header__site-menu-item {
    font-size: 1em;
    margin-left: -4px;
  }
}

#aoc .aoc-pub-header__site-menu-close {
  top: 25px;
}

#aoc .aoc-pub-issue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.0588235294em;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-issue {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 0.9411764706em;
  }
}

#aoc .aoc-pub-issue-cover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 210px;
  margin-right: 22px;
  width: 100%;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-issue-cover {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    max-width: 100%;
  }
}

#aoc .aoc-pub-issue-cover--image {
  display: block;
  background-size: cover;
  width: 210px;
  height: 210px;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-issue-cover--image {
    width: 100%;
    max-width: 140px;
    height: 140px;
  }
}

#aoc .aoc-pub-issue-cover--caption {
  line-height: 130%;
  margin-top: 10px;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-issue-cover--caption {
    margin-left: 0.5882352941em;
    margin-top: 0;
  }
}

#aoc .aoc-pub-issue-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-issue-list {
    margin-top: 0.9411764706em;
  }
}

#aoc .aoc-pub-issue-list__item {
  border-top: 1px solid #CCC;
  line-height: 120%;
  padding: 0.3529411765em 0;
}

#aoc .aoc-pub-issue-list__item:last-child {
  border-bottom: 1px solid #CCC;
}

#aoc .aoc-pub-issue-list__item--title {
  margin: 0;
  line-height: 120%;
  padding: 0;
}

#aoc .aoc-pub-issue-list__item--subtitle {
  margin: 0.3529411765em 0 0 1.1764705882em;
  padding: 0;
}

#aoc .aoc-pub-issue-list__item--details {
  margin-top: 0.3529411765em;
  display: block;
}

#aoc .aoc-pub-past-issues__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
  width: 100%;
}

#aoc .aoc-pub-past-issues__menu .aoc-pub-page-title {
  margin-bottom: 0.5882352941em;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-past-issues__menu .aoc-pub-page-title {
    margin-bottom: 0;
  }
}

#aoc .aoc-pub-past-issues__subtitle {
  display: none;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-past-issues__subtitle {
    border-top: 1px solid #CCC;
    display: block;
    font-size: 0.9411764706em;
    margin: 0.5882352941em 0 0.7058823529em 0;
    padding: 10px 0 0 0;
  }
}

#aoc .aoc-pub-past-issues__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

#aoc .aoc-pub-past-issues__nav__item {
  margin-right: 0.7058823529em;
  background-color: #a6a6a6;
  color: #fff;
  font-size: 1em;
  line-height: 120%;
  padding: 0.7058823529em 0.9411764706em;
  display: inline-block;
}

#aoc .aoc-pub-past-issues__nav__item.current {
  background-color: #D71920;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-past-issues__nav__item.current {
    width: 80px;
    text-align: center;
  }
}

#aoc .aoc-pub-past-issues__nav__item:hover {
  background-color: #D71920;
  cursor: pointer;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-past-issues__nav__item {
    display: none;
    margin-right: 0;
  }

  #aoc .aoc-pub-past-issues__nav__item.current {
    background-color: #a6a6a6;
    display: inline-block;
  }
}

#aoc .aoc-pub-past-issues__nav__next,
#aoc .aoc-pub-past-issues__nav__prev {
  background-color: #a6a6a6;
  color: #fff;
  font-size: 1em;
  padding: 0.7058823529em 0.9411764706em;
  display: inline-block;
}

#aoc .aoc-pub-past-issues__nav__next:hover,
#aoc .aoc-pub-past-issues__nav__prev:hover {
  background-color: #D71920;
  cursor: pointer;
}

#aoc .aoc-pub-past-issues__nav__prev {
  display: none;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-past-issues__nav__prev,
  #aoc .aoc-pub-past-issues__nav__next {
    background: none;
    color: #CCC;
    cursor: pointer;
    display: inline-block;
    padding: 5px 12px;
    font-size: 1.6470588235em;
  }

  #aoc .aoc-pub-past-issues__nav__prev:hover,
  #aoc .aoc-pub-past-issues__nav__next:hover {
    background-color: transparent;
  }
}

#aoc .aoc-pub-past-issues {
  border-top: 1px solid #D71920;
  display: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.0588235294em;
  list-style: none;
  margin: 0;
  padding: 1.1764705882em 0 0 0;
  width: 100%;
  max-width: 930px;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-past-issues {
    border-top: 1px solid #CCC;
    margin-top: 0.5882352941em;
    padding-top: 0.5882352941em;
  }
}

#aoc .aoc-pub-past-issues.current {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

#aoc .aoc-pub-past-issues__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 1.2941176471em 3.5294117647em 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#aoc .aoc-pub-past-issues__item:nth-child(4n+0) {
  margin-right: 0;
}

@media screen and (max-width: 1000px) {
  #aoc .aoc-pub-past-issues__item:nth-child(4n+0) {
    margin-right: 1.1764705882em;
  }
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-past-issues__item {
    width: 218px;
    height: 218px;
    margin-right: 1.1764705882em;
    margin-bottom: 2.3529411765em;
  }

  #aoc .aoc-pub-past-issues__item:nth-child(3n+0) {
    margin-right: 0;
  }
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-past-issues__item {
    margin-right: 0.5882352941em;
    margin-bottom: 0.7058823529em;
    width: 48%;
    height: 48%;
  }

  #aoc .aoc-pub-past-issues__item:nth-child(3n+0) {
    margin-right: 0.5882352941em;
  }

  #aoc .aoc-pub-past-issues__item:nth-child(even) {
    margin-right: 0;
  }
}

#aoc .aoc-pub-past-issues__item--title {
  color: #000;
  line-height: 120%;
  margin: 0.4705882353em 0 0 0;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-past-issues__item--title {
    font-size: 0.7058823529em;
  }
}

#aoc .aoc-pub-past-issues__item--image {
  background-size: cover;
  height: 180px;
  width: 200px;
}

#aoc .aoc-pub-past-issues__item--bds {
  border: 1px solid rgba(74, 74, 74, 0.45);
  -webkit-box-shadow: 5px 5px 3px rgba(74, 74, 74, 0.25);
  box-shadow: 5px 5px 3px rgba(74, 74, 74, 0.25);
  padding: 5px;
}

#aoc .aoc-pub-pagination {
  border-top: 1px solid #CCC;
  padding-top: 1.2941176471em;
}

#aoc .aoc-pub-topic__hero {
  width: 100%;
}

#aoc .aoc-pub-topic__hero--label {
  color: #D71920;
  font-size: 1.2941176471em;
  line-height: 120%;
  margin-bottom: 0.5882352941em;
  padding-bottom: 0;
  text-transform: uppercase;
}

#aoc .aoc-pub-topic__hero--title {
  font-size: 3.2941176471em;
  line-height: 120%;
  margin-bottom: 0.2941176471em;
  margin-top: 0.2941176471em;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-topic__hero--title {
    font-size: 2.1176470588em;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-topic__hero--title {
    font-size: 1.6470588235em;
  }
}

#aoc .aoc-pub-topic__hero--caption {
  font-size: 1.4117647059em;
  line-height: 130%;
  margin-bottom: 1.2352941176em;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-topic__hero--caption {
    font-size: 1.0588235294em;
    margin-top: 0.5882352941em;
    margin-bottom: 1.0588235294em;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-topic__hero--caption {
    margin: 0.2941176471em 0 0.8823529412em 0;
  }
}

#aoc .aoc-pub-topic__hero a h2,
#aoc .aoc-pub-topic__hero a h3,
#aoc .aoc-pub-list-topic__content h2 a,
#aoc .aoc-pub-list-topic__content--copy a,
#aoc .aoc-pub-list-photo__content--copy a {
  color: #000;
}

#aoc .aoc-pub-list-topics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#aoc .aoc-pub-list-topic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #CCC;
  padding-top: 1.4117647059em;
  margin-bottom: 1.4117647059em;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-list-topic {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 1.2941176471em;
    padding-top: 0.7058823529em;
  }
}

#aoc .aoc-pub-list-topic__image-item {
  display: block;
  margin-right: 20px;
  max-width: 288px;
  width: 100%;
}

@media screen and (max-width: 780px) {
  #aoc .aoc-pub-list-topic__image-item {
    max-width: 216px;
  }
}

#aoc .aoc-pub-list-topic__image,
#aoc .aoc-pub-list-photo__image--mobile {
  background-position: center;
  background-size: cover;
  display: block;
  height: 162px;
  width: 288px;
}

@media screen and (max-width: 780px) {
  #aoc .aoc-pub-list-topic__image,
  #aoc .aoc-pub-list-photo__image--mobile {
    width: 216px;
    height: 122px;
  }
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-list-topic__image,
  #aoc .aoc-pub-list-photo__image--mobile {
    display: none;
  }
}

#aoc .aoc-pub-list-topic__image--mobile {
  display: none;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-list-topic__image--mobile {
    display: block;
    float: right;
    height: 60px;
    margin: 5px 0 10px 10px;
    max-width: 100%;
    width: 90px;
    background-size: cover;
  }
}

#aoc .aoc-pub-list-topic__content {
  width: 100%;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-list-topic__content {
    padding: 0;
  }
}

#aoc .aoc-pub-list-topic__content--title {
  margin: -3px 0 0 0;
  padding: 0;
  text-indent: -2px;
}

@media screen and (max-width: 780px) {
  #aoc .aoc-pub-list-topic__content--title {
    font-size: 1.4117647059em;
  }
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-list-topic__content--title {
    margin: 0;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-list-topic__content--title {
    font-size: 1.1764705882em;
  }
}

#aoc .aoc-pub-list-topic__content--title a {
  color: #000;
}

#aoc .aoc-pub-list-topic__content--copy,
#aoc .aoc-pub-list-photo__content--copy {
  font-size: 1.0588235294em;
  padding-top: 0.5882352941em;
  line-height: 130%;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-list-topic__content--copy,
  #aoc .aoc-pub-list-photo__content--copy {
    font-size: 0.8823529412em;
  }
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-list-photo__content--copy a {
    display: none;
  }
}

#aoc .aoc-pub-list-photo__image--mobile {
  display: none;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-list-photo__image--mobile {
    display: block;
    height: 180px;
    margin: 0;
    width: 100%;
  }
}

#aoc .aoc-pub-books-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#aoc .aoc-pub-books {
  border-top: 1px solid #CCC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.4117647059em;
  padding-top: 1.4117647059em;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-books {
    margin-bottom: 0.8235294118em;
    padding-top: 1.0588235294em;
  }
}

#aoc .aoc-pub-books__image {
  display: block;
  height: auto;
  max-height: 252px;
  max-width: 162px;
  width: auto;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-books__image {
    max-height: 190px;
    max-width: 122px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-books__image {
    display: none;
  }
}

#aoc .aoc-pub-books__image--mobile {
  display: none;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-books__image--mobile {
    display: block;
    float: left;
    height: 125px;
    max-width: 100%;
    margin: 3px 10px 10px 0;
    width: 80px;
  }
}

#aoc .aoc-pub-books__content {
  width: 100%;
  max-width: 720px;
  padding-left: 1.4705882353em;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-books__content {
    padding-left: 0;
  }
}

#aoc .aoc-pub-books__title {
  margin: -5px 0 0 0;
  text-indent: -2px;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-books__title {
    font-size: 1.1764705882em;
  }
}

#aoc .aoc-pub-books__subtitle {
  color: #666;
  font-size: 1.8823529412em;
  line-height: 120%;
  margin: 0;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-books__subtitle {
    font-size: 1.1764705882em;
  }
}

#aoc .aoc-pub-books__book-info {
  font-size: 1.0588235294em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  line-height: 120%;
  margin-top: 0.5882352941em;
  padding-right: 1.1764705882em;
  position: relative;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-books__book-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 0.9411764706em;
    line-height: 130%;
    margin-top: 0.3529411765em;
  }
}

#aoc .aoc-pub-books__book-info--author {
  color: #000;
  display: inline-block;
  margin-right: 10px;
  padding-right: 10px;
  position: relative;
}

#aoc .aoc-pub-books__book-info--author:after {
  border-right: 1px solid #111;
  content: "";
  display: inline-block;
  height: 90%;
  position: absolute;
  right: 0;
  top: 0;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-books__book-info--author:after {
    display: none;
  }
}

#aoc .aoc-pub-books__book-info--review {
  color: #000;
}

#aoc .aoc-pub-books__detail {
  color: #000;
  font-size: 1.0588235294em;
  line-height: 130%;
  margin-top: 0.7058823529em;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-books__detail {
    font-size: 0.9411764706em;
    margin-top: 0.5882352941em;
  }
}

#aoc .aoc-pub-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0;
  width: 100%;
}

#aoc .aoc-pub-pagination a {
  color: #fff;
}

#aoc .aoc-pub-pagination .aoc-button,
#aoc .aoc-pub-pagination .gsc-results .gsc-cursor-box .gsc-cursor-page,
#aoc .gsc-results .gsc-cursor-box .aoc-pub-pagination .gsc-cursor-page,
#aoc .aoc-pub-pagination .aoc-form__input--file + label {
  font-size: 1.2352941176em;
  line-height: 100%;
  margin-right: 0.7058823529em;
  min-width: 2.0588235294em;
  text-align: center;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-pagination .aoc-button,
  #aoc .aoc-pub-pagination .gsc-results .gsc-cursor-box .gsc-cursor-page,
  #aoc .gsc-results .gsc-cursor-box .aoc-pub-pagination .gsc-cursor-page,
  #aoc .aoc-pub-pagination .aoc-form__input--file + label {
    min-width: 1.4705882353em;
  }
}

#aoc .aoc-pub-pagination a.aoc-button.selected,
#aoc .aoc-pub-pagination .gsc-results .gsc-cursor-box a.selected.gsc-cursor-page,
#aoc .gsc-results .gsc-cursor-box .aoc-pub-pagination a.selected.gsc-cursor-page {
  opacity: 0.8;
}

#aoc .aoc-pub-pagination-mobile {
  display: none;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-pagination-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid #CCC;
    padding-top: 0.7058823529em;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

#aoc .aoc-pub-pagination-mobile span {
  padding: 0 1.1764705882em;
  display: inline-block;
  font-size: 0.8823529412em;
}

#aoc .aoc-pub-pagination-mobile__buttons.inactive {
  opacity: 0.4;
}

#aoc .aoc-pub-pagination-mobile__link {
  background-color: #a6a6a6;
  border: none;
  color: #fff;
  font-size: 0.8823529412em;
  margin: 0 0.1176470588em;
  padding: 0.5882352941em 0.7058823529em;
  text-align: center;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

#aoc .aoc-pub-pagination-mobile__link:first-child {
  margin-left: 0;
}

#aoc .aoc-pub-pagination-mobile__link:focus {
  outline: none;
}

#aoc .aoc-pub-obituary__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-obituary__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#aoc .aoc-pub-obituary__img {
  -ms-flex-item-align: start;
  align-self: flex-start;
  display: block;
  margin-right: 28px;
  max-width: 140px;
  width: auto;
}

#aoc .aoc-pub-obituary__column {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  margin-left: 0;
  margin-top: -0.1176470588em;
}

@media screen and (max-width: 560px) {
  #aoc .aoc-pub-obituary__column {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin: 1.4705882353em 0 1.0588235294em 0;
  }
}

#aoc .aoc-pub-obituary__column a {
  color: #008DD0;
}

#aoc .aoc-pub-obituary__content {
  margin: 1.1764705882em 0 0.5882352941em;
  line-height: normal;
}

#aoc .aoc-pub-lightbox {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  left: 0;
  padding: 1em;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-lightbox {
    padding: 0;
  }
}

#aoc .aoc-pub-popup {
  background-color: #fff;
  bottom: 35%;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
  left: 30%;
  max-width: 550px;
  padding: 1.5em;
  position: relative;
  width: 100%;
  z-index: 101;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #aoc .aoc-pub-popup {
    left: 35%;
  }
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-popup {
    bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    left: 0;
    max-width: none;
    padding: 0.5em 1em;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  }
}

@media screen and (max-width: 374px) {
  #aoc .aoc-pub-popup {
    max-width: none;
    padding: 0.5em 0.75em;
  }
}

#aoc .aoc-pub-popup.aoc-pub-popup--mobile-slide {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

#aoc .aoc-pub-popup__title {
  font-size: 2.7058823529em;
  line-height: 120%;
  margin: 0;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-popup__title {
    font-size: 1.2352941176em;
  }
}

@media screen and (max-width: 374px) {
  #aoc .aoc-pub-popup__title {
    font-size: 1em;
  }
}

#aoc .aoc-pub-popup__subtitle {
  color: #878787;
  font-size: 2em;
  line-height: 120%;
  margin-top: 0.3em;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-popup__subtitle {
    font-size: 1em;
  }
}

@media screen and (max-width: 374px) {
  #aoc .aoc-pub-popup__subtitle {
    font-size: 0.8235294118em;
  }
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-popup .aoc-pub-popup__button-container {
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
}

#aoc .aoc-pub-popup__button {
  background-color: #878787;
  border: none;
  color: #fff;
  font-size: 1.1176470588em;
  line-height: 19px;
  margin-top: 1.2941176471em;
  max-height: 44px;
  max-width: 150px;
  padding: 0.5em 1em;
  text-align: center;
}

#aoc .aoc-pub-popup__button:hover {
  background-color: #D71920;
  cursor: pointer;
}

#aoc .aoc-pub-popup__button:focus {
  outline: none;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-popup__button {
    background-color: #fbb03b;
    bottom: 10px;
    font-size: 1.5em;
    font-size: 0.9411764706em;
    margin-top: 0;
    padding: 0.4705882353em 0.5882352941em;
    position: absolute;
    right: 10px;
  }
}

#aoc .aoc-pub-popup__close {
  background: none;
  border: none;
  color: #D71920;
  font-size: 1.4117647059em;
  position: absolute;
  right: 10px;
  top: 10px;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-popup__close {
    font-size: 1em;
    padding: 0;
  }
}

#aoc .aoc-pub-popup__close:focus {
  outline: none;
}

#aoc .aoc-pub-popup__close:hover {
  cursor: pointer;
}

#aoc .aoc-pub-popup__content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-popup__content-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

#aoc .aoc-pub-thumbnails {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 1366px;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
}

@media only screen and (max-width: 1023px) {
  #aoc .aoc-pub-thumbnails {
    padding: 2% 30px 3%;
  }
}

@media only screen and (max-width: 799px) {
  #aoc .aoc-pub-thumbnails {
    padding: 2% 20px 3%;
  }
}

#aoc .aoc-pub-thumbnails__thumbnail {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 14.1%;
  flex: 1 0 14.1%;
  font-size: 0;
  margin: 9px 1.4% 0 0;
  max-width: 15.46%;
}

#aoc .aoc-pub-thumbnails__thumbnail:nth-child(6n+6) {
  margin-right: 0;
}

@media only screen and (max-width: 1023px) {
  #aoc .aoc-pub-thumbnails__thumbnail {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 29.5%;
    flex: 1 0 29.5%;
    max-width: 32.4%;
    margin-right: 1.3%;
  }

  #aoc .aoc-pub-thumbnails__thumbnail:nth-child(6) {
    margin-right: 1.3%;
  }

  #aoc .aoc-pub-thumbnails__thumbnail:nth-child(3n+3) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 600px) {
  #aoc .aoc-pub-thumbnails__thumbnail {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 32%;
    flex: 1 0 32%;
    max-width: 48.2%;
    margin-right: 3.2%;
  }

  #aoc .aoc-pub-thumbnails__thumbnail:nth-child(3n+3) {
    margin-right: 3.2%;
  }

  #aoc .aoc-pub-thumbnails__thumbnail:nth-child(2n+2) {
    margin-right: 0;
  }
}

#aoc .aoc-pub-thumbnails__img {
  max-width: 100%;
  width: 100%;
}

#aoc .aoc-pub-thumbnails-vertical__wrapper {
  height: 100%;
  max-width: 288px;
  width: 100%;
}

@media only screen and (max-width: 1023px) {
  #aoc .aoc-pub-thumbnails-vertical__wrapper {
    max-width: 100%;
    width: 100%;
  }
}

#aoc .aoc-pub-thumbnails-vertical__wrapper p {
  border-top: 1px solid #ccc;
  font-size: 14px;
  line-height: 18px;
  margin: 0;
  padding: 5px 0;
}

#aoc .aoc-pub-thumbnails-vertical {
  border-bottom: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0 0 15px;
  width: 100%;
}

#aoc .aoc-pub-thumbnails-vertical:before {
  content: normal;
}

#aoc .aoc-pub-thumbnails-vertical:after {
  content: normal;
}

@media only screen and (max-width: 1023px) {
  #aoc .aoc-pub-thumbnails-vertical {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

#aoc .aoc-pub-thumbnails-vertical__thumbnail {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  font-size: 0;
  margin: 0 0 9px 0;
  width: 100%;
}

#aoc .aoc-pub-thumbnails-vertical__thumbnail:before {
  content: normal;
}

#aoc .aoc-pub-thumbnails-vertical__thumbnail:after {
  content: normal;
}

@media only screen and (max-width: 1023px) {
  #aoc .aoc-pub-thumbnails-vertical__thumbnail {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 23%;
    flex: 1 0 23%;
    max-width: 24%;
    margin-right: 1.3%;
  }

  #aoc .aoc-pub-thumbnails-vertical__thumbnail:nth-child(4n+4) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 799px) {
  #aoc .aoc-pub-thumbnails-vertical__thumbnail {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 24%;
    flex: 1 0 24%;
    max-width: 31.5%;
    margin-right: 2.6%;
  }

  #aoc .aoc-pub-thumbnails-vertical__thumbnail:nth-child(4n+4) {
    margin-right: 2.6%;
  }

  #aoc .aoc-pub-thumbnails-vertical__thumbnail:nth-child(3n+3) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 515px) {
  #aoc .aoc-pub-thumbnails-vertical__thumbnail {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 40%;
    flex: 1 0 40%;
    max-width: 48.2%;
    margin-right: 3.2%;
  }

  #aoc .aoc-pub-thumbnails-vertical__thumbnail:nth-child(3n+3) {
    margin-right: 3.2%;
  }

  #aoc .aoc-pub-thumbnails-vertical__thumbnail:nth-child(2n+2) {
    margin-right: 0;
  }
}

#aoc .aoc-pub-thumbnails-vertical__img {
  max-width: 100%;
  width: 100%;
}

#aoc .aoc-pub-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

#aoc .aoc-pub-slider .slick-dotted.slick-slider {
  margin-bottom: 0;
}

#aoc .aoc-pub-slider-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
  max-width: 1366px;
  min-width: 100%;
  position: relative;
  width: 100%;
}

#aoc .aoc-pub-slider-container .aoc-pub-signup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 20px 0;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-slider-container .aoc-pub-signup__wrapper {
    display: none;
  }
}

#aoc .aoc-pub-slider-container .aoc-pub-signup__title {
  margin-top: 0;
}

#aoc .aoc-pub-slider-container .aoc-pub-latest-news {
  color: #D71920;
  font-size: 1.2941176471em;
  line-height: 120%;
  margin: 0 0 10px 0;
  padding-bottom: 0;
  text-transform: uppercase;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-slider-container .aoc-pub-latest-news {
    font-size: 1.0588235294em;
  }
}

#aoc .aoc-pub-slider__slides {
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 9 auto;
  flex: 0 9 auto;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-slider__slides {
    width: 70%;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-pub-slider__slides {
    width: 100%;
  }
}

#aoc .aoc-pub-slider__slides .slick-slider-item {
  overflow: hidden;
}

#aoc .aoc-pub-slider__slides .slick-dots {
  bottom: 0;
  height: 30px;
  margin-top: 360px;
  right: 20px;
  top: 0;
  width: auto;
}

@media screen and (max-width: 640px) {
  #aoc .aoc-pub-slider__slides .slick-dots {
    margin-top: 320px;
  }
}

@media screen and (max-width: 580px) {
  #aoc .aoc-pub-slider__slides .slick-dots {
    margin-top: 140px;
  }
}

#aoc .aoc-pub-slider__slides .slick-dots li {
  background-color: rgb(240, 240, 240);
  border-radius: 100%;
  width: 20px;
  height: 20px;
}

#aoc .aoc-pub-slider__slides .slick-dots li.slick-active {
  opacity: 0.5;
}

#aoc .aoc-pub-slider__slides .slick-dots li button:before {
  content: "";
}

#aoc .aoc-pub-slider__img,
#aoc .aoc-pub-topic__hero--image {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 530px;
  width: 100%;
}

@media screen and (min-width: 1024px) and (max-width: 1030px) {
  #aoc .aoc-pub-slider__img,
  #aoc .aoc-pub-topic__hero--image {
    max-height: 345px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-slider__img,
  #aoc .aoc-pub-topic__hero--image {
    background-position: top center;
    max-width: 100%;
    min-height: 253px;
    max-height: 410px;
  }
}

@media screen and (max-width: 900px) {
  #aoc .aoc-pub-slider__img,
  #aoc .aoc-pub-topic__hero--image {
    height: 420px;
  }
}

@media screen and (max-width: 640px) {
  #aoc .aoc-pub-slider__img,
  #aoc .aoc-pub-topic__hero--image {
    height: 360px;
  }
}

@media screen and (max-width: 580px) {
  #aoc .aoc-pub-slider__img,
  #aoc .aoc-pub-topic__hero--image {
    height: 180px;
    min-height: 153px;
  }
}

#aoc .slick-active .aoc-pub-article-title {
  opacity: 1 !important;
}

#aoc .aoc-pub-slider__image-caption {
  overflow: hidden;
  display: none;
  margin-bottom: 20px;
}

#aoc .aoc-pub-slider__image-caption .aoc-pub-topic-title,
#aoc .aoc-pub-slider__image-caption a .aoc-pub-topic-title {
  color: #D71920;
  font-size: 1.2941176471em;
  line-height: 120%;
  margin-bottom: 0.1176470588em;
  margin-top: 0.9411764706em;
  padding-bottom: 0;
  text-transform: uppercase;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-slider__image-caption .aoc-pub-topic-title,
  #aoc .aoc-pub-slider__image-caption a .aoc-pub-topic-title {
    font-size: 0.8235294118em;
  }
}

#aoc .aoc-pub-slider__image-caption .aoc-pub-article-title {
  color: #000;
  font-size: 3.2352941176em;
  line-height: 120%;
  margin: 5px 0;
  opacity: 0;
  text-indent: -2px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-slider__image-caption .aoc-pub-article-title {
    font-size: 2.1176470588em;
    line-height: 110%;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-pub-slider__image-caption .aoc-pub-article-title {
    font-size: 1.6470588235em;
    line-height: 120%;
    text-indent: -1px;
  }
}

#aoc .aoc-pub-slider__image-caption p {
  color: #000;
  font-size: 1.4117647059em;
  line-height: 130%;
  margin-top: 10px;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-slider__image-caption p {
    font-size: 1.0588235294em;
    margin-bottom: 0;
  }
}

#aoc .slick-current .aoc-pub-slider__image-caption {
  display: block;
}

#aoc .aoc-pub-slider-sidebar {
  -webkit-box-flex: 0;
  -ms-flex: 0 3 100%;
  flex: 0 3 100%;
  max-width: 288px;
  margin-left: 2.5641%;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-slider-sidebar {
    width: 30%;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-pub-slider-sidebar {
    display: none;
  }
}

#aoc .aoc-pub-slider-sidebar .aoc-pub-signup__form input[type=text] {
  width: 100%;
}

#aoc .aoc-pub-slider__nav {
  margin-right: 0;
  max-width: 100%;
  width: 100%;
}

#aoc .aoc-pub-slider__nav .slick-slider-item {
  border-top: 1px solid #CCC;
  cursor: pointer;
  font-size: 1.4117647059em;
  height: auto;
  line-height: 130%;
  margin-bottom: 10px;
  padding: 10px 0;
  width: 100% !important;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-slider__nav .slick-slider-item {
    font-size: 1.0588235294em;
  }
}

#aoc .aoc-pub-slider__nav .slick-slider-item:focus,
#aoc .aoc-pub-slider__nav .slick-slider-item:active {
  outline: none;
}

#aoc .aoc-pub-slider__nav .slick-slider-item:hover {
  color: #666;
}

#aoc .aoc-pub-slider__nav .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100% !important;
}

#aoc .aoc-pub-slider__nav .slick-track:focus {
  outline: none;
}

#aoc .controls {
  text-align: center;
  padding: 10px;
  font-family: monospace;
  font-weight: bold;
}

#aoc .slick-lightbox-slick-img {
  margin-bottom: 1em;
}

#aoc .aoc-pub-image-slider-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 912px;
  margin: 0;
  position: relative;
  width: 100%;
}

#aoc .aoc-pub-image-slider {
  font-size: 1.0588235294em;
}

#aoc .aoc-pub-image-slider__title {
  color: #000;
  font-size: 32px;
  margin-bottom: 10px;
  line-height: 120%;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-image-slider__title {
    font-size: 1.6470588235em;
  }
}

#aoc .aoc-pub-image-slider__content {
  line-height: 130%;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-image-slider {
    font-size: 0.9411764706em;
  }
}

#aoc .aoc-pub-image-slider__slides {
  display: block;
  position: relative;
  width: 100%;
  margin-top: 20px;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-image-slider__slides {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-image-slider__slides {
    margin-bottom: 10px;
  }
}

#aoc .aoc-pub-image-slider__slides .slick-prev,
#aoc .aoc-pub-image-slider__slides .slick-next {
  background-size: 80px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  height: 80px;
  max-height: 80px;
  opacity: 0.7;
  text-indent: -9999px;
  top: 250px;
  width: 80px;
  z-index: 2;
}

@media screen and (max-width: 800px) {
  #aoc .aoc-pub-image-slider__slides .slick-prev,
  #aoc .aoc-pub-image-slider__slides .slick-next {
    top: 200px;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-image-slider__slides .slick-prev,
  #aoc .aoc-pub-image-slider__slides .slick-next {
    width: 50px;
    height: 50px;
    top: 100px;
  }
}

#aoc .aoc-pub-image-slider__slides .slick-prev {
  background: url("./img/arrow-prev.svg") no-repeat;
  left: 2px;
}

#aoc .aoc-pub-image-slider__slides .slick-prev:before {
  content: "";
}

#aoc .aoc-pub-image-slider__slides .slick-next {
  background: url("./img/arrow-next.svg") no-repeat;
  right: 2px;
}

#aoc .aoc-pub-image-slider__slides .slick-next:before {
  content: "";
}

#aoc .aoc-pub-image-slider__slides .slick-prev:before,
#aoc .aoc-pub-image-slider__slides .slick-next:before {
  color: #000;
}

#aoc .aoc-pub-image-slider__slides .slick-dots {
  bottom: 0;
  height: 30px;
  margin-top: 200px;
  right: 20px;
  top: 0;
  width: auto;
}

#aoc .aoc-pub-image-slider__slides .slick-dots li {
  background-color: rgb(240, 240, 240);
  border-radius: 100%;
  width: 20px;
  height: 20px;
}

#aoc .aoc-pub-image-slider__slides .slick-dots li.slick-active {
  opacity: 0.5;
}

#aoc .aoc-pub-image-slider__slides .slick-dots li button:before {
  content: "";
}

#aoc .slick-list.aoc-pub-slider-height--auto {
  height: auto !important;
}

@media screen and (max-width: 480px) {
  #aoc .slick-list.aoc-pub-slider-height--auto {
    margin-bottom: 2.3529411765em;
  }
}

#aoc .slick-prev {
  left: 2px;
}

#aoc .slick-prev::before {
  color: #000;
}

#aoc .slick-next {
  right: 2px;
}

#aoc .slick-next::before {
  color: #000;
}

#aoc .slick-prev,
#aoc .slick-next {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  z-index: 50;
}

#aoc .aoc-pub-image-slider__img {
  display: block;
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0 auto;
  max-height: 100%;
  width: auto;
}

@media screen and (max-width: 800px) {
  #aoc .aoc-pub-image-slider__img {
    max-width: 100%;
    height: 384px;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-image-slider__img {
    height: 180px;
  }
}

#aoc .aoc-pub-image-slider .slick-slider-item.slick-slide.slick-current.slick-active {
  background-color: #000;
}

#aoc .aoc-pub-image-slider__caption {
  color: #4c4c4c;
  font-size: 0.9411764706em;
  line-height: 130%;
  margin: 0;
  padding-bottom: 0;
  padding-top: 2.3529411765em;
  background-color: #fff;
}

@media screen and (max-width: 515px) {
  #aoc .aoc-pub-image-slider__caption {
    font-size: 0.7058823529em;
    padding: 40px 0 15px;
    border-bottom: 1px solid #CCC;
    margin: 0;
  }
}

#aoc .aoc-pub-image-slider__caption--close {
  opacity: 0;
  line-height: 0;
  padding: 0;
}

#aoc .slick-active .aoc-pub-article-title {
  opacity: 1 !important;
}

#aoc .aoc-pub-image-slider__tabs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #CCC;
  border-width: 1px 0 1px 0;
  padding: 0.5882352941em 2.8235294118em;
  margin: 2.1176470588em 0;
}

@media screen and (max-width: 800px) {
  #aoc .aoc-pub-image-slider__tabs {
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-image-slider__tabs {
    display: none;
  }
}

#aoc .aoc-pub-image-slider__tabs--img {
  display: block;
  height: 80px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  width: 80px;
}

@media screen and (max-width: 800px) {
  #aoc .aoc-pub-image-slider__tabs--img {
    max-width: 100%;
    height: 60px;
    width: 60px;
  }
}

#aoc .aoc-pub-image-slider__tabs--img:hover {
  cursor: pointer;
  opacity: 0.8;
}

#aoc .aoc-pub-image-slider__tabs .slick-prev,
#aoc .aoc-pub-image-slider__tabs .slick-next {
  background: none;
  border-radius: 0;
  color: transparent;
  height: 40px;
  top: 32%;
  width: 40px;
  z-index: 2;
}

#aoc .aoc-pub-image-slider__tabs .slick-prev {
  left: 0;
}

#aoc .aoc-pub-image-slider__tabs .slick-prev:before {
  content: "<";
  color: #CCC;
  font-size: 50px;
}

#aoc .aoc-pub-image-slider__tabs .slick-next {
  right: 0;
}

#aoc .aoc-pub-image-slider__tabs .slick-next:before {
  content: ">";
  color: #CCC;
  font-size: 50px;
}

#aoc .aoc-pub-image-slider__tabs .slick-slider-item {
  height: 80px;
  margin: 0 10px 0 0;
  min-width: 80px;
  width: 80px !important;
  display: block;
}

@media screen and (max-width: 800px) {
  #aoc .aoc-pub-image-slider__tabs .slick-slider-item {
    height: auto !important;
    min-width: 60px;
    width: 100% !important;
  }
}

#aoc .aoc-pub-image-slider__tabs .slick-slider-item:focus,
#aoc .aoc-pub-image-slider__tabs .slick-slider-item:active {
  outline: none;
}

#aoc .aoc-pub-image-slider__tabs .slick-list {
  width: 100%;
}

#aoc .aoc-pub-image-slider__tabs .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}

#aoc .aoc-pub-slider-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.0588235294em;
  height: 40px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 0;
  position: absolute;
  top: 500px;
  width: 100%;
  z-index: 10;
}

@media screen and (max-width: 800px) {
  #aoc .aoc-pub-slider-counter {
    top: 385px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-slider-counter {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 0.8823529412em;
    top: 175px;
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-slider-counter--collapse {
    font-size: 0.8823529412em;
    padding-left: 1.1764705882em;
    width: 100%;
  }
}

#aoc .aoc-pub-slider-counter__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}

@media screen and (max-width: 515px) {
  #aoc .aoc-pub-slider-counter__controls {
    margin-right: 0;
  }
}

#aoc .aoc-pub-slider-counter__button {
  background: none;
  border: none;
  color: #000;
  display: inline-block;
  font-size: 18px;
  margin: 0;
  padding: 7px 0;
  position: relative;
  width: auto;
}

#aoc .aoc-pub-slider-counter__button--fullscreen {
  background: none;
  border: none;
  color: #000;
  display: inline-block;
  font-size: 18px;
  margin: 0;
  padding: 7px 15px;
  position: relative;
  width: auto;
}

#aoc .aoc-pub-slider-counter__button--fullscreen:focus {
  outline: none;
}

#aoc .aoc-pub-slider-counter__button--fullscreen:hover {
  cursor: pointer;
}

@media screen and (max-width: 515px) {
  #aoc .aoc-pub-slider-counter__button--fullscreen {
    font-size: 100%;
  }
}

#aoc .aoc-pub-slider-counter__button--show {
  display: none;
}

#aoc .aoc-pub-slider-counter__button:hover {
  cursor: pointer;
}

#aoc .aoc-pub-slider-counter__button:hover span {
  color: #D71920;
}

#aoc .aoc-pub-slider-counter__button:focus {
  outline: none;
}

#aoc .aoc-pub-slider-counter__button span {
  font-size: 18px;
  color: #aaa;
  margin-left: 5px;
}

@media screen and (max-width: 515px) {
  #aoc .aoc-pub-slider-counter__button span {
    font-size: 100%;
  }
}

#aoc .aoc-pub-slider-counter__button span:hover {
  color: #D71920;
}

@media screen and (max-width: 515px) {
  #aoc .aoc-pub-slider-counter__button {
    font-size: 100%;
  }
}

#aoc .controls {
  text-align: center;
  padding: 10px;
  font-family: monospace;
  font-weight: bold;
}

#aoc .aoc-pub-primary-post-feed {
  border-top: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.4117647059em 0;
  width: 100%;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-primary-post-feed {
    border-top: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 1.41176em;
  }
}

#aoc .aoc-pub-primary-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 1.2352941176em;
  max-width: 100%;
  width: 100%;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-primary-post {
    border-top: 1px solid #CCC;
    margin: 0;
    padding-top: 0.9411764706em;
  }
}

#aoc .aoc-pub-primary-post:nth-child(even) {
  margin-right: 0;
}

#aoc .aoc-pub-primary-post__image {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 15.2352941176em;
  margin-bottom: 1.2941176471em;
  width: 100%;
}

@media screen and (min-width: 1024px) and (max-width: 1030px) {
  #aoc .aoc-pub-primary-post__image {
    height: 188px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-primary-post__image {
    height: 11.7647058824em;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-pub-primary-post__image {
    height: 19.2941176471em;
  }
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-primary-post__image {
    margin-bottom: 1.1764705882em;
  }
}

@media screen and (max-width: 580px) {
  #aoc .aoc-pub-primary-post__image {
    height: 9.2941176471em;
  }
}

#aoc .aoc-pub-primary-post__label {
  color: #D71920;
  font-size: 1.2941176471em;
  margin-bottom: 0.4705882353em;
  text-transform: uppercase;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-primary-post__label {
    font-size: 0.8235294118em;
  }
}

#aoc .aoc-pub-primary-post__title {
  color: #000;
  padding-bottom: 0;
  text-indent: -2px;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-primary-post__title {
    font-size: 1.4117647059em;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-pub-primary-post__title {
    font-size: 1.2941176471em;
  }
}

#aoc .aoc-pub-primary-post__content p {
  font-size: 1.0588235294em;
  line-height: 120%;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-primary-post__content p {
    font-size: 1.0588235294em;
  }
}

#aoc .aoc-pub-secondary-post-feed {
  border-top: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.4117647059em 0;
  width: 100%;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-secondary-post-feed {
    border-bottom: none;
    border-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 0;
  }
}

#aoc .aoc-pub-secondary-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 1.1176470588em;
  max-width: 50%;
  width: 100%;
}

#aoc .aoc-pub-secondary-post:nth-child(3n+3) {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-secondary-post:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-secondary-post {
    border-top: 1px solid #CCC;
    margin: 0 0 0.9411764706em 0;
    max-width: 100%;
    padding-top: 0.9411764706em;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-secondary-post {
    margin: 0;
  }
}

#aoc .aoc-pub-secondary-post__image {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 10em;
  margin-bottom: 1.2941176471em;
  width: 100%;
}

@media screen and (min-width: 1024px) and (max-width: 1030px) {
  #aoc .aoc-pub-secondary-post__image {
    height: 120px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-secondary-post__image {
    height: 11.7647058824em;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-pub-secondary-post__image {
    height: 11.9411764706em;
  }
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-secondary-post__image {
    display: none;
  }
}

#aoc .aoc-pub-secondary-post__label {
  color: #D71920;
  font-size: 1.2941176471em;
  margin-bottom: 0.3529411765em;
  text-transform: uppercase;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-secondary-post__label {
    font-size: 0.8235294118em;
  }
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-secondary-post__label {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

#aoc .aoc-pub-secondary-post__title {
  padding-bottom: 0;
  text-indent: 0;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-secondary-post__title {
    font-size: 1.4117647059em;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-pub-secondary-post__title {
    font-size: 1.2352941176em;
  }
}

@media screen and (max-width: 580px) {
  #aoc .aoc-pub-secondary-post__title {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

#aoc .aoc-pub-secondary-post__content p {
  font-size: 1.0588235294em;
  line-height: 120%;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-pub-secondary-post__content p {
    font-size: 1.0588235294em;
  }
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-secondary-post__content p {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-secondary-post__content p {
    font-size: 0.9411764706em;
  }
}

#aoc .aoc-pub-secondary-post__mobile-image {
  display: none;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-secondary-post__mobile-image {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    float: right;
    height: 3em;
    margin-bottom: 1.05882em;
    margin-left: 0.8823529412em;
    margin-top: 0.2352941176em;
    width: 5.2941176471em;
  }
}

#aoc .aoc-pub-tertiary-post-feed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-tertiary-post-feed {
    border-bottom: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

#aoc .aoc-pub-tertiary-post {
  border-top: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 33%;
  flex: 1 0 33%;
  margin-bottom: 1.4117647059em;
  margin-right: 0;
  max-width: 33%;
  padding: 1.4117647059em 1.4117647059em 0 0;
  width: 100%;
}

@media screen and (max-width: 600px) {
  #aoc .aoc-pub-tertiary-post {
    border-top: 1px solid #CCC;
    display: block;
    margin: 0 0 0.3529411765em;
    max-width: 100%;
    padding-top: 0.9411764706em;
  }
}

#aoc .aoc-pub-tertiary-post:nth-child(3) {
  padding-right: 0;
}

#aoc .aoc-pub-tertiary-post__image {
  display: block;
  height: auto;
  max-width: 288px;
  overflow: hidden;
  width: 100%;
}

#aoc .aoc-pub-tertiary-post__image img {
  display: block;
  max-width: 100%;
  margin-bottom: 1.2941176471em;
}

#aoc .aoc-pub-tertiary-post__label {
  color: #D71920;
  font-size: 1.2941176471em;
  margin-bottom: 0.4705882353em;
  text-transform: uppercase;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-tertiary-post__label {
    font-size: 0.8235294118em;
  }
}

#aoc .aoc-pub-tertiary-post__title {
  padding-bottom: 0;
  text-indent: -2px;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-pub-tertiary-post__title {
    font-size: 1.4117647059em;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-pub-tertiary-post__title {
    font-size: 1.2352941176em;
  }
}

#aoc .aoc-pub-tertiary-post__content p {
  font-size: 1.0588235294em;
  line-height: 120%;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-pub-tertiary-post__content p {
    font-size: 0.9411764706em;
  }
}

#aoc .aoc-article-summary {
  border-top: 2px solid #ccc;
  padding-top: 0.5882352941em;
}

#aoc .aoc-article-summary:last-of-type {
  border-bottom: 1px solid #ccc;
  margin-bottom: 1.4705882353em;
}

#aoc .aoc-article-summary__date {
  color: #666;
  font-size: 1.0588235294em;
  font-weight: bold;
}

#aoc .aoc-article-summary__title {
  font-size: 1.8823529412em;
  line-height: 34px;
  margin: 0.46875em 0;
}

#aoc .aoc-article-summary__byline {
  font-size: 1.0588235294em;
  margin-bottom: 6px;
}

#aoc .aoc-article-summary__copy {
  line-height: 22px;
}

#aoc .aoc-article-summary__copy:last-of-type {
  margin-bottom: 1.7647058824em;
}

#aoc .aoc-accordion.pub {
  margin-top: 22px;
  margin-bottom: 22px;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-accordion.pub {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}

#aoc .aoc-accordion__header.pub {
  height: auto;
  padding-top: 8px;
}

#aoc .aoc-accordion__chevron.pub {
  margin-top: -60px;
}

@media screen and (max-width: 799px) {
  #aoc .aoc-accordion__chevron.pub {
    margin-top: -34px;
  }
}

#aoc #aoc-calendar {
  font-family: "Alright Sans CE Lt";
  /* Move day numbers to the left side */
}

#aoc #aoc-calendar.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  float: none;
  padding: 0;
}

#aoc .aoc-calendar__event-window {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

#aoc .aoc-calendar__event-window-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#aoc .aoc-calendar__event-window-header .aoc-hearders-h3 {
  margin: 0 0 20px 0;
  font-size: 18px;
}

#aoc .aoc-calendar__event-content {
  background-color: #fff;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  font-family: "Alright Sans CE Lt";
  padding: 25px;
  position: relative;
  max-width: 540px;
  width: 100%;
}

#aoc .aoc-calendar__event-window-close {
  color: #DA333A;
  font-weight: bold;
  margin: 0;
  height: 1.17647em;
  width: 1.17647em;
}

#aoc .aoc-calendar__event-window-close:hover {
  cursor: pointer;
}

#aoc .aoc-calendar__event-name {
  font-weight: bold;
}

#aoc .aoc-calendar__event-details {
  margin-bottom: 15px;
}

#aoc .aoc-calendar__event-detail-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 0;
}

#aoc .aoc-calendar__event-detail-row--label {
  -ms-flex-preferred-size: 22%;
  flex-basis: 22%;
  font-weight: bold;
  padding-right: 8px;
}

#aoc .aoc-calendar__event-detail-row--info {
  font-family: "Alright Sans CE Lt";
  font-weight: normal;
}

#aoc .fc-list-item .aoc-calendar__event-content {
  -webkit-box-shadow: none;
  box-shadow: none;
}

#aoc .fc-toolbar {
  background-color: #A6A6A6;
}

#aoc .fc-toolbar .fc-left {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Alright Sans CE Lt";
}

#aoc .fc-toolbar .fc-prev-button {
  margin-right: 0;
  padding-right: 0;
}

#aoc .fc-toolbar .fc-next-button {
  margin-left: 0;
  padding-left: 0;
}

#aoc .fc-toolbar .fc-button {
  background: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  margin-bottom: 0;
}

#aoc .fc-toolbar .fc-button span {
  text-shadow: none;
  vertical-align: middle;
}

#aoc .fc-toolbar h2 {
  color: #fff;
  margin-bottom: 0;
  margin-left: 0;
  text-transform: capitalize;
}

#aoc .fc-day-header.fc-widget-header {
  text-transform: capitalize;
}

#aoc .fc-scroller[style] {
  height: auto !important;
  overflow-y: hidden !important;
}

#aoc .fc-bg table {
  border: 2px solid #fff;
  border-left: 0;
  border-right: 0;
}

#aoc .fc-content-skeleton,
#aoc .fc-content-skeleton > table {
  height: 100%;
}

#aoc .fc-content-skeleton > table tr {
  height: 25%;
}

#aoc .fc-bg .fc-day {
  background-color: #F0F0F0;
  border-right: 4px solid #fff;
}

#aoc .fc-bg .fc-day:last-child {
  border-right: 0;
}

#aoc .fc-day-number {
  position: relative;
  left: 5px;
  top: 5px;
}

#aoc .fc-event-container {
  position: relative;
  top: 5px;
}

#aoc .fc-bg .fc-day.fc-other-month {
  background-color: #F7F7F7;
}

#aoc .fc-title {
  color: #4d4d4d;
  white-space: normal;
}

#aoc .fc-event {
  cursor: pointer;
  border-radius: 0;
  font-size: 14px;
}

#aoc .fc-content {
  line-height: 14px;
  padding: 5px 5px 5px 0;
}

#aoc .fc-content .fc-time {
  display: none;
}

#aoc .fc-event:hover {
  text-decoration: underline;
}

#aoc .fc-list-item-marker {
  display: none;
}

#aoc .fc-list-item {
  cursor: pointer;
}

#aoc .fc-list-item:hover td {
  background: none;
}

#aoc .fc-list-item {
  border: 1px solid #dadada;
  border-width: 1px 0;
}

#aoc .fc-list-item .aoc-calendar__event-content {
  display: none;
}

#aoc .fc-list-item .aoc-accordion__chevron {
  margin-top: 2px;
  position: absolute;
  right: 7px;
  height: 0.9em;
  width: 0.9em;
}

#aoc .fc-list-item.expanded .fc-list-item-title {
  padding-right: 0;
}

#aoc .fc-list-item.expanded .aoc-calendar__event-content {
  display: block;
  max-width: none;
  padding: 30px 0;
}

#aoc .fc-list-item.expanded .aoc-accordion__chevron {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

#aoc .fc-list-item .fc-list-item-title.fc-widget-content a {
  color: #4d4d4d;
}

#aoc .fc-list-item .aoc-calendar__event-name {
  display: none;
}

#aoc .fc-list-item .aoc-calendar__event-window-close {
  bottom: 0;
  position: absolute;
  right: 7px;
  height: 0.9em;
  width: 0.9em;
}

#aoc .fc-day-grid-event.fc-h-event.fc-event.fc-start.fc-end,
#aoc .fc-day-grid-event.fc-h-event.fc-event.fc-start.fc-not-end,
#aoc .fc-day-grid-event.fc-h-event.fc-event.fc-not-start.fc-end,
#aoc .fc-day-grid-event.fc-h-event.fc-event.fc-start.fc-not-end {
  padding: 2px 5px;
}

#aoc .fc-day-grid-event.fc-h-event.fc-event.fc-start.fc-end,
#aoc .fc-day-grid-event.fc-h-event.fc-event.fc-start.fc-not-end {
  margin: 5px 2px 0 2px;
}

#aoc .fc-day-grid-event.fc-h-event.fc-event.fc-start.fc-not-end {
  margin: 5px 0 0 2px;
}

#aoc .fc-day-grid-event.fc-h-event.fc-event.fc-not-start.fc-end {
  margin: 5px 2px 0 0;
}

#aoc .fc-day-grid-event.fc-h-event.fc-event.fc-start.fc-end:hover,
#aoc .fc-day-grid-event.fc-h-event.fc-event.fc-start.fc-not-end:hover,
#aoc .fc-day-grid-event.fc-h-event.fc-event.fc-not-start.fc-end:hover,
#aoc .fc-day-grid-event.fc-h-event.fc-event.fc-not-start.fc-not-end:hover {
  text-decoration: none;
  background-color: rgba(204, 204, 204, 0.5) !important;
}

#aoc .fc-content span.fc-title {
  color: #4d4d4d;
  font-size: 14px;
}

#aoc .aoc-calendar__event-detail-row--info {
  width: 100%;
}

#aoc .cse .gsc-control-cse,
#aoc .gsc-control-cse {
  padding: 0 50px;
}

@media screen and (max-width: 1090px) {
  #aoc .cse .gsc-control-cse,
  #aoc .gsc-control-cse {
    padding: 0 15px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .gsc-control-cse.gsc-control-cse-en {
    padding: 0 30px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .gsc-control-cse.gsc-control-cse-en {
    padding: 0 20px;
  }
}

#aoc .gsc-table-result,
#aoc .gsc-thumbnail-inside,
#aoc .gsc-url-top,
#aoc .gsc-result-info,
#aoc .gcsc-branding {
  padding-left: 0;
  padding-right: 0;
}

#aoc .gs-result .gs-title,
#aoc .gs-result .gs-title * {
  color: #878787;
  text-decoration: none;
}

#aoc .gs-webResult div.gs-visibleUrl,
#aoc .gs-imageResult div.gs-visibleUrl {
  color: #008DD0;
}

#aoc .gsc-selected-option-container {
  background-image: none;
  background-color: #eee;
}

#aoc .gsc-selected-option-container {
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#aoc .gsc-results .gsc-cursor-box {
  margin-left: 0;
  margin-right: 0;
}

#aoc .gsc-results .gsc-cursor-box .gsc-cursor-page {
  text-decoration: none;
}

#aoc .gsc-cursor-current-page {
  opacity: 0.8;
}

#aoc .gsc-results {
  width: 100%;
}

#aoc td.gsc-table-cell-snippet-close {
  vertical-align: top;
}

#aoc .embed-container {
  height: 0;
  margin-bottom: 10px;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

#aoc .embed-container iframe,
#aoc .embed-container object,
#aoc .embed-container embed {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

#aoc .aoc-gen-bottom-bumper {
  display: block;
  margin-bottom: 0.70588em;
}

.safari.mac #aoc .aoc-header__dropdown-link {
  min-height: 54px;
}

.ie11 #aoc input[type=checkbox]:checked + label:before {
  background: white url("/aoc-theme/resources/o/aoc-theme/images/check.png") no-repeat center center !important;
}

@media screen and (max-width: 480px) {
  .aui .slick-lightbox-close {
    position: absolute;
    top: 0;
    right: 15px;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    background: transparent;
    color: transparent;
    padding: 0;
    border: none;
  }

  .aui .slick-lightbox-close:before {
    font-family: sans-serif;
    content: "x";
    font-size: 60px;
    font-weight: 100;
  }

  .aui .slick-initialized .slick-slide {
    overflow-y: auto;
  }

  .aui .slick-lightbox-slick-item-inner {
    vertical-align: top;
    padding-top: 30px;
  }

  .aui .slick-slide img {
    display: block;
    height: auto;
    width: 100vw;
    margin-top: 30px;
  }

  .aui .slick-lightbox-slick .slick-prev {
    z-index: 30;
  }

  .aui .slick-lightbox-slick-caption {
    font-size: 14px;
    line-height: 17px;
  }

  .aui .slick-lightbox-slick-item-inner {
    width: 100%;
  }
}

@media screen and (max-width: 846px) {
  .aui .slick-lightbox-close:before {
    font-family: sans-serif;
    content: "x";
    font-size: 60px;
    font-weight: 100;
  }

  .aui .slick-lightbox-close {
    position: absolute;
    top: 0;
    right: 15px;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    background: transparent;
    color: transparent;
    padding: 0;
    border: none;
  }

  .aui .slick-initialized .slick-slide {
    overflow-y: auto;
  }

  .aui .slick-lightbox-slick-caption {
    font-size: 14px;
    line-height: 17px;
  }
}

@charset "UTF-8";

@import '../../../../node_modules/normalize.css/normalize.css';

html {
  box-sizing: border-box;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

.aoc-secondary-colors--medium {
  color: #4a4a4a;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header__dropdown-link,
  #aoc .aoc-header .aoc-search-bar,
  #aoc .aoc-header .aoc-social-media,
  .desktop-only {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {
  #aoc .aoc-header .aoc-header__menu-button,
  .mobile-only {
    display: none !important;
  }
}

@media print {
  a[href]:after {
    content: none !important;
  }
}

@media print {
  .aoc-top-nav,
  .aoc-header__dropdown-link,
  .aoc-social-media,
  .aoc-search-bar {
    display: none !important;
  }

  .aoc-header__top-row {
    margin-bottom: 0 !important;
  }
}

/*----------------------

    Liferay Overrides

------------------------*/

#aoc i {
  font-family: "fontawesome-alloy";
}

@media screen and (max-width: 767px) {
  .aui body,
  #aoc label.radio input body {
    padding: 0;
  }
}

#aoc .journal-article-component-container div {
  border: 1px solid #eee;
}

.aoc-button,
#aoc .aoc-donate-button-container .aoc-donate-button,
#aoc button,
#aoc .icon-circle-arrow-left.previous-level:after,
#aoc .aoc-form__input--file + label {
  background-position: 0 48px;
}

input {
  min-height: 35px;
}

.separator {
  margin: 0 auto;
}

#aoc #content form#hrefFm {
  margin-bottom: 0;
}

.aui select,
#aoc label.radio input select {
  border-radius: 0;
}

.aui select:focus,
#aoc label.radio input select:focus {
  outline: none;
}

#aoc .lfr-ddm-container .control-group.field-wrapper label.checkbox .field {
  position: relative;
}

@media screen and (max-width: 520px) {
  .portlet-borderless-container {
    min-height: 1em;
  }
}

#aoc ul.child-pages {
  list-style: none;
}

#aoc .results-header h3 a {
  color: #878787;
}

#aoc .child-pages li a {
  color: #878787;
}

#aoc fieldset.input-container .aoc-select-dropdown__text,
#aoc fieldset.input-container select {
  position: relative;
}

#aoc .control-group select {
  position: relative;
}

html:not(#__):not(#___) body.has-edit-mode-menu .aoc-header {
  overflow: auto;
}

html:not(#__):not(#___) body.has-edit-mode-menu .page-editor__layout-viewport__resizer {
  max-width: 100%;
}

html:not(#__):not(#___) body.has-edit-mode-menu .page-editor__root > div[data-name=Container] > div > div > div[data-name=Grid]:nth-child(2) {
  max-width: 1366px;
  padding: 0 50px;
  margin: 0 auto;
}

body.has-edit-mode-menu #aoc > .d-flex {
  width: auto !important;
}

#aoc {
  /*
  Typography

  Markup: typography.hbs

  Shown below are Alright Sans Light and Alright Sans Bold respectively. 
  These are the only two types used throughout the site.

  Styleguide Elements.Typography
  */
  /*
  Elements

  A constituent part of a block that can't be used outside of it.

  Styleguide Elements
  */
  /*
  Primary Colors

  Markup: colors.hbs 

  Styleguide Colors.Primary-Colors
  */
  /*
  Headers

  Markup: headers.hbs

  Styleguide Elements.Headers
  */
  /*
  Text Link

  Markup: link.hbs

  Styleguide Elements.Link
  */
  /*
  Paragraphs

  Markup: paragraphs.hbs

  Styleguide Elements.Paragraphs
  */
  /*
  Unordered Lists

  Styled ordered lists are good for displaying list data, while unstyled ordered lists are a good starting point patterns like navigation menus

  Markup: unordered-list.hbs

  Styleguide Elements.Lists.Unordered-List
  */
  /*
  Ordered Lists


  Markup: ordered-list.hbs

  Styleguide Elements.Lists.Ordered-Lists
  */
  /*
  Unstyled Lists


  Markup: unstyled-list.hbs

  Styleguide Elements.Lists.Unstyled-Lists
  */
  /*
  Pagination


  Markup: pagination.hbs

  Styleguide Elements.Pagination
  */
  /*
  Tables

  Markup: tables.hbs

  Styleguide Elements.Tables
  */
  /*
  Accordion

  Markup: accordion.hbs

  Styleguide Accordion
  */
  /*
  Content Types

  Styleguide Content Types
  */
  /*
  Content with Intro

  Markup: center-content.hbs

  Styleguide Content Types.Content-with-Intro
  */
  /*
  Daybook

  Markup: daybook.hbs

  Styleguide Content Types.Daybook
  */
  /*
  Article-1

  Markup: article-1.hbs

  Styleguide Content Types.Article-1
  */
  /*
  Article-2

  Markup: article-2.hbs

  Styleguide Content Types.Article-2
  */
  /*
  Bio Detail

  Markup: bio-detail.hbs

  Styleguide Content Types.Bio-List
  */
  /*
  Bio List-1

  Markup: bio-list-1.hbs

  Styleguide Content Types.Bio List-1
  */
  /*
  Bio List-2

  Markup: bio-list-2.hbs

  Styleguide Content Types.Bio List-2
  */
  /*
  Bio List-3

  Markup: bio-list-3.hbs

  Styleguide Content Types.Bio List-3
  */
  /*
  Directory

  Markup: directory.hbs

  Styleguide Content Types.Directory
  */
  /*
  Schedule

  Markup: schedule.hbs

  Styleguide Content Types.Schedule
  */
  /*
  Sectional Content

  Markup: sectional-content.hbs

  Styleguide Content Types.Sectional Content
  */
  /*
  Statements List

  Markup: statements.hbs

  Styleguide Content Types.News and Statements.Statements List
  */
  /*
  News Release List

  Markup: news-releases.hbs

  Styleguide Content Types.News and Statements.News Release List
  */
  /*
  News Detail

  Markup: news-release-detail.hbs

  Styleguide Content Types.News and Statements.News Detail-2
  */
  /*
  Four Column Tiles

  Markup: four-column-tiles.hbs

  Styleguide Content Types.Four Column Tiles
  */
  /*
  Side Navigation

  Markup: side-navigation.hbs

  Styleguide Side Navigation
  */
  /*
  Forms

  Markup: forms.hbs

  Styleguide Forms
  */
  /* field states */
  /* with labels */
  /* Select Dropdown List */
  /*********************
  FORM VALIDATION STYLES
  **********************/
  /*
  Hero

  Please close the left nav menu by pressing `ctrl + l` in order to view the header closer to its ideal width.

  Markup: hero.hbs

  Styleguide Hero
  */
  /*
  Header

  Please close the left nav menu by pressing `ctrl + l` in order to view the header closer to its ideal width.

  Markup: header.hbs

  Styleguide Header
  */
  /* Language */
  /* Logo */
  /* Mega Menu Button*/
  /* Social Media */
  /* Search */
  /* Top Nav */
  /* Top Nav Dropdown */
  /* Dropdown/Mobile Chevron */
  /* 3rd Level Navigation */
  /* Mega Menu/Site Menu */
  /* Mobile Social Media */
  /*
  Subsite Header

  Please close the left nav menu by pressing `ctrl + l` in order to view the header closer to its ideal width.

  Markup: subsite-header.hbs

  Styleguide Subsite Header
  */
  /*
  Footer

  Markup: footer.hbs

  Styleguide Footer
  */
  /*
  Subpage Banner

  Please close the left nav menu by pressing `ctrl + l` in order to view the header closer to its ideal width.

  Markup: subpage-banner.hbs

  Styleguide Subpage Banner
  */
  /*
  Horizontal Stamps

  Please close the left nav menu by pressing `ctrl + l` in order to view the header closer to its ideal width.

  Markup: thumbnails.hbs

  Styleguide Stamps.Horizontal Stamps
  */
  /*
  Vertical Stamps

  Please close the left nav menu by pressing `ctrl + l` in order to view the header closer to its ideal width.

  Markup: vertical-thumbnails.hbs

  Styleguide Stamps.Vertical Stamps
  */
  /*-----------------------------------

      Custom Asset Publisher Styles

  -------------------------------------*/
  /* Back Button */
  /*---------------------------------------------------------

      Extend all Elements in Styleguide to the aoc-theme

      Wiziwig toolbar available for use without application of
      class names.

  -----------------------------------------------------------*/
  /* Headers */
  /* Lists */
  /*ol {@extend .aoc-ol;}*/
  /* Paragraph */
  /* Links */
  /* Buttons */
  /* Pagination */
  /* i-frame */
  /* Caption */
  /* Super and Sub scripts */
  /* Forms via the Web Form Portlet*/
  /*----------------------

      Header Overrides

  ------------------------*/
  /* Search box and icon link */
  /* Search Social Mobile */
  /* Donate Button */
  /*--------------------------

      Custom Layout Styles

  ----------------------------*/
  /* Custom Layout Styles */
  /* Custom Styles for the 1-2 Layout */
  /* Custom Styles for the 1-3 Layout */
  /*----------------------

      Mobile Overrides

  ------------------------*/
  /*-------------------------

      Navigation Overrides

  ---------------------------*/
  /* Header Navigation */
  /* Mobile Navigation */
  /* Side Navigation */
  /* --Subsite Navigation-- */
  /*-------------------------

      Custom Page Titles

  ---------------------------*/
  /* Social Media Page Title */
  /*----------------------

      Stamp Overrides

  ------------------------*/
  /* Horizontal */
  /* Vertical */
  /*.aoc-thumbnails-vertical__thumbnail {
    margin-top: 0;
    margin-bottom: 0;
  }*/
  /* placed outside of theme for global usage */
  color: #000;
  font-family: "Alright Sans CE Lt";
  font-size: 17px;
  max-width: 100%;
  /* Close #wrapper */
  /* Main Content */
  /* fixes for mobile version of slideshow */
  /* Footer */
}

#aoc .alrightsansbolditalic,
#aoc .alrightsanscebolditalic {
  font-family: "Alright Sans CE Bd It", sans;
  font-display: swap;
  font-style: italic;
  font-weight: normal;
}

#aoc .alrightsansbold,
#aoc .aoc-button,
#aoc .aoc-donate-button-container .aoc-donate-button,
#aoc button,
#aoc .icon-circle-arrow-left.previous-level:after,
#aoc .aoc-form__input--file + label,
#aoc .aoc-post__content .aoc-ul__unstyled .aoc-ul-title,
#aoc .aoc-post__content .aoc-sublist__dropdown .aoc-ul-title,
#aoc .aoc-post__content .aoc-nav-bar__sublist .aoc-ul-title,
#aoc .aoc-post__content .aoc-sidenav .aoc-sidenav__list .aoc-ul-title,
#aoc .aoc-sidenav .aoc-post__content .aoc-sidenav__list .aoc-ul-title,
#aoc .aoc-post__content .aoc-sidenav .aoc-sidenav__sublist .aoc-ul-title,
#aoc .aoc-sidenav .aoc-post__content .aoc-sidenav__sublist .aoc-ul-title,
#aoc .aoc-post__contact strong,
#aoc .aoc-center-content__subtitle--light,
#aoc .aoc-headers-h5,
#aoc h5,
#aoc .aoc-center-content__subtitle--bold,
#aoc .aoc-center-content__h3,
#aoc .aoc-accordion__header,
#aoc .aoc-headers-h4,
#aoc h4,
#aoc .aoc-headers-h3,
#aoc h3,
#aoc .results-header h3,
#aoc b,
#aoc strong,
#aoc .alrightsanscebold {
  font-family: "Alright Sans CE Bd", sans-serif;
  font-display: swap;
  font-style: normal;
  font-weight: normal;
}

#aoc .alrightsansmedium,
#aoc .icon-circle-arrow-left.previous-level:after,
#aoc .alrightsanscelightbold {
  font-family: "Alright Sans CE Lt Bd", sans-serif;
  font-display: swap;
  font-style: normal;
  font-weight: normal;
}

#aoc .alrightsansmediumitalic,
#aoc .alrightsanscelightbolditalic {
  font-family: "Alright Sans CE Lt Bd It", sans-serif;
  font-display: swap;
  font-style: italic;
  font-weight: normal;
}

#aoc .alrightsanslight,
#aoc .aoc-page-title,
#aoc .social-page-title .aoc-page-title,
#aoc .aoc-search-bar__input,
#aoc select,
#aoc textarea,
#aoc .input-text-wrapper input,
#aoc span.legend,
#aoc .aoc-header--subsite,
#aoc .aoc-slider__title,
#aoc .aoc-center-content__intro,
#aoc .aoc-headers-h1,
#aoc h1,
#aoc .alrightsanscelight {
  font-family: "Alright Sans CE Lt", sans-serif;
  font-display: swap;
  font-style: normal;
  font-weight: normal;
}

#aoc .alrightsanslightitalic,
#aoc .alrightsanscelightitalic {
  font-family: "Alright Sans CE Lt It", sans-serif;
  font-display: swap;
  font-style: italic;
  font-weight: normal;
}

#aoc html,
#aoc body,
#aoc div,
#aoc span,
#aoc applet,
#aoc object,
#aoc iframe,
#aoc h1,
#aoc h2,
#aoc h3,
#aoc h4,
#aoc h5,
#aoc h6,
#aoc p,
#aoc blockquote,
#aoc pre,
#aoc a,
#aoc abbr,
#aoc acronym,
#aoc address,
#aoc big,
#aoc cite,
#aoc code,
#aoc del,
#aoc dfn,
#aoc em,
#aoc img,
#aoc ins,
#aoc kbd,
#aoc q,
#aoc s,
#aoc samp,
#aoc small,
#aoc strike,
#aoc strong,
#aoc sub,
#aoc sup,
#aoc tt,
#aoc var,
#aoc b,
#aoc u,
#aoc i,
#aoc center,
#aoc fieldset,
#aoc form,
#aoc label,
#aoc legend,
#aoc table,
#aoc caption,
#aoc tbody,
#aoc tfoot,
#aoc thead,
#aoc tr,
#aoc th,
#aoc td,
#aoc article,
#aoc aside,
#aoc canvas,
#aoc details,
#aoc embed,
#aoc figure,
#aoc figcaption,
#aoc footer,
#aoc header,
#aoc hgroup,
#aoc menu,
#aoc nav,
#aoc output,
#aoc ruby,
#aoc summary,
#aoc time,
#aoc mark,
#aoc audio,
#aoc video {
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

#aoc html,
#aoc body {
  margin: 0;
  padding: 0;
}

#aoc body {
  font-family: "Alright Sans Light", sans-serif;
  color: #000;
  font-size: 17px;
}

#aoc a {
  color: inherit;
  text-decoration: none;
}

#aoc .aoc-primary-colors--light {
  background-color: #fff;
}

#aoc .aoc-primary-colors--medium-light {
  background-color: #ffffe6;
}

#aoc .aoc-primary-colors--medium {
  background-color: #D71920;
}

#aoc .aoc-primary-colors--medium-dark {
  background-color: #878787;
}

#aoc .aoc-primary-colors--dark {
  background-color: #000;
}

#aoc .aoc-footer--bg {
  background-color: #FDFAE9;
}

#aoc .aoc-footer--alt-bg {
  background-color: #d9eef8;
}

#aoc .aoc-schools-red {
  background-color: #D71920;
}

#aoc .aoc-blue {
  background-color: #1A568A;
}

#aoc .aoc-green {
  background-color: #73B564;
}

#aoc .aoc-headers-h1,
#aoc h1 {
  font-size: 3.2941176471em;
  margin: 0;
}

#aoc .aoc-headers-h2,
#aoc span.legend,
#aoc h2 {
  font-size: 1.6470588235em;
  margin: 0 0 8px 0;
}

#aoc .aoc-headers-h3,
#aoc h3,
#aoc .results-header h3 {
  font-size: 1.0588235294em;
  line-height: 22px;
  margin: 0;
}

#aoc .aoc-headers-h4,
#aoc h4 {
  font-size: 1.0588235294em;
  line-height: 22px;
  margin: 0 0 0.5882352941em;
  text-transform: uppercase;
}

#aoc .aoc-headers-h5,
#aoc h5 {
  margin: 0;
}

#aoc .aoc-link,
#aoc .portlet-body a {
  color: #008DD0;
  line-height: 19px;
}

#aoc .aoc-paragraph,
#aoc p {
  color: #000;
  font-size: 100%;
  line-height: 22px;
}

#aoc .aoc-ul__unstyled,
#aoc .aoc-sublist__dropdown,
#aoc .aoc-nav-bar__sublist,
#aoc .aoc-sidenav .aoc-sidenav__list,
#aoc .aoc-sidenav .aoc-sidenav__sublist,
#aoc .aoc-header__nav-bar,
#aoc .aoc-social-media,
#aoc .aoc-accordion {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}

#aoc .aoc-ul li,
#aoc ul li,
#aoc .aoc-ol li {
  line-height: 1.2941176471em;
  margin-bottom: 0.4705882353em;
}

#aoc .aoc-pagination {
  display: flex;
  margin-top: 0;
  width: 100%;
}

#aoc .aoc-pagination a {
  color: #fff;
}

#aoc .aoc-pagination .aoc-button,
#aoc .aoc-pagination .aoc-donate-button-container .aoc-donate-button,
#aoc .aoc-donate-button-container .aoc-pagination .aoc-donate-button,
#aoc .aoc-pagination button,
#aoc .aoc-pagination .icon-circle-arrow-left.previous-level:after,
#aoc .aoc-pagination .aoc-form__input--file + label {
  font-size: 1.2352941176em;
  margin-right: 0.7058823529em;
  min-width: 2.0588235294em;
  text-align: center;
}

@media screen and (max-width: 515px) {
  #aoc .aoc-pagination .aoc-button,
  #aoc .aoc-pagination .aoc-donate-button-container .aoc-donate-button,
  #aoc .aoc-donate-button-container .aoc-pagination .aoc-donate-button,
  #aoc .aoc-pagination button,
  #aoc .aoc-pagination .icon-circle-arrow-left.previous-level:after,
  #aoc .aoc-pagination .aoc-form__input--file + label {
    min-width: 1.4705882353em;
  }
}

#aoc .aoc-pagination a.aoc-button.selected,
#aoc .aoc-pagination .aoc-donate-button-container a.selected.aoc-donate-button,
#aoc .aoc-donate-button-container .aoc-pagination a.selected.aoc-donate-button,
#aoc .aoc-pagination a.selected.icon-circle-arrow-left.previous-level:after {
  opacity: 0.8;
}

#aoc .aoc-table-contracts {
  max-width: 600px;
  width: 100%;
}

#aoc .aoc-table-contracts tr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  transition: background 0.5s;
}

#aoc .aoc-table-contracts tr:first-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

#aoc .aoc-table-contracts tr:nth-child(2) {
  margin-top: 10px;
}

#aoc .aoc-table-contracts tr:hover {
  background: rgba(0, 0, 0, 0.1);
}

#aoc .aoc-table-contracts tr:hover:first-child {
  background: transparent;
}

#aoc .aoc-table-contracts tr td {
  min-height: 27px;
  padding-top: 5px;
  padding-bottom: 5px;
  vertical-align: bottom;
}

#aoc .aoc-table-contracts tr td:first-child {
  width: 65%;
  padding-left: 5px;
}

#aoc .aoc-table-contracts tr td:last-child {
  width: 32%;
  padding-right: 5px;
}

#aoc .aoc-accordion__container {
  border-bottom: 1px solid #ccc;
}

#aoc .aoc-accordion__container:first-of-type {
  border-top: 1px solid #ccc;
  margin: -1px;
}

#aoc .aoc-accordion__container.bio-summary,
#aoc .aoc-accordion__container.bio-summary:first-of-type {
  border: none;
}

#aoc .aoc-accordion__container--expanded .aoc-accordion__chevron {
  transition: transform 0.2s ease-in-out;
  transform: rotate(90deg);
}

#aoc .aoc-accordion__header {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 3.41176em;
}

#aoc .aoc-accordion__header a {
  width: 95%;
}

#aoc .aoc-accordion__chevron,
#aoc .aoc-accordion__close {
  color: #D71920;
  height: 1.1764705882em;
  width: 1.1764705882em;
}

#aoc .aoc-accordion__chevron {
  align-self: center;
  margin-left: auto;
  transition: transform 0.2s ease-in-out;
  margin-right: 0.5294117647em;
}

#aoc .aoc-accordion__close {
  cursor: pointer;
  position: absolute;
  bottom: -24px;
  right: 0.5294117647em;
}

#aoc .aoc-accordion__body {
  display: none;
  padding-right: 1.7647058824em;
  margin-bottom: 2.05882em;
  position: relative;
  /* span {
      line-height: 44px;
  }
  span p {
      margin: 0;
      padding: 0;
      &+p {
          margin-top: 44px;
      }
  } */
}

#aoc .aoc-center-content {
  width: 100%;
}

#aoc .aoc-center-content__intro {
  color: #4d4d4d;
  font-size: 1.4117647059em;
  line-height: normal;
  margin-bottom: 22px;
}

@media screen and (max-width: 1080px) {
  #aoc .aoc-center-content__intro {
    font-size: 18px;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-center-content__intro {
    font-size: 1.1764705882em;
  }
}

#aoc .aoc-center-content__h3 {
  margin: 14px 0;
}

#aoc .aoc-center-content p {
  line-height: normal;
}

#aoc .aoc-center-content__block {
  border-top: 1px solid #CCC;
  padding: 0.8235294118em 0;
  width: 100%;
}

@media screen and (max-width: 324px) {
  #aoc .aoc-center-content__block {
    padding-bottom: 0;
  }
}

#aoc .aoc-center-content__subtitle--bold {
  font-size: 1.4117647059em;
  line-height: normal;
  margin: 0.5882352941em 0 0.2352941176em 0;
}

@media screen and (max-width: 515px) {
  #aoc .aoc-center-content__subtitle--bold {
    margin-bottom: 0.5em;
  }
}

#aoc .aoc-center-content__subtitle--light,
#aoc .aoc-headers-h5,
#aoc h5 {
  color: #878787;
  font-size: 1.0588235294em;
}

#aoc .aoc-post__content {
  margin-top: 0.7058823529em;
}

#aoc .aoc-post__contact {
  margin-top: 0.7058823529em;
}

#aoc .aoc-article-1 {
  line-height: normal;
  overflow: hidden;
  width: 100%;
}

#aoc .aoc-article-1__img {
  display: block;
  float: left;
  height: auto;
  margin-bottom: 1.0588235294em;
  margin-right: 1.0588235294em;
  max-width: 100%;
  width: 300px;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-article-1__img {
    float: none;
  }
}

#aoc .aoc-article-1 p {
  margin-top: 0;
}

#aoc .aoc-article-2 {
  line-height: normal;
  overflow: hidden;
  width: 100%;
}

#aoc .aoc-article-2__img {
  display: block;
  height: auto;
  margin-bottom: 1.0588235294em;
  max-height: 30.1176470588em;
  max-width: 100%;
  width: 50%;
}

#aoc .aoc-bio-main {
  line-height: normal;
  overflow: hidden;
  width: 100%;
}

#aoc .aoc-bio-main__img {
  display: block;
  float: left;
  height: auto;
  margin-bottom: 1.0588235294em;
  margin-right: 1.0588235294em;
  max-width: 100%;
  width: 300px;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-bio-main__img {
    float: none;
  }
}

#aoc .aoc-bio-main p {
  margin-top: 0;
}

#aoc .aoc-bio {
  display: flex;
  overflow: hidden;
  width: 100%;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-bio {
    flex-direction: column;
  }
}

#aoc .aoc-bio__column {
  flex: 1 1 100%;
  margin-left: 1.7647058824em;
  margin-top: -0.1176470588em;
}

@media screen and (max-width: 560px) {
  #aoc .aoc-bio__column {
    flex: 1 1 auto;
    margin: 1.4705882353em 0 1.0588235294em 0;
  }
}

#aoc .aoc-bio__subtitle {
  font-size: 1.1176470588em;
  margin-top: 0;
}

#aoc .aoc-bio__img-wrap {
  width: 100%;
  max-width: 150px;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-bio__img-wrap {
    max-width: 100%;
  }
}

#aoc .aoc-bio__img {
  align-self: flex-start;
  display: block;
  max-width: 140px;
  width: auto;
}

#aoc .aoc-bio__content {
  margin: 1.1764705882em 0 0.5882352941em;
  line-height: normal;
}

#aoc .aoc-bio__content a {
  color: #008DD0;
}

#aoc .aoc-bio-2 h3 {
  margin-bottom: 14px;
  margin-top: 0;
}

#aoc .aoc-bio-2__images {
  display: flex;
  margin-top: 0.5882352941em;
  overflow: hidden;
  width: 100%;
}

#aoc .aoc-bio-2__images img:nth-child(2) {
  margin-left: 1.7647058824em;
}

#aoc .aoc-bio-2__content {
  margin-left: 0;
  margin-top: 1.0588235294em;
}

#aoc .aoc-bio-2__content .aoc-ul__unstyled,
#aoc .aoc-bio-2__content .aoc-sublist__dropdown,
#aoc .aoc-bio-2__content .aoc-nav-bar__sublist,
#aoc .aoc-bio-2__content .aoc-sidenav .aoc-sidenav__list,
#aoc .aoc-sidenav .aoc-bio-2__content .aoc-sidenav__list,
#aoc .aoc-bio-2__content .aoc-sidenav .aoc-sidenav__sublist,
#aoc .aoc-sidenav .aoc-bio-2__content .aoc-sidenav__sublist {
  margin-bottom: 1.0588235294em;
}

#aoc .aoc-bio-2__content .aoc-ul__unstyled.aoc-bio-2__info li,
#aoc .aoc-bio-2__content .aoc-bio-2__info.aoc-sublist__dropdown li,
#aoc .aoc-bio-2__content .aoc-bio-2__info.aoc-nav-bar__sublist li,
#aoc .aoc-bio-2__content .aoc-sidenav .aoc-bio-2__info.aoc-sidenav__list li,
#aoc .aoc-sidenav .aoc-bio-2__content .aoc-bio-2__info.aoc-sidenav__list li,
#aoc .aoc-bio-2__content .aoc-sidenav .aoc-bio-2__info.aoc-sidenav__sublist li,
#aoc .aoc-sidenav .aoc-bio-2__content .aoc-bio-2__info.aoc-sidenav__sublist li {
  margin-bottom: 0.4705882353em;
}

#aoc .aoc-bio-2__content h3 {
  margin-bottom: 10px;
}

#aoc .aoc-bio-2__content .aoc-ul__unstyled li,
#aoc .aoc-bio-2__content .aoc-sublist__dropdown li,
#aoc .aoc-bio-2__content .aoc-nav-bar__sublist li,
#aoc .aoc-bio-2__content .aoc-sidenav .aoc-sidenav__list li,
#aoc .aoc-sidenav .aoc-bio-2__content .aoc-sidenav__list li,
#aoc .aoc-bio-2__content .aoc-sidenav .aoc-sidenav__sublist li,
#aoc .aoc-sidenav .aoc-bio-2__content .aoc-sidenav__sublist li {
  margin-bottom: 0;
}

#aoc .aoc-bio-2 .aoc-accordion__qa-container {
  border-bottom: none;
}

#aoc .aoc-bio-2 .aoc-accordion__qa-container:first-of-type {
  border-top: none;
}

#aoc .aoc-directory-list .aoc-post {
  padding-bottom: 0.3529411765em;
}

#aoc .aoc-post__content .aoc-ul__unstyled,
#aoc .aoc-post__content .aoc-sublist__dropdown,
#aoc .aoc-post__content .aoc-nav-bar__sublist,
#aoc .aoc-post__content .aoc-sidenav .aoc-sidenav__list,
#aoc .aoc-sidenav .aoc-post__content .aoc-sidenav__list,
#aoc .aoc-post__content .aoc-sidenav .aoc-sidenav__sublist,
#aoc .aoc-sidenav .aoc-post__content .aoc-sidenav__sublist {
  line-height: 1.5294117647em;
}

#aoc .aoc-post__content .aoc-ul__unstyled a,
#aoc .aoc-post__content .aoc-sublist__dropdown a,
#aoc .aoc-post__content .aoc-nav-bar__sublist a,
#aoc .aoc-post__content .aoc-sidenav .aoc-sidenav__list a,
#aoc .aoc-sidenav .aoc-post__content .aoc-sidenav__list a,
#aoc .aoc-post__content .aoc-sidenav .aoc-sidenav__sublist a,
#aoc .aoc-sidenav .aoc-post__content .aoc-sidenav__sublist a {
  color: #008DD0;
}

#aoc .aoc-post__content .aoc-ul__unstyled .aoc-ul-title,
#aoc .aoc-post__content .aoc-sublist__dropdown .aoc-ul-title,
#aoc .aoc-post__content .aoc-nav-bar__sublist .aoc-ul-title,
#aoc .aoc-post__content .aoc-sidenav .aoc-sidenav__list .aoc-ul-title,
#aoc .aoc-sidenav .aoc-post__content .aoc-sidenav__list .aoc-ul-title,
#aoc .aoc-post__content .aoc-sidenav .aoc-sidenav__sublist .aoc-ul-title,
#aoc .aoc-sidenav .aoc-post__content .aoc-sidenav__sublist .aoc-ul-title {
  color: #000;
}

#aoc .aoc-post__content .aoc-ul__unstyled strong,
#aoc .aoc-post__content .aoc-sublist__dropdown strong,
#aoc .aoc-post__content .aoc-nav-bar__sublist strong,
#aoc .aoc-post__content .aoc-sidenav .aoc-sidenav__list strong,
#aoc .aoc-sidenav .aoc-post__content .aoc-sidenav__list strong,
#aoc .aoc-post__content .aoc-sidenav .aoc-sidenav__sublist strong,
#aoc .aoc-sidenav .aoc-post__content .aoc-sidenav__sublist strong {
  color: #878787;
}

#aoc .aoc-post__content .aoc-ul__unstyled,
#aoc .aoc-post__content .aoc-sublist__dropdown,
#aoc .aoc-post__content .aoc-nav-bar__sublist,
#aoc .aoc-post__content .aoc-sidenav .aoc-sidenav__list,
#aoc .aoc-sidenav .aoc-post__content .aoc-sidenav__list,
#aoc .aoc-post__content .aoc-sidenav .aoc-sidenav__sublist,
#aoc .aoc-sidenav .aoc-post__content .aoc-sidenav__sublist {
  margin-bottom: 1.1764705882em;
}

#aoc .aoc-post__content.radio-content {
  margin: 0.70588em 0;
}

#aoc .aoc-schedule {
  border-collapse: collapse;
  display: block;
  margin: 0 0 -1px 0;
  padding: 0;
  width: 100%;
}

#aoc .aoc-schedule tr {
  border-top: 1px solid #CCC;
}

#aoc .aoc-schedule tr:last-child {
  border-bottom: 1px solid #CCC;
}

#aoc .aoc-schedule td {
  padding: 0.5882352941em;
}

#aoc .aoc-schedule td.aoc-schedule-empty {
  border-top: 1px solid #fff;
}

#aoc .aoc-schedule td.aoc-schedule__date-time {
  min-width: 101px;
  padding-left: 0;
  white-space: nowrap;
}

@media screen and (max-width: 324px) {
  #aoc .aoc-schedule td.aoc-schedule__date-time {
    min-width: 70px;
  }
}

#aoc .aoc-schedule td.aoc-schedule__details {
  width: 100%;
}

#aoc .aoc-center-content__block.aoc-post div.aoc-post__content {
  margin-top: 0;
  margin-bottom: 0.2352941176em;
}

#aoc .aoc-post__content h3,
#aoc .aoc-post__content h3.aoc-center-content__subtitle--bold {
  line-height: normal;
  margin-bottom: 0.5882352941em;
  margin-top: 0;
}

#aoc .aoc-accordion__body .aoc-center-content__block.aoc-post:first-child {
  border-top: 0;
}

#aoc .aoc-statements {
  overflow: hidden;
  width: 100%;
  display: flex;
  overflow: hidden;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-statements {
    flex-direction: column;
  }
}

#aoc .aoc-statements__img {
  display: block;
  height: 100%;
  margin-right: 1.7647058824em;
  max-height: 180px;
  max-width: 100%;
  width: 140px;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-statements__img {
    float: none;
    margin: 1.4705882353em 0 0 0;
  }
}

#aoc .aoc-statements__column {
  margin-top: -0.1176470588em;
}

#aoc .aoc-statements__column h3.aoc-center-content__subtitle--bold {
  margin-top: 0;
}

#aoc .aoc-news-release-1 {
  overflow: hidden;
  width: 100%;
  display: flex;
  overflow: hidden;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-news-release-1 {
    flex-direction: column;
  }
}

#aoc .aoc-news-release-1__img {
  display: block;
  height: 100%;
  margin-right: 1.7647058824em;
  max-height: 180px;
  max-width: 100%;
  padding-bottom: 10px;
  width: 140px;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-news-release-1__img {
    float: none;
    margin: 1.4705882353em 0 0 0;
  }
}

#aoc .aoc-news-release-1__column {
  margin-top: -0.1176470588em;
}

#aoc .aoc-news-release-1__column h3.aoc-center-content__subtitle--bold {
  margin-top: 0;
}

#aoc .aoc-news .aoc-button,
#aoc .aoc-news .aoc-donate-button-container .aoc-donate-button,
#aoc .aoc-donate-button-container .aoc-news .aoc-donate-button,
#aoc .aoc-news button,
#aoc .aoc-news .icon-circle-arrow-left.previous-level:after,
#aoc .aoc-news .aoc-form__input--file + label {
  margin: 0.5882352941em 1.1764705882em 0 0;
}

#aoc .aoc-news__unordered-list {
  margin-left: 1.1764705882em;
  padding: 0;
}

#aoc .aoc-news__unordered-list li {
  margin-bottom: 0.9411764706em;
}

#aoc .aoc-news h3.aoc-center-content__subtitle--bold {
  margin-top: 0;
}

#aoc .aoc-news-release-2 .aoc-center-content__subtitle {
  margin-bottom: 18px;
}

#aoc .aoc-news-release-2 {
  border-top: none;
}

#aoc .aoc-news-release-2 img {
  height: auto;
  /* margin: 18px 0; */
  width: 100%;
}

@media screen and (min-width: 1025px) {
  #aoc .aoc-hero-banner-aapeal {
    margin-top: -18px;
  }
}

#aoc .aoc-hero-banner-aapeal .aoc-slider__title {
  overflow: hidden;
}

#aoc .aoc-hero-banner-aapeal .aoc-slider__title em {
  font-style: normal;
}

#aoc .aoc-hero-banner-aapeal .aoc-slider.owl-carousel h1.aoc-slider__title em {
  font-size: 42px;
  line-height: 48px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-hero-banner-aapeal .aoc-slider.owl-carousel h1.aoc-slider__title em {
    display: block;
    font-weight: 100;
    font-size: 24px !important;
    font-style: normal;
    line-height: 30px !important;
    margin-bottom: 0 !important;
  }
}

#aoc .aoc-hero-banner-aapeal .aoc-slider.owl-carousel h1.aoc-slider__title span {
  display: block;
  font-family: "Alright Sans CE Bd", sans-serif;
  font-size: 1.5rem;
  /* 18pt; */
  line-height: 24px;
  height: auto;
  max-width: 415px;
  margin-left: 0;
  margin-top: 15px;
}

#aoc .aoc-fcc-list {
  display: flex;
  list-style: none;
  margin: 18px auto 2.125rem auto;
  max-width: 1366px;
  /* 930px; */
  padding: 0;
  justify-content: space-between;
}

@media screen and (min-width: 1091px) {
  #aoc .aoc-fcc-list {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-fcc-list {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 960px) {
  #aoc .aoc-fcc-list {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  #aoc .aoc-fcc-list {
    flex-wrap: wrap;
    padding-left: 22px;
    padding-right: 22px;
  }
}

#aoc .aoc-fcc-list li {
  margin: 0 0 2.33rem 0;
  max-width: unset;
  padding: 0;
  width: calc(25% - 12px);
}

@media screen and (max-width: 960px) {
  #aoc .aoc-fcc-list li {
    max-width: max-content;
    width: calc(50% - 18px);
  }
}

@media screen and (max-width: 580px) {
  #aoc .aoc-fcc-list li {
    max-width: max-content;
    width: 100%;
  }
}

#aoc .aoc-fcc-list li .aoc-fcc-title-block {
  background-color: #D71920;
  background-position: center center;
  background-size: cover;
  color: #fff;
  margin-bottom: 1.75rem;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-fcc-list li .aoc-fcc-title-block {
    background-position: top center;
    padding-bottom: 66.66%;
  }
}

#aoc .aoc-fcc-list li .aoc-fcc-title-block h2 {
  font-size: 30px;
  line-height: 34px;
  left: 14px;
  margin: 0;
  position: absolute;
  top: 13px;
  width: calc(100% - 25px);
}

#aoc .aoc-fcc-list li .aoc-fcc-content-blurb {
  font-weight: 200;
  font-size: 1.166rem;
  line-height: 1.5rem;
  margin-bottom: 2.33rem;
}

#aoc .aoc-fcc-list li .aoc-fcc-link-block a {
  align-items: center;
  background-color: #0d5e7a;
  color: #fff;
  display: flex;
  font-size: 24px;
  font-family: "Alright Sans CE Bd", sans-serif;
  justify-content: center;
  margin: 0;
  min-height: 43px;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
}

#aoc .aoc-aapeal-tribute {
  font-weight: light;
  color: #000000;
  font-size: 2rem;
  line-height: 2.5rem;
  margin: 0 auto;
  max-width: 1366px;
  /* 930px; */
  padding-bottom: 2.125rem;
  padding-left: 50px;
  padding-right: 50px;
}

@media screen and (min-width: 1091px) {
  #aoc .aoc-aapeal-tribute {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-aapeal-tribute {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 768px) {
  #aoc .aoc-aapeal-tribute {
    padding-left: 22px;
    padding-right: 22px;
  }
}

#aoc .aoc-aapeal-tribute hr {
  height: 4px;
  background-color: #73b564;
  margin: 10px 0 0 0;
}

#aoc .aoc-aapeal-tribute h2 {
  font-family: "Alright Sans CE Bd", sans-serif;
  font-weight: 400;
  color: #73b564;
  font-size: 3rem;
  padding-top: 1.0625rem;
  margin-bottom: 1.3125rem;
}

@media screen and (min-width: 769px) {
  #aoc .aoc-aapeal-tribute h2 {
    font-size: 36px;
    line-height: 36px;
  }
}

@media screen and (max-width: 768px) {
  #aoc .aoc-aapeal-tribute h2 {
    font-size: 28px;
    line-height: 28px;
  }
}

#aoc .aoc-aapeal-tribute p {
  font-size: 24px;
  line-height: 30px;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-aapeal-tribute p {
    ffont-size: 18px;
    line-height: 24px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav {
    margin-top: 41px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-sidenav {
    margin-top: 20px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__list,
  #aoc .aoc-sidenav .aoc-sidenav__sublist {
    background-color: #fafafa;
  }
}

#aoc .aoc-sidenav .aoc-sidenav__sublist {
  padding-left: 0.8235294118em;
  display: none;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__sublist .aoc-sidenav__list li {
    margin-left: 0em;
    padding-left: 0em;
  }

  #aoc .aoc-sidenav .aoc-sidenav__sublist .aoc-sidenav__list li:last-child {
    border-bottom: none;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li.selected,
  #aoc .aoc-sidenav .aoc-sidenav__item__has-children > a:first-child {
    border-bottom: 2px solid #d7d7d7;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__list .aoc-sidenav__item__has-children {
    border-bottom: none;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__list .aoc-sidenav__item__has-children:first-child {
    border-top: 2px solid #d7d7d7;
  }
}

#aoc .aoc-sidenav .aoc-sidenav__list li a,
#aoc .aoc-sidenav .aoc-sidenav__sublist li a,
#aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a {
  background-color: transparent;
  color: #000;
  display: block;
  line-height: normal;
  margin: 0;
  padding: 0 0 0 0.8235294118em;
  text-decoration: none;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li a,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li a,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a {
    font-size: 1.2352941176em;
    line-height: normal;
    margin: 0;
    padding: 15px 30px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li a,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li a,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a {
    line-height: normal;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li a,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li a,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a {
    padding: 10px 10px;
  }
}

#aoc .aoc-sidenav .aoc-sidenav__list li a,
#aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a {
  padding: 0.4117647059em 1.5882352941em 0.2941176471em 0.8235294118em;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li a,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a {
    padding: 15px 30px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li a,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a {
    line-height: normal;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li a,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a {
    padding: 10px 10px;
  }
}

#aoc .aoc-sidenav .aoc-sidenav__sublist li:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}

#aoc .aoc-sidenav .aoc-sidenav__list li.selected > a:first-child,
#aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a,
#aoc .aoc-sidenav .aoc-sidenav__list li.selected:hover > a:first-child,
#aoc .aoc-sidenav .aoc-sidenav__list li:hover .aoc-sidenav__sublist li.selected a,
#aoc .aoc-sidenav .aoc-sidenav__list li.aoc-sidenav__item__has-children.aoc-sidenav__item__has-children--show .aoc-sidenav__sublist li.selected a:hover {
  background-color: #D71920;
  color: #fff;
  display: block;
}

#aoc .aoc-sidenav .aoc-sidenav__list li.selected .aoc-sidenav__sublist li.selected a {
  padding: 0 0 0 0.5882352941em;
}

#aoc .aoc-sidenav .aoc-sidenav__list li:hover .aoc-sidenav__sublist li a {
  background: transparent;
}

#aoc .aoc-sidenav .aoc-sidenav__list li a:hover,
#aoc .aoc-sidenav .aoc-sidenav__list li.aoc-sidenav__item__has-children.aoc-sidenav__item__has-children--show .aoc-sidenav__sublist li a:hover {
  background-color: #E8EEF3;
  color: #000;
  display: block;
  line-height: normal;
  margin: 0;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li a:hover,
  #aoc .aoc-sidenav .aoc-sidenav__list li.aoc-sidenav__item__has-children.aoc-sidenav__item__has-children--show .aoc-sidenav__sublist li a:hover {
    line-height: normal;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li a:hover,
  #aoc .aoc-sidenav .aoc-sidenav__list li.aoc-sidenav__item__has-children.aoc-sidenav__item__has-children--show .aoc-sidenav__sublist li a:hover {
    padding: 10px 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li a:hover,
  #aoc .aoc-sidenav .aoc-sidenav__list li.aoc-sidenav__item__has-children.aoc-sidenav__item__has-children--show .aoc-sidenav__sublist li a:hover {
    padding: 10px 10px;
  }
}

#aoc .aoc-sidenav .aoc-sidenav__list li.selected a:hover,
#aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a:hover {
  color: #fff;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__sublist li a {
    padding-left: 30px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-sidenav .aoc-sidenav__sublist li a {
    line-height: normal;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-sidenav .aoc-sidenav__sublist li a {
    padding: 10px 10px;
  }
}

@media screen and (max-width: 515px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li a:hover,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li a:hover {
    background-color: #fafafa;
  }
}

#aoc .aoc-sidenav .aoc-sidenav__list li.selected a:hover,
#aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a:hover {
  color: #000;
}

#aoc .aoc-sidenav .aoc-sidenav__item__has-children {
  position: relative;
  overflow: hidden;
}

#aoc .aoc-sidenav .aoc-sidenav__item__has-children:after {
  background-position: center center;
  background: url("img/arrow-next-gray.svg") no-repeat;
  color: #000;
  content: "";
  display: inline-block;
  height: 15px;
  position: absolute;
  right: 6px;
  top: 10px;
  width: 20px;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__item__has-children:after {
    right: 30px;
    top: 19px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-sidenav .aoc-sidenav__item__has-children:after {
    right: 20px;
    top: 16px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-sidenav .aoc-sidenav__item__has-children:after {
    right: 10px;
  }
}

#aoc .aoc-sidenav .aoc-sidenav__item__has-children--show:after {
  background: url("img/arrow-next-gray.svg") no-repeat;
  color: #000;
  content: "";
  display: inline-block;
  position: absolute;
  right: 8px;
  top: 12px;
  transform: rotate(90deg);
  width: 20px;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__item__has-children--show:after {
    right: 30px;
    top: 22px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-sidenav .aoc-sidenav__item__has-children--show:after {
    right: 20px;
    top: 19px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-sidenav .aoc-sidenav__item__has-children--show:after {
    right: 10px;
  }
}

#aoc .aoc-sidenav .aoc-sidenav__item__has-children .aoc-sidenav__sublist li {
  font-size: 1em;
}

#aoc .aoc-sidenav .aoc-sidenav__list li.selected.aoc-sidenav__item__has-children .aoc-sidenav__sublist,
#aoc .aoc-sidenav .aoc-sidenav__list li.aoc-sidenav__item__has-children--show .aoc-sidenav__sublist {
  display: block;
}

#aoc .aoc-sidenav .aoc-sidenav__item__has-children.selected .aoc-sidenav__sublist li a:hover {
  background-color: #E8EEF3;
}

#aoc .aoc-sidenav .aoc-sidenav__item__has-children:hover .aoc-sidenav__sublist li a {
  color: #000;
}

#aoc .aoc-sidenav .selected.aoc-sidenav__item__has-children:after {
  background: url("img/arrow-next.svg") no-repeat;
  right: 8px;
  top: 12px;
  transform: rotate(90deg);
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .selected.aoc-sidenav__item__has-children:after {
    right: 30px;
    top: 22px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-sidenav .selected.aoc-sidenav__item__has-children:after {
    right: 20px;
    top: 19px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-sidenav .selected.aoc-sidenav__item__has-children:after {
    right: 10px;
  }
}

#aoc .aoc-sidenav .selected.aoc-sidenav__item__has-children--show:after {
  background: url("img/arrow-next.svg") no-repeat;
  position: absolute;
  right: 6px;
  top: 10px;
  transform: rotate(0deg);
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .selected.aoc-sidenav__item__has-children--show:after {
    right: 30px;
    top: 19px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-sidenav .selected.aoc-sidenav__item__has-children--show:after {
    right: 20px;
    top: 16px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-sidenav .selected.aoc-sidenav__item__has-children--show:after {
    right: 10px;
  }
}

#aoc .aoc-form__input-field,
#aoc textarea:active,
#aoc textarea:focus,
#aoc .input-text-wrapper input:active,
#aoc .input-text-wrapper input {
  background-color: #fafafa;
  border: 1px solid #ccc;
  height: 44px;
  margin-bottom: 23px;
  padding: 10px;
  width: 100%;
  max-width: 704px;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

#aoc .aoc-form__input--file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

#aoc .aoc-form__input--file:focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}

#aoc .aoc-form__input-container {
  margin: 1em 0;
}

#aoc .aoc-form__input-field--text-area,
#aoc textarea {
  -webkit-border-radius: 0;
  background-color: #fafafa;
  border: 1px solid #ccc;
  height: auto;
  min-height: 176px;
  max-width: 100%;
  width: 100%;
}

#aoc .aoc-form__file-name-container {
  display: inline-block;
}

#aoc .aoc-form__input-field:active,
#aoc textarea:active,
#aoc textarea:focus,
#aoc .input-text-wrapper input:active,
#aoc .aoc-form__input-field:focus,
#aoc .input-text-wrapper input:focus,
#aoc .aoc-form__input-field.active,
#aoc .input-text-wrapper input.active {
  border-color: #D71920;
  box-shadow: none;
  outline: none;
}

#aoc .aoc-form__input-field--date {
  max-width: 288px;
  position: relative;
}

#aoc .aoc-form__input-field[type=date]::-webkit-inner-spin-button,
#aoc textarea[type=date]:active::-webkit-inner-spin-button,
#aoc textarea[type=date]:focus::-webkit-inner-spin-button,
#aoc .input-text-wrapper input[type=date]::-webkit-inner-spin-button {
  appearance: none;
  display: none;
}

#aoc .aoc-form__input-field[type=date]::-webkit-datetime-edit-text,
#aoc textarea[type=date]:active::-webkit-datetime-edit-text,
#aoc textarea[type=date]:focus::-webkit-datetime-edit-text,
#aoc .input-text-wrapper input[type=date]::-webkit-datetime-edit-text,
#aoc .aoc-form__input-field[type=date]::-webkit-datetime-edit-month-field,
#aoc textarea[type=date]:active::-webkit-datetime-edit-month-field,
#aoc textarea[type=date]:focus::-webkit-datetime-edit-month-field,
#aoc .input-text-wrapper input[type=date]::-webkit-datetime-edit-month-field,
#aoc .aoc-form__input-field[type=date]::-webkit-datetime-edit-day-field,
#aoc textarea[type=date]:active::-webkit-datetime-edit-day-field,
#aoc textarea[type=date]:focus::-webkit-datetime-edit-day-field,
#aoc .input-text-wrapper input[type=date]::-webkit-datetime-edit-day-field,
#aoc .aoc-form__input-field[type=date]::-webkit-datetime-edit-year-field,
#aoc textarea[type=date]:active::-webkit-datetime-edit-year-field,
#aoc textarea[type=date]:focus::-webkit-datetime-edit-year-field,
#aoc .input-text-wrapper input[type=date]::-webkit-datetime-edit-year-field {
  color: #ccc;
}

#aoc .aoc-form__input-field[type=date]::-webkit-inner-spin-button,
#aoc textarea[type=date]:active::-webkit-inner-spin-button,
#aoc textarea[type=date]:focus::-webkit-inner-spin-button,
#aoc .input-text-wrapper input[type=date]::-webkit-inner-spin-button {
  appearance: none;
  display: none;
}

#aoc .aoc-form__input-field[type=date]::-webkit-calendar-picker-indicator,
#aoc textarea[type=date]:active::-webkit-calendar-picker-indicator,
#aoc textarea[type=date]:focus::-webkit-calendar-picker-indicator,
#aoc .input-text-wrapper input[type=date]::-webkit-calendar-picker-indicator {
  background: transparent;
  border: 0;
  color: transparent;
  height: 100%;
  position: absolute;
  width: 100%;
}

#aoc .aoc-form__label,
#aoc label {
  line-height: 24px;
  margin-bottom: 9px;
  display: block;
}

#aoc .aoc-form__field-tip {
  margin-top: -10px;
}

#aoc .aoc-form__field-tip.parsley-error {
  color: #ff0000;
}

#aoc .parsley-maxwords {
  display: none;
}

#aoc .aoc-select-dropdown {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 704px;
  height: 44px;
  margin: 5px 0;
}

#aoc .aoc-select-dropdown.inactive {
  pointer-events: none;
}

#aoc .aoc-select-dropdown__text,
#aoc select {
  background-color: #fafafa;
  border: 1px solid #ccc;
  cursor: pointer;
  line-height: 44px;
  position: absolute;
  text-indent: 10px;
  width: 100%;
  color: #333;
}

#aoc .aoc-select-dropdown__text:after,
#aoc select:after {
  background: url("img/arrow-dropdown.svg") no-repeat;
  content: "";
  height: 16px;
  position: absolute;
  right: 10px;
  top: 14px;
  transform: none;
  width: 16px;
}

#aoc .aoc-select-dropdown__text--open {
  background-color: #e8e8e8;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) inset, 0 1px 0 rgba(255, 255, 255, 0.8);
  z-index: 2;
}

#aoc .aoc-select-dropdown__text--open:after {
  transform: rotate(90deg);
}

#aoc .aoc-select-dropdown__content a {
  color: #333;
}

#aoc .aoc-select-dropdown__toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0;
  height: 44px;
  margin: 0 0 0 1px;
  padding: 0;
  position: absolute;
  text-indent: -10px;
  top: 0;
  width: 100%;
  z-index: 10;
}

#aoc .aoc-select-dropdown__toggle:focus {
  outline: 0;
}

#aoc .aoc-select-dropdown__content {
  transition: all 0.25s ease;
  list-style-type: none;
  position: absolute;
  top: 32px;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  text-indent: 10px;
  line-height: 32px;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 100%;
  z-index: 100;
}

#aoc .aoc-select-dropdown__content a {
  display: block;
}

#aoc .aoc-select-dropdown__content a:hover {
  background: #d2dde7;
}

#aoc .aoc-select-dropdown__content--show {
  opacity: 1;
  visibility: visible;
  top: 46px;
}

#aoc .aoc-select-dropdown__toggle:hover ~ .aoc-select-dropdown__text,
#aoc .aoc-select-dropdown__toggle:hover ~ select {
  background-color: #e8e8e8;
}

#aoc .aoc-button,
#aoc .aoc-donate-button-container .aoc-donate-button,
#aoc button,
#aoc .icon-circle-arrow-left.previous-level:after,
#aoc .aoc-form__input--file + label {
  background-color: #878787;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.2352941176em;
  line-height: 100%;
  margin-right: 0.7058823529em;
  max-height: 44px;
  padding: 0.5882352941em 0.5882352941em 0.7058823529em;
  transition: 0.3s all;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

#aoc .aoc-button--submit {
  background-color: #1a568a;
}

#aoc .aoc-button:hover,
#aoc .aoc-donate-button-container .aoc-donate-button:hover,
#aoc button:hover,
#aoc .icon-circle-arrow-left.previous-level:hover:after,
#aoc .aoc-form__input--file + label:hover {
  opacity: 0.8;
}

#aoc .aoc-radio__fieldset {
  display: inline-block;
  margin: 20px 0;
  overflow: hidden;
  padding: 4px 0;
  width: 100%;
}

#aoc .aoc-radio {
  float: left;
  height: 35px;
  margin: 0 35px 0 0;
  position: relative;
  width: 35px;
}

#aoc .aoc-radio__inner-button {
  background: #1a568a;
}

#aoc .aoc-radio--approve .aoc-radio__input,
#aoc .aoc-radio--deny .aoc-radio__input {
  left: -999em;
  position: absolute;
  z-index: 1;
}

#aoc .aoc-radio--approve .aoc-radio__label,
#aoc .aoc-radio--deny .aoc-radio__label {
  cursor: pointer;
}

#aoc .aoc-radio--deny .aoc-radio__label .aoc-radio__outer-button,
#aoc .aoc-radio--approve .aoc-radio__label .aoc-radio__outer-button {
  background-color: #fff;
}

#aoc .aoc-radio--approve .aoc-radio__input + .aoc-radio__label .aoc-radio__inner-button,
#aoc .aoc-radio--deny .aoc-radio__input + .aoc-radio__label .aoc-radio__inner-button {
  border-radius: 100%;
  height: 24px;
  left: 5px;
  opacity: 0.5;
  position: relative;
  top: 5px;
  width: 24px;
}

#aoc .aoc-radio--approve .aoc-radio__input + .aoc-radio__label .aoc-radio__inner-button:after,
#aoc .aoc-radio--deny .aoc-radio__input + .aoc-radio__label .aoc-radio__inner-button:after {
  background-color: black;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 50%;
  position: relative;
  top: 4px;
  width: 50%;
}

#aoc .aoc-radio--approve .aoc-radio__input:checked + .aoc-radio__label .aoc-radio__inner-button,
#aoc .aoc-radio--deny .aoc-radio__input:checked + .aoc-radio__label .aoc-radio__inner-button {
  border-radius: 100%;
  position: relative;
  height: 24px;
  width: 24px;
  top: 5px;
  left: 5px;
  opacity: 1;
}

#aoc .aoc-radio--approve .aoc-radio__input:checked + .aoc-radio__label .aoc-radio__inner-button:after,
#aoc .aoc-radio--deny .aoc-radio__input:checked + .aoc-radio__label .aoc-radio__inner-button:after {
  background-color: black;
  content: "";
  display: inline-block;
  height: 50%;
  width: 50%;
  border-radius: 50%;
  position: relative;
  top: 4px;
}

#aoc .aoc-radio--approve .aoc-radio__outer-button,
#aoc .aoc-radio--deny .aoc-radio__outer-button {
  content: " ";
  display: inline-block;
  height: 36px;
  margin: -2px 8px 0 0;
  vertical-align: top;
  text-align: center;
  left: 0;
  width: 36px;
  position: absolute;
  z-index: 1;
}

#aoc input[type=checkbox] + label::before {
  background: white;
  border-radius: 2px;
  border: 1px solid #CCC;
  color: #000;
  content: "";
  font-size: 25px;
  display: inline-block;
  height: 36px;
  line-height: 24px;
  margin-right: 15px;
  text-indent: 6px;
  width: 36px;
}

#aoc input[type=checkbox]:checked + label::before {
  background: #fff url("img/check.png") no-repeat center center;
  color: #000;
  padding-top: 5px;
}

#aoc input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

#aoc .aoc-checkbox-label {
  font-size: 0;
}

#aoc .aoc-form__p--mt-0 {
  margin-top: 0;
}

#aoc input.parsley-error,
#aoc select.parsley-error,
#aoc textarea.parsley-error {
  color: #B94A48;
  background-color: #F2DEDE;
  border: 1px solid #EED3D7;
}

#aoc .parsley-errors-list.filled {
  opacity: 1;
}

#aoc .parsley-errors-list {
  color: #ff0000;
  margin: 2px 0 3px;
  padding: 0;
  list-style-type: none;
  font-size: 0.9em;
  line-height: 0.9em;
  margin-top: -10px;
  opacity: 0;
  transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}

#aoc .parsley-errors-list li {
  padding: 4px 0;
}

#aoc .aoc-slider {
  display: flex;
  flex-direction: column;
  height: auto;
  margin: 0;
  max-height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

#aoc .aoc-slider__slide {
  height: 512px;
  margin: 0;
  max-height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 5;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-slider__slide {
    height: 384px;
  }
}

@media screen and (max-width: 520px) {
  #aoc .aoc-slider__slide {
    min-height: 288px;
    height: auto;
  }
}

@media screen and (max-width: 320px) {
  #aoc .aoc-slider__slide {
    min-height: 192px;
  }
}

#aoc .aoc-slider__img-mobile {
  height: 100%;
  overflow: hidden;
  width: 100%;
}

@media screen and (max-width: 520px) {
  #aoc .aoc-slider__img-mobile {
    min-height: 288px;
    height: auto;
  }
}

@media screen and (max-width: 320px) {
  #aoc .aoc-slider__img-mobile {
    min-height: 192px;
    overflow: hidden;
    position: relative;
  }
}

#aoc .aoc-slider__caption {
  margin: 37px auto 0;
  max-width: 1366px;
  padding-left: 50px;
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-slider__caption {
    padding-left: 15px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-slider__caption {
    margin: 16px auto 0;
    padding-left: 30px;
  }
}

@media screen and (max-width: 520px) {
  #aoc .aoc-slider__caption {
    display: none;
  }
}

#aoc .aoc-slider__caption--mobile {
  display: none;
}

@media screen and (max-width: 520px) {
  #aoc .aoc-slider__caption--mobile {
    display: block;
    margin: 0 auto;
    padding: 15px 20px 10px 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-slider__caption--mobile {
    padding: 15px 10px 10px;
  }
}

#aoc .aoc-slider__title {
  color: #FFF;
  font-size: 56px;
  margin: 0;
  max-width: 52%;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 2;
}

@media screen and (max-width: 1080px) {
  #aoc .aoc-slider__title {
    font-size: 42px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-slider__title {
    font-size: 36px;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-slider__title {
    max-width: 70%;
  }
}

@media screen and (max-width: 520px) {
  #aoc .aoc-slider__title {
    color: #000;
    width: auto;
    max-width: 100%;
  }
}

@media screen and (max-width: 320px) {
  #aoc .aoc-slider__title {
    font-size: 28px;
  }
}

#aoc .aoc-slider a.aoc-slider__link {
  color: #FFF;
  display: inline-block;
  font-size: 19px;
  margin-top: 8px;
  max-width: 52%;
  text-decoration: none;
}

#aoc .aoc-slider a.aoc-slider__link:after {
  content: ">";
  display: inline-block;
  font-size: 18px;
  margin-left: 7px;
  position: relative;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-slider a.aoc-slider__link {
    background-color: #878787;
    padding: 12px 8px 8px;
    font-size: 21px;
    width: 100%;
    max-width: 131px;
    text-align: center;
  }

  #aoc .aoc-slider a.aoc-slider__link:after {
    display: none;
  }
}

#aoc .aoc-slider .slider-nav {
  height: 100%;
  opacity: 0.8;
  width: 70px;
  fill: #fff;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-slider .slider-nav {
    display: none;
  }
}

#aoc .slideshow-dark .slider-nav {
  fill: #a9a9a9;
}

#aoc .owl-controls {
  display: flex;
  flex-direction: column;
  height: 50%;
  justify-content: flex-start;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 200px;
  width: 100%;
}

#aoc .owl-prev,
#aoc .owl-next {
  pointer-events: auto;
}

#aoc .owl-prev {
  margin-left: -10px;
}

#aoc .owl-next {
  margin-right: -10px;
}

#aoc .owl-nav {
  display: none;
  align-items: center;
  background: none;
  height: 70px;
  top: 46%;
  justify-content: space-between;
  padding: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 1;
}

@media screen and (max-width: 1023px) {
  #aoc .owl-nav {
    top: 44%;
    height: 50px;
  }
}

#aoc .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

#aoc .owl-dots {
  align-self: flex-end;
  bottom: 2.8%;
  display: flex;
  height: auto;
  position: absolute;
  right: 70px;
  text-align: center;
}

@media screen and (max-width: 800px) {
  #aoc .owl-dots {
    bottom: 4.8%;
  }
}

@media screen and (max-width: 520px) {
  #aoc .owl-dots {
    bottom: 0;
    top: 230px;
    right: 20px;
    height: 40px;
  }
}

@media screen and (max-width: 320px) {
  #aoc .owl-dots {
    top: 140px;
    right: 10px;
  }
}

#aoc .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
  position: relative;
  width: 20px;
  margin: 0 10px;
  background-color: transparent;
}

@media screen and (max-width: 520px) {
  #aoc .owl-dots .owl-dot {
    margin: 0 12px;
  }
}

@media screen and (max-width: 320px) {
  #aoc .owl-dots .owl-dot {
    margin: 0 6px;
  }
}

#aoc .owl-dots .owl-dot span {
  -webkit-backface-visibility: visible;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #fff;
  border-radius: 30px;
  display: block;
  height: 24px;
  margin: 5px 7px;
  position: relative;
  transition: opacity 200ms ease;
  width: 24px;
}

#aoc .owl-dots .owl-dot span:hover:after {
  content: "";
  background-color: white;
  border-radius: 30px;
  height: 10px;
  left: 6px;
  position: absolute;
  top: 6px;
  width: 10px;
}

@media screen and (max-width: 520px) {
  #aoc .owl-dots .owl-dot span:hover:after {
    top: 6px;
    left: 6px;
  }
}

@media screen and (max-width: 520px) {
  #aoc .owl-dots .owl-dot span {
    width: 24px;
    height: 24px;
    margin: 0;
  }
}

@media screen and (max-width: 320px) {
  #aoc .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
  }
}

#aoc .owl-dots .owl-dot.active span,
#aoc .owl-dots .input-text-wrapper input.owl-dot:active span,
#aoc .input-text-wrapper .owl-dots input.owl-dot:active span {
  background: rgba(250, 250, 250, 0.9);
}

#aoc .aoc-header {
  padding: 0 0 11px;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header {
    padding-top: 11px;
  }
}

@media screen and (max-width: 515px) {
  #aoc .aoc-header {
    padding: 0;
  }
}

#aoc .aoc-header .aoc-social-media {
  margin: 0 1.8301610542%;
}

#aoc .aoc-header__language-select {
  align-items: center;
  background-color: #e5e5e5;
  display: flex;
  height: 32px;
  width: 100%;
}

#aoc .aoc-header__language-select div {
  margin: 0 auto;
  max-width: 1366px;
  padding: 0 50px;
  width: 100%;
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-header__language-select div {
    padding: 0 15px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header__language-select div {
    padding: 0 30px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header__language-select {
    display: none;
  }
}

#aoc .aoc-header__language {
  padding: 0 0.5882352941em;
}

#aoc .aoc-header__language:first-of-type {
  border-right: 1px solid #000;
  padding-left: 0;
}

#aoc .aoc-header__top-row {
  align-items: center;
  display: flex;
  margin: 1.1764705882em auto 2.0588235294em;
  max-width: 1366px;
  padding: 0 50px;
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-header__top-row {
    padding: 0 15px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header__top-row {
    padding: 14px 30px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header__top-row {
    padding: 10px 20px;
  }
}

@media screen and (max-width: 512px) {
  #aoc .aoc-header__top-row {
    padding: 5px 20px;
  }
}

@media screen and (max-width: 512px) {
  #aoc .aoc-header__top-row {
    padding: 5px 10px;
  }
}

#aoc .aoc-header__logo-container {
  display: flex;
  margin-right: auto;
}

#aoc .aoc-header__logo {
  height: 3.8235294118em;
  margin-right: 0.5882352941em;
  width: 27.4705882353em;
}

@media screen and (max-width: 1365px) {
  #aoc .aoc-header__logo {
    height: 2.8235294118em;
    width: 20.4117647059em;
  }
}

@media screen and (max-width: 515px) {
  #aoc .aoc-header__logo {
    height: 2.8235294118em;
    width: 13.8235294118em;
  }
}

#aoc .aoc-header__dropdown-link {
  appearance: none;
  background: transparent;
  border: none;
  color: #000;
  font-weight: normal;
  cursor: pointer;
  font-size: 0.8235294118em;
  text-align: left;
}

#aoc .aoc-header__dropdown-link:focus {
  outline: 0;
}

#aoc button.aoc-header__dropdown-link:hover {
  color: #D71920;
}

#aoc .other_sites_target--active {
  color: #D71920;
}

#aoc .aoc-social-media {
  display: flex;
  list-style: none;
}

#aoc .aoc-social-media__icon {
  display: inline-flex;
  height: 1.8823529412em;
  margin-right: 1em;
  width: 1.8823529412em;
}

@media screen and (max-width: 1365px) {
  #aoc .aoc-social-media__icon {
    height: 1.6470588235em;
    margin-right: 0.5882352941em;
    width: 1.6470588235em;
  }
}

#aoc .aoc-social-media ul li {
  padding-right: 10px;
}

#aoc .aoc-search-bar {
  display: flex;
}

#aoc .aoc-search-bar__input {
  appearance: none;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: none;
  border-top: 1px solid #ccc;
  background-color: #f2f2f2;
  height: 2.1176470588em;
  padding-left: 0.5882352941em;
  padding-top: 0.2352941176em;
  width: 8.8235294118em;
  box-shadow: none;
  border-radius: 0;
}

@media screen and (max-width: 800px) {
  #aoc .aoc-search-bar__input {
    height: 2.5882352941em;
  }
}

#aoc .aoc-search-bar__input:focus {
  outline: 0;
}

#aoc .aoc-search-bar__input::placeholder {
  color: #000;
  opacity: 1;
}

#aoc .aoc-search-bar__button {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  appearance: none;
  background: url("img/search-icon-md.png") no-repeat center center;
  background-size: 25px 25px;
  border-bottom: 1px solid #ccc;
  border-left: none;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  cursor: pointer;
  width: 2.0588235294em;
}

#aoc .aoc-search-bar__button:focus {
  outline: 0;
}

#aoc .aoc-top-nav {
  margin: 0 auto;
  max-width: 1366px;
  min-height: 34px;
  padding: 0 50px;
  position: relative;
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-top-nav {
    padding: 0 0.8823529412em;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-top-nav {
    min-height: 0;
    padding-bottom: 0;
  }
}

#aoc .aoc-header__nav-bar {
  display: flex;
  list-style: none;
}

#aoc .aoc-header__nav-bar-item {
  border-right: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  flex: 0 auto;
  font-size: 1em;
  justify-content: flex-end;
  min-width: 50px;
  padding: 0 1.0588235294em 0 0.4705882353em;
}

#aoc .aoc-header__nav-bar-item:first-of-type {
  padding-left: 0;
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  #aoc .aoc-header__nav-bar-item {
    font-size: 0.7647058824em;
    max-width: 90px;
  }
}

@media screen and (min-width: 1366px) {
  #aoc .aoc-header__nav-bar-item {
    max-width: 120px;
  }
}

@media screen and (min-width: 1023px) {
  #aoc .aoc-header__nav-bar-item {
    line-height: 19px;
  }
}

#aoc .aoc-header__nav-bar-item a:hover,
#aoc .aoc-header__nav-bar-item a:active {
  color: #D71920;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header__nav-bar-item a:hover,
  #aoc .aoc-header__nav-bar-item a:active {
    color: #fff;
  }
}

@media screen and (min-width: 1023px) {
  #aoc .aoc-header__nav-bar-item:hover .aoc-nav-bar__sublist-wrapper {
    display: block;
  }
}

#aoc .aoc-nav-bar__sublist-wrapper {
  margin-left: -9px;
  overflow: hidden;
  padding: 11px 0 0;
  position: absolute;
  top: 100%;
  transition: all 0.3s ease-in-out;
  min-width: 250px;
  z-index: 100;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #aoc .aoc-nav-bar__sublist-wrapper {
    top: auto;
  }
}

@media screen and (min-width: 1365px) {
  #aoc .aoc-nav-bar__sublist-wrapper {
    width: 300px;
  }
}

@media screen and (min-width: 1023px) {
  #aoc .aoc-nav-bar__sublist-wrapper {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-nav-bar__sublist-wrapper {
    max-height: 0;
    opacity: 0;
    transform: translateY(-2em);
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-nav-bar__sublist-wrapper.expand {
    max-height: 1500px;
    opacity: 1;
    transform: translateY(0%);
  }
}

#aoc .aoc-nav-bar__sublist {
  background: hsla(358, 79%, 47%, 0.85);
  padding: 11px 0;
}

#aoc .aoc-nav-bar__sub-item {
  padding: 2px 0;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-nav-bar__sub-item {
    padding: 0;
  }
}

#aoc .aoc-nav-bar__sub-item,
#aoc .aoc-sublist__dropdown-item {
  line-height: 14px;
}

#aoc .aoc-nav-bar__sub-item a,
#aoc .aoc-sublist__dropdown-item a {
  color: #fff;
  display: inline-block;
  padding: 0 12px;
}

@media screen and (min-width: 1023px) {
  #aoc .aoc-nav-bar__sub-item a,
  #aoc .aoc-sublist__dropdown-item a {
    line-height: 19px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-nav-bar__sub-item a,
  #aoc .aoc-sublist__dropdown-item a {
    line-height: 25px;
    padding: 8px 30px 0 25px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-nav-bar__sub-item a,
  #aoc .aoc-sublist__dropdown-item a {
    line-height: 25px;
    padding: 8px 20px 0;
  }
}

#aoc .aoc-nav-bar__sub-item .aoc-sublist__sub-item-link,
#aoc .aoc-sublist__dropdown-item .aoc-sublist__sub-item-link {
  display: block;
  padding: 4px 0;
}

#aoc .aoc-nav-bar__sub-item .aoc-sublist__sub-item-link:hover,
#aoc .aoc-sublist__dropdown-item .aoc-sublist__sub-item-link:hover {
  background: #EF010D;
}

#aoc .aoc-nav-bar__sub-item .aoc-sublist__sub-item-link a:first-child,
#aoc .aoc-sublist__dropdown-item .aoc-sublist__sub-item-link a:first-child {
  width: 90%;
}

#aoc .aoc-sublist__dropdown-item {
  padding: 4px 0;
}

#aoc .aoc-sublist__trigger {
  display: none;
  height: 0;
  position: absolute;
  right: 0;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sublist__trigger {
    display: inline-block;
    right: 0;
    position: absolute;
  }
}

#aoc .aoc-nav-bar__chevron {
  color: #fff;
  height: 0.5882352941em;
  width: 0.5882352941em;
}

#aoc .aoc-nav-bar__chevron.rotate {
  transform: rotate(90deg);
  transition: transform 0.2s ease-in-out;
}

#aoc .aoc-nav-bar__sub-item--dropdown {
  position: relative;
}

#aoc .aoc-nav-bar__sub-item a:hover {
  background: #EF010D;
  color: #fff;
  display: inline-block;
}

#aoc .aoc-sublist__dropdown {
  max-height: 0;
  opacity: 0;
  padding-left: 12px;
  transform: translateY(-2em);
  transition: all 0.3s ease-in-out 0s;
  visibility: hidden;
  z-index: -1;
}

#aoc .aoc-sublist__dropdown.expand {
  max-height: 1500px;
  opacity: 1;
  transform: translateY(0%);
  transition: all 0.3s ease-in-out 0s;
  visibility: visible;
  z-index: 1;
}

#aoc .aoc-sublist__dropdown-item:hover {
  background: #EF010D;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__top-row {
    margin: 0;
  }
}

#aoc .aoc-header .aoc-header__menu-button {
  color: #999;
  cursor: pointer;
  margin-left: auto;
  transition: color 0.3s ease-in-out;
  width: 3.1764705882em;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__menu-button {
    height: 2.8235294118em;
    width: 1.5em;
  }
}

@media screen and (max-width: 515px) {
  #aoc .aoc-header .aoc-header__menu-button {
    height: 1.5em;
  }
}

#aoc .aoc-header .aoc-header__menu-button.aoc-header__menu-button--open {
  color: #D71920;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar {
    background: rgba(215, 25, 31, 0.85);
    color: #fff;
    flex-direction: column;
    font-size: 21px;
    max-height: 0;
    line-height: 43px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    right: 0;
    transition: max-height 0.3s ease-in-out;
    width: 506px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar.aoc-header__nav-bar--open {
    margin-top: 11px;
    max-height: 1500px;
    line-height: 41px;
  }
}

@media screen and (max-width: 515px) {
  #aoc .aoc-header .aoc-header__nav-bar.aoc-header__nav-bar--open {
    margin-top: 0;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header .aoc-header__nav-bar {
    width: 100%;
  }

  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__trigger {
    right: 0;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-header__nav-bar-item {
    padding: 0;
    line-height: 41px;
    min-height: 41px;
  }
}

#aoc .aoc-header .aoc-header__nav-bar .aoc-header__nav-bar-item .aoc-header__nav-bar-link .aoc-nav-bar__chevron {
  margin: 0 30px;
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-header__nav-bar-item .aoc-header__nav-bar-link .aoc-nav-bar__chevron {
    margin: 0 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-header__nav-bar-item .aoc-header__nav-bar-link .aoc-nav-bar__chevron {
    margin-right: 10px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-header__nav-bar-item .aoc-header__nav-bar-link {
    border-bottom: 2px solid #df525a;
    padding: 0 21px;
  }

  #aoc .aoc-header .aoc-header__nav-bar .aoc-header__nav-bar-item .aoc-header__nav-bar-link:hover {
    color: #fff;
    background: #EF010D;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-header__nav-bar-item .aoc-header__nav-bar-link {
    padding: 0 15px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-header__nav-bar-item .aoc-header__nav-bar-link {
    padding: 0 10px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-nav-bar__sublist-wrapper {
    margin-left: 0;
    padding: 0;
    position: relative;
    width: auto;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-nav-bar__sublist {
    background: transparent;
    padding: 0;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-header__nav-bar-item,
  #aoc .aoc-header .aoc-header__nav-bar .aoc-nav-bar__sub-item--dropdown {
    line-height: 41px;
    min-height: 41px;
    overflow: hidden;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__sub-item-link,
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__dropdown-item,
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__dropdown-item-link {
    line-height: 41px;
    min-height: 41px;
    padding: 0 19px;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__sub-item-link,
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__dropdown-item,
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__dropdown-item-link {
    padding: 0 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__sub-item-link,
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__dropdown-item,
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__dropdown-item-link {
    padding: 0 10px;
  }
}

#aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__sub-item-link {
  width: 100%;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-nav-bar__sub-item {
    border-bottom: 2px solid #df525a;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__sub-item-link {
    padding: 0 0.5238095238em;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__dropdown-item {
    border-bottom: 2px solid #df525a;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__dropdown-item:last-of-type {
    border-bottom: 0;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-header .aoc-header__nav-bar .aoc-sublist__dropdown-item-link {
    line-height: 25px;
    padding: 0.4705882353em 1.1764705882em 0;
  }
}

#aoc .aoc-header__site-menu {
  background: rgba(215, 25, 31, 0.85);
  color: #fff;
  display: none;
  font-size: 1em;
  padding: 1em 0;
  position: absolute;
  width: 100%;
  z-index: 500;
}

#aoc .aoc-header__site-menu div {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header__site-menu {
    margin-top: 11px;
  }
}

@media screen and (max-width: 515px) {
  #aoc .aoc-header__site-menu {
    margin-top: 0;
  }
}

#aoc .aoc-header__site-menu-list {
  margin: 0;
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-header__site-menu-list {
    padding: 0 15px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header__site-menu-list {
    margin: 0 auto;
    padding: 0;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header__site-menu-list {
    margin: 0;
  }
}

#aoc .aoc-header__site-menu-item {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 31.7615656014%;
  cursor: pointer;
  font-size: 0.8235294118em;
  line-height: 19px;
  padding: 4px 8px;
}

#aoc .aoc-header__site-menu-item:last-child {
  margin-right: 0;
}

#aoc .aoc-header__site-menu-item:nth-child(3n) {
  margin-right: 0;
}

#aoc .aoc-header__site-menu-item:nth-child(3n+1) {
  clear: left;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header__site-menu-item {
    cursor: pointer;
    float: none;
    font-size: 21px;
    line-height: 25px;
    min-height: 41px;
    padding: 8px 30px;
    width: 90%;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header__site-menu-item {
    line-height: 25px;
    min-height: 41px;
    padding: 9px 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-header__site-menu-item {
    padding: 9px 10px;
    margin-bottom: 0;
  }
}

#aoc .aoc-header__site-menu-item:last-of-type {
  margin-right: 0;
}

#aoc .aoc-header__site-menu-item:hover {
  background: #EF010D;
}

#aoc .aoc-header__site-menu-close {
  color: #fff;
  cursor: pointer;
  height: 20px;
  margin-right: 50px;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-header__site-menu-close {
    margin-right: 15px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header__site-menu-close {
    margin-right: 30px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header__site-menu-close {
    margin-right: 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-header__site-menu-close {
    margin-right: 10px;
  }
}

#aoc .aoc-search-social-mobile {
  display: none;
  margin-top: 20px;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-search-social-mobile {
    display: flex;
    padding: 0 30px;
    width: 100%;
    justify-content: space-between;
  }

  #aoc .aoc-search-social-mobile .aoc-social-media li:last-child .aoc-social-media__icon {
    margin-right: 0;
  }

  #aoc .aoc-search-social-mobile .aoc-search-bar {
    margin-right: 1.4117647059em;
    height: 2.58824em;
    width: 40%;
  }

  #aoc .aoc-search-social-mobile .aoc-search-bar__input {
    height: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 1023px) and (max-width: 1023px) {
  #aoc .aoc-search-social-mobile .aoc-search-bar__button {
    height: 2.5882352941em;
    width: 2.5882352941em;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-search-social-mobile .aoc-social-media__icon {
    display: inline-flex;
    height: 2em;
    margin-right: 1.4117647059em;
    width: 2em;
  }
}

@media screen and (max-width: 1023px) and (max-width: 1023px) {
  #aoc .aoc-search-social-mobile .aoc-social-media__icon {
    width: 2.5882352941em;
    height: 2.5882352941em;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-search-social-mobile {
    padding: 0 20px;
  }
}

@media screen and (max-width: 580px) {
  #aoc .aoc-search-social-mobile {
    flex-direction: column;
    justify-content: space-around;
    min-height: 120px;
    padding: 0 20px;
  }

  #aoc .aoc-search-social-mobile .aoc-search-bar,
  #aoc .aoc-search-social-mobile .aoc-search-bar__input {
    width: 100%;
  }

  #aoc .aoc-search-social-mobile .aoc-social-media {
    margin-top: 1.0588235294em;
  }
}

@media screen and (max-width: 375px) {
  #aoc .aoc-search-social-mobile .aoc-social-media__icon {
    width: 2.4em;
    margin-right: 1em;
  }
}

@media screen and (max-width: 320px) {
  #aoc .aoc-search-social-mobile {
    padding: 0 10px;
  }

  #aoc .aoc-search-social-mobile .aoc-social-media__icon {
    width: 2em;
    margin-right: 0.7em;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #aoc .aoc-pub-header__top-row a {
    display: block;
  }
}

#aoc .aoc-header.aoc-header--subsite {
  padding: 0;
}

#aoc .aoc-header--subsite {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#aoc .aoc-header--subsite__logo {
  margin: 1.1764705882em 0em;
}

@media screen and (max-width: 515px) {
  #aoc .aoc-header--subsite__logo {
    margin: 0.5882352941em 0em;
  }
}

#aoc .aoc-header--subsite__top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1366px;
  padding: 0 50px;
  width: 100%;
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-header--subsite__top {
    padding: 0 15px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header--subsite__top {
    padding: 0 30px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header--subsite__top {
    padding: 0 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-header--subsite__top {
    padding: 0 10px;
  }
}

#aoc .aoc-header--subsite__links {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1366px;
  padding: 0 50px 11px;
  width: 100%;
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-header--subsite__links {
    padding: 0 15px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header--subsite__links {
    padding: 0;
  }
}

#aoc .aoc-header--subsite__links .aoc-top-nav {
  margin: 0;
  padding: 0;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header--subsite__links .aoc-top-nav .aoc-header__nav-bar.aoc-header__nav-bar--open {
    margin-top: 0;
  }
}

@media screen and (min-width: 1365px) {
  #aoc .aoc-header--subsite__links .aoc-top-nav .aoc-header__nav-bar-item {
    max-width: 136px;
    min-width: 120px;
  }
}

@media screen and (max-width: 1365px) {
  #aoc .aoc-header--subsite__links .aoc-top-nav .aoc-header__nav-bar-item {
    max-width: 109px;
    min-width: 90px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header--subsite__links .aoc-top-nav .aoc-header__nav-bar-item {
    max-width: 100%;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header--subsite__search {
    padding: 0;
  }
}

#aoc .aoc-header--subsite .aoc-header__nav-bar {
  min-height: 34px;
  padding: 0;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header--subsite .aoc-header__nav-bar {
    min-height: 0;
  }
}

#aoc .aoc-header--subsite .aoc-social-media {
  margin-right: 0;
}

#aoc .aoc-header--subsite .aoc-social-media li:last-child .aoc-social-media__icon {
  margin-right: 0;
}

#aoc .aoc-header--subsite__subtitle {
  background-color: #008ccf;
  width: 100%;
  margin-bottom: 1.05882em;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header--subsite__subtitle {
    margin: 0;
  }
}

#aoc .aoc-header--subsite__subtitle h2 {
  align-items: center;
  color: #fff;
  font-size: 1.6470588235em;
  height: 58px;
  line-height: 64px;
  margin: 0 auto;
  max-width: 1366px;
  padding: 0 50px;
  text-transform: uppercase;
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-header--subsite__subtitle h2 {
    padding: 0 15px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header--subsite__subtitle h2 {
    margin: 0;
    padding: 0 30px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header--subsite__subtitle h2 {
    font-size: 1.2352941176em;
    height: 44px;
    line-height: 50px;
    padding: 0 20px;
  }
}

@media screen and (max-width: 580px) {
  #aoc .aoc-header--subsite__subtitle h2 {
    font-size: 1.1764705882em;
    height: auto;
    line-height: 120%;
    min-height: 44px;
    padding: 10px 20px;
  }
}

#aoc .aoc-footer {
  color: #1c1c1b;
  font-size: 0.8823529412em;
  margin-top: 48px;
  padding: 1.38em 0;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-footer {
    font-size: 0.7647058824em;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-footer {
    font-size: 1em;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-footer {
    height: auto;
    padding: 1em;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-footer {
    padding: 1em 10px;
  }
}

#aoc .aoc-footer div.row {
  display: flex;
  margin: 0 auto;
  max-width: 1366px;
  padding: 0 50px;
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-footer div.row {
    padding: 0 0.8823529412em;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-footer div.row {
    padding: 0 30px;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-footer div.row {
    justify-content: space-between;
    margin: 0;
    width: 100%;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-footer div.row {
    padding: 0 20px;
  }
}

@media screen and (max-width: 515px) {
  #aoc .aoc-footer div.row {
    flex-direction: column;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-footer div.row {
    padding: 0;
  }
}

#aoc .aoc-footer__col {
  margin: 0 24px;
  width: 184px;
}

@media screen and (max-width: 1200px) {
  #aoc .aoc-footer__col {
    width: auto;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-footer__col {
    margin: 0 auto;
    width: 100%;
  }
}

#aoc .aoc-footer__one-half {
  display: flex;
}

#aoc .aoc-footer__one-half .aoc-footer__col:first-child {
  width: auto;
  white-space: nowrap;
  margin-left: 0;
}

@media screen and (max-width: 800px) {
  #aoc .aoc-footer__one-half {
    flex-direction: column;
    margin-right: 15px;
  }

  #aoc .aoc-footer__one-half .aoc-footer__col:first-child {
    width: auto;
    min-width: none;
  }

  #aoc .aoc-footer__one-half .aoc-footer__col {
    margin: 0;
  }

  #aoc .aoc-footer__one-half .aoc-footer__col:nth-child(2) {
    margin-top: 16px;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-footer__one-half {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-footer__one-half {
    width: 80%;
  }
}

#aoc .aoc-footer__second-half {
  display: flex;
}

@media screen and (max-width: 515px) {
  #aoc .aoc-footer__second-half {
    margin-top: 14px;
  }
}

#aoc .aoc-footer__second-half .aoc-footer__col {
  width: auto;
}

@media screen and (max-width: 800px) {
  #aoc .aoc-footer__second-half .aoc-footer__col {
    flex-direction: column;
    display: flex;
  }
}

#aoc .aoc-footer__second-half .aoc-ul__unstyled,
#aoc .aoc-footer__second-half .aoc-sidenav .aoc-sidenav__list,
#aoc .aoc-sidenav .aoc-footer__second-half .aoc-sidenav__list,
#aoc .aoc-footer__second-half .aoc-sidenav .aoc-sidenav__sublist,
#aoc .aoc-sidenav .aoc-footer__second-half .aoc-sidenav__sublist,
#aoc .aoc-footer__second-half .aoc-nav-bar__sublist,
#aoc .aoc-footer__second-half .aoc-sublist__dropdown {
  column-count: 2;
  column-gap: 20px;
}

@media screen and (max-width: 800px) {
  #aoc .aoc-footer__second-half .aoc-ul__unstyled,
  #aoc .aoc-footer__second-half .aoc-sidenav .aoc-sidenav__list,
  #aoc .aoc-sidenav .aoc-footer__second-half .aoc-sidenav__list,
  #aoc .aoc-footer__second-half .aoc-sidenav .aoc-sidenav__sublist,
  #aoc .aoc-sidenav .aoc-footer__second-half .aoc-sidenav__sublist,
  #aoc .aoc-footer__second-half .aoc-nav-bar__sublist,
  #aoc .aoc-footer__second-half .aoc-sublist__dropdown {
    column-count: 0;
    column-gap: 0;
    display: flex;
    flex-direction: column;
  }
}

#aoc .aoc-footer__second-half .aoc-ul__unstyled .aoc-footer-nav__item:nth-child(4),
#aoc .aoc-footer__second-half .aoc-sidenav .aoc-sidenav__list .aoc-footer-nav__item:nth-child(4),
#aoc .aoc-sidenav .aoc-footer__second-half .aoc-sidenav__list .aoc-footer-nav__item:nth-child(4),
#aoc .aoc-footer__second-half .aoc-sidenav .aoc-sidenav__sublist .aoc-footer-nav__item:nth-child(4),
#aoc .aoc-sidenav .aoc-footer__second-half .aoc-sidenav__sublist .aoc-footer-nav__item:nth-child(4),
#aoc .aoc-footer__second-half .aoc-nav-bar__sublist .aoc-footer-nav__item:nth-child(4),
#aoc .aoc-footer__second-half .aoc-sublist__dropdown .aoc-footer-nav__item:nth-child(4) {
  /* margin-top: -12px;
  */
}

@media screen and (max-width: 800px) {
  #aoc .aoc-footer__second-half .aoc-ul__unstyled .aoc-footer-nav__item:nth-child(4),
  #aoc .aoc-footer__second-half .aoc-sidenav .aoc-sidenav__list .aoc-footer-nav__item:nth-child(4),
  #aoc .aoc-sidenav .aoc-footer__second-half .aoc-sidenav__list .aoc-footer-nav__item:nth-child(4),
  #aoc .aoc-footer__second-half .aoc-sidenav .aoc-sidenav__sublist .aoc-footer-nav__item:nth-child(4),
  #aoc .aoc-sidenav .aoc-footer__second-half .aoc-sidenav__sublist .aoc-footer-nav__item:nth-child(4),
  #aoc .aoc-footer__second-half .aoc-nav-bar__sublist .aoc-footer-nav__item:nth-child(4),
  #aoc .aoc-footer__second-half .aoc-sublist__dropdown .aoc-footer-nav__item:nth-child(4) {
    margin-top: 0;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-footer__second-half .aoc-footer__col:first-child {
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-footer__second-half {
    flex-direction: column;
    justify-content: space-around;
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-footer__second-half {
    justify-content: space-between;
    width: 35%;
  }
}

@media screen and (max-width: 375px) {
  #aoc .aoc-footer__second-half {
    margin-top: 16px;
    width: auto;
  }
}

#aoc .aoc-footer__second-half .aoc-footer__col {
  min-width: 184px;
  width: auto;
}

#aoc .aoc-footer__second-half .aoc-footer__col ul {
  -moz-column-count: 2;
  -webkit-column-count: 2;
  column-count: 2;
}

#aoc .aoc-footer__second-half .aoc-footer__col ul li {
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
  display: block;
  min-width: 184px;
  page-break-inside: avoid;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-footer__second-half .aoc-footer__col ul li {
    min-width: 112px;
  }
}

#aoc .aoc-footer-nav__item {
  margin-bottom: 0;
  padding-bottom: 12px;
}

#aoc .aoc-footer-nav__item a {
  color: #1c1c1b;
  text-decoration: none;
}

#aoc .aoc-footer-nav__item a:hover {
  color: #666;
}

#aoc .aoc-subpage-banner {
  background-image: url("http:/placehold.it/1400x300?text=image");
  background-position: top left;
  background-repeat: repeat-x;
  background-size: cover;
  display: flex;
  height: auto;
  margin-bottom: 24px;
  min-height: 84px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-subpage-banner {
    margin-bottom: 14px;
  }
}

#aoc .aoc-subpage-banner div {
  margin: 0 auto;
  max-width: 1366px;
  padding: 0 50px;
  width: 100%;
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-subpage-banner div {
    padding: 0 15px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-subpage-banner div {
    padding: 0 30px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-subpage-banner div {
    padding: 0 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-subpage-banner div {
    padding: 0 10px;
  }
}

@media screen and (max-width: 800px) {
  #aoc .aoc-subpage-banner {
    min-height: 66px;
  }
}

@media screen and (max-width: 512px) {
  #aoc .aoc-subpage-banner {
    padding-bottom: 9px;
  }
}

@media screen and (max-width: 320px) {
  #aoc .aoc-subpage-banner {
    min-height: 44px;
  }
}

#aoc .aoc-subpage-banner__title {
  bottom: 9px;
  color: #fff;
  font-size: 2.7647058824em;
  font-weight: normal;
  line-height: 47px;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 2;
}

@media screen and (max-width: 800px) {
  #aoc .aoc-subpage-banner__title {
    bottom: 0;
    font-size: 2.1176470588em;
    margin-bottom: 0;
    margin-top: 15px;
    position: relative;
    top: 0;
  }
}

@media screen and (max-width: 512px) {
  #aoc .aoc-subpage-banner__title {
    line-height: 37px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-subpage-banner__title {
    font-size: 1.4117647059em;
    line-height: 30px;
  }
}

#aoc .aoc-thumbnails {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 1366px;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
}

@media only screen and (max-width: 1023px) {
  #aoc .aoc-thumbnails {
    padding: 2% 30px 3%;
  }
}

@media only screen and (max-width: 799px) {
  #aoc .aoc-thumbnails {
    padding: 2% 20px 3%;
  }
}

#aoc .aoc-thumbnails__thumbnail {
  flex: 1 0 14.1%;
  font-size: 0;
  margin: 9px 1.4% 0 0;
  max-width: 15.46%;
}

#aoc .aoc-thumbnails__thumbnail:nth-child(6n+6) {
  margin-right: 0;
}

@media only screen and (max-width: 1023px) {
  #aoc .aoc-thumbnails__thumbnail {
    flex: 1 0 29.5%;
    max-width: 32.4%;
    margin-right: 1.3%;
  }

  #aoc .aoc-thumbnails__thumbnail:nth-child(6) {
    margin-right: 1.3%;
  }

  #aoc .aoc-thumbnails__thumbnail:nth-child(3n+3) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 600px) {
  #aoc .aoc-thumbnails__thumbnail {
    flex: 1 0 32%;
    max-width: 48.2%;
    margin-right: 3.2%;
  }

  #aoc .aoc-thumbnails__thumbnail:nth-child(3n+3) {
    margin-right: 3.2%;
  }

  #aoc .aoc-thumbnails__thumbnail:nth-child(2n+2) {
    margin-right: 0;
  }
}

#aoc .aoc-thumbnails__img {
  max-width: 100%;
  width: 100%;
}

#aoc .aoc-thumbnails-vertical__wrapper {
  width: 20%;
  height: 100%;
}

@media only screen and (max-width: 1023px) {
  #aoc .aoc-thumbnails-vertical__wrapper {
    width: 100%;
  }
}

#aoc .aoc-thumbnails-vertical {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

#aoc .aoc-thumbnails-vertical:before {
  content: normal;
}

#aoc .aoc-thumbnails-vertical:after {
  content: normal;
}

@media only screen and (max-width: 1023px) {
  #aoc .aoc-thumbnails-vertical {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

#aoc .aoc-thumbnails-vertical__thumbnail {
  flex: 1 0 auto;
  font-size: 0;
  margin: 9px 1.4% 0 0;
  width: 100%;
}

#aoc .aoc-thumbnails-vertical__thumbnail:before {
  content: normal;
}

#aoc .aoc-thumbnails-vertical__thumbnail:after {
  content: normal;
}

@media only screen and (max-width: 1023px) {
  #aoc .aoc-thumbnails-vertical__thumbnail {
    flex: 1 0 23%;
    max-width: 24%;
    margin-right: 1.3%;
  }

  #aoc .aoc-thumbnails-vertical__thumbnail:nth-child(4n+4) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 799px) {
  #aoc .aoc-thumbnails-vertical__thumbnail {
    flex: 1 0 24%;
    max-width: 31.5%;
    margin-right: 2.6%;
  }

  #aoc .aoc-thumbnails-vertical__thumbnail:nth-child(4n+4) {
    margin-right: 2.6%;
  }

  #aoc .aoc-thumbnails-vertical__thumbnail:nth-child(3n+3) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 515px) {
  #aoc .aoc-thumbnails-vertical__thumbnail {
    flex: 1 0 40%;
    max-width: 48.2%;
    margin-right: 3.2%;
  }

  #aoc .aoc-thumbnails-vertical__thumbnail:nth-child(3n+3) {
    margin-right: 3.2%;
  }

  #aoc .aoc-thumbnails-vertical__thumbnail:nth-child(2n+2) {
    margin-right: 0;
  }
}

#aoc .aoc-thumbnails-vertical__img {
  max-width: 100%;
  width: 100%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) and (min-width: 799px) {
  #aoc {
    /* IE10+ CSS styles go here */
  }

  #aoc .aoc-thumbnails-vertical {
    display: block;
  }
}

#aoc .icon-circle-arrow-left.previous-level:before {
  content: "";
}

#aoc .icon-circle-arrow-left.previous-level {
  padding: 0;
}

#aoc .icon-circle-arrow-left.previous-level:after {
  content: "Back";
  margin-left: -4px;
}

#aoc .taglib-header h3.header-title span {
  display: none;
}

#aoc .asset-content {
  margin: 0;
}

#aoc .asset-content .aoc-center-content__block {
  padding-bottom: 0;
}

#aoc .aoc-center-content__block.aoc-post h3 {
  margin-top: 20px;
}

#aoc .aoc-center-content__block.aoc-post h3:first-child {
  margin-top: 0;
}

#aoc .aoc-center-content__block.aoc-post h4 + h3 {
  margin-top: 20px;
}

#aoc .portlet-body a {
  color: #008DD0;
  text-decoration: none;
}

#aoc .aoc-accordion .aoc-accordion__container .aoc-accordion__header a {
  color: #000;
}

#aoc article a.aoc-button,
#aoc article .aoc-donate-button-container a.aoc-donate-button,
#aoc .aoc-donate-button-container article a.aoc-donate-button,
#aoc article a.icon-circle-arrow-left.previous-level:after {
  color: #fff;
}

#aoc button {
  border-radius: 0;
  margin: 0 10px 10px 0;
  text-shadow: none;
}

#aoc button:focus {
  outline: none;
}

#aoc .aoc-button,
#aoc .aoc-donate-button-container .aoc-donate-button,
#aoc .aoc-form__input--file + label,
#aoc .icon-circle-arrow-left.previous-level:after,
#aoc button,
#aoc a.aoc-button,
#aoc .portlet-body a.aoc-button {
  color: #fff;
}

#aoc .aoc-button,
#aoc .aoc-donate-button-container .aoc-donate-button,
#aoc .aoc-form__input--file + label,
#aoc .icon-circle-arrow-left.previous-level:after,
#aoc button {
  box-shadow: none;
}

#aoc .aoc-pagination a.aoc-button,
#aoc .aoc-pagination .aoc-donate-button-container a.aoc-donate-button,
#aoc .aoc-donate-button-container .aoc-pagination a.aoc-donate-button,
#aoc .aoc-pagination a.icon-circle-arrow-left.previous-level:after {
  color: #fff;
}

#aoc iframe {
  margin-bottom: 5px;
}

#aoc .aoc-pub-article-hero__caption {
  font-size: 14px;
}

#aoc sup,
#aoc sub {
  font-size: 75%;
}

#aoc .input-text-wrapper input {
  max-width: 100%;
}

#aoc textarea {
  -webkit-border-radius: 0;
  background-color: #fafafa;
  border: 1px solid #ccc;
  box-shadow: none;
  height: auto;
  max-width: 100%;
  width: 100%;
}

#aoc select {
  text-indent: 0;
  border-radius: 0;
}

#aoc .input-checkbox-wrapper label.checkbox {
  margin-left: 20px;
}

#aoc .input-checkbox-wrapper input {
  position: absolute;
  clip: inherit;
  font-size: 24px;
}

#aoc .input-checkbox-wrapper input.field {
  margin-left: -20px;
}

#aoc .asset-actions {
  margin-top: 30px;
}

#aoc .taglib-captcha input {
  width: 150px;
}

#aoc .radio input[type=radio],
#aoc .checkbox input[type=checkbox] {
  min-height: 20px;
}

#aoc .aoc-header {
  /* Mega Menu */
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header .aoc-header__top-row {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header a.logo.aoc-header__logo-container {
    margin-right: 0;
    flex: 1;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header a.logo.aoc-header__logo-container {
    order: 2;
    flex: 1 1 auto;
  }
}

#aoc .aoc-header .aoc-social-media__icon {
  width: 2.06882em;
}

#aoc .aoc-header .aoc-header__dropdown-link {
  margin-right: 0;
  font-family: inherit;
}

@media screen and (max-width: 1180px) {
  #aoc .aoc-header .aoc-header__dropdown-link {
    display: none;
  }
}

#aoc .aoc-header .aoc-header__site-menu-list {
  margin: 0 0 0 42px;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__site-menu-list {
    margin: 0;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header .aoc-header__site-menu-list {
    margin: 0;
  }
}

#aoc .aoc-header .aoc-header__site-menu-item {
  width: 100%;
}

#aoc .aoc-header.aoc-header--subsite {
  padding: 0;
}

#aoc .aoc-header.aoc-header--subsite a.logo.aoc-header--subsite__logo {
  flex: 1;
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header.aoc-header--subsite a.logo.aoc-header--subsite__logo {
    order: 2;
    flex: 1 1 auto;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header.aoc-header--subsite .aoc-header--subsite__top {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

#aoc .aoc-header.aoc-header--subsite .aoc-header--subsite__links .aoc-top-nav {
  min-height: auto;
}

#aoc .aoc-search-bar,
#aoc .aoc-header--subsite__search {
  margin-bottom: 0;
}

#aoc .aoc-search-bar__input {
  margin-bottom: 0;
}

#aoc .aoc-search-bar__button {
  width: 2.6em;
}

#aoc .aoc-search-social-mobile .aoc-search-bar input.aoc-search-bar__input {
  height: auto;
  margin: 0;
  min-height: auto;
}

#aoc .aoc-search-social-mobile .aoc-search-bar .aoc-search-bar__button {
  height: 100%;
  margin: 0;
}

@media screen and (max-width: 799px) {
  #aoc .aoc-donate-button-container {
    order: 1;
    flex: 1 100%;
  }
}

#aoc .aoc-donate-button-container .aoc-donate-button {
  background: #D71920;
  margin-left: 62px;
  margin-right: 47px;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-donate-button-container .aoc-donate-button {
    margin: 0 70px 0 0;
    flex: 0 auto;
    text-align: center;
    flex-basis: 123px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-donate-button-container .aoc-donate-button {
    margin-top: 16px;
  }
}

#aoc .aoc-header__menu-button-container {
  order: 3;
  align-self: center;
}

#aoc .portlet-layout,
#aoc .aoc-privacy-policy,
#aoc #layout-column_column-1 .layout {
  margin: 0 auto;
  width: 100%;
  max-width: 1366px;
  padding: 0 50px;
}

@media screen and (max-width: 1090px) {
  #aoc .portlet-layout,
  #aoc .aoc-privacy-policy,
  #aoc #layout-column_column-1 .layout {
    padding: 0 15px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .portlet-layout,
  #aoc .aoc-privacy-policy,
  #aoc #layout-column_column-1 .layout {
    padding: 0 30px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .portlet-layout,
  #aoc .aoc-privacy-policy,
  #aoc #layout-column_column-1 .layout {
    padding: 0 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .portlet-layout,
  #aoc .aoc-privacy-policy,
  #aoc #layout-column_column-1 .layout {
    padding: 0 10px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc #layout-column_column-1 .layout .column.w25 {
    width: 50%;
  }
}

@media screen and (max-width: 520px) {
  #aoc #layout-column_column-1 .layout .column.w25 {
    width: 100%;
  }
}

#aoc .layout-1-3 #column-1,
#aoc .layout-1-2 #column-1 {
  width: 100%;
}

#aoc .layout-1-3 .flex-container,
#aoc .layout-1-2 .flex-container {
  display: flex;
  flex-flow: row wrap;
}

#aoc .layout-1-3 .flex-container #column-2,
#aoc .layout-1-2 .flex-container #column-2 {
  flex: 3;
  margin-right: 18px;
}

@media screen and (max-width: 1090px) {
  #aoc .layout-1-3 .portlet-layout.flex-container,
  #aoc .layout-1-2 .portlet-layout.flex-container {
    padding: 0 15px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .layout-1-3 .portlet-layout.flex-container,
  #aoc .layout-1-2 .portlet-layout.flex-container {
    padding: 0 30px;
  }

  #aoc .layout-1-3 .portlet-layout.flex-container #column-2,
  #aoc .layout-1-3 .portlet-layout.flex-container #column-3,
  #aoc .layout-1-2 .portlet-layout.flex-container #column-2,
  #aoc .layout-1-2 .portlet-layout.flex-container #column-3 {
    flex: 1 100%;
    margin: 0 0 11px;
  }

  #aoc .layout-1-3 .portlet-layout.flex-container #column-2,
  #aoc .layout-1-2 .portlet-layout.flex-container #column-2 {
    order: 2;
  }

  #aoc .layout-1-3 .portlet-layout.flex-container #column-3,
  #aoc .layout-1-2 .portlet-layout.flex-container #column-3 {
    order: 1;
  }
}

@media screen and (max-width: 799px) {
  #aoc .layout-1-3 .portlet-layout.flex-container,
  #aoc .layout-1-2 .portlet-layout.flex-container {
    padding: 0 20px;
  }
}

#aoc .layout-1-3 .portlet-layout.flex-container #column-4,
#aoc .layout-1-2 .portlet-layout.flex-container #column-4 {
  /* Search Social Mobile */
}

#aoc .layout-1-3 .portlet-layout.flex-container #column-4 .aoc-search-social-mobile,
#aoc .layout-1-2 .portlet-layout.flex-container #column-4 .aoc-search-social-mobile {
  margin-top: 11px;
}

@media screen and (max-width: 1023px) {
  #aoc .layout-1-3 .portlet-layout.flex-container #column-4 .aoc-search-social-mobile,
  #aoc .layout-1-2 .portlet-layout.flex-container #column-4 .aoc-search-social-mobile {
    padding: 0;
  }
}

@media screen and (max-width: 580px) {
  #aoc .layout-1-3 .portlet-layout.flex-container #column-4 .aoc-search-social-mobile .aoc-search-bar,
  #aoc .layout-1-2 .portlet-layout.flex-container #column-4 .aoc-search-social-mobile .aoc-search-bar {
    margin: 11px auto;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .layout-1-3 .portlet-layout.flex-container #column-2,
  #aoc .layout-1-2 .portlet-layout.flex-container #column-2 {
    margin: 0 -30px 11px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .layout-1-3 .portlet-layout.flex-container #column-2,
  #aoc .layout-1-2 .portlet-layout.flex-container #column-2 {
    margin: 0 -20px 11px;
  }
}

#aoc .layout-1-2 .flex-container #column-3 {
  flex: 9;
  margin: 0;
}

@media screen and (max-width: 1023px) {
  #aoc .layout-1-2 .portlet-layout.flex-container {
    padding: 0 30px;
  }

  #aoc .layout-1-2 .portlet-layout.flex-container #column-2,
  #aoc .layout-1-2 .portlet-layout.flex-container #column-3 {
    flex: 1 0 100%;
  }

  #aoc .layout-1-2 .portlet-layout.flex-container #column-2 {
    order: 2;
  }

  #aoc .layout-1-2 .portlet-layout.flex-container #column-3 {
    order: 1;
  }
}

@media screen and (max-width: 799px) {
  #aoc .layout-1-2 .portlet-layout.flex-container {
    padding: 0 20px;
  }
}

#aoc .layout-1-3 .flex-container #column-3 {
  flex: 7;
  margin: 0;
}

#aoc .layout-1-3 .flex-container #column-4 {
  flex: 2;
  margin-left: 18px;
  margin-right: auto;
}

@media screen and (max-width: 1023px) {
  #aoc .layout-1-3 .portlet-layout.flex-container #column-4 {
    flex: 1 100%;
    margin: 0 0 11px;
    order: 3;
  }
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-header__language-select div,
  #aoc .aoc-header__top-row,
  #aoc .aoc-top-nav,
  #aoc .aoc-subpage-banner div,
  #aoc .portlet-layout,
  #aoc .aoc-footer div.row {
    padding: 0 15px;
  }
}

@media screen and (max-width: 1034px) {
  #aoc .aoc-header__language-select div,
  #aoc .aoc-header__top-row,
  #aoc .aoc-top-nav,
  #aoc .aoc-subpage-banner div,
  #aoc .portlet-layout,
  #aoc .aoc-footer div.row {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header__language-select div,
  #aoc .aoc-header__top-row,
  #aoc .aoc-top-nav,
  #aoc .aoc-subpage-banner div,
  #aoc .portlet-layout,
  #aoc .aoc-footer div.row {
    padding: 0 30px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header__language-select div,
  #aoc .aoc-header__top-row,
  #aoc .aoc-top-nav,
  #aoc .aoc-subpage-banner div,
  #aoc .portlet-layout,
  #aoc .aoc-footer div.row {
    padding: 0 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .aoc-header__language-select div,
  #aoc .aoc-header__top-row,
  #aoc .aoc-top-nav,
  #aoc .aoc-subpage-banner div,
  #aoc .portlet-layout,
  #aoc .aoc-footer div.row {
    padding: 0 10px;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aoc-footer div.row {
    padding: 0;
  }
}

#aoc .aoc-secondary-colors--medium {
  color: #4a4a4a;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-social-media,
  #aoc .aoc-header .aoc-search-bar,
  #aoc .aoc-header__dropdown-link,
  #aoc .desktop-only {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {
  #aoc .aoc-header .aoc-header__menu-button,
  #aoc .mobile-only {
    display: none !important;
  }
}

@media print {
  #aoc a[href]:after {
    content: none !important;
  }
}

@media print {
  #aoc .aoc-top-nav,
  #aoc .aoc-header__dropdown-link,
  #aoc .aoc-social-media,
  #aoc .aoc-search-bar {
    display: none !important;
  }

  #aoc .aoc-header__top-row {
    margin-bottom: 0 !important;
  }
}

#aoc .aoc-header .aoc-top-nav li {
  margin-bottom: 0;
}

#aoc .aoc-header .aoc-header__nav-bar-item {
  cursor: pointer;
}

#aoc .aoc-header .aoc-header__nav-bar-item.selected a {
  color: #D71920;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar-item.selected a {
    color: #fff;
  }
}

#aoc .aoc-header .aoc-nav-bar__sub-item .aoc-nav-bar__chevron {
  margin-left: 0;
}

#aoc .aoc-header .aoc-nav-bar__sublist-wrapper {
  z-index: 350;
}

#aoc .aoc-header li.selected .aoc-nav-bar__sublist-wrapper .aoc-nav-bar__sublist .aoc-nav-bar__sub-item a {
  color: #fff;
}

#aoc .aoc-header .aoc-nav-bar__sub-item svg.aoc-sublist__trigger {
  display: inline-block;
  height: 10px;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header .aoc-header__nav-bar {
    z-index: 500;
  }

  #aoc .aoc-header .aoc-header__nav-bar .aoc-header__nav-bar-item .aoc-header__nav-bar-link {
    line-height: 43px;
  }
}

#aoc #column-2 .aoc-sidenav .aoc-sidenav__list {
  margin-left: -14px;
}

@media screen and (max-width: 1023px) {
  #aoc #column-2 .aoc-sidenav .aoc-sidenav__list {
    margin-left: 0;
  }
}

#aoc .aoc-sidenav li {
  margin-bottom: 0;
}

#aoc .aoc-header.aoc-header--subsite .aoc-header--subsite__links {
  padding-bottom: 0;
}

#aoc .aoc-header.aoc-header--subsite .aoc-header--subsite__links nav.aoc-top-nav {
  min-height: 34px;
  padding-bottom: 11px;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header.aoc-header--subsite .aoc-header--subsite__links nav.aoc-top-nav {
    min-height: 0;
    padding-bottom: 0;
  }
}

#aoc .aoc-header.aoc-header--subsite .aoc-nav-bar__sublist-wrapper {
  padding-top: 11px;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header.aoc-header--subsite .aoc-nav-bar__sublist-wrapper {
    padding-top: 0;
  }
}

#aoc .aoc-page-title,
#aoc .social-page-title .aoc-page-title {
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 0;
  margin-top: 0;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-page-title,
  #aoc .social-page-title .aoc-page-title {
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 520px) {
  #aoc .aoc-page-title,
  #aoc .social-page-title .aoc-page-title {
    margin-bottom: 14px;
  }
}

#aoc .social-page-title {
  align-items: center;
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 14px;
}

#aoc .social-page-title .aoc-page-title {
  flex-basis: none;
  flex: 0 1 auto;
  margin-bottom: 14px;
  margin-right: 20px;
}

#aoc .social-page-title .aoc-social-media .aoc-social-media__icon {
  width: 30px;
}

#aoc .columns-1 .aoc-thumbnails {
  padding: 27px 50px;
}

@media screen and (max-width: 1090px) {
  #aoc .columns-1 .aoc-thumbnails {
    padding: 27px 15px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc .columns-1 .aoc-thumbnails {
    padding: 27px 30px;
  }
}

@media screen and (max-width: 799px) {
  #aoc .columns-1 .aoc-thumbnails {
    padding: 27px 20px;
  }
}

@media screen and (max-width: 324px) {
  #aoc .columns-1 .aoc-thumbnails {
    padding: 27px 10px;
  }
}

@media only screen and (max-width: 1023px) {
  #aoc .aoc-thumbnails-vertical {
    margin-top: 9px;
  }
}

#aoc .aoc-thumbnails-vertical__thumbnail:first-child {
  margin-top: 0;
}

@media only screen and (max-width: 1023px) {
  #aoc .aoc-thumbnails-vertical__thumbnail:first-child {
    margin-top: 9px;
  }
}

#aoc .aoc-gtog-theme {
  /* height in indesign said 48, however the height turned out to be more like 82 */
  /* accordion styles */
  /* from solid gray to dotted dark blue border
  .aoc-center-content__block,*/
  /* answer the call - title block */
  /* for self styled quotes, not really precise if it only contains style attribute of `margin-left: 80px;` nothing more nothing less, kept on gen to gen only */
  /* homepage  form tweaks */
  /* */
  /**/
  /* for landing page form */
}

#aoc .aoc-gtog-theme .aoc-header__nav-bar-item {
  max-width: unset;
}

#aoc .aoc-gtog-theme .aoc-header .aoc-header__nav-bar-item.selected a {
  color: rgb(76, 86, 139);
}

#aoc .aoc-gtog-theme .aoc-header__nav-bar-item a:hover {
  color: rgb(76, 86, 139);
}

#aoc .aoc-gtog-theme .aoc-nav-bar__sub-item a:hover {
  background: white;
}

#aoc .aoc-gtog-theme .aoc-nav-bar__sub-item .aoc-sublist__sub-item-link:hover {
  background: white;
  color: rgb(76, 86, 139);
}

#aoc .aoc-gtog-theme .aoc-nav-bar__sub-item .aoc-sublist__sub-item-link:hover a {
  color: rgb(76, 86, 139);
}

#aoc .aoc-gtog-theme .aoc-sublist__dropdown-item:hover .aoc-sublist__trigger svg.aoc-nav-bar__chevron {
  color: rgb(76, 86, 139);
}

#aoc .aoc-gtog-theme .aoc-sublist__dropdown-item:hover > a {
  color: rgb(76, 86, 139);
}

#aoc .aoc-gtog-theme .aoc-header .aoc-header__menu-button.aoc-header__menu-button--open {
  color: rgb(76, 86, 139);
}

#aoc .aoc-gtog-theme .aoc-sublist__dropdown-item:hover,
#aoc .aoc-gtog-theme .false.aoc-sublist__dropdown-item:hover {
  background: #fff;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-gtog-theme .aoc-header .aoc-header__nav-bar {
    background: rgba(76, 86, 139, 0.85);
  }

  #aoc .aoc-gtog-theme .aoc-header .aoc-header__nav-bar .aoc-header__nav-bar-item .aoc-header__nav-bar-link,
  #aoc .aoc-gtog-theme .aoc-header .aoc-header__nav-bar .aoc-nav-bar__sub-item,
  #aoc .aoc-gtog-theme .aoc-header .aoc-header__nav-bar .aoc-sublist__dropdown-item {
    background: transparent;
    border-bottom: transparent;
  }

  #aoc .aoc-gtog-theme .aoc-header .aoc-header__nav-bar .aoc-header__nav-bar-item.selected .aoc-header__nav-bar-link,
  #aoc .aoc-gtog-theme .aoc-header .aoc-header__nav-bar .selected.aoc-nav-bar__sub-item .aoc-sublist__sub-item-link {
    background: rgb(76, 86, 139);
  }

  #aoc .aoc-gtog-theme .aoc-nav-bar__sub-item .aoc-sublist__sub-item-link:hover {
    background: rgba(76, 86, 139, 0.85);
  }

  #aoc .aoc-gtog-theme .aoc-header .aoc-header__nav-bar-item.selected a {
    background: transparent;
    color: #fff;
  }

  #aoc .aoc-gtog-theme .aoc-nav-bar__sub-item .aoc-sublist__sub-item-link a:hover {
    background: transparent;
    color: #fff;
  }
}

#aoc .aoc-gtog-theme .aoc-nav-bar__sublist {
  background: rgb(76, 86, 139);
}

#aoc .aoc-gtog-theme .aoc-sidenav .aoc-sidenav__list li.selected > a:first-child {
  background-color: rgb(76, 86, 139);
}

#aoc .aoc-gtog-theme .aoc-footer--bg {
  position: relative;
  padding: 0;
}

#aoc .aoc-gtog-theme .aoc-footer--bg .aoc-g2g-footer-inner-rail {
  overflow: hidden;
  position: relative;
  padding: 1.38em 0;
}

@media screen and (max-width: 1024px) {
  #aoc .aoc-gtog-theme .aoc-footer--bg .aoc-g2g-footer-inner-rail {
    padding: 12px;
  }
}

#aoc .aoc-gtog-theme .aoc-footer--bg .aoc-g2g-footer-inner-rail:before {
  background: url("/o/aoc-theme/images/gen-to-gen/Gen-to-Gen_footer.jpg") repeat-x top center;
  background-size: cover;
  content: "";
  display: block;
  height: calc(100% + 12px);
  padding: 1.38em 0;
  position: absolute;
  left: 0;
  right: 0;
  transform: translateY(-1.38em);
  width: 100%;
  z-index: 0;
}

#aoc .aoc-gtog-theme .aoc-footer--bg .aoc-g2g-footer-inner-rail:after {
  content: "";
  display: block;
  height: 100%;
  padding: 1.38em 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}

@media screen and (max-width: 480px) {
  #aoc .aoc-gtog-theme .aoc-footer--bg .aoc-g2g-footer-inner-rail div.row {
    padding: 30px;
  }
}

#aoc .aoc-gtog-theme .aoc-footer.aoc-footer--bg .aoc-footer-g2g-logo__call {
  display: flex;
  float: none;
  margin-bottom: 58px;
  margin-top: 24px;
  position: relative;
  width: 100%;
  z-index: 20;
}

@media screen and (max-width: 1024px) {
  #aoc .aoc-gtog-theme .aoc-footer.aoc-footer--bg .aoc-footer-g2g-logo__call {
    width: 105vw;
  }
}

#aoc .aoc-gtog-theme .aoc-footer.aoc-footer--bg .aoc-footer-g2g-logo__call img {
  height: 82px;
  width: auto;
}

@media screen and (max-width: 1024px) {
  #aoc .aoc-gtog-theme .aoc-footer.aoc-footer--bg .aoc-footer-g2g-logo__call img {
    height: 50px;
  }
}

#aoc .aoc-gtog-theme .aoc-footer.aoc-footer--bg .aoc-footer-g2g-logo__call:before {
  background: url("/o/aoc-theme/images/gen-to-gen/aoc-g2g-atc-footer-left-dots.png") repeat-x top left;
  background-size: auto 82px;
  content: "";
  display: block;
  height: 82px;
  width: 123%;
}

@media screen and (max-width: 1024px) {
  #aoc .aoc-gtog-theme .aoc-footer.aoc-footer--bg .aoc-footer-g2g-logo__call:before {
    background-size: auto 50px;
    height: 50px;
    width: 38%;
  }
}

#aoc .aoc-gtog-theme .aoc-footer.aoc-footer--bg .aoc-footer-g2g-logo__call:after {
  background: url("/o/aoc-theme/images/gen-to-gen/aoc-g2g-atc-footer-right-dots.png") repeat-x top left;
  background-size: auto 82px;
  content: "";
  display: block;
  height: 82px;
  width: calc(33% - 170px);
}

@media screen and (max-width: 1024px) {
  #aoc .aoc-gtog-theme .aoc-footer.aoc-footer--bg .aoc-footer-g2g-logo__call:after {
    background-size: auto 50px;
    height: 50px;
    width: 38%;
  }
}

#aoc .aoc-gtog-theme .aoc-g2g-footer-nav {
  font-family: "Alright Sans CE Lt", Arial, sans-serif;
  width: 66%;
}

@media screen and (max-width: 1274px) {
  #aoc .aoc-gtog-theme .aoc-g2g-footer-nav {
    width: 75%;
  }
}

@media screen and (max-width: 768px) {
  #aoc .aoc-gtog-theme .aoc-g2g-footer-nav {
    width: 100%;
  }
}

#aoc .aoc-gtog-theme .aoc-g2g-footer-nav > .aoc-g2g-footer-nav__list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 20;
}

@media screen and (max-width: 1024px) {
  #aoc .aoc-gtog-theme .aoc-g2g-footer-nav > .aoc-g2g-footer-nav__list {
    flex-direction: column;
  }
}

#aoc .aoc-gtog-theme .aoc-g2g-footer-nav > .aoc-g2g-footer-nav__list li {
  color: #fff;
  font-size: 20px;
  line-height: 43px;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 1024px) {
  #aoc .aoc-gtog-theme .aoc-g2g-footer-nav > .aoc-g2g-footer-nav__list li {
    /* font-size: 14px;
     line-height: 21px; */
  }
}

#aoc .aoc-gtog-theme .aoc-g2g-footer-nav > .aoc-g2g-footer-nav__list li a {
  color: #fff;
}

#aoc .aoc-gtog-theme .aoc-g2g-footer-nav > .aoc-g2g-footer-nav__list li dl {
  margin: 0;
  padding: 0;
}

#aoc .aoc-gtog-theme .aoc-g2g-footer-nav > .aoc-g2g-footer-nav__list li dl dt {
  font-size: 20px;
  line-height: 11px;
  margin-top: 16px;
  /* @media screen and (max-width: 1024px) {
    font-size: 14px;
    line-height: 21px;
    margin-top: 9px;
  } */
}

#aoc .aoc-gtog-theme .aoc-g2g-footer-nav > .aoc-g2g-footer-nav__list li dl dd {
  font-size: 20px;
  line-height: 18px;
  margin: 15px 0 0 0;
  padding: 0;
  /* @media screen and (max-width: 1024px) {
     font-size: 14px;
     line-height: 21px;
     margin: 0;
   } */
}

#aoc .aoc-gtog-theme .aoc-g2g-footer-nav > .aoc-g2g-footer-nav__list li dl dd address {
  font-size: 20px;
  line-height: 30px;
  margin: 5px 0 0 0;
  padding: 0;
  /* @media screen and (max-width: 1024px) {
     font-size: 14px;
     line-height: 21px;
     margin: 0;
   } */
}

#aoc .aoc-gtog-theme .aoc-g2g-footer-nav > .aoc-g2g-footer-nav__list li dl dd a:last-child {
  display: inline-block;
  margin-top: 9px;
}

@media screen and (max-width: 1024px) {
  #aoc .aoc-gtog-theme .aoc-g2g-footer-nav > .aoc-g2g-footer-nav__list li dl dd a:last-child {
    margin-top: 9px;
    margin-bottom: 9px;
  }
}

#aoc .aoc-gtog-theme .aoc-g2g-footer-nav > .aoc-g2g-footer-nav__list li ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#aoc .aoc-gtog-theme .aoc-g2g-footer-nav > .aoc-g2g-footer-nav__list li ul li {
  margin: 0;
  padding: 0;
}

#aoc .aoc-gtog-theme .aoc-header-g2g-logo__call {
  display: flex;
  float: none;
  margin-bottom: 58px;
  margin-top: 24px;
  position: relative;
  width: 100%;
  z-index: 20;
  /*
  @media screen and (max-width: 500px) {
    width: 101vw;
  } */
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-gtog-theme .aoc-header-g2g-logo__call {
    margin-top: 12px;
    margin-bottom: 20px;
    width: 105vw;
  }
}

#aoc .aoc-gtog-theme .aoc-header-g2g-logo__call img {
  height: 82px;
  width: auto;
}

@media screen and (max-width: 1024px) {
  #aoc .aoc-gtog-theme .aoc-header-g2g-logo__call img {
    height: 50px;
  }
}

@media screen and (max-width: 680px) {
  #aoc .aoc-gtog-theme .aoc-header-g2g-logo__call img {
    height: 50px;
  }
}

#aoc .aoc-gtog-theme .aoc-header-g2g-logo__call:before {
  background: url("/o/aoc-theme/images/gen-to-gen/aoc-g2g-atc-footer-left-dots-blue.png") repeat-x top left;
  background-size: auto 82px;
  content: "";
  display: block;
  height: 82px;
  width: 123%;
  /*
  @media screen and (max-width: 500px){
    width: 65%;
  }
  */
}

@media screen and (max-width: 1024px) {
  #aoc .aoc-gtog-theme .aoc-header-g2g-logo__call:before {
    background-size: auto 50px;
    height: 50px;
    width: 38%;
  }
}

@media screen and (max-width: 680px) {
  #aoc .aoc-gtog-theme .aoc-header-g2g-logo__call:before {
    background-size: auto 50px;
    width: 37%;
  }
}

#aoc .aoc-gtog-theme .aoc-header-g2g-logo__call:after {
  background: url("/o/aoc-theme/images/gen-to-gen/aoc-g2g-atc-footer-right-dots-blue.png") repeat-x top left;
  background-size: auto 82px;
  content: "";
  display: block;
  height: 82px;
  width: calc(35% - 170px);
}

@media screen and (max-width: 1024px) {
  #aoc .aoc-gtog-theme .aoc-header-g2g-logo__call:after {
    background-size: auto 50px;
    height: 50px;
    width: 38%;
  }
}

@media screen and (max-width: 680px) {
  #aoc .aoc-gtog-theme .aoc-header-g2g-logo__call:after {
    background-size: auto 50px;
    height: 82px;
    width: 50%;
  }
}

#aoc .aoc-gtog-theme .aoc-accordion__container {
  border-bottom: 4px dotted rgb(73, 84, 141);
}

#aoc .aoc-gtog-theme .aoc-accordion__container:first-of-type {
  border-top: 4px dotted rgb(73, 84, 141);
}

#aoc .aoc-gtog-theme .aoc-accordion__chevron,
#aoc .aoc-gtog-theme .aoc-accordion__close {
  color: rgb(191, 77, 48);
}

#aoc .aoc-gtog-theme .aoc-c2c-accordion-sct {
  border-top: 7px dotted rgb(73, 84, 141);
  padding-bottom: 35px;
  margin: 45px 0;
}

#aoc .aoc-gtog-theme .aoc-c2c-accordion-sct h3 {
  color: rgb(73, 84, 141);
  font-size: 29px;
  line-height: 32px;
  padding-bottom: 15px;
  padding-top: 15px;
  text-transform: uppercase;
}

#aoc .aoc-gtog-theme .portlet-layout:has(.aoc-g2g-hph) {
  padding: 0;
}

@media screen and (min-width: 1413px) {
  #aoc .aoc-gtog-theme .portlet-layout:has(.aoc-g2g-hph) {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }
}

#aoc .aoc-gtog-theme .portlet-layout:has(.aoc-g2g-hph) .portlet-journal-content:nth-child(3n) {
  max-width: 1366px;
  margin: auto;
  padding: 0 50px;
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-gtog-theme .portlet-layout:has(.aoc-g2g-hph) .portlet-journal-content:nth-child(3n) {
    padding: 0 15px;
  }
}

#aoc .aoc-gtog-theme .aoc-g2g-hph {
  margin: auto;
  margin-top: 12px;
  max-width: 1366px;
  position: relative;
  /* padding: 0 0 0 30px;
  width: calc(100% - 50px); */
}

@media screen and (min-width: 1413px) {
  #aoc .aoc-gtog-theme .aoc-g2g-hph {
    max-width: unset;
  }
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-gtog-theme .aoc-g2g-hph {
    padding: 0;
    width: 100%;
  }
}

#aoc .aoc-gtog-theme .aoc-g2g-hph h1 {
  font-size: 56px;
  line-height: 64px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-gtog-theme .aoc-g2g-hph h1 {
    font-size: 37.333px;
    line-height: 42.666px;
    margin-bottom: 10px;
  }
}

#aoc .aoc-gtog-theme .aoc-g2g-hph .aoc-g2g-g {
  color: #fff;
  max-width: 670px;
  position: absolute;
  padding: 50px 50px 0 50px;
  z-index: 10;
  /* .aoc-slider__title {
    max-width: unset;
  } */
}

@media screen and (min-width: 1413px) {
  #aoc .aoc-gtog-theme .aoc-g2g-hph .aoc-g2g-g {
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1366px;
  }

  #aoc .aoc-gtog-theme .aoc-g2g-hph .aoc-g2g-g h1,
  #aoc .aoc-gtog-theme .aoc-g2g-hph .aoc-g2g-g .aoc-g2g-hph-c {
    max-width: 670px;
  }
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-gtog-theme .aoc-g2g-hph .aoc-g2g-g {
    padding: 50px 30px 0 30px;
  }
}

#aoc .aoc-gtog-theme .aoc-g2g-hph .aoc-g2g-g .aoc-g2g-hph-c {
  font-family: "Alright Sans CE Bd", sans-serif;
  font-size: 26px;
  line-height: 32px;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-gtog-theme .aoc-g2g-hph .aoc-g2g-g .aoc-g2g-hph-c {
    font-size: 18.666px;
    line-height: 25.333px;
  }
}

#aoc .aoc-gtog-theme .aoc-g2g-hph .aoc-g2g-hph-p {
  background-repeat: no-repeat;
  background-size: 1413px;
  display: block;
  height: 728px;
  /*576px;*/
  overflow: hidden;
  padding: 0 50px;
  width: calc(100% + 50px);
}

@media screen and (min-width: 1413px) {
  #aoc .aoc-gtog-theme .aoc-g2g-hph .aoc-g2g-hph-p {
    background-size: cover;
  }
}

@media screen and (max-width: 1386px) {
  #aoc .aoc-gtog-theme .aoc-g2g-hph .aoc-g2g-hph-p {
    background-size: 1366px;
    width: 100%;
  }
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-gtog-theme .aoc-g2g-hph .aoc-g2g-hph-p {
    height: 576px;
    width: 105vw;
  }
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-gtog-theme .aoc-g2g-hph .aoc-g2g-hph-p {
    padding: 0 30px;
  }
}

#aoc .aoc-gtog-theme .aoc-g2g-hph .aoc-g2g-hph-p img {
  visibility: hidden;
  height: 728px;
}

@media screen and (max-width: 1386px) {
  #aoc .aoc-gtog-theme .aoc-g2g-hph .aoc-g2g-hph-p img {
    background-size: 1366px;
    width: 100%;
  }
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-gtog-theme .aoc-g2g-hph .aoc-g2g-hph-p img {
    height: 576px;
    width: 105vw;
  }
}

#aoc .aoc-gtog-theme:has(.aoc-g2g-hph-p) .columns-1 .aoc-thumbnails {
  /* transform: translateX(31px); */
  justify-content: space-between;
  max-width: 1335px;
  margin-top: -240px;
  /* -280px; would be for logged in however classes currently broken for signed in vs not */
}

@media screen and (min-width: 1025px) and (max-width: 1450px) {
  #aoc .aoc-gtog-theme:has(.aoc-g2g-hph-p) .columns-1 .aoc-thumbnails {
    max-width: 1250px;
  }
}

@media screen and (max-width: 1090px) and (min-width: 769px) {
  #aoc .aoc-gtog-theme:has(.aoc-g2g-hph-p) .columns-1 .aoc-thumbnails {
    margin-top: -13vw;
    justify-content: flex-start;
    gap: 18px;
  }
}

@media screen and (max-width: 768px) {
  #aoc .aoc-gtog-theme:has(.aoc-g2g-hph-p) .columns-1 .aoc-thumbnails {
    margin-top: -313px;
  }
}

@media screen and (max-width: 588px) {
  #aoc .aoc-gtog-theme:has(.aoc-g2g-hph-p) .columns-1 .aoc-thumbnails {
    margin-top: -284px;
  }
}

@media screen and (max-width: 499px) {
  #aoc .aoc-gtog-theme:has(.aoc-g2g-hph-p) .columns-1 .aoc-thumbnails {
    margin-top: -222px;
  }
}

@media screen and (max-width: 460px) {
  #aoc .aoc-gtog-theme:has(.aoc-g2g-hph-p) .columns-1 .aoc-thumbnails {
    margin-top: -170px;
  }
}

@media screen and (max-width: 347px) {
  #aoc .aoc-gtog-theme:has(.aoc-g2g-hph-p) .columns-1 .aoc-thumbnails {
    margin-top: -145px;
  }
}

@media screen and (max-width: 315px) {
  #aoc .aoc-gtog-theme:has(.aoc-g2g-hph-p) .columns-1 .aoc-thumbnails {
    margin-top: -79px;
  }
}

#aoc .aoc-gtog-theme:has(.aoc-g2g-hph-p) .aoc-thumbnails__thumbnail {
  margin: 9px 0 0 0;
  max-width: 22%;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  #aoc .aoc-gtog-theme:has(.aoc-g2g-hph-p) .aoc-thumbnails__thumbnail {
    max-width: calc(33% - 18px);
    flex: 1 0 calc(33% - 18px);
    margin-bottom: -8px;
  }
}

@media screen and (max-width: 768px) {
  #aoc .aoc-gtog-theme:has(.aoc-g2g-hph-p) .aoc-thumbnails__thumbnail {
    max-width: calc(50% - 9px);
    flex: 1 0 calc(50% - 9px);
  }
}

#aoc .aoc-gtog-theme .aoc-page-title,
#aoc .aoc-gtog-theme hr {
  background: #fff;
  background-repeat: repeat-x;
  background-image: radial-gradient(#404a7f 3.25px, transparent 0);
  background-size: 20px 20px;
  background-position: -4px -4px;
  width: 100%;
  border-top: none;
  height: 20px;
}

#aoc .aoc-gtog-theme .aoc-page-title {
  padding-top: 15px;
  font-family: "Alright Sans CE Bd";
  color: #535989;
  font-size: 29.3333333333px;
  margin-bottom: 45px !important;
  margin-top: 0 !important;
  padding-top: 31px !important;
  background: #fff;
  background-repeat: repeat-x;
  background-image: radial-gradient(#404a7f 3.25px, transparent 0);
  background-size: 20px 20px;
  background-position: -4px -4px;
  width: 100%;
  border-top: none;
  text-transform: uppercase;
}

#aoc .aoc-gtog-theme .social-page-title {
  border-top: 5px dotted rgb(73, 84, 141);
  border-bottom: none;
  padding-top: 15px;
}

#aoc .aoc-gtog-theme .social-page-title .aoc-page-title {
  border-top: none;
  padding-top: 0px;
}

#aoc .aoc-gtog-theme .aoc-button,
#aoc .aoc-gtog-theme .aoc-form__input--file + label,
#aoc .aoc-gtog-theme .icon-circle-arrow-left.previous-level:after,
#aoc .aoc-gtog-theme button,
#aoc .aoc-gtog-theme .aoc-donate-button-container .aoc-donate-button,
#aoc .aoc-donate-button-container .aoc-gtog-theme .aoc-donate-button {
  background: rgb(73, 84, 141);
}

#aoc .aoc-gtog-theme p {
  font-size: 18.7px;
  line-height: 24.2px;
}

#aoc .aoc-gtog-theme .aoc-g2g-atc-container h1 {
  color: rgb(73, 84, 141);
  font-family: "Alright Sans CE Bd", sans-serif;
  font-size: 29px;
  line-height: 32px;
  margin-bottom: 23px;
  padding-top: 40px;
  text-transform: uppercase;
  background: #fff;
  background-repeat: repeat-x;
  background-image: radial-gradient(#404a7f 3.25px, transparent 0);
  background-size: 20px 20px;
  background-position: -4px -4px;
  width: 100%;
  border-top: none;
}

@media screen and (max-width: 1024px) {
  #aoc .aoc-gtog-theme .aoc-g2g-atc-container h1 {
    font-size: 26px;
  }
}

@media screen and (max-width: 768px) {
  #aoc .aoc-gtog-theme .aoc-g2g-atc-container h1 {
    padding-bottom: 15px;
  }
}

#aoc .aoc-gtog-theme picture {
  display: block;
  margin: 0;
  max-height: fit-content;
  padding: 0;
  transform: translateY(5px);
}

@media screen and (max-width: 568px) {
  #aoc .aoc-gtog-theme picture {
    transform: translate(-20px, 5px);
    width: calc(100% + 40px);
  }
}

#aoc .aoc-gtog-theme picture img {
  padding: 0;
  margin: 0;
  width: 100%;
}

#aoc .aoc-gtog-theme .aoc-g2g-atc-container_content {
  background: url("/o/aoc-theme/images/gen-to-gen/Gen-to-Gen_case-components_background.jpg") no-repeat top left;
  background-size: cover;
  margin-bottom: 30px;
  min-height: 185px;
}

@media screen and (max-width: 568px) {
  #aoc .aoc-gtog-theme .aoc-g2g-atc-container_content {
    transform: translateX(-20px);
    width: calc(100% + 40px);
  }
}

#aoc .aoc-gtog-theme .aoc-g2g-atc-container_content-display {
  border-bottom: 2px dotted #fff;
  color: #fff;
  font-family: "Alright Sans CE Lt", Arial, sans-serif;
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 10px;
  /* padding-bottom: 10px;
  padding-left: 25px;
  padding-top: 15px; */
  padding: 15px 25px 10px 25px;
}

@media screen and (max-width: 1024px) {
  #aoc .aoc-gtog-theme .aoc-g2g-atc-container_content-display {
    font-size: 27px;
    line-height: 36px;
  }
}

#aoc .aoc-gtog-theme .aoc-g2g-atc-container_content-goal {
  color: #fff;
  font-family: "Alright Sans CE Bd", sans-serif;
  font-size: 25.333px;
  line-height: 36px;
  padding-left: 25px;
  padding-bottom: 7px;
}

@media screen and (max-width: 1024px) {
  #aoc .aoc-gtog-theme .aoc-g2g-atc-container_content-goal {
    font-size: 18.333px;
    line-height: 33px;
  }
}

#aoc .aoc-gtog-theme .aoc-g2g-atc-page-nav h3 {
  /* border-top: 4px dotted rgba(73,84,141, 1);
  color: rgba(73,84,141, 1);
  font-family: "Alright Sans CE Bd", sans-serif;
  font-size: 18px;
  padding: 12px 0;
  text-transform: uppercase;
  @media screen and (max-width: 568px) {
    font-size: 24px;
    padding: 19px 0; } */
  color: #49548d;
  font-size: 29.3333333333px;
  line-height: 32px;
  text-transform: uppercase;
  margin: 0 0 40px 0;
  padding-top: 40px;
  /* background: #fff;
   background-repeat: repeat-x;
   background-image: radial-gradient(#404a7f 3.25px, transparent 0%);
   background-size: 20px 20px;
   background-position: -4px -4px;

   */
  width: 100%;
}

#aoc .aoc-gtog-theme .aoc-g2g-atc-page-nav .aoc-g2g-atc-page-nav--list {
  list-style: none;
  margin: 0;
  padding: 0;
}

#aoc .aoc-gtog-theme .aoc-g2g-atc-page-nav .aoc-g2g-atc-page-nav--list li {
  margin: 0;
  padding: 0 0 23px 0;
}

#aoc .aoc-gtog-theme .aoc-g2g-atc-page-nav .aoc-g2g-atc-page-nav--list li a {
  color: #000;
  display: flex;
}

@media screen and (max-width: 568px) {
  #aoc .aoc-gtog-theme .aoc-g2g-atc-page-nav .aoc-g2g-atc-page-nav--list li a {
    flex-direction: column;
  }
}

#aoc .aoc-gtog-theme .aoc-g2g-atc-page-nav .aoc-g2g-atc-page-nav--list li a .aoc-g2g-atc-page-nav_container-left {
  border-top: 2px dotted rgb(73, 84, 141);
  padding-right: 20px;
  transform: translateY(5px);
  width: calc(100% - 259px);
}

@media screen and (max-width: 768px) {
  #aoc .aoc-gtog-theme .aoc-g2g-atc-page-nav .aoc-g2g-atc-page-nav--list li a .aoc-g2g-atc-page-nav_container-left {
    width: 100%;
  }
}

#aoc .aoc-gtog-theme .aoc-g2g-atc-page-nav .aoc-g2g-atc-page-nav--list li a .aoc-g2g-atc-page-nav_container-left h4 {
  font-size: 15px;
  padding: 9px 0 0 0;
  margin-bottom: 0;
  text-transform: none;
}

@media screen and (max-width: 568px) {
  #aoc .aoc-gtog-theme .aoc-g2g-atc-page-nav .aoc-g2g-atc-page-nav--list li a .aoc-g2g-atc-page-nav_container-left h4 {
    font-size: 21px;
    padding: 9px 0 7px 0;
  }
}

#aoc .aoc-gtog-theme .aoc-g2g-atc-page-nav .aoc-g2g-atc-page-nav--list li a .aoc-g2g-atc-page-nav_container-left .aoc-g2g-atc-page-nav_container-left-goal {
  font-family: "Alright Sans CE Bd", sans-serif;
  font-size: 12px;
  padding-bottom: 8px;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-gtog-theme .aoc-g2g-atc-page-nav .aoc-g2g-atc-page-nav--list li a .aoc-g2g-atc-page-nav_container-left .aoc-g2g-atc-page-nav_container-left-goal {
    font-size: 16px;
  }
}

#aoc .aoc-gtog-theme .aoc-g2g-atc-page-nav .aoc-g2g-atc-page-nav--list li a .aoc-g2g-atc-page-nav_container-left .aoc-g2g-atc-page-nav_container-left-blurb {
  font-size: 14px;
}

@media screen and (max-width: 568px) {
  #aoc .aoc-gtog-theme .aoc-g2g-atc-page-nav .aoc-g2g-atc-page-nav--list li a .aoc-g2g-atc-page-nav_container-left .aoc-g2g-atc-page-nav_container-left-blurb {
    font-size: 17px;
    margin-bottom: 28px;
  }
}

#aoc .aoc-gtog-theme .aoc-g2g-atc-page-nav .aoc-g2g-atc-page-nav--list li a picture {
  width: 259px;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-gtog-theme .aoc-g2g-atc-page-nav .aoc-g2g-atc-page-nav--list li a picture {
    transform: none;
    width: 100%;
  }
}

#aoc .aoc-gtog-theme .aoc-g2g-atc-page-nav .aoc-g2g-atc-page-nav--list li:nth-child(4n+1) .aoc-g2g-atc-page-nav_container-left {
  border-top-color: rgb(191, 77, 48);
}

#aoc .aoc-gtog-theme .aoc-g2g-atc-page-nav .aoc-g2g-atc-page-nav--list li:nth-child(4n+1) .aoc-g2g-atc-page-nav_container-left h4 {
  color: rgb(191, 77, 48);
}

#aoc .aoc-gtog-theme .aoc-g2g-atc-page-nav .aoc-g2g-atc-page-nav--list li:nth-child(4n+2) .aoc-g2g-atc-page-nav_container-left {
  border-top-color: rgb(73, 84, 141);
}

#aoc .aoc-gtog-theme .aoc-g2g-atc-page-nav .aoc-g2g-atc-page-nav--list li:nth-child(4n+2) .aoc-g2g-atc-page-nav_container-left h4 {
  color: rgb(73, 84, 141);
}

#aoc .aoc-gtog-theme .aoc-g2g-atc-page-nav .aoc-g2g-atc-page-nav--list li:nth-child(4n+3) .aoc-g2g-atc-page-nav_container-left {
  border-top-color: rgb(164, 26, 45);
}

#aoc .aoc-gtog-theme .aoc-g2g-atc-page-nav .aoc-g2g-atc-page-nav--list li:nth-child(4n+3) .aoc-g2g-atc-page-nav_container-left h4 {
  color: rgb(164, 26, 45);
}

#aoc .aoc-gtog-theme .aoc-g2g-atc-page-nav .aoc-g2g-atc-page-nav--list li:nth-child(4n+4) .aoc-g2g-atc-page-nav_container-left {
  border-top-color: rgb(111, 82, 82);
}

#aoc .aoc-gtog-theme .aoc-g2g-atc-page-nav .aoc-g2g-atc-page-nav--list li:nth-child(4n+4) .aoc-g2g-atc-page-nav_container-left h4 {
  color: rgb(111, 82, 82);
}

#aoc .aoc-gtog-theme .aoc-header .aoc-header__nav-bar-item.selected li a {
  color: #fff;
}

#aoc .aoc-gtog-theme .aoc-header .aoc-header__nav-bar-item.selected li:hover {
  background: #fff;
}

#aoc .aoc-gtog-theme .aoc-header .aoc-header__nav-bar-item.selected li:hover a,
#aoc .aoc-gtog-theme .aoc-header .aoc-header__nav-bar-item.selected li:hover a:hover {
  color: rgb(76, 86, 139) !important;
}

#aoc .aoc-gtog-theme .portlet-column.portlet-column-only.col-md-12:has(.aoc-subpage-banner) {
  padding-left: 0;
  padding-right: 0;
}

#aoc .aoc-gtog-theme .aoc-page-title,
#aoc .aoc-gtog-theme h4 {
  font-family: "Alright Sans CE Bd", sans-serif;
  color: #49548d;
  font-size: 29px;
  line-height: 32px;
  margin: 0;
  padding-bottom: 15px;
  padding-top: 15px;
  text-transform: uppercase;
}

#aoc .aoc-gtog-theme h4 {
  padding-top: 0;
}

#aoc .aoc-gtog-theme .aoc-accordion__header {
  min-height: 3.41176em;
  padding: 15px 0;
  height: auto;
}

@media screen and (min-width: 769px) {
  #aoc .aoc-gtog-theme .aoc-subpage-banner {
    min-height: 163px;
  }

  #aoc .aoc-gtog-theme .aoc-subpage-banner > div {
    align-items: center;
    display: flex;
  }

  #aoc .aoc-gtog-theme .aoc-subpage-banner > div h2 {
    font-size: 80px;
    line-height: 90px;
    transform: translateY(-5px);
  }
}

@media screen and (max-width: 512px) {
  #aoc .aoc-gtog-theme #aoc .aoc-subpage-banner {
    padding-bottom: 18px;
  }
}

#aoc .aoc-gtog-theme .aoc-g2g-atc-container_content-display {
  font-size: 38.2px !important;
  line-height: 50.4px !important;
}

#aoc .aoc-gtog-theme h2[style="margin-left: 80px;"],
#aoc .aoc-gtog-theme p[style="margin-left: 80px;"] {
  margin-left: 75px !important;
  margin-right: 15px !important;
}

@media screen and (max-width: 568px) {
  #aoc .aoc-gtog-theme h2[style="margin-left: 80px;"],
  #aoc .aoc-gtog-theme p[style="margin-left: 80px;"] {
    margin-left: 30px !important;
    margin-right: 15px !important;
  }
}

#aoc .aoc-gtog-theme h2[style="margin-left: 80px;"] {
  font-size: 30.8px !important;
  /*   30.8px!important;*/
}

#aoc .aoc-gtog-theme h2[style="margin-left: 80px;"] span[style="font-size:36px;"] {
  display: inline-block;
  font-weight: 400 !important;
  font-family: "Alright Sans CE Lt";
}

#aoc .aoc-gtog-theme h2[style="margin-left: 80px;"] span[style="font-size:36px;"]:first-of-type {
  text-indent: -0.75ch;
}

#aoc .aoc-gtog-theme h2[style="margin-left: 80px;"] span[style="font-size:36px;"] strong {
  font-weight: 400 !important;
  font-family: "Alright Sans CE Lt" !important;
}

#aoc .aoc-gtog-theme .aoc-center-content__block.aoc-post:has(p[style="margin-left: 80px;"]) {
  /*background: #fff;
  background-repeat: repeat-x;
  background-image: radial-gradient(#404a7f 3.25px, transparent 0);
  background-size: 20px 20px;
  background-position: -4px -4px;
  width: 100%;*/
  border-top: none;
  text-transform: uppercase;
}

#aoc .aoc-gtog-theme .journal-content-article:has(article + article) article:last-child:after {
  content: "";
  display: block;
  height: 10px;
  width: 100%;
  background: #fff;
  background-repeat: repeat-x;
  background-image: radial-gradient(#404a7f 3.25px, transparent 0%);
  background-size: 20px 20px;
  background-position: -4px -4px;
  width: 100%;
  border-top: none;
  margin-top: 45px;
}

#aoc .aoc-gtog-theme .aoc-header {
  padding-bottom: 0;
}

#aoc .aoc-gtog-theme #p_p_id_1_WAR_webformportlet_INSTANCE_B95JqYW7PBPx_ {
  width: 100%;
  max-width: 1366px;
  margin: auto;
}

#aoc .aoc-gtog-theme #p_p_id_1_WAR_webformportlet_INSTANCE_B95JqYW7PBPx_ .portlet-body {
  width: 65%;
}

#aoc .aoc-gtog-theme #p_p_id_1_WAR_webformportlet_INSTANCE_B95JqYW7PBPx_ .portlet-borderless-container {
  padding-left: 46px;
}

@media screen and (max-width: 1080px) {
  #aoc .aoc-gtog-theme #p_p_id_1_WAR_webformportlet_INSTANCE_B95JqYW7PBPx_ .portlet-borderless-container {
    padding-left: 26px;
  }
}

#aoc .aoc-gtog-theme .aoc-no-top-border .social-page-title,
#aoc .aoc-gtog-theme .aoc-ntb .social-page-title {
  border-top: none !important;
}

@media screen and (max-width: 564px) {
  #aoc .aoc-gtog-theme .aoc-g2g-atc-container picture img {
    min-height: 320px;
    object-fit: cover;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  #aoc .aoc-gtog-theme .layout-1-3 .flex-container {
    flex-direction: column;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  #aoc .aoc-gtog-theme .layout-1-3 .portlet-layout.flex-container #column-1,
  #aoc .aoc-gtog-theme .layout-1-3 .portlet-layout.flex-container #column-2,
  #aoc .aoc-gtog-theme .layout-1-3 .portlet-layout.flex-container #column-3,
  #aoc .aoc-gtog-theme .layout-1-3 .portlet-layout.flex-container #column-4 {
    flex: 1 100%;
    max-width: 100%;
    margin: 0 0 11px;
    width: 100%;
  }
}

#aoc .aoc-gtog-theme .portlet-forms-display .ddm-form-builder-app,
#aoc .aoc-gtog-theme .portlet-forms-display .ddm-field-container,
#aoc .aoc-gtog-theme .portlet-forms-display .col-ddm.col-md-12,
#aoc .aoc-gtog-theme .portlet-forms-display .portlet-column.col-md-7.yui3-dd-drop {
  padding: 0;
}

#aoc .aoc-gtog-theme .portlet-forms-display .ddm-form-builder-app {
  padding: 0 16px;
}

#aoc .aoc-gtog-theme .portlet-forms-display .lfr-ddm__default-page-header-title {
  color: #495493;
  font-family: "Alright Sans CE Lt Bd", sans-serif;
  font-weight: 700;
  font-size: 29.3333333333px;
  font-weight: 700;
  line-height: 29px;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 0;
}

#aoc .aoc-gtog-theme .portlet-forms-display .lfr-ddm__default-page-header-line {
  display: none;
}

#aoc .aoc-gtog-theme .portlet-forms-display .text-secondary:has(.reference-mark) {
  margin-bottom: 0 !important;
  padding-bottom: 0;
  padding-top: 0;
}

#aoc .aoc-gtog-theme .portlet-forms-display .description {
  font-family: "Alright Sans CE lt", sans-serif;
  font-size: 24px;
  line-height: 33.3333333333px;
}

#aoc .aoc-gtog-theme .portlet-forms-display .lfr-ddm-form-pagination-controls {
  padding-left: 0;
}

#aoc .aoc-gtog-theme .portlet-forms-display .btn.btn-primary {
  background: #404a7f;
  font-family: "Alright Sans CE Lt Bd", sans-serif;
  text-transform: uppercase;
  font-size: 21.3333333333px;
  display: inline-block;
  padding-left: 45px;
  padding-right: 45px;
}

#aoc .aoc-gtog-theme .portlet-forms-display .ddm-label {
  font-size: 18.6666666667px;
  text-transform: uppercase;
}

#aoc .aoc-gtog-theme .portlet-forms-display .reference-mark svg {
  display: none;
}

#aoc .aoc-gtog-theme .portlet-forms-display .reference-mark:before {
  content: " *";
  color: #495493;
  font-size: 21.3333333333px;
}

#aoc .aoc-gtog-theme .portlet-forms-display input[tyoepe=text],
#aoc .aoc-gtog-theme .portlet-forms-display .form-control {
  background-color: #fafafa;
  border: 1px solid #ccc;
  height: 44px;
  margin-bottom: 23px;
  padding: 10px;
  width: 100%;
  max-width: 704px;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

#aoc .aoc-gtog-theme .aoc-button,
#aoc .aoc-gtog-theme .aoc-form__input--file + label,
#aoc .aoc-gtog-theme .icon-circle-arrow-left.previous-level:after,
#aoc .aoc-gtog-theme button,
#aoc .aoc-gtog-theme .aoc-donate-button-container .aoc-donate-button,
#aoc .aoc-donate-button-container .aoc-gtog-theme .aoc-donate-button {
  font-family: "Alright Sans CE Lt Bd", sans-serif;
  text-transform: uppercase;
  font-size: 21.3333333333px;
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article .aoc-accordion__body p {
  font-size: 18.6666666667px;
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article .aoc-accordion__body p:last-child:after {
  display: none;
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article p {
  font-size: 18.6666666667px;
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article p:last-child:after {
  display: none;
}

#aoc .aoc-gtog-theme .aoc-stand-border,
#aoc .aoc-gtog-theme .aoc-center-content__block.aoc-post {
  background: #fff;
  background-repeat: repeat-x;
  background-image: radial-gradient(#404a7f 3.25px, transparent 0%);
  background-size: 20px 20px;
  background-position: -4px -4px;
  width: 100%;
  border-top: none;
  padding-top: 33px;
}

#aoc .aoc-gtog-theme .aoc-post__content {
  font-family: "Alright Sans CE lt", sans-serif;
  font-size: 24px;
  line-height: 33.3333333333px;
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article p {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 30px !important;
  /* &:not([style="margin-left: 80px;"]):last-child:after {
    content: "";
    display: block;
    height: 10px;
    width: 100%;
    background: #fff;
    background-repeat: repeat-x;
    background-image: radial-gradient(#404a7f 3.25px, transparent 0%);
    background-size: 20px 20px;
    background-position: -4px -4px;
    width: 100%;
    border-top: none;
    margin-top: 65px;
  } */
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article ul li {
  font-size: 18.6666666667px;
  line-height: 28px;
  margin-bottom: 5px;
}

#aoc .aoc-gtog-theme q {
  display: block;
  margin-bottom: 30px;
}

#aoc .aoc-gtog-theme p:has(q, blockquote, .quote, .quot) + p {
  font-size: 20px !important;
  line-height: 30px !important;
  color: #535989 !important;
  margin-left: 51px;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-gtog-theme p:has(q, blockquote, .quote, .quot) + p {
    margin-left: 12px;
  }
}

#aoc .aoc-gtog-theme p:has(q, blockquote, .quote, .quot) + p:before {
  content: "—";
  display: inline-block;
  margin-right: 10px;
}

#aoc .aoc-gtog-theme q,
#aoc .aoc-gtog-theme blockquote,
#aoc .aoc-gtog-theme .quote,
#aoc .aoc-gtog-theme .quot {
  font-family: "Alright Sans CE lt", sans-serif;
  color: #535989 !important;
  font-size: 26px !important;
  font-weight: 700;
  line-height: 40px !important;
  margin-left: 80px;
  padding-left: 0 !important;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-gtog-theme q,
  #aoc .aoc-gtog-theme blockquote,
  #aoc .aoc-gtog-theme .quote,
  #aoc .aoc-gtog-theme .quot {
    margin-left: 30px;
    margin-right: 30px;
  }
}

#aoc .aoc-gtog-theme q:before,
#aoc .aoc-gtog-theme blockquote:before,
#aoc .aoc-gtog-theme .quote:before,
#aoc .aoc-gtog-theme .quot:before {
  font-family: "Alright Sans CE bd", sans-serif;
  content: "“" !important;
  font-size: 36px !important;
  margin-left: -21px;
}

#aoc .aoc-gtog-theme q:after,
#aoc .aoc-gtog-theme blockquote:after,
#aoc .aoc-gtog-theme .quote:after,
#aoc .aoc-gtog-theme .quot:after {
  content: "”" !important;
  font-family: "Alright Sans CE bd", sans-serif;
  font-size: 36px !important;
}

#aoc .aoc-gtog-theme q + p,
#aoc .aoc-gtog-theme blockquote + p,
#aoc .aoc-gtog-theme .quote + p,
#aoc .aoc-gtog-theme .quot + p {
  font-size: 20px !important;
  line-height: 30px !important;
  color: #535989 !important;
  margin-left: 51px;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-gtog-theme q + p,
  #aoc .aoc-gtog-theme blockquote + p,
  #aoc .aoc-gtog-theme .quote + p,
  #aoc .aoc-gtog-theme .quot + p {
    margin-left: 12px;
  }
}

#aoc .aoc-gtog-theme q + p:before,
#aoc .aoc-gtog-theme blockquote + p:before,
#aoc .aoc-gtog-theme .quote + p:before,
#aoc .aoc-gtog-theme .quot + p:before {
  content: "—";
  display: inline-block;
  margin-right: 10px;
}

#aoc .aoc-gtog-theme .portlet-content:has(.aoc-g2g-atc-page-nav) .autofit-float.autofit-row.portlet-header {
  display: none;
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article .aoc-g2g-atc-page-nav h3 {
  color: rgb(73, 84, 141);
  font-size: 29.3333333333px;
  line-height: 32px;
  text-transform: uppercase;
  margin: 0 0 40px 0;
  padding-top: 19px;
  /* dotted border
  background: #fff;
  background-repeat: repeat-x;
  background-image: radial-gradient(#404a7f 3.25px, transparent 0);
  background-size: 20px 20px;
  background-position: -4px -4px;*/
  width: 100%;
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article .aoc-g2g-atc-page-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article .aoc-g2g-atc-page-nav ul li {
  display: flex;
  margin: 0 0 32px;
  padding: 0;
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article .aoc-g2g-atc-page-nav ul li:nth-child(1) .aoc-g2g-atc-page-nav_container-left {
  background-image: radial-gradient(rgb(191, 77, 48) 2px, transparent 0);
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article .aoc-g2g-atc-page-nav ul li:nth-child(1) h4 {
  color: rgb(191, 77, 48);
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article .aoc-g2g-atc-page-nav ul li:nth-child(2) .aoc-g2g-atc-page-nav_container-left {
  background-image: radial-gradient(rgb(73, 84, 141) 2px, transparent 0);
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article .aoc-g2g-atc-page-nav ul li:nth-child(2) h4 {
  color: rgb(73, 84, 141);
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article .aoc-g2g-atc-page-nav ul li:nth-child(3) .aoc-g2g-atc-page-nav_container-left {
  background-image: radial-gradient(rgb(164, 26, 45) 2px, transparent 0);
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article .aoc-g2g-atc-page-nav ul li:nth-child(3) h4 {
  color: rgb(164, 26, 45);
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article .aoc-g2g-atc-page-nav ul li:nth-child(4) .aoc-g2g-atc-page-nav_container-left {
  background-image: radial-gradient(rgb(111, 82, 82) 2px, transparent 0);
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article .aoc-g2g-atc-page-nav ul li:nth-child(4) h4 {
  color: rgb(111, 82, 82);
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article .aoc-g2g-atc-page-nav ul li h4 {
  font-family: "Alright Sans CE Bd";
  font-size: 24px;
  line-height: 26.6666666667px;
  text-transform: none;
  width: calc(100% - 35px);
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article .aoc-g2g-atc-page-nav ul li .aoc-g2g-atc-page-nav_container-left-goal {
  font-family: "Alright Sans CE Bd";
  font-size: 18.6666666667px;
  font-weight: 700;
  margin-bottom: 30px;
  width: calc(100% - 35px);
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article .aoc-g2g-atc-page-nav ul li .aoc-g2g-atc-page-nav_container-left-blurb {
  font-size: 18.6666666667px;
  line-height: 24px;
  font-family: "Alright Sans CE Lt";
  width: calc(100% - 35px);
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article .aoc-g2g-atc-page-nav ul li a {
  color: #000;
  display: flex;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-gtog-theme .portlet-body .journal-content-article .aoc-g2g-atc-page-nav ul li a {
    flex-direction: column;
    /*	background-repeat: repeat-x;
      background-size: 11px 11px;
      background-position: -2px -2px;
      width: 100%;
      padding-top: 20px; */
  }
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article .aoc-g2g-atc-page-nav ul li .aoc-g2g-atc-page-nav_container-left {
  width: 59%;
  /* top border */
  border: none;
  background-repeat: repeat-x;
  background-image: radial-gradient(#bf4d30 2px, transparent 0);
  background-size: 9px 10px;
  background-position: -2px -2px;
  width: calc(100% - 259px);
  padding-top: 20px;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-gtog-theme .portlet-body .journal-content-article .aoc-g2g-atc-page-nav ul li .aoc-g2g-atc-page-nav_container-left {
    margin-bottom: 30px;
    width: 100%;
  }
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article .aoc-g2g-atc-page-nav ul li .picture {
  width: 100%;
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article .aoc-g2g-atc-page-nav ul li img {
  display: block;
  width: 370px;
}

#aoc .aoc-gtog-theme .portlet-body .journal-content-article .aoc-g2g-atc-page-nav ul li img {
  object-fit: cover;
  width: 100%;
}

#aoc .aoc-gtog-theme .col-md-12.portlet-column.portlet-column-only:has(.aoc-g2g-hph) {
  padding-left: 0;
  padding-right: 0;
}

#aoc .aoc-gtog-theme .border-top-form {
  width: 100%;
  max-width: 1244px;
  margin: auto;
  background-position: -4px -4px;
}

#aoc .aoc-gtog-theme .border-top-form .container-fluid.container-fluid-max-xl.ddm-form-builder-app.lfr-tooltip-scope {
  margin: auto;
  padding: 0;
}

@media screen and (max-width: 1363px) {
  #aoc .aoc-gtog-theme .border-top-form {
    margin-left: 50px;
    margin-right: 50px;
    width: calc(100% - 100px);
  }
}

@media screen and (max-width: 1090px) {
  #aoc .aoc-gtog-theme .border-top-form {
    margin-left: 25px;
    margin-right: 25px;
    width: calc(100% - 50px);
  }
}

#aoc .aoc-gtog-theme .border-top-form .lfr-ddm-form-page-description,
#aoc .aoc-gtog-theme .border-top-form .lfr-ddm-form-page-title {
  padding-left: 0;
}

#aoc .aoc-gtog-theme .border-top-form .ddm-row .position-relative.row {
  margin-left: 0;
  margin-right: 0;
}

#aoc .aoc-gtog-theme .border-top-form .fieldset-legend,
#aoc .aoc-gtog-theme .border-top-form .lfr-ddm__default-page-header-title {
  color: #495493;
  font-size: 29.3333333333px;
  font-family: "Alright Sans CE Lt Bd", sans-serif;
  font-weight: 700;
  background: #fff;
  background-repeat: repeat-x;
  background-image: radial-gradient(#404a7f 3.25px, transparent 0%);
  background-size: 20px 20px;
  background-position: -4px -4px;
  width: 100%;
  border-top: none;
  margin-bottom: 40px;
  padding-top: 40px;
  text-transform: uppercase;
}

#aoc .aoc-gtog-theme .border-top-form .fieldset-legend .legend,
#aoc .aoc-gtog-theme .border-top-form .lfr-ddm__default-page-header-title .legend {
  text-transform: uppercase;
  font-family: "Alright Sans CE Lt Bd", sans-serif;
  font-weight: 700;
  font-size: 29.3333333333px;
  font-weight: 700;
}

#aoc .aoc-gtog-theme .border-top-form .description,
#aoc .aoc-gtog-theme .border-top-form .lfr-ddm-form-page-description {
  font-family: "Alright Sans CE lt", sans-serif;
  font-size: 24px;
  line-height: 33.3333333333px;
}

#aoc .aoc-gtog-theme .border-top-form .control-group.input-text-wrapper {
  display: inline-block;
  width: 65%;
}

@media screen and (max-width: 767px) {
  #aoc .aoc-gtog-theme .border-top-form .control-group.input-text-wrapper {
    width: 100%;
  }
}

#aoc .aoc-gtog-theme .border-top-form .portlet-forms-display .lfr-ddm-form-pagination-controls {
  transform: none;
}

#aoc .aoc-gtog-theme .border-top-form .lfr-ddm-form-pagination-controls:has(.btn.btn-primary) {
  padding-top: 0;
  padding-left: 0;
}

#aoc .aoc-gtog-theme .border-top-form .btn.btn-primary {
  background: #404a7f;
  color: #fff;
  display: inline-block;
  margin-left: 0;
  padding-left: 45px;
  padding-right: 45px;
  text-transform: uppercase;
  /* &:before {
    font-family: "Alright Sans CE Lt Bd", sans-serif;
    text-transform: uppercase;
    color: #fff;
    content:"Subscribe";
    display: block;
  } */
}

@media screen and (max-width: 767px) {
  #aoc .aoc-gtog-theme .border-top-form .btn.btn-primary {
    margin-left: 0;
  }
}

#aoc .aoc-accordion__body span,
#aoc .aoc-accordion__body span p {
  padding-right: 43px !important;
  line-height: 27px;
}

#aoc .aoc-accordion__body span:has(p) {
  padding-right: 0px !important;
}

#aoc .aoc-accordion__body span {
  display: block;
}

#aoc #wrapper {
  margin: 0;
  padding: 0;
  /* Make the Footer sit at the bottom and allow the content to fill the space */
  display: flex;
  flex-flow: column;
  height: 100vh;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #aoc #wrapper {
    height: auto;
  }
}

#aoc #wrapper .aoc-header {
  flex: 1 0 auto;
}

#aoc #wrapper #content {
  flex: 1 2 100%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #aoc #wrapper #content {
    flex: 1 1 auto;
  }
}

#aoc #wrapper .aoc-footer {
  flex: 1 0 auto;
}

#aoc #wrapper:not(:root:root) {
  display: block;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-header {
    padding-top: 0;
  }
}

@media screen and (max-width: 799px) {
  #aoc .aoc-header__language-select {
    display: block;
  }

  #aoc .aoc-header__language-select div {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

#aoc .aoc-language-toggle span {
  display: none;
}

#aoc .aoc-language-toggle a {
  text-transform: capitalize;
}

#aoc .aoc-header__language:first-of-type {
  border-right: none;
}

#aoc .aoc-header__language a:first-of-type {
  border-right: 1px solid #000;
  padding-left: 0;
  padding-right: 10px;
}

#aoc .aoc-subsite-header__subtitle {
  line-height: 60px;
}

#aoc .aoc-center-content__intro {
  margin-top: -3px;
}

#aoc .aoc-post__content h5 + ul {
  margin-top: 10px;
}

#aoc .aoc-post__content ul li ul {
  margin-top: 10px;
}

#aoc .aoc-center-content p.aoc-intro-author {
  color: #4d4d4d;
  line-height: 2em;
  margin-bottom: 20px;
}

@media screen and (max-width: 520px) {
  #aoc .aoc-center-content p.aoc-intro-author {
    line-height: normal;
  }
}

#aoc .aoc-schedule tr:last-child {
  border-bottom: none;
}

#aoc .portlet-boundary:last-of-type .aoc-schedule tr {
  border-bottom: 1px solid #ccc;
}

#aoc .aoc-directory-list .aoc-ul__unstyled li,
#aoc .aoc-directory-list .aoc-sidenav .aoc-sidenav__list li,
#aoc .aoc-sidenav .aoc-directory-list .aoc-sidenav__list li,
#aoc .aoc-directory-list .aoc-sidenav .aoc-sidenav__sublist li,
#aoc .aoc-sidenav .aoc-directory-list .aoc-sidenav__sublist li,
#aoc .aoc-directory-list .aoc-nav-bar__sublist li,
#aoc .aoc-directory-list .aoc-sublist__dropdown li {
  margin-bottom: 0;
}

#aoc .col-2-video {
  display: flex;
}

@media screen and (max-width: 520px) {
  #aoc .col-2-video {
    flex-direction: column;
  }
}

#aoc .col-2-video .embed-container {
  flex: 1 6 auto;
}

@media screen and (max-width: 520px) {
  #aoc .col-2-video .embed-container {
    flex: 1 1 auto;
  }
}

#aoc .col-2-video .embed-container:first-child {
  margin-right: 18px;
}

@media screen and (max-width: 520px) {
  #aoc .col-2-video .embed-container:first-child {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 480px) {
  #aoc .aui .slick-lightbox-close,
  #aoc label.radio input .slick-lightbox-close {
    position: absolute;
    top: 0;
    right: 15px;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    background: transparent;
    color: transparent;
    padding: 0;
    border: none;
  }

  #aoc .aui .slick-lightbox-close:before,
  #aoc label.radio input .slick-lightbox-close:before {
    font-family: sans-serif;
    content: "x";
    font-size: 60px;
    font-weight: 100;
  }

  #aoc .aui .slick-initialized .slick-slide,
  #aoc label.radio input .slick-initialized .slick-slide {
    overflow-y: auto;
  }

  #aoc .aui .slick-lightbox-slick-item-inner,
  #aoc label.radio input .slick-lightbox-slick-item-inner {
    vertical-align: top;
    padding-top: 30px;
  }

  #aoc .aui .slick-slide img,
  #aoc label.radio input .slick-slide img {
    display: block;
    height: auto;
    width: 100vw;
    margin-top: 30px;
  }

  #aoc .aui .slick-lightbox-slick .slick-prev,
  #aoc label.radio input .slick-lightbox-slick .slick-prev {
    z-index: 30;
  }

  #aoc .aui .slick-lightbox-slick-caption,
  #aoc label.radio input .slick-lightbox-slick-caption {
    font-size: 14px;
  }

  #aoc .aui .slick-lightbox-slick-item-inner,
  #aoc label.radio input .slick-lightbox-slick-item-inner {
    width: 100%;
  }
}

@media screen and (max-width: 846px) {
  #aoc .aui .slick-lightbox-close:before,
  #aoc label.radio input .slick-lightbox-close:before {
    font-family: sans-serif;
    content: "x";
    font-size: 60px;
    font-weight: 100;
  }

  #aoc .aui .slick-lightbox-close,
  #aoc label.radio input .slick-lightbox-close {
    position: absolute;
    top: 0;
    right: 15px;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    background: transparent;
    color: transparent;
    padding: 0;
    border: none;
  }

  #aoc .aui .slick-initialized .slick-slide,
  #aoc label.radio input .slick-initialized .slick-slide {
    overflow-y: auto;
  }

  #aoc .aui .slick-lightbox-slick-caption,
  #aoc label.radio input .slick-lightbox-slick-caption {
    font-size: 14px;
  }
}

#aoc .aoc-footer__second-half .aoc-footer__col .aoc-footer-nav__item:nth-child(4) {
  margin-top: 0;
}

/*-----------------------------------

    Custom Styles outside the #aoc

-------------------------------------*/

*,
html.aui,
body {
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 799px) {
  body,
  .aui body,
  #aoc label.radio input body {
    padding: 0;
  }
}

@media screen and (min-width: 1025px) {
  .aoc-hero-banner-aapeal {
    margin-top: -18px;
  }
}

#aoc .aoc-hero-banner-aapeal .aoc-slider__title {
  overflow: hidden;
}

#aoc .aoc-hero-banner-aapeal .aoc-slider.owl-carousel h1.aoc-slider__title em {
  font-size: 42px;
  line-height: 48px;
  margin-bottom: 20px;
}

#aoc .aoc-hero-banner-aapeal .aoc-slider.owl-carousel h1.aoc-slider__title span {
  display: block;
  font-family: "Alright Sans CE Bd", sans-serif;
  font-size: 1.5rem;
  /* 18pt; */
  line-height: 24px;
  height: auto;
  max-width: 415px;
  margin-left: 0;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  #aoc .aoc-hero-banner-aapeal .aoc-slider.owl-carousel h1.aoc-slider__title span {
    font-family: "Alright Sans CE Bd", sans-serif;
  }
}

#aoc .aoc-fcc-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 18px auto 2.125rem auto;
  max-width: 1366px;
  /* 930px; */
  padding: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (min-width: 769px) {
  #aoc .aoc-fcc-list,
  .aui .aoc-aapeal-tribute,
  #aoc label.radio input .aoc-aapeal-tribute {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media screen and (max-width: 960px) {
  #aoc .aoc-fcc-list {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  #aoc .aoc-fcc-list {
    flex-wrap: wrap;
    margin-left: 22px;
    margin-right: 22px;
  }
}

#aoc .aoc-fcc-list li {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: max-content max-content max-content;
  gap: 0px 0px;
  grid-template-areas: "aoc-fcc-title-block" "aoc-fcc-content-blurb" "aoc-fcc-link-block";
  margin: 0 0 2.33rem 0;
  max-width: unset;
  padding: 0;
  width: calc(25% - 12px);
}

@media screen and (max-width: 960px) {
  #aoc .aoc-fcc-list li {
    max-width: max-content;
    width: calc(50% - 18px);
  }
}

@media screen and (max-width: 580px) {
  .aui #aoc .aoc-fcc-list li,
  #aoc label.radio input #aoc .aoc-fcc-list li {
    margin: 0 0 3.53rem 0;
    max-width: max-content;
    width: 100%;
  }

  .aui #aoc .aoc-fcc-list li .aoc-fcc-content-blurb,
  #aoc label.radio input #aoc .aoc-fcc-list li .aoc-fcc-content-blurb {
    margin-bottom: 1.25rem;
  }
}

#aoc .aoc-fcc-list li .aoc-fcc-title-block {
  background-color: #D71920;
  background-position: center center;
  background-size: cover;
  color: #fff;
  margin-bottom: 1.75rem;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  grid-area: aoc-fcc-title-block;
}

/* #aoc .aoc-slider__link {
    display: block;
} */

@media screen and (max-width: 768px) {
  #aoc .aoc-fcc-list li .aoc-fcc-title-block {
    background-position: top center;
    padding-bottom: 66.66%;
  }
}

#aoc .aoc-fcc-list li .aoc-fcc-title-block h2 {
  font-size: 30px;
  line-height: 34px;
  left: 14px;
  margin: 0;
  position: absolute;
  top: 13px;
  width: calc(100% - 25px);
}

#aoc .aoc-fcc-list li .aoc-fcc-content-blurb {
  grid-area: aoc-fcc-content-blurb;
  font-weight: 200;
  font-size: 1.166rem;
  line-height: 1.5rem;
  margin-bottom: 2.33rem;
}

#aoc .aoc-fcc-list li .aoc-fcc-link-block {
  grid-row-end: none !important;
  display: flex;
  align-items: flex-end;
  grid-area: aoc-fcc-link-block;
}

#aoc .aoc-fcc-list li .aoc-fcc-link-block a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #0d5e7a;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
  font-family: "Alright Sans CE Bd", sans-serif;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  min-height: 43px;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.aoc-aapeal-tribute hr {
  height: 4px;
  background-color: #73b564;
  margin: 10px 0 0 0;
}

.aui .aoc-aapeal-tribute h2,
#aoc label.radio input .aoc-aapeal-tribute h2 {
  font-family: "Alright Sans CE Bd", sans-serif;
  color: #73b564;
  font-size: 3rem;
  padding-top: 1.0625rem;
  margin-bottom: 1.3125rem;
}

.aui .aoc-aapeal-tribute,
#aoc label.radio input .aoc-aapeal-tribute {
  font-weight: light;
  color: #000000;
  font-size: 2rem;
  line-height: 2.5rem;
  margin: 0 auto;
  max-width: 1366px;
  /* 930px; */
  padding-bottom: 2.125rem;
}

@media screen and (max-width: 768px) {
  .aui .aoc-aapeal-tribute,
  #aoc label.radio input .aoc-aapeal-tribute {
    margin-left: 22px;
    margin-right: 22px;
  }
}

#aoc .aoc-hero-banner-aapeal .aoc-slider__title em {
  font-style: normal;
}

@media screen and (min-width: 769px) {
  .aui #aoc .aoc-aapeal-tribute h2,
  #aoc label.radio input #aoc .aoc-aapeal-tribute h2 {
    font-size: 36px;
    line-height: 36px;
  }

  .aui #aoc .aoc-aapeal-tribute p,
  #aoc label.radio input #aoc .aoc-aapeal-tribute p {
    font-size: 24px;
    line-height: 30px;
  }
}

@media screen and (max-width: 768px) {
  .aui #aoc .aoc-hero-banner-aapeal h1.aoc-slider__title em,
  #aoc label.radio input #aoc .aoc-hero-banner-aapeal h1.aoc-slider__title em {
    font-weight: 100;
    font-size: 24px !important;
    display: block;
    font-style: normal;
    line-height: 30px !important;
    margin-bottom: 0 !important;
  }

  .aui #aoc .aoc-aapeal-tribute h2,
  #aoc label.radio input #aoc .aoc-aapeal-tribute h2 {
    font-size: 28px;
    line-height: 28px;
  }

  .aui #aoc .aoc-aapeal-tribute p,
  #aoc label.radio input #aoc .aoc-aapeal-tribute p {
    font-size: 18px;
    line-height: 24px;
  }
}

/* aoc upgrade to 74 */

#aoc .aoc-search-bar__button {
  background: url("/o/aoc-theme/resources/img/search-icon-md.png") no-repeat center center;
  background-size: 25px 25px;
}

/* confirmed missing styles */

/* left side navigation for 2 / 3 column layout */

#aoc #main-content .navbar-nav {
  flex-direction: column;
  /* */
}

/* updates for side navigation */

#aoc #main-content .aoc-sidenav .selected.aoc-sidenav__item__has-children .aoc-sidenav__sublist,
#aoc #main-content .aoc-sidenav .aoc-sidenav__item__has-children--show .aoc-sidenav__sublist {
  display: block;
  max-width: unset;
  position: relative;
  z-index: unset;
}

#aoc #main-content .aoc-sidenav .aoc-sidenav__item__has-children,
#aoc #main-content .aoc-sidenav .aoc-sidenav__item__has-children--show {
  align-items: flex-start;
  flex-direction: column;
}

#aoc #main-content .aoc-sidenav .aoc-sidenav__item__has-children .aoc-sidenav__sublist.dropdown-menu,
#aoc #main-content .aoc-sidenav .aoc-sidenav__item__has-children--show .aoc-sidenav__sublist.dropdown-menu {
  border: none;
}

#aoc .aoc-sidenav .selected.aoc-sidenav__item__has-children:after {
  display: none;
}

#aoc .aoc-sidenav a,
#aoc .aoc-sidenav .aoc-sidenav__list li a,
#aoc .aoc-sidenav .aoc-sidenav__sublist,
#aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a {
  padding-right: 8px;
  width: 100%;
}

#aoc .aoc-sidenav a .text-truncate.span-full {
  display: flex;
  justify-content: space-between;
  white-space: normal;
  width: 100%;
}

#aoc .aoc-sidenav a .text-truncate.span-full svg {
  background: url("/o/aoc-theme/resources/img/arrow-next-gray.svg") no-repeat;
  background-size: 15px 20px;
  color: transparent;
  height: 20px;
  width: 15px;
}

#aoc .slick-lightbox-slick .slick-next {
  background: url("/o/aoc-theme/resources/img/arrow-next-gray.svg") no-repeat;
}

#aoc .aoc-sidenav .selected.aoc-sidenav__item__has-children a .text-truncate.span-full svg {
  background: url("/o/aoc-theme/resources/img/arrow-next.svg") no-repeat;
  background-size: 15px 20px;
  transform: rotate(90deg);
}

#aoc .aoc-sidenav .lfr-nav-item.nav-item.dropdown.aoc-sidenav__item__has-children--show a .text-truncate.span-full svg {
  background: url("/o/aoc-theme/resources/img/arrow-next-gray.svg") no-repeat;
  background-size: 20px 20px;
  transform: rotate(90deg);
}

/* addresses hover state on side nav's 3rd level */

#aoc .aoc-sidenav .aoc-sidenav__list li:hover .aoc-sidenav__sublist li:not(.active.selected) a:hover {
  background: #E8EEF3;
}

/* addresses control spacing issue when not logged in or logged in with controls hidden, when controls visible spacing issue currently happenfm */

.controls-hidden #aoc .autofit-float.autofit-row.portlet-header,
.signed-out #aoc .autofit-float.autofit-row.portlet-header {
  display: none;
}

.aui #aoc .aoc-sidenav a,
#aoc label.radio input #aoc .aoc-sidenav a {
  font-size: 17px;
  line-height: normal;
}

#aoc .aoc-header .aoc-header__nav-bar-item.selected li a {
  color: #fff;
}

/* liferay 74 adjustment to correct spacing on side navigation */

#aoc #main-content .aoc-sidenav .aoc-sidenav__item__has-children .aoc-sidenav__sublist.dropdown-menu,
#aoc #main-content .aoc-sidenav .aoc-sidenav__item__has-children--show .aoc-sidenav__sublist.dropdown-menu {
  padding: 0 0 0 0.82353em;
}

.aui #aoc #main-content p,
#aoc label.radio input #aoc #main-content p {
  margin-bottom: 10px;
}

.aui #aoc ul.aoc-social-media,
#aoc label.radio input #aoc ul.aoc-social-media {
  padding-bottom: 0.47059em;
}

.aui #aoc .social-page-title,
#aoc label.radio input #aoc .social-page-title {
  line-height: 20px;
}

.aui #aoc .col-md-12.portlet-column.portlet-column-only:has(.aoc-slider.owl-carousel.aoc-slider-js.owl-loaded.owl-drag),
#aoc label.radio input #aoc .col-md-12.portlet-column.portlet-column-only:has(.aoc-slider.owl-carousel.aoc-slider-js.owl-loaded.owl-drag) {
  padding-right: 0;
  padding-left: 0;
}

.aui #aoc .aoc-slider,
#aoc label.radio input #aoc .aoc-slider {
  height: auto;
}

.aui #aoc .aoc-slider__img-mobile,
#aoc label.radio input #aoc .aoc-slider__img-mobile {
  background-size: cover;
  background-position: 50%;
  height: 100%;
  width: 100%;
}

.journal-content-article:has(.aoc-slider.owl-carousel.aoc-slider-js.owl-loaded.owl-drag) {
  max-height: 512px;
  overflow: hidden;
}

@media screen and (max-width: 1023px) {
  .journal-content-article:has(.aoc-slider.owl-carousel.aoc-slider-js.owl-loaded.owl-drag) {
    max-height: 384px;
  }
}

#aoc .layout-1-3 .flex-container #column-2,
#aoc .layout-1-2 .flex-container #column-2 {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
  margin-right: 18px;
}

#aoc .layout-1-3 .flex-container #column-3 {
  -webkit-box-flex: 7;
  -ms-flex: 7;
  flex: 7;
  margin: 0;
}

#aoc .layout-1-3 .flex-container #column-4 {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  margin-left: 18px;
  margin-right: auto;
}

/* content slider updates */

#aoc .aoc-content-aware-slider .aoc-slider__img-mobile,
.aui #aoc .aoc-content-aware-slider .aoc-slider__img-mobile {
  background-size: contain;
  background-repeat: no-repeat;
}

.aui #aoc .aoc-content-aware-slider .aoc-slider__img-mobile,
#aoc label.radio input #aoc .aoc-content-aware-slider .aoc-slider__img-mobile {
  background-position: 50% 0;
}

@media screen and (max-width: 1023px) {
  .aui #aoc .aoc-content-aware-slider .aoc-slider__img-mobile,
  #aoc label.radio input #aoc .aoc-content-aware-slider .aoc-slider__img-mobile {
    background-position: 50%;
    background-size: cover;
  }
}

.aui #aoc .aoc-content-aware-slider .aoc-slider__img-mobile,
#aoc label.radio input #aoc .aoc-content-aware-slider .aoc-slider__img-mobile,
.aoc-slider.owl-carousel.aoc-slider-js.aoc-content-aware-slider {
  max-width: 718px;
}

@media screen and (max-width: 1023px) {
  .aui #aoc .aoc-content-aware-slider .aoc-slider__img-mobile,
  #aoc label.radio input #aoc .aoc-content-aware-slider .aoc-slider__img-mobile,
  .aoc-slider.owl-carousel.aoc-slider-js.aoc-content-aware-slider {
    max-width: calc(100vw - 60px);
  }
}

@media screen and (max-width: 520px) {
  .aui #aoc .aoc-content-aware-slider .aoc-slider__img-mobile,
  #aoc label.radio input #aoc .aoc-content-aware-slider .aoc-slider__img-mobile,
  .aoc-slider.owl-carousel.aoc-slider-js.aoc-content-aware-slider {
    max-width: calc(100vw - 40px);
  }
}

@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .aoc-slider.owl-carousel.aoc-slider-js.aoc-content-aware-slider.owl-loaded.owl-drag {
    max-width: 54vw;
  }
}

@media screen and (max-width: 1329px) {
  .aui #aoc .aoc-slider.aoc-content-aware-slider,
  #aoc label.radio input #aoc .aoc-slider.aoc-content-aware-slider {
    max-height: 60vh;
  }
}

@media screen and (max-width: 1030px) {
  .aui #aoc .aoc-slider.aoc-content-aware-slider,
  #aoc label.radio input #aoc .aoc-slider.aoc-content-aware-slider {
    max-height: 57vh;
  }
}

/* end of content carousel */

/* applies the skip to content hidden link, for ada usage */

#skip-to-content {
  clip: rect(0 0 0 0);
  position: absolute;
}

/* safety quick code for mike's full width content on wills page */

.aui #aoc table[style="width: 73%; margin-left: auto; margin-right: auto;"],
#aoc label.radio input #aoc table[style="width: 73%; margin-left: auto; margin-right: auto;"] {
  max-width: 1300px !important;
  width: 100% !important;
}

@media screen and (max-width: 1400px) {
  .aui #aoc table[style="width: 73%; margin-left: auto; margin-right: auto;"],
  #aoc label.radio input #aoc table[style="width: 73%; margin-left: auto; margin-right: auto;"] {
    margin-right: 50px !important;
    margin-left: 50px !important;
    max-width: calc(100% - 100px) !important;
  }
}

@media screen and (max-width: 1090px) {
  .aui #aoc table[style="width: 73%; margin-left: auto; margin-right: auto;"],
  #aoc label.radio input #aoc table[style="width: 73%; margin-left: auto; margin-right: auto;"] {
    margin-right: 15px !important;
    margin-left: 15px !important;
    max-width: calc(100% - 30px) !important;
  }
}

/* addresses missing ul styles */

.aui ul,
#aoc label.radio input ul,
.aui ol,
#aoc label.radio input ol {
  padding: 0;
  margin: 0 0 10px 25px;
}

/* accordion spacing tweaks */

#aoc .aoc-accordion__body span,
#aoc .aoc-accordion__body span p,
#aoc .aoc-accordion__body p,
#aoc .aoc-accordion__body ul,
#aoc .aoc-accordion__body ol,
#aoc .aoc-accordion__body iframe {
  line-height: 27px;
  padding-right: 43px !important;
}

/* form tweaks */

#aoc .aoc-form__label,
#aoc label {
  line-height: 24px;
  margin-bottom: 9px;
  display: block;
}

.mc-field-group input {
  margin-bottom: 10px;
}

#aoc select {
  font-size: 18px;
  height: 34px;
  line-height: 44px;
  padding: 4px 6px;
}

.aui label,
#aoc label.radio input label,
.aui input,
#aoc label.radio input input,
.aui button,
#aoc label.radio input button,
.aui select,
#aoc label.radio input select,
.aui textarea,
#aoc label.radio input textarea {
  font-size: 14px;
  line-height: 20px;
}

/* mobile version of side navigation, style updates */

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__list .aoc-sidenav__item__has-children:first-child {
    border-top: none;
  }

  #aoc .aoc-sidenav .aoc-sidenav__list li a,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li a,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a {
    font-size: 1.23529em;
    line-height: normal;
    margin: 0;
    padding: 15px 30px;
  }
}

/* spacing issues, added padding on portlets */

.aui #aoc .portlet,
#aoc label.radio input #aoc .portlet {
  margin-bottom: 0;
}

@media screen and (max-width: 799px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li a:hover,
  #aoc .aoc-sidenav .aoc-sidenav__list li.aoc-sidenav__item__has-children.aoc-sidenav__item__has-children--show .aoc-sidenav__sublist li a:hover,
  #aoc .aoc-sidenav .aoc-sidenav__list li a,
  #aoc .aoc-sidenav .aoc-sidenav__sublist li.selected a {
    padding: 10px 20px !important;
  }
}

.aui body,
#aoc label.radio input body {
  line-height: 20px;
}

.aui h1,
#aoc label.radio input h1,
.aui h2,
#aoc label.radio input h2,
.aui h3,
#aoc label.radio input h3,
.aui h4,
#aoc label.radio input h4,
.aui h5,
#aoc label.radio input h5,
.aui h6,
#aoc label.radio input h6 {
  font-weight: bold;
}

/* ensure that youtube iframes do not blow page out */

#aoc iframe {
  margin-bottom: 5px;
  max-width: 100%;
}

/* please note height must be set as attribute on iframe at 315 and width must be set to 560  */

p:has(iframe[height="315"][width="560"][src^="https://www.youtube.com/"]) {
  margin-top: 30px;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}

p:has(iframe[height="315"][width="560"][src^="https://www.youtube.com/"]) iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

@media (max-width: 979px) {
  .aui.ios input,
  #aoc label.radio input.ios input,
  .aui.ios input.input-large,
  .aui.ios textarea,
  #aoc label.radio input.ios textarea,
  .aui.ios .uneditable-input,
  #aoc label.radio input.ios .uneditable-input {
    max-width: 90% !important;
  }
}

.mc-field-group input {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 2px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border linear 0.2s, box-shadow linear 0.2s;
}

/* address picture image margins on top and bottom */

#aoc picture img {
  margin-bottom: 0;
  margin-top: 0;
}

/* page title tweak, mostly for sub sites */

/* though may have to be revisited, depending on variances on sub sites coding */

/* commenting out for now as causes issues with schools sub-site, applied for deacons sub site
.journal-content-article[data-analytics-asset-title="Page Title - Global"]:has(h1.aoc-page-title) {
  padding-bottom: 15px;
} */

/* to make sure not to blow the central column out with slick slider carousel */

.aui #aoc .slick-track,
#aoc label.radio input #aoc .slick-track {
  max-width: calc(100% - 60px);
}

.aui #aoc .slick-track,
#aoc label.radio input #aoc .slick-track {
  margin: 0;
}

.aui #aoc .slick-track,
#aoc label.radio input #aoc .slick-track {
  min-width: max-content;
}

.aui #aoc .aoc-pub-image-slider-container,
#aoc label.radio input #aoc .aoc-pub-image-slider-container {
  max-width: 674px;
}

@media screen and (max-width: 1023px) {
  .aui #aoc .aoc-pub-image-slider-container,
  #aoc label.radio input #aoc .aoc-pub-image-slider-container {
    max-width: calc(100vw - 60px);
    width: 100vw;
  }
}

/* for slick slider arrows background images */

.aui #aoc .aoc-pub-image-slider__slides .slick-prev,
#aoc label.radio input #aoc .aoc-pub-image-slider__slides .slick-prev {
  background: url("/o/aoc-theme/resources/img/arrow-prev.svg") no-repeat;
}

.aui .slick-lightbox-slick .slick-prev,
#aoc label.radio input .slick-lightbox-slick .slick-prev {
  background-image: url("/o/aoc-theme/resources/img/arrow-prev.svg");
}

.aui .slick-lightbox-slick .slick-next,
#aoc label.radio input .slick-lightbox-slick .slick-next,
#aoc .aoc-pub-image-slider__slides .slick-next {
  background: url("/o/aoc-theme/resources/img/arrow-next.svg") no-repeat !important;
}

/* address oddness in mobile site navigation */

@media screen and (max-width: 1023px) {
  #aoc .aoc-header.aoc-header--subsite .aoc-header--subsite__links nav.aoc-top-nav {
    position: absolute;
  }
}

/* to make sure side navigation doesn't have scrollbar, changes max-height from 500px to max-content */

#aoc .aoc-sidenav .aoc-sidenav__sublist {
  max-height: max-content;
}

/* to pretty up photo gallery inside of accordion */

#aoc .aoc-accordion__body .aoc-pub-slider-counter__button {
  display: flex !important;
  align-items: center;
}

.aui #aoc .aoc-pub-image-slider__tabs .slick-track,
#aoc label.radio input #aoc .aoc-pub-image-slider__tabs .slick-track {
  margin: auto;
}

/* puts indicator on active slide for "tabs" */

@media screen and (min-width: 847px) {
  .aui #aoc .aoc-pub-image-slider__tabs .slick-slider-item.slick-slide .aoc-pub-image-slider__tabs--img,
  #aoc label.radio input #aoc .aoc-pub-image-slider__tabs .slick-slider-item.slick-slide .aoc-pub-image-slider__tabs--img {
    background: none !important;
    height: 80px !important;
  }

  .aui #aoc .aoc-pub-image-slider__tabs .slick-slider-item.slick-slide picture,
  #aoc label.radio input #aoc .aoc-pub-image-slider__tabs .slick-slider-item.slick-slide picture {
    position: absolute;
    display: block;
    top: 0px;
    bottom: 0px;
    max-height: fit-content;
    margin-bottom: 12px;
  }

  .aui #aoc .aoc-pub-image-slider__tabs .slick-slider-item.slick-slide picture img,
  #aoc label.radio input #aoc .aoc-pub-image-slider__tabs .slick-slider-item.slick-slide picture img {
    transition: border 0.5s;
  }

  .aui #aoc .aoc-pub-image-slider__tabs .slick-slider-item.slick-slide.slick-active.slick-current picture img,
  #aoc label.radio input #aoc .aoc-pub-image-slider__tabs .slick-slider-item.slick-slide.slick-active.slick-current picture img {
    border: 2px solid rgb(215, 25, 32);
  }
}

@media screen and (max-width: 846px) {
  .aui #aoc .aoc-pub-image-slider__tabs .slick-slider-item.slick-slide,
  #aoc label.radio input #aoc .aoc-pub-image-slider__tabs .slick-slider-item.slick-slide {
    border: 2px solid transparent;
    transition: border 0.5s;
  }

  .aui #aoc .aoc-pub-image-slider__tabs .slick-slider-item.slick-slide.slick-active.slick-current,
  #aoc label.radio input #aoc .aoc-pub-image-slider__tabs .slick-slider-item.slick-slide.slick-active.slick-current {
    border: 2px solid rgb(215, 25, 32);
  }

  .aui #aoc .aoc-pub-image-slider__tabs .slick-slider-item.slick-slide picture,
  #aoc label.radio input #aoc .aoc-pub-image-slider__tabs .slick-slider-item.slick-slide picture {
    display: none;
  }

  .aoc-pub-image-slider__tabs .slick-slider-item.slick-slide {
    max-height: fit-content;
  }
}

/* form tweaks for paypal forms */

form[action^="https://www.paypal.com/"] table input[type=text] {
  width: calc(100% - 30px);
  padding: 10px 5px;
}

form[action^="https://www.paypal.com/"] table td p {
  margin-top: 10px;
}

form[action^="https://www.paypal.com/"] table td select[name=os0] {
  max-width: calc(100% - 30px);
  width: max-content !important;
}

form[action^="https://www.paypal.com/"] + ul {
  margin-top: 10px;
}

/* cleans up liferay control kabbob spacing whilst logged in as an admin  */

.aui .signed-in #aoc .portlet-content.portlet-content-editable .autofit-col.autofit-col-end,
#aoc label.radio input .signed-in #aoc .portlet-content.portlet-content-editable .autofit-col.autofit-col-end {
  position: absolute;
  right: 0;
  z-index: 1001;
}

.aui .signed-in #aoc .portlet:hover .cadmin.portlet-topper,
#aoc label.radio input .signed-in #aoc .portlet:hover .cadmin.portlet-topper {
  z-index: 1001;
}

.aui .signed-in #aoc .portlet-content.portlet-content-editable .autofit-float.autofit-row.portlet-header,
#aoc label.radio input .signed-in #aoc .portlet-content.portlet-content-editable .autofit-float.autofit-row.portlet-header {
  margin-bottom: 0px;
}

.aui .signed-in #aoc .portlet-content.portlet-content-editable .dropdown-toggle.component-action.btn.btn-monospaced.btn-unstyled,
#aoc label.radio input .signed-in #aoc .portlet-content.portlet-content-editable .dropdown-toggle.component-action.btn.btn-monospaced.btn-unstyled {
  padding: 0;
}

html.aui:not(#__):not(#___) .signed-in #aoc .cadmin .lexicon-icon {
  fill: #92959c;
  transform: translateX(4.5px);
}

.aui .signed-in #aoc .portlet-content.portlet-content-editable .dropdown-toggle.component-action.btn.btn-monospaced.btn-unstyled,
#aoc label.radio input .signed-in #aoc .portlet-content.portlet-content-editable .dropdown-toggle.component-action.btn.btn-monospaced.btn-unstyled {
  transform: translateY(3px);
}

.aui .signed-in #aoc .portlet-content.portlet-content-editable .dropdown-toggle.component-action.btn.btn-monospaced.btn-unstyled span.inline-item,
#aoc label.radio input .signed-in #aoc .portlet-content.portlet-content-editable .dropdown-toggle.component-action.btn.btn-monospaced.btn-unstyled span.inline-item {
  align-items: center;
  display: flex;
  justify-content: center;
}

/* addresses legacy portlet controls, making them behavior a little better */

.controls-visible .asset-full-content.clearfix.mb-5.no-title .align-items-center.d-flex.mb-2:has(.component-title.h4) {
  float: right;
  transform: translateY(70px);
}

.controls-visible .asset-full-content.clearfix.mb-5.no-title .aoc-pub-classifieds-post {
  max-width: calc(100% - 40px);
}

.controls-visible .asset-full-content.clearfix.mb-5.no-title svg {
  color: #fff;
}

.controls-hidden .asset-full-content.clearfix.mb-5.no-title {
  margin-bottom: 0 !important;
}

.controls-hidden .asset-full-content.clearfix.mb-5.no-title .align-items-center.d-flex.mb-2:has(.component-title.h4) {
  display: none !important;
}

.controls-hidden .autofit-float.autofit-row.portlet-header,
.controls-hidden .asset-anchor.lfr-asset-anchor {
  display: none !important;
}

.aui #aoc .dropdown-toggle.component-action.btn:has(svg.lexicon-icon.lexicon-icon-ellipsis-v),
#aoc label.radio input #aoc .dropdown-toggle.component-action.btn:has(svg.lexicon-icon.lexicon-icon-ellipsis-v) {
  align-items: center;
  display: flex;
  justify-content: center;
}

/* addresses issue with audio file player looking odd in accordion, normalizes between accordion player and non-accordion */

#aoc .aoc-audio-player .status-box p,
#aoc .aoc-audio-player .aoc-accordion__body span .status-box p {
  /*align-items: center; */
  white-space: nowrap;
  display: flex;
  margin-bottom: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  /*justify-content: flex-end;*/
  max-width: calc(100% - 45px);
  transform: translateX(-10px);
}

#aoc .aoc-audio-player .status-box,
#aoc .aoc-audio-player .aoc-accordion__body span .status-box {
  align-items: flex-start;
  display: flex;
  max-width: calc(100% - 45px);
  justify-content: center;
  padding: 0;
}

#aoc .aoc-audio-player.active .status-box p,
#aoc .input-text-wrapper input.aoc-audio-player:active .status-box p,
#aoc .aoc-audio-player.active .aoc-accordion__body span .status-box p {
  transform: translateX(0);
}

/* radio tv 4 columns landing page tile */

#aoc .aoc-radio-tv--tiles .aoc-thumbnails__thumbnail {
  flex: 1 0 23.5%;
  font-size: 0;
  margin: 9px 1.4% 0 0;
  max-width: 23.5%;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-radio-tv--tiles .aoc-thumbnails__thumbnail {
    flex: 1 0 31.5%;
    font-size: 0;
    margin: 9px 1.4% 0 0;
    max-width: 31.5%;
  }
}

@media screen and (max-width: 599px) {
  #aoc .aoc-radio-tv--tiles .aoc-thumbnails__thumbnail {
    flex: 1 0 48.5%;
    font-size: 0;
    margin: 9px 1.4% 0 0;
    max-width: 48.5%;
  }
}

/* content page type 3 column container */

#aoc .row.align-items-lg-start.align-items-sm-start.align-items-start.align-items-md-start.flex-lg-row.flex-sm-row.flex-row.flex-md-row {
  margin: 0 auto;
  max-width: 1366px;
}

@media screen and (min-width: 1024px) {
  #aoc .row.align-items-lg-start.align-items-sm-start.align-items-start.align-items-md-start.flex-lg-row.flex-sm-row.flex-row.flex-md-row:has(.col.col-lg-7.col-sm-7.col-7.col-md-7) {
    padding-left: 36px;
  }
}

#aoc .autofit-float.autofit-row.portlet-header {
  display: none;
}

/* allows banner to go full bleed on 7.4 */

#aoc .journal-content-article:has(.aoc-subpage-banner) {
  margin-left: -15px;
  margin-right: -15px;
}

/* for adjusts flow of columns on 7.4 */

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .layout-1-3 .flex-container {
    flex-direction: column;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .layout-1-3 .portlet-layout.flex-container #column-1,
  .layout-1-3 .portlet-layout.flex-container #column-2,
  .layout-1-3 .portlet-layout.flex-container #column-3,
  .layout-1-3 .portlet-layout.flex-container #column-4 {
    flex: 1 100%;
    max-width: 100%;
    margin: 0 0 11px;
    width: 100%;
  }
}

/* for content page banner full bleed */

#aoc .row.align-items-lg-start.align-items-sm-start.align-items-start.align-items-md-start.flex-lg-row.flex-sm-row.flex-row.flex-md-row:has(.aoc-subpage-banner) {
  max-width: unset;
}

@media screen and (max-width: 1023px) {
  #aoc .layout-content.portlet-layout[role=main]:has(.aoc-subpage-banner) .flex-row.flex-md-row {
    flex-direction: column;
  }

  #aoc .layout-content.portlet-layout[role=main]:has(.aoc-subpage-banner) .flex-row.flex-md-row .col.col-lg-3.col-sm-3.col-3.col-md-3,
  #aoc .layout-content.portlet-layout[role=main]:has(.aoc-subpage-banner) .flex-row.flex-md-row .portlet-column.portlet-column-first.col-md-3,
  #aoc .layout-content.portlet-layout[role=main]:has(.aoc-subpage-banner) .flex-row.flex-md-row .col.col-lg-2.col-sm-2.col-2.col-md-2,
  #aoc .layout-content.portlet-layout[role=main]:has(.aoc-subpage-banner) .flex-row.flex-md-row .col.col-lg-7.col-sm-7.col-7.col-md-7 {
    flex: 1 100%;
    max-width: 100%;
    width: 100%;
  }

  #aoc .layout-content.portlet-layout[role=main]:has(.aoc-subpage-banner) .flex-row.flex-md-row .col.col-lg-2.col-sm-2.col-2.col-md-2 {
    order: 3;
    margin-left: 16px;
    margin-right: 16px;
  }

  #aoc .layout-content.portlet-layout[role=main]:has(.aoc-subpage-banner) .flex-row.flex-md-row .col.col-lg-3.col-sm-3.col-3.col-md-3 {
    order: 2;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  #aoc .layout-content.portlet-layout[role=main]:has(.aoc-subpage-banner) .flex-row.flex-md-row .col.col-lg-3.col-sm-3.col-3.col-md-3 .aoc-search-social-mobile {
    margin-left: 0;
    margin-right: 0;
    padding: 0 16px;
    width: calc(100% - 32px);
  }

  #aoc .layout-content.portlet-layout[role=main]:has(.aoc-subpage-banner) .flex-row.flex-md-row .col.col-lg-7.col-sm-7.col-7.col-md-7 {
    order: 1;
    margin-left: 16px;
    margin-right: 16px;
  }
}

@media screen and (max-width: 1023px) {
  #aoc #column-3.portlet-column.col-md-7 {
    padding-left: 0;
    padding-right: 0;
  }
}

#aoc .aoc-header__top-row {
  margin: 1.1764705882em auto 41px;
}

#aoc .aoc-footer__second-half .aoc-footer__col .aoc-footer-nav__item:nth-child(4):has(a[href=""]) {
  display: none;
}

@media screen and (min-width: 1095px) {
  #aoc .aoc-sidenav__list {
    transform: translateX(-18px);
    width: calc(100% + 18px);
  }
}

@media screen and (max-width: 1095px) and (min-width: 1024px) {
  #aoc .aoc-sidenav__list {
    transform: translateX(-51px);
    width: calc(100% + 51px);
  }
}

#aoc .dropdown-menu {
  position: relative;
  max-width: unset;
  width: 100%;
}

#aoc .aoc-sidenav .aoc-sidenav__list li {
  flex-direction: column;
}

#aoc .aoc-sidenav .aoc-sidenav__list li.dropdown .child-menu.dropdown-menu {
  border: none;
  transition: max-height 0.5s;
}

#aoc .aoc-sidenav .aoc-sidenav__list li.dropdown:not(.selected):hover {
  /*&:before {
    content: "";
    background-color: #E8EEF3;
    display: inline-block;
    height: 33px;
    position: absolute;
    width: 100%;
  } */
}

@media screen and (min-width: 1024px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li.dropdown:not(.selected):hover {
    border: none;
  }
}

#aoc .aoc-sidenav .aoc-sidenav__list li.dropdown > a .lfr-nav-child-toggle {
  background: url("/o/aoc-theme/resources/img/arrow-next-gray.svg") no-repeat;
  transition: all 0.5s;
  cursor: s-resize;
}

#aoc .aoc-sidenav .aoc-sidenav__list li.dropdown > a .lfr-nav-child-toggle svg {
  visibility: hidden;
}

#aoc .aoc-sidenav .aoc-sidenav__list li.dropdown > a .lfr-nav-child-toggle.rotateArrow {
  transform: rotate(90deg);
  cursor: e-resize;
}

#aoc .aoc-sidenav .aoc-sidenav__list li.dropdown.selected > a .lfr-nav-child-toggle,
#aoc .aoc-sidenav .aoc-sidenav__list li.dropdown:has(.child-menu li.selected) > a .lfr-nav-child-toggle {
  background: url("/o/aoc-theme/resources/img/arrow-next.svg") no-repeat;
  transform: rotate(90deg);
  cursor: e-resize;
}

#aoc .aoc-sidenav .aoc-sidenav__list li.dropdown.selected > a .lfr-nav-child-toggle.rotateArrow,
#aoc .aoc-sidenav .aoc-sidenav__list li.dropdown:has(.child-menu li.selected) > a .lfr-nav-child-toggle.rotateArrow {
  transform: rotate(0deg);
  cursor: s-resize;
}

#aoc .aoc-sidenav .aoc-sidenav__list li.dropdown:has(.child-menu li.selected) > a .lfr-nav-child-toggle {
  background: url("/o/aoc-theme/resources/img/arrow-next-gray.svg") no-repeat;
  transform: rotate(90deg);
  cursor: e-resize;
}

#aoc .aoc-sidenav .aoc-sidenav__list li.dropdown:has(.child-menu li.selected) > a .lfr-nav-child-toggle.rotateArrow {
  transform: rotate(0deg);
  cursor: s-resize;
}

#aoc .aoc-sidenav .aoc-sidenav__list li.dropdown.toggleStateClick {
  border: none;
}

#aoc .aoc-sidenav .aoc-sidenav__list li.dropdown.toggleStateClick .child-menu {
  display: block !important;
  margin-left: 0px;
  margin-bottom: 0;
  border: none;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li.dropdown.toggleStateClick .child-menu li:first-child {
    border-top: 2px solid #d7d7d7;
  }
}

#aoc .aoc-sidenav .aoc-sidenav__list li.dropdown.toggleStateClick .child-menu li a {
  padding-left: 25px !important;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li.dropdown.toggleStateClick .child-menu {
    margin-left: 0px;
  }

  #aoc .aoc-sidenav .aoc-sidenav__list li.dropdown.toggleStateClick .child-menu li a {
    padding-left: 44px !important;
  }
}

#aoc .aoc-sidenav .aoc-sidenav__list li.dropdown.toggleStateClick.selected .child-menu {
  display: none !important;
}

#aoc .aoc-sidenav .aoc-sidenav__list li > a .text-truncate {
  display: flex;
  justify-content: space-between;
  text-overflow: unset;
  white-space: normal;
}

#aoc .aoc-sidenav .aoc-sidenav__list li.selected,
#aoc .aoc-sidenav .aoc-sidenav__list li.selected .dropdown-menu,
#aoc .aoc-sidenav .aoc-sidenav__list li:has(li.selected),
#aoc .aoc-sidenav .aoc-sidenav__list li:has(li.selected) .dropdown-menu {
  background: transparent;
  border: none;
  display: block;
  height: auto;
  margin-left: 0;
  margin-bottom: 0;
  max-height: unset;
}

#aoc .aoc-sidenav .aoc-sidenav__list li.selected li a,
#aoc .aoc-sidenav .aoc-sidenav__list li.selected .dropdown-menu li a,
#aoc .aoc-sidenav .aoc-sidenav__list li:has(li.selected) li a,
#aoc .aoc-sidenav .aoc-sidenav__list li:has(li.selected) .dropdown-menu li a {
  padding: 15px 25px;
  padding-top: 0.4117647059em;
  padding-bottom: 0.2941176471em;
}

@media screen and (max-width: 1023px) {
  #aoc .aoc-sidenav .aoc-sidenav__list li.selected li a,
  #aoc .aoc-sidenav .aoc-sidenav__list li.selected .dropdown-menu li a,
  #aoc .aoc-sidenav .aoc-sidenav__list li:has(li.selected) li a,
  #aoc .aoc-sidenav .aoc-sidenav__list li:has(li.selected) .dropdown-menu li a {
    padding: 15px 44px;
  }
}

/* updates to the banner on the subpage, to make it full bleed */

@media screen and (min-width: 1091px) {
  #aoc .aoc-subpage-banner {
    transform: translateX(-15px);
    width: calc(100% + 30px);
  }
}

@media screen and (min-width: 1024px) {
  #aoc .aoc-top-nav {
    transform: translateY(-7px);
    z-index: 50;
  }
}

#aoc .aoc-header {
  padding-bottom: 5px;
}

/* page title updates */

#aoc .social-page-title {
  align-items: flex-start !important;
}

#aoc .aoc-page-title,
#aoc .social-page-title .aoc-page-title {
  margin-bottom: 8px;
  width: fit-content;
}

/* footer mobile columns over-rides on page styles that with margin causes vertical column instead of two columns */

@media screen and (max-width: 800px) {
  #aoc .aoc-footer .aoc-footer__one-half {
    width: calc(50% - 15px);
  }
}

@media screen and (max-width: 1023px) and (min-width: 805px) {
  #aoc .layout-1-3 .portlet-layout.flex-container #column-2 {
    margin: 0 -45px 11px;
    padding: 0;
  }

  #aoc .layout-1-3 .portlet-layout.flex-container #column-2 .portlet-content-container {
    width: calc(100% + 87px);
  }
}

@media screen and (max-width: 804px) {
  #aoc .layout-1-3 .portlet-layout.flex-container #column-2 {
    margin: 0 -30px 11px;
    padding: 0;
  }

  #aoc .layout-1-3 .portlet-layout.flex-container #column-2 .portlet-content-container {
    width: 100%;
  }
}

#aoc .col-md-12:has(.portlet-column.portlet-column-first.col-md-3) {
  padding-left: 0;
  padding-right: 0;
}

@media screen and (min-width: 1024px) and (max-width: 1090px) {
  #aoc .col-md-12:has(.portlet-column.portlet-column-first.col-md-3) #column-2 .aoc-sidenav .aoc-sidenav__list {
    margin-left: 21px;
  }
}

#aoc .portlet-content-container:has(h3 span[style="font-size:20px;"]) {
  min-height: 42.5px;
}

/*# sourceMappingURL=override.css.map */

/*# sourceMappingURL=override.css.map */