/**
Theme Name: WVWC
Theme Description: A custom wordpress theme with specific layouts and styles for the WVWC website.
Author: Bearded
Author URI: http://bearded.com/ */
@charset "UTF-8";
/* ==========================================================================
   $BASE-PICKER
   ========================================================================== */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 * THIS NOTE IS A TEST.
 */
.picker {
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: #000000;
  position: absolute;
  z-index: 10000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/**
 * The picker input element.
 */
.picker__input {
  cursor: default; }

/**
 * When the picker is opened, the input element is “activated”.
 */
.picker__input.picker__input--active {
  border-color: #0089ec; }

/**
 * The holder is the only “scrollable” top-level container element.
 */
.picker__holder {
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }

/*!
 * Classic picker styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
.picker {
  width: 100%; }

/**
 * The holder is the base of the picker.
 */
.picker__holder {
  position: absolute;
  background: #ffffff;
  border: 1px solid #aaaaaa;
  border-top-width: 0;
  border-bottom-width: 0;
  border-radius: 0 0 5px 5px;
  box-sizing: border-box;
  min-width: 176px;
  max-width: 466px;
  max-height: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transform: translateY(-1em) perspective(600px) rotateX(10deg);
  transform: translateY(-1em) perspective(600px) rotateX(10deg);
  transition: -webkit-transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s;
  -webkit-transition: opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s, -webkit-transform 0.15s ease-out;
  transition: opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s, -webkit-transform 0.15s ease-out;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s, -webkit-transform 0.15s ease-out; }

/**
 * The frame and wrap work together to ensure that
 * clicks within the picker don’t reach the holder.
 */
.picker__frame {
  padding: 1px; }

.picker__wrap {
  margin: -1px; }

/**
 * When the picker opens...
 */
.picker--opened .picker__holder {
  max-height: 25em;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
  border-top-width: 1px;
  border-bottom-width: 1px;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
  transition: -webkit-transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
  -webkit-transition: opacity 0.15s ease-out, max-height 0s, border-width 0s, -webkit-transform 0.15s ease-out;
  transition: opacity 0.15s ease-out, max-height 0s, border-width 0s, -webkit-transform 0.15s ease-out;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s, -webkit-transform 0.15s ease-out;
  box-shadow: 0 6px 18px 1px rgba(0, 0, 0, 0.12); }

/* ==========================================================================
   $BASE-DATE-PICKER
   ========================================================================== */
/**
 * The picker box.
 */
.picker__box {
  padding: 0 1em; }

/**
 * The header containing the month and year stuff.
 */
.picker__header {
  text-align: center;
  position: relative;
  margin-top: .75em; }

/**
 * The month and year labels.
 */
.picker__month,
.picker__year {
  font-weight: 500;
  display: inline-block;
  margin-left: .25em;
  margin-right: .25em; }

.picker__year {
  color: #999999;
  font-size: .8em;
  font-style: italic; }

/**
 * The month and year selectors.
 */
.picker__select--month,
.picker__select--year {
  border: 1px solid #b7b7b7;
  height: 2em;
  padding: .5em;
  margin-left: .25em;
  margin-right: .25em; }

@media (min-width: 24.5em) {
  .picker__select--month,
  .picker__select--year {
    margin-top: -0.5em; } }

.picker__select--month {
  width: 35%; }

.picker__select--year {
  width: 22.5%; }

.picker__select--month:focus,
.picker__select--year:focus {
  border-color: #0089ec; }

/**
 * The month navigation buttons.
 */
.picker__nav--prev,
.picker__nav--next {
  position: absolute;
  padding: .5em 1.25em;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  top: -0.25em; }

@media (min-width: 24.5em) {
  .picker__nav--prev,
  .picker__nav--next {
    top: -0.33em; } }

.picker__nav--prev {
  left: -1em;
  padding-right: 1.25em; }

@media (min-width: 24.5em) {
  .picker__nav--prev {
    padding-right: 1.5em; } }

.picker__nav--next {
  right: -1em;
  padding-left: 1.25em; }

@media (min-width: 24.5em) {
  .picker__nav--next {
    padding-left: 1.5em; } }

.picker__nav--prev:before,
.picker__nav--next:before {
  content: " ";
  border-top: .5em solid transparent;
  border-bottom: .5em solid transparent;
  border-right: 0.75em solid #000000;
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto; }

.picker__nav--next:before {
  border-right: 0;
  border-left: 0.75em solid #000000; }

.picker__nav--prev:hover,
.picker__nav--next:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb; }

.picker__nav--disabled,
.picker__nav--disabled:hover,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover {
  cursor: default;
  background: none;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5; }

/**
 * The calendar table of dates
 */
.picker__table {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: inherit;
  width: 100%;
  margin-top: .75em;
  margin-bottom: .5em; }

@media (min-height: 33.875em) {
  .picker__table {
    margin-bottom: .75em; } }

.picker__table td {
  margin: 0;
  padding: 0; }

/**
 * The weekday labels
 */
.picker__weekday {
  width: 14.285714286%;
  font-size: .75em;
  padding-bottom: .25em;
  color: #999999;
  font-weight: 500;
  /* Increase the spacing a tad */ }

@media (min-height: 33.875em) {
  .picker__weekday {
    padding-bottom: .5em; } }

/**
 * The days on the calendar
 */
.picker__day {
  padding: .3125em 0;
  font-weight: 200;
  border: 1px solid transparent; }

.picker__day--today {
  position: relative; }

.picker__day--today:before {
  content: " ";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-top: 0.5em solid #0059bc;
  border-left: .5em solid transparent; }

.picker__day--disabled:before {
  border-top-color: #aaaaaa; }

.picker__day--outfocus {
  color: #dddddd; }

.picker__day--infocus:hover,
.picker__day--outfocus:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb; }

.picker__day--highlighted {
  border-color: #0089ec; }

.picker__day--highlighted:hover,
.picker--focused .picker__day--highlighted {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb; }

.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
  background: #0089ec;
  color: #ffffff; }

.picker__day--disabled,
.picker__day--disabled:hover,
.picker--focused .picker__day--disabled {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default; }

.picker__day--highlighted.picker__day--disabled,
.picker__day--highlighted.picker__day--disabled:hover {
  background: #bbbbbb; }

/**
 * The footer containing the "today", "clear", and "close" buttons.
 */
.picker__footer {
  text-align: center; }

.picker__button--today,
.picker__button--clear,
.picker__button--close {
  border: 1px solid #ffffff;
  background: #ffffff;
  font-size: .8em;
  padding: .66em 0;
  font-weight: bold;
  width: 33%;
  display: inline-block;
  vertical-align: bottom; }

.picker__button--today:hover,
.picker__button--clear:hover,
.picker__button--close:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
  border-bottom-color: #b1dcfb; }

.picker__button--today:focus,
.picker__button--clear:focus,
.picker__button--close:focus {
  background: #b1dcfb;
  border-color: #0089ec;
  outline: none; }

.picker__button--today:before,
.picker__button--clear:before,
.picker__button--close:before {
  position: relative;
  display: inline-block;
  height: 0; }

.picker__button--today:before,
.picker__button--clear:before {
  content: " ";
  margin-right: .45em; }

.picker__button--today:before {
  top: -0.05em;
  width: 0;
  border-top: 0.66em solid #0059bc;
  border-left: .66em solid transparent; }

.picker__button--clear:before {
  top: -0.25em;
  width: .66em;
  border-top: 3px solid #ee2200; }

.picker__button--close:before {
  content: "\D7";
  top: -0.1em;
  vertical-align: top;
  font-size: 1.1em;
  margin-right: .35em;
  color: #777777; }

.picker__button--today[disabled],
.picker__button--today[disabled]:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default; }

.picker__button--today[disabled]:before {
  border-top-color: #aaaaaa; }

/* ==========================================================================
   $CLASSIC-DATE-PICKER
   ========================================================================== */
/**
 * Swiper 3.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 *
 * http://www.idangero.us/swiper/
 *
 * Copyright 2017, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 *
 * Licensed under MIT
 *
 * Released on: March 10, 2017
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-no-flexbox .swiper-slide {
  float: left; }

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  box-sizing: content-box; }

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; }

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative; }

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform; }

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x; }

/* Arrows */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat; }

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto; }

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto; }

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%; }

/* Bullets */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2; }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff; }

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff; }

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff; }

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000; }

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0); }

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block; }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px; }

/* Progress */
.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top; }

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top; }

.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5); }

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff; }

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000; }

/* 3D Container */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px; }

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 16+, IE10, Opera 12.50+ */ }

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 16+, IE10, Opera 12.50+ */ }

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 16+, IE10, Opera 12.50+ */ }

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 16+, IE10, Opera 12.50+ */ }

/* Coverflow */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px; }

/* Cube + Flip */
.swiper-container-cube,
.swiper-container-flip {
  overflow: visible; }

.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

/* Cube */
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%; }

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible; }

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0; }

/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity; }

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center; }

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; }

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
      transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite; }

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat; }

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none; }

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

.grid-inset {
  max-width: 50em;
  margin-left: auto;
  margin-right: auto; }

[class^="icon-"] {
  background-size: contain;
  display: inline-block;
  height: 18px;
  width: 18px;
  vertical-align: top; }

[class^="icon-"] {
  height: 24px;
  width: 24px; }
  [class^="icon-"] svg {
    width: 100%;
    height: 100%;
    vertical-align: top; }

/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.7.5 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2017, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all {
  .featherlight {
    display: none;
    /* dimensions: spanning the background from edge to edge */
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2147483647;
    /* z-index needs to be >= elements on the site. */
    /* position: centering content */
    text-align: center;
    /* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
    white-space: nowrap;
    /* styling */
    cursor: pointer;
    background: #333;
    /* IE8 "hack" for nested featherlights */
    background: transparent; }
  /* support for nested featherlights. Does not work in IE8 (use JS to fix) */
  .featherlight:last-of-type {
    background: rgba(0, 0, 0, 0.8); }
  .featherlight:before {
    /* position: trick to center content vertically */
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }
  .featherlight .featherlight-content {
    /* make content container for positioned elements (close button) */
    position: relative;
    /* position: centering vertical and horizontal */
    text-align: left;
    vertical-align: middle;
    display: inline-block;
    /* dimensions: cut off images */
    overflow: auto;
    padding: 25px 25px 0;
    border-bottom: 25px solid transparent;
    /* dimensions: handling large content */
    margin-left: 5%;
    margin-right: 5%;
    max-height: 95%;
    /* styling */
    background: #fff;
    cursor: auto;
    /* reset white-space wrapping */
    white-space: normal; }
  /* contains the content */
  .featherlight .featherlight-inner {
    /* make sure its visible */
    display: block; }
  /* don't show these though */
  .featherlight script.featherlight-inner,
  .featherlight link.featherlight-inner,
  .featherlight style.featherlight-inner {
    display: none; }
  .featherlight .featherlight-close-icon {
    /* position: centering vertical and horizontal */
    position: absolute;
    z-index: 9999;
    top: 0;
    right: 0;
    /* dimensions: 25px x 25px */
    line-height: 25px;
    width: 25px;
    /* styling */
    cursor: pointer;
    text-align: center;
    font-family: Arial, sans-serif;
    background: #fff;
    /* Set the background in case it overlaps the content */
    background: rgba(255, 255, 255, 0.3);
    color: #000;
    border: none;
    padding: 0; }
  /* See http://stackoverflow.com/questions/16077341/how-to-reset-all-default-styles-of-the-html5-button-element */
  .featherlight .featherlight-close-icon::-moz-focus-inner {
    border: 0;
    padding: 0; }
  .featherlight .featherlight-image {
    /* styling */
    width: 100%; }
  .featherlight-iframe .featherlight-content {
    /* removed the border for image croping since iframe is edge to edge */
    border-bottom: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll; }
  .featherlight iframe {
    /* styling */
    border: none; }
  .featherlight * {
    /* See https://github.com/noelboss/featherlight/issues/42 */
    box-sizing: border-box; } }

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    /* dimensions: maximize lightbox with for small screens */
    margin-left: 0;
    margin-right: 0;
    max-height: 98%;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent; } }

/**
 * Featherlight Gallery – an extension for the ultra slim jQuery lightbox
 * Version 1.7.5 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2017, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all {
  .featherlight-next,
  .featherlight-previous {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
    bottom: 0;
    left: 80%;
    cursor: pointer;
    /* preventing text selection */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* IE9 hack, otherwise navigation doesn't appear */
    background: transparent; }
  .featherlight-previous {
    left: 25px;
    right: 80%; }
  .featherlight-next:hover,
  .featherlight-previous:hover {
    background: rgba(255, 255, 255, 0.25); }
  .featherlight-next span,
  .featherlight-previous span {
    display: none;
    position: absolute;
    top: 50%;
    left: 5%;
    width: 82%;
    /* center horizontally */
    text-align: center;
    font-size: 80px;
    line-height: 80px;
    /* center vertically */
    margin-top: -40px;
    text-shadow: 0px 0px 5px #fff;
    color: #fff;
    font-style: normal;
    font-weight: normal; }
  .featherlight-next span {
    right: 5%;
    left: auto; }
  .featherlight-next:hover span,
  .featherlight-previous:hover span {
    display: inline-block; }
  .featherlight-swipe-aware .featherlight-next,
  .featherlight-swipe-aware .featherlight-previous {
    display: none; }
  /* Hide navigation while loading */
  .featherlight-loading .featherlight-previous, .featherlight-loading .featherlight-next {
    display: none; }
  /* Hide navigation in case of single image */
  .featherlight-first-slide.featherlight-last-slide .featherlight-previous,
  .featherlight-first-slide.featherlight-last-slide .featherlight-next {
    display: none; } }

/* Always display arrows on touch devices */
@media only screen and (max-device-width: 1024px) {
  .featherlight-next:hover,
  .featherlight-previous:hover {
    background: none; }
  .featherlight-next span,
  .featherlight-previous span {
    display: block; } }

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
  .featherlight-next,
  .featherlight-previous {
    top: 10px;
    right: 10px;
    left: 85%; }
  .featherlight-previous {
    left: 10px;
    right: 85%; }
  .featherlight-next span,
  .featherlight-previous span {
    margin-top: -30px;
    font-size: 40px; } }

input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; }

input[type="submit"],
button[type="submit"] {
  font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
  font-weight: normal;
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: #fff;
  background-color: #F05123;
  font-size: inherit;
  -webkit-transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  border: 2px solid #F05123;
  border: 0 none;
  font-size: 1em; }
  input[type="submit"]:hover,
  button[type="submit"]:hover {
    text-decoration: none;
    background-color: #ba340d;
    color: #fff;
    border-color: #ba340d; }
  input[type="submit"]:hover, input[type="submit"]:focus,
  button[type="submit"]:hover,
  button[type="submit"]:focus {
    cursor: pointer; }

input[type="search"],
input[type="email"],
input[type="password"],
input[type="text"],
input[type="tel"],
input[type="number"],
input[type="url"],
textarea {
  -webkit-appearance: none;
  font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
  font-weight: normal;
  padding: 0.9em 1em;
  border-radius: 2px 2px;
  color: #444;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  border: 1px #D8D8D8 solid;
  font-size: inherit; }

select {
  height: 3em;
  line-height: 2.5em;
  border: 1px solid #D8D8D8;
  width: 100%;
  font-family: inherit;
  font-size: inherit; }

form label {
  display: block; }

fieldset {
  margin-bottom: 1em; }
  fieldset legend {
    font-family: 'abril-text', Times, serif;
    font-weight: 600;
    margin-bottom: 0.35em; }

form .input {
  margin-bottom: 1em; }

.legend-text {
  display: inline-block;
  margin-top: 1em;
  margin-bottom: 0.5em; }

.two-up {
  overflow: hidden;
  *zoom: 1; }
  .two-up > .input {
    display: inline;
    float: left;
    width: 36.5%;
    margin-right: 1.6%;
    margin-left: 0;
    margin-right: 0;
    margin-left: 1.6%; }
    .two-up > .input:first-child {
      margin-left: 0; }

.two-up-wider {
  overflow: hidden;
  *zoom: 1; }
  @media (min-width: 31.25em) {
    .two-up-wider > .input {
      display: inline;
      float: left;
      width: 36.5%;
      margin-right: 1.6%;
      margin-left: 0;
      margin-right: 0;
      margin-left: 1.6%; }
      .two-up-wider > .input:first-child {
        margin-left: 0; } }

.three-up {
  overflow: hidden;
  *zoom: 1; }
  .three-up .input {
    display: inline;
    float: left;
    width: 23.8%;
    margin-right: 1.6%;
    margin-left: 0;
    margin-right: 0;
    margin-left: 1.6%; }
    .three-up .input:first-child {
      margin-left: 0; }
  .three-up.zip-city-state .input {
    display: inline;
    float: left;
    width: 42.85%;
    margin-right: 1.6%;
    margin-left: 0; }
    @media (min-width: 31.25em) {
      .three-up.zip-city-state .input {
        display: inline;
        float: left;
        width: 36.5%;
        margin-right: 1.6%;
        margin-left: 0; } }
    .three-up.zip-city-state .input:first-child {
      display: inline;
      float: left;
      width: 74.6%;
      margin-right: 1.6%;
      margin-left: 0;
      margin-right: 0; }
      @media (min-width: 31.25em) {
        .three-up.zip-city-state .input:first-child {
          display: inline;
          float: left;
          width: 17.45%;
          margin-right: 1.6%;
          margin-left: 0; } }
    .three-up.zip-city-state .input.select, .three-up.zip-city-state .input .state {
      display: inline;
      float: left;
      width: 30.15%;
      margin-right: 1.6%;
      margin-left: 0;
      margin-right: 0; }
      @media (min-width: 31.25em) {
        .three-up.zip-city-state .input.select, .three-up.zip-city-state .input .state {
          display: inline;
          float: left;
          width: 17.45%;
          margin-right: 1.6%;
          margin-left: 0;
          margin-right: 0; } }

.three-up-wider {
  overflow: hidden;
  *zoom: 1; }
  @media (min-width: 31.25em) {
    .three-up-wider .input {
      display: inline;
      float: left;
      width: 23.8%;
      margin-right: 1.6%;
      margin-left: 0;
      margin-right: 0;
      margin-left: 1.6%; }
      .three-up-wider .input:first-child {
        margin-left: 0; } }

input[type="checkbox"] {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

label.checkbox {
  display: table;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  label.checkbox .styled-checkbox {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; }
  label.checkbox .label-text {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2; }

.styled-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 2px solid #D8D8D8;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 0.5em;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  float: left;
  margin-top: 4px;
  -webkit-transition: border-color 0.13s ease-in-out, background 0.13s ease-in-out, box-shadow 0.13s ease-in-out;
  transition: border-color 0.13s ease-in-out, background 0.13s ease-in-out, box-shadow 0.13s ease-in-out; }
  .styled-checkbox .icon-check {
    width: 9px;
    height: 6px;
    position: relative;
    opacity: 0;
    -webkit-transition: opacity 0.13s ease-in-out;
    transition: opacity 0.13s ease-in-out; }
    .styled-checkbox .icon-check svg {
      fill: #fff; }

input[type="checkbox"]:focus ~ .styled-checkbox {
  outline: 2px solid #6FC1FF; }

input[type="checkbox"]:checked ~ .styled-checkbox {
  border-color: #F05123;
  background: #F05123;
  box-shadow: 0 0 4px rgba(240, 81, 35, 0.5); }
  input[type="checkbox"]:checked ~ .styled-checkbox .icon-check {
    opacity: 1; }

:focus {
  outline: 2px solid #6FC1FF; }

* {
  box-sizing: border-box; }

.container {
  width: 90%;
  margin: auto;
  max-width: 76.75rem;
  *zoom: 1; }
  @media (min-width: 31.25em) {
    .container {
      width: 85%; } }
  @media (min-width: 43.75em) {
    .container {
      width: 95%; } }

html {
  background-color: #fff;
  position: relative; }

.skip-navigation {
  position: absolute;
  top: 0;
  left: 10px;
  padding: 1em;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  z-index: 7000;
  font-size: 0.866em;
  -webkit-transform: translateY(-200%);
      -ms-transform: translateY(-200%);
          transform: translateY(-200%); }
  .skip-navigation:focus {
    color: #fff;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }

.main-content {
  *zoom: 1;
  background-color: #fff;
  margin-top: 2em; }
  .main-content:after {
    content: "";
    display: table;
    clear: both; }
  .main-content .constrained {
    max-width: 40em;
    margin: 0 auto 0 auto; }
    .home .main-content .constrained {
      max-width: 56em; }
  @media (min-width: 43.75em) {
    .main-content .container {
      *zoom: 1; }
      .main-content .container:after {
        content: "";
        display: table;
        clear: both; } }

body {
  font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
  font-weight: normal;
  color: #444;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%; }
  @media (min-width: 68.75em) {
    body {
      font-size: 18px; } }

.subtitle {
  font-size: 1.25em;
  margin-top: 2em; }

p {
  margin-bottom: 1.5em; }

ul li li, ol li li {
  font-size: inherit; }

@media (min-width: 46.875em) {
  .main-content {
    *zoom: 1; }
    .main-content:after {
      content: "";
      display: table;
      clear: both; } }

@media (min-width: 46.875em) {
  .page-content {
    *zoom: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    .page-content:after {
      content: "";
      display: table;
      clear: both; } }

@media (min-width: 46.875em) {
  .secondary {
    display: inline;
    float: left;
    width: 23.8%;
    margin-right: 1.6%;
    margin-left: 0;
    float: left;
    position: relative;
    margin-top: -1em;
    background-color: #fff;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; } }

@media (min-width: 46.875em) {
  .secondary::before {
    content: "";
    width: 4px;
    height: 100%;
    top: 0;
    right: 0;
    position: absolute;
    background: #f5f5f5; } }

.primary {
  margin-top: 1.5em;
  margin-bottom: 3em; }
  @media (min-width: 46.875em) {
    .primary {
      display: inline;
      float: left;
      width: 68.25%;
      margin-right: 1.6%;
      margin-left: 0;
      margin-left: 6.35%;
      margin-right: 0;
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
          -ms-flex-order: 2;
              order: 2;
      float: right;
      padding-bottom: 3em;
      margin-bottom: 0; } }
  @media (min-width: 68.75em) {
    .primary {
      display: inline;
      float: left;
      width: 55.55%;
      margin-right: 1.6%;
      margin-left: 0;
      margin-right: 12.7%;
      margin-left: 6.35%;
      float: right; } }
  @media (min-width: 46.875em) {
    .no-sidebar .primary {
      float: none;
      width: auto;
      display: block;
      margin: 0 auto; } }
  @media (min-width: 68.75em) {
    .no-sidebar .primary {
      float: none;
      width: auto;
      display: block;
      margin: 0 auto; } }
  .primary a {
    text-decoration: none; }
  .primary ul, .primary ol {
    margin: 0 0 1.5em 2em;
    list-style-position: inside; }
    .primary ul li, .primary ol li {
      margin-bottom: 0.5em;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
  .primary ul {
    list-style: none;
    margin-left: 0;
    margin: 0;
    padding: 1em 0; }
  .primary .body ol {
    counter-reset: numberedList;
    list-style: none;
    margin-left: 0;
    margin: 0;
    padding-bottom: 1em; }
    .primary .body ol li {
      display: table;
      vertical-align: baseline;
      margin-bottom: 0.25em; }
      .primary .body ol li::before {
        font-family: 'abril-text', Times, serif;
        font-weight: 600;
        content: counter(numberedList) ".";
        counter-increment: numberedList;
        color: #397D99;
        font-size: 1.2em;
        height: 100%;
        display: table-cell;
        width: 40px;
        min-width: 40px;
        vertical-align: baseline; }
        @media (min-width: 68.75em) {
          .primary .body ol li::before {
            width: 50px;
            min-width: 50px; } }
  .primary .body ul {
    list-style: none;
    margin-left: 0;
    margin: 0;
    padding-bottom: 1em;
    padding-top: 0em; }
    .primary .body ul li {
      display: table;
      vertical-align: baseline;
      margin-bottom: 0.25em; }
      .primary .body ul li::before {
        font-family: 'abril-text', Times, serif;
        font-weight: 600;
        content: "\25A0";
        color: #397D99;
        height: 100%;
        min-width: 40px;
        font-size: 1.2em;
        position: relative;
        top: 3px;
        vertical-align: baseline;
        display: table-cell; }
        @media (min-width: 68.75em) {
          .primary .body ul li::before {
            font-size: 1.2em;
            min-width: 50px; } }
  .primary h2 a:hover,
  .primary h3 a:hover,
  .primary h4 a:hover,
  .primary h5 a:hover,
  .primary h6 a:hover {
    color: #777; }
  .primary img {
    display: inline-block;
    width: 100%; }
  .primary .embedded-video {
    margin-bottom: 1.5em; }
    .primary .embedded-video iframe {
      width: 100%; }
  .primary .body {
    *zoom: 1; }
    .primary .body:after {
      content: "";
      display: table;
      clear: both; }
    .primary .body h1, .primary .body h2, .primary .body h3, .primary .body h4, .primary .body h5, .primary .body h6 {
      clear: left;
      margin-bottom: 0.75em;
      margin-top: 1.5em; }
    .primary .body figure, .primary .body [class*="wp-image-"] {
      width: 100%;
      display: block; }
      @media (min-width: 37.5em) {
        .primary .body figure.aligncenter, .primary .body [class*="wp-image-"].aligncenter {
          width: 100%;
          display: block; } }
    .primary .body figure [class*="wp-image-"] {
      margin-bottom: 0; }
    .primary .body [class*="wp-image-"] {
      *zoom: 1;
      margin-bottom: 1em; }
      .primary .body [class*="wp-image-"]:after {
        content: "";
        display: table;
        clear: both; }
      .primary .body [class*="wp-image-"].aligncenter {
        *zoom: 1;
        margin-top: 1em;
        margin-bottom: 1em; }
        .primary .body [class*="wp-image-"].aligncenter:after {
          content: "";
          display: table;
          clear: both; }
      @media (min-width: 37.5em) {
        .primary .body [class*="wp-image-"].alignright {
          display: inline-block;
          float: right;
          margin-top: 1em;
          margin-bottom: 1em;
          margin-left: 1em;
          width: 50%; }
          .primary .body [class*="wp-image-"].alignright img {
            max-width: 100%;
            float: left; } }
      @media (min-width: 37.5em) {
        .primary .body [class*="wp-image-"].alignleft {
          display: inline-block;
          float: left;
          margin-top: 1em;
          margin-bottom: 1em;
          margin-right: 1em;
          width: 50%; }
          .primary .body [class*="wp-image-"].alignleft img {
            max-width: 100%;
            float: left; } }
      .primary .body [class*="wp-image-"] img {
        max-width: 100%;
        float: left; }

h1 {
  font-family: 'abril-text', Times, serif;
  font-weight: 600;
  margin-bottom: 0.833em;
  line-height: 1.2;
  color: #464648;
  font-size: 1.728rem; }
  h1 a {
    color: #464648;
    text-decoration: none; }
    h1 a:hover, h1 a:focus {
      color: #202021;
      text-decoration: underline; }
  @media (min-width: 60em) {
    h1 {
      font-size: 2.074rem; } }
  @media (min-width: 68.75em) {
    h1 {
      font-size: 2.986rem; } }
  h1.page-title {
    padding-bottom: 0.833em;
    border-bottom: 10px solid #f5f5f5; }
  h1.title {
    margin-bottom: 0.45em; }

h2 {
  font-family: 'abril-text', Times, serif;
  font-weight: 600;
  margin-bottom: 0.833em;
  line-height: 1.2;
  color: #464648;
  font-size: 1.44rem; }
  h2 a {
    color: #464648;
    text-decoration: none; }
    h2 a:hover, h2 a:focus {
      color: #202021;
      text-decoration: underline; }
  @media (min-width: 60em) {
    h2 {
      font-size: 1.728rem; } }
  @media (min-width: 68.75em) {
    h2 {
      font-size: 2.074rem; } }

h3 {
  font-family: 'abril-text', Times, serif;
  font-weight: 600;
  margin-bottom: 0.833em;
  line-height: 1.2;
  color: #464648;
  font-size: 1.2rem; }
  h3 a {
    color: #464648;
    text-decoration: none; }
    h3 a:hover, h3 a:focus {
      color: #202021;
      text-decoration: underline; }
  @media (min-width: 60em) {
    h3 {
      font-size: 1.44rem; } }
  @media (min-width: 68.75em) {
    h3 {
      font-size: 1.728rem; } }

h4 {
  font-family: 'abril-text', Times, serif;
  font-weight: 600;
  margin-bottom: 0.833em;
  line-height: 1.2;
  color: #464648;
  font-size: 1rem; }
  h4 a {
    color: #464648;
    text-decoration: none; }
    h4 a:hover, h4 a:focus {
      color: #202021;
      text-decoration: underline; }
  @media (min-width: 60em) {
    h4 {
      font-size: 1.2rem; } }
  @media (min-width: 68.75em) {
    h4 {
      font-size: 1.44rem; } }

h5 {
  font-family: 'abril-text', Times, serif;
  font-weight: 600;
  margin-bottom: 0.833em;
  line-height: 1.2;
  color: #464648;
  font-size: 1em; }
  h5 a {
    color: #464648;
    text-decoration: none; }
    h5 a:hover, h5 a:focus {
      color: #202021;
      text-decoration: underline; }

h6 {
  font-family: 'abril-text', Times, serif;
  font-weight: 600;
  margin-bottom: 0.833em;
  line-height: 1.2;
  color: #464648;
  font-size: 0.875em; }
  h6 a {
    color: #464648;
    text-decoration: none; }
    h6 a:hover, h6 a:focus {
      color: #202021;
      text-decoration: underline; }

a {
  color: #F05123;
  text-decoration: none; }
  a:hover, a:focus {
    color: #ba340d;
    text-decoration: underline; }

strong, b {
  font-weight: bold; }

em, i {
  font-style: italic; }

img {
  max-width: 100%;
  display: block; }

.button {
  font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
  font-weight: normal;
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: #fff;
  background-color: #F05123;
  font-size: inherit;
  -webkit-transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  border: 2px solid #F05123; }
  .button:hover {
    text-decoration: none;
    background-color: #ba340d;
    color: #fff;
    border-color: #ba340d; }

.button-highlight {
  font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
  font-weight: normal;
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: #fff;
  background-color: #F05123;
  font-size: inherit;
  -webkit-transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  border: 2px solid #F05123;
  background-color: #F05123; }
  .button-highlight:hover {
    text-decoration: none;
    background-color: #ba340d;
    color: #fff;
    border-color: #ba340d; }
  .button-highlight:hover {
    background-color: #ba340d; }

.button-subtle {
  font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
  font-weight: normal;
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: #fff;
  background-color: #F05123;
  font-size: inherit;
  -webkit-transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  border: 2px solid #F05123;
  background-color: transparent;
  color: #F05123;
  border: 2px solid #D8D8D8; }
  .button-subtle:hover {
    text-decoration: none;
    background-color: #ba340d;
    color: #fff;
    border-color: #ba340d; }
  .button-subtle:hover {
    color: #F05123;
    background-color: #F9F9F8;
    border-color: #D8D8D8; }

.button-reverse {
  font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
  font-weight: normal;
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: #fff;
  background-color: #F05123;
  font-size: inherit;
  -webkit-transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  border: 2px solid #F05123;
  background-color: #fff;
  color: #F05123;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 0.702em 1.125em;
  border: 0; }
  .button-reverse:hover {
    text-decoration: none;
    background-color: #ba340d;
    color: #fff;
    border-color: #ba340d; }
  .button-reverse:hover {
    color: #ba340d;
    background-color: #F9F9F8; }

.button-wrapper {
  display: inline-block; }
  .button-wrapper .note {
    display: block;
    text-align: center;
    margin-top: 0.35em; }

.screenreader-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.screen-reader-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.not-visually-hidden {
  border: inherit;
  clip: inherit;
  height: inherit;
  margin: inherit;
  overflow: inherit;
  padding: inherit;
  position: inherit;
  width: inherit; }

.header-image-wrapper {
  margin-left: -webkit-calc(-100vw * 0.05);
  margin-left: calc(-100vw * 0.05);
  margin-right: -webkit-calc(-100vw * 0.05);
  margin-right: calc(-100vw * 0.05);
  margin-bottom: 1em;
  margin-top: -2em; }
  @media (min-width: 31.25em) {
    .header-image-wrapper {
      margin-left: -webkit-calc(-100vw * 0.075);
      margin-left: calc(-100vw * 0.075);
      margin-right: -webkit-calc(-100vw * 0.075);
      margin-right: calc(-100vw * 0.075); } }
  @media (min-width: 43.75em) {
    .header-image-wrapper {
      margin-left: -webkit-calc(-100vw * 0.025);
      margin-left: calc(-100vw * 0.025);
      margin-right: -webkit-calc(-100vw * 0.025);
      margin-right: calc(-100vw * 0.025); } }
  @media (min-width: 46.875em) {
    .header-image-wrapper {
      margin-bottom: 0; } }

.edit-link {
  clear: both; }

p:empty {
  display: none; }

.site-header {
  *zoom: 1;
  background: #fff;
  padding-top: 1.5em;
  position: relative; }
  .site-header:after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 46.875em) {
    .site-header {
      padding-top: 0;
      position: relative; } }
  @media (min-width: 68.75em) {
    .site-header {
      font-size: 16px; } }
  .site-header .logo-section {
    *zoom: 1;
    position: relative; }
    .site-header .logo-section:after {
      content: "";
      display: table;
      clear: both; }
    @media (min-width: 46.875em) {
      .site-header .logo-section {
        width: 90%;
        margin: auto;
        max-width: 76.75rem;
        *zoom: 1;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        height: 90px; } }
  @media (min-width: 46.875em) and (min-width: 31.25em) {
    .site-header .logo-section {
      width: 85%; } }
  @media (min-width: 46.875em) and (min-width: 43.75em) {
    .site-header .logo-section {
      width: 95%; } }
    .site-header .logo-section .site-name {
      width: 100%;
      margin-bottom: 1rem;
      text-align: center;
      position: relative;
      z-index: 500; }
      @media (min-width: 46.875em) {
        .site-header .logo-section .site-name {
          display: inline-block;
          float: none;
          width: auto;
          text-align: left;
          margin: 0;
          font-size: 1rem; } }
      .site-header .logo-section .site-name .icon-logo-full {
        width: 185px;
        height: 40px; }
      .site-header .logo-section .site-name a {
        display: inline-block; }
  .site-header .search-form {
    font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
    font-weight: normal;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100%;
    margin: 1.5em 0 1.5em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-family: inherit;
    font-size: inherit; }
    @media (min-width: 31.25em) {
      .site-header .search-form {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; } }
    @media (min-width: 46.875em) {
      .site-header .search-form {
        position: absolute;
        margin: 0;
        left: 0;
        top: 0;
        width: -webkit-calc(100% - 60px);
        width: calc(100% - 60px);
        font-size: 1.125em;
        opacity: 0;
        pointer-events: none;
        -webkit-transition: opacity 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34);
        transition: opacity 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34);
        z-index: -1; } }
    .site-header .search-form .search-bar-wrapper {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
    @media (min-width: 46.875em) {
      .site-header .search-form input[type="text"] {
        border: 0;
        padding-left: 0; } }
    @media (min-width: 46.875em) {
      .site-header .search-form input[type="text"]:focus {
        outline: none; } }
    .site-header .search-form button {
      display: -webkit-inline-box;
      display: -webkit-inline-flex;
      display: -ms-inline-flexbox;
      display: inline-flex;
      padding: 0 1em;
      -webkit-flex-shrink: 0;
          -ms-flex-negative: 0;
              flex-shrink: 0;
      margin-left: 0.5em; }
      @media (min-width: 46.875em) {
        .site-header .search-form button {
          border: inherit;
          clip: inherit;
          height: inherit;
          margin: inherit;
          overflow: inherit;
          padding: inherit;
          position: inherit;
          width: inherit;
          display: none; } }
    .site-header .search-form.open {
      z-index: 1000;
      opacity: 1;
      -webkit-transition: opacity 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34);
      transition: opacity 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34);
      pointer-events: all; }
      .site-header .search-form.open button {
        border: 0;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
        display: block; }
    .site-header .search-form .screen-reader-text {
      border: 0;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px; }
    .site-header .search-form label {
      width: 100%; }
    .site-header .search-form .search-bar-wrapper {
      width: 100%; }
    .site-header .search-form .input {
      margin-bottom: 0;
      width: 100%; }
    .site-header .search-form input[type="text"] {
      padding: 0.833em 1em; }
      @media (min-width: 46.875em) {
        .site-header .search-form input[type="text"] {
          padding: 0.833em 1em 0.833em 0; } }
  .site-header .icon-search {
    width: 1em;
    height: 1em; }
  .site-header .search-trigger {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 60px; }
    .site-header .search-trigger .icon-search-close {
      display: none; }
    @media (min-width: 46.875em) {
      .site-header .search-trigger {
        display: inline-block; } }
    .site-header .search-trigger.active {
      z-index: 2000; }
      .site-header .search-trigger.active::after {
        width: 100%; }
      .site-header .search-trigger.active .icon-search-close {
        display: inline-block; }
      .site-header .search-trigger.active .icon-search-dark {
        display: none; }
    .site-header .search-trigger .trigger-icon {
      width: 20px;
      height: 20px; }

.site-footer {
  background: #fff;
  color: #777;
  padding: 2.5em 0 0;
  font-weight: 500;
  border-top: 4px solid #F9F9F8; }
  @media (min-width: 31.25em) {
    .site-footer {
      padding: 2.5em 0; } }
  @media (min-width: 60em) {
    .site-footer {
      padding: 4em 0; } }
  @media (min-width: 68.75em) {
    .site-footer {
      padding: 5.5em 0;
      font-size: 16px; } }
  @media (min-width: 43.75em) {
    .site-footer .container {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; } }
  @media (min-width: 43.75em) {
    .is-ie9 .site-footer .container {
      display: block; } }
  @media (min-width: 31.25em) {
    .site-footer .footer-nav-group {
      *zoom: 1; }
      .site-footer .footer-nav-group:after {
        content: "";
        display: table;
        clear: both; } }
  @media (min-width: 43.75em) {
    .site-footer .footer-nav-group {
      display: inline;
      float: left;
      width: 42.85%;
      margin-right: 1.6%;
      margin-left: 0;
      margin-left: 6.35%;
      margin-right: 0;
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
          -ms-flex-order: 2;
              order: 2; } }
  .site-footer .footer-support-navigation .menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .is-ie9 .site-footer .footer-support-navigation .menu {
      display: block; }
  .site-footer .footer-support-navigation li {
    display: inline;
    float: left;
    width: 32.26667%;
    margin-right: 1.6%;
    margin-left: 0; }
    .site-footer .footer-support-navigation li:nth-of-type(1n) {
      margin-right: 1.6%;
      float: left;
      clear: none; }
      .lt-ie8 .site-footer .footer-support-navigation li:nth-of-type(1n) {
        margin-right: 1.35%; }
    .site-footer .footer-support-navigation li:nth-of-type(3n+3) {
      margin-right: 0; }
    .site-footer .footer-support-navigation li:nth-of-type(3n+4) {
      clear: both; }
  .site-footer .footer-support-navigation a {
    font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
    font-weight: normal;
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    color: #fff;
    background-color: #F05123;
    font-size: inherit;
    -webkit-transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    border: 2px solid #F05123;
    background-color: transparent;
    color: #F05123;
    border: 2px solid #D8D8D8;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    text-align: center; }
    .site-footer .footer-support-navigation a:hover {
      text-decoration: none;
      background-color: #ba340d;
      color: #fff;
      border-color: #ba340d; }
    .site-footer .footer-support-navigation a:hover {
      color: #F05123;
      background-color: #F9F9F8;
      border-color: #D8D8D8; }
  .site-footer .footer-navigation,
  .site-footer .footer-utility-navigation {
    margin-top: 2em; }
    .site-footer .footer-navigation a,
    .site-footer .footer-utility-navigation a {
      color: #444;
      padding: 0.33em 0;
      display: inline-block;
      text-decoration: underline; }
      .site-footer .footer-navigation a:hover,
      .site-footer .footer-utility-navigation a:hover {
        color: #F05123; }
  @media (min-width: 31.25em) {
    .site-footer .footer-navigation {
      display: inline;
      float: left;
      width: 49.2%;
      margin-right: 1.6%;
      margin-left: 0; } }
  @media (min-width: 31.25em) {
    .site-footer .footer-utility-navigation {
      display: inline;
      float: left;
      width: 49.2%;
      margin-right: 1.6%;
      margin-left: 0;
      margin-right: 0; } }
  .site-footer .contact-info {
    color: #444;
    text-align: center; }
    @media (min-width: 31.25em) {
      .site-footer .contact-info {
        display: inline;
        float: left;
        width: 55.55%;
        margin-right: 1.6%;
        margin-left: 0;
        margin-left: 6.35%;
        margin-right: 0;
        text-align: left;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -ms-flex-order: 2;
                order: 2; } }
    .site-footer .contact-info .org {
      margin-bottom: 0.6em; }
    .site-footer .contact-info .street-address {
      display: block; }
    .site-footer .contact-info .phone-number {
      margin-top: 1em;
      font-size: 1.125em; }
      .site-footer .contact-info .phone-number a {
        color: #444;
        text-decoration: underline; }
        .site-footer .contact-info .phone-number a:hover {
        color: #F05123; }
    .site-footer .contact-info .social-icon-group {
      margin-top: 2em;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-left: -1em; }
      @media (min-width: 31.25em) {
        .site-footer .contact-info .social-icon-group {
          -webkit-box-pack: start;
          -webkit-justify-content: flex-start;
              -ms-flex-pack: start;
                  justify-content: flex-start; } }
      .is-ie9 .site-footer .contact-info .social-icon-group {
        display: block; }
      .site-footer .contact-info .social-icon-group .social-icon {
        display: inline-block;
        width: 40px;
        height: 40px;
        margin: 0 0.5em;
        cursor: pointer;
        -webkit-transition: scale 0.3s ease-in-out;
        transition: scale 0.3s ease-in-out; }
        .site-footer .contact-info .social-icon-group .social-icon:hover svg {
          -webkit-transform: scale(1.2);
              -ms-transform: scale(1.2);
                  transform: scale(1.2);
          fill: #F05123; }
      .site-footer .contact-info .social-icon-group a {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        height: 100%;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center; }
        .is-ie9 .site-footer .contact-info .social-icon-group a {
          display: block; }
      .site-footer .contact-info .social-icon-group [class^="icon-"] {
        width: 24px;
        height: 24px; }
      .site-footer .contact-info .social-icon-group svg {
        fill: #777;
        width: 24px;
        height: 24px; }
  .site-footer .footer-logo {
    margin-top: 5em;
    text-align: center; }
    @media (min-width: 31.25em) {
      .site-footer .footer-logo {
        display: inline;
        float: left;
        width: 30.15%;
        margin-right: 1.6%;
        margin-left: 0;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
            -ms-flex-order: 1;
                order: 1;
        margin-top: 0; } }
    .site-footer .footer-logo img {
      width: 50%;
      margin-bottom: -8px;
      display: inline-block; }
      @media (min-width: 31.25em) {
        .site-footer .footer-logo img {
          width: 100%;
          margin: 0; } }
  .site-footer .footer-group {
    border-top: 1px solid #D8D8D8;
    margin-top: 2em;
    padding-top: 2.5em; }
    @media (min-width: 31.25em) {
      .site-footer .footer-group {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        clear: both; } }
    @media (min-width: 43.75em) {
      .site-footer .footer-group {
        display: inline;
        float: left;
        width: 49.2%;
        margin-right: 1.6%;
        margin-left: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        border: none;
        margin-top: 0;
        padding-top: 0;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
            -ms-flex-order: 1;
                order: 1; } }
    @media (min-width: 31.25em) {
      .is-ie9 .site-footer .footer-group {
        display: block; } }
    @media (min-width: 43.75em) {
      .is-ie9 .site-footer .footer-group {
        display: inline;
        float: left;
        width: 49.2%;
        margin-right: 1.6%;
        margin-left: 0; } }

@media (min-width: 46.875em) {
  .page-template-overview-page .secondary {
    display: inline;
    float: left;
    width: 23.8%;
    margin-right: 1.6%;
    margin-left: 0;
    margin-top: 0; } }

.page-template-overview-page .secondary .secondary-navigation {
  padding-left: 0;
  margin-top: 2.8em; }

.page-template-overview-page .primary {
  margin-top: 3em; }
  @media (min-width: 46.875em) {
    .page-template-overview-page .primary {
      display: inline;
      float: left;
      width: 68.25%;
      margin-right: 1.6%;
      margin-left: 0;
      margin-left: 6.35%;
      margin-right: 0;
      float: right;
      margin-top: 4em; } }

.overview-page.header {
  margin-left: -webkit-calc(-100vw * 0.05);
  margin-left: calc(-100vw * 0.05);
  margin-right: -webkit-calc(-100vw * 0.05);
  margin-right: calc(-100vw * 0.05);
  padding-left: -webkit-calc(100vw * 0.05);
  padding-left: calc(100vw * 0.05);
  padding-right: -webkit-calc(100vw * 0.05);
  padding-right: calc(100vw * 0.05);
  background-color: #384F5E;
  margin-top: -1em;
  padding-top: 1em;
  padding-bottom: 1.5em; }
  @media (min-width: 31.25em) {
    .overview-page.header {
      margin-left: -webkit-calc(-100vw * 0.075);
      margin-left: calc(-100vw * 0.075);
      margin-right: -webkit-calc(-100vw * 0.075);
      margin-right: calc(-100vw * 0.075); } }
  @media (min-width: 43.75em) {
    .overview-page.header {
      margin-left: -webkit-calc(-100vw * 0.025);
      margin-left: calc(-100vw * 0.025);
      margin-right: -webkit-calc(-100vw * 0.025);
      margin-right: calc(-100vw * 0.025); } }
  @media (min-width: 31.25em) {
    .overview-page.header {
      padding-left: -webkit-calc(100vw * 0.075);
      padding-left: calc(100vw * 0.075);
      padding-right: -webkit-calc(100vw * 0.075);
      padding-right: calc(100vw * 0.075); } }
  @media (min-width: 43.75em) {
    .overview-page.header {
      padding-left: -webkit-calc(100vw * 0.025);
      padding-left: calc(100vw * 0.025);
      padding-right: -webkit-calc(100vw * 0.025);
      padding-right: calc(100vw * 0.025); } }
  @media (min-width: 31.25em) {
    .overview-page.header {
      *zoom: 1; }
      .overview-page.header:after {
        content: "";
        display: table;
        clear: both; } }
  @media (min-width: 37.5em) {
    .overview-page.header {
      padding-top: 2em;
      padding-bottom: 2em; } }
  @media (min-width: 43.75em) {
    .overview-page.header {
      position: relative; } }
  @media (min-width: 68.75em) {
    .overview-page.header {
      padding-top: 4%;
      padding-bottom: 5%; } }
  .overview-page.header .content-wrapper {
    padding-top: 1em; }
    @media (min-width: 37.5em) {
      .overview-page.header .content-wrapper {
        display: inline;
        float: left;
        width: 61.9%;
        margin-right: 1.6%;
        margin-left: 0;
        padding-right: 1em;
        padding-top: 0; } }
  .overview-page.header .page-title, .overview-page.header .subtitle, .overview-page.header .intro {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #F9F9F8; }
  .overview-page.header .page-title {
    font-family: 'abril-text', Times, serif;
    font-weight: 600;
    margin-bottom: 0.833em;
    line-height: 1.2;
    color: #464648;
    font-size: 1rem;
    color: #D8D8D8;
    margin-bottom: 0.25em; }
    .overview-page.header .page-title a {
      color: #464648;
      text-decoration: none; }
      .overview-page.header .page-title a:hover, .overview-page.header .page-title a:focus {
        color: #202021;
        text-decoration: underline; }
    @media (min-width: 60em) {
      .overview-page.header .page-title {
        font-size: 1.2rem; } }
    @media (min-width: 68.75em) {
      .overview-page.header .page-title {
        font-size: 1.44rem; } }
  .overview-page.header .subtitle {
    font-family: 'abril-text', Times, serif;
    font-weight: 600;
    margin-bottom: 0.833em;
    line-height: 1.2;
    color: #464648;
    font-size: 1.44rem;
    color: #fff;
    margin: 0;
    padding-bottom: 0.5em; }
    .overview-page.header .subtitle a {
      color: #464648;
      text-decoration: none; }
      .overview-page.header .subtitle a:hover, .overview-page.header .subtitle a:focus {
        color: #202021;
        text-decoration: underline; }
    @media (min-width: 60em) {
      .overview-page.header .subtitle {
        font-size: 1.728rem; } }
    @media (min-width: 68.75em) {
      .overview-page.header .subtitle {
        font-size: 2.074rem; } }
    .overview-page.header .subtitle:after {
      content: "";
      width: 12%;
      height: 4px;
      background-color: #4b6a7e;
      display: block;
      margin-top: 0.75em; }
  .overview-page.header .body {
    margin-top: 1em; }
    @media (min-width: 68.75em) {
      .overview-page.header .body {
        padding-right: 1.5em; } }
  .overview-page.header .lead-image-wrapper {
    margin: 0 auto; }
    @media (min-width: 37.5em) {
      .overview-page.header .lead-image-wrapper {
        display: inline;
        float: left;
        width: 36.5%;
        margin-right: 1.6%;
        margin-left: 0;
        margin-right: 0;
        margin-top: 0.5em; } }

.overview-page .featured-content-group {
  margin-bottom: 1em; }
  @media (min-width: 31.25em) {
    .overview-page .featured-content-group {
      *zoom: 1;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap; }
      .overview-page .featured-content-group:after {
        content: "";
        display: table;
        clear: both; } }
  .overview-page .featured-content-group.one-up .featured-image {
    display: initial;
    margin-right: 0;
    float: none;
    width: auto;
    display: block;
    margin-bottom: 0.5em; }
    @media (min-width: 37.5em) {
      .overview-page .featured-content-group.one-up .featured-image {
        display: inline;
        float: left;
        width: 55.55%;
        margin-right: 1.6%;
        margin-left: 0; } }
  .overview-page .featured-content-group.one-up .title, .overview-page .featured-content-group.one-up .teaser {
    padding-right: 1em;
    padding-left: 1em; }
  .overview-page .featured-content-group.one-up .title {
    font-family: 'abril-text', Times, serif;
    font-weight: 600;
    margin-bottom: 0.833em;
    line-height: 1.2;
    color: #464648;
    font-size: 1.2rem;
    display: initial;
    margin-right: 0;
    float: none;
    width: auto;
    display: block; }
    .overview-page .featured-content-group.one-up .title a {
      color: #464648;
      text-decoration: none; }
      .overview-page .featured-content-group.one-up .title a:hover, .overview-page .featured-content-group.one-up .title a:focus {
        color: #202021;
        text-decoration: underline; }
    @media (min-width: 60em) {
      .overview-page .featured-content-group.one-up .title {
        font-size: 1.44rem; } }
    @media (min-width: 68.75em) {
      .overview-page .featured-content-group.one-up .title {
        font-size: 1.728rem; } }
    @media (min-width: 37.5em) {
      .overview-page .featured-content-group.one-up .title {
        display: inline;
        float: left;
        width: 36.5%;
        margin-right: 1.6%;
        margin-left: 0;
        margin-left: 6.35%;
        margin-right: 0;
        padding: 0;
        margin-top: 0.25em; } }
  .overview-page .featured-content-group.one-up .teaser {
    display: initial;
    margin-right: 0;
    float: none;
    width: auto;
    font-size: 1em;
    display: block; }
    @media (min-width: 37.5em) {
      .overview-page .featured-content-group.one-up .teaser {
        display: inline;
        float: left;
        width: 36.5%;
        margin-right: 1.6%;
        margin-left: 0;
        margin-left: 6.35%;
        margin-right: 0;
        margin-top: 1em;
        padding: 0; } }
  @media (min-width: 37.5em) {
    .overview-page .featured-content-group.two-up {
      padding-bottom: 1em;
      border-bottom: 4px solid #f5f5f5;
      margin-bottom: 1em;
      margin-bottom: 2em; } }
  @media (min-width: 37.5em) {
    .overview-page .featured-content-group.two-up .featured-content {
      display: inline;
      float: left;
      width: 49.2%;
      margin-right: 1.6%;
      margin-left: 0;
      border-bottom: 0; }
      .overview-page .featured-content-group.two-up .featured-content:nth-of-type(1n) {
        margin-right: 1.6%;
        float: left;
        clear: none; }
        .lt-ie8 .overview-page .featured-content-group.two-up .featured-content:nth-of-type(1n) {
          margin-right: 1.35%; }
      .overview-page .featured-content-group.two-up .featured-content:nth-of-type(2n+2) {
        margin-right: 0; }
      .overview-page .featured-content-group.two-up .featured-content:nth-of-type(2n+3) {
        clear: both; } }
  @media (min-width: 37.5em) {
    .overview-page .featured-content-group.two-up .featured-content .featured-image, .overview-page .featured-content-group.two-up .featured-content .teaser, .overview-page .featured-content-group.two-up .featured-content .title {
      display: initial;
      margin-right: 0;
      float: none;
      width: auto; } }
  @media (min-width: 37.5em) {
    .overview-page .featured-content-group.two-up .featured-content .title {
      font-family: 'abril-text', Times, serif;
      font-weight: 600;
      margin-bottom: 0.833em;
      line-height: 1.2;
      color: #464648;
      font-size: 1rem;
      display: block; }
      .overview-page .featured-content-group.two-up .featured-content .title a {
        color: #464648;
        text-decoration: none; }
        .overview-page .featured-content-group.two-up .featured-content .title a:hover, .overview-page .featured-content-group.two-up .featured-content .title a:focus {
          color: #202021;
          text-decoration: underline; } }
  @media (min-width: 37.5em) and (min-width: 60em) {
    .overview-page .featured-content-group.two-up .featured-content .title {
      font-size: 1.2rem; } }
  @media (min-width: 37.5em) and (min-width: 68.75em) {
    .overview-page .featured-content-group.two-up .featured-content .title {
      font-size: 1.44rem; } }
  @media (min-width: 37.5em) {
    .overview-page .featured-content-group.two-up .featured-content .teaser {
      display: block; } }
  @media (min-width: 37.5em) {
    .overview-page .featured-content-group.three-up {
      padding-bottom: 1em;
      border-bottom: 4px solid #f5f5f5;
      margin-bottom: 1em;
      margin-bottom: 2em; } }
  @media (min-width: 37.5em) {
    .overview-page .featured-content-group.three-up .featured-content {
      width: 32.26667%;
      margin-right: 1.6%;
      border-bottom: 0; }
      .overview-page .featured-content-group.three-up .featured-content:nth-of-type(3n) {
        margin-right: 0; } }
  @media (min-width: 37.5em) {
    .overview-page .featured-content-group.three-up .featured-content .featured-image, .overview-page .featured-content-group.three-up .featured-content .teaser, .overview-page .featured-content-group.three-up .featured-content .title {
      display: initial;
      margin-right: 0;
      float: none;
      width: auto; } }
  @media (min-width: 37.5em) {
    .overview-page .featured-content-group.three-up .featured-content .title {
      font-family: 'abril-text', Times, serif;
      font-weight: 600;
      margin-bottom: 0.833em;
      line-height: 1.2;
      color: #464648;
      font-size: 1rem;
      display: block; }
      .overview-page .featured-content-group.three-up .featured-content .title a {
        color: #464648;
        text-decoration: none; }
        .overview-page .featured-content-group.three-up .featured-content .title a:hover, .overview-page .featured-content-group.three-up .featured-content .title a:focus {
          color: #202021;
          text-decoration: underline; } }
  @media (min-width: 37.5em) and (min-width: 60em) {
    .overview-page .featured-content-group.three-up .featured-content .title {
      font-size: 1.2rem; } }
  @media (min-width: 37.5em) and (min-width: 68.75em) {
    .overview-page .featured-content-group.three-up .featured-content .title {
      font-size: 1.44rem; } }
  @media (min-width: 37.5em) {
    .overview-page .featured-content-group.three-up .featured-content .teaser {
      display: block; } }
  @media (min-width: 43.75em) {
    .overview-page .featured-content-group.four-up .featured-content {
      display: inline;
      float: left;
      width: 49.2%;
      margin-right: 1.6%;
      margin-left: 0; }
      .overview-page .featured-content-group.four-up .featured-content:nth-of-type(1n) {
        margin-right: 1.6%;
        float: left;
        clear: none; }
        .lt-ie8 .overview-page .featured-content-group.four-up .featured-content:nth-of-type(1n) {
          margin-right: 1.35%; }
      .overview-page .featured-content-group.four-up .featured-content:nth-of-type(2n+2) {
        margin-right: 0; }
      .overview-page .featured-content-group.four-up .featured-content:nth-of-type(2n+3) {
        clear: both; } }
  @media (min-width: 68.75em) {
    .overview-page .featured-content-group.four-up .featured-content {
      display: inline;
      float: left;
      width: 23.8%;
      margin-right: 1.6%;
      margin-left: 0; }
      .overview-page .featured-content-group.four-up .featured-content:nth-of-type(1n) {
        margin-right: 1.6%;
        float: left;
        clear: none; }
        .lt-ie8 .overview-page .featured-content-group.four-up .featured-content:nth-of-type(1n) {
          margin-right: 1.35%; }
      .overview-page .featured-content-group.four-up .featured-content:nth-of-type(4n+4) {
        margin-right: 0; }
      .overview-page .featured-content-group.four-up .featured-content:nth-of-type(4n+5) {
        clear: both; } }
  .overview-page .featured-content-group.four-up .teaser {
    font-size: 0.9em; }

.overview-page .featured-content {
  padding-bottom: 1em;
  border-bottom: 4px solid #f5f5f5;
  margin-bottom: 1em;
  *zoom: 1; }
  .overview-page .featured-content:after {
    content: "";
    display: table;
    clear: both; }
  .overview-page .featured-content .featured-image {
    display: inline;
    float: left;
    width: 30.15%;
    margin-right: 1.6%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0.5em;
    float: right; }
  .overview-page .featured-content .title, .overview-page .featured-content .teaser {
    display: inline;
    float: left;
    width: 68.25%;
    margin-right: 1.6%;
    margin-left: 0;
    padding-left: 0.25em;
    padding-right: 0.25em; }
  @media (min-width: 43.75em) {
    .overview-page .featured-content .featured-image, .overview-page .featured-content .teaser, .overview-page .featured-content .title {
      display: initial;
      margin-right: 0;
      float: none;
      width: auto; } }
  .overview-page .featured-content .title {
    font-family: 'abril-text', Times, serif;
    font-weight: 600;
    margin-bottom: 0.833em;
    line-height: 1.2;
    color: #464648;
    font-size: 1em; }
    .overview-page .featured-content .title a {
      color: #464648;
      text-decoration: none; }
      .overview-page .featured-content .title a:hover, .overview-page .featured-content .title a:focus {
        color: #202021;
        text-decoration: underline; }
    @media (min-width: 43.75em) {
      .overview-page .featured-content .title {
        display: block; } }
  .overview-page .featured-content .teaser {
    font-size: 0.875em;
    line-height: 1.4;
    display: block; }

.list-page .body p {
  font-size: 1.125em;
  color: #777; }

.list-page .post {
  margin: 1.5em 0; }
  .list-page .post h2, .list-page .post h3 {
    margin-bottom: 0.2em; }

.list-page .featured-post {
  *zoom: 1;
  margin: 1.5em 0 3em; }
  .list-page .featured-post:after {
    content: "";
    display: table;
    clear: both; }
  .list-page .featured-post .post-header {
    margin-bottom: 1.602em;
    position: relative; }
  .list-page .featured-post h2 {
    margin-bottom: 0.702em; }
  .list-page .featured-post .featured-image {
    display: inherit; }
  .list-page .featured-post .posted-on {
    position: absolute;
    background: rgba(56, 79, 94, 0.85);
    padding: 0.5em 1em;
    bottom: -0.5em;
    right: -0.5em;
    margin: 0;
    width: auto; }
    @media (min-width: 31.25em) {
      .list-page .featured-post .posted-on {
        display: inline;
        float: left;
        width: 11.1%;
        margin-right: 1.6%;
        margin-left: 0;
        background: transparent;
        position: static;
        padding: 0;
        margin-top: 1.602em; } }
    .list-page .featured-post .posted-on span {
      display: inline;
      color: #fff;
      font-size: 0.833em;
      line-height: 1;
      font-weight: 400; }
      @media (min-width: 31.25em) {
        .list-page .featured-post .posted-on span {
          display: block;
          color: #F05123;
          font-size: 1em; } }
    .list-page .featured-post .posted-on .day {
      font-size: 0.833em;
      margin-bottom: 0.25em; }
      @media (min-width: 31.25em) {
        .list-page .featured-post .posted-on .day {
          font-size: 1.802em;
          font-weight: 600; } }
      .list-page .featured-post .posted-on .day::after {
        content: ","; }
        @media (min-width: 31.25em) {
          .list-page .featured-post .posted-on .day::after {
            content: none; } }
    .list-page .featured-post .posted-on .year {
      color: rgba(255, 255, 255, 0.7); }
      @media (min-width: 31.25em) {
        .list-page .featured-post .posted-on .year {
          color: #444; } }

.list-page .post:not(.featured-post) {
  padding-top: 1em;
  border-top: 4px solid #f5f5f5;
  margin-top: 1em;
  padding: 1.5em 0;
  margin-top: 0; }

.list-page .post-list {
  clear: both; }
  .list-page .post-list article {
    overflow: hidden;
    *zoom: 1; }
    .list-page .post-list article .post-header {
      padding-bottom: 0; }
    .list-page .post-list article .teaser {
      clear: both;
      padding-top: 1em; }
  .list-page .post-list .has-thumbnail .teaser {
    clear: both; }
    @media (min-width: 37.5em) {
      .list-page .post-list .has-thumbnail .teaser {
        display: inline;
        float: left;
        width: 55.55%;
        margin-right: 1.6%;
        margin-left: 0;
        margin-right: 0;
        clear: none; } }
  .list-page .post-list .has-thumbnail .featured-image {
    display: inline;
    float: left;
    width: 100%;
    margin-right: 1.6%;
    margin-left: 0;
    padding-bottom: 1em; }
    @media (min-width: 37.5em) {
      .list-page .post-list .has-thumbnail .featured-image {
        display: inline;
        float: left;
        width: 36.5%;
        margin-right: 1.6%;
        margin-left: 0;
        margin-right: 6.35%;
        padding-bottom: 0; } }
    .blog .list-page .post-list .has-thumbnail .featured-image {
      padding-top: 1em; }

.blog .has-thumbnail .teaser {
  clear: both; }
  @media (min-width: 37.5em) {
    .blog .has-thumbnail .teaser {
      display: inline;
      float: left;
      width: 55.55%;
      margin-right: 1.6%;
      margin-left: 0;
      margin-right: 0;
      clear: none; } }
  @media (min-width: 46.875em) {
    .blog .has-thumbnail .teaser {
      display: inline;
      float: left;
      width: 100%;
      margin-right: 1.6%;
      margin-left: 0;
      clear: both; } }
  @media (min-width: 68.75em) {
    .blog .has-thumbnail .teaser {
      display: inline;
      float: left;
      width: 55.55%;
      margin-right: 1.6%;
      margin-left: 0;
      margin-right: 0;
      clear: none; } }

.blog .has-thumbnail .featured-image {
  display: inline;
  float: left;
  width: 100%;
  margin-right: 1.6%;
  margin-left: 0;
  padding-bottom: 0; }
  @media (min-width: 37.5em) {
    .blog .has-thumbnail .featured-image {
      display: inline;
      float: left;
      width: 36.5%;
      margin-right: 1.6%;
      margin-left: 0;
      margin-right: 6.35%; } }
  @media (min-width: 46.875em) {
    .blog .has-thumbnail .featured-image {
      display: inline;
      float: left;
      width: 100%;
      margin-right: 1.6%;
      margin-left: 0; } }
  @media (min-width: 68.75em) {
    .blog .has-thumbnail .featured-image {
      display: inline;
      float: left;
      width: 36.5%;
      margin-right: 1.6%;
      margin-left: 0;
      margin-right: 6.35%; } }

.job-header .view-all {
  font-family: 'abril-text', Times, serif;
  font-weight: 600;
  display: inline-block;
  font-style: italic;
  margin-bottom: 1em; }

.job-header .department {
  margin-top: -0.5em; }
  @media (min-width: 68.75em) {
    .job-header .department {
      margin-top: -1em; } }

.job-header .lead-image-wrapper {
  margin-bottom: 1em; }
  @media (min-width: 68.75em) {
    .job-header .lead-image-wrapper {
      margin-bottom: 1.5em; } }

.meta {
  padding: 0.5em 0 1.5em;
  margin: 1.5em 0;
  border-bottom: 10px solid #f5f5f5;
  font-weight: 500; }
  @media (min-width: 68.75em) {
    .meta {
      font-size: 0.889em; } }
  .meta div {
    margin-bottom: 0.25em; }
  .meta strong {
    color: #464648;
    font-weight: 500; }

.job-content .secondary-meta {
  font-weight: 500;
  text-transform: capitalize; }
  @media (min-width: 31.25em) {
    .job-content .secondary-meta {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; } }
  @media (min-width: 31.25em) {
    .job-content .secondary-meta .hours-per-week {
      margin-right: 2.5em; } }
  .job-content .secondary-meta strong {
    font-family: 'abril-text', Times, serif;
    font-weight: 600;
    font-weight: 600;
    font-size: 1.633em;
    color: #384F5E;
    margin-right: 0.2em;
    vertical-align: middle; }

.job-content .job-description {
  margin: 2.5em 0;
  padding-bottom: 2.5em;
  border-bottom: 2px solid #f5f5f5; }
  .job-content .job-description p:last-child {
    margin-bottom: 0; }

.job-content .job-description-info section {
  padding-bottom: 1em; }

.disclaimer {
  padding: 1.5em;
  background: #F9F9F8;
  margin-top: 1.5em;
  font-size: 1rem; }
  .disclaimer h3 {
    font-family: 'abril-text', Times, serif;
    font-weight: 600;
    margin-bottom: 0.833em;
    line-height: 1.2;
    color: #464648;
    font-size: 1rem;
    margin: 1em 0;
    font-size: 1rem; }
    .disclaimer h3 a {
      color: #464648;
      text-decoration: none; }
      .disclaimer h3 a:hover, .disclaimer h3 a:focus {
        color: #202021;
        text-decoration: underline; }
    @media (min-width: 60em) {
      .disclaimer h3 {
        font-size: 1.2rem; } }
    @media (min-width: 68.75em) {
      .disclaimer h3 {
        font-size: 1.44rem; } }
  .disclaimer p:last-child {
    margin-bottom: 0; }

.supervisor-name,
.contact-name {
  font-weight: 600;
  color: #464648; }

.supervisor-title,
.contact-title {
  margin-bottom: 1em;
  font-style: italic;
  color: #464648; }

.list-filter {
  padding-bottom: 1em;
  border-bottom: 2px solid #f5f5f5; }
  .list-filter .section-title {
    font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
    font-weight: normal;
    display: block;
    color: #777;
    margin-bottom: 2em;
    font-weight: 500; }
  .list-filter .input-group {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    overflow: hidden; }
  .list-filter .input {
    display: inline;
    float: left;
    width: 49.2%;
    margin-right: 1.6%;
    margin-left: 0; }
    .list-filter .input:nth-of-type(1n) {
      margin-right: 1.6%;
      float: left;
      clear: none; }
      .lt-ie8 .list-filter .input:nth-of-type(1n) {
        margin-right: 1.35%; }
    .list-filter .input:nth-of-type(2n+2) {
      margin-right: 0; }
    .list-filter .input:nth-of-type(2n+3) {
      clear: both; }
    @media (min-width: 31.25em) {
      .list-filter .input {
        display: inline;
        float: left;
        width: 32.26667%;
        margin-right: 1.6%;
        margin-left: 0; }
        .list-filter .input:nth-of-type(1n) {
          margin-right: 1.6%;
          float: left;
          clear: none; }
          .lt-ie8 .list-filter .input:nth-of-type(1n) {
            margin-right: 1.35%; }
        .list-filter .input:nth-of-type(3n+3) {
          margin-right: 0; }
        .list-filter .input:nth-of-type(3n+4) {
          clear: both; } }

.job-list .page-title {
  margin-bottom: 2rem;
  padding-bottom: 1em;
  border-bottom: 10px solid #f5f5f5; }

.job-list .body {
  margin-bottom: 2em; }

.job-list .job-group {
  margin-top: 3em; }
  .job-list .job-group .job {
    *zoom: 1;
    border-bottom: 4px solid #f5f5f5;
    padding-bottom: 1.5em;
    margin-bottom: 1.5em; }
    .job-list .job-group .job:after {
      content: "";
      display: table;
      clear: both; }
    .job-list .job-group .job:last-of-type {
      border-bottom: 0;
      padding-bottom: 0;
      margin-bottom: 0; }
    .job-list .job-group .job .title-wrapper {
      margin-bottom: 1.5em; }
      @media (min-width: 37.5em) {
        .job-list .job-group .job .title-wrapper {
          display: inline;
          float: left;
          width: 74.6%;
          margin-right: 1.6%;
          margin-left: 0; } }
      .job-list .job-group .job .title-wrapper .employee-type {
        text-transform: uppercase;
        font-size: 0.833em;
        letter-spacing: 1px;
        font-weight: 500;
        color: #777; }
      .job-list .job-group .job .title-wrapper .section-title {
        margin-bottom: 0; }
    .job-list .job-group .job .date-posted {
      font-family: 'abril-text', Times, serif;
      font-weight: 600;
      font-size: 0.875em;
      padding-top: 0.3em;
      color: #777; }
      @media (min-width: 37.5em) {
        .job-list .job-group .job .date-posted {
          display: inline;
          float: left;
          width: 23.8%;
          margin-right: 1.6%;
          margin-left: 0;
          margin-right: 0; } }
      .job-list .job-group .job .date-posted strong {
        font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
        font-weight: normal;
        font-size: 0.889em;
        display: block;
        font-weight: 500; }
    .job-list .job-group .job .department {
      font-size: 0.875em;
      font-weight: 500;
      color: #777;
      margin-top: 1em; }
  .job-list .job-group .pagination {
    padding-top: 1.5em; }

.search-results .search-block, .search-no-results .search-block {
  padding-bottom: 1em; }
  .search-results .search-block .search-bar-wrapper, .search-no-results .search-block .search-bar-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin-bottom: 1em; }
    .search-results .search-block .search-bar-wrapper .input, .search-no-results .search-block .search-bar-wrapper .input {
      width: 100%;
      margin: 0; }
    .search-results .search-block .search-bar-wrapper input[type="text"], .search-no-results .search-block .search-bar-wrapper input[type="text"] {
      border-right: none; }
  .search-results .search-block .num-results, .search-no-results .search-block .num-results {
    display: block;
    color: #777; }

.search-results .filter-results, .search-no-results .filter-results {
  padding-bottom: 1.5em; }
  .search-results .filter-results .input, .search-no-results .filter-results .input {
    display: inline-block;
    font-size: 1.125em;
    color: #464648;
    margin: 1em 0.5em;
    cursor: pointer;
    padding: 0.5em;
    -webkit-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out; }
    .search-results .filter-results .input::after, .search-no-results .filter-results .input::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      width: 100%;
      background: #F05123;
      -webkit-transform: scaleX(0);
          -ms-transform: scaleX(0);
              transform: scaleX(0);
      -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; }
    .search-results .filter-results .input label, .search-no-results .filter-results .input label {
      cursor: pointer; }
    .search-results .filter-results .input.is-active, .search-results .filter-results .input:hover, .search-no-results .filter-results .input.is-active, .search-no-results .filter-results .input:hover {
      position: relative;
      color: #F05123; }
      .search-results .filter-results .input.is-active::after, .search-results .filter-results .input:hover::after, .search-no-results .filter-results .input.is-active::after, .search-no-results .filter-results .input:hover::after {
        -webkit-transform: scaleX(1);
            -ms-transform: scaleX(1);
                transform: scaleX(1);
        -webkit-transform-origin: center;
            -ms-transform-origin: center;
                transform-origin: center; }
    .search-results .filter-results .input input[type="radio"], .search-no-results .filter-results .input input[type="radio"] {
      border: 0;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px; }

.search-results h3, .search-no-results h3 {
  margin-bottom: 0; }

.search-results .sorry, .search-no-results .sorry {
  margin-bottom: 1.5em; }

.search-results .permalink, .search-no-results .permalink {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  color: #777;
  padding-bottom: 0.5em;
  display: block; }

.search-results article, .search-no-results article {
  padding: 3em 0 1.5em; }
  .search-results article:not(:last-of-type), .search-no-results article:not(:last-of-type) {
    border-bottom: 10px solid #f5f5f5; }
  .search-results article:first-of-type, .search-no-results article:first-of-type {
    padding-top: 0; }

.primary .type-post .post-header .post-image {
  padding-top: 1em;
  margin-bottom: 1.5em; }

.primary .type-post .post-header .view-all {
  font-family: 'abril-text', Times, serif;
  font-weight: 600;
  margin-bottom: 1.5em;
  display: block;
  font-style: italic; }

.primary .type-post .post-meta {
  border-top: 1px solid #D8D8D8;
  border-bottom: 1px solid #D8D8D8;
  padding: 1em 0;
  margin: 1.5em 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

.primary .type-post .post-footer {
  padding: 1.5em 2em;
  background-color: #f5f5f5; }
  .primary .type-post .post-footer .section-title {
    font-family: 'abril-text', Times, serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #777; }

.primary .type-post .related-post-group {
  margin-left: 0;
  margin-top: 0;
  margin: 0; }
  .primary .type-post .related-post-group li {
    list-style-type: none; }
  @media (min-width: 31.25em) {
    .primary .type-post .related-post-group {
      *zoom: 1; }
      .primary .type-post .related-post-group:after {
        content: "";
        display: table;
        clear: both; } }
  @media (min-width: 60em) {
    .primary .type-post .related-post-group h5 {
      margin-top: 0.5em; } }
  .primary .type-post .related-post-group .related-post {
    padding: 0.75em 1em;
    background-color: #fff;
    border-top: 3px solid #6FA6BD; }
    @media (min-width: 31.25em) {
      .primary .type-post .related-post-group .related-post {
        display: inline;
        float: left;
        width: 49.2%;
        margin-right: 1.6%;
        margin-left: 0; }
        .primary .type-post .related-post-group .related-post:nth-of-type(1n) {
          margin-right: 1.6%;
          float: left;
          clear: none; }
          .lt-ie8 .primary .type-post .related-post-group .related-post:nth-of-type(1n) {
            margin-right: 1.35%; }
        .primary .type-post .related-post-group .related-post:nth-of-type(2n+2) {
          margin-right: 0; }
        .primary .type-post .related-post-group .related-post:nth-of-type(2n+3) {
          clear: both; } }

.primary .type-post .body p {
  clear: left; }
  .primary .type-post .body p:first-of-type {
    clear: none; }
    @media (min-width: 37.5em) {
      .primary .type-post .body p:first-of-type {
        padding-right: 3.5em; } }

.primary .type-post .body .posted-on {
  text-align: center;
  background-color: #F9F9F8;
  padding: 0.75em 0;
  margin-bottom: 1em; }
  @media (min-width: 31.25em) {
    .primary .type-post .body .posted-on {
      padding: 1em 0.75em;
      width: 25%;
      float: left;
      display: inline-block;
      margin-right: 0.75em;
      margin-bottom: 0.5em; } }
  @media (min-width: 60em) {
    .primary .type-post .body .posted-on {
      width: 20%; } }
  .primary .type-post .body .posted-on .posted-text {
    font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #444;
    text-transform: uppercase;
    margin-bottom: 0.25em;
    font-size: 0.8em; }
  .primary .type-post .body .posted-on .date {
    font-family: 'abril-text', Times, serif;
    font-weight: 600;
    margin-bottom: 0.833em;
    line-height: 1.2;
    color: #464648;
    font-size: 1em;
    margin-bottom: 0; }
    .primary .type-post .body .posted-on .date a {
      color: #464648;
      text-decoration: none; }
      .primary .type-post .body .posted-on .date a:hover, .primary .type-post .body .posted-on .date a:focus {
        color: #202021;
        text-decoration: underline; }

.primary .type-post .body .social-icon-group {
  margin-top: -0.75em;
  margin-right: auto;
  margin-left: auto;
  text-align: center; }
  @media (min-width: 31.25em) {
    .primary .type-post .body .social-icon-group {
      float: right;
      width: 3.3em;
      margin-top: 0.25em; } }
  @media (min-width: 31.25em) {
    .primary .type-post .body .social-icon-group .social-icon {
      display: block;
      padding: 1em;
      border-bottom: 1px solid #D8D8D8;
      border-right: 0 none; }
      .primary .type-post .body .social-icon-group .social-icon:last-of-type {
        margin-bottom: 0;
        border: 0 none; }
      .primary .type-post .body .social-icon-group .social-icon [class^="icon-"] {
        margin-left: -0.1em; } }

.event-list .body {
  margin-bottom: 2em; }

.event-list .month-time-slot {
  margin-top: 3em; }
  .event-list .month-time-slot .month-title {
    margin-bottom: 1em; }

.event-list .day-time-slot {
  *zoom: 1;
  padding-bottom: 1em; }
  .event-list .day-time-slot:after {
    content: "";
    display: table;
    clear: both; }
  .event-list .day-time-slot .day-time-slot {
    margin-bottom: 1.5em; }
  .event-list .day-time-slot .section-title {
    *zoom: 1;
    border-top: 10px solid #f5f5f5;
    padding: 1em 0; }
    .event-list .day-time-slot .section-title:after {
      content: "";
      display: table;
      clear: both; }
    .event-list .day-time-slot .section-title .day-number {
      font-family: 'abril-text', Times, serif;
      font-weight: 600;
      margin-bottom: 0.833em;
      line-height: 1.2;
      color: #464648;
      font-size: 1.44rem;
      display: inline;
      float: left;
      width: 11.1%;
      margin-right: 1.6%;
      margin-left: 0;
      color: #F05123;
      padding-top: 0.25em;
      margin-bottom: 0; }
      .event-list .day-time-slot .section-title .day-number a {
        color: #464648;
        text-decoration: none; }
        .event-list .day-time-slot .section-title .day-number a:hover, .event-list .day-time-slot .section-title .day-number a:focus {
          color: #202021;
          text-decoration: underline; }
      @media (min-width: 60em) {
        .event-list .day-time-slot .section-title .day-number {
          font-size: 1.728rem; } }
      @media (min-width: 68.75em) {
        .event-list .day-time-slot .section-title .day-number {
          font-size: 2.074rem; } }
    .event-list .day-time-slot .section-title .date-wrapper {
      display: inline;
      float: left;
      width: 87.3%;
      margin-right: 1.6%;
      margin-left: 0;
      margin-right: 0; }
      .event-list .day-time-slot .section-title .date-wrapper .day-name {
        display: block;
        text-transform: uppercase;
        color: #464648;
        letter-spacing: 1px;
        font-weight: 500; }
      .event-list .day-time-slot .section-title .date-wrapper .month-year {
        font-family: 'abril-text', Times, serif;
        font-weight: 600;
        display: block;
        color: #777;
        margin-top: -0.25em; }
  .event-list .day-time-slot .event {
    display: inline;
    float: left;
    width: 87.3%;
    margin-right: 1.6%;
    margin-left: 0;
    margin-left: 12.7%;
    margin-right: 0;
    position: relative;
    padding: 1.5em 0; }
    .event-list .day-time-slot .event:not(:first-of-type) {
      border-top: 1px solid #D8D8D8; }
    .event-list .day-time-slot .event .title {
      margin-bottom: 0.25em;
/*ADDED THIS*/      width:80%; }
    @media (min-width: 37.5em) {
      .event-list .day-time-slot .event .categories {
        position: absolute;
        right: 0.5em;
        top: 1em;
        width: 4em; } }
    .event-list .day-time-slot .event .categories .category {
      font-family: 'abril-text', Times, serif;
      font-weight: 600;
      margin-bottom: 0.833em;
      line-height: 1.2;
      color: #464648;
      font-size: 0.875em;
      font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
      font-weight: normal;
      text-transform: uppercase;
      color: #777;
      font-weight: 500;
      margin-top: 1em;
      display: block;
      letter-spacing: 1px; }
      .event-list .day-time-slot .event .categories .category a {
        color: #464648;
        text-decoration: none; }
        .event-list .day-time-slot .event .categories .category a:hover, .event-list .day-time-slot .event .categories .category a:focus {
          color: #202021;
          text-decoration: underline; }
      @media (min-width: 37.5em) {
        .event-list .day-time-slot .event .categories .category {
          display: block; } }
    .event-list .day-time-slot .event .start-time {
      display: block;
      clear: left;
      font-weight: 500;
      color: #777; }

.event-list .event-filters {
  margin-bottom: 1.5em; }
  .event-list .event-filters .section-title {
    margin-bottom: 0.5em;
    color: #777; }
  .event-list .event-filters .filter-choice-group {
    margin-bottom: 1em; }
  .event-list .event-filters .filter-choice {
    margin-bottom: 0.5em; }
    .event-list .event-filters .filter-choice .label-text {
      vertical-align: middle;
      color: #777; }
    .event-list .event-filters .filter-choice :checked + .label-text {
      color: #444; }
  .event-list .event-filters .submit-button {
    width: 100%; }
    @media (min-width: 37.5em) {
      .event-list .event-filters .submit-button {
        width: auto; } }

.tribe-events-ajax-loading {
  display: none; }

.event-detail .tribe-events-back {
  font-family: 'abril-text', Times, serif;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 1em; }

.event-detail .page-title {
  font-family: 'abril-text', Times, serif;
  font-weight: 600;
  margin-bottom: 0.833em;
  line-height: 1.2;
  color: #464648;
  font-size: 1.728rem;
  margin-bottom: 1em; }
  .event-detail .page-title a {
    color: #464648;
    text-decoration: none; }
    .event-detail .page-title a:hover, .event-detail .page-title a:focus {
      color: #202021;
      text-decoration: underline; }
  @media (min-width: 60em) {
    .event-detail .page-title {
      font-size: 2.074rem; } }
  @media (min-width: 68.75em) {
    .event-detail .page-title {
      font-size: 2.986rem; } }

.event-detail .meta-info {
  padding-bottom: 1em;
  border-bottom: 4px solid #f5f5f5;
  margin-bottom: 1em;
  border-width: 12px;
  border-color: #f5f5f5;
  *zoom: 1; }
  .event-detail .meta-info:after {
    content: "";
    display: table;
    clear: both; }

@media (min-width: 37.5em) {
  .event-detail .time-location-wrapper {
    display: inline;
    float: left;
    width: 49.2%;
    margin-right: 1.6%;
    margin-left: 0; } }

.event-detail .start-time {
  margin-bottom: 0.5em; }
  @media (min-width: 37.5em) {
    .event-detail .start-time {
      margin-bottom: 0.5em; } }
  .event-detail .start-time .date {
    font-family: 'abril-text', Times, serif;
    font-weight: 600;
    margin-bottom: 0.833em;
    line-height: 1.2;
    color: #464648;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5em; }
    .event-detail .start-time .date a {
      color: #464648;
      text-decoration: none; }
      .event-detail .start-time .date a:hover, .event-detail .start-time .date a:focus {
        color: #202021;
        text-decoration: underline; }
    @media (min-width: 60em) {
      .event-detail .start-time .date {
        font-size: 1.2rem; } }
    @media (min-width: 68.75em) {
      .event-detail .start-time .date {
        font-size: 1.44rem; } }
  .event-detail .start-time .time {
    display: block;
    font-family: 'abril-text', Times, serif;
    font-weight: 600;
    margin-bottom: 0.833em;
    line-height: 1.2;
    color: #464648;
    font-size: 1em;
    font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
    font-weight: normal; }
    .event-detail .start-time .time a {
      color: #464648;
      text-decoration: none; }
      .event-detail .start-time .time a:hover, .event-detail .start-time .time a:focus {
        color: #202021;
        text-decoration: underline; }

.event-detail .social-icon-group {
  display: inline-block; }
  @media (min-width: 37.5em) {
    .event-detail .social-icon-group {
      float: right; } }
  @media (min-width: 37.5em) {
    .event-detail .social-icon-group {
      text-align: left; } }

.event-detail .venue {
  display: block;
  clear: left;
  margin-bottom: 1em; }

.event-detail .tribe-events-cal-links {
  margin-bottom: 1em; }
  @media (min-width: 37.5em) {
    .event-detail .tribe-events-cal-links {
      display: inline;
      float: left;
      width: 49.2%;
      margin-right: 1.6%;
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 2em; } }
  .event-detail .tribe-events-cal-links .tribe-events-button:first-of-type {
    margin-right: 1em; }
  @media (min-width: 37.5em) {
    .event-detail .tribe-events-cal-links .tribe-events-button {
      display: block; } }
  .event-detail .tribe-events-cal-links .icon-plus {
    margin-top: 0.35em;
    width: 12px;
    height: 12px; }

.event-detail .eventbrite-ticket-embed > iframe {
  height: 280px !important; }

.event-detail .categories {
  margin-bottom: 1em; }
  .event-detail .categories .category {
    display: inline-block; }
    .event-detail .categories .category:after {
      content: ",";
      margin-right: 0.25em;
      margin-left: -0.25em; }
    .event-detail .categories .category:last-of-type:after {
      content: none;
      margin: 0; }

.event-detail .audiences {
  *zoom: 1;
  margin-top: 1em; }
  .event-detail .audiences:after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 37.5em) {
    .event-detail .audiences {
      clear: left; } }
  .event-detail .audiences .title {
    margin-bottom: 0.15em; }
  .event-detail .audiences .intended-audience-group {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0; }
    .event-detail .audiences .intended-audience-group li {
      list-style-type: none; }
    .event-detail .audiences .intended-audience-group li {
      display: inline-block;
      margin-right: 0.5em;
      margin-bottom: 0; }
      .event-detail .audiences .intended-audience-group li:last-of-type {
        margin-right: 0; }

.event-detail .tribe-events-event-image {
  margin-bottom: 1em; }

.event-detail .type-tribe_events {
  margin-bottom: 1.5em; }

.event-detail .tribe-events-meta-group-venue {
  margin-bottom: 1em; }
  @media (min-width: 37.5em) {
    .event-detail .tribe-events-meta-group-venue {
      display: inline;
      float: left;
      width: 49.2%;
      margin-right: 1.6%;
      margin-left: 0; } }
  .event-detail .tribe-events-meta-group-venue .tribe-venue-location, .event-detail .tribe-events-meta-group-venue .tribe-venue-tel, .event-detail .tribe-events-meta-group-venue .url {
    margin-bottom: 1em; }
  .event-detail .tribe-events-meta-group-venue .label {
    font-size: 0.875em;
    color: #777; }

.event-detail .tribe-events-meta-group-gmap {
  margin-bottom: 1em; }
  @media (min-width: 37.5em) {
    .event-detail .tribe-events-meta-group-gmap {
      display: inline;
      float: left;
      width: 49.2%;
      margin-right: 1.6%;
      margin-left: 0;
      margin-right: 0; } }

.event-detail .related-posts {
  *zoom: 1;
  clear: both; }
  .event-detail .related-posts:after {
    content: "";
    display: table;
    clear: both; }

.news-list {
  padding-top: 2.5em; }
  @media (min-width: 43.75em) {
    .news-list .featured-post .featured-image {
      max-height: 400px;
      overflow: hidden; } }
  .news-list .post:first-child {
    border-top: 10px solid #f5f5f5; }
  .news-list .post .posted-on {
    font-family: 'abril-text', Times, serif;
    font-weight: 600;
    font-weight: 400;
    font-size: 0.866em;
    display: inline-block;
    margin-bottom: 0.706em; }
    @media (min-width: 31.25em) {
      .news-list .post .posted-on {
        display: inline;
        float: left;
        width: 11.1%;
        margin-right: 1.6%;
        margin-left: 0;
        text-align: center; } }
    .news-list .post .posted-on span {
      color: #F05123; }
      @media (min-width: 31.25em) {
        .news-list .post .posted-on span {
          display: block;
          font-size: 1em;
          line-height: 1;
          font-weight: 400; } }
    @media (min-width: 31.25em) {
      .news-list .post .posted-on .day {
        font-size: 1.802em;
        font-weight: 600;
        margin-bottom: 0.25em; } }
    .news-list .post .posted-on .day::after {
      content: ","; }
      @media (min-width: 31.25em) {
        .news-list .post .posted-on .day::after {
          content: none; } }
    .news-list .post .posted-on .year {
      color: #444; }
  @media (min-width: 31.25em) {
    .news-list .post .post-excerpt {
      display: inline;
      float: left;
      width: 87.3%;
      margin-right: 1.6%;
      margin-left: 0;
      margin-right: 0; } }
  @media (min-width: 43.75em) {
    .news-list .post .post-excerpt {
      display: inline;
      float: left;
      width: 80.95%;
      margin-right: 1.6%;
      margin-left: 0;
      margin-left: 6.35%;
      margin-right: 0; } }
  .news-list .post.has-thumbnail .teaser {
    clear: both; }
    @media (min-width: 37.5em) {
      .news-list .post.has-thumbnail .teaser {
        display: inline;
        float: left;
        width: 61.9%;
        margin-right: 1.6%;
        margin-left: 0;
        clear: none; } }
    @media (min-width: 46.875em) {
      .news-list .post.has-thumbnail .teaser {
        display: inline;
        float: left;
        width: 100%;
        margin-right: 1.6%;
        margin-left: 0;
        clear: both; } }
    @media (min-width: 68.75em) {
      .news-list .post.has-thumbnail .teaser {
        display: inline;
        float: left;
        width: 61.9%;
        margin-right: 1.6%;
        margin-left: 0;
        clear: none; } }
  .news-list .post.has-thumbnail .featured-image {
    display: inline;
    float: left;
    width: 100%;
    margin-right: 1.6%;
    margin-left: 0;
    padding-top: 1em; }
    @media (min-width: 37.5em) {
      .news-list .post.has-thumbnail .featured-image {
        display: inline;
        float: left;
        width: 36.5%;
        margin-right: 1.6%;
        margin-left: 0;
        margin-right: 0;
        float: right; } }
    @media (min-width: 46.875em) {
      .news-list .post.has-thumbnail .featured-image {
        display: inline;
        float: left;
        width: 100%;
        margin-right: 1.6%;
        margin-left: 0; } }
    @media (min-width: 68.75em) {
      .news-list .post.has-thumbnail .featured-image {
        display: inline;
        float: left;
        width: 36.5%;
        margin-right: 1.6%;
        margin-left: 0;
        margin-right: 0;
        float: right; } }

/*! Tablesaw - v1.0.5 - 2015-10-09
* https://github.com/filamentgroup/tablesaw
* Copyright (c) 2015 Filament Group; Licensed MIT */
/*! Tablesaw - v1.0.5 - 2015-10-09
* https://github.com/filamentgroup/tablesaw
* Copyright (c) 2015 Filament Group; Licensed MIT */
table.tablesaw {
  empty-cells: show;
  max-width: 100%;
  width: 100%; }

.tablesaw {
  border-collapse: collapse;
  width: 100%; }

/* Structure */
.tablesaw {
  border: 0;
  padding: 0; }

.tablesaw th,
.tablesaw td {
  box-sizing: border-box;
  padding: .5em .7em; }

.tablesaw thead tr:first-child th {
  padding-top: .9em;
  padding-bottom: .7em; }

/* Table rows have a gray bottom stroke by default */
.tablesaw-stack tbody tr {
  border-bottom: 1px solid #dfdfdf; }

.tablesaw-stack td .tablesaw-cell-label,
.tablesaw-stack th .tablesaw-cell-label {
  display: none; }

/* Mobile first styles: Begin with the stacked presentation at narrow widths */
@media only all {
  /* Show the table cells as a block level element */
  .tablesaw-stack td,
  .tablesaw-stack th {
    text-align: left;
    display: block; }
  .tablesaw-stack tr {
    clear: both;
    display: table-row; }
  /* Make the label elements a percentage width */
  .tablesaw-stack td .tablesaw-cell-label,
  .tablesaw-stack th .tablesaw-cell-label {
    display: block;
    padding: 0 .6em 0 0;
    width: 30%;
    display: inline-block; }
  /* For grouped headers, have a different style to visually separate the levels by classing the first label in each col group */
  .tablesaw-stack th .tablesaw-cell-label-top,
  .tablesaw-stack td .tablesaw-cell-label-top {
    display: block;
    padding: .4em 0;
    margin: .4em 0; }
  .tablesaw-cell-label {
    display: block; }
  /* Avoid double strokes when stacked */
  .tablesaw-stack tbody th.group {
    margin-top: -1px; }
  /* Avoid double strokes when stacked */
  .tablesaw-stack th.group b.tablesaw-cell-label {
    display: none !important; } }

.primary-navigation {
  font-family: 'abril-text', Times, serif;
  font-weight: 600;
  background: #f5f5f5;
  height: auto;
  width: 100%;
  z-index: 5000;
  display: none;
  clear: both; }
  @media (min-width: 46.875em) {
    .primary-navigation {
      -webkit-box-flex: 1;
      -webkit-flex-grow: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      width: 100%;
      background: transparent;
      padding: 0;
      position: relative;
      height: auto;
      display: block; } }
  @media (max-height: 45em) and (min-width: 46.875em) {
    .primary-navigation {
      margin-top: -15px; } }
  .primary-navigation.is-visible {
    padding-bottom: 1em; }
  .primary-navigation .menu {
    padding: 2em 0; }
    @media (min-width: 46.875em) {
      .primary-navigation .menu {
        background-color: inherit;
        padding: 0; } }
  .primary-navigation .container {
    width: 90%;
    margin: auto;
    max-width: 76.75rem;
    *zoom: 1; }
    @media (min-width: 31.25em) {
      .primary-navigation .container {
        width: 85%; } }
    @media (min-width: 43.75em) {
      .primary-navigation .container {
        width: 95%; } }
    @media (min-width: 46.875em) {
      .primary-navigation .container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        padding: 1em 0;
        position: relative;
        background: #fff;
        border-bottom: 4px solid #F05123; } }
    @media (min-width: 46.875em) {
      .primary-navigation .container::after {
        content: "";
        position: absolute;
        width: 0;
        height: 4px;
        bottom: -4px;
        right: 0;
        background: #464648;
        -webkit-transition: width 0.3s cubic-bezier(0.69, 0.39, 0.42, 0.91);
        transition: width 0.3s cubic-bezier(0.69, 0.39, 0.42, 0.91); } }
    .primary-navigation .container.search-open::after {
      width: 100%;
      -webkit-transition: width 0.3s cubic-bezier(0.69, 0.39, 0.42, 0.91);
      transition: width 0.3s cubic-bezier(0.69, 0.39, 0.42, 0.91); }
    @media (min-width: 46.875em) {
      .primary-navigation .container.search-open .current-page-ancestor a::after,
      .primary-navigation .container.search-open .current-menu-item a::after {
        -webkit-transform: scale(1);
            -ms-transform: scale(1);
                transform: scale(1); } }
  .primary-navigation .menu-main-navigation-container {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0; }
    @media (min-width: 46.875em) {
      .primary-navigation .menu-main-navigation-container {
        -webkit-flex-shrink: unset;
            -ms-flex-negative: unset;
                flex-shrink: unset; } }
  .primary-navigation .menu-item {
    padding-top: 1em;
    border-top: 4px solid #f5f5f5;
    margin-top: 1em;
    margin-top: 0.833em;
    padding-top: 0.833em; }
    @media (min-width: 46.875em) {
      .primary-navigation .menu-item {
        padding: 0;
        border: 0 none;
        margin: 0;
        display: inline-block;
        text-align: left;
        margin-right: 0.5em; } }
    @media (min-width: 60em) {
      .primary-navigation .menu-item {
        margin-right: 1em; } }
    .primary-navigation .menu-item:first-of-type {
      padding-top: 0;
      margin-top: 0;
      border-top: 0 none; }
    .primary-navigation .menu-item.last {
      margin-right: 0; }
    @media (min-width: 46.875em) {
      .primary-navigation .menu-item.current-page-ancestor a,
      .primary-navigation .menu-item.current-menu-item a {
        position: relative; } }
    @media (min-width: 46.875em) {
      .primary-navigation .menu-item.current-page-ancestor a::after,
      .primary-navigation .menu-item.current-menu-item a::after {
        -webkit-transform: scaleY(6);
            -ms-transform: scaleY(6);
                transform: scaleY(6);
        -webkit-transform-origin: bottom;
            -ms-transform-origin: bottom;
                transform-origin: bottom; } }
    .primary-navigation .menu-item a {
      padding: 0.35em 1.5em;
      color: #464648; }
      @media (min-width: 46.875em) {
        .primary-navigation .menu-item a {
          padding: 0.35em 0.5em;
          position: relative; } }
      @media (min-width: 60em) {
        .primary-navigation .menu-item a {
          padding: 1em; } }
      @media (min-width: 46.875em) {
        .primary-navigation .menu-item a::after {
          content: "";
          position: absolute;
          bottom: -1em;
          left: 0;
          background: #F05123;
          width: 100%;
          height: 1px;
          -webkit-transition: -webkit-transform 0.2s;
          transition: -webkit-transform 0.2s;
          transition: transform 0.2s;
          transition: transform 0.2s, -webkit-transform 0.2s; } }
      @media (min-width: 60em) {
        .primary-navigation .menu-item a::after {
          bottom: -5px; } }
      @media (min-width: 46.875em) {
        .primary-navigation .menu-item a:hover {
          color: #444;
          outline: none;
          text-decoration: none; } }
      .primary-navigation .menu-item a:hover::after {
        -webkit-transform: scaleY(4);
            -ms-transform: scaleY(4);
                transform: scaleY(4);
        -webkit-transform-origin: bottom;
            -ms-transform-origin: bottom;
                transform-origin: bottom; }

.support-navigation {
  font-family: 'abril-text', Times, serif;
  font-weight: 600;
  background: #fff; }
  @media (min-width: 46.875em) {
    .support-navigation {
      position: absolute;
      z-index: 100;
      height: 90px;
      top: 0;
      right: 0;
      background: transparent;
      text-align: right;
      width: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; } }
  .support-navigation .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 4px solid #F05123;
    padding: 0.5em 0; }
    @media (min-width: 46.875em) {
      .support-navigation .container {
        width: 90%;
        margin: auto;
        max-width: 76.75rem;
        *zoom: 1;
        display: block;
        margin-top: 0;
        margin-bottom: 0;
        border: none;
        padding: 0; } }
  @media (min-width: 46.875em) and (min-width: 31.25em) {
    .support-navigation .container {
      width: 85%; } }
  @media (min-width: 46.875em) and (min-width: 43.75em) {
    .support-navigation .container {
      width: 95%; } }
  .support-navigation .menu {
    margin-right: -0.5em; }
    @media (min-width: 46.875em) {
      .support-navigation .menu {
        z-index: 500; } }
  .support-navigation li {
    display: inline-block; }
    @media (min-width: 46.875em) {
      .support-navigation li:not(:last-child) {
        border-right: 2px solid #f5f5f5; } }
    .support-navigation li.current-page-ancestor a,
    .support-navigation li.current-menu-item a {
      position: relative; }
      @media (min-width: 46.875em) {
        .support-navigation li.current-page-ancestor a,
        .support-navigation li.current-menu-item a {
          color: #464648; } }
      .support-navigation li.current-page-ancestor a:hover,
      .support-navigation li.current-menu-item a:hover {
        text-decoration: none; }
        @media (min-width: 46.875em) {
          .support-navigation li.current-page-ancestor a:hover,
          .support-navigation li.current-menu-item a:hover {
            color: #ba340d; } }
        .support-navigation li.current-page-ancestor a:hover::after,
        .support-navigation li.current-menu-item a:hover::after {
          -webkit-transform: scaleY(4);
              -ms-transform: scaleY(4);
                  transform: scaleY(4); }
          @media (min-width: 46.875em) {
            .support-navigation li.current-page-ancestor a:hover::after,
            .support-navigation li.current-menu-item a:hover::after {
              content: none; } }
      .support-navigation li.current-page-ancestor a::after,
      .support-navigation li.current-menu-item a::after {
        -webkit-transform: scaleY(6);
            -ms-transform: scaleY(6);
                transform: scaleY(6);
        -webkit-transform-origin: bottom;
            -ms-transform-origin: bottom;
                transform-origin: bottom; }
        @media (min-width: 46.875em) {
          .support-navigation li.current-page-ancestor a::after,
          .support-navigation li.current-menu-item a::after {
            content: none; } }
  .support-navigation a {
    padding: 0 0.5em;
    color: #464648;
    position: relative; }
    .support-navigation a::after {
      content: "";
      position: absolute;
      bottom: -1.3em;
      left: 0;
      background: #F05123;
      width: 100%;
      height: 1px;
      -webkit-transition: -webkit-transform 0.2s;
      transition: -webkit-transform 0.2s;
      transition: transform 0.2s;
      transition: transform 0.2s, -webkit-transform 0.2s; }
      @media (min-width: 46.875em) {
        .support-navigation a::after {
          content: none; } }
    .support-navigation a:hover {
      color: #444;
      outline: none;
      text-decoration: none; }
      .support-navigation a:hover::after {
        -webkit-transform: scaleY(4);
            -ms-transform: scaleY(4);
                transform: scaleY(4);
        -webkit-transform-origin: bottom;
            -ms-transform-origin: bottom;
                transform-origin: bottom; }
        @media (min-width: 46.875em) {
          .support-navigation a:hover::after {
            content: none; } }
    @media (min-width: 31.25em) {
      .support-navigation a {
        padding: 0 1em; } }
    @media (min-width: 46.875em) {
      .support-navigation a {
        font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
        font-weight: normal;
        padding: 0 1.5em;
        color: #F05123;
        font-weight: 500;
        font-size: 1.125em; }
        .support-navigation a:hover {
          color: #ba340d; } }

.mobile-navigation {
  *zoom: 1; }
  .mobile-navigation:after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 46.875em) {
    .mobile-navigation {
      display: none; } }

.menu-trigger {
  border: none;
  background-color: transparent;
  color: #F05123;
  font-size: 16px;
  font-family: inherit;
  padding: 0.5em;
  margin: 0;
  position: relative; }
  .menu-trigger .hamburger {
    width: 14px;
    height: 2px;
    background: #F05123;
    position: relative;
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34);
    transition: -webkit-transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34);
    transition: transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34);
    transition: transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34), -webkit-transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34);
    margin-right: 0.335em;
    margin-top: -5px;
    display: inline-block;
    top: -5px; }
    .menu-trigger .hamburger::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: #F05123;
      top: -4px;
      left: 0;
      -webkit-transform: none;
          -ms-transform: none;
              transform: none;
      -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34);
      transition: -webkit-transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34);
      transition: transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34);
      transition: transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34), -webkit-transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34); }
    .menu-trigger .hamburger::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: #F05123;
      bottom: -4px;
      left: 0;
      -webkit-transform: none;
          -ms-transform: none;
              transform: none;
      -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34);
      transition: -webkit-transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34);
      transition: transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34);
      transition: transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34), -webkit-transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34); }
  .menu-trigger:hover, .menu-trigger:focus {
    cursor: pointer; }
  .menu-trigger::after {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #F05123;
    -webkit-transition: -webkit-transform 0.15s ease-in-out;
    transition: -webkit-transform 0.15s ease-in-out;
    transition: transform 0.15s ease-in-out;
    transition: transform 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
    -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
            transform: scaleY(1); }
  .menu-trigger.is-active::after {
    background: #F05123;
    -webkit-transform: scaleY(3);
        -ms-transform: scaleY(3);
            transform: scaleY(3);
    -webkit-transform-origin: bottom;
        -ms-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transition: -webkit-transform 0.15s ease-in-out;
    transition: -webkit-transform 0.15s ease-in-out;
    transition: transform 0.15s ease-in-out;
    transition: transform 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; }
  .menu-trigger.is-active .hamburger {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34);
    transition: -webkit-transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34);
    transition: transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34);
    transition: transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34), -webkit-transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34); }
    .menu-trigger.is-active .hamburger::before {
      -webkit-transform: translateY(4px) rotate(90deg);
          -ms-transform: translateY(4px) rotate(90deg);
              transform: translateY(4px) rotate(90deg);
      -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34);
      transition: -webkit-transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34);
      transition: transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34);
      transition: transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34), -webkit-transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34); }
    .menu-trigger.is-active .hamburger::after {
      -webkit-transform: translateY(-4px) rotate(90deg);
          -ms-transform: translateY(-4px) rotate(90deg);
              transform: translateY(-4px) rotate(90deg);
      -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34);
      transition: -webkit-transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34);
      transition: transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34);
      transition: transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34), -webkit-transform 0.3s cubic-bezier(0.41, -0.4, 0.53, 1.34); }
  .menu-trigger .icon-menu {
    width: 14px;
    height: 14px;
    margin-right: 0.5em;
    margin-top: -1px; }
  .menu-trigger .icon-menu svg {
    width: 14px;
    height: 14px;
    fill: currentColor; }

.secondary-navigation {
  border-top: 3px solid #f5f5f5;
  border-bottom: 3px solid #f5f5f5;
  padding: 1.5em 2em; }
  @media (min-width: 46.875em) {
    .secondary-navigation {
      border: none;
      position: relative;
      padding: 1.5em 1.5em;
      font-size: 0.9em; } }
  @media (min-width: 68.75em) {
    .secondary-navigation {
      padding: 1.5em 2.5em;
      font-size: 16px; } }
  .secondary-navigation .menu-item {
    display: none; }
    .secondary-navigation .menu-item a {
      color: #777;
      font-weight: 500;
      padding: 0.65em 0;
      display: inline-block; }
    .secondary-navigation .menu-item.current-menu-ancestor {
      display: block; }
      .secondary-navigation .menu-item.current-menu-ancestor > a {
        display: none; }
    .secondary-navigation .menu-item.current-menu-parent {
      display: block; }
      .secondary-navigation .menu-item.current-menu-parent > a {
        display: block;
        font-family: 'abril-text', Times, serif;
        font-weight: 600;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: #444; }
      .secondary-navigation .menu-item.current-menu-parent > .sub-menu {
        padding-left: 1em; }
        .secondary-navigation .menu-item.current-menu-parent > .sub-menu > .menu-item {
          display: block; }
          .secondary-navigation .menu-item.current-menu-parent > .sub-menu > .menu-item a {
            display: block; }
    .secondary-navigation .menu-item.current-menu-item {
      display: block; }
      .secondary-navigation .menu-item.current-menu-item > .sub-menu {
        padding-left: 1em; }
        .secondary-navigation .menu-item.current-menu-item > .sub-menu > .menu-item {
          display: block; }
  .secondary-navigation .menu {
    margin: 0; }
    .secondary-navigation .menu .current-menu-item > a {
      color: #F05123;
      font-weight: 600; }
    .secondary-navigation .menu .current-menu-item > .sub-menu a {
      background-color: #F9F9F8;
      padding-left: 0.5em;
      margin-left: -0.25em; }

.page-template-overview-page .secondary-navigation .current-menu-item > a {
  font-family: 'abril-text', Times, serif;
  font-weight: 600;
  color: #444; }

.page-template-overview-page .secondary-navigation .current-menu-item > .sub-menu a {
  background-color: #fff;
  padding-left: 0;
  margin-left: 0; }

.primary .breadcrumbs {
  font-family: 'abril-text', Times, serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: italic;
  padding-bottom: 1.5em;
  padding-top: 1em;
  font-size: 0.875em; }
  .primary .breadcrumbs .menu {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .primary .breadcrumbs .menu .sub-menu {
      padding: 0; }
  .primary .breadcrumbs .menu-item {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0; }
    .primary .breadcrumbs .menu-item > a {
      display: none; }
    .primary .breadcrumbs .menu-item:before {
      content: none; }
    @media (min-width: 46.875em) {
      .primary .breadcrumbs .menu-item.current-menu-ancestor {
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center; } }
    .primary .breadcrumbs .menu-item.current-menu-ancestor > .separator {
      display: none; }
      @media (min-width: 46.875em) {
        .primary .breadcrumbs .menu-item.current-menu-ancestor > .separator {
          display: -webkit-inline-box;
          display: -webkit-inline-flex;
          display: -ms-inline-flexbox;
          display: inline-flex; }
          .is-ie9 .primary .breadcrumbs .menu-item.current-menu-ancestor > .separator {
            display: inline-block; } }
    @media (min-width: 46.875em) {
      .primary .breadcrumbs .menu-item.current-menu-ancestor > a {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        white-space: nowrap; }
        .is-ie9 .primary .breadcrumbs .menu-item.current-menu-ancestor > a {
          display: inline-block; } }
    .primary .breadcrumbs .menu-item.current-menu-parent {
      display: -webkit-inline-box;
      display: -webkit-inline-flex;
      display: -ms-inline-flexbox;
      display: inline-flex; }
      .is-ie9 .primary .breadcrumbs .menu-item.current-menu-parent {
        display: inline-block; }
      .primary .breadcrumbs .menu-item.current-menu-parent > a {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        white-space: nowrap; }
        .is-ie9 .primary .breadcrumbs .menu-item.current-menu-parent > a {
          display: inline-block; }
      .primary .breadcrumbs .menu-item.current-menu-parent .separator {
        display: none; }
  .primary .breadcrumbs a {
    color: #397D99;
    margin-bottom: 0.45em;
    display: inline-block;
    text-decoration: none; }
    .primary .breadcrumbs a:hover {
      color: #384F5E; }
  .primary .breadcrumbs .separator, .primary .breadcrumbs .back-icon {
    width: 12px;
    height: 12px;
    margin: 0 0.7em 0 0;
    background-position: center right;
    background-size: contain; }
  .primary .breadcrumbs .separator {
    display: none; }
    @media (min-width: 46.875em) {
      .primary .breadcrumbs .separator {
        width: 2px;
        height: 15px;
        -webkit-transform: rotate(30deg);
            -ms-transform: rotate(30deg);
                transform: rotate(30deg);
        background: #D8D8D8;
        margin: 0 0.7em 0.5em 0.7em; } }
  .primary .breadcrumbs .back-icon {
    vertical-align: baseline; }

.inline-call-to-action {
  clear: both;
  border: 4px solid #D8D8D8;
  margin-bottom: 1em;
  padding: 2em; }
  .inline-call-to-action .title {
    font-family: 'abril-text', Times, serif;
    font-weight: 600;
    margin-bottom: 0.833em;
    line-height: 1.2;
    color: #464648;
    font-size: 1.2rem;
    margin-top: 0; }
    .inline-call-to-action .title a {
      color: #464648;
      text-decoration: none; }
      .inline-call-to-action .title a:hover, .inline-call-to-action .title a:focus {
        color: #202021;
        text-decoration: underline; }
    @media (min-width: 60em) {
      .inline-call-to-action .title {
        font-size: 1.44rem; } }
    @media (min-width: 68.75em) {
      .inline-call-to-action .title {
        font-size: 1.728rem; } }
  .inline-call-to-action .cta-body {
    margin-bottom: 1em; }

.primary .body .inline-call-to-action .title {
  margin-top: 0; }

.intro-block .container {
  position: relative; }

.intro-block .header-image-wrapper {
  background-position: center top;
  background-size: auto 100%;
  height: 55vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-bottom: 0;
  z-index: 100;
  max-height: 350px;
  min-height: 250px; }
  @media (min-width: 37.5em) {
    .intro-block .header-image-wrapper {
      background-position: left top;
      background-size: cover;
      max-height: 450px; } }
  @media (min-width: 46.875em) {
    .intro-block .header-image-wrapper {
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); } }
  @media (min-width: 60em) {
    .intro-block .header-image-wrapper {
      max-height: 500px;
      min-height: 300px; } }
  @media (min-width: 68.75em) {
    .intro-block .header-image-wrapper {
      background-position: left 30%;
      max-height: 550px;
      min-height: 300px; } }
 /* .intro-block .header-image-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.4); }
    @media (min-width: 37.5em) {
      .intro-block .header-image-wrapper::after {
        background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent); } }  */
  .intro-block .header-image-wrapper .container {
    position: relative;
    z-index: 200; }
    .is-ie9 .intro-block .header-image-wrapper .container {
      display: inline-block;
      margin-top: 4em; }
  .intro-block .header-image-wrapper .page-subhead {
    font-family: 'abril-text', Times, serif;
    font-weight: 600;
    margin-bottom: 0.833em;
    line-height: 1.2;
    color: #464648;
    font-size: 1em;
    color: #fff;
    padding-left: 0.866em;
    border-left: 5px solid #F05123;
    font-weight: normal; }
  .intro-block .header-image-wrapper .page-subhead a {
      color: #464648;
      text-decoration: none; }
      .intro-block .header-image-wrapper .page-subhead a:hover, .intro-block .header-image-wrapper .page-subhead a:focus {
        color: #202021;
        text-decoration: underline; }
    @media (min-width: 43.75em) {
      .intro-block .header-image-wrapper .page-subhead {
        margin-left: 6.35%; }
/*ADDED THIS*/      .intro-block .header-image-wrapper .right {
        margin-left: 60%;
        width:auto; }}
  .intro-block .header-image-wrapper p {
    font-family: 'abril-text', Times, serif;
    font-weight: 600;
    margin-bottom: 0.833em;
    line-height: 1.2;
    color: #464648;
    font-size: 1.44rem;
    color: #fff;
    font-weight: normal;
    margin-bottom: 0; }
/*ADDED THIS*/      .intro-block .header-image-wrapper .page-subhead:empty, .intro-block .header-image-wrapper p:empty  {
    display:none;
}
    .intro-block .header-image-wrapper p a {
      color: #464648;
      text-decoration: none; }
      .intro-block .header-image-wrapper p a:hover, .intro-block .header-image-wrapper p a:focus {
        color: #202021;
        text-decoration: underline; }
    @media (min-width: 60em) {
      .intro-block .header-image-wrapper p {
        font-size: 1.728rem; } }
    @media (min-width: 68.75em) {
      .intro-block .header-image-wrapper p {
        font-size: 2.074rem; } }
    @media (min-width: 37.5em) {
      .intro-block .header-image-wrapper p {
        display: inline;
        float: left;
        width: 49.2%;
        margin-right: 1.6%;
        margin-left: 0; } }
    @media (min-width: 43.75em) {
      .intro-block .header-image-wrapper p {
        margin-left: 6.35%; } }
    @media (min-width: 60em) {
      .intro-block .header-image-wrapper p {
        font-family: 'abril-text', Times, serif;
        font-weight: 600;
        margin-bottom: 0.833em;
        line-height: 1.2;
        color: #464648;
        font-size: 1.2rem;
        color: #fff;
        font-weight: normal; }
        .intro-block .header-image-wrapper p a {
          color: #464648;
          text-decoration: none; }
          .intro-block .header-image-wrapper p a:hover, .intro-block .header-image-wrapper p a:focus {
            color: #202021;
            text-decoration: underline; } }
  @media (min-width: 60em) and (min-width: 60em) {
    .intro-block .header-image-wrapper p {
      font-size: 1.44rem; } }
  @media (min-width: 60em) and (min-width: 68.75em) {
    .intro-block .header-image-wrapper p {
      font-size: 1.728rem; } }
    @media (min-width: 68.75em) {
      .intro-block .header-image-wrapper p {
        display: inline;
        float: left;
        width: 36.5%;
        margin-right: 1.6%;
        margin-left: 0;
        margin-left: 6.35%; } }

.intro-block .constrained {
  position: relative; }

.intro-block .primary-link-group {
  margin-left: -webkit-calc(-100vw * 0.05);
  margin-left: calc(-100vw * 0.05);
  margin-right: -webkit-calc(-100vw * 0.05);
  margin-right: calc(-100vw * 0.05);
  padding-left: -webkit-calc(100vw * 0.05);
  padding-left: calc(100vw * 0.05);
  padding-right: -webkit-calc(100vw * 0.05);
  padding-right: calc(100vw * 0.05);
  *zoom: 1;
  background: #fff;
  margin-top: 1.5em;
  text-align: center; }
  @media (min-width: 31.25em) {
    .intro-block .primary-link-group {
      margin-left: -webkit-calc(-100vw * 0.075);
      margin-left: calc(-100vw * 0.075);
      margin-right: -webkit-calc(-100vw * 0.075);
      margin-right: calc(-100vw * 0.075); } }
  @media (min-width: 43.75em) {
    .intro-block .primary-link-group {
      margin-left: -webkit-calc(-100vw * 0.025);
      margin-left: calc(-100vw * 0.025);
      margin-right: -webkit-calc(-100vw * 0.025);
      margin-right: calc(-100vw * 0.025); } }
  @media (min-width: 31.25em) {
    .intro-block .primary-link-group {
      padding-left: -webkit-calc(100vw * 0.075);
      padding-left: calc(100vw * 0.075);
      padding-right: -webkit-calc(100vw * 0.075);
      padding-right: calc(100vw * 0.075); } }
  @media (min-width: 43.75em) {
    .intro-block .primary-link-group {
      padding-left: -webkit-calc(100vw * 0.025);
      padding-left: calc(100vw * 0.025);
      padding-right: -webkit-calc(100vw * 0.025);
      padding-right: calc(100vw * 0.025); } }
  .intro-block .primary-link-group:after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 31.25em) {
    .intro-block .primary-link-group {
      margin-bottom: 0.5em; } }
  @media (min-width: 43.75em) {
    .intro-block .primary-link-group {
      padding: 0;
      margin: 0;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      background: transparent;
      margin-top: -35px;
      position: absolute;
      width: 100%;
      z-index: 300; } }
  .intro-block .primary-link-group li {
    margin: 0; }
    @media (min-width: 31.25em) {
      .intro-block .primary-link-group li {
        display: inline;
        float: left;
        width: 49.2%;
        margin-right: 1.6%;
        margin-left: 0; }
        .intro-block .primary-link-group li:nth-of-type(1n) {
          margin-right: 1.6%;
          float: left;
          clear: none; }
          .lt-ie8 .intro-block .primary-link-group li:nth-of-type(1n) {
            margin-right: 1.35%; }
        .intro-block .primary-link-group li:nth-of-type(3n+3) {
          margin-right: 0; }
        .intro-block .primary-link-group li:nth-of-type(3n+4) {
          clear: both; } }
    @media (min-width: 43.75em) {
      .intro-block .primary-link-group li {
        text-align: center;
        background: #fff;
        width: 33.33%;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
        margin: 0; } }
    .intro-block .primary-link-group li:first-child {
      border-bottom: 5px solid #f5f5f5; }
      @media (min-width: 31.25em) {
        .intro-block .primary-link-group li:first-child {
          border-bottom: 0; } }
      @media (min-width: 43.75em) {
        .intro-block .primary-link-group li:first-child {
          margin: 0; } }
    @media (min-width: 31.25em) {
      .intro-block .primary-link-group li:last-child {
        border-left: 5px solid #f5f5f5; } }
    @media (min-width: 43.75em) {
      .intro-block .primary-link-group li:last-child {
        border: 0;
        margin: 0; } }
    .intro-block .primary-link-group li:nth-child(2) {
      position: absolute;
      width: 100%;
      top: -4em;
      z-index: 400;
      display: block; }
      @media (min-width: 43.75em) {
        .intro-block .primary-link-group li:nth-child(2) {
          background: #F05123;
          position: relative;
          top: 0;
          width: 33.33%;
          margin: 0;
          -webkit-animation: pulse 0.8s both cubic-bezier(0.69, 0.39, 0.42, 0.91);
                  animation: pulse 0.8s both cubic-bezier(0.69, 0.39, 0.42, 0.91);
          /* 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); } } }
      .intro-block .primary-link-group li:nth-child(2) a {
        background: #F05123;
        color: #fff;
        text-decoration: none; }
        @media (min-width: 25em) {
          .intro-block .primary-link-group li:nth-child(2) a {
            display: inline;
            float: left;
            width: 61.9%;
            margin-right: 1.6%;
            margin-left: 0;
            margin-left: 19.05%; } }
        @media (min-width: 43.75em) {
          .intro-block .primary-link-group li:nth-child(2) a {
            width: 100%;
            margin: 0;
            padding: 1.125em 0; } }
        .intro-block .primary-link-group li:nth-child(2) a:hover {
          background: #df4b21; }
    .intro-block .primary-link-group li a {
      text-decoration: none;
      -webkit-transition: background-color 0.15s ease-in-out;
      transition: background-color 0.15s ease-in-out; }
      .intro-block .primary-link-group li a:hover {
        background: #f5f5f5; }
  .intro-block .primary-link-group a {
    padding: 1em 0;
    display: block;
    color: #F05123;
    text-decoration: none; }
    @media (min-width: 43.75em) {
      .intro-block .primary-link-group a {
        padding: 0.79em 0; } }

.at-a-glance {
  background: #384f5e;
  position: relative;
  color: #e9e9e9;
  z-index: 0;
  padding: 2em 0; }
  @media (max-width: 25em) {
    .at-a-glance {
      background: #e9e9e9;
	  color: #384f5e; } }
  @media (min-width: 25em) {
    .at-a-glance {
      text-align: center; } }
  @media (min-width: 43.75em) {
    .at-a-glance {
      margin-top: -1em;
      padding: 6em 0 2em; } }
  .at-a-glance::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 70vw solid #384f5e; }
	@media (max-width: 25em) {
    .at-a-glance::after {
      border-left: 70vw solid #e9e9e9; } }
    @media (min-width: 68.75em) {
      .at-a-glance::after {
        border-bottom-width: 50px;
        bottom: -50px; } }
  .at-a-glance h3.title {
    font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
    font-weight: normal;
    margin-bottom: 2.5em;
    color: #e9e9e9; }
	@media (max-width: 25em) {
    .at-a-glance h3.title {
      color: 70vw solid #F05123; } }
    @media (min-width: 25em) {
      .at-a-glance h3.title {
        text-align: center;
        margin-bottom: 1em; } }
  .at-a-glance .stat-group {
	  *zoom: 1;}
    .at-a-glance .stat-group:after {
      content: "";
      display: table;
      clear: both; }
    @media (min-width: 25em) {
      .at-a-glance .stat-group {
        background: #fff;
        padding: 2em 0;
        margin-bottom: 1em; } }
    @media (min-width: 37.5em) {
      .at-a-glance .stat-group {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
            -ms-flex-align: stretch;
                align-items: stretch; } }
    @media (min-width: 37.5em) {
      .is-ie9 .at-a-glance .stat-group {
        display: block; } }
    .at-a-glance .stat-group .stat {
      margin-bottom: 2em;
      color: #464648; }
      @media (min-width: 25em) {
        .at-a-glance .stat-group .stat {
          display: inline;
          float: left;
          width: 49.2%;
          margin-right: 1.6%;
          margin-left: 0;
          margin-bottom: 0; }
          .at-a-glance .stat-group .stat:nth-of-type(1n) {
            margin-right: 1.6%;
            float: left;
            clear: none; }
            .lt-ie8 .at-a-glance .stat-group .stat:nth-of-type(1n) {
              margin-right: 1.35%; }
          .at-a-glance .stat-group .stat:nth-of-type(2n+2) {
            margin-right: 0; }
          .at-a-glance .stat-group .stat:nth-of-type(2n+3) {
            clear: both; } }
      @media (min-width: 37.5em) {
        .at-a-glance .stat-group .stat {
          display: inline;
          float: left;
          width: 23.8%;
          margin-right: 1.6%;
          margin-left: 0;
          padding: 0 1em 0 0.5em; }
          .at-a-glance .stat-group .stat:nth-of-type(1n) {
            margin-right: 1.6%;
            float: left;
            clear: none; }
            .lt-ie8 .at-a-glance .stat-group .stat:nth-of-type(1n) {
              margin-right: 1.35%; }
          .at-a-glance .stat-group .stat:nth-of-type(4n+4) {
            margin-right: 0; }
          .at-a-glance .stat-group .stat:nth-of-type(4n+5) {
            clear: both; } }
      @media (min-width: 60em) {
        .at-a-glance .stat-group .stat {
          padding: 0 1.5em 0 1em; } }
      @media (min-width: 25em) {
        .at-a-glance .stat-group .stat:nth-child(-n + 2) {
          margin-bottom: 2.5em; } }
      @media (min-width: 37.5em) {
        .at-a-glance .stat-group .stat:nth-child(-n + 2) {
          margin-bottom: 0; } }
      .at-a-glance .stat-group .stat:last-child .number {
        color: #F05123; }
      .at-a-glance .stat-group .stat:last-child .text {
        color: #F05123; }
      .at-a-glance .stat-group .stat .number {
        font-family: 'abril-text', Times, serif;
        font-weight: 600;
        margin-bottom: 0.833em;
        line-height: 1.2;
        color: #464648;
        font-size: 1.44rem;
        color: #464648;
        margin-bottom: 0.125rem;
        display: inline-block;
        margin-right: 0.5em; }
        .at-a-glance .stat-group .stat .number a {
          color: #464648;
          text-decoration: none; }
          .at-a-glance .stat-group .stat .number a:hover, .at-a-glance .stat-group .stat .number a:focus {
            color: #202021;
            text-decoration: underline; }
        @media (min-width: 60em) {
          .at-a-glance .stat-group .stat .number {
            font-size: 1.728rem; } }
        @media (min-width: 68.75em) {
          .at-a-glance .stat-group .stat .number {
            font-size: 2.074rem; } }
        @media (min-width: 25em) {
          .at-a-glance .stat-group .stat .number {
            display: block; } }
        @media (min-width: 37.5em) {
          .at-a-glance .stat-group .stat .number {
            margin-right: 0;
            opacity: 0; } }
        @media (min-width: 60em) {
          .at-a-glance .stat-group .stat .number {
            font-size: 3em;
            margin-bottom: 1rem; } }
        @media (min-width: 37.5em) {
          .is-ie9 .at-a-glance .stat-group .stat .number {
            opacity: 1; } }
      .at-a-glance .stat-group .stat .text {
        margin: 0;
        font-size: 0.889em;
        display: inline-block;
        color: #777;
        font-weight: 500; }
        @media (min-width: 25em) {
          .at-a-glance .stat-group .stat .text {
            display: inline;
            float: left;
            width: 61.9%;
            margin-right: 1.6%;
            margin-left: 0;
            margin-left: 19.05%; } }
        @media (min-width: 37.5em) {
          .at-a-glance .stat-group .stat .text {
            width: 100%;
            margin: 0;
            opacity: 0; } }
        @media (min-width: 43.75em) {
          .at-a-glance .stat-group .stat .text {
            font-size: 1em; } }
        @media (min-width: 37.5em) {
          .is-ie9 .at-a-glance .stat-group .stat .text {
            opacity: 1; } }
      @media (min-width: 37.5em) {
        .at-a-glance .stat-group .stat:nth-child(1) .number {
          -webkit-animation: fade 1s forwards;
                  animation: fade 1s forwards;
          -webkit-animation-delay: 0.081s;
                  animation-delay: 0.081s; } }
      .is-ie9 .at-a-glance .stat-group .stat:nth-child(1) .number {
        -webkit-animation: none;
                animation: none; }
      @media (min-width: 37.5em) {
        .at-a-glance .stat-group .stat:nth-child(1) .text {
          -webkit-animation: fade 1s forwards;
                  animation: fade 1s forwards;
          -webkit-animation-delay: 0.2835s;
                  animation-delay: 0.2835s; } }
      .is-ie9 .at-a-glance .stat-group .stat:nth-child(1) .text {
        -webkit-animation: none;
                animation: none; }
      @media (min-width: 37.5em) {
        .at-a-glance .stat-group .stat:nth-child(2) .number {
          -webkit-animation: fade 1s forwards;
                  animation: fade 1s forwards;
          -webkit-animation-delay: 0.162s;
                  animation-delay: 0.162s; } }
      .is-ie9 .at-a-glance .stat-group .stat:nth-child(2) .number {
        -webkit-animation: none;
                animation: none; }
      @media (min-width: 37.5em) {
        .at-a-glance .stat-group .stat:nth-child(2) .text {
          -webkit-animation: fade 1s forwards;
                  animation: fade 1s forwards;
          -webkit-animation-delay: 0.3645s;
                  animation-delay: 0.3645s; } }
      .is-ie9 .at-a-glance .stat-group .stat:nth-child(2) .text {
        -webkit-animation: none;
                animation: none; }
      @media (min-width: 37.5em) {
        .at-a-glance .stat-group .stat:nth-child(3) .number {
          -webkit-animation: fade 1s forwards;
                  animation: fade 1s forwards;
          -webkit-animation-delay: 0.243s;
                  animation-delay: 0.243s; } }
      .is-ie9 .at-a-glance .stat-group .stat:nth-child(3) .number {
        -webkit-animation: none;
                animation: none; }
      @media (min-width: 37.5em) {
        .at-a-glance .stat-group .stat:nth-child(3) .text {
          -webkit-animation: fade 1s forwards;
                  animation: fade 1s forwards;
          -webkit-animation-delay: 0.4455s;
                  animation-delay: 0.4455s; } }
      .is-ie9 .at-a-glance .stat-group .stat:nth-child(3) .text {
        -webkit-animation: none;
                animation: none; }
      @media (min-width: 37.5em) {
        .at-a-glance .stat-group .stat:nth-child(4) .number {
          -webkit-animation: fade 1s forwards;
                  animation: fade 1s forwards;
          -webkit-animation-delay: 0.324s;
                  animation-delay: 0.324s; } }
      .is-ie9 .at-a-glance .stat-group .stat:nth-child(4) .number {
        -webkit-animation: none;
                animation: none; }
      @media (min-width: 37.5em) {
        .at-a-glance .stat-group .stat:nth-child(4) .text {
          -webkit-animation: fade 1s forwards;
                  animation: fade 1s forwards;
          -webkit-animation-delay: 0.5265s;
                  animation-delay: 0.5265s; } }
      .is-ie9 .at-a-glance .stat-group .stat:nth-child(4) .text {
        -webkit-animation: none;
                animation: none; }

@-webkit-keyframes fade {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fade {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
      @media (min-width: 25em) {
        .at-a-glance .stat-group .stat:nth-child(odd) {
          border-right: 1px solid #D8D8D8; } }
      @media (min-width: 37.5em) {
        .at-a-glance .stat-group .stat:not(:last-child) {
          border-right: 1px solid transparent; } }
      @media (min-width: 37.5em) {
        .at-a-glance .stat-group .stat:nth-child(1) {
          -webkit-animation: fade-border 1s forwards;
                  animation: fade-border 1s forwards;
          -webkit-animation-delay: 0.5265s;
                  animation-delay: 0.5265s; } }
      @media (min-width: 37.5em) {
        .at-a-glance .stat-group .stat:nth-child(2) {
          -webkit-animation: fade-border 1s forwards;
                  animation: fade-border 1s forwards;
          -webkit-animation-delay: 0.6075s;
                  animation-delay: 0.6075s; } }
      @media (min-width: 37.5em) {
        .at-a-glance .stat-group .stat:nth-child(3) {
          -webkit-animation: fade-border 1s forwards;
                  animation: fade-border 1s forwards;
          -webkit-animation-delay: 0.6885s;
                  animation-delay: 0.6885s; } }

@-webkit-keyframes fade-border {
  from {
    border-color: transparent; }
  to {
    border-color: #D8D8D8; } }

@keyframes fade-border {
  from {
    border-color: transparent; }
  to {
    border-color: #D8D8D8; } }

@media (min-width: 31.25em) {
  .success-story {
    padding-top: 5em;
    padding-bottom: 1em; } }

@media (min-width: 43.75em) {
  .success-story {
    padding-top: 6em;
    padding-bottom: 2em; } }

@media (min-width: 68.75em) {
  .success-story {
    padding-top: 8em;
    padding-bottom: 3em; } }

.success-story .section-title {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  color: #F05123;
  letter-spacing: 0.5px;
  display: block;
  position: relative;
  font-size: 1em; }

.success-story .alumni-profile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: -1em;
  position: relative;
  z-index: 400; }
  @media (min-width: 31.25em) {
    .success-story .alumni-profile {
      *zoom: 1;
      display: block; }
      .success-story .alumni-profile:after {
        content: "";
        display: table;
        clear: both; } }

.success-story .photo {
  margin-bottom: 1.5em;
  margin-left: auto;
  margin-right: auto;
  max-width: 16em; }
  @media (min-width: 31.25em) {
    .success-story .photo {
      display: inline;
      float: left;
      width: 30.15%;
      margin-right: 1.6%;
      margin-left: 0;
      max-width: none; } }
  @media (min-width: 60em) {
    .success-story .photo {
      display: inline;
      float: left;
      width: 36.5%;
      margin-right: 1.6%;
      margin-left: 0; } }
  .success-story .photo img {
    width: 100%;
    border-radius: 50%; }

.success-story .profile-info {
  max-width: 23em;
  margin: 0 auto;
  text-align: center; }
  @media (min-width: 31.25em) {
    .success-story .profile-info {
      display: inline;
      float: left;
      width: 61.9%;
      margin-right: 1.6%;
      margin-left: 0;
      margin-left: 6.35%;
      margin-right: 0;
      text-align: left; } }
  @media (min-width: 60em) {
    .success-story .profile-info {
      display: inline;
      float: left;
      width: 49.2%;
      margin-right: 1.6%;
      margin-left: 0;
      margin-left: 6.35%;
      margin-right: 0;
      margin-top: 1.5em; } }

.success-story .name {
  font-family: 'abril-text', Times, serif;
  font-weight: 600;
  margin-bottom: 0.833em;
  line-height: 1.2;
  color: #464648;
  font-size: 1.44rem;
  font-style: italic;
  position: relative;
  padding-right: 20px;
  margin-right: 10px; }
  .success-story .name a {
    color: #464648;
    text-decoration: none; }
    .success-story .name a:hover, .success-story .name a:focus {
      color: #202021;
      text-decoration: underline; }
  @media (min-width: 60em) {
    .success-story .name {
      font-size: 1.728rem; } }
  @media (min-width: 68.75em) {
    .success-story .name {
      font-size: 2.074rem; } }
  .success-story .name::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: #F05123;
    -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
            transform: rotate(15deg);
    right: 0;
    top: 0; }

.success-story .job-title {
  text-transform: uppercase;
  color: #777;
  font-weight: 500;
  font-size: 0.8em;
  letter-spacing: 1.9px; }

.success-story .excerpt {
  margin: 1em 0; }

.success-story .link-group {
  padding-top: 1em; }
  .success-story .link-group a {
    margin: 0.5em 0.833em 0 0;
    display: inline-block; }

.success-story .call-to-action {
  font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
  font-weight: normal;
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: #fff;
  background-color: #F05123;
  font-size: inherit;
  -webkit-transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  border: 2px solid #F05123;
  background-color: transparent;
  color: #F05123;
  border: 2px solid #D8D8D8;
  font-size: 0.875em; }
  .success-story .call-to-action:hover {
    text-decoration: none;
    background-color: #ba340d;
    color: #fff;
    border-color: #ba340d; }
  .success-story .call-to-action:hover {
    color: #F05123;
    background-color: #F9F9F8;
    border-color: #D8D8D8; }

.success-story .secondary-action {
  font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
  font-weight: normal;
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: #fff;
  background-color: #F05123;
  font-size: inherit;
  -webkit-transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  border: 2px solid #F05123;
  background-color: transparent;
  color: #777;
  font-weight: 600;
  font-size: 0.883em;
  border: 0; }
  .success-story .secondary-action:hover {
    text-decoration: none;
    background-color: #ba340d;
    color: #fff;
    border-color: #ba340d; }
  .success-story .secondary-action:hover {
    color: #464648;
    background: #F9F9F8; }

.featured-pages {
  background: #384F5E;
  padding: 2em 0; }
  @media (min-width: 60em) {
    .featured-pages {
      padding: 3.5em 0; } }
  .featured-pages .featured-page-group {
    margin-left: 0;
    margin-top: 0;
    *zoom: 1; }
    .featured-pages .featured-page-group li {
      list-style-type: none; }
    .featured-pages .featured-page-group:after {
      content: "";
      display: table;
      clear: both; }
    @media (min-width: 31.25em) {
      .featured-pages .featured-page-group {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
            -ms-flex-align: stretch;
                align-items: stretch; } }
  .featured-pages .featured-page {
    background: #fff;
    border-top: 6px solid #397D99;
    padding: 1.5em;
    color: #444;
    text-decoration: none;
    -webkit-transition: background-color 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out;
    display: block; }
    @media (min-width: 31.25em) {
      .featured-pages .featured-page {
        display: inline;
        float: left;
        width: 49.2%;
        margin-right: 1.6%;
        margin-left: 0; }
        .featured-pages .featured-page:nth-of-type(1n) {
          margin-right: 1.6%;
          float: left;
          clear: none; }
          .lt-ie8 .featured-pages .featured-page:nth-of-type(1n) {
            margin-right: 1.35%; }
        .featured-pages .featured-page:nth-of-type(2n+2) {
          margin-right: 0; }
        .featured-pages .featured-page:nth-of-type(2n+3) {
          clear: both; } }
    @media (min-width: 43.75em) {
      .featured-pages .featured-page {
        padding: 2em 3em; } }
    .featured-pages .featured-page:hover {
      background: #F9F9F8; }
      .featured-pages .featured-page:hover .title {
        color: #777; }
    .featured-pages .featured-page:first-child {
      margin-bottom: 1em; }
      @media (min-width: 31.25em) {
        .featured-pages .featured-page:first-child {
          margin-bottom: 0; } }
    .featured-pages .featured-page .title {
      font-family: 'abril-text', Times, serif;
      font-weight: 600;
      margin-bottom: 0.833em;
      line-height: 1.2;
      color: #464648;
      font-size: 1rem;
      display: block;
      margin-bottom: 0.833em; }
      .featured-pages .featured-page .title a {
        color: #464648;
        text-decoration: none; }
        .featured-pages .featured-page .title a:hover, .featured-pages .featured-page .title a:focus {
          color: #202021;
          text-decoration: underline; }
      @media (min-width: 60em) {
        .featured-pages .featured-page .title {
          font-size: 1.2rem; } }
      @media (min-width: 68.75em) {
        .featured-pages .featured-page .title {
          font-size: 1.44rem; } }

.find-your-home {
  margin-top: 2.5em;
  position: relative; }
  @media (min-width: 25em) {
    .find-your-home {
      overflow-x: hidden; } }
  @media (min-width: 31.25em) {
    .find-your-home {
      overflow: visible; } }
  .find-your-home .container {
    *zoom: 1;
    position: relative;
    border-top: 10px solid #384f5e;
/*ADDED THIS*/    border-bottom: 10px solid #fff;
    padding-top: 2em; }
    .find-your-home .container:after {
      content: "";
      display: table;
      clear: both; }
    @media (min-width: 25em) {
      .find-your-home .container {
        padding: 2em 0; } }
    @media (min-width: 60em) {
      .find-your-home .container {
        padding: 4em 0; } }
    .find-your-home .container::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 10px;
      background: #f5f5f5;
      top: 2em;
      left: 0;
      z-index: 200;
      content: none; }
  .find-your-home .content {
    *zoom: 1;
    padding-bottom: 2em; }
    .find-your-home .content:after {
      content: "";
      display: table;
      clear: both; }
    @media (min-width: 25em) {
      .find-your-home .content {
        position: relative;
        display: inline;
        float: left;
/*CHANGED THIS*/        width: 54%; /*74.6%*/
        margin-right: 1.6%;
        margin-left: 0; } }
    @media (min-width: 31.25em) {
      .find-your-home .content {
        display: inline;
        float: left;
        width: 61.9%;
        margin-right: 1.6%;
        margin-left: 0; } }
    @media (min-width: 43.75em) {
      .find-your-home .content {
        display: inline;
        float: left;
        width: 49.2%;
        margin-right: 1.6%;
        margin-left: 0;
        margin-bottom: 1.5em; } }
    .find-your-home .content .title {
      font-family: 'abril-text', Times, serif;
      font-weight: 600;
      margin-bottom: 0.833em;
      line-height: 1.2;
      color: #464648;
      font-size: 1.44rem;
      margin-bottom: 1em; }
      .find-your-home .content .title a {
        color: #464648;
        text-decoration: none; }
        .find-your-home .content .title a:hover, .find-your-home .content .title a:focus {
          color: #202021;
          text-decoration: underline; }
      @media (min-width: 60em) {
        .find-your-home .content .title {
          font-size: 1.728rem; } }
      @media (min-width: 68.75em) {
        .find-your-home .content .title {
          font-size: 2.074rem; } }
      @media (min-width: 60em) {
        .find-your-home .content .title {
          font-family: 'abril-text', Times, serif;
          font-weight: 600;
          margin-bottom: 0.833em;
          line-height: 1.2;
          color: #464648;
          font-size: 1.2rem; }
          .find-your-home .content .title a {
            color: #464648;
            text-decoration: none; }
            .find-your-home .content .title a:hover, .find-your-home .content .title a:focus {
              color: #202021;
              text-decoration: underline; } }
  @media (min-width: 60em) and (min-width: 60em) {
    .find-your-home .content .title {
      font-size: 1.44rem; } }
  @media (min-width: 60em) and (min-width: 68.75em) {
    .find-your-home .content .title {
      font-size: 1.728rem; } }
      @media (min-width: 68.75em) {
        .find-your-home .content .title {
          font-family: 'abril-text', Times, serif;
          font-weight: 600;
          margin-bottom: 0.833em;
          line-height: 1.2;
          color: #464648;
          font-size: 1.44rem; }
          .find-your-home .content .title a {
            color: #464648;
            text-decoration: none; }
            .find-your-home .content .title a:hover, .find-your-home .content .title a:focus {
              color: #202021;
              text-decoration: underline; } }
  @media (min-width: 68.75em) and (min-width: 60em) {
    .find-your-home .content .title {
      font-size: 1.728rem; } }
  @media (min-width: 68.75em) and (min-width: 68.75em) {
    .find-your-home .content .title {
      font-size: 2.074rem; } }
  .find-your-home .call-to-action-group {
    *zoom: 1;
    display: inline;
    float: left;
    width: 49.2%;
    margin-right: 1.6%;
    margin-left: 0; }
    .find-your-home .call-to-action-group:after {
      content: "";
      display: table;
      clear: both; }
    @media (min-width: 25em) {
      .find-your-home .call-to-action-group {
        display: inline;
        float: left;
        width: 61.9%;
        margin-right: 1.6%;
        margin-left: 0; } }
    @media (min-width: 31.25em) {
      .find-your-home .call-to-action-group {
        display: inline;
        float: left;
        width: 61.9%;
        margin-right: 1.6%;
        margin-left: 0; } }
    @media (min-width: 43.75em) {
      .find-your-home .call-to-action-group {
        display: inline;
        float: left;
        width: 49.2%;
        margin-right: 1.6%;
        margin-left: 0; } }
    @media (min-width: 25em) {
      .find-your-home .call-to-action-group .call-to-action {
        float: left;
        margin-right: 1em; } }
    .find-your-home .call-to-action-group .call-to-action:last-child a {
      font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
      font-weight: normal;
      display: inline-block;
      padding: 0.5em 1em;
      text-decoration: none;
      color: #fff;
      background-color: #F05123;
      font-size: inherit;
      -webkit-transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
      transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
      border: 2px solid #F05123;
      background-color: transparent;
      color: #F05123;
      border: 2px solid #D8D8D8;
      font-size: 0.866em; }
      .find-your-home .call-to-action-group .call-to-action:last-child a:hover {
        text-decoration: none;
        background-color: #ba340d;
        color: #fff;
        border-color: #ba340d; }
      .find-your-home .call-to-action-group .call-to-action:last-child a:hover {
        color: #F05123;
        background-color: #F9F9F8;
        border-color: #D8D8D8; }
    .find-your-home .call-to-action-group a {
      font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
      font-weight: normal;
      display: inline-block;
      padding: 0.5em 1em;
      text-decoration: none;
      color: #fff;
      background-color: #F05123;
      font-size: inherit;
      -webkit-transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
      transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
      border: 2px solid #F05123;
      margin-bottom: 0.5em;
      font-size: 0.866em; }
      .find-your-home .call-to-action-group a:hover {
        text-decoration: none;
        background-color: #ba340d;
        color: #fff;
        border-color: #ba340d; }
      @media (min-width: 37.5em) {
        .find-your-home .call-to-action-group a {
          margin-bottom: 0; } }
  .find-your-home .image {
    *zoom: 1;
    display: inline;
    float: left;
    width: 49.2%;
    margin-right: 1.6%;
    margin-left: 0;
    margin-right: 0; }
    .find-your-home .image:after {
      content: "";
      display: table;
      clear: both; }
    @media (min-width: 25em) {
      .find-your-home .image {
        display: inline;
        float: left;
/*CHANGED THIS*/        width: 45%; /*36.5%*/
        margin-right: 1.6%;
        margin-left: 0;
        margin-right: 0;
        position: absolute;
        bottom: 0;
        right: 0;
        height: 100%;
/*ADDED THIS*/        overflow: hidden; }
        .find-your-home .image img {
          max-width: none;
          height: 100%;
          width: auto;
/*HID THIS          left: -20%;*/
          position: relative; } }
    @media (min-width: 31.25em) {
      .find-your-home .image {
        display: inline;
        float: left;
        width: 36.5%;
        margin-right: 1.6%;
        margin-left: 0;
        margin-right: 0;
        position: absolute;
        bottom: 0;
        right: 0;
        height: auto;
/*ADDED THIS*/ max-height: 100%; }
        .find-your-home .image img {
          max-width: 100%;
          height: auto;
          position: static; } }

.support-wvwc {
  background: #384F5E;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  padding: 0 0 2em;
  margin-top: 1em;
  position: relative; }
  @media (min-width: 31.25em) {
    .support-wvwc {
      padding: 0;
      margin-top: 0;
      overflow: hidden; } }
  @media (min-width: 31.25em) {
    .support-wvwc .container {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; } }
  .support-wvwc .support-image {
    margin-top: -1em;
    margin-bottom: 2em; }
    @media (min-width: 25em) {
      .support-wvwc .support-image {
        display: inline;
        float: left;
        width: 74.6%;
        margin-right: 1.6%;
        margin-left: 0; } }
    @media (min-width: 31.25em) {
      .support-wvwc .support-image {
        display: inline;
        float: left;
        width: 36.5%;
        margin-right: 1.6%;
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -ms-flex-order: 2;
                order: 2;
        position: absolute;
        height: 100%;
        right: 0;
        top: 0;
        background-position: center center;
        background-size: cover; } }
    .support-wvwc .support-image img {
      height: auto;
      width: 100%; }
      @media (min-width: 31.25em) {
        .support-wvwc .support-image img {
          display: none; } }
  .support-wvwc .support-content {
    clear: both; }
    @media (min-width: 31.25em) {
      .support-wvwc .support-content {
        display: inline;
        float: left;
        width: 55.55%;
        margin-right: 1.6%;
        margin-left: 0;
        margin-right: 6.35%;
        clear: none;
        padding: 3em 0; } }
    @media (min-width: 43.75em) {
      .support-wvwc .support-content {
        padding: 6em 0; } }
  .support-wvwc h3 {
    margin-bottom: 1em;
    color: #fff; }
  .support-wvwc .call-to-action {
    padding-top: 1em; }
    .support-wvwc .call-to-action a {
      font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
      font-weight: normal;
      display: inline-block;
      padding: 0.5em 1em;
      text-decoration: none;
      color: #fff;
      background-color: #F05123;
      font-size: inherit;
      -webkit-transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
      transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
      border: 2px solid #F05123;
      background-color: #fff;
      color: #F05123;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      padding: 0.702em 1.125em;
      border: 0; }
      .support-wvwc .call-to-action a:hover {
        text-decoration: none;
        background-color: #ba340d;
        color: #fff;
        border-color: #ba340d; }
      .support-wvwc .call-to-action a:hover {
        color: #ba340d;
        background-color: #F9F9F8; }

.upcoming-events {
  background: #384f5e;
  width: 100%;
  padding: 1.5em 0; }
  @media (min-width: 37.5em) {
    .upcoming-events {
      *zoom: 1; }
      .upcoming-events:after {
        content: "";
        display: table;
        clear: both; } }
  @media (min-width: 60em) {
    .upcoming-events {
      padding: 3.5em 0; } }
  .upcoming-events header {
    margin-bottom: 0.833em; }
    @media (min-width: 37.5em) {
      .upcoming-events header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
  .upcoming-events .title {
    color: #e9e9e9;
    margin: 0; }
  .upcoming-events .view-all a {
    font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
    font-weight: normal;
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    background-color: #F05123;
    font-size: inherit;
    -webkit-transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    border: 2px solid #F05123;
    background-color: transparent;
    color: #e9e9e9;
    border: 2px solid #D8D8D8;
    font-size: 0.875em; }
    .upcoming-events .view-all a:hover {
      text-decoration: none;
      background-color: #ba340d;
      color: #fff;
      border-color: #ba340d; }
    .upcoming-events .view-all a:hover {
      color: #F05123;
      background-color: #F9F9F8;
      border-color: #D8D8D8; }
  .upcoming-events .view-all-top {
    display: none; }
    @media (min-width: 37.5em) {
      .upcoming-events .view-all-top {
        display: block; } }
  .upcoming-events .view-all-bottom {
    margin-top: 2em;
    text-align: center; }
    @media (min-width: 37.5em) {
      .upcoming-events .view-all-bottom {
        display: none; } }
  .upcoming-events .events-group {
    width: 100%;
    margin-top: 2em; }
    @media (min-width: 37.5em) {
      .upcoming-events .events-group {
        *zoom: 1;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
            -ms-flex-align: stretch;
                align-items: stretch; }
        .upcoming-events .events-group:after {
          content: "";
          display: table;
          clear: both; } }
  .upcoming-events .event {
    *zoom: 1;
    background: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
    padding: 1.5em;
    display: block;
    -webkit-transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    color: inherit; }
    .upcoming-events .event:after {
      content: "";
      display: table;
      clear: both; }
    @media (min-width: 37.5em) {
      .upcoming-events .event {
        display: inline;
        float: left;
        width: 32.26667%;
        margin-right: 1.6%;
        margin-left: 0; }
        .upcoming-events .event:nth-of-type(1n) {
          margin-right: 1.6%;
          float: left;
          clear: none; }
          .lt-ie8 .upcoming-events .event:nth-of-type(1n) {
            margin-right: 1.35%; }
        .upcoming-events .event:nth-of-type(3n+3) {
          margin-right: 0; }
        .upcoming-events .event:nth-of-type(3n+4) {
          clear: both; } }
    .upcoming-events .event:hover {
      background-color: #F9F9F8;
      text-decoration: none;
      color: inherit;
      box-shadow: 0 0 2px rgba(0, 0, 0, 0.13); }
      .upcoming-events .event:hover .event-title {
        color: #777; }
    .upcoming-events .event:not(:last-child) {
      margin-bottom: 1em; }
      @media (min-width: 37.5em) {
        .upcoming-events .event:not(:last-child) {
          margin-bottom: 0; } }
    .upcoming-events .event .date {
      font-family: 'abril-text', Times, serif;
      font-weight: 600;
      margin: 0;
      font-size: 2.027em;
      margin-right: 1rem;
      line-height: 1;
      float: left; }
      @media (min-width: 37.5em) {
        .upcoming-events .event .date {
          width: 100%;
          margin-bottom: 0.79rem; } }
      @media (min-width: 43.75em) {
        .upcoming-events .event .date {
          width: auto;
          margin-bottom: 0; } }
      @media (min-width: 60em) {
        .upcoming-events .event .date {
          font-size: 2.887em; } }
    .upcoming-events .event .date-group {
      float: left; }
    .upcoming-events .event .day-name {
      text-transform: uppercase;
      display: block;
      font-weight: 500;
      font-size: 1em;
      letter-spacing: 1px;
      color: #444; }
    .upcoming-events .event .month {
      color: #777;
      font-size: 0.889em;
      display: block; }
    .upcoming-events .event .event-title {
      font-family: 'abril-text', Times, serif;
      font-weight: 600;
      margin-bottom: 0.833em;
      line-height: 1.2;
      color: #464648;
      font-size: 1rem;
      clear: both;
      padding-top: 2em; }
      .upcoming-events .event .event-title a {
        color: #464648;
        text-decoration: none; }
        .upcoming-events .event .event-title a:hover, .upcoming-events .event .event-title a:focus {
          color: #202021;
          text-decoration: underline; }
      @media (min-width: 60em) {
        .upcoming-events .event .event-title {
          font-size: 1.2rem; } }
      @media (min-width: 68.75em) {
        .upcoming-events .event .event-title {
          font-size: 1.44rem; } }

.recent-news {
  padding-top: 2.5em;
  padding-bottom: 2.5em; }
  .recent-news header {
    margin-bottom: 0.833em; }
    @media (min-width: 37.5em) {
      .recent-news header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
    .recent-news header .title {
      color: #F05123;
      margin: 0; }
  .recent-news .view-all a {
    font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
    font-weight: normal;
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    color: #fff;
    background-color: #F05123;
    font-size: inherit;
    -webkit-transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    border: 2px solid #F05123;
    background-color: transparent;
    color: #F05123;
    border: 2px solid #D8D8D8;
    font-size: 0.875em; }
    .recent-news .view-all a:hover {
      text-decoration: none;
      background-color: #ba340d;
      color: #fff;
      border-color: #ba340d; }
    .recent-news .view-all a:hover {
      color: #F05123;
      background-color: #F9F9F8;
      border-color: #D8D8D8; }
  .recent-news .view-all-top {
    display: none; }
    @media (min-width: 37.5em) {
      .recent-news .view-all-top {
        display: block; } }
  .recent-news .view-all-bottom {
    margin-top: 2em;
    text-align: center; }
    @media (min-width: 37.5em) {
      .recent-news .view-all-bottom {
        display: none; } }
  .recent-news .news time {
    font-family: 'abril-text', Times, serif;
    font-weight: 600;
    color: #777;
    margin-bottom: 0.25em;
    display: inline-block; }
  .recent-news .featured-article {
    *zoom: 1;
    margin-top: 2em;
    margin-bottom: 2em; }
    .recent-news .featured-article:after {
      content: "";
      display: table;
      clear: both; }
    .recent-news .featured-article .post-image {
      margin-bottom: 1.5em; }
      @media (min-width: 31.25em) {
        .recent-news .featured-article .post-image {
          display: inline;
          float: left;
          width: 23.8%;
          margin-right: 1.6%;
          margin-left: 0;
          margin-bottom: 0; } }
      @media (min-width: 60em) {
        .recent-news .featured-article .post-image {
          display: inline;
          float: left;
          width: 36.5%;
          margin-right: 1.6%;
          margin-left: 0; } }
    @media (min-width: 31.25em) {
      .recent-news .featured-article .post-content {
        display: inline;
        float: left;
        width: 68.25%;
        margin-right: 1.6%;
        margin-left: 0;
        margin-left: 6.35%;
        margin-right: 0; } }
    @media (min-width: 60em) {
      .recent-news .featured-article .post-content {
        display: inline;
        float: left;
        width: 55.55%;
        margin-right: 1.6%;
        margin-left: 0;
        margin-left: 6.35%;
        margin-right: 0; } }
    .recent-news .featured-article p {
      margin: 0; }
  .recent-news .latest {
    *zoom: 1;
    margin: 0.5em 0;
    padding: 0.5em 0;
    border-top: 10px solid #f5f5f5;
    border-bottom: 10px solid #f5f5f5; }
    .recent-news .latest:after {
      content: "";
      display: table;
      clear: both; }
    @media (min-width: 31.25em) {
      .recent-news .latest {
        padding: 0; } }
    .recent-news .latest .news {
      padding: 1.5em 0; }
      @media (min-width: 31.25em) {
        .recent-news .latest .news {
          display: inline;
          float: left;
          width: 49.2%;
          margin-right: 1.6%;
          margin-left: 0;
          padding: 2em 1.5em;
          text-align: center; }
          .recent-news .latest .news:nth-of-type(1n) {
            margin-right: 1.6%;
            float: left;
            clear: none; }
            .lt-ie8 .recent-news .latest .news:nth-of-type(1n) {
              margin-right: 1.35%; }
          .recent-news .latest .news:nth-of-type(2n+2) {
            margin-right: 0; }
          .recent-news .latest .news:nth-of-type(2n+3) {
            clear: both; } }
      .recent-news .latest .news:first-child {
        border-bottom: 5px solid #f5f5f5; }
        @media (min-width: 31.25em) {
          .recent-news .latest .news:first-child {
            border-bottom: 0;
            border-right: 5px solid #f5f5f5; } }
      .recent-news .latest .news h4 {
        margin: 0; }

.related-pages, .related-news {
  margin-left: -webkit-calc(-100vw * 0.05);
  margin-left: calc(-100vw * 0.05);
  margin-right: -webkit-calc(-100vw * 0.05);
  margin-right: calc(-100vw * 0.05);
  background-color: #f5f5f5;
  padding: 2em 2.5em;
  margin-top: 2em; }
  @media (min-width: 31.25em) {
    .related-pages, .related-news {
      margin-left: -webkit-calc(-100vw * 0.075);
      margin-left: calc(-100vw * 0.075);
      margin-right: -webkit-calc(-100vw * 0.075);
      margin-right: calc(-100vw * 0.075); } }
  @media (min-width: 43.75em) {
    .related-pages, .related-news {
      margin-left: -webkit-calc(-100vw * 0.025);
      margin-left: calc(-100vw * 0.025);
      margin-right: -webkit-calc(-100vw * 0.025);
      margin-right: calc(-100vw * 0.025); } }
  @media (min-width: 46.875em) {
    .related-pages, .related-news {
      margin-left: -webkit-calc(((-4.75% - (1.6% * 2)) * 2.24996));
      margin-left: calc(((-4.75% - (1.6% * 2)) * 2.24996));
      padding-left: -webkit-calc(((4.75% + (1.6% * 2)) * 2.24996));
      padding-left: calc(((4.75% + (1.6% * 2)) * 2.24996)); } }
  .related-pages .section-title, .related-news .section-title {
    font-family: 'abril-text', Times, serif;
    font-weight: 600;
    margin-bottom: 0.833em;
    line-height: 1.2;
    color: #464648;
    font-size: 1em;
    margin-bottom: 1em; }
    .related-pages .section-title a, .related-news .section-title a {
      color: #464648;
      text-decoration: none; }
      .related-pages .section-title a:hover, .related-pages .section-title a:focus, .related-news .section-title a:hover, .related-news .section-title a:focus {
        color: #202021;
        text-decoration: underline; }

.related-posts {
  margin-left: -webkit-calc(-100vw * 0.05);
  margin-left: calc(-100vw * 0.05);
  margin-right: -webkit-calc(-100vw * 0.05);
  margin-right: calc(-100vw * 0.05);
  padding-left: -webkit-calc(100vw * 0.05);
  padding-left: calc(100vw * 0.05);
  padding-right: -webkit-calc(100vw * 0.05);
  padding-right: calc(100vw * 0.05);
  background-color: #f5f5f5;
  padding-top: 2em;
  padding-bottom: 2em; }
  @media (min-width: 31.25em) {
    .related-posts {
      margin-left: -webkit-calc(-100vw * 0.075);
      margin-left: calc(-100vw * 0.075);
      margin-right: -webkit-calc(-100vw * 0.075);
      margin-right: calc(-100vw * 0.075); } }
  @media (min-width: 43.75em) {
    .related-posts {
      margin-left: -webkit-calc(-100vw * 0.025);
      margin-left: calc(-100vw * 0.025);
      margin-right: -webkit-calc(-100vw * 0.025);
      margin-right: calc(-100vw * 0.025); } }
  @media (min-width: 31.25em) {
    .related-posts {
      padding-left: -webkit-calc(100vw * 0.075);
      padding-left: calc(100vw * 0.075);
      padding-right: -webkit-calc(100vw * 0.075);
      padding-right: calc(100vw * 0.075); } }
  @media (min-width: 43.75em) {
    .related-posts {
      padding-left: -webkit-calc(100vw * 0.025);
      padding-left: calc(100vw * 0.025);
      padding-right: -webkit-calc(100vw * 0.025);
      padding-right: calc(100vw * 0.025); } }
  .related-posts .section-title {
    font-family: 'abril-text', Times, serif;
    font-weight: 600;
    margin-bottom: 0.833em;
    line-height: 1.2;
    color: #464648;
    font-size: 1em;
    margin-bottom: 1em; }
    .related-posts .section-title a {
      color: #464648;
      text-decoration: none; }
      .related-posts .section-title a:hover, .related-posts .section-title a:focus {
        color: #202021;
        text-decoration: underline; }

@media (min-width: 37.5em) {
  .related-page-group, .news-feed-item-group, .related-post-group {
    *zoom: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap; }
    .related-page-group:after, .news-feed-item-group:after, .related-post-group:after {
      content: "";
      display: table;
      clear: both; } }

.related-page-group .page, .related-page-group .news-feed-item, .related-page-group .related, .news-feed-item-group .page, .news-feed-item-group .news-feed-item, .news-feed-item-group .related, .related-post-group .page, .related-post-group .news-feed-item, .related-post-group .related {
  background-color: #fff;
  width: 100%;
  padding: 1em;
  margin-bottom: 1em;
  border-top: 4px solid #397D99; }
  @media (min-width: 37.5em) {
    .related-page-group .page, .related-page-group .news-feed-item, .related-page-group .related, .news-feed-item-group .page, .news-feed-item-group .news-feed-item, .news-feed-item-group .related, .related-post-group .page, .related-post-group .news-feed-item, .related-post-group .related {
      display: inline;
      float: left;
      width: 49.2%;
      margin-right: 1.6%;
      margin-left: 0; }
      .related-page-group .page:nth-of-type(1n), .related-page-group .news-feed-item:nth-of-type(1n), .related-page-group .related:nth-of-type(1n), .news-feed-item-group .page:nth-of-type(1n), .news-feed-item-group .news-feed-item:nth-of-type(1n), .news-feed-item-group .related:nth-of-type(1n), .related-post-group .page:nth-of-type(1n), .related-post-group .news-feed-item:nth-of-type(1n), .related-post-group .related:nth-of-type(1n) {
        margin-right: 1.6%;
        float: left;
        clear: none; }
        .lt-ie8 .related-page-group .page:nth-of-type(1n), .lt-ie8 .related-page-group .news-feed-item:nth-of-type(1n), .lt-ie8 .related-page-group .related:nth-of-type(1n), .lt-ie8 .news-feed-item-group .page:nth-of-type(1n), .lt-ie8 .news-feed-item-group .news-feed-item:nth-of-type(1n), .lt-ie8 .news-feed-item-group .related:nth-of-type(1n), .lt-ie8 .related-post-group .page:nth-of-type(1n), .lt-ie8 .related-post-group .news-feed-item:nth-of-type(1n), .lt-ie8 .related-post-group .related:nth-of-type(1n) {
          margin-right: 1.35%; }
      .related-page-group .page:nth-of-type(2n+2), .related-page-group .news-feed-item:nth-of-type(2n+2), .related-page-group .related:nth-of-type(2n+2), .news-feed-item-group .page:nth-of-type(2n+2), .news-feed-item-group .news-feed-item:nth-of-type(2n+2), .news-feed-item-group .related:nth-of-type(2n+2), .related-post-group .page:nth-of-type(2n+2), .related-post-group .news-feed-item:nth-of-type(2n+2), .related-post-group .related:nth-of-type(2n+2) {
        margin-right: 0; }
      .related-page-group .page:nth-of-type(2n+3), .related-page-group .news-feed-item:nth-of-type(2n+3), .related-page-group .related:nth-of-type(2n+3), .news-feed-item-group .page:nth-of-type(2n+3), .news-feed-item-group .news-feed-item:nth-of-type(2n+3), .news-feed-item-group .related:nth-of-type(2n+3), .related-post-group .page:nth-of-type(2n+3), .related-post-group .news-feed-item:nth-of-type(2n+3), .related-post-group .related:nth-of-type(2n+3) {
        clear: both; } }
  @media (min-width: 68.75em) {
    .related-page-group .page, .related-page-group .news-feed-item, .related-page-group .related, .news-feed-item-group .page, .news-feed-item-group .news-feed-item, .news-feed-item-group .related, .related-post-group .page, .related-post-group .news-feed-item, .related-post-group .related {
      display: inline;
      float: left;
      width: 30.15%;
      margin-right: 1.6%;
      margin-left: 0; }
      .related-page-group .page:nth-of-type(1n), .related-page-group .news-feed-item:nth-of-type(1n), .related-page-group .related:nth-of-type(1n), .news-feed-item-group .page:nth-of-type(1n), .news-feed-item-group .news-feed-item:nth-of-type(1n), .news-feed-item-group .related:nth-of-type(1n), .related-post-group .page:nth-of-type(1n), .related-post-group .news-feed-item:nth-of-type(1n), .related-post-group .related:nth-of-type(1n) {
        margin-right: 1.6%;
        float: left;
        clear: none; }
        .lt-ie8 .related-page-group .page:nth-of-type(1n), .lt-ie8 .related-page-group .news-feed-item:nth-of-type(1n), .lt-ie8 .related-page-group .related:nth-of-type(1n), .lt-ie8 .news-feed-item-group .page:nth-of-type(1n), .lt-ie8 .news-feed-item-group .news-feed-item:nth-of-type(1n), .lt-ie8 .news-feed-item-group .related:nth-of-type(1n), .lt-ie8 .related-post-group .page:nth-of-type(1n), .lt-ie8 .related-post-group .news-feed-item:nth-of-type(1n), .lt-ie8 .related-post-group .related:nth-of-type(1n) {
          margin-right: 1.35%; }
      .related-page-group .page:nth-of-type(3n+3), .related-page-group .news-feed-item:nth-of-type(3n+3), .related-page-group .related:nth-of-type(3n+3), .news-feed-item-group .page:nth-of-type(3n+3), .news-feed-item-group .news-feed-item:nth-of-type(3n+3), .news-feed-item-group .related:nth-of-type(3n+3), .related-post-group .page:nth-of-type(3n+3), .related-post-group .news-feed-item:nth-of-type(3n+3), .related-post-group .related:nth-of-type(3n+3) {
        margin-right: 0; }
      .related-page-group .page:nth-of-type(3n+4), .related-page-group .news-feed-item:nth-of-type(3n+4), .related-page-group .related:nth-of-type(3n+4), .news-feed-item-group .page:nth-of-type(3n+4), .news-feed-item-group .news-feed-item:nth-of-type(3n+4), .news-feed-item-group .related:nth-of-type(3n+4), .related-post-group .page:nth-of-type(3n+4), .related-post-group .news-feed-item:nth-of-type(3n+4), .related-post-group .related:nth-of-type(3n+4) {
        clear: both; }
      .related-page-group .page:first-of-type, .related-page-group .page:nth-of-type(3n+4), .related-page-group .news-feed-item:first-of-type, .related-page-group .news-feed-item:nth-of-type(3n+4), .related-page-group .related:first-of-type, .related-page-group .related:nth-of-type(3n+4), .news-feed-item-group .page:first-of-type, .news-feed-item-group .page:nth-of-type(3n+4), .news-feed-item-group .news-feed-item:first-of-type, .news-feed-item-group .news-feed-item:nth-of-type(3n+4), .news-feed-item-group .related:first-of-type, .news-feed-item-group .related:nth-of-type(3n+4), .related-post-group .page:first-of-type, .related-post-group .page:nth-of-type(3n+4), .related-post-group .news-feed-item:first-of-type, .related-post-group .news-feed-item:nth-of-type(3n+4), .related-post-group .related:first-of-type, .related-post-group .related:nth-of-type(3n+4) {
        display: inline;
        float: left;
        width: 36.5%;
        margin-right: 1.6%;
        margin-left: 0; } }
  .related-page-group .page .title, .related-page-group .news-feed-item .title, .related-page-group .related .title, .news-feed-item-group .page .title, .news-feed-item-group .news-feed-item .title, .news-feed-item-group .related .title, .related-post-group .page .title, .related-post-group .news-feed-item .title, .related-post-group .related .title {
    color: #fff;
    font-family: 'abril-text', Times, serif;
    font-weight: 600;
    margin-bottom: 0.833em;
    line-height: 1.2;
    color: #464648;
    font-size: 1rem; }
    .related-page-group .page .title a, .related-page-group .news-feed-item .title a, .related-page-group .related .title a, .news-feed-item-group .page .title a, .news-feed-item-group .news-feed-item .title a, .news-feed-item-group .related .title a, .related-post-group .page .title a, .related-post-group .news-feed-item .title a, .related-post-group .related .title a {
      color: #464648;
      text-decoration: none; }
      .related-page-group .page .title a:hover, .related-page-group .page .title a:focus, .related-page-group .news-feed-item .title a:hover, .related-page-group .news-feed-item .title a:focus, .related-page-group .related .title a:hover, .related-page-group .related .title a:focus, .news-feed-item-group .page .title a:hover, .news-feed-item-group .page .title a:focus, .news-feed-item-group .news-feed-item .title a:hover, .news-feed-item-group .news-feed-item .title a:focus, .news-feed-item-group .related .title a:hover, .news-feed-item-group .related .title a:focus, .related-post-group .page .title a:hover, .related-post-group .page .title a:focus, .related-post-group .news-feed-item .title a:hover, .related-post-group .news-feed-item .title a:focus, .related-post-group .related .title a:hover, .related-post-group .related .title a:focus {
        color: #202021;
        text-decoration: underline; }
    @media (min-width: 60em) {
      .related-page-group .page .title, .related-page-group .news-feed-item .title, .related-page-group .related .title, .news-feed-item-group .page .title, .news-feed-item-group .news-feed-item .title, .news-feed-item-group .related .title, .related-post-group .page .title, .related-post-group .news-feed-item .title, .related-post-group .related .title {
        font-size: 1.2rem; } }
    @media (min-width: 68.75em) {
      .related-page-group .page .title, .related-page-group .news-feed-item .title, .related-page-group .related .title, .news-feed-item-group .page .title, .news-feed-item-group .news-feed-item .title, .news-feed-item-group .related .title, .related-post-group .page .title, .related-post-group .news-feed-item .title, .related-post-group .related .title {
        font-size: 1.44rem; } }
    @media (min-width: 60em) {
      .related-page-group .page .title, .related-page-group .news-feed-item .title, .related-page-group .related .title, .news-feed-item-group .page .title, .news-feed-item-group .news-feed-item .title, .news-feed-item-group .related .title, .related-post-group .page .title, .related-post-group .news-feed-item .title, .related-post-group .related .title {
        font-family: 'abril-text', Times, serif;
        font-weight: 600;
        margin-bottom: 0.833em;
        line-height: 1.2;
        color: #464648;
        font-size: 1em; }
        .related-page-group .page .title a, .related-page-group .news-feed-item .title a, .related-page-group .related .title a, .news-feed-item-group .page .title a, .news-feed-item-group .news-feed-item .title a, .news-feed-item-group .related .title a, .related-post-group .page .title a, .related-post-group .news-feed-item .title a, .related-post-group .related .title a {
          color: #464648;
          text-decoration: none; }
          .related-page-group .page .title a:hover, .related-page-group .page .title a:focus, .related-page-group .news-feed-item .title a:hover, .related-page-group .news-feed-item .title a:focus, .related-page-group .related .title a:hover, .related-page-group .related .title a:focus, .news-feed-item-group .page .title a:hover, .news-feed-item-group .page .title a:focus, .news-feed-item-group .news-feed-item .title a:hover, .news-feed-item-group .news-feed-item .title a:focus, .news-feed-item-group .related .title a:hover, .news-feed-item-group .related .title a:focus, .related-post-group .page .title a:hover, .related-post-group .page .title a:focus, .related-post-group .news-feed-item .title a:hover, .related-post-group .news-feed-item .title a:focus, .related-post-group .related .title a:hover, .related-post-group .related .title a:focus {
            color: #202021;
            text-decoration: underline; } }
  .related-page-group .page .teaser, .related-page-group .news-feed-item .teaser, .related-page-group .related .teaser, .news-feed-item-group .page .teaser, .news-feed-item-group .news-feed-item .teaser, .news-feed-item-group .related .teaser, .related-post-group .page .teaser, .related-post-group .news-feed-item .teaser, .related-post-group .related .teaser {
    font-size: 0.875rem; }
  .related-page-group .page .posted-on, .related-page-group .news-feed-item .posted-on, .related-page-group .related .posted-on, .news-feed-item-group .page .posted-on, .news-feed-item-group .news-feed-item .posted-on, .news-feed-item-group .related .posted-on, .related-post-group .page .posted-on, .related-post-group .news-feed-item .posted-on, .related-post-group .related .posted-on {
    font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #777;
    display: block;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
    margin-top: -0.35em;
    font-size: 0.8em; }
  .related-page-group .page .excerpt, .related-page-group .news-feed-item .excerpt, .related-page-group .related .excerpt, .news-feed-item-group .page .excerpt, .news-feed-item-group .news-feed-item .excerpt, .news-feed-item-group .related .excerpt, .related-post-group .page .excerpt, .related-post-group .news-feed-item .excerpt, .related-post-group .related .excerpt {
    font-size: 0.875rem; }

.related-page-group .page.has-thumbnail, .news-feed-item-group .page.has-thumbnail, .related-post-group .page.has-thumbnail {
  background-color: #fff; }
  .related-page-group .page.has-thumbnail .featured-image, .news-feed-item-group .page.has-thumbnail .featured-image, .related-post-group .page.has-thumbnail .featured-image {
    display: none; }

.tablepress-table-name {
  font-family: 'abril-text', Times, serif;
  font-weight: 600;
  margin-bottom: 0.833em;
  line-height: 1.2;
  color: #464648;
  font-size: 1.2rem; }
  .tablepress-table-name a {
    color: #464648;
    text-decoration: none; }
    .tablepress-table-name a:hover, .tablepress-table-name a:focus {
      color: #202021;
      text-decoration: underline; }
  @media (min-width: 60em) {
    .tablepress-table-name {
      font-size: 1.44rem; } }
  @media (min-width: 68.75em) {
    .tablepress-table-name {
      font-size: 1.728rem; } }

.tablepress-table-description {
  display: block;
  margin-bottom: 2em; }

.dataTables_length {
  margin-bottom: 1.5em;
  font-size: 0.875em; }
  @media (min-width: 37.5em) {
    .dataTables_length {
      display: inline;
      float: left;
      width: 36.5%;
      margin-right: 1.6%;
      margin-left: 0;
      margin-bottom: 2.5em; } }
  .dataTables_length select {
    height: 2em; }
    @media (min-width: 25em) {
      .dataTables_length select {
        display: inline-block;
        width: 25%;
        max-width: 100px;
        margin-right: 0.25em;
        margin-left: 0.25em; } }
    @media (min-width: 25em) {
      .dataTables_length select {
        width: 30%; } }

.dataTables_filter {
  font-size: 0.875em; }
  @media (min-width: 37.5em) {
    .dataTables_filter {
      display: inline;
      float: left;
      width: 61.9%;
      margin-right: 1.6%;
      margin-left: 0;
      margin-right: 0;
      text-align: right; } }
  .dataTables_filter input[type="search"] {
    width: 70%;
    margin-left: 0.5em;
    height: 2em; }

table {
  margin: 1.5em 0;
  width: 100%;
  font-size: 0.875em;
  clear: both; }
  table thead, table tfoot {
    background-color: #F9F9F8;
    color: #444;
    border: 1px solid #D8D8D8; }
    table thead th, table tfoot th {
      border-right: 1px solid #D8D8D8; }
      table thead th:last-of-type, table tfoot th:last-of-type {
        border-right: 0 none; }
  table tfoot {
    display: none; }
    @media (min-width: 37.5em) {
      table tfoot {
        display: table-footer-group; } }
  table tbody tr {
    border-top: 1px solid #D8D8D8; }
    table tbody tr:first-child {
      border-top: 0 none; }
    table tbody tr .tablesaw-cell-content {
      display: block;
      width: 100%;
      max-width: 100%; }
    table tbody tr .tablesaw-cell-label {
      display: block;
      width: 100%; }

.tablesaw tbody td {
  padding: 0.2em 0.7em; }
  @media (min-width: 37.5em) {
    .tablesaw tbody td {
      padding: 0.5em 0.7em; } }
  .tablesaw tbody td:first-child {
    padding-top: 0.75em; }
  .tablesaw tbody td:last-child {
    padding-bottom: 0.75em; }

.tablesaw tbody tr {
  border-top: 1px solid #D8D8D8;
  border-bottom: 0 none;
  padding: 0.2em 0.7em; }
  .tablesaw tbody tr:first-child {
    border-top: 0 none; }
  .tablesaw tbody tr:last-child {
    border-bottom: 1px solid #D8D8D8; }
    @media (min-width: 37.5em) {
      .tablesaw tbody tr:last-child {
        border-bottom: 0 none; } }

@media (max-width: 599.9375px) {
  .table-responsive .tablesaw-stack thead td,
  .table-responsive .tablesaw-stack thead th {
    display: none; }
  .table-responsive .tablesaw-stack tbody td,
  .table-responsive .tablesaw-stack tbody th {
    clear: left;
    float: left;
    width: 100%; }
  .table-responsive .tablesaw-cell-label {
    vertical-align: top; }
  .table-responsive .tablesaw-cell-content {
    max-width: 67%;
    display: inline-block; }
  .table-responsive .tablesaw-stack td:empty,
  .table-responsive .tablesaw-stack th:empty {
    display: none; } }

@media (min-width: 600px) {
  .table-responsive {
    /* Show the table header rows */
    /* Hide the labels in each cell */ }
    .table-responsive .tablesaw-stack tr {
      display: table-row; }
    .table-responsive .tablesaw-stack td,
    .table-responsive .tablesaw-stack th,
    .table-responsive .tablesaw-stack thead td,
    .table-responsive .tablesaw-stack thead th {
      display: table-cell;
      margin: 0; }
    .table-responsive .tablesaw-stack td .tablesaw-cell-label,
    .table-responsive .tablesaw-stack th .tablesaw-cell-label {
      display: none !important; } }

.dataTables_info {
  font-style: italic;
  font-size: 0.875em; }
  @media (min-width: 31.25em) {
    .dataTables_info {
      display: inline-block;
      margin-right: 1em; } }

.dataTables_paginate {
  margin-top: 1em;
  font-size: 0.875em; }
  @media (min-width: 31.25em) {
    .dataTables_paginate {
      display: inline-block;
      margin-top: 0;
      float: right; } }
  .dataTables_paginate .previous {
    padding: 0.5em 1em 0.5em 0;
    border-right: 1px solid #D8D8D8; }
  .dataTables_paginate .next {
    padding: 0.5em 1em 0.5em 1em; }
  .dataTables_paginate .disabled {
    color: #777; }

.pagination-container {
  background: #fff;
  padding: 0;
  font-weight: 500;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 4px solid #f5f5f5;
  padding: 0.5em;
  clear: both; }
  .pagination-container .pagination {
    padding: 0; }
    @media (min-width: 37.5em) {
      .pagination-container .pagination {
        font-size: 1.125em; } }
    @media (min-width: 37.5em) {
      .pagination-container .pagination .current {
        color: #777; } }
  .pagination-container .nav-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .pagination-container .nav-links > :not(.current):not(.prev):not(.next) {
      display: none; }
      @media (min-width: 37.5em) {
        .pagination-container .nav-links > :not(.current):not(.prev):not(.next) {
          display: inline-block; } }
  .pagination-container .page-numbers {
    padding: 0.33em 0.25em;
    display: inline-block;
    background: transparent; }
    @media (min-width: 37.5em) {
      .pagination-container .page-numbers {
        padding: 0.33em 1em; } }
  .pagination-container .prev [class^="icon-"], .pagination-container .next [class^="icon-"] {
    width: 16px;
    height: 16px; }
    .pagination-container .prev [class^="icon-"] svg, .pagination-container .next [class^="icon-"] svg {
      width: 16px;
      height: 16px;
      fill: #F05123; }
  .pagination-container .prev a, .pagination-container .next a {
    padding: 0 1em;
    display: inline-block; }
    .pagination-container .prev a:hover svg, .pagination-container .next a:hover svg {
      fill: #464648; }
  .pagination-container .prev span, .pagination-container .next span {
    vertical-align: middle; }
  .pagination-container .next {
    margin-left: auto; }
  .pagination-container .prev {
    margin-right: auto; }
  @media (min-width: 37.5em) {
    .pagination-container .page-descriptor {
      display: none; } }

.primary .body figure {
  *zoom: 1;
  margin-bottom: 1em; }
  .primary .body figure:after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 37.5em) {
    .primary .body figure.alignright {
      display: inline-block;
      float: right;
      margin-left: 1em;
      width: 50%; } }
  @media (min-width: 37.5em) {
    .primary .body figure.alignleft {
      display: inline-block;
      float: left;
      margin-right: 1em;
      width: 50%; } }
  @media (min-width: 37.5em) {
    .primary .body figure.alignleft {
      display: inline-block;
      float: left;
      margin-right: 1em;
      width: 50%; } }
  .primary .body figure .inline-media-link {
    width: 100%;
    float: left; }
    .primary .body figure .inline-media-link.alignright, .primary .body figure .inline-media-link.alignleft, .primary .body figure .inline-media-link.aligncenter {
      width: 100%;
      float: left;
      margin: 0; }
  .primary .body figure .wp-caption-text {
    background-color: #F9F9F8;
    color: #464648;
    padding: 0.5em 1em;
    margin-bottom: 1.5m;
    float: left;
    width: 100%;
    font-size: 0.75em;
    font-style: italic; }

blockquote {
  font-family: 'abril-text', Times, serif;
  font-weight: 600;
  *zoom: 1;
  margin-top: 2em;
  margin-bottom: 2em;
  text-align: center;
  font-size: 1.125em;
  font-style: italic;
  position: relative;
  color: #464648;
  padding: 2.5em 0 1.5em; }
  blockquote:after {
    content: "";
    display: table;
    clear: both; }
  blockquote p {
    margin: 0; }
    @media (min-width: 37.5em) {
      blockquote p {
        display: inline;
        float: left;
        width: 87.3%;
        margin-right: 1.6%;
        margin-left: 0;
        margin-left: 6.35%; } }
    @media (min-width: 60em) {
      blockquote p {
        display: inline;
        float: left;
        width: 61.9%;
        margin-right: 1.6%;
        margin-left: 0;
        margin-left: 19.05%; } }
    @media (min-width: 68.75em) {
      blockquote p {
        font-size: 1.266em !important;
        display: inline;
        float: left;
        width: 74.6%;
        margin-right: 1.6%;
        margin-left: 0;
        margin-left: 12.7%; } }
    blockquote p::before {
      font-family: 'abril-text', Times, serif;
      font-weight: 600;
      content: "\201C";
      text-align: center;
      position: absolute;
      top: -0.2rem;
      font-size: 3em;
      z-index: 500;
      width: 30px;
      height: 30px;
      left: 50%;
      margin-left: -15px;
      color: #F05123; }
    blockquote p::after {
      content: "";
      position: absolute;
      top: 1.4em;
      width: 60px;
      height: 7px;
      background: #f5f5f5;
      left: 50%;
      margin-left: -30px;
      z-index: 400; }
  blockquote cite {
    font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
    font-weight: normal;
    display: block;
    margin-top: 1em;
    color: #444;
    font-size: 0.875em;
    font-style: normal;
    font-weight: 500; }
    blockquote cite:before {
      content: "-";
      display: inline-block;
      position: relative;
      left: -5px; }

@media (min-width: 60em) {
  .primary {
    position: relative; } }

.primary .social-icon-group {
  margin-left: 0;
  margin-top: 0;
  margin: 0;
  line-height: 0;
  margin-bottom: 1em;
  background-color: #F9F9F8;
  border-radius: 4px; }
  .primary .social-icon-group li {
    list-style-type: none; }
  @media (min-width: 60em) {
    .primary .social-icon-group {
      position: absolute;
      right: -5em;
      width: 3.3em; } }
  .primary .social-icon-group .social-icon {
    display: inline-block;
    padding: 0.75em 1em;
    margin: 0;
    border-right: 1px solid #D8D8D8;
    -webkit-transition: scale 0.3s ease-in-out;
    transition: scale 0.3s ease-in-out; }
    .primary .social-icon-group .social-icon:hover svg {
      -webkit-transform: scale(1.2);
          -ms-transform: scale(1.2);
              transform: scale(1.2);
      fill: #F05123; }
    .primary .social-icon-group .social-icon:last-of-type {
      border: 0 none; }
    @media (min-width: 60em) {
      .primary .social-icon-group .social-icon {
        display: block;
        padding: 1em;
        border-bottom: 1px solid #D8D8D8;
        border-right: 0 none; }
        .primary .social-icon-group .social-icon:last-of-type {
          margin-bottom: 0;
          border: 0 none; } }
    .primary .social-icon-group .social-icon svg {
      fill: #F05123;
      width: 20px;
      height: 20px; }

.inline-slideshow {
  position: relative;
  margin: 1em 0;
  margin-left: -webkit-calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  margin-right: -webkit-calc(50% - 50vw);
  margin-right: calc(50% - 50vw); }
  @media (min-width: 37.5em) {
    .inline-slideshow {
      margin: 1em 0; } }
  .inline-slideshow .slideshow-item-group {
    margin: 0; }
    .inline-slideshow .slideshow-item-group .slideshow-item {
      list-style-type: none;
      margin: 0; }
      .inline-slideshow .slideshow-item-group .slideshow-item::before {
        content: none; }
  .inline-slideshow .not-carousel {
    margin-bottom: 0; }
    @media (min-width: 25em) {
      .inline-slideshow .not-carousel .slideshow-item-group {
        *zoom: 1; }
        .inline-slideshow .not-carousel .slideshow-item-group:after {
          content: "";
          display: table;
          clear: both; } }
    .inline-slideshow .not-carousel .slideshow-item-group .slideshow-item {
      list-style-type: none;
      margin-bottom: 0.5em; }
      @media (min-width: 25em) {
        .inline-slideshow .not-carousel .slideshow-item-group .slideshow-item {
          display: inline;
          float: left;
          width: 49.2%;
          margin-right: 1.6%;
          margin-left: 0;
          margin-bottom: 0; }
          .inline-slideshow .not-carousel .slideshow-item-group .slideshow-item:nth-of-type(1n) {
            margin-right: 1.6%;
            float: left;
            clear: none; }
            .lt-ie8 .inline-slideshow .not-carousel .slideshow-item-group .slideshow-item:nth-of-type(1n) {
              margin-right: 1.35%; }
          .inline-slideshow .not-carousel .slideshow-item-group .slideshow-item:nth-of-type(2n+2) {
            margin-right: 0; }
          .inline-slideshow .not-carousel .slideshow-item-group .slideshow-item:nth-of-type(2n+3) {
            clear: both; } }
      @media (min-width: 43.75em) {
        .inline-slideshow .not-carousel .slideshow-item-group .slideshow-item {
          display: inline;
          float: left;
          width: 32.26667%;
          margin-right: 1.6%;
          margin-left: 0;
          margin-bottom: 0.25em; }
          .inline-slideshow .not-carousel .slideshow-item-group .slideshow-item:nth-of-type(1n) {
            margin-right: 1.6%;
            float: left;
            clear: none; }
            .lt-ie8 .inline-slideshow .not-carousel .slideshow-item-group .slideshow-item:nth-of-type(1n) {
              margin-right: 1.35%; }
          .inline-slideshow .not-carousel .slideshow-item-group .slideshow-item:nth-of-type(3n+3) {
            margin-right: 0; }
          .inline-slideshow .not-carousel .slideshow-item-group .slideshow-item:nth-of-type(3n+4) {
            clear: both; } }
      @media (min-width: 46.875em) {
        .inline-slideshow .not-carousel .slideshow-item-group .slideshow-item {
          margin-bottom: 0; } }
      @media (min-width: 68.75em) {
        .inline-slideshow .not-carousel .slideshow-item-group .slideshow-item {
          margin-bottom: 0.15em; } }
      .inline-slideshow .not-carousel .slideshow-item-group .slideshow-item img {
        width: 100%; }
  .inline-slideshow .swiper-container.one-slide .swiper-button-prev {
    width: 12.5%; }
  .inline-slideshow .swiper-container.one-slide .swiper-button-next {
    width: 12.5%; }
  .inline-slideshow .swiper-container.one-slide .swiper-slide img {
    width: 100%; }
  .inline-slideshow .swiper-container.three-slides {
    width: 75%; }
    .inline-slideshow .swiper-container.three-slides .swiper-slide img {
      width: 100%; }
  .inline-slideshow .swiper-container .swiper-slide {
    width: 100%; }
    .inline-slideshow .swiper-container .swiper-slide img {
      display: block;
      width: 75%;
      margin: 0 auto; }
  .inline-slideshow .swiper-button-prev, .inline-slideshow .swiper-button-next {
    background-image: none;
    position: absolute;
    width: 30px;
    height: 40px;
    margin-top: -20px;
    background: rgba(255, 255, 255, 0.9);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media (min-width: 46.875em) {
      .inline-slideshow .swiper-button-prev, .inline-slideshow .swiper-button-next {
        height: 70px;
        margin-top: -35px;
        width: 35px; } }
    .inline-slideshow .swiper-button-prev [class^="icon-"], .inline-slideshow .swiper-button-next [class^="icon-"] {
      width: 10px;
      height: 18px; }
  .inline-slideshow .swiper-button-prev {
    left: 0; }
  .inline-slideshow .swiper-button-next {
    right: 0; }

.cta-block {
  *zoom: 1;
  margin-left: -9%;
  margin-right: -9%;
  background: #384F5E;
  color: #fff;
  margin-top: 3em;
  margin-bottom: 3em; }
  .cta-block:after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 31.25em) {
    .cta-block {
      position: relative;
      overflow: hidden; } }
  @media (min-width: 46.875em) {
    .cta-block {
      margin-left: -webkit-calc(((-4.75% - (1.6% * 2)) * 2.24996));
      margin-left: calc(((-4.75% - (1.6% * 2)) * 2.24996));
      padding-left: -webkit-calc(((4.75% + (1.6% * 2)) * 2.24996));
      padding-left: calc(((4.75% + (1.6% * 2)) * 2.24996));
      margin-top: 3em;
      margin-bottom: 3em;
      overflow: hidden; } }
  .cta-block .block-image {
    position: relative;
    top: -1em;
    width: -webkit-calc(100% - 3em);
    width: calc(100% - 3em);
    margin-bottom: 0.5em; }
    @media (min-width: 31.25em) {
      .cta-block .block-image {
        display: inline;
        float: left;
        width: 30.15%;
        margin-right: 1.6%;
        margin-left: 0;
        margin-right: 0;
        position: absolute;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -ms-flex-order: 2;
                order: 2;
        height: 100%;
        right: 0;
        top: 0;
        background-size: cover; } }
    @media (min-width: 31.25em) {
      .cta-block .block-image img {
        height: 100%;
        width: auto;
        max-width: none; } }
  .cta-block .block-content {
    padding: 2em -webkit-calc(7.5% + 4px) 2.5em;
    padding: 2em calc(7.5% + 4px) 2.5em;
    text-align: center; }
    @media (min-width: 31.25em) {
      .cta-block .block-content {
        display: inline;
        float: left;
        width: 68.25%;
        margin-right: 1.6%;
        margin-left: 0;
        text-align: left;
        padding-top: 2.5em; } }
    @media (min-width: 46.875em) {
      .cta-block .block-content {
        padding-left: 0; } }
    .cta-block .block-content p {
      font-family: 'abril-text', Times, serif;
      font-weight: 600;
      font-size: 1.266em;
      font-style: italic;
      margin-bottom: 1.5em; }
  .cta-block a {
    font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
    font-weight: normal;
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    color: #fff;
    background-color: #F05123;
    font-size: inherit;
    -webkit-transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    border: 2px solid #F05123;
    background-color: #384F5E;
    color: #fff;
    border: 3px solid #6FA6BD;
    -webkit-transition: background-color 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out; }
    .cta-block a:hover {
      text-decoration: none;
      background-color: #ba340d;
      color: #fff;
      border-color: #ba340d; }
    .cta-block a:hover {
      background-color: #6FA6BD;
      border-color: #6FA6BD; }

.event {
    margin-left: 0 !important;
    border-bottom: 1px solid #f5f5f5;
}

.event .date {
    color: #F05123;
}


.page-template-list-pageORG  #breadcrumb-menu .menu-item.current-menu-item.menu-item-has-children > a{
  display: inline;
}