﻿

/* ---------- forum hero Features ----------*/
  .forum-hero {
    position: relative;
    margin-bottom: 48px;
    top: -50px;
  }
  .forum-hero::before {
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000",endColorstr="#000",GradientType=1);
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
  }
  .forum-hero__media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: #000;
  }
  .forum-hero__video-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    overflow: hidden;
  }
  .forum-hero__video-player {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in 2.9s;
  }
  .forum-hero__video-player.is-wide {
    top: 50%;
    transform: translateY(-50%);
  }
  .forum-hero__video-player.is-tall {
    left: 50%;
    transform: translateX(-50%);
  }
  .forum-hero__video-container.is-loaded .forum-hero__video-player {
    opacity: 1;
  }
  .forum-hero__video-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
  }

  .forum-hero__content {
    padding: 230px 48px;
    position: relative;
    z-index: 3;
  }

  .forum-hero-text {
    color: #fff;
    font-size: 25px; 
    line-height: 1.5
  }

  .center {
    margin-left: 25%;
    margin-top: 35%;
    width: 100%;
  }

  @media (max-width: 959px) {
    .center {
        margin-left: 10%;
        margin-top: 10%;
        width: 75%;
    }
    .forum-hero {
        min-height: 350px;
    }
  }

/* ------- Carousel Feature Styles ------- */
.inline {
    display: inline !important;
  }
.space-t-5 {
    padding-top: 5px;
}
.small-font {
    font-size: 14px !important;
}
.horizontal {
    margin-bottom: 24px;
    position: relative;
    margin: auto;
    max-width: 75%;
  }
  .horizontal__scroller {
    overflow: hidden;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
  }
  .horizontal__content {
    display: flex;
    gap: 24px;
  }
  .horizontal__content--align-top {
    align-items: flex-start;
  }
  .horizontal__content--align-bottom {
    align-items: flex-end;
  }
  .horizontal__content--align-center {
    align-items: center;
  }
  .horizontal__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 0 0 calc((100% - 0px) / 1);
  }

  .horizontal__item--stretch {
    align-self: stretch;
  }
  .horizontal__item--center {
    align-self: center;
  }
  .horizontal__item--top {
    align-self: flex-start;
  }
  .horizontal__item--bottom {
    align-self: flex-end;
  }
  .horizontal__content--pack .horizontal__item, .horizontal__content--pack {
    flex-basis: auto;
  }
  .horizontal__control {
    background: #1a3463;
    background: linear-gradient(90deg, #537a00 0%, #1a3463 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00447c", endColorstr="#52B6DC", GradientType=1);
    align-items: center;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 48px;
    position: absolute;
    top: 50%;
    margin-top: -12px;
    transform: translateY(-50%);
    transition: background 0.15s ease-out;
    width: 48px;
    z-index: 3;
  }
  .horizontal__control:hover,
  .horizontal__control:focus {
    background: #537a00;
    background: linear-gradient(90deg, #1a3463 0%, #537a00 100%);
    color: #ffffff;
  }
  .horizontal__control--left {
    left: -72px;
  }
  .horizontal__control--right {
    right: -72px;
  }
  .horizontal--is-at-start .horizontal__control--left,
  .horizontal--is-at-start .horizontal__control--left:hover,
  .horizontal--is-at-start .horizontal__control--left:focus,
  .horizontal--is-at-end .horizontal__control--right,
  .horizontal--is-at-end .horizontal__control--right:hover,
  .horizontal--is-at-end .horizontal__control--right:focus {
    color: #CECECE;
    background: #EDEDED;
    cursor: default;
  }
  
  @media (max-width: 767.97px) {
    .horizontal--vendors .horizontal__item {
      flex-basis: 100%;
    }
  }

  .horizontal__media {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 250px;
  }
  .horizontal__media img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: transform 0.15s ease-out;
  }

/*
 * Common colors and constants
 * ===========================
 *
 * Text sizing
 * -----------
 * Body copy: 17px
 * Line height / baseline grid: 24px
 * Additional text sizes: 14px, 15px, 19px, 24px, 28px, 36px, 46px, 60px
 *
 * Text colors
 * -----------
 * Copy: #525e65
 * Titles: #163a50
 *
 * Theme colors
 * ------------
 * Primary (blue): #1a3d6d
 *   Dark: #1f2a3d
 *   Light: #1a3463
 * Accent (green): #1a3463
 *   Dark: #679700
 *   Light: #80bb00
 * Action (yellow): #f2c300
 *   Dark: #c49e01
 *   Light: #ffd62e
 *
 * Other colors
 * ------------
 * Page background: #f5f5f5
 * Light background: #fff
 * Mid-gray: #d8d8d8
 * Dark background: #22242c
 * Warnings: #941
 *
 * Breakpoints
 * -----------
 * Small: 470px
 * Medium: 768px
 * Large: 960px
 * Widescreen: 1280px
 * HD: 1520px
 *
 * Miscellaneous constants
 * -----------------------
 * Maximum page width: 1920px
 * Common skew angle: -14.6deg
 */

/*! ---------- =reset ---------- */

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
ul {
  list-style: disc;
}
blockquote, q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
img {
  -ms-interpolation-mode: bicubic;
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}
audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden], template {
  display: none;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b, strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
}
button {
  overflow: visible;
}
button, select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}


/*! ---------- =typography ---------- */

@font-face {
  font-family: 'Proxima Nova';
  src: url("../font/proximanova-regular-webfont.woff2") format("woff2"),
         url("../font/proximanova-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url("../font/proximanova-regularit-webfont.woff2") format("woff2"),
         url("../font/proximanova-regularit-webfont.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url("../font/proximanova-semibold-webfont.woff2") format("woff2"),
         url("../font/proximanova-semibold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url("../font/proximanova-semiboldit-webfont.woff2") format("woff2"),
         url("../font/proximanova-semiboldit-webfont.woff") format("woff");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url("../font/proximanova-bold-webfont.woff2") format("woff2"),
         url("../font/proximanova-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url("../font/proximanova-boldit-webfont.woff2") format("woff2"),
         url("../font/proximanova-boldit-webfont.woff") format("woff");
  font-weight: 700;
  font-style: italic;
}


body {
  font: 17px/24px "Proxima Nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #525e65;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

p, ol, ul, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 24px;
}
p:last-child,
ol:last-child,
ul:last-child {
  margin-bottom: 0;
}
p, ol, ul {
  orphans: 2;
  widows: 2;
}
ol, ul {
  margin-left: 2em;
}
h1, h2, h3, h4, h5, h6 {
  text-rendering: optimizeLegibility;
  color: #163a50;
  font-weight: 700;
}
h1 img,
h2 img,
h3 img,
h4 img,
h5 img,
h6 img {
  display: inline-block;
  vertical-align: middle;
}
h1 {
  font-size: 46px;
  line-height: 48px;
}
@media (max-width: 767px) {
  h1 {
    font-size: 36px;
    line-height: 36px;
  }
}
h2 {
  font-size: 36px;
  line-height: 36px;
  font-weight: 400;
}
h3 {
  font-size: 28px;
  line-height: 24px;
}
h4 {
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05ex;
}
h5 {
  font-size: 19px;
}

.date,
.item-list__date,
.card-list__date {
  text-transform: uppercase;
  letter-spacing: 0.05ex;
  opacity: 0.65;
}


/*! ---------- =common =components ---------- */

body {
  background-color: #f5f5f5;
}

a {
  text-decoration: none;
  color: #1a3d6d;
  font-weight: 600;
}
a:hover,
a:focus {
  color: #1a3463;
}
a,
button {
  -webkit-transition: color 0.15s ease-out,
                      background-color 0.15s ease-out,
                      border 0.15s ease-out,
                      box-shadow 0.15s ease-out,
                      opacity 0.15s ease-out;
  transition: color 0.15s ease-out,
              background-color 0.15s ease-out,
              border 0.15s ease-out,
              box-shadow 0.15s ease-out,
              opacity 0.15s ease-out;
}

.block {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.align-left {
  text-align: left;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}

.margin {
  margin-bottom: 24px;
}
.margin-important {
  margin-bottom: 24px !important;
}
.margin-large {
  margin-bottom: 48px;
}
.margin-large-important {
  margin-bottom: 48px !important;
}
.margin-small {
  margin-bottom: 12px;
}
.margin-small-important {
  margin-bottom: 12px !important;
}
.margin-top {
  margin-top: 24px;
}
.margin-top-large {
  margin-top: 48px;
}
.margin-top-small {
  margin-top: 12px;
}
.no-margin {
  margin-bottom: 0 !important;
}

/* angle motif */
.angle-right,
.button--cta,
.toggle-indicator,
.header-utility__item a,
.angle-left,
.button--cta,
.toggle-indicator,
.header-utility__item a,
.person-list__name {
  position: relative;
}
.angle-right::after,
.button--cta::after,
.toggle-indicator::after,
.header-utility__item a::after,
.person-list__name::after,
.angle-left::before,
.button--cta::before,
.toggle-indicator::before,
.header-utility__item a::before {
  content: '';
  display: block;
  width: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: inherit;
  z-index: -1;
  -webkit-transform: skew(-14.6deg);
  -ms-transform: skew(-14.6deg);
  transform: skew(-14.6deg);
}
.angle-right::after,
.button--cta::after,
.toggle-indicator::after,
.header-utility__item a::after,
.person-list__name::after {
  right: 0;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
.angle-left::before,
.button--cta::before,
.toggle-indicator::before,
.header-utility__item a::before {
  left: 0;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}

.more {
  display: inline-block;
  font-size: 19px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05ex;
  color: #1a3463;
}
.more .fa-chevron-right {
  margin-left: 0.3em;
  -webkit-transition: color 0.15s ease-out, -webkit-transform 0.15s ease-out;
  transition: color 0.15s ease-out, -webkit-transform 0.15s ease-out;
  -o-transition: color 0.15s ease-out, transform 0.15s ease-out;
  transition: color 0.15s ease-out, transform 0.15s ease-out;
  transition: color 0.15s ease-out, transform 0.15s ease-out, -webkit-transform 0.15s ease-out;
}

.fa-light {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-style: normal;
}

.more:hover,
.more:focus {
  color: #1a3463;
}
.more:hover .fa-chevron-right,
.more:focus .fa-chevron-right {
  -webkit-transform: translateX(0.2em);
  -ms-transform: translateX(0.2em);
  transform: translateX(0.2em);
}

.fa-light {
    font-family: ;
}

.img-left,
.img-right {
  display: block;
  max-width: 40%;
  margin: 0 0 12px;
}
.img-left img,
.img-right img {
  display: block;
}
.img-left {
  float: left;
  margin-right: 12px;
}
.img-right {
  float: right;
  margin-left: 12px;
}

.note {
  font-style: italic;
  font-weight: 400;
  opacity: 0.8;
}
.note + .note,
pre + .note,
input + .note,
textarea + .note {
  margin-top: -12px;
}

.highlight {
  color: #fff;
  background-color: #1a3463;
}
.highlight::before,
.highlight::after {
  content: '\00a0';
  line-height: 1.75;
}

.warn {
  color: #941;
}

figure {
  display: block;
  margin-bottom: 24px;
  padding: 6px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
figcaption {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  opacity: 0.8;
}

.to-screen-edges {
  width: auto !important;
  margin-left: -24px;
  margin-right: -24px;
}
.to-screen-edges__content {
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 768px) {
  .to-screen-edges {
    margin-left: -48px;
    margin-right: -48px;
  }
  .to-screen-edges__content {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (min-width: 1376px) {
  .to-screen-edges {
    margin-left: calc(-50vw + 640px);
    margin-right: calc(-50vw + 640px);
  }
  .to-screen-edges__content {
    padding-left: calc(50vw - 640px);
    padding-right: calc(50vw - 640px);
  }
}

.responsive-video {
  /* include this extra container when using responsive videos. It makes sizing easier */
}
.responsive-video__aspect {
  position: relative;
  padding-bottom: 56.25%;
}
.responsive-video__aspect iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
}


.button {
  display: inline-block;
  vertical-align: middle;
  padding: 12px 36px;
  border: 2px solid #1a3d6d;
  border-radius: 3px;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
  color: #1a3d6d;
  background: #fff;
  -webkit-transition: color 0.15s ease-out,
                      background-color 0.15s ease-out,
                      box-shadow 0.15s ease-out,
                      -webkit-transform 0.15s ease-out;
  transition: color 0.15s ease-out,
              background-color 0.15s ease-out,
              box-shadow 0.15s ease-out,
              -webkit-transform 0.15s ease-out;
  transition: color 0.15s ease-out,
              background-color 0.15s ease-out,
              transform 0.15s ease-out,
              box-shadow 0.15s ease-out;
  transition: color 0.15s ease-out,
              background-color 0.15s ease-out,
              transform 0.15s ease-out,
              box-shadow 0.15s ease-out,
              -webkit-transform 0.15s ease-out;
}
.button:hover,
.button:focus {
  color: #1a3463;
  border-color: #1a3463;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
}
.button:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  box-shadow: none;
  -webkit-transition: none;
  transition: none;
}
.button.is-active {
  color: #fff;
  background-color: #1a3d6d;
  border-color: #1a3d6d;
}
.button--large {
  display: block;
  width: auto;
  max-width: 100%;
}
.button--large + .button--large {
  margin-left: 0;
  margin-top: 12px;
}
.button--small {
  padding: 6px 24px;
  font-size: 15px;
}
.button--xsmall {
  padding: 3px 12px;
  font-size: 13px;
}
.button--action {
  color: #1a3463;
  border-color: #1a3463;
}
/*.button--action:hover,
.button--action:focus {
  color: #80bb00;
  border-color: #80bb00;
}*/
.button--action.is-active {
  color: #fff;
  background-color: #1a3463;
  border-color: #1a3463;
}
.button--warn {
  color: #941;
  border-color: #941;
}
/*.button--warn:hover,
.button--warn:focus {
  color: #c75816;
  border-color: #c75816;
}*/
.button--warn.is-active {
  color: #fff;
  background-color: #941;
  border-color: #941;
}
.button--cancel {
  font-size: 15px;
  font-weight: 400;
  color: #525e65;
  border: 1px solid #d8d8d8;
}
/*.button--cancel:hover,
.button--cancel:focus {
  color: #1a3d6d;
  border-color: #1a3d6d;
}*/
.button--cancel.is-active {
  color: #fff;
  background-color: #525e65;
  border-color: #525e65;
}
.button--cta {
  padding: 18px 42px;
  border-width: 0;
  border-radius: 0;
  color: #fff !important;
  background-color: #1a3d6d;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
.button--cta:hover,
.button--cta:focus {
  background-color: #1a3463;
  box-shadow: none;
}
.button--cta.button--action {
  background-color: #1a3463;
}
.button--cta.button--action:hover,
.button--cta.button--action:focus {
  background-color: #1a3463;
}
.button small {
  display: block;
}

.button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: -12px;
  margin-right: -6px;
  margin-left: -6px;
}
.button-group > .button {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  margin: 12px 6px 0;
}
.button-group > .button--cta {
  margin-left: 12px;
  margin-right: 12px;
}

.pull-quote {
  padding: 24px 0;
  margin: 24px 0;
  border: solid #1a3463;
  border-width: 2px 0;
  font-size: 19px;
  line-height: 36px;
  font-weight: 300;
}
.pull-quote__attribution {
  display: block;
  font-size: 15px;
  font-style: italic;
  line-height: 24px;
  opacity: 0.8;
}
.pull-quote__attribution::before {
  content: '– ';
}
p + .pull-quote__attribution {
  margin-top: -18px;
}

@media (min-width: 470px) {
  .pull-quote--left,
  .pull-quote--right {
    max-width: 40%;
    margin-top: 0;
  }
  .pull-quote--left {
    float: left;
    margin-right: 24px;
    padding: 0 24px 0 0;
    border-width: 0 2px 0 0;
  }
  .pull-quote--right {
    float: right;
    margin-left: 24px;
  }
}


.countdown {
  max-width: 20em;
  margin-left: auto;
  margin-right: auto;
}
.countdown--has-seconds {
  max-width: 25em;
}
.countdown::after {
  content: '';
  display: table;
  clear: both;
}
.countdown__facet {
  width: 33.33%;
  float: left;
  position: relative;
  padding: 0 6px 24px;
}
.countdown--has-seconds .countdown__facet {
  width: 25%;
}
.countdown__label {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  opacity: 0.4;
}
.countdown__figure {
  font-size: 36px;
  line-height: 36px;
  color: #1a3463;
  font-weight: 300;
  font-feature-settings: 'tnum';
}


.content-box {
  padding: 24px;
  border: 2px solid #1f2a3d;
  background: #fff;
}
.content-box:not(:last-child) {
  margin-bottom: 48px;
}
.content-box h1,
.content-box h2,
.content-box h3,
.content-box h4,
.content-box h5,
.content-box h6 {
  color: #1a3d6d;
}
.content-box--action {
  border-color: #679700;
}
.content-box--action h1,
.content-box--action h2,
.content-box--action h3,
.content-box--action h4,
.content-box--action h5,
.content-box--action h6 {
  color: #1a3463;
}

.text-callout {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 26px;
  font-weight: 300;
  line-height: 36px;
  text-align: center;
}
.text-callout:not(:last-child) {
  margin-bottom: 48px;
}

.item-list {
  list-style: none;
  margin: 0;
}
.item-list:not(:last-child) {
  margin-bottom: 48px;
}
.item-list + .button {
  margin-top: -24px;
}
.item-list--indent {
  margin-left: 1em;
}
.item-list__item {
  position: relative;
}
.item-list--schedule .item-list__item {
  min-height: 70px;
}
.item-list__item + .item-list__item {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}
.item-list--compact .item-list__item + .item-list__item {
  margin-top: 12px;
  padding-top: 12px;
  border-top-width: 1px;
}
.item-list__title,
.card-list__title {
  font-size: 19px;
  line-height: 24px;
  font-weight: 700;
  margin: 0;
}
.item-list__title .fa,
.item-list__title .fas,
.item-list__title .fab {
  font-size: 0.85em;
  color: #525e65;
  margin-right: 0.3em;
  opacity: 0.8;
}
.item-list--compact .item-list__title {
  font-size: 19px;
}
.item-list__description .item-list__title {
  font-size: 19px;
}
.item-list__subtitle {
  display: block;
  font-size: 19px;
  font-weight: 400;
  opacity: 0.9;
}
.item-list__description .item-list__subtitle {
  font-size: 17px;
}
.item-list__date,
.card-list__date {
  margin: 6px 0 0;
}
.item-list__description,
.card-list__description {
  opacity: 0.9;
  margin: 6px 0 0;
}
.item-list__description p:not(:last-child) {
  margin-bottom: 12px;
}
.item-list__description h6 {
  margin-bottom: 12px;
  color: #525e65;
}
.item-list__description h6:not(:first-child) {
  margin-top: 12px;
}
.item-list__thumbnail {
  width: 160px;
  max-width: 33%;
  float: left;
  margin-right: 24px;
}
.item-list__thumbnail ~ .item-list__title,
.item-list__thumbnail ~ .card-list__title,
.item-list__thumbnail ~ .item-list__date,
.item-list__thumbnail ~ .card-list__date,
.item-list__thumbnail ~ .item-list__description,
.item-list__thumbnail ~ .card-list__description {
  overflow: hidden;
}
.item-list__thumbnail--small,
.item-list__thumbnail--small img {
  max-width: 100px;
  max-height: 100px;
}
.item-list--compact .item-list__thumbnail {
  margin-right: 12px;
}
.item-list__schedule-icons i {
  display: inline-block;
  margin: 0 0.2em 6px;
}
.item-list__price {
  display: block;
}
.item-list__price + .item-list__price {
  margin-top: 6px;
}

@media (max-width: 768px) {
  .item-list__schedule-meta {
    margin: 0 -24px 12px;
    padding: 12px 24px;
    background: #f5f5f5;
  }
  .item-list__schedule-meta .item-list__day,
  .item-list__schedule-meta .item-list__time {
    display: inline;
  }
  .item-list__schedule-meta .item-list__day::after {
    content: ',';
  }
}

@media (min-width: 768px) {
  .item-list__schedule-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 200px;
    padding: 24px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: -24px;
    text-align: center;
    background: #22242c;
    color: #fff;
  }
  .item-list__item:last-child .item-list__schedule-meta {
    bottom: 0;
  }
  .item-list__schedule-meta ~ .item-list__title,
  .item-list__schedule-meta ~ .item-list__date,
  .item-list__schedule-meta ~ .item-list__description {
    display: block;
    margin-left: 224px;
  }
  .item-list__schedule-icons {
    margin-top: 12px;
    font-size: 22px;
  }
}

.card-list {
  list-style: none;
  margin-left: 0;
}
.card-list__item {
  padding: 24px 24px 0;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 2px 5px rgba(0, 0, 0, 0.08);
}
.card-list__thumbnail {
  display: block;
  width: 80px;
  height: 80px;
  float: left;
  margin: 0 12px 6px 0;
  background: #1a3d6d;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.card-list__thumbnail img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  opacity: 0.9;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.card-list__thumbnail:hover img,
.card-list__thumbnail:focus img {
  -webkit-transform: scale(1.06) translate(-50%, -50%);
  -ms-transform: scale(1.06) translate(-50%, -50%);
  transform: scale(1.06) translate(-50%, -50%);
  opacity: 1;
}
.card-list__highlight {
  padding: 9px 24px;
  margin: -24px -24px 18px;
  font-weight: 600;
  color: #fff;
  background: #80bb00;
}
.card-list__description {
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .card-list__item {
    min-height: 0 !important;
  }
}

@media (min-width: 470px) and (max-width: 767px), (min-width: 1280px) {
  .card-list__thumbnail {
    width: 160px;
    height: 160px;
    margin: -24px 24px 0 -24px;
  }
}


.person-list__item::after {
  content: '';
  display: table;
  clear: both;
}
.person-list__thumbnail {
  display: block;
  width: 128px;
  max-width: 33%;
  float: left;
  margin-right: 24px;
  background: #1b2025;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.person-list__thumbnail img {
  max-height: 128px;
  transition: transform 0.15s ease-out;
}
.person-list__thumbnail:hover img,
.person-list__thumbnail:focus img {
  transform: scale(1.05);
}
.person-list__name {
  display: block;
  padding: 12px 24px;
  margin: 0 12px 18px 0;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  background: #8eb838;
  z-index: 1;
}
.person-list__name:hover,
.person-list__name:focus {
  color: #fff;
  background: #1a3463;
}
.person-list__organization,
.person-list__position {
  display: block;
}
.person-list__organization {
  font-weight: 700;
}


.table-list {
  width: 100%;
}
.table-list:not(:last-child) {
  margin-bottom: 48px;
}
.table-list__item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.table-list__primary-identifier {
  font-size: 19px;
  line-height: 24px;
  font-weight: 700;
}
.table-list__primary-identifier a {
  display: block;
  margin: -12px 0;
  padding: 12px 0;
  font-weight: 700;
}
.table-list__primary-identifier .fa,
.table-list__primary-identifier .fas,
.table-list__primary-identifier .fab {
  font-size: 0.85em;
  color: #525e65;
  margin-right: 0.3em;
  opacity: 0.8;
}
.table-list__column-header {
  text-align: left;
  padding-bottom: 12px;
  opacity: 0.8;
}
.table-list td {
  padding: 12px 6px 12px 0;
}
.table-list__item--closed {
  background: rgba(0,0,0,0.03);
}
.table-list__item--open:not(.is-active),
.table-list__item--closed:not(.is-active) {
  display: none;
}

@media (max-width: 539px) {
  .table-list,
  .table-list tbody,
  .table-list tr,
  .table-list th,
  .table-list td {
    display: block;
  }
  .table-list thead,
  .table-list__header-row {
    display: none !important;
  }
  .table-list [data-label]::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    font-size: 15px;
    opacity: 0.65;
    margin-top: -12px;
  }
  .table-list__primary-identifier {
    font-size: 21px;
  }
}


.pagination {
  list-style: none;
  margin: 20px 0;
}
.pagination:first-child {
  margin-top: 0;
}
.pagination:last-child {
  margin-bottom: 0;
}
.pagination li {
  display: inline-block;
}
.pagination a {
  display: block;
  width: 30px;
  line-height: 30px;
  text-align: center;
  font-weight: 700;
  background: #fff;
}
.pagination .active a {
  background: #1a3d6d;
  color: #fff;
}
.pagination .overview {
  font-style: italic;
  margin-right: 35px;
}

.pricing {
  margin-bottom: 12px;
}
.pricing__item {
  display: inline-block;
  vertical-align: top;
  margin: 0 12px 12px 0;
}
.pricing__label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: rgba(0,0,0,0.45);
}
.pricing__price {
  font-size: 22px;
  font-weight: 300;
}

@media (min-width: 960px) {
  .pricing__item {
    margin-right: 24px;
  }
  .pricing__price {
    font-size: 24px;
  }
}

@media (min-width: 1280px) {
  .pricing {
    float: left;
  }
}


.logo-row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-around;
  list-style: none;
  padding: 0;
  margin: 0 -12px;
  text-align: center;
}
.logo-row:not(:last-child) {
  margin-bottom: 48px;
}
.logo-row__logo {
  flex: 1 0 300px;
  display: inline-block;
  vertical-align: middle;
  width: 49%;
}
.logo-row__logo a {
  display: block;
  padding: 12px;
}


.toggle-indicator {
  display: inline-block;
  vertical-align: middle;
  width: 36px;
  height: 36px;
  position: relative;
  background: #fff;
}
.toggle-indicator:first-child {
  margin-right: 12px;
}
.toggle-indicator:last-child {
  margin-left: 12px;
}
.toggle-indicator__piece {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -12px;
  margin-top: -2px;
  -webkit-transition: opacity 0.2s ease-out 0.4s,
                      margin 0.2s ease-out 0.4s,
                      -webkit-transform 0.25s ease-out;
  transition: opacity 0.2s ease-out 0.4s,
              margin 0.2s ease-out 0.4s,
              -webkit-transform 0.25s ease-out;
  transition: opacity 0.2s ease-out 0.4s,
              margin 0.2s ease-out 0.4s,
              transform 0.25s ease-out;
  transition: opacity 0.2s ease-out 0.4s,
              margin 0.2s ease-out 0.4s,
              transform 0.25s ease-out,
              -webkit-transform 0.25s ease-out;
}
.toggle-indicator__piece::before {
  content: '';
  display: block;
  width: 24px;
  height: 4px;
  background: #22242c;
  -webkit-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}
.toggle-indicator__piece--1 {
  margin-top: -8px;
  margin-left: -10.5px;
}
.toggle-indicator__piece--3 {
  margin-top: 4px;
  margin-left: -13.5px;
}
.is-active .toggle-indicator__piece {
  -webkit-transition: opacity 0.2s ease-out,
                      margin 0.2s ease-out,
                      -webkit-transform 0.25s ease-out 0.3s;
  transition: opacity 0.2s ease-out,
              margin 0.2s ease-out,
              -webkit-transform 0.25s ease-out 0.3s;
  transition: opacity 0.2s ease-out,
              margin 0.2s ease-out,
              transform 0.25s ease-out 0.3s;
  transition: opacity 0.2s ease-out,
              margin 0.2s ease-out,
              transform 0.25s ease-out 0.3s,
              -webkit-transform 0.25s ease-out 0.3s;
}
.is-active .toggle-indicator__piece::before {
  background: #1a3463;
}
.is-active .toggle-indicator__piece--2 {
  opacity: 0;
}
.is-active .toggle-indicator__piece--1,
.is-active .toggle-indicator__piece--3 {
  margin-top: -2px;
  margin-left: -12px;
}
.is-active .toggle-indicator__piece--1 {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.is-active .toggle-indicator__piece--3 {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.share-buttons {
  font-size: 24px;
}
.share-buttons:not(:last-child) {
  margin-bottom: 24px;
}
.no-js .share-buttons {
  display: none;
}
.share-buttons__title {
  display: block;
  font-size: 15px;
  opacity: 0.7;
}
.share-buttons__button {
  display: inline-block;
  vertical-align: middle;
  margin: 6px 6px 0 0;
}

.truncator-expand {
  display: block;
  width: 100%;
  padding-top: 6px;
  margin-top: 12px;
  border-top: 1px dashed #d8d8d8;
  text-align: left;
  color: #1a3463;
  font-weight: 700;
  font-size: 15px;
}
.margin + .truncator-expand {
  margin-top: -12px;
}
.margin + .truncator-expand:not(:last-child) {
  margin-bottom: 24px;
}
.item-list + .truncator-expand,
.margin-large + .truncator-expand {
  margin-top: -36px;
}
.item-list + .truncator-expand:not(:last-child),
.margin-large + .truncator-expand:not(:last-child) {
  margin-bottom: 48px;
}

.js .toggle-target:not(.is-active) {
  display: none;
}

.group:after,
.item-list__item:after,
.card-list__item:after,
.side-label:after,
.page-header:after,
.page-footer .page-bounds:after,
.interior-layout:after {
  content: "";
  display: table;
  clear: both;
}


/*! ---------- =grids ---------- */

.grid {
  display: block;
  padding: 0;
  margin-right: -24px;
  letter-spacing: -0.31em;
  text-rendering: optimizespeed;
  text-align: center;
}
.grid.no-margin {
  margin-bottom: -24px;
}
.grid--compact {
  margin-right: 12px;
}
.grid--compact.no-margin {
  margin-bottom: -12px;
}
.grid__unit {
  display: inline-block;
  width: 100%;
  padding: 0 24px 24px 0;
  margin: 0;
  vertical-align: top;
  letter-spacing: normal;
  text-rendering: auto;
  text-align: left;
}
.grid--compact > .grid__unit {
  padding: 0 12px 12px 0;
}

.grid__unit--1-2 { width: 50%; }
.grid__unit--1-3 { width: 33.33%; }
.grid__unit--2-3 { width: 66.66%; }
.grid__unit--1-4 { width: 25%; }
.grid__unit--3-4 { width: 75%; }
.grid__unit--1-5 { width: 20%; }
.grid__unit--2-5 { width: 40%; }
.grid__unit--3-5 { width: 60%; }
.grid__unit--4-5 { width: 80%; }
.grid__unit--1-6 { width: 16.66%; }
.grid__unit--5-6 { width: 83.3%; }
.grid__unit--1-8 { width: 12.5%; }
.grid__unit--3-8 { width: 37.5%; }
.grid__unit--5-8 { width: 62.5%; }
.grid__unit--7-8 { width: 87.5%; }
.grid__unit--1-9 { width: 11.11%; }
.grid__unit--2-9 { width: 22.22%; }
.grid__unit--4-9 { width: 44.44%; }
.grid__unit--5-9 { width: 55.55%; }
.grid__unit--7-9 { width: 77.77%; }
.grid__unit--8-9 { width: 88.88%; }
.grid__unit--1-12 { width: 8.33%; }
.grid__unit--5-12 { width: 41.65%; }
.grid__unit--7-12 { width: 58.31%; }
.grid__unit--11-12 { width: 91.63%; }

@media (min-width: 470px) {
  .grid__unit--1-1-s { width: 100%; }
  .grid__unit--1-2-s { width: 50%; }
  .grid__unit--1-3-s { width: 33.33%; }
  .grid__unit--2-3-s { width: 66.66%; }
  .grid__unit--1-4-s { width: 25%; }
  .grid__unit--3-4-s { width: 75%; }
  .grid__unit--1-5-s { width: 20%; }
  .grid__unit--2-5-s { width: 40%; }
  .grid__unit--3-5-s { width: 60%; }
  .grid__unit--4-5-s { width: 80%; }
  .grid__unit--1-6-s { width: 16.66%; }
  .grid__unit--5-6-s { width: 83.3%; }
  .grid__unit--1-8-s { width: 12.5%; }
  .grid__unit--3-8-s { width: 37.5%; }
  .grid__unit--5-8-s { width: 62.5%; }
  .grid__unit--7-8-s { width: 87.5%; }
  .grid__unit--1-9-s { width: 11.11%; }
  .grid__unit--2-9-s { width: 22.22%; }
  .grid__unit--4-9-s { width: 44.44%; }
  .grid__unit--5-9-s { width: 55.55%; }
  .grid__unit--7-9-s { width: 77.77%; }
  .grid__unit--8-9-s { width: 88.88%; }
  .grid__unit--1-12-s { width: 8.33%; }
  .grid__unit--5-12-s { width: 41.65%; }
  .grid__unit--7-12-s { width: 58.31%; }
  .grid__unit--11-12-s { width: 91.63%; }
}

@media (min-width: 768px) {
  .grid {
    margin-right: -48px;
  }
  .grid.no-margin {
    margin-bottom: -48px;
  }
  .grid--compact {
    margin-right: -24px;
  }
  .grid--compact.no-margin {
    margin-bottom: -24px;
  }
  .grid__unit {
    padding: 0 48px 48px 0;
  }
  .grid--compact > .grid__unit {
    padding: 0 24px 24px 0;
  }

  .grid__unit--1-1-m { width: 100%; }
  .grid__unit--1-2-m { width: 50%; }
  .grid__unit--1-3-m { width: 33.33%; }
  .grid__unit--2-3-m { width: 66.66%; }
  .grid__unit--1-4-m { width: 25%; }
  .grid__unit--3-4-m { width: 75%; }
  .grid__unit--1-5-m { width: 20%; }
  .grid__unit--2-5-m { width: 40%; }
  .grid__unit--3-5-m { width: 60%; }
  .grid__unit--4-5-m { width: 80%; }
  .grid__unit--1-6-m { width: 16.66%; }
  .grid__unit--5-6-m { width: 83.3%; }
  .grid__unit--1-8-m { width: 12.5%; }
  .grid__unit--3-8-m { width: 37.5%; }
  .grid__unit--5-8-m { width: 62.5%; }
  .grid__unit--7-8-m { width: 87.5%; }
  .grid__unit--1-9-m { width: 11.11%; }
  .grid__unit--2-9-m { width: 22.22%; }
  .grid__unit--4-9-m { width: 44.44%; }
  .grid__unit--5-9-m { width: 55.55%; }
  .grid__unit--7-9-m { width: 77.77%; }
  .grid__unit--8-9-m { width: 88.88%; }
  .grid__unit--1-12-m { width: 8.33%; }
  .grid__unit--5-12-m { width: 41.65%; }
  .grid__unit--7-12-m { width: 58.31%; }
  .grid__unit--11-12-m { width: 91.63%; }
}

@media (min-width: 960px) {
  .grid__unit--1-1-l { width: 100%; }
  .grid__unit--1-2-l { width: 50%; }
  .grid__unit--1-3-l { width: 33.33%; }
  .grid__unit--2-3-l { width: 66.66%; }
  .grid__unit--1-4-l { width: 25%; }
  .grid__unit--3-4-l { width: 75%; }
  .grid__unit--1-5-l { width: 20%; }
  .grid__unit--2-5-l { width: 40%; }
  .grid__unit--3-5-l { width: 60%; }
  .grid__unit--4-5-l { width: 80%; }
  .grid__unit--1-6-l { width: 16.66%; }
  .grid__unit--5-6-l { width: 83.3%; }
  .grid__unit--1-8-l { width: 12.5%; }
  .grid__unit--3-8-l { width: 37.5%; }
  .grid__unit--5-8-l { width: 62.5%; }
  .grid__unit--7-8-l { width: 87.5%; }
  .grid__unit--1-9-l { width: 11.11%; }
  .grid__unit--2-9-l { width: 22.22%; }
  .grid__unit--4-9-l { width: 44.44%; }
  .grid__unit--5-9-l { width: 55.55%; }
  .grid__unit--7-9-l { width: 77.77%; }
  .grid__unit--8-9-l { width: 88.88%; }
  .grid__unit--1-12-l { width: 8.33%; }
  .grid__unit--5-12-l { width: 41.65%; }
  .grid__unit--7-12-l { width: 58.31%; }
  .grid__unit--11-12-l { width: 91.63%; }
}


/*! ---------- =forms ---------- */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="date"],
textarea,
select {
  display: block;
  width: 100%;
  padding: 9px 12px;
  margin: 0;
  border: 1px solid rgba(31, 42, 61, 0.3);
  color: #525e65;
  color: rgba(82, 94, 101, 0.8);
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  font: 15px/24px "Proxima Nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-transition: color 0.15s ease-out, border-color 0.15s ease-out, background-color 0.15s ease-out, opacity 0.15s ease-out;
  transition: color 0.15s ease-out, border-color 0.15s ease-out, background-color 0.15s ease-out, opacity 0.15s ease-out;
}
input[type="text"]:not(:last-child),
input[type="email"]:not(:last-child),
input[type="password"]:not(:last-child),
input[type="number"]:not(:last-child),
input[type="tel"]:not(:last-child),
input[type="date"]:not(:last-child),
textarea:not(:last-child),
select:not(:last-child) {
  margin-bottom: 24px;
}
input[type="text"]:required,
input[type="email"]:required,
input[type="password"]:required,
input[type="number"]:required,
input[type="tel"]:required,
input[type="date"]:required,
textarea:required,
select:required {
  border-color: #d2d4d8;
}
input[type="text"].input-validation-error,
input[type="email"].input-validation-error,
input[type="password"].input-validation-error,
input[type="number"].input-validation-error,
input[type="tel"].input-validation-error,
input[type="date"].input-validation-error,
textarea.input-validation-error,
select.input-validation-error {
  border-color: #941;
  color: #941;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
  border-color: #1a3463;
  color: #525e65;
  background-color: #fff;
}
textarea {
  padding: 12px;
  min-height: 96px;
}
textarea.textarea-large {
  min-height: 240px;
}
input[type="radio"],
input[type="checkbox"] {
  display: inline-block;
  position: relative;
  top: -0.1em;
}
label + input[type="radio"],
label + input[type="checkbox"] {
  margin-left: 24px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #163a50;
  opacity: 0.9;
  -webkit-transition: color 0.15s ease-out, opacity 0.15s ease-out;
  transition: color 0.15s ease-out, opacity 0.15s ease-out;
}

input[type="radio"] + label,
input[type="checkbox"] + label {
  display: inline-block;
  vertical-align: top;
  font-weight: 400;
}

label.required {
  color: #1a3d6d;
}
label.required::after {
  content: '*';
  font-weight: 400;
}
label.input-validation-error {
  color: #941;
}
label.is-selected {
  color: #1a3d6d;
}
label.is-focused {
  color: #1a3463;
  opacity: 1;
}

.side-label {
  margin: 0;
}
.side-label:not(:last-child) {
  margin-bottom: 24px;
}

@media (min-width: 470px) {
  .side-label {
    padding-left: 168px;
  }
  .side-label label {
    width: 168px;
    float: left;
    margin-left: -168px;
    padding: 6px 1em 0 0;
  }
}


.field-validation-error {
  display: block;
  margin-bottom: 24px;
  font-size: 15px;
  color: #941;
}
input + .field-validation-error,
select + .field-validation-error,
textarea + .field-validation-error {
  margin-top: -18px;
}


/*! ---------- =tabs ---------- */

.tabs--standard:not(:last-child) {
  margin-bottom: 48px;
}
.tabs--standard .tabs__tab {
  display: inline-block;
  vertical-align: bottom;
  padding: 12px;
  margin-bottom: -1px;
  border: 1px solid #d8d8d8;
  background: #f5f5f5;
  opacity: 0.9;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.tabs--standard .tabs__tab.is-active {
  background: #fff;
  border-bottom-color: #fff;
  color: #1a3463;
}
.tabs--standard .tabs__pane {
  border: 1px solid #d8d8d8;
  padding: 24px;
  display: none;
  background: #fff;
}
.tabs--standard .tabs__pane.is-active {
  display: block;
}
.tabs--vertical {
  margin-bottom: 48px;
}
.tabs--vertical .tabs__tab {
  background: #f5f5f5;
  padding: 12px;
}
.tabs--vertical .tabs__tab.is-active {
  color: #1a3463;
  background: #fff;
}
.tabs--vertical .tabs__pane {
  background: #fff;
}
.js .tabs--vertical .tabs__pane:not(.is-active) {
  display: none;
}

@media (min-width: 470px) {
  .tabs--standard .tabs__tab {
    padding: 18px 24px;
    font-weight: 600;
  }
}

@media (max-width: 767px), (min-width: 960px) and (max-width: 1279px) {
  .tabs--standard,
  .tabs--vertical {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .tabs--standard .tabs__tab,
  .tabs--standard .tabs__pane,
  .tabs--vertical .tabs__tab,
  .tabs--vertical .tabs__pane {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .tabs--standard .tabs__tab,
  .tabs--vertical .tabs__tab {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    border: 1px solid #d8d8d8;
  }
  .tabs--standard .tabs__tab ~ .tabs__tab,
  .tabs--vertical .tabs__tab ~ .tabs__tab {
    margin-top: 6px;
  }
  .tabs--standard .tabs__tab.is-active,
  .tabs--vertical .tabs__tab.is-active {
    border-color: #d8d8d8 #d8d8d8 #d8d8d8;
  }
  .tabs--standard .tabs__tab:nth-child(2),
  .tabs--vertical .tabs__tab:nth-child(2) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .tabs--standard .tabs__tab:nth-child(3),
  .tabs--vertical .tabs__tab:nth-child(3) {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .tabs--standard .tabs__tab:nth-child(4),
  .tabs--vertical .tabs__tab:nth-child(4) {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .tabs--standard .tabs__tab:nth-child(5),
  .tabs--vertical .tabs__tab:nth-child(5) {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .tabs--standard .tabs__tab:nth-child(6),
  .tabs--vertical .tabs__tab:nth-child(6) {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .tabs--standard .tabs__tab:nth-child(7),
  .tabs--vertical .tabs__tab:nth-child(7) {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .tabs--standard .tabs__tab:nth-child(8),
  .tabs--vertical .tabs__tab:nth-child(8) {
    -webkit-box-ordinal-group: 16;
    -ms-flex-order: 15;
    order: 15;
  }
  .tabs--standard .tabs__tab:nth-child(9),
  .tabs--vertical .tabs__tab:nth-child(9) {
    -webkit-box-ordinal-group: 18;
    -ms-flex-order: 17;
    order: 17;
  }
  .tabs--standard .tabs__tab:nth-child(10),
  .tabs--vertical .tabs__tab:nth-child(10) {
    -webkit-box-ordinal-group: 20;
    -ms-flex-order: 19;
    order: 19;
  }
  .tabs--standard .tabs__pane,
  .tabs--vertical .tabs__pane {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding: 24px 12px;
    border: 1px solid #d8d8d8;
    border-top-width: 0;
  }
  .tabs--standard .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .tabs--standard .tabs__pane + .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane + .tabs__pane {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .tabs--standard .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .tabs--standard .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .tabs--standard .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .tabs--standard .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane {
    -webkit-box-ordinal-group: 15;
    -ms-flex-order: 14;
    order: 14;
  }
  .tabs--standard .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane {
    -webkit-box-ordinal-group: 17;
    -ms-flex-order: 16;
    order: 16;
  }
  .tabs--standard .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane {
    -webkit-box-ordinal-group: 19;
    -ms-flex-order: 18;
    order: 18;
  }
  .tabs--standard .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane {
    -webkit-box-ordinal-group: 21;
    -ms-flex-order: 20;
    order: 20;
  }
}

@media (min-width: 768px) and (max-width: 959px), (min-width: 1280px) {
  .tabs--standard {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .tabs--standard::before {
    /* remove sf pseudoel that messes with space-between */
    display: none !important;
  }
  .tabs--standard .tabs__tab {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 18px 24px;
  }
  .tabs--standard.tabs--2 .tabs__tab {
    width: 48%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    -ms-flex-preferred-size: calc(50% - 6px);
    flex-basis: calc(50% - 6px);
  }
  .tabs--standard.tabs--3 .tabs__tab {
    width: 31%;
    -ms-flex-preferred-size: 33.3%;
    flex-basis: 33.3%;
    -ms-flex-preferred-size: calc(33.3% - 6px);
    flex-basis: calc(33.3% - 6px);
  }
  .tabs--standard.tabs--4 .tabs__tab {
    width: 22%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    -ms-flex-preferred-size: calc(25% - 6px);
    flex-basis: calc(25% - 6px);
  }
  .tabs--standard.tabs--5 .tabs__tab {
    width: 17%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    -ms-flex-preferred-size: calc(20% - 6px);
    flex-basis: calc(20% - 6px);
  }
  .tabs--standard .tabs__pane {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
  .tabs--vertical .tabs__tab {
    width: 300px;
    float: left;
    clear: left;
    padding: 11px 17px;
    margin-bottom: 6px;
    border: 1px solid #d8d8d8;
    box-shadow: inset 6px 0 0 #d8d8d8;
    cursor: pointer;
  }
  .tabs--vertical .tabs__tab.is-active {
    background: #fff;
    border-color: #d8d8d8 #fff #d8d8d8 #d8d8d8;
    box-shadow: inset 6px 0 0 #1a3463;
    cursor: default;
  }
  .tabs--vertical .tabs__pane {
    padding: 24px;
    background: #fff;
    border-left: 299px solid #f5f5f5;
    box-shadow: inset 0 0 0 1px #d8d8d8;
  }
  .tabs--vertical .tabs__pane::after {
    content: '';
    display: table;
    clear: both;
    margin: 30px 0 -30px;
  }
}


.accordion {
  margin-top: 48px;
}
.accordion:not(:last-child) {
  margin-bottom: 48px;
}
.accordion + .accordion {
  margin-top: -42px;
}
.accordion__label {
  display: block;
  padding: 12px 48px 12px 12px;
  background: #f5f5f5;
  border: 1px solid #d8d8d8;
  color: #525e65;
  font-weight: 600;
  font-size: 19px;
  cursor: pointer;
  position: relative;
}
.accordion__label::after {
  content: '(click to show)';
  display: inline-block;
  margin-left: 0.5em;
  font-size: 0.7em;
  font-weight: 700;
  font-style: italic;
  opacity: 0.65;
}
.accordion__label.is-active::after {
  content: '(click to hide)';
}
.accordion__label .fa-arrow-right {
  position: absolute;
  right: 18px;
  top: 50%;
  margin-top: -0.5em;
  -webkit-transition: -webkit-transform 0.15s ease-out;
  transition: -webkit-transform 0.15s ease-out;
  transition: transform 0.15s ease-out;
  transition: transform 0.15s ease-out, -webkit-transform 0.15s ease-out;
}
.accordion__label.is-active {
  color: #1a3463;
  border-color: #1a3463 #1a3463 #f5f5f5 #1a3463;
  background: #fff;
}
.accordion__label.is-active .fa-arrow-right {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.accordion__label ~ .accordion__label {
  margin-top: 6px;
}
.accordion__content {
  border: 1px solid #1a3463;
  border-top: none;
  padding: 24px 12px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  background: #fff;
  overflow: hidden;
}
.js .accordion__content:not(.is-active) {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0 1px;
  visibility: hidden;
  opacity: 0;
}
.accordion__label.is-empty,
.accordion__content.is-empty {
  opacity: 0.3;
}


/*! ---------- =code and =syntax highlighting ---------- */

pre,
code {
  font-family: "Inconsolata", monospace;
  font-size: 15px;
  line-height: 24px;
}
pre {
  display: block;
  padding: 24px 12px;
  border: 1px solid whitesmoke;
  color: #222;
  background: white;
  overflow-y: auto;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.1);
  position: relative;
}
pre:not(:last-child) {
  margin-bottom: 24px;
}
pre::before {
  content: attr(rel);
  font-family: "Proxima Nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #afbbcc;
  position: absolute;
  top: 2px;
  right: 12px;
}
p > code,
li > code {
  background: white;
  font-style: normal;
}
p > code::before,
p > code::after,
li > code::before,
li > code::after {
  content: '';
  display: inline-block;
  width: 0.5em;
}

/*! syntax highlighting through prism: http://prismjs.com/index.html
*  the following is based off the default theme */

pre[class*="language-"] {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: slategray;
}
.token.punctuation {
  color: #999;
}
.namespace {
  opacity: 0.7;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
  color: #905;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
  color: #690;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
  color: #a67f59;
  background: rgba(255, 255, 255, 0.5);
}
.token.atrule,
.token.attr-value,
.token.keyword {
  color: #07a;
}
.token.function {
  color: #dd4a68;
}
.token.regex,
.token.important,
.token.variable {
  color: #e90;
}
.token.important,
.token.bold {
  font-weight: bold;
}
.token.italic {
  font-style: italic;
}
.token.entity {
  cursor: help;
}


/*! ---------- =body ---------- */

body {
  width: 100%;
  overflow-x: hidden;
  background: #f5f5f5;
}

.content {
  padding: 24px;
}

@media (min-width: 768px) {
  .content {
    padding: 48px;
  }
}

@media (min-width: 960px) {
  .content {
    /*! account for absolute header */
    padding-top: 228px;
  }
}

@media (min-width: 1280px) {
  .content {
    padding-top: 180px;
  }
}


.page-bounds {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.form-width {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.form-width__left {
  margin-left: 0;
}
.form-width__right {
  margin-right: 0;
}

.reading-width {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.reading-width__left {
  margin-left: 0;
}
.reading-width__right {
  margin-right: 0;
}

.alternate-background,
.breadcrumbs {
  padding: 36px 24px;
  margin: 0 -24px 24px;
  background: #fff;
}
.alternate-background + .alternate-background,
.breadcrumbs + .alternate-background,
.alternate-background + .breadcrumbs,
.breadcrumbs + .breadcrumbs {
  margin-top: -24px;
}
.alternate-background--dark {
  color: #fff;
  background: #1f2a3d;
}
.alternate-background--dark a {
  color: #80bb00;
}
.alternate-background--dark a:hover,
.alternate-background--dark a:focus {
  color: #1a3463;
}
.alternate-background .grid:last-child,
.breadcrumbs .grid:last-child {
  margin-bottom: -24px;
}
.alternate-background .grid--compact:last-child,
.breadcrumbs .grid--compact:last-child {
  margin-bottom: -12px;
}

@media (min-width: 768px) {
  .alternate-background,
  .breadcrumbs {
    padding: 48px;
    margin: 0 -48px 48px;
  }
  .alternate-background + .alternate-background,
  .breadcrumbs + .alternate-background,
  .alternate-background + .breadcrumbs,
  .breadcrumbs + .breadcrumbs {
    margin-top: -48px;
  }
  .alternate-background .grid:last-child,
  .breadcrumbs .grid:last-child {
    margin-bottom: -48px;
  }
  .alternate-background .grid--compact:last-child,
  .breadcrumbs .grid--compact:last-child {
    margin-bottom: -24px;
  }
}

@media (min-width: 1920px) {
  .alternate-background {
    margin-left: calc((100vw - 1920px) / -2);
    margin-right: calc((100vw - 1920px) / -2);
  }
}


/*! ---------- =header, =nav ---------- */

.page-header {
  padding: 0 24px;
  color: #fff;
  background: #1a3d6d;
  position: relative;
  z-index: 100;
}
.page-header a {
  color: #fff;
}
.page-header .page-bounds {
  position: relative;
}
.page-header__toggle {
  display: none;
}

.header-logo {
  float: left;
}
.header-logo a,
.header-logo img {
  display: block;
  max-width: 100%;
  margin: 0;
}
.header-logo a {
  padding: 24px 0;
  -webkit-transition: padding 0.14s ease-out;
  transition: padding 0.14s ease-out;
}
.header-logo img {
  max-height: 80px;
  -webkit-transition: max-height 0.14s ease-out;
  transition: max-height 0.14s ease-out;
}

.header-meta {
  font-size: 20px;
  font-weight: 400;
  color: #1a2026;
}
.header-meta h1,
.header-meta h2,
.header-meta h3 {
  font-size: 33px;
  font-weight: 400;
}

.header-utility__list,
.header-utility > div {
  display: inline-block;
}
.header-utility__list {
  list-style: none;
  margin: 0;
}
.header-utility__item {
  display: inline-block;
}
.header-utility a {
  display: block;
  padding: 6px;
  font-weight: 400;
}
.header-utility [class^="svg-inline"] {
  margin-left: 0.4em;
}

.header-search {
  position: relative;
}
.header-search__input {
  display: block;
  width: 100%;
  padding: 12px 72px 12px 24px !important;
  margin: 0 !important;
  border: 2px solid #97a7bc !important;
  font-size: 15px;
  line-height: 24px;
  color: #fff !important;
  background: #1d3350 !important;
}
.header-search__input:focus {
  border-color: #1a3463 !important;
}
.header-search__input::-webkit-input-placeholder {
  font-style: italic;
}
.header-search__input::-moz-placeholder {
  font-style: italic;
}
.header-search__input:-ms-input-placeholder {
  font-style: italic;
}
.header-search__input:-moz-placeholder {
  font-style: italic;
}
.header-search__submit {
  display: block;
  width: 60px;
  padding: 14.5px 0;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
  color: #1a3463;
  opacity: 0.8;
}
.header-search__submit:hover,
.header-search__submit:focus {
  opacity: 1;
}
.header-search__submit > img {
  max-height: 19px;
}

.header-nav ul {
  list-style: none;
  margin: 0;
}
.header-nav li {
  position: relative;
}
.header-nav a {
  display: block;
  font-weight: 700;
}
.header-nav li li a {
  font-weight: 400;
}
.header-nav li li a .fa-external-link-square-alt {
  font-size: 0.65em;
  position: relative;
  top: -0.4em;
}
.header-nav__toggle {
  display: none;
}


@media (max-width: 469px) {
  .header-utility__list,
  .header-utility > div,
  .header-utility__item {
    display: block;
  }
}

@media (max-width: 959px) {
  .page-header {
    width: 100%;
  }
  .js .page-header {
    height: 78px;
    /*! lock this down so height doesn't depend on logo loading */
  }
  .page-header__toggle {
    position: absolute;
    right: -24px;
    top: -3px;
    padding: 24px;
    -webkit-transition: background 0.3s ease-out;
    transition: background 0.3s ease-out;
  }
  .page-header__toggle .toggle-indicator {
    -webkit-transition: background 0.25s ease, -webkit-transform 0.25s ease;
    transition: background 0.25s ease, -webkit-transform 0.25s ease;
    transition: transform 0.25s ease, background 0.25s ease;
    transition: transform 0.25s ease, background 0.25s ease, -webkit-transform 0.25s ease;
  }
  .page-header__toggle.is-active {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 20%;
    width: calc(0% + 72px);
    background: rgba(34, 36, 44, 0.7);
  }
  .page-header__toggle.is-active .toggle-indicator {
    position: absolute;
    top: 21px;
    right: 24px;
    -webkit-transform: translateX(6px);
    -ms-transform: translateX(6px);
    transform: translateX(6px);
    background: #212d40;
  }
  .page-header__toggle.is-active .page-header__toggle-label {
    top: 21px;
    margin-right: 12px;
  }
  .js .page-header__toggle {
    display: block;
  }
  .page-header__toggle-label {
    position: absolute;
    right: 100%;
    top: 24px;
    margin-right: -12px;
    line-height: 36px;
  }
  .page-header__content {
    clear: both;
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding-top: 12px;
    background: #f5f5f5;
  }
  .js .page-header__content {
    width: 80%;
    width: calc(100% - 72px);
    position: fixed;
    top: 0;
    bottom: 0;
    right: 100%;
    overflow-y: auto;
    opacity: 0;
    -webkit-transition: all 0.25s ease-out, opacity 0.15s ease;
    transition: all 0.25s ease-out, opacity 0.15s ease;
  }
  .js .page-header__content.is-active {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 1;
  }

  .header-logo a {
    padding: 18px 0;
  }
  .header-logo img {
    max-height: 42px;
  }

  .header-meta {
    padding: 12px 24px 24px;
  }

  .header-utility {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    padding: 12px 24px 24px;
  }
  .header-utility__item {
    margin-bottom: 4px;
  }
  .header-utility a {
    color: #679700;
    padding: 12px 24px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }
  .header-utility a::before,
  .header-utility a::after {
    display: none;
  }
  .header-utility a:hover,
  .header-utility a:focus {
    color: #fff;
    background: #679700;
  }
  .header-utility__welcome {
    display: block;
    color: #525e65;
  }
  .header-utility__welcome a {
    box-shadow: none;
    padding-left: 0;
    background: transparent;
  }
  .header-utility__welcome a:hover,
  .header-utility__welcome a:focus {
    background: transparent;
    color: #1a3463;
  }

  .header-search {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 0 12px 12px;
  }
  .header-search__input {
    border-color: #1a3d6d !important;
    background-color: #fff !important;
    color: #525e65 !important;
  }
  .header-search__input:focus {
    border-color: #679700 !important;
  }
  .header-search__submit {
    -webkit-filter: brightness(0.4);
    filter: brightness(0.4);
  }

  .header-user {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 24px;
  }

  .header-nav {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    border-top: 1px solid rgba(34, 36, 44, 0.2);
    background: #fff;
  }
  .header-nav a {
    padding: 12px 96px 12px 24px;
    border-bottom: 1px solid rgba(34, 36, 44, 0.2);
    font-size: 19px;
    color: #1a3d6d;
  }
  .header-nav li li a {
    padding-left: 48px;
    border-bottom-color: rgba(34, 36, 44, 0.1);
    font-size: 17px;
    color: #525e65;
    background: #f5f5f5;
    box-shadow: inset 24px 0 0 rgba(255, 255, 255, 0.9);
  }
  .header-nav li li li a {
    padding-left: 72px;
    font-size: 15px;
    box-shadow: inset 48px 0 0 rgba(255, 255, 255, 0.9);
  }
  .header-nav li li li li a {
    padding-left: 96px;
    box-shadow: inset 72px 0 0 rgba(255, 255, 255, 0.9);
  }
  .header-nav li li li li li a {
    padding-left: 120px;
    box-shadow: inset 96px 0 0 rgba(255, 255, 255, 0.9);
  }
  .js .header-nav li ul {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: max-height 0.3s cubic-bezier(0, 0.5, 0, 1);
    transition: max-height 0.3s cubic-bezier(0, 0.5, 0, 1);
  }
  .js .header-nav li ul.is-active {
    max-height: 100em;
    -webkit-transition: max-height 0.4s cubic-bezier(0.7, 0, 0.1, 1);
    transition: max-height 0.4s cubic-bezier(0.7, 0, 0.1, 1);
  }
  .header-nav__toggle {
    width: 72px;
    height: 48px;
    position: absolute;
    right: 0;
    top: 0;
    background: transparent;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
  }
  .js .header-nav__toggle {
    display: block;
  }
  .header-nav__toggle::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom-width: 0;
    border-top-color: #a5a5a5;
    position: absolute;
    left: 50%;
    margin-left: -10px;
    top: 50%;
    margin-top: -5px;
    -webkit-transform: scaleX(0.6);
    -ms-transform: scaleX(0.6);
    transform: scaleX(0.6);
    -webkit-transition: -webkit-transform 0.2s ease-out;
    transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  }
  .header-nav__toggle.is-active::before {
    border-top-color: #1a3463;
    -webkit-transform: scaleX(0.6) rotateX(180deg);
    transform: scaleX(0.6) rotateX(180deg);
  }
  .header-nav__callout-link {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

@media (min-width: 960px) {
  .page-header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 48px;
    background: rgba(26, 61, 109, 0.92);
    -webkit-transition: background 0.14s ease-out;
    transition: background 0.14s ease-out;
  }

  .header-meta {
    position: absolute;
    top: 18px;
    left: 300px;
    color: #dee5f1;
  }
  .header-meta h1,
  .header-meta h2,
  .header-meta h3 {
    color: #ffd523;
    margin-bottom: 12px;
  }

  .header-meta,
  .header-utility,
  .header-search {
    -webkit-transition: opacity 0.14s ease-out, -webkit-transform 0.14s ease-out;
    transition: opacity 0.14s ease-out, -webkit-transform 0.14s ease-out;
    transition: transform 0.14s ease-out, opacity 0.14s ease-out;
    transition: transform 0.14s ease-out, opacity 0.14s ease-out, -webkit-transform 0.14s ease-out;
  }

  .header-utility,
  .header-search {
    top: 42px;
  }
  .header-utility {
    position: absolute;
    right: 25%;
    margin-right: 24px;
  }
  .header-utility__item + .header-utility__item,
  .header-utility__list + div {
    margin-left: 16px;
  }
  .header-utility a {
    padding: 8px 12px;
    font-size: 15px;
    background: #1a3463;
  }
  .header-utility a:hover,
  .header-utility a:focus {
    opacity: 1;
  }
  /* work around the weirdness of how the login/lagout widget works */
  .header-utility__item:not([style^="display: none"]) ~ .header-utility__item:not([style^="display: none"]) a {
    background: #61931e;
  }
  .header-utility__item:not([style^="display: none"]) ~ .header-utility__item:not([style^="display: none"]) ~ .header-utility__item:not([style^="display: none"]) a {
    background: #497638;
  }
  .header-utility__item:not([style^="display: none"]) ~ .header-utility__item:not([style^="display: none"]) ~ .header-utility__item:not([style^="display: none"]) ~ .header-utility__item:not([style^="display: none"]) a {
    background: #325a53;
  }
  .header-utility a:hover,
  .header-utility a:focus,
  .header-utility__item:nth-child(n) a:hover,
  .header-utility__item:nth-child(n) a:focus {
    background: #1a3463 !important;
  }
  .header-utility__welcome a {
    background: transparent;
    padding-left: 12px;
    padding-right: 12px;
    margin-right: -16px;
  }
  /* specificity war */
  .header-utility__item .header-utility__welcome a:hover,
  .header-utility__item .header-utility__welcome a:focus {
    color: #1a3463 !important;
    background: transparent !important;
  }
  .header-utility__welcome a .fa-user-check {
    color: #6ca500;
    margin-right: 0.65em;
  }
  .header-utility__welcome a::before,
  .header-utility__welcome a::after {
    display: none;
  }


  .header-search {
    width: 25%;
    position: absolute;
    right: 0;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  .header-search__input {
    padding: 6px 48px 6px 12px !important;
  }
  .header-search__input:focus {
    border-color: #1a3463 !important;
  }
  .header-search__angle {
    width: 18px;
    position: absolute;
    -webkit-transform: translateX(-9px) skewX(-14.6deg);
    -ms-transform: translateX(-9px) skewX(-14.6deg);
    transform: translateX(-9px) skewX(-14.6deg);
    top: 0;
    bottom: 0;
    left: 0;
    border: 2px solid #97a7bc;
    border-right: none;
    background: #1d3350;
    -webkit-transition: border-color 0.15s ease-out;
    transition: border-color 0.15s ease-out;
  }
  .header-search__input:focus ~ .header-search__angle {
    border-color: #1a3463;
  }
  .header-search__submit {
    width: 48px;
    padding: 11.5px 0;
  }

  .header-nav {
    /*! don't clear the logo. we're going to animate this later */
    padding-top: 107px;
    -webkit-transition: padding 0.14s ease-out, margin 0.14s ease-out;
    transition: padding 0.14s ease-out, margin 0.14s ease-out;
  }
  .header-nav > ul,
  .header-nav .rdContent > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin: 0 -24px;
    text-align: center;
  }
  .header-nav > ul > li,
  .header-nav .rdContent > ul > li {
    display: inline-block;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    position: static;
  }
  .header-nav > ul > li > a,
  .header-nav .rdContent > ul > li > a {
    padding: 24px 0;
    text-transform: uppercase;
    position: relative;
  }
  .header-nav > ul > li > a::before,
  .header-nav .rdContent > ul > li > a::before {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    position: absolute;
    bottom: -14px;
    left: 50%;
    margin-left: -10px;
    background: #f5f5f5;
    -webkit-transform: scaleY(0.33) rotate(-45deg);
    -ms-transform: scaleY(0.33) rotate(-45deg);
    transform: scaleY(0.33) rotate(-45deg);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: opacity 0.15s ease-out, visibility 0s linear 0.15s, z-index 0s linear 0.15s;
    transition: opacity 0.15s ease-out, visibility 0s linear 0.15s, z-index 0s linear 0.15s;
  }
  .header-nav > ul > li > ul,
  .header-nav .rdContent > ul > li > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: absolute;
    left: -48px;
    right: -48px;
    top: 100%;
    padding: 36px 48px;
    border-bottom: 1px solid #d8d8d8;
    text-align: left;
    background: #f5f5f5;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    -webkit-transition: opacity 0.15s ease-out, visibility 0s linear 0.15s, z-index 0s linear 0.15s;
    transition: opacity 0.15s ease-out, visibility 0s linear 0.15s, z-index 0s linear 0.15s;
    box-shadow: 1919px 0 0 #f5f5f5, -1919px 0 0 #f5f5f5;
  }
  .header-nav > ul > li > ul.has-callout,
  .header-nav .rdContent > ul > li > ul.has-callout {
    min-height: 322px;
    padding-right: 33.3%;
  }
  .header-nav > ul > li > ul.has-callout > li,
  .header-nav .rdContent > ul > li > ul.has-callout > li {
    width: 48%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
    -ms-flex: 0 0 calc(50% - 12px);
    flex: 0 0 calc(50% - 12px);
  }
  .header-nav > ul > li > ul a,
  .header-nav .rdContent > ul > li > ul a {
    color: #525e65;
  }
  .header-nav > ul > li > ul a:hover,
  .header-nav .rdContent > ul > li > ul a:hover {
    color: #1a3463;
  }
  .header-nav > ul > li > ul > li,
  .header-nav .rdContent > ul > li > ul > li {
    display: inline-block;
    vertical-align: top;
    width: 32%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    -ms-flex: 0 0 calc(33% - 12px);
    flex: 0 0 calc(33% - 12px);
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  .header-nav > ul > li > ul > li > a,
  .header-nav .rdContent > ul > li > ul > li > a {
    font-size: 19px;
    font-weight: 600;
    line-height: 36px;
    color: #1a3d6d;
  }
  .header-nav > ul > li > ul > li > ul,
  .header-nav .rdContent > ul > li > ul > li > ul {
    margin-bottom: 24px;
    padding-top: 12px;
    border-top: 1px solid #d8d8d8;
  }
  .header-nav ul ul ul ul {
    display: none;
  }
  .header-nav > ul > li:hover > a,
  .header-nav .rdContent > ul > li:hover > a {
    color: #1a3463;
  }
  .header-nav > ul > li:hover > a::before,
  .header-nav .rdContent > ul > li:hover > a::before {
    opacity: 1;
    visibility: visible;
    z-index: 101;
    -webkit-transition: opacity 0.1s ease-out 0.5s, z-index 0s linear 0.5s, visibility 0s linear 0.5s;
    transition: opacity 0.1s ease-out 0.5s, z-index 0s linear 0.5s, visibility 0s linear 0.5s;
  }
  .header-nav > ul > li:hover > ul,
  .header-nav .rdContent > ul > li:hover > ul {
    opacity: 1;
    z-index: 100;
    visibility: visible;
    -webkit-transition: opacity 0.2s ease-out 0.5s, z-index 0s linear 0.5s, visibility 0s linear 0.5s;
    transition: opacity 0.2s ease-out 0.5s, z-index 0s linear 0.5s, visibility 0s linear 0.5s;
  }
  .header-nav > ul > li:hover > ul > li,
  .header-nav .rdContent > ul > li:hover > ul > li {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity 0.25s ease-out, -webkit-transform 0.25s ease-out;
    transition: opacity 0.25s ease-out, -webkit-transform 0.25s ease-out;
    transition: transform 0.25s ease-out, opacity 0.25s ease-out;
    transition: transform 0.25s ease-out, opacity 0.25s ease-out, -webkit-transform 0.25s ease-out;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(1) {
    -webkit-transition-delay: 0.57s, 0.57s;
    transition-delay: 0.57s, 0.57s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(2) {
    -webkit-transition-delay: 0.64s, 0.64s;
    transition-delay: 0.64s, 0.64s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(3) {
    -webkit-transition-delay: 0.71s, 0.71s;
    transition-delay: 0.71s, 0.71s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(4) {
    -webkit-transition-delay: 0.78s, 0.78s;
    transition-delay: 0.78s, 0.78s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(5) {
    -webkit-transition-delay: 0.85s, 0.85s;
    transition-delay: 0.85s, 0.85s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(6) {
    -webkit-transition-delay: 0.92s, 0.92s;
    transition-delay: 0.92s, 0.92s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(7) {
    -webkit-transition-delay: 0.99s, 0.99s;
    transition-delay: 0.99s, 0.99s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(8) {
    -webkit-transition-delay: 1.06s, 1.06s;
    transition-delay: 1.06s, 1.06s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(9) {
    -webkit-transition-delay: 1.13s, 1.13s;
    transition-delay: 1.13s, 1.13s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(10) {
    -webkit-transition-delay: 1.2s, 1.2s;
    transition-delay: 1.2s, 1.2s;
  }
  .header-nav .is-current > a {
    color: #1a3463;
  }
  .header-nav__callout {
    width: 33.3% !important;
    position: absolute !important;
    right: 0;
    top: 36px;
    padding-left: 24px !important;
  }
  .header-nav__callout-link {
    padding: 0 !important;
  }

  body.is-scrolled .page-header {
    position: fixed;
    background-color: rgba(29, 52, 85, 0.9);
  }
  body.is-scrolled .header-logo a {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  body.is-scrolled .header-logo img {
    max-height: 48px;
  }
  body.is-scrolled .header-meta {
    transform: translateY(-200px);
    opacity: 0;
  }
  body.is-scrolled .header-utility,
  body.is-scrolled .header-search {
    -webkit-transform: translateY(-72px);
    -ms-transform: translateY(-72px);
    transform: translateY(-72px);
    opacity: 0;
  }
  body.is-scrolled .header-nav {
    margin-left: 210px;
    padding-top: 0;
  }
  body.is-scrolled .header-nav > ul > li > a {
    font-size: 14px;
  }
}


@media (min-width: 960px) and (max-width: 1279px) {
  .header-logo a {
    padding-bottom: 0;
  }
}


@media (min-width: 1280px) {
  .header-nav {
    clear: none;
    padding-top: 60px;
    margin-left: 400px;
  }

  .header-utility,
  .header-search {
    top: 24px;
  }
  .header-utility a {
    padding-left: 24px;
    padding-right: 24px;
  }
  body.is-scrolled .header-utility,
  body.is-scrolled .header-search {
    -webkit-transform: translateY(-48px);
    -ms-transform: translateY(-48px);
    transform: translateY(-48px);
    opacity: 0;
  }

  body.is-scrolled .header-nav > ul > li > a {
    font-size: 17px;
  }
}

@media (min-width: 960px) and (max-width: 1519px) {
  .header-meta {
    font-size: 16px;
  }
  .header-meta h1,
  .header-meta h2,
  .header-meta h3,
  .header-meta p {
    display: inline-block;
    vertical-align: middle;
  }
  .header-meta h1,
  .header-meta h2,
  .header-meta h3 {
    font-size: 26px;
    margin-bottom: 0;
    margin-right: 12px;
  }
}

@media (min-width: 1520px) {
  .header-nav,
  body.is-scrolled .header-nav {
    margin-left: 36%;
  }

  .header-meta h1,
  .header-meta h2,
  .header-meta h3 {
    margin-bottom: 6px;
  }
}


/*! ---------- =footer ---------- */

.page-footer {
  padding: 0 24px;
  background: #1a3d6d;
  color: #fff;
}
.page-footer a {
  color: #f2c300;
  font-weight: 700;
}
.page-footer a:hover,
.page-footer a:focus {
  color: #80bb00;
}
.page-footer .page-bounds {
  padding: 24px 0;
  position: relative;
}

.footer-logo {
  margin-bottom: 24px;
}
.footer-logo a,
.footer-logo img {
  display: block;
  max-width: 100%;
}
.footer-logo img {
  max-height: 40px;
}

.footer-contact {
  margin-bottom: 24px;
}
.footer-contact strong {
  font-size: 18px;
}

.footer-social {
  margin-bottom: 24px;
}
.footer-social__icon {
  display: inline-block;
  vertical-align: middle;
  padding: 12px;
  opacity: 0.8;
}
.footer-social__icon:hover,
.footer-social__icon:focus {
  opacity: 1;
}
.footer-social__icon img {
  width: 36px;
  height: 36px;
}

.footer-utility {
  margin-bottom: 24px;
}
.footer-utility__list {
  list-style: none;
  margin: 0;
}
.footer-utility__item {
  display: inline-block;
}
.footer-utility a {
  display: block;
  padding: 6px 12px;
  font-weight: 700;
}

.footer-copyright {
  font-size: 14px;
  opacity: 0.7;
}


@media (max-width: 510px) {
  .footer-social__icon {
    padding: 3px;
  }
}


@media (max-width: 767px) {
  .page-footer {
    text-align: center;
  }

  .footer-utility a {
    padding: 12px;
  }
}

@media (min-width: 768px) {
  .page-footer {
    padding: 0 48px;
    background-image: -webkit-linear-gradient(345.4deg, #365784 0, #365784 280px, transparent 280px);
    background-image: linear-gradient(104.6deg, #365784 0, #365784 280px, transparent 280px);
    background-repeat: no-repeat;
  }
  .page-footer .page-bounds {
    padding: 48px 0;
  }

  .footer-logo {
    float: left;
  }
  .footer-logo img {
    max-height: 60px;
  }

  .footer-contact,
  .footer-social,
  .footer-utility,
  .footer-copyright {
    text-align: right;
  }
  .footer-social {
    margin: -12px -12px 6px 0;
  }
  .footer-utility {
    margin: 0 -12px 12px 0;
  }
}

@media (min-width: 960px) {
  .page-footer {
    background-image: -webkit-linear-gradient(345.4deg, #365784 0, #365784 33%, transparent 33%);
    background-image: linear-gradient(104.6deg, #365784 0, #365784 33%, transparent 33%);
  }

  .footer-utility {
    margin-bottom: 0;
  }

  .footer-copyright {
    max-width: 30%;
    position: absolute;
    left: 0;
    top: 120px;
    text-align: left;
  }
}

@media (min-width: 1520px) {
  .footer-logo {
    width: 33%;
  }
  .footer-logo a {
    display: inline-block;
  }
  .footer-logo img {
    max-height: 80px;
  }

  .footer-contact {
    float: left;
    margin: 0 0 0 24px;
    text-align: left;
    line-height: 30px;
    white-space: nowrap;
  }
  .footer-contact__spacer {
    width: 18px;
    height: 30px;
    float: left;
    clear: left;
  }
  .footer-contact__spacer--2 {
    width: 12px;
  }
  .footer-contact__spacer--3 {
    width: 6px;
  }

  .footer-social {
    margin-top: 0;
    margin-bottom: 30px;
  }

  .footer-utility {
    margin-bottom: 0;
  }

  .footer-copyright {
    top: 140px;
  }
}


/* ---------- =home ---------- */

.home-feature {
  list-style: none;
  margin: 0;
  overflow: hidden;
}
.home-feature__item {
  position: relative;
  overflow: hidden;
  background: #1f2a3d;
}
.home-feature__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
.home-feature__container {
  display: block;
}
.home-feature__description {
  padding: 24px;
  color: #1f2a3d;
  font-size: 24px;
  font-weight: 700;
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 2;
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}
.home-feature__clear {
  clear: both;
  border: none;
  margin: 0;
}

@media (max-width: 767px) {
  .home-feature {
    margin: -24px -24px 0;
  }
  .home-feature__description {
    padding: 48px 24px;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.9);
  }
  .home-feature__description .more {
    text-shadow: none;
  }
  .home-feature__title {
    margin-bottom: 12px;
  }
  .home-feature__item:hover .home-feature__image,
  .home-feature__item:focus .home-feature__image {
    -webkit-transform: scale(1.07);
    -ms-transform: scale(1.07);
    transform: scale(1.07);
  }
  .home-feature__item:hover .home-feature__description,
  .home-feature__item:focus .home-feature__description {
    opacity: 0;
  }
}

@media (min-width: 768px) {
  .home-feature {
    margin: -48px -48px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .home-feature__item {
    width: 33.33%;
    -webkit-box-flex: 3;
    -ms-flex: 3 0;
    flex: 3 0;
    float: left;
    -webkit-transition: all 0.25s ease-out,
                        flex-grow 0.35s ease 0.5s,
                        -webkit-box-flex 0.35s ease 0.5s;
    transition: all 0.25s ease-out,
                flex-grow 0.35s ease 0.5s,
                -webkit-box-flex 0.35s ease 0.5s;
    transition: all 0.25s ease-out,
                flex-grow 0.35s ease 0.5s;
    transition: all 0.25s ease-out,
                flex-grow 0.35s ease 0.5s,
                -webkit-box-flex 0.35s ease 0.5s,
                -ms-flex-positive 0.35s ease 0.5s;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }
  .home-feature__container {
    height: 400px;
  }
  .home-feature__description {
    width: 100%;
    min-height: 192px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 24px;
    left: 0;
    -webkit-transition: background 0.25s ease-out,
                        color 0.25s ease-out,
                        font-size 0.35s ease 0.5s,
                        text-shadow 0.25s ease-out,
                        padding 0.35s ease 0.5s;
    transition: background 0.25s ease-out,
                color 0.25s ease-out,
                font-size 0.35s ease 0.5s,
                text-shadow 0.25s ease-out,
                padding 0.35s ease 0.5s;
  }
  .home-feature__description .more {
    color: #1a3463;
  }
  .home-feature__description,
  .home-feature:hover .home-feature__description:nth-child(n) {
    font-size: 19px;
    color: #fff;
    background: #1a3d6d;
    background: rgba(26, 61, 109, 0.8);
    text-shadow: 0 0 2px #000;
  }
  .home-feature__item:first-child .home-feature__description,
  .home-feature__item:nth-child(n):hover .home-feature__description {
    font-size: 28px;
    color: #1a3d6d;
    background: #fff;
    background: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 2px #fff;
  }
  .home-feature:hover .home-feature__item {
    -webkit-box-flex: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
  }
  .home-feature__item:first-child,
  .home-feature__item:nth-child(n):hover {
    -webkit-box-flex: 5;
    -ms-flex-positive: 5;
    flex-grow: 5;
  }
}

@media (min-width: 960px) {
  .home-feature {
    height: 600px;
    margin-left: -120px;
    margin-right: -120px;
  }
  .content > .home-feature:first-child {
    margin-top: -228px;
  }
  .home-feature__item {
    margin: -80px 0;
    -webkit-transform: rotate(14.6deg);
    -ms-transform: rotate(14.6deg);
    transform: rotate(14.6deg);
  }
  .home-feature__container {
    margin: 0 -40%;
    height: 700px;
    -webkit-transform: rotate(-14.6deg);
    -ms-transform: rotate(-14.6deg);
    transform: rotate(-14.6deg);
  }
  .home-feature__item:first-child .home-feature__image {
    left: 20%;
  }
  .home-feature__item:last-child .home-feature__image {
    right: 20%;
  }
  .home-feature__description {
    bottom: 48px;
  }
  .home-feature__description,
  .home-feature:hover .home-feature__description:nth-child(n) {
    padding: 0 36% 0 18%;
  }
  .home-feature:hover .home-feature__item:first-child:not(:hover) .home-feature__description {
    padding-left: 35% !important;
  }
  .home-feature__item:first-child .home-feature__description,
  .home-feature__item:nth-child(n):hover .home-feature__description {
    padding: 0 30% 0 21%;
  }
  .home-feature__item:first-child .home-feature__description,
  .home-feature__item:first-child:hover .home-feature__description {
    padding-left: 34%;
  }
  .home-feature__item:last-child:hover .home-feature__description {
    padding-right: 34%;
  }
}

@media (min-width: 1280px) {
  .home-feature {
    height: 720px;
    margin-left: -135px;
    margin-right: -135px;
  }
  .content > .home-feature:first-child {
    margin-top: -180px;
  }
  .home-feature__item {
    margin: -110px 0;
  }
  .home-feature__container {
    height: 830px;
  }
  .home-feature__item:first-child,
  .home-feature__item:nth-child(n):hover {
    -webkit-box-flex: 4;
    -ms-flex-positive: 4;
    flex-grow: 4;
  }
  .home-feature__description,
  .home-feature:hover .home-feature__description:nth-child(n) {
    font-size: 24px;
  }
  .home-feature__item:first-child .home-feature__description,
  .home-feature__item:nth-child(n):hover .home-feature__description {
    font-size: 28px;
  }
  .home-feature__item:first-child .home-feature__description,
  .home-feature__item:first-child:hover .home-feature__description {
    padding-left: 30%;
  }
}

@media (min-width: 1520px) {
  .home-feature__item {
    margin: -160px 0;
  }
  .home-feature__container {
    height: 880px;
  }
}


.home-identity__title {
  color: #fff;
}
.home-identity .more {
  color: #1a3463;
}

@media (min-width: 768px) {
  .home-identity {
    text-align: center;
  }
}


.home-resources__logo {
  display: block;
  margin-bottom: 24px;
}
.home-resources__logo img {
  width: 195px;
}
.home-resources__description {
  text-align: justify;
}
.home-resources__more {
  text-align: center;
}

@media (max-width: 767px) {
  .home-resources__logo,
  .home-resources__description {
    min-height: 0 !important;
  }
}


/* ---------- =interior ---------- */

.page-title {
  color: #1f2a3d;
}
.page-title,
.page-title:last-child {
  margin-bottom: 24px;
}
.page-title small {
  display: block;
  margin-top: 6px;
  font-weight: 400;
  font-size: 0.45em;
  color: #525e65;
  opacity: 0.7;
  line-height: 24px;
}
.page-title small + small {
  margin-top: 0;
}

.interior-layout__main {
  margin-bottom: 24px;
}

@media (min-width: 960px) {
  .interior-layout__main {
    margin-bottom: 48px;
  }
  .interior-layout__nav,
  .interior-layout__aside {
    width: 30%;
    float: right;
    clear: right;
    overflow: hidden;
  }
  .interior-layout__main {
    width: 70%;
    float: left;
    padding-right: 48px;
  }
}


.interior-banner {
  margin: -24px -24px 24px;
  position: relative;
}
.interior-banner__image {
  text-align: center;
}
.interior-banner__image img {
  width: 100%;
}
.interior-banner__image .button {
  position: relative;
  z-index: 2;
}
.interior-banner__title {
  padding: 24px 24px 0;
}
.interior-banner__title h1,
.interior-banner__title h2,
.interior-banner__title h3 {
  color: #1a3d6d;
}

@media (max-width: 767px), (min-width: 960px) and (max-width: 1279px) {
  .interior-banner__image .button {
    margin-top: -40px;
  }
}

@media (min-width: 768px) {
  .interior-banner {
    margin: -48px -48px 24px;
  }
  .interior-banner__title {
    padding: 0 0 0 48px;
  }
}

@media (min-width: 768px) and (max-width: 959px), (min-width: 1280px) {
  .interior-banner__image .button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
  }
  .interior-banner__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 65%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    padding-right: 15%;
    background: #f5f5f5;
    background: rgba(245, 245, 245, 0.8);
    background: -webkit-linear-gradient(345.4deg, rgba(245, 245, 245, 0.8) 0, rgba(245, 245, 245, 0.8) 80%, transparent 80%);
    background: linear-gradient(104.6deg, rgba(245, 245, 245, 0.8) 0, rgba(245, 245, 245, 0.8) 80%, transparent 80%);
  }
  .interior-banner__title h1,
  .interior-banner__title h2,
  .interior-banner__title h3 {
    margin: 0;
  }
}

@media (min-width: 960px) {
  .content > .interior-banner:first-child {
    margin-top: -228px;
  }
}

@media (min-width: 960px) and (max-width: 1279px) {
  .interior-banner__image .button {
    margin-bottom: -24px;
  }
  .interior-banner__title {
    margin-top: 48px;
  }
}

@media (min-width: 1280px) {
  .content > .interior-banner:first-child {
    margin-top: -180px;
  }
  .interior-banner__image .button {
    margin-top: 64px;
  }
  .interior-banner__title {
    padding-top: 132px;
  }
}


/* simple image banners for dbf/foundation */
.banner {
  width: 100%;
}
.content > .banner:first-child {
  max-width: none;
  width: calc(100% + 48px);
  margin: -24px -24px 0;
}
@media (min-width: 768px) {
  .content > .banner:first-child {
    width: calc(100% + 96px);
    margin: -48px -48px 0;
  }
}


.breadcrumbs {
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 15px;
  margin-bottom: 24px;
}
.breadcrumbs a {
  color: #525e65;
  opacity: 0.9;
}
.breadcrumbs a:hover,
.breadcrumbs a:focus {
  color: #1a3463;
  opacity: 1;
}
.breadcrumbs__separator {
  display: inline-block;
  margin: 0 0.3em;
  opacity: 0.4;
}

@media (min-width: 768px) and (max-width: 959px), (min-width: 1280px) {
  .interior-banner + .interior-layout .breadcrumbs,
  .interior-banner + .page-bounds > .interior-layout .breadcrumbs {
    padding-top: 24px;
    padding-bottom: 24px;
    margin-top: -24px;
  }
}

@media (min-width: 1920px) {
  .breadcrumbs {
    box-shadow: -50vw 0 0 #fff, 50vw 0 0 #fff;
  }
  .interior-banner + .interior-layout .breadcrumbs,
  .interior-banner + .page-bounds > .interior-layout .breadcrumbs {
    margin-left: calc((100vw - 1920px) / -2);
    margin-right: calc((100vw - 1920px) / -2);
  }
}


.in-this-section {
  margin-bottom: 24px;
}
.in-this-section a {
  display: block;
  padding: 6px 0;
}
.in-this-section ul {
  list-style: none;
  margin: 0;
}
.in-this-section ul ul {
  display: none;
  padding-left: 24px;
}
.in-this-section ul ul a {
  font-size: 15px;
}
.in-this-section .fa-external-link-square-alt {
  font-size: 0.65em;
  position: relative;
  top: -0.4em;
}
.in-this-section .is-current > ul {
  display: block;
}
.in-this-section .is-current > a {
  color: #b6b4ce;
}

@media (max-width: 959px) {
  /* tg 2019-02-22 - remove from mobile display on client request */
  .in-this-section {
    display: none;
  }
  .in-this-section__toggle {
    display: block;
    width: 100%;
    margin-bottom: 24px;
    text-align: left;
  }
  .no-js .in-this-section__toggle {
    display: none;
  }
  .js .in-this-section > ul {
    display: none;
  }
  .js .in-this-section > ul.is-active {
    display: block;
    margin-top: 12px;
  }
}

@media (min-width: 960px) {
  .in-this-section {
    margin-bottom: 48px;
  }
  .in-this-section__toggle {
    display: none;
  }
  .interior-layout .in-this-section {
    margin-top: 6px;
  }
}


/*! ---------- =misc, =unique ---------- */

.list-filters {
  margin-bottom: 24px;
}
.list-filters__content {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -6px;
}
.list-filters__content > div {
  /* content blocks inside the drop area */
  flex-basis: 100%;
  padding-left: 6px;
  padding-right: 6px;
}
.list-filters__content .button {
  flex: 1 1 185px;
  margin: 12px 6px 0;
  white-space: nowrap;
}
.list-filters__content .button .fa,
.list-filters__content .button .fas,
.list-filters__content .button .fab {
  margin-left: 0.5em;
}

@media (min-width: 768px) {
  .list-filters {
    margin-bottom: 48px;
  }
  .list-filters__content .button {
    /*flex: 1 0 28%;*/
  }
}

@media (min-width: 1280px) {
  .list-filters__content .button {
    /*flex: 1 0 10%;*/
  }
}


.timeline {
  position: relative;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.timeline::before {
  content: '';
  display: block;
  width: 4px;
  position: absolute;
  left: 50%;
  margin-left: -2px;
  top: 0;
  bottom: 0;
  background: #ddd;
}
.timeline::after {
  content: '';
  display: table;
  clear: both;
}
.timeline__item {
  width: 50%;
  margin-top: 24px;
}
.timeline__item:first-child,
.timeline__separator + .timeline__item {
  margin-top: 0;
}
.timeline__item--left {
  padding-right: 24px;
  float: left;
  clear: left;
}
.timeline__item--right {
  padding-left: 24px;
  float: right;
  clear: right;
}
.timeline__item--nudge {
  margin-top: 72px;
}
.timeline__date {
  display: block;
  padding: 12px 24px;
  color: #fff;
  background: #1a3d6d;
  font-weight: 700;
  position: relative;
}
.timeline__date::before,
.timeline__date::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  background: #1a3d6d;
}
.timeline__date::before {
  /* horizontal line */
  width: 24px;
  height: 3px;
  margin-top: -1px;
}
.timeline__date::after {
  /* point on timeline */
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border-radius: 100%;
}
.timeline__item--left .timeline__date::before {
  left: 100%;
}
.timeline__item--left .timeline__date::after {
  right: -32px;
}
.timeline__item--right .timeline__date::before {
  right: 100%;
}
.timeline__item--right .timeline__date::after {
  left: -32px;
}
.timeline__description {
  padding: 24px;
  /*margin-bottom: 24px;*/
  border: 1px solid #d8d8d8;
  border-top-width: 0;
  /*font-size: 15px;*/
  background: #fff;
}
.timeline__image {
  margin-bottom: 12px;
}
.timeline__separator {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 6em;
  height: 6em;
  padding: 0 0.2em;
  margin: 0 auto 72px;
  font-size: 24px;
  border: 4px solid #fff;
  border-radius: 100%;
  text-align: center;
  clear: both;
  background: #ddd;
  word-wrap: break-word;
  hyphens: auto;
  position: relative;
  top: 36px;
  z-index: 2;
}
.timeline__separator:first-child {
  margin-bottom: 36px;
  top: 0;
}


.site-map {
  list-style: none;
  margin: 0;
}
.site-map::after {
  content: '';
  display: table;
  clear: both;
}
.site-map > li {
  margin-bottom: 48px;
}
.site-map > li > a {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
}

@media (min-width: 768px) and (max-width: 959px) {
  .site-map > li {
    float: left;
    width: 50%;
  }
  .site-map > li:nth-child(2n - 1) {
    clear: left;
  }
}

@media (min-width: 960px) {
  .site-map > li {
    float: left;
    width: 33%;
  }
  .site-map > li:nth-child(3n - 2) {
    clear: left;
  }
}


/*! ---------- =event microsites ---------- */

.event-feature {
  position: relative;
  margin: 0 -24px;
  overflow: hidden;
  z-index: 2;
}
.event-feature::after {
  content: '';
  display: table;
  clear: both;
}
.content > .event-feature:first-child {
  margin-top: -24px;
}
.event-feature__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.event-feature__overlay {
  padding: 48px 24px 96px;
  position: relative;
  z-index: 2;
}
.event-feature__details {
  padding: 6px;
  margin: -48px 0 24px;
  border: 1px solid rgba(0,0,0,0.15);
  text-align: center;
  background: #fff;
  position: relative;
  z-index: 3;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.event-feature__meta {
  font-size: 29px;
  line-height: 36px;
  font-weight: 300;
  color: #1f2a3d;
}

@media (max-width: 767px) {
  .event-feature__details {
    padding-top: 18px;
  }
  .event-feature__meta {
    margin-bottom: 12px;
  }
  .event-feature__countdown {
    margin-bottom: 24px;
  }
}

@media (min-width: 768px) {
  .event-feature {
    margin: 0 -48px;
  }
  .content > .event-feature:first-child {
    margin-top: -48px;
  }
  .event-feature__overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
    padding: 72px 48px 120px;
    margin-left: 5vw;
    float: left;
  }
  .event-feature__details {
    clear: both;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: -48px;
  }
  .event-feature__meta,
  .event-feature__countdown,
  .event-feature__cta {
    flex-grow: 1;
  }
  .event-feature__cta .button {
    font-size: 22px;
    font-weight: 700;
  }
}

@media (min-width: 768px) and (max-width: 959px) {
  .event-feature__details {
    margin-top: -72px;
    padding-top: 12px;
  }
  .event-feature__meta,
  .event-feature__countdown {
    flex-basis: 50%;
    margin-bottom: 12px;
  }
}

@media (min-width: 960px) {
  .event-feature__overlay {
    min-height: 500px;
  }
  .event-feature__meta,
  .event-feature__countdown,
  .event-feature__cta {
    flex-basis: 33.3%;
  }
  .event-feature__meta {
    text-align: left;
    padding-left: 18px;
  }
  .event-feature__countdown {
    padding: 0 24px;
  }
  .event-feature__cta > .button {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

@media (min-width: 1280px) {
  .event-feature__meta {
    padding-left: 42px;
  }
}

@media (min-width: 1520px) {
  .event-feature__overlay {
    min-height: 550px;
  }
}


.event-nav {
  margin: 0 -24px 24px;
  padding: 12px 0 24px;
  background: #1a3d6d;
  color: #fff;
  position: relative;
  z-index: 1;
}
.event-feature + .page-bounds + .event-nav {
  margin-top: -24px;
}
.event-feature + .page-bounds + .event-nav::before {
  content: '';
  display: block;
  height: 200px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  background: inherit;
}
.event-nav ul {
  list-style: none;
  margin: 0;
}
.event-nav a {
  display: block;
  padding: 12px 24px;
  font-size: 20px;
  color: #fff;
}
.event-nav a:hover,
.event-nav a:focus,
.event-nav li:hover > a {
  color: #1a3463;
}
.event-nav ul ul a {
  font-size: 17px;
}
.event-nav .is-current > a {
  color: #1a3463;
}
.event-nav .fa-chevron-down {
  margin-left: 0.4em;
}

@media (max-width: 959px) {
  .event-nav ul ul {
    display: none;
    padding-left: 24px;
  }
  .event-nav .is-current > ul {
    display: block;
  }
  .event-nav ul ul a {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}

@media (min-width: 768px) and (max-width: 959px), (min-width: 1280px) {
  .interior-banner + .event-nav {
    margin-top: -24px;
  }
}
@media (min-width: 960px) and (max-width: 1279px) {
  .interior-banner + .event-nav {
    margin-top: 48px;
  }
}

@media (min-width: 768px) {
  .event-nav {
    margin: 0 -48px 48px;
    padding: 0 36px;
  }
  .event-nav {
    padding: 24px 12px;
  }
}

@media (min-width: 960px) {
  .event-nav {
    padding: 0 24px;
  }
  .event-nav > ul {
    display: flex;
    text-align: center;
  }
  .event-nav > ul > li {
    display: inline-block;
    position: relative;
    flex-grow: 1;
  }
  .event-nav > ul > li > a {
    padding: 36px 6px;
  }
  .event-nav > ul > .has-children > a::before {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    position: absolute;
    bottom: -14px;
    left: 50%;
    margin-left: -10px;
    background: #2c384c;
    -webkit-transform: scaleY(0.33) rotate(-45deg);
    -ms-transform: scaleY(0.33) rotate(-45deg);
    transform: scaleY(0.33) rotate(-45deg);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: opacity 0.15s ease-out, visibility 0s linear 0.15s, z-index 0s linear 0.15s;
    transition: opacity 0.15s ease-out, visibility 0s linear 0.15s, z-index 0s linear 0.15s;
  }
  .event-nav > ul > li > ul {
    width: 100%;
    min-width: 15em;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 12px 0;
    text-align: left;
    background: #2c384c;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.15s ease-out;
  }
  .event-nav > ul > li:hover > ul {
    visibility: visible;
    opacity: 1;
    z-index: 2;
  }
  .event-nav > ul > li > ul > li > a:hover {
    background: rgba(0,0,0,0.1);
  }
  .event-nav > ul > .has-children:hover > a::before {
    opacity: 1;
    visibility: visible;
    z-index: 101;
    -webkit-transition: opacity 0.1s ease-out 0.5s, z-index 0s linear 0.5s, visibility 0s linear 0.5s;
    transition: opacity 0.1s ease-out 0.5s, z-index 0s linear 0.5s, visibility 0s linear 0.5s;
  }
}

@media (min-width: 1180px) {
  .event-nav > ul > li > a {
    padding: 36px 24px;
  }
}


/*! ---------- =print ---------- */

@media print {
  .page-header__toggle,
  .header-search,
  .header-utility,
  .header-nav,
  .in-this-section,
  .footer-logo,
  .footer-social,
  .footer-utility,
  .home-feature,
  .breadcrumbs,
  .share-buttons,
  .truncator-expand {
    display: none !important;
  }

  body {
    background: #fff;
  }

  @page {
    margin: 0.5in;
  }
  @page :first {
    margin-top: 1in;
  }
  @page :last {
    margin-bottom: 1in;
  }

  .page-bounds {
    max-width: 100%;
  }

  .page-header,
  .content,
  .page-footer {
    padding-left: 0;
    padding-right: 0;
  }
  h1, h2, h3, h4 {
    page-break-after: avoid;
  }

  blockquote, img, table, pre {
    page-break-inside: avoid;
  }

  ul, ol, dl {
    page-break-before: avoid;
  }

  .header-logo {
    float: none;
    max-width: 150px;
    margin: 0 auto;
    padding: 0;
  }

  .page-footer {
    border-top: 1px solid #fff;
  }

  .footer-contact {
    text-align: center;
  }

  .interior-layout__title,
  .interior-layout__nav,
  .interior-layout__main,
  .interior-layout__aside {
    float: none;
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .interior-layout__aside {
    border-top: 1px solid #d8d8d8;
    padding-top: 48px;
  }

  .page-title {
    text-align: center;
  }

  .content a[href]:not([href^="#"]) {
    word-wrap: break-word;
    box-shadow: 0 2px 0 #1a3d6d;
    color: #525e65;
    font-weight: 700;
  }
  .content a[href]:not([href^="#"])::after {
    content: " (" attr(href) ") ";
    font-size: 0.85em;
    color: #697881;
  }

  .tabs__pane {
    display: block !important;
  }

  .accordion__content {
    max-height: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  [data-truncate-to] {
    max-height: none !important;
    overflow: visible !important;
  }

  [data-truncate-to*="item"] > * {
    display: initial !important;
  }
}


/* Pop Up */


#ac-wrapper {
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1750px;
   background: rgba(0,0,0,0.8);
   z-index: 9990;
}

#ac-wrapper img {
  text-align: center;
  margin: 0 auto;
}

#ac-wrapper .section-blue-container {
  background: #365784;
  max-height: none;
  color: #fff !important;
  padding: 42px 15px;
  border: none;
  text-align: center;
}

#ac-wrapper .countdown__label {
opacity: 1.0;
}

#ac-wrapper button {
  color: #1c4561;
  font-size: 18px !important;
  position: absolute;
  top: 26%;
  right: 27%;
   z-index: 1010;
}

#popup  .button.reversed.button--cta {
  font-size: 18px !important;
}

#popup {
  color: #1c4561 !important;
  position:absolute;
  width: 50%;
  top: 25px;
  left:  25%;
  right:  25%;
  background: #365784;
  z-index: 1001;
  border: none;
}

 #ac-wrapper .button.reversed.button--cta {
  margin-bottom: 15px;
 }


 .is-now {
  margin-top: 10px;
  margin-bottom:  20px;
 }

 .pop-text {
  margin-top: 25px;
  margin-bottom: 25px;
 }


@media (max-width:719px) {

#ac-wrapper {
  width: 100%;
  position: absolute;
  height: 800%;
 }


#popup {
  position: relative;
  width: 98%;
  top: 10px;
  left:  0;
  right:  1%;
  background: none;
  z-index: 1001;
  overflow-y: scroll !important;
  -webkit-overflow-scrolling: touch;
}

#ac-wrapper .section-blue-container {
  max-height: none;
  color: #fff !important;
  padding: 10px 5px;
  border: none;
}

#popup  .button.reversed.button--cta {
  font-size: 14px !important;
}


 .is-now {
  font-size: 12px;
  display: block;
 }


.is-now {
  margin-top: 3px;
  margin-bottom:  7px;
 }

 .pop-text {
  margin-top: 15px;
  margin-bottom: 10px;
 }

 .pop-text p {
  margin-bottom: 7px;
}

#ac-wrapper .button.reversed.button--cta {
  padding:  2px 10px !important;
}

#popup button img {
  width: 20px;
  height: 20px;
}

 }

@media (min-width:1170px) {
#popup {
  top: 25%;
  width: 50%;
}

}

 .is-now {
  font-size: 16px;
  display: block;
}

.pop-bookmark {
  color: #afcd54;
}

#ac-wrapper img {
  max-width: 100%;
  height: auto;
}


/* ---------- =sitefinity ---------- */

.sys-template {
  display: none;
}

.sfContentBlock {
  margin-bottom: 24px;
}
.sfContentBlock:last-child {
  margin-bottom: 0;
}

/* For Solr debug */
.debug-url {
  background-color: #efe;
  border: 2px solid #2c2;
  padding:.5em;
  margin-bottom:.5em;
  word-wrap: break-word;
}

/* make page builder layout more friendly to edit */
.sfPageEditor .page-header,
.sfPageEditor .header-logo,
.sfPageEditor .page-header__content,
.sfPageEditor .header-meta,
.sfPageEditor .header-search,
.sfPageEditor .header-utility,
.sfPageEditor .header-nav,
.sfPageEditor .interior-banner,
.sfPageEditor .interior-banner__image,
.sfPageEditor .interior-banner__title,
.sfPageEditor .page-footer,
.sfPageEditor .footer-logo,
.sfPageEditor .footer-contact,
.sfPageEditor .footer-social,
.sfPageEditor .footer-utility,
.sfPageEditor .footer-copyright {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 0 20px !important;
  float: none !important;
  position: relative !important;
  left: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
}
.sfPageEditor .content {
  padding-top: 48px;
}

/* space form builder fields */
.sf-fieldWrp > input,
.sf-fieldWrp > select,
.sf-fieldWrp > textarea,
.sf-fieldWrp > div > input,
.sf-fieldWrp > div > select,
.sf-fieldWrp > div > textarea {
  margin-bottom: 20px !important;
}
.sf_colsIn > .sf-fieldWrp > input:last-child,
.sf_colsIn > .sf-fieldWrp > select:last-child,
.sf_colsIn > .sf-fieldWrp > textarea:last-child {
  margin-bottom: 0 !important;
}

.sfInlineEditingPageMenu .sfInlineEditingToggleLnk {
  z-index: 1001 !important;
}

.button.sf-fieldWrp {
  padding: 0;
}

.sf-fieldWrp button {
  padding: 12px 36px;
}



/* user-friendly tabs layout modules */
.sfPageEditor [data-edit-label]::before {
  content: '[' attr(data-edit-label) ']';
  font-size: 14px;
  opacity: 0.3;
}
.tabs.sf_cols {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.tabs__tab > .sf_colsIn, .tabs__pane > .sf_colsIn {
  margin: 0 !important;
}
.sfPageEditor .tabs--standard .tabs__tab {
  width: 100% !important;
  float: none !important;
}
.sfPageEditor .tabs.sf_cols .tabs__pane {
  display: block !important;
}

/* ---------- =Site Search ---------- */
.search-alt {
  padding: 5px 0 25px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
   position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.alternate-background--dark .tabs__pane  a.item-list__title {
   color: #1a3d6d !important;
}

.alternate-background--dark .tabs__pane  a.item-list__title:hover {
   color: #7aa132 !important;
} 

.alternate-background--dark .tabs__pane .item-list__date {
  color: #90969b !important;
}

.alternate-background--dark .tabs__pane .item-list__description {
  color: #656e73 !important;
}

.alternate-background--dark .tabs__pane, .alternate-background--dark .tabs__pane p {
  color: #656e73 !important;
}



/* ---------- =datepicker plugin ---------- */

.qs-datepicker-container{font-size:1rem;font-family:sans-serif;color:#000;position:absolute;width:15.625em;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;z-index:9001;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid grey;border-radius:.26392em;overflow:hidden;background:#fff;-webkit-box-shadow:0 1.25em 1.25em -.9375em rgba(0,0,0,.3);box-shadow:0 1.25em 1.25em -.9375em rgba(0,0,0,.3)}.qs-datepicker-container *{-webkit-box-sizing:border-box;box-sizing:border-box}.qs-datepicker-container.qs-centered{position:fixed;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.qs-datepicker-container.qs-hidden{display:none}.qs-datepicker .qs-overlay{position:absolute;top:0;left:0;background:rgba(0,0,0,.75);color:#fff;width:100%;height:100%;padding:.5em;z-index:1;opacity:1;-webkit-transition:opacity .3s;transition:opacity .3s;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.qs-datepicker .qs-overlay.qs-hidden{opacity:0;z-index:-1}.qs-datepicker .qs-overlay .qs-overlay-year{background:rgba(0,0,0,0);border:none;border-bottom:1px solid #fff;border-radius:0;color:#fff;font-size:.875em;padding:.25em 0;width:80%;text-align:center;margin:0 auto;display:block}.qs-datepicker .qs-overlay .qs-overlay-year::-webkit-inner-spin-button{-webkit-appearance:none}.qs-datepicker .qs-overlay .qs-close{padding:.5em;cursor:pointer;position:absolute;top:0;right:0}.qs-datepicker .qs-overlay .qs-submit{border:1px solid #fff;border-radius:.26392em;padding:.5em;margin:0 auto auto;cursor:pointer;background:hsla(0,0%,50.2%,.4)}.qs-datepicker .qs-overlay .qs-submit.qs-disabled{color:grey;border-color:grey;cursor:not-allowed}.qs-datepicker .qs-overlay .qs-overlay-month-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.qs-datepicker .qs-overlay .qs-overlay-month{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:33.33333%;cursor:pointer;opacity:.5;-webkit-transition:opacity .15s;transition:opacity .15s}.qs-datepicker .qs-overlay .qs-overlay-month.active,.qs-datepicker .qs-overlay .qs-overlay-month:hover{opacity:1}.qs-datepicker .qs-controls{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:0;flex-shrink:0;background:#d3d3d3;-webkit-filter:blur(0);filter:blur(0);-webkit-transition:-webkit-filter .3s;transition:-webkit-filter .3s;transition:filter .3s;transition:filter .3s,-webkit-filter .3s}.qs-datepicker .qs-controls.qs-blur{-webkit-filter:blur(5px);filter:blur(5px)}.qs-datepicker .qs-arrow{height:1.5625em;width:1.5625em;position:relative;cursor:pointer;border-radius:.26392em;-webkit-transition:background .15s;transition:background .15s}.qs-datepicker .qs-arrow:hover{background:rgba(0,0,0,.1)}.qs-datepicker .qs-arrow:hover.qs-left:after{border-right-color:#000}.qs-datepicker .qs-arrow:hover.qs-right:after{border-left-color:#000}.qs-datepicker .qs-arrow:after{content:"";border:.39062em solid rgba(0,0,0,0);position:absolute;top:50%;-webkit-transition:border .2s;transition:border .2s}.qs-datepicker .qs-arrow.qs-left:after{border-right-color:grey;right:50%;-webkit-transform:translate(25%,-50%);-ms-transform:translate(25%,-50%);transform:translate(25%,-50%)}.qs-datepicker .qs-arrow.qs-right:after{border-left-color:grey;left:50%;-webkit-transform:translate(-25%,-50%);-ms-transform:translate(-25%,-50%);transform:translate(-25%,-50%)}.qs-datepicker .qs-month-year{font-weight:700;-webkit-transition:border .2s;transition:border .2s;border-bottom:1px solid rgba(0,0,0,0);cursor:pointer}.qs-datepicker .qs-month-year:hover{border-bottom:1px solid grey}.qs-datepicker .qs-month-year:active:focus,.qs-datepicker .qs-month-year:focus{outline:none}.qs-datepicker .qs-month{padding-right:.5ex}.qs-datepicker .qs-year{padding-left:.5ex}.qs-datepicker .qs-squares{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.3125em;-webkit-filter:blur(0);filter:blur(0);-webkit-transition:-webkit-filter .3s;transition:-webkit-filter .3s;transition:filter .3s;transition:filter .3s,-webkit-filter .3s}.qs-datepicker .qs-squares.qs-blur{-webkit-filter:blur(5px);filter:blur(5px)}.qs-datepicker .qs-square{width:14.28571%;height:1.5625em;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;cursor:pointer;-webkit-transition:background .1s;transition:background .1s;border-radius:.26392em}.qs-datepicker .qs-square.qs-current{font-weight:700}.qs-datepicker .qs-square.qs-current span{text-decoration:underline}.qs-datepicker .qs-square.qs-active{background:#add8e6}.qs-datepicker .qs-square.qs-range-date-start:not(.qs-range-date-6){border-top-right-radius:0;border-bottom-right-radius:0}.qs-datepicker .qs-square.qs-range-date-middle{background:#d4ebf2}.qs-datepicker .qs-square.qs-range-date-middle:not(.qs-range-date-0):not(.qs-range-date-6){border-radius:0}.qs-datepicker .qs-square.qs-range-date-middle.qs-range-date-0{border-top-right-radius:0;border-bottom-right-radius:0}.qs-datepicker .qs-square.qs-range-date-end:not(.qs-range-date-0),.qs-datepicker .qs-square.qs-range-date-middle.qs-range-date-6{border-top-left-radius:0;border-bottom-left-radius:0}.qs-datepicker .qs-square.qs-disabled span{opacity:.2}.qs-datepicker .qs-square.qs-empty{cursor:default}.qs-datepicker .qs-square.qs-disabled{cursor:not-allowed}.qs-datepicker .qs-square.qs-day{cursor:default;font-weight:700;color:grey}.qs-datepicker .qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover{background:orange}.qs-datepicker .qs-event{position:relative}.qs-datepicker .qs-event:after{content:"";position:absolute;width:.46875em;height:.46875em;border-radius:50%;background:#07f;bottom:0;right:0}.qs-datepicker .qs-event.qs-disabled:after,.qs-datepicker .qs-event.qs-empty:after{background:#cce4ff}ƒ