@charset "UTF-8";

/*! ---------- =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%;
  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: #fff02a;
  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 ---------- */

body {
  font: 18px/24px "Roboto", 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: #034968;
  font-weight: 700;
}
h1 img,
h2 img,
h3 img,
h4 img,
h5 img,
h6 img {
  display: inline-block;
  vertical-align: middle;
}
h1 {
  font-size: 50px;
  line-height: 48px;
}
@media (max-width: 767px) {
  h1 {
    font-size: 38px;
  }
}
h2 {
  font-size: 38px;
  line-height: 36px;
}
h3 {
  font-size: 30px;
  line-height: 36px;
}
h4 {
  font-size: 26px;
}
h5 {
  font-size: 22px;
}

.section-title {
  padding-bottom: 24px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 36px !important;
  text-align: center;
}

.text-callout {
  max-width: 880px;
  margin: 72px auto;
  font-size: 22px;
  line-height: 36px;
  text-align: justify;
}
.content > .text-callout:first-child {
  margin-top: 24px;
}

@media (min-width: 768px) {
  .text-callout {
    font-size: 26px;
    line-height: 48px;
    text-align: center;
  }
}


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

body {
  background-color: #fff;
}

a {
  text-decoration: none;
  color: #0067a6;
}
a:hover,
a:focus {
  color: #ea148c;
}
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;
}
hr {
  background: #e5e5e5;
  height: 2px;
  margin-bottom: 24px;
}
.screenreader-only {
  opacity: 0.01;
  z-index: -1;
  position: absolute;
  pointer-events: none;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.margin {
  margin-bottom: 24px;
}
.margin-large {
  margin-bottom: 48px;
}
.margin-small {
  margin-bottom: 12px;
}
.margin-top {
  margin-top: 24px;
}
.margin-top-large {
  margin-top: 48px;
}
.margin-top-small {
  margin-top: 12px;
}
.no-margin {
  margin: 0!important;
}
.clear-row {
  clear: both;
}
.full-side-img {
  margin: 0 auto;
  width: 100%;
}

.more {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05ex;
  color: #034968;
}
.more .fa-arrow-right {
  margin-left: 0.3em;
  -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;
}
.more:hover .fa-arrow-right,
.more:focus .fa-arrow-right {
  -webkit-transform: translateX(0.2em);
  -ms-transform: translateX(0.2em);
  transform: translateX(0.2em);
}

.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 {
  opacity: 0.8;
}
pre + .note,
input + .note,
textarea + .note {
  margin-top: -12px;
}

.highlight {
  color: #1ca429;
}
.warn {
  color: #941;
}

figure {
  display: block;
  margin-bottom: 24px;
  border: 1px solid #f5f5f5;
  padding: 6px;
}
figcaption {
  display: block;
  padding: 6px 0;
  font-size: 15px;
  opacity: 0.8;
}

.button,
.form-buttons button,
.form-buttons a {
  display: inline-block;
  vertical-align: middle;
  padding: 12px 36px;
  border-radius: 3px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
  background: #0067a6;
  -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;
}
.form-buttons {
  margin-top: 20px;
}
.button:hover,
.button:focus,
.form-buttons button:hover,
.form-buttons button:focus,
.form-buttons a:hover,
.form-buttons a:focus {
  color: #fff;
  background: #00afec;
  -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--large {
  display: block;
  width: auto;
  padding: 18px 36px;
  max-width: 100%;
}
.button--large + .button--large {
  margin-left: 0;
  margin-top: 12px;
}
.button--small {
  padding: 6px 24px;
  font-size: 16px;
}
.button--highlight {
  color: #000;
  background: #fff02a;
  text-shadow: 0 0 2px #fff;
}
.button--highlight:hover,
.button--highlight:focus {
  color: #000;
  background: #ffee18;
}
.button--action {
  background: #ea148c;
}
.button--action:hover,
.button--action:focus {
  background: #ea0485;
}
.button--warn {
  background: #fff;
  color: #941;
  border: 2px solid #941;
}
.button--warn:hover,
.button--warn:focus {
  background: #fff;
  color: #941;
  border-color: #941;
}
.button--cancel,
.form-buttons a {
  font-size: 16px;
  font-weight: 400;
  color: #525e65;
  background: #fff;
  border: 1px solid #999;
}
.button--cancel:hover,
.button--cancel:focus,
.form-buttons a:hover,
.form-buttons a:focus {
  color: #0067a6;
  background: #fff;
  border-color: #0067a6;
}
.button--cta {
  padding: 18px 42px;
  border-width: 0;
  font-weight: 400;
  color: #fff !important;
  background-color: #034968;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
.button--cta:hover,
.button--cta:focus {
  background-color: #0a83c6;
}
.button--cta.button--highlight {
  background-color: #fff02a;
}
.button--cta.button--highlight:hover,
.button--cta.button--highlight:focus {
  background-color: #ffee18;
}
.button--cta.button--action {
  background-color: #ea148c;
}
.button--cta.button--action:hover,
.button--cta.button--action:focus {
  background-color: #ea0485;
}

.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;
}

blockquote {
  padding: 24px 0;
  margin: 24px 0;
  border: solid #00afec;
  border-width: 2px 0;
  font-size: 22px;
  line-height: 36px;
  font-weight: 300;
}
blockquote cite {
  display: block;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.8;
}
blockquote cite::before {
  content: '– ';
}
blockquote p + cite {
  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;
  }
}


.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: #0067a6;
  color: #fff;
}
.pagination .overview {
  font-style: italic;
  margin-right: 35px;
}


.content-box {
  padding: 24px;
  border: 2px solid #034968;
  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: #034968;
}
.content-box--highlight {
  border-color: #cfc108;
}
.content-box--highlight h1,
.content-box--highlight h2,
.content-box--highlight h3,
.content-box--highlight h4,
.content-box--highlight h5,
.content-box--highlight h6 {
  color: #cfc108;
}
.content-box--action {
  border-color: #d6087b;
}
.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: #d6087b;
}

@media (min-width: 768px) {
  .content-box--left,
  .content-box--right {
    max-width: 40%;
  }
  .content-box--left {
    float: left;
    margin-right: 24px;
  }
  .content-box--right {
    float: right;
    margin-left: 24px;
  }
}


.alternate-background {
  padding: 48px 24px;
  margin: 0 -24px 48px;
  background: #57595b;
  color: #fff;
}
.alternate-background h1,
.alternate-background h2,
.alternate-background h3,
.alternate-background h4,
.alternate-background h5,
.alternate-background h6 {
  color: #fff;
}
.alternate-background a {
  color: #00afec;
}
.alternate-background a:hover,
.alternate-background a:focus {
  color: #ea0485;
}
.alternate-background a.button,
.alternate-background a.button:hover,
.alternate-background a.button:focus,
.alternate-background a.button--action,
.alternate-background a.button--action:hover,
.alternate-background a.button--action:focus {
  color: #fff;
}
.alternate-background a.button--highlight,
.alternate-background a.button--highlight:hover,
.alternate-background a.button--highlight:focus {
  color: #000;
}

@media (min-width: 768px) {
  .alternate-background {
    padding: 48px;
    margin: 0 -48px 48px;
  }
}


.image-callout__image {
  min-height: 192px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

@media (max-width: 767px) {
  .image-callout__image {
    margin-bottom: 48px;
  }
  .image-callout__image img {
    max-height: 192px;
  }
}

@media (min-width: 768px) {
  .image-callout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .image-callout--reversed {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .image-callout__image {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    min-height: 480px;
    width: 50%;
    float: left;
    padding-right: 18px;
  }
  .image-callout--reversed .image-callout__image {
    float: right;
    padding-right: 0;
    padding-left: 18px;
  }
  .image-callout__image img {
    margin-left: 0;
  }
  .image-callout--reversed .image-callout__image img {
    margin-left: auto;
    margin-right: 0;
  }
  .image-callout__content {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    padding-left: 18px;
    overflow: hidden;
  }
  .image-callout--reversed .image-callout__content {
    padding-left: 0;
    padding-right: 18px;
  }
}


.quicklinks {
  list-style: none;
  margin: 0 -24px 48px;
}
.quicklinks:last-child {
  margin-bottom: 48px;
}
.quicklinks__link {
  display: block;
  min-height: 168px;
  position: relative;
  background: #000;
  color: #fff;
  overflow: hidden;
}
.quicklinks__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  opacity: 0.6;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.quicklinks__image {
  margin: 24px auto 12px;
}
.quicklinks__label {
  width: 100%;
  padding: 0 24px;
  position: absolute;
  bottom: 24px;
  left: 0;
  z-index: 3;
  text-align: center;
  font-weight: 700;
}
.quicklinks--standard .quicklinks__label {
  position: static;
  padding: 24px;
}
.quicklinks__label img {
  max-height: 36px;
  margin-bottom: 12px;
}
.quicklinks__link:hover,
.quicklinks__link:focus {
  color: #fff;
}
.quicklinks__link:hover .quicklinks__background,
.quicklinks__link:focus .quicklinks__background {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  opacity: 0.9;
}
.quicklinks--standard .quicklinks__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.quicklinks--simple .quicklinks__link,
.quicklinks--standard .quicklinks__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  -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;
  min-height: 192px;
  padding: 24px;
}
.quicklinks--simple .quicklinks__link,
.quicklinks--standard .quicklinks__link {
  background: #00afec;
}
.quicklinks--simple .quicklinks__link:hover,
.quicklinks--simple .quicklinks__link:focus,
.quicklinks--standard .quicklinks__link:hover,
.quicklinks--standard .quicklinks__link:focus {
  background: #0b93de;
}
.quicklinks--simple .quicklinks__link:hover .quicklinks__label,
.quicklinks--simple .quicklinks__link:focus .quicklinks__label {
  text-decoration: underline;
}
.quicklinks--simple .quicklinks__item:nth-child(2) .quicklinks__link,
.quicklinks--standard .quicklinks__item:nth-child(2) .quicklinks__link {
  background: #1588c2;
}
.quicklinks--simple .quicklinks__item:nth-child(2) .quicklinks__link:hover,
.quicklinks--simple .quicklinks__item:nth-child(2) .quicklinks__link:focus,
.quicklinks--standard .quicklinks__item:nth-child(2) .quicklinks__link:hover,
.quicklinks--standard .quicklinks__item:nth-child(2) .quicklinks__link:focus {
  background: #007bc6;
}
.quicklinks--simple .quicklinks__item:nth-child(3) .quicklinks__link,
.quicklinks--standard .quicklinks__item:nth-child(3) .quicklinks__link {
  background: #0067a6;
}
.quicklinks--simple .quicklinks__item:nth-child(3) .quicklinks__link:hover,
.quicklinks--simple .quicklinks__item:nth-child(3) .quicklinks__link:focus,
.quicklinks--standard .quicklinks__item:nth-child(3) .quicklinks__link:hover,
.quicklinks--standard .quicklinks__item:nth-child(3) .quicklinks__link:focus {
  background: #046895;
}
.quicklinks--simple .quicklinks__item:nth-child(4) .quicklinks__link,
.quicklinks--standard .quicklinks__item:nth-child(4) .quicklinks__link,
.quicklinks--alternate-colors .quicklinks__item:nth-child(2) .quicklinks__link {
  background: #034968;
}
.quicklinks--simple .quicklinks__item:nth-child(4) .quicklinks__link:hover,
.quicklinks--simple .quicklinks__item:nth-child(4) .quicklinks__link:focus,
.quicklinks--standard .quicklinks__item:nth-child(4) .quicklinks__link:hover,
.quicklinks--standard .quicklinks__item:nth-child(4) .quicklinks__link:focus,
.quicklinks--alternate-colors .quicklinks__item:nth-child(2) .quicklinks__link:hover,
.quicklinks--alternate-colors .quicklinks__item:nth-child(2) .quicklinks__link:focus {
  background: #046591;
}
.quicklinks--alternate-colors .quicklinks__item:nth-child(3) .quicklinks__link {
  background: #999;
}
.quicklinks--alternate-colors .quicklinks__item:nth-child(3) .quicklinks__link:hover,
.quicklinks--alternate-colors .quicklinks__item:nth-child(3) .quicklinks__link:focus {
  background: #8c8c8c;
}
.quicklinks--simple .quicklinks__date {
  font-weight: 900;
  font-size: 52px;
  line-height: 48px;
}
.quicklinks--simple .quicklinks__month {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 12px;
}
.quicklinks--simple .quicklinks__label {
  padding: 0;
  font-size: 38px;
  line-height: 48px;
  text-align: left;
  position: static;
}
.quicklinks--simple .quicklinks__date ~ .quicklinks__label,
.quicklinks--simple .quicklinks__month ~ .quicklinks__label {
  font-size: 22px;
  line-height: 24px;
}
.quicklinks--simple .quicklinks__description {
  margin-top: 12px;
  font-size: 16px;
}
.quicklinks--minimal .quicklinks__link,
.quicklinks--circles .quicklinks__link {
  background: transparent;
  color: #525e65;
}
.quicklinks--minimal .quicklinks__background {
  position: relative;
  max-width: 240px;
  margin: 0 auto 24px;
  background-size: contain;
  opacity: 1;
}
.quicklinks--minimal .quicklinks__background::before {
  content: '';
  display: block;
  padding-bottom: 100%;
}
.quicklinks--minimal .quicklinks__label {
  position: relative;
  font-size: 22px;
}
.quicklinks--minimal .quicklinks__description {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 50%;
  margin-top: -24px;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  z-index: 3;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
.quicklinks--minimal .quicklinks__link:hover .quicklinks__background,
.quicklinks--minimal .quicklinks__link:focus .quicklinks__background {
  opacity: 0.1;
}
.quicklinks--minimal .quicklinks__link:hover .quicklinks__description,
.quicklinks--minimal .quicklinks__link:focus .quicklinks__description {
  opacity: 1;
}
.quicklinks--circles .quicklinks__item {
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
.quicklinks--circles .quicklinks__link {
  width: 288px;
  height: 288px;
  margin: 0 auto 24px;
  border: 12px solid #6892a4;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  overflow: visible;
}
.quicklinks--circles .quicklinks__item:hover .quicklinks__link {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transition: all 0.18s ease-out;
  transition: all 0.18s ease-out;
}
.quicklinks--circles .quicklinks__link,
.quicklinks--circles .quicklinks__background,
.quicklinks--circles .quicklinks__label,
.quicklinks--circles .quicklinks__description {
  border-radius: 50%;
}
.quicklinks--circles .quicklinks__background,
.quicklinks--circles .quicklinks__label,
.quicklinks--circles .quicklinks__description {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
}
.quicklinks--circles .quicklinks__link:hover .quicklinks__background,
.quicklinks--circles .quicklinks__link:focus .quicklinks__background {
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
}
.quicklinks--circles .quicklinks__background {
  opacity: 1;
}
.quicklinks--circles .quicklinks__background::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(3, 73, 104, 0.8);
  z-index: 2;
}
.quicklinks--circles .quicklinks__label {
  top: 50%;
  margin-top: -12px;
  bottom: auto;
  color: #fff;
  z-index: 3;
}
.quicklinks--circles .quicklinks__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 36px 24px;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  color: #525e65;
  background: #cddbe1;
  z-index: 1;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
/*Truncate Homepage Events Description*/
.quicklinks--events .quicklinks__description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 470px) {
  .quicklinks--minimal,
  .quicklinks--circles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .quicklinks--minimal .quicklinks__item,
  .quicklinks--circles .quicklinks__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 0;
    flex: 1 0;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}

@media (min-width: 768px) {
  .quicklinks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -48px;
    margin-right: -48px;
  }
  .quicklinks__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 0;
    flex: 1 0;
  }
  .quicklinks--minimal .quicklinks__item,
  .quicklinks--circles .quicklinks__item {
    -ms-flex-preferred-size: 33.33%;
    flex-basis: 33.33%;
  }
  .quicklinks__link {
    min-height: 15vw;
  }
  .quicklinks__label {
    font-size: 22px;
  }
  .quicklinks--simple .quicklinks__link {
    min-height: 360px;
  }
}

@media (min-width: 960px) {
  .quicklinks--minimal .quicklinks__item {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
  }
  .quicklinks--minimal .quicklinks__label {
    padding-top: 12px;
    font-size: 26px;
  }
}

@media (min-width: 1600px) {
  .quicklinks__link {
    min-height: 10vw;
  }
}


.item-list {
  list-style: none;
  margin: 0;
}
.item-list:not(:last-child) {
  margin-bottom: 48px;
}
.item-list + .button {
  margin-top: -24px;
}
.item-list__item + .item-list__item {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}
.item-list__title {
  font-size: 19px;
  line-height: 24px;
  font-weight: 700;
  margin: 0;
}
.item-list__date {
  opacity: 0.7;
  margin: 12px 0 0;
}
.item-list__description {
  opacity: 0.85;
  margin: 6px 0 0;
}
.item-list__thumbnail {
  max-width: 33%;
  float: left;
  margin-right: 24px;
}
.item-list__thumbnail ~ .item-list__title,
.item-list__thumbnail ~ .item-list__date,
.item-list__thumbnail ~ .item-list__description {
  overflow: hidden;
}

.toggle-indicator {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  position: relative;
}
.toggle-indicator:first-child {
  margin-right: 12px;
}
.toggle-indicator:last-child {
  margin-left: 12px;
}
.toggle-indicator__piece {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
  -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: 2px;
  background: #0067a6;
  -webkit-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}
.toggle-indicator__piece--1 {
  margin-top: -7px;
}
.toggle-indicator__piece--3 {
  margin-top: 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: #ea148c;
}
.is-active .toggle-indicator__piece--2 {
  opacity: 0;
}
.is-active .toggle-indicator__piece--1,
.is-active .toggle-indicator__piece--3 {
  margin-top: -1px;
}
.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: 26px;
}
.share-buttons:not(:last-child) {
  margin-bottom: 24px;
}
.no-js .share-buttons {
  display: none;
}
.share-buttons__title {
  display: block;
  font-size: 16px;
  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 #999;
  text-align: left;
  color: #ea148c;
  font-weight: 700;
  font-size: 16px;
}
.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,
.image-callout:after,
.item-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.align-left {
  text-align: left;
}
.grid.align-right {
  text-align: right;
}
.grid--compact {
  margin-right: 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--compact {
    margin-right: -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"],
textarea,
select {
  display: block;
  width: 100%;
  padding: 9px 12px;
  margin: 0;
  border: 1px solid #e8e8e8;
  color: #525e65;
  color: rgba(82, 94, 101, 0.8);
  font: 16px/24px "Roboto", 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),
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,
textarea:required,
select:required {
  border-color: #c5d3d9;
}
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,
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,
textarea:focus,
select:focus {
  border-color: #0067a6;
  color: #525e65;
}
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: 15px;
  font-weight: 700;
  color: #034968;
  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: #034968;
}
label.required::after {
  content: '*';
  font-weight: 400;
}
label.input-validation-error {
  color: #941;
}
label.is-selected {
  color: #ea148c;
}
label.is-focused {
  color: #0067a6;
  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: 16px;
  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 #f5f5f5;
  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: #0067a6;
}
.tabs--standard .tabs__pane {
  border: 1px solid #f5f5f5;
  padding: 24px;
  display: none;
}
.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: #0067a6;
  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: 1375px) {
  .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 #f5f5f5;
  }
  .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: #999 #999 #f5f5f5;
  }
  .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 #999;
    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: 1376px) {
  .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 #f5f5f5;
    border-right-color: #999;
    box-shadow: inset 6px 0 0 #999;
    cursor: pointer;
  }
  .tabs--vertical .tabs__tab.is-active {
    background: #fff;
    border-color: #999 #fff #999 #999;
    box-shadow: inset 6px 0 0 #0067a6;
    cursor: default;
  }
  .tabs--vertical .tabs__pane {
    padding: 24px;
    background: #fff;
    border-left: 299px solid #fff;
    box-shadow: inset 0 0 0 1px #999;
  }
  .tabs--vertical .tabs__pane::after {
    content: '';
    display: table;
    clear: both;
    margin: 30px 0 -30px;
  }
}

@font-face {
  font-family: 'fontello';
  src: url("/ResourcePackages/SGIA/fontello.eot?52861302");
  src: url("/ResourcePackages/SGIA/fontello.eot?52861302#iefix") format("embedded-opentype"),
         url("/ResourcePackages/SGIA/fontello.woff2?52861302") format("woff2"),
         url("/ResourcePackages/SGIA/fontello.woff?52861302") format("woff"),
         url("/ResourcePackages/SGIA/fontello.ttf?52861302") format("truetype"),
         url("/ResourcePackages/SGIA/fontello.svg?52861302#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}


@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('/ResourcePackages/SGIA/fontello.svg?52861302#fontello') format('svg');
  }
}
*/

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; *//* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric *//* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size *//* font-size: 120%; *//* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect *//* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.accordion:not(:last-child) {
  margin-bottom: 48px;
}
.accordion + .accordion {
  margin-top: -42px;
}
.accordion__label {
  background: #034968;
  border: 1px solid #f1f1f1;
  color: #fff;
  cursor: pointer;
  display: block;
  font-weight: 600;
  font-size: 15px;
  overflow: hidden;
  padding: 12px;
}

.accordion__label h5 {
  color: #fff;} 
.accordion__label .icon-up-open-mini {
  float: right;
  padding-top: 8px;
}
.accordion__label .icon-up-open-mini {
  -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 {
  background: #034968;
  border-color: #000;
  color: #fff;
}
.accordion__label.is-active .icon-up-open-mini {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
    padding-bottom: 8px;
}
.accordion__label ~ .accordion__label {
  margin-top: 6px;
}
.accordion__label.is-empty {
  display: none;
}
.accordion__content {
  border: 2px solid #e6e6e6;
  border-top: none;
  padding: 24px 12px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  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__content .grid {
  margin-right: 0;
  padding: 24px;
}
.accordion__content .grid:nth-child(even) {
  background: #e6e6e6;
  margin-left: -12px;
  margin-right: -12px;
  padding: 12px 24px 12px 35px;
}
.accordion__content .grid:last-child {
  margin-bottom: -24px;
}
.accordion__content p {
  margin-bottom: 0;
}
.accordion__details-left {
  border-bottom: 1px solid #000;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
.accordion__details-center {
  padding: 0;
}
.accordion__details-right {
  border-top: 1px solid #000;
  margin-top: 1rem;
  padding-top: 1rem;
}

@media (min-width: 768px) {
  .accordion__label {
    font-size: 22px;
    padding: 12px 24px;
  }
  .accordion__details-left {
    border-bottom: 0;
    border-right: 1px solid #000;
    margin-bottom: 0;
    padding-bottom: 1rem;
    padding-right: 1rem;
  }
  .accordion__details-center {
    padding: 0 24px;
  }
  .accordion__details-right {
    border-left: 1px solid #000;
    border-top: 0;
    margin-top: 0;
    padding-left: 1rem;
    padding-top: 0;
  }
}




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

pre,
code {
  font-family: "Inconsolata", monospace;
  font-size: 16px;
  line-height: 24px;
}
pre {
  display: block;
  padding: 24px 12px;
  border: 1px solid #ebebeb;
  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: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #a3cde5;
  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: #fff;
}

.content {
  padding: 24px;
}

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


@media (min-width: 768px) {
  body {
    border-top: 175px solid #034968;
  }

  .content {
    padding: 48px;
  }
}


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

.page-header {
  padding: 0 24px;
  background: #034968;
  position: relative;
  z-index: 100;
}
.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;
}
.header-logo img {
  max-width: 200px;
}

.header-utility__list {
  list-style: none;
  margin: 0;
  display: inline-block;
}
.header-utility__item {
  display: inline-block;
}
.header-utility__item a,
.header-utility__item span {
  display: block;
  padding: 6px;
  color: #fff;
}
.header-utility__item span {
  font-style: italic;
  opacity: 0.65;
}

.header-search {
  position: absolute;
}
.header-search__trigger {
  display: block;
  color: #fff;
  padding: 24px;
}

.header-nav ul {
  list-style: none;
  margin: 0;
}
.header-nav li {
  position: relative;
}
.header-nav a {
  display: block;
  font-weight: 700;
  color: #fff;
}
.header-nav li li a {
  font-weight: 400;
}
.header-nav__toggle {
  display: none;
}

.page-search__container {
  position: relative;
}
.page-search__input {
  padding-right: 60px !important;
}
.page-search__submit {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 18px;
  color: #fff;
  background: #0067a6;
}
.page-search__submit:hover,
.page-search__submit:focus {
  background: #ea148c;
}
.js .page-search {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0 48px;
  background: #363738;
  background: rgba(0, 0, 0, 0.9);
  z-index: -1;
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
}
.js .page-search.is-active {
  z-index: 101;
  opacity: 1;
  pointer-events: all;
}
.js .page-search::before,
.js .page-search::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  position: absolute;
  top: 48px;
  right: 48px;
  background: rgba(255, 255, 255, 0.5);
}
.js .page-search::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.js .page-search::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.js .page-search__container {
  width: 100%;
  width: calc(100% - 96px);
  max-width: 432px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -24px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.js .page-search__input {
  padding-left: 0 !important;
  border-width: 0 0 2px 0;
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 22px;
}
.js .page-search__input:focus {
  color: #fff;
  border-color: #0067a6;
}
.js .page-search__submit {
  top: -2px;
  background: rgba(255, 255, 255, 0.05);
}
.js .page-search__submit:hover,
.js .page-search__submit:focus {
  background: #0067a6;
}


@media (max-width: 767px) {
  .page-header {
    width: 100%;
  }
  .page-header__toggle {
    position: absolute;
    right: -24px;
    top: 0;
    padding: 24px;
    font-size: 15px;
    color: #fff;
  }
  .page-header__toggle.is-active {
    color: #0067a6;
  }
  .js .page-header__toggle {
    display: block;
  }
  .page-header__toggle .toggle-indicator {
    top: -1px;
  }
  .page-header__toggle .toggle-indicator__piece::before {
    background: #fff;
  }
  .page-header__toggle.is-active .toggle-indicator__piece::before {
    background: #0067a6;
  }
  .page-header__content {
    width: 303.6px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    border-left: 1px solid rgba(0, 0, 0, 0.9);
    background: #363738;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }

  body {
    -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;
  }
  body.mobile-menu-open {
    -webkit-transform: translateX(-303.6px);
    -ms-transform: translateX(-303.6px);
    transform: translateX(-303.6px);
  }

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

  .header-search {
    top: 0;
    right: 36px;
  }

  .header-utility {
    padding: 18px 24px;
    text-align: center;
  }
  .header-utility__item {
    font-size: 16px;
  }

  .header-nav {
    border-top: 1px solid #999;
  }
  .header-nav a {
    padding: 12px 96px 12px 24px;
    border-bottom: 1px solid #999;
  }
  .header-nav li li a {
    padding-left: 48px;
    border-bottom-color: rgba(255, 255, 255, 0.2);
    font-size: 15px;
  }
  .header-nav li li li a {
    padding-left: 72px;
  }
  .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: 60px;
    height: 48px;
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
  }
  .header-nav__toggle:hover,
  .header-nav__toggle:focus {
    background: rgba(255, 255, 255, 0.1);
  }
  .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: #666;
    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: #0067a6;
    -webkit-transform: scaleX(0.6) rotateX(180deg);
    transform: scaleX(0.6) rotateX(180deg);
  }
}

@media (min-width: 768px) {
  .page-header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 48px;
    background: transparent;
  }

  .header-search {
    position: absolute;
    top: 24px;
    right: 380px;
  }
  .header-search__trigger {
    padding: 18px;
  }

  .header-utility {
    position: absolute;
    right: -18px;
    top: 24px;
  }
  .header-utility__item a,
  .header-utility__item span {
    padding: 18px 12px;
    font-size: 16px;
  }
  .header-utility__item a {
    opacity: 0.9;
  }
  .header-utility__item a:hover,
  .header-utility__item a:focus {
    opacity: 1;
    background: rgba(255,255,255,0.1);
  }

  /*mega
   * comments like this denote the old megamenu styles, removed in favor of a simple dropdown
   */
  .header-nav {
    clear: both;
    background: rgba(46, 47, 48, 0.8);
  }
  .header-nav::before,
  .header-nav::after {
    content: '';
    display: block;
    width: 48px;
    height: 72px;
    position: absolute;
    bottom: 0;
    background: inherit;
    z-index: 0;
  }
  .header-nav::before {
    left: 100%;
  }
  .header-nav::after {
    right: 100%;
  }
  .header-nav > ul,
  .header-nav__sf-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin: 0 -12px;
    text-align: center;
  }
  .header-nav > ul > li,
  .header-nav__sf-list > li {
    display: inline-block;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    /*mega
    position: static;
    */
    position: relative;
  }
  .header-nav > ul > li > a,
  .header-nav__sf-list > li > a {
    padding: 24px 0;
    position: relative;
  }
  .header-nav > ul > li > a::before,
  .header-nav__sf-list > li > a::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: -11px;
    left: 50%;
    margin-left: -10px;
    -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;
    /*mega
    background: #fff;
    border: solid #034968;
    border-width: 5px 5px 0 0;
    */
    background: #0067a6;
  }
  .header-nav > ul > li > ul,
  .header-nav__sf-list > li > ul {
    position: absolute;
    text-align: left;
    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;
    /*mega
    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;
    left: -48px;
    right: -48px;
    top: 100%;
    padding: 36px 48px;
    background: #fff;
    box-shadow: 1279px 0 0 #fff, -1279px 0 0 #fff
    */
    min-width: 14em;
    top: 100%;
    left: 0;
    padding: 12px 0;
    background: #0067a6;
  }
  .header-nav > ul > li:last-child > ul,
  .header-nav__sf-list > li:last-child > ul {
    left: auto;
    right: 0;
  }
  .header-nav > ul > li > ul > li,
  .header-nav__sf-list > li > ul > li {
    /*mega
    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);
    margin-bottom: 24px;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    */
  }
  .header-nav > ul > li > ul > li > a,
  .header-nav__sf-list > li > ul > li > a {
    line-height: 36px;
    /*mega
    color: #0067a6;
    */
    padding: 6px 24px;
    color: #fff;
  }
  .header-nav > ul > li > ul > li > ul,
  .header-nav__sf-list > li > ul > li > ul {
    display: none;
    /*mega
    margin-bottom: 24px;
    padding-top: 12px;
    border-top: 1px solid #f5f5f5;
    */
  }
  .header-nav > ul > li > ul > li > ul a,
  .header-nav__sf-list > li > ul > li > ul a {
    color: #525e65;
    font-size: 16px;
  }
  .header-nav > ul > li > ul a:hover,
  .header-nav > ul > li > ul a:focus,
  .header-nav__sf-list > li > ul a:hover,
  .header-nav__sf-list > li > ul a:focus {
    /*mega
    color: #0067a6;
    */
    color: #00afec;
    background: rgba(0,0,0,0.3);
  }
  .header-nav > ul > li:hover > a,
  .header-nav__sf-list > li:hover > a {
    /*mega
    color: #0067a6;
    */
    color: #1588c2;
  }
  .header-nav > ul > li:hover > a::before,
  .header-nav__sf-list > 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__sf-list > 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;
  }
  /*mega
  .header-nav > ul > li:hover > ul > li,
  .header-nav__sf-list > 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.32s, 0.32s;
    transition-delay: 0.32s, 0.32s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(2) {
    -webkit-transition-delay: 0.34s, 0.34s;
    transition-delay: 0.34s, 0.34s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(3) {
    -webkit-transition-delay: 0.36s, 0.36s;
    transition-delay: 0.36s, 0.36s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(4) {
    -webkit-transition-delay: 0.38s, 0.38s;
    transition-delay: 0.38s, 0.38s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(5) {
    -webkit-transition-delay: 0.4s, 0.4s;
    transition-delay: 0.4s, 0.4s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(6) {
    -webkit-transition-delay: 0.42s, 0.42s;
    transition-delay: 0.42s, 0.42s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(7) {
    -webkit-transition-delay: 0.44s, 0.44s;
    transition-delay: 0.44s, 0.44s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(8) {
    -webkit-transition-delay: 0.46s, 0.46s;
    transition-delay: 0.46s, 0.46s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(9) {
    -webkit-transition-delay: 0.48s, 0.48s;
    transition-delay: 0.48s, 0.48s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(10) {
    -webkit-transition-delay: 0.5s, 0.5s;
    transition-delay: 0.5s, 0.5s;
  }
  */
  .header-nav .is-current > a {
    color: #00afec;
    background: rgba(0,0,0,0.3);
  }

  body.is-scrolled .page-header {
    position: fixed;
    -webkit-transform: translateY(-104px);
    -ms-transform: translateY(-104px);
    transform: translateY(-104px);
  }
}


@media (min-width: 960px) {
  .header-search {
    top: auto;
    bottom: 0;
    right: -24px;
    z-index: 3;
  }
  .header-search__trigger {
    padding: 24px;
  }

  .header-nav > ul {
    padding-right: 72px;
  }
}

@media (min-width: 1376px) {
  /*! extend bar to screen edges */
  .header-nav::before,
  .header-nav::after {
    width: calc((100vw - 1280px) / 2);
  }
}


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

.page-footer {
  padding: 0 24px;
  color: #fff;
  background: #363738;
}
.page-footer .page-bounds {
  padding: 48px 0;
  position: relative;
}

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

.footer-social {
  margin-bottom: 24px;
}
.footer-social__icon {
  display: inline-block;
  padding: 12px 9px;
  color: #fff;
}
.footer-social__icon:hover,
.footer-social__icon:focus {
  color: #0067a6;
}

.footer-utility {
  margin-bottom: 24px;
}
.footer-utility__list {
  list-style: none;
  margin: 0;
}
.footer-utility__item {
  display: inline-block;
}
.footer-utility__item + .footer-utility__item {
  margin-left: 24px;
}
.footer-utility a {
  color: #f5f5f5;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
}
.footer-utility a:hover,
.footer-utility a:focus {
  color: #0067a6;
}

.footer-copyright {
  font-size: 15px;
  opacity: 0.5;
}


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

@media (min-width: 768px) {
  .page-footer {
    padding: 0 48px;
  }
  .page-footer .page-bounds {
    padding: 72px 0 0;
  }

  .footer-logo {
    float: left;
  }
  .footer-logo a {
    padding: 24px 0;
  }
  .footer-logo img {
    max-height: 48px;
  }

  .footer-social {
    position: absolute;
    right: 0;
    top: 78px;
  }

  .footer-utility {
    position: absolute;
    right: 0;
    top: 126px;
    text-align: right;
  }

  .footer-copyright {
    clear: both;
    padding: 0 0 24px;
    text-align: center;
  }
}


@media (min-width: 960px) {
  .footer-social {
    top: 96px;
  }

  .footer-utility {
    top: 108px;
    right: 240px;
  }
}


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

.home-feature {
  position: relative;
  /*! animation */
}
.home-feature__slides {
  list-style: none;
  margin: 0;
}
.home-feature__slide {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 48px 24px 72px;
  color: #fff;
  background: #000;
  z-index: 1;
}
.home-feature__slide:first-child {
  position: relative;
}
.home-feature__slide.is-active {
  z-index: 2;
}
.home-feature__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  z-index: 1;
  opacity: 0.4;
}
.home-feature__slide-bounds {
  position: relative;
  z-index: 2;
}
.home-feature__title {
  color: #fff;
  font-size: 50px;
  font-weight: 900;
}
.home-feature__title img {
  max-width: 100%;
}
.home-feature__subtitle {
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
  text-transform: uppercase;
  letter-spacing: 0.05ex;
}
.home-feature__cta {
  font-size: 22px;
  font-weight: 700;
  color: #00afec;
  text-transform: uppercase;
  letter-spacing: 0.05ex;
}
.home-feature__nav {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 12px;
  text-align: center;
  z-index: 3;
}
.home-feature__nav-dot {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-clip: content-box !important;
  background: rgba(255, 255, 255, 0.5);
  border: 6px solid transparent;
  border-radius: 50%;
}
.home-feature__nav-dot:hover,
.home-feature__nav-dot:focus {
  background: #fff;
  border-width: 8px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}
.home-feature__nav-dot.is-active {
  background: #0067a6;
}
.home-feature__nav-dot.is-active:hover,
.home-feature__nav-dot.is-active:focus {
  box-shadow: 0 0 0 2px rgba(7, 161, 246, 0.8);
}
.home-feature__arrow {
  padding: 48px 12px;
  position: absolute;
  top: 50%;
  color: #fff;
  font-size: 26px;
  opacity: 0.65;
  z-index: 3;
}
.home-feature__arrow:hover,
.home-feature__arrow:focus {
  color: #0067a6;
  opacity: 1;
}
.home-feature__arrow--previous {
  left: 0;
}
.home-feature__arrow--next {
  right: 0;
}
.js .home-feature__title,
.js .home-feature__subtitle,
.js .home-feature__cta,
.js .home-feature__action {
  -webkit-transform: translateX(40px);
  -ms-transform: translateX(40px);
  transform: translateX(40px);
  opacity: 0;
  -webkit-transition: all 0.45s ease-out;
  transition: all 0.45s ease-out;
}
.home-feature__slide.is-active .home-feature__title,
.home-feature__slide.is-active .home-feature__subtitle,
.home-feature__slide.is-active .home-feature__cta,
.home-feature__slide.is-active .home-feature__action {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.home-feature__slide.is-active .home-feature__title {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}
.home-feature__slide.is-active .home-feature__subtitle {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.home-feature__slide.is-active .home-feature__cta {
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
}
.home-feature__slide.is-active .home-feature__action {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

@media (max-width: 767px) {
  .home-feature__arrow {
    display: none;
  }
}

@media (min-width: 768px) {
  .home-feature {
    margin-top: -175px;
  }
  .home-feature__slide {
    padding: 295px 48px 120px;
  }
  .home-feature__title {
    font-size: 60px;
  }
  .home-feature__subtitle {
    font-size: 30px;
  }
  .home-feature__cta {
    font-size: 30px;
    font-weight: 400;
  }
}

@media (min-width: 960px) {
  .home-feature__title {
    font-size: 80px;
    line-height: 72px;
  }
  .home-feature__title img {
    margin-top: -70px;
  }
}


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

.page-title {
  color: #034968;
}

.interior-banner {
  min-height: 192px;
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
  background: #1b323c;
}
.interior-banner__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0.85;
}
body:not(.sfPageEditor) .interior-banner__image {
  pointer-events: none;
}
.interior-banner__image img {
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.interior-banner__content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.interior-banner__content h1,
.interior-banner__content h2,
.interior-banner__content h3,
.interior-banner__content h4,
.interior-banner__content h5,
.interior-banner__content h6,
.interior-banner__content p,
.interior-banner__content .page-title {
  margin-bottom: 12px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .interior-banner {
    min-height: 480px;
    margin-top: -175px;
    padding: 295px 48px 120px;
  }
  .interior-banner__image {
    opacity: 0.55;
  }
  .interior-banner__image::before {
    content: '';
    display: block;
    height: 55%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    background-image: -webkit-linear-gradient(top, rgba(30, 40, 48, 0.8) 20%, rgba(30, 40, 48, 0) 100%);
    background-image: linear-gradient(to bottom, rgba(30, 40, 48, 0.8) 20%, rgba(30, 40, 48, 0) 100%);
    z-index: 2;
  }
  .interior-banner__content {
    font-size: 22px;
  }
  .interior-banner__content h1 {
    font-size: 60px;
  }
}

@media (min-width: 1376px) {
  .interior-banner {
    min-height: 600px;
    padding: 355px 48px 180px;
  }
}


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

@media (min-width: 960px) {
  .interior-layout__nav,
  .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;
  }
}


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




.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: 16px;
 
}
.in-this-section > ul > li:not(.is-current) > ul {
  display: none;
}
.in-this-section > ul > .is-current > ul {
  margin-top: 12px;
  border-top: 1px solid #e8e8e8;
  padding-top: 6px;
  margin-bottom: 12px;
}
.in-this-section .is-current > ul {
  display: block;
}
.in-this-section .is-current > a {
  font-weight: 700;
  color: #034968;
}

@media (max-width: 959px) {
  .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__toggle {
    display: none;
  }
  .interior-layout .in-this-section {
    margin-top: -6px;
  }
}

/*! ---------- =speakers ---------- */
.container-speakers-list--item .speaker-photo {
  margin-bottom: 1.5rem;
}
.container-speakers-list--item h5 {
  margin-bottom: 0.5rem;
}
.container-speakers-list--item p {
  margin-bottom: 0;
}

/* ---------- =resource search page ---------- */
#SearchRefineDestination {
  margin-bottom: 30px;
}

@media (min-width: 960px) {
  #SearchRefineDestination {
    clear: both;
    margin-bottom: 50px;
  }
  #SearchRefineDestination input {
    float: left;
    margin-left: 10px;
    /*width: calc(95%/3);*/
  }
  #SearchRefineDestination .accordion + .accordion {
    margin-top: 0;
  }
}
#SearchRefineDestination .accordion li.item-list__item {
  list-style: none;
  padding-left: 12px;
}

/*.item-list__resources {}*/
.item-list__resources-item + .item-list__resources-item {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}
.item-list__resources .item-list__thumbnail {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  float: none;
  height: 200px;
  margin-bottom: 24px;
  max-height: 200px;
  max-width: 100%;
}
.item-list__resources-item .item-list__title {
  font-size: 22px;
  line-height: 26px;
  overflow-wrap: break-word;
}
.item-list__resources .item-list__description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.button-download {
  margin-top: 12px;
}
.button-download::before {
  content: '\f019';
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 12px;
}

/*@media (max-width: 959px) {
  .item-list__resources .item-list__thumbnail img {
      max-width: 60%;
  }
}*/

/*Dropdown*/
.search-dropdown,
.search-facets {
  position: relative;
  display: inline-block;
}
.search-dropdown .button-dropdown {
  background: rgba(0,0,0,0);
  border-bottom: 1px solid #757575;
  border-radius: 0;
  color: #757575;
  font-size: 20px;
  margin: 0 6px;
  opacity: 0.8;
  position: relative;
}
.search-dropdown .button-dropdown::before {
  color: #c2c2c2;
  content: '\f0dc';
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  font-weight: 900;
  /*margin-left: 12px;*/
  position: absolute;
  right: 12px;
}
.search-dropdown .button-dropdown:hover,
.search-dropdown .button-dropdown:focus {
  box-shadow: none;
  opacity: 1;
  transform: none;
}
.search-dropdown__content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  left: 10px;
  min-width: 225px;
  overflow: auto;
  z-index: 1;
}
.search-dropdown__content li {
    list-style: none;
}
.search-dropdown__content a {
  margin-top: 0;
  padding: 12px;
  text-decoration: none;
  display: block;
}
.search-dropdown__show {display: block;}

.search-dropdown__content .item-list__item + .item-list__item {
  padding-top: 0;
  margin: 0;
}

@media (max-width: 1137px) {
  .search-dropdown,
  .search-facets {
    display: block;
  }
  .search-dropdown {
    margin-bottom: 24px;
    width: 100%;
  }
  .search-dropdown .button-dropdown {
    width: 100%;
  }
}

@media (min-width: 1138px) and (max-width: 1289px) {
  .search-dropdown .button-dropdown {
    font-size: 16px;
    margin: 0 4px;
  }
}

@media (min-width: 1138px) {
  .search-dropdown .button-dropdown {
    max-width: 200px;
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/*! ---------- =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 #f5f5f5;
  }

  .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 #999;
    padding-top: 48px;
  }

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

  .content a[href]:not([href^="#"]) {
    word-wrap: break-word;
    box-shadow: 0 2px 0 #0067a6;
    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;
  }
}


/* ---------- =unique, =miscellaneous ---------- */

.color-spec {
  overflow: hidden;
  border: 1px solid #888;
}
.color-spec__swatch {
  height: 0;
  padding-bottom: 100%;
}
.color-spec__text {
  padding: 24px 16px;
  font-size: 16px;
}
.color-spec__title {
  font-size: 22px;
  margin-bottom: 12px;
}
.color-spec__text p:not(:last-child) {
  margin-bottom: 12px;
}
.color-spec__role {
  font-style: italic;
  opacity: 0.65;
}

.search-current-tags {
  margin-bottom: 24px;
}

.blocker {
  background-color: rgba(0, 0, 0, 0.75);
  bottom: 0;
  box-sizing: border-box;
  height: 100%;
  left: 0;
  overflow: auto;
  padding: 20px;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  margin-right: -0.05em;
  vertical-align: middle;
}
.blocker.behind {
  background-color: transparent;
}

.modal:not(.sf-backend-wrp) {
  background: #fff;
  box-sizing: border-box;
  display: none;
  max-width: 900px;
  padding: 24px;
  position: relative;
  vertical-align: middle;
  width: 90%;
  z-index: 2;
}
.modal a.close-modal {
  display: block;
  position: absolute;
  right: 1.7rem;
  top: -2.5rem;
  text-indent: -9999px;
}
.modal a.close-modal:after {
  font-size: 30px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 50%;
  color: #000;
  content: 'x';
  display: block;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  height: 30px;
  padding: 8px 7px 7px;
  position: absolute;
  text-indent: 0;
  vertical-align: middle;
  width: 30px;
}

.modal-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background-color: #111;
  height: 20px;
}
.modal-spinner > div {
  border-radius: 100px;
  background-color: #fff;
  height: 20px;
  width: 2px;
  margin: 0 1px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
.modal-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.modal-spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.modal-spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.5);
  }

  20% {
    -webkit-transform: scaleY(1);
  }
}

@keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
  }

  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}

.slick-slider {
  clear: both;
  margin-bottom: 1rem;
  position: relative;
}

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

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

.slick-slide {
  float: left;
  position: relative;
}

.slick-arrow {
  background: #fff;
  display: block;
  height: 100%;
  padding: 0 1.01rem;
  position: absolute;
  top: 0;
  z-index: 4;
}

.slick-next {
  right: 0;
}

.image-gallery-slider--thumb-nav-slide {
  opacity: 0.5;
  padding: 0 0.4rem;
}

.image-gallery-slider--thumb-nav-slide.slick-active.slick-center {
  opacity: 1;
}

.multi-image-slider--slide {
  padding: 0 0.5rem;
}

.accordion__details-left {
  border-bottom: 1px solid #000;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
.accordion__details-center {
  padding: 0;
}
.accordion__details-right {
  border-top: 1px solid #000;
  margin-top: 1rem;
  padding-top: 1rem;
}

@media (min-width: 768px) {
  .accordion__label {
    font-size: 22px;
    padding: 12px 24px;
  }
  .accordion__details-left {
    border-bottom: 0;
    border-right: 1px solid #000;
    margin-bottom: 0;
    padding-bottom: 1rem;
    padding-right: 1rem;
  }
  .accordion__details-center {
    padding: 0 24px;
  }
  .accordion__details-right {
    border-left: 1px solid #000;
    border-top: 0;
    margin-top: 0;
    padding-left: 1rem;
    padding-top: 0;
  }
}

.accordion__content .grid {
  margin-right: 0;
  padding: 24px;
}
.accordion__content .grid:nth-child(even) {
  background: #e6e6e6;
  margin-left: -12px;
  margin-right: -12px;
  padding: 12px 24px 12px 35px;
}
.accordion__content .grid:last-child {
  margin-bottom: -24px;
}

.grid__unit.grid__unit--1-2-s.speakers-list-view__speaker-info, .grid__unit.grid__unit--1-3-s.speakers-list-view__speaker-info {
  padding-right: 24px;
}

.grid.content--speakers {
  text-align: left;
}

img.speaker-photo.detail-photo {
  width: 150px;
  height: 150px;
  text-align: left;
  margin-top: 25px;
  margin-bottom: 25px;
  margin-left: 0;
}

.content--speakers__speaker-social a {
  margin-right: 15px;
}

/* ---------- =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 body {
  border-top: none;
}
.sfPageEditor .page-header {
  background: #363738 !important;
}
.sfPageEditor .interior-banner {
  min-height: 0 !important;
}
.sfPageEditor .interior-banner__image::before {
  display: none !important;
}
.sfPageEditor .page-header,
.sfPageEditor .header-logo,
.sfPageEditor .header-search,
.sfPageEditor .page-header__content,
.sfPageEditor .header-utility,
.sfPageEditor .header-nav,
.sfPageEditor .interior-banner,
.sfPageEditor .interior-banner__image,
.sfPageEditor .interior-banner__content,
.sfPageEditor .page-footer,
.sfPageEditor .page-search,
.sfPageEditor .footer-logo,
.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;
}
/* space form builder section headings */
.sf-fieldWrp:not([data-sf-role]),
[data-sf-role="multiple-choice-field-container"] strong,
[data-sf-role="checkboxes-field-container"] strong {
  display: block;
  margin-bottom: 15px;
}

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

/* 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;
}

.clear {
clear: both;
}




/* Added by Ambrose Crenshaw for Blog List Displays */
.blog-post-list{
  
}

.blog-post-list ul{
  list-style-type:none;
  margin-left:0;
}
.blog-post-list ul li{
  margin-bottom:25px;
}
.blog-post-list ul li h3{
  margin-bottom:6px;
}

.blog-post-list ul li h3 a{
  display:inline;
}

.blog-post-list ul li a{
  display:none;
}

ul.pagination li a{
  display: block !important;
}



/*! ---------- =iframe ---------- */
.embed {
  position: relative; /* Live IT*/
  min-width: 1000px; /* Live IT*/
  min-height: 1272px; /* Live IT*/
  width: 100%; /* Live IT*/
}

.embed iframe {
  position: absolute; /* Live IT*/
  height: 100%; /* Live IT*/
  width: 100%; /* Live IT*/
  left: 0; /* Live IT*/
  top: 0; /* Live IT*/
}

@media (max-width: 1040px) {
  .embed {
    min-height: 1813px; /* Live AC*/
    min-width: auto; /* Live AC*/
    width: 700px; /* Live AC*/
    margin: 0 auto; /* Live AC*/
  }
}

@media (max-width: 760px) {
  .embed {
    min-height: 3383px; /* Live AC*/
    width: 300px; /* Live AC*/
  }
}


.page-description {
  text-align:center; /* Live AC*/
  background-color:#fff02a; /* Live AC*/
  font-size:1.5em; /* Live AC*/
  font-weight:bold; /* Live AC*/
  padding:1.3em; /* Live AC*/
}

iframe {
  display:inherit;
  max-width:1280px;
  margin:0 auto;
}


/* Added by Irene Tonson for Responsive Video Embeds */
.video-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.video-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}

li.item-list__item {
    padding-left: 0!important;
}

li.item-list__item:before {
    display: none;
}