/*!
 * Northwest Mississippi Community College - default_19
 * @link: https://northwestmsedu.finalsite.com
 * Site Template: newclientcustom
 * Built By: Rachel Edwards
 * Project Manager: Jaime Skerker
 * Designer: Nathan Lyttle
 * ==== Git Info ====
 * Branch Name: master
 * Build Version: 5.3.2
 * Git Tag: v5.2.2-61-g6772e44
 * Last built by: Jonathan Brooks
 */
@import url(https://fonts.googleapis.com/css?family=Bebas+Neue&display=swap);@charset "UTF-8";

/*! helpers - functions v0.0.1 */

/*! helpers - utility v0.0.1 */

.compartment {
  position: relative;
  margin: 0 auto;
  max-width: 1180px;
}

@media (min-width: 600px) {
  .col-4 {
    width: 50%;
    float: left;
  }
}

@media (min-width: 900px) {
  .col-4 {
    width: 25%;
  }
}

/*! helpers - box-model v0.0.1 */

.margin-x {
  margin-right: 1.25em;
  margin-left: 1.25em;
}

.margin-x-2x {
  margin-right: 2.5em;
  margin-left: 2.5em;
}

.margin-y {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.margin-y-2x {
  margin-top: 2.5em;
  margin-bottom: 2.5em;
}

.padding-x {
  padding-right: 1.25em;
  padding-left: 1.25em;
}

.padding-x-2x {
  padding-right: 2.5em;
  padding-left: 2.5em;
}

.padding-y {
  padding-top: 1.25em;
  padding-bottom: 1.25em;
}

.padding-y-2x {
  padding-top: 2.5em;
  padding-bottom: 2.5em;
}

.stretch-container {
  margin-right: -1.25em;
  margin-left: -1.25em;
}

.cover {
  position: absolute;
  height: 100%;
  width: 100%;
}

/*! helpers - presentational v0.0.1 */

/*! helpers - ui-pattern v0.0.1 */

/*
Example sites:
http://coderepo.demo.finalsite.com/stuff-by-al/dropdown-mixin
http://codepen.io/foxareld/pen/BNpWJm

Ex 1:
    <div class='parent'>
      <span class='sibling'>Dropdown</span>
      <ul class='dropdown'>
        <li>Link</li>
        <li>Link</li>
        <li>Link</li>
      </ul>
    </div>

Use:
    .parent {
        @include drop(".dropdown"); //this makes .dropdown drop on hover of .parent
    }

    //this makes .dropdown drop when .parent has class .drop-class, it was also have a transition
    .parent {
        @include drop(".dropdown", true, ".drop-class");
    }

    //this makes .dropdown drop when .sibling has class .drop-class, it will not have a transition
    .sibling {
        @include drop("+ .dropdown", false, ".drop-class");
    }

*/

/*! helpers - typography v0.0.1 */

@font-face {
  font-family: "IcoMoon";
  src: url(fonts/icomoon.eot);
  src: url(fonts/icomoon.eot) format("embedded-opentype"), url(fonts/icomoon.woff2) format("woff2"), url(fonts/icomoon.woff) format("woff"), url(fonts/icomoon.ttf) format("truetype"), url(fonts/icomoon.svg) format("svg");
  font-weight: 400;
  font-style: normal;
}

.fsTitle,
.fsAthleticsRosterList li > div.fsRosterName,
.fsVimeoTitle,
.fsYoutubeTitle {
  margin: 0;
  font-weight: bold;
  font-size: 1.1em;
}

h1 {
  margin-top: 0;
  font-weight: normal;
  font-size: 45px;
  line-height: 55px;
  color: #df3a3e;
  font-family: "Bebas Neue", sans-serif;
  margin-bottom: 50px;
}

@media (max-width: 599px) {
  h1 {
    margin-bottom: 30px;
    font-size: 1.875rem;
  }
}

h2 {
  margin-top: 0;
  font-weight: normal;
  font-size: 30px;
  line-height: 40px;
  color: #0b0e22;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  margin-bottom: 30px;
}

@media (max-width: 699px) {
  h2 {
    font-size: 1.875rem;
  }
}

h3 {
  margin-top: 0;
  font-weight: normal;
  font-size: 22px;
  line-height: 27px;
  color: #0b0e22;
  font-family: "proxima-nova-extra-condensed", sans-serif;
  font-weight: 800;
  margin-bottom: 20px;
}

h4 {
  margin-top: 0;
  font-weight: normal;
  font-size: 18px;
  line-height: 19px;
  color: #df3a3e;
  font-family: "proxima-nova-extra-condensed", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}

h5 {
  margin-top: 0;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  color: #0b0e22;
  font-family: "proxima-nova", sans-serif;
  font-weight: 800;
  margin-bottom: 10px;
}

h6 {
  margin-top: 0;
  font-weight: normal;
  font-size: 11px;
  line-height: 15px;
  color: #0b0e22;
  font-family: "proxima-nova", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

p {
  margin: 0 0 30px;
}

body:not(.fsComposeMode) p:last-child {
  margin-bottom: 0;
}

hr {
  margin: 0 auto 20px;
}

a {
  text-decoration: none;
  color: #084cdc;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
  font-weight: 600;
}

a:hover,
a:focus {
  color: #df3a3e;
  text-decoration: underline;
}

ul,
ol {
  margin-top: 0;
  padding-left: 20px;
}

.fsAthleticsEvent.fsTable .fsElementTable,
.fsAthleticsRoster .fsElementTable,
table.fs_style_53 {
  margin-bottom: 20px;
}

.fsAthleticsEvent.fsTable .fsElementTable th,
.fsAthleticsRoster .fsElementTable th,
.fsAthleticsEvent.fsTable .fsElementTable td,
.fsAthleticsRoster .fsElementTable td,
table.fs_style_53 th,
table.fs_style_53 td {
  vertical-align: top;
  border-bottom: none;
  font-size: 1rem;
}

.fsAthleticsEvent.fsTable .fsElementTable th,
.fsAthleticsRoster .fsElementTable th,
table.fs_style_53 th {
  padding: 10px 20px;
  background: #4d6496;
  color: #ffffff;
  text-align: left;
}

.fsAthleticsEvent.fsTable .fsElementTable td,
.fsAthleticsRoster .fsElementTable td,
table.fs_style_53 td {
  padding: 10px 20px;
  background: #e6e9f0;
  font-size: 0.875rem;
}

.fsAthleticsEvent.fsTable .fsElementTable tr:nth-of-type(odd) td,
.fsAthleticsRoster .fsElementTable tr:nth-of-type(odd) td,
table.fs_style_53 tr:nth-of-type(odd) td {
  background-color: rgba(230, 233, 240, 0.4);
}

.fsAthleticsEvent.fsTable .fsElementTable tr,
.fsAthleticsRoster .fsElementTable tr,
table.fs_style_53 tr {
  border-bottom: solid 1px #ffffff;
}

.fsAthleticsEvent.fsTable .fsElementTable tr.fsLoadMoreButtonRow,
.fsAthleticsRoster .fsElementTable tr.fsLoadMoreButtonRow,
table.fs_style_53 tr.fsLoadMoreButtonRow {
  border-bottom: none;
}

.fsAthleticsEvent.fsTable .fsElementTable tr.fsLoadMoreButtonRow > td,
.fsAthleticsRoster .fsElementTable tr.fsLoadMoreButtonRow > td,
table.fs_style_53 tr.fsLoadMoreButtonRow > td {
  background: none;
  padding: 20px 0;
}

body:not(.fsComposeMode) .fsAthleticsEvent.fsTable .fsElementTable:last-child,
.fsAthleticsEvent.fsTable body:not(.fsComposeMode) .fsElementTable:last-child,
body:not(.fsComposeMode) .fsAthleticsRoster .fsElementTable:last-child,
.fsAthleticsRoster body:not(.fsComposeMode) .fsElementTable:last-child,
body:not(.fsComposeMode) table.fs_style_53:last-child {
  margin-bottom: 0;
}

.table-overflow {
  overflow-x: auto;
  max-width: 100%;
  margin-bottom: 20px;
}

.table-overflow:last-child {
  margin-bottom: 0;
}

img,
canvas,
video,
svg {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
  max-width: 100%;
}

.home-news-container .slick-dots,
.infographic .slick-dots {
  padding: 0;
  margin: 0 0 10px 0;
  list-style: none;
  text-align: center;
}

.home-news-container .slick-dots li,
.infographic .slick-dots li {
  display: inline-block;
  margin: 0 3px;
  width: 10px;
  height: 10px;
}

.home-news-container .slick-dots li button,
.infographic .slick-dots li button {
  background: none;
  border: solid 1px #002269;
  text-indent: -99999px;
  line-height: 0;
  cursor: pointer;
  font-size: 0;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  padding: 0;
}

.home-news-container .slick-dots li.slick-active button,
.infographic .slick-dots li.slick-active button,
.home-news-container .slick-dots li:hover button,
.infographic .slick-dots li:hover button,
.home-news-container .slick-dots li:focus button,
.infographic .slick-dots li:focus button {
  background: #002269;
}

.home-news-container .slick-prev,
.home-news-container .slick-next,
.infographic .slick-prev,
.infographic .slick-next {
  overflow: hidden;
  background: rgba(11, 14, 34, 0.7);
  height: 60px;
  width: 60px;
  border: 0;
  color: transparent;
  cursor: pointer;
  display: block;
  overflow: hidden;
  position: absolute;
  z-index: 200;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.home-news-container .slick-prev:before,
.home-news-container .slick-next:before,
.infographic .slick-prev:before,
.infographic .slick-next:before {
  text-align: center;
  color: #ffffff;
  font-size: 1.5625rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  width: auto;
  height: auto;
  position: absolute;
  font-family: "IcoMoon";
  font-weight: normal;
}

@media (max-width: 799px) {
  .home-news-container .slick-prev:before,
  .home-news-container .slick-next:before,
  .infographic .slick-prev:before,
  .infographic .slick-next:before {
    font-size: 1.5rem;
  }
}

.button-download,
.fs_style_60 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 8px 16px;
  background: #ffffff;
  color: #696c73;
  border-radius: 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.6875rem;
  line-height: 1.36364;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
  padding: 14px 25px 14px 55px;
  border: 1px solid #e6e9f0;
  display: block;
  text-align: left;
  font-size: 1rem;
  text-transform: none;
}

.button-download:hover,
.button-download:focus,
.fsStateSelected .button-download,
.button-download.on,
.fs_style_60:hover,
.fs_style_60:focus,
.fsStateSelected .fs_style_60,
.fs_style_60.on {
  background: #f9f9fa;
  color: #4d6496;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.button-download em,
.fs_style_60 em {
  display: block;
  font-style: normal;
}

.button-download:hover,
.button-download:focus,
.fs_style_60:hover,
.fs_style_60:focus {
  border: 1px solid #e6e9f0;
}

.button-download:hover:before,
.button-download:focus:before,
.fs_style_60:hover:before,
.fs_style_60:focus:before {
  color: #4d6496;
}

.button-download:before,
.fs_style_60:before {
  content: "\E900";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  margin-right: 15px;
  color: #b3bdd2;
  font-size: 1.375rem;
  left: 20px;
  position: absolute;
  top: 9px;
}

.button-link,
.fs_style_59 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 8px 16px;
  background: #ffffff;
  color: #696c73;
  border-radius: 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.6875rem;
  line-height: 1.36364;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
  padding: 14px 25px 14px 55px;
  border: 1px solid #e6e9f0;
  display: block;
  text-align: left;
  font-size: 1rem;
  text-transform: none;
}

.button-link:hover,
.button-link:focus,
.fsStateSelected .button-link,
.button-link.on,
.fs_style_59:hover,
.fs_style_59:focus,
.fsStateSelected .fs_style_59,
.fs_style_59.on {
  background: #f9f9fa;
  color: #4d6496;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.button-link em,
.fs_style_59 em {
  display: block;
  font-style: normal;
}

.button-link:hover,
.button-link:focus,
.fs_style_59:hover,
.fs_style_59:focus {
  border: 1px solid #e6e9f0;
}

.button-link:hover:before,
.button-link:focus:before,
.fs_style_59:hover:before,
.fs_style_59:focus:before {
  color: #4d6496;
}

.button-link:before,
.fs_style_59:before {
  content: "\E901";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  margin-right: 15px;
  color: #b3bdd2;
  font-size: 1.125rem;
  left: 20px;
  position: absolute;
  top: 12px;
}

.button-default-outline,
.fs_style_52 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 8px 16px;
  background: transparent;
  color: #696c73;
  border-radius: 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.6875rem;
  line-height: 1.36364;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
  border: solid 1px #d2d3d5;
}

.button-default-outline:hover,
.button-default-outline:focus,
.fsStateSelected .button-default-outline,
.button-default-outline.on,
.fs_style_52:hover,
.fs_style_52:focus,
.fsStateSelected .fs_style_52,
.fs_style_52.on {
  background: #f9f9fa;
  color: #4d6496;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.button-default-outline em,
.fs_style_52 em {
  display: block;
  font-style: normal;
}

.button-default-outline:hover,
.fs_style_52:hover {
  border: solid 1px #ccd3e1;
}

.button-default-outline strong,
.fs_style_52 strong {
  color: #696c73;
}

.button-default-outline:hover strong,
.fs_style_52:hover strong {
  color: #696c73;
}

.button-outline-blue,
.fs_style_61 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 8px 16px;
  background: transparent;
  color: #002269;
  border-radius: 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.6875rem;
  line-height: 1.36364;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
  border: solid 1px #002269;
}

.button-outline-blue:hover,
.button-outline-blue:focus,
.fsStateSelected .button-outline-blue,
.button-outline-blue.on,
.fs_style_61:hover,
.fs_style_61:focus,
.fsStateSelected .fs_style_61,
.fs_style_61.on {
  background: #002269;
  color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.button-outline-blue em,
.fs_style_61 em {
  display: block;
  font-style: normal;
}

.button-outline-blue:hover,
.fs_style_61:hover {
  border: solid 1px #002269;
}

.button-outline-blue strong,
.fs_style_61 strong {
  color: #696c73;
}

.button-outline-blue:hover strong,
.fs_style_61:hover strong {
  color: rgba(255, 255, 255, 0.7);
}

.button-outline-red,
.fs_style_62 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 8px 16px;
  background: transparent;
  color: #df3a3e;
  border-radius: 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.6875rem;
  line-height: 1.36364;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
  border: solid 1px #df3a3e;
}

.button-outline-red:hover,
.button-outline-red:focus,
.fsStateSelected .button-outline-red,
.button-outline-red.on,
.fs_style_62:hover,
.fs_style_62:focus,
.fsStateSelected .fs_style_62,
.fs_style_62.on {
  background: #df3a3e;
  color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.button-outline-red em,
.fs_style_62 em {
  display: block;
  font-style: normal;
}

.button-outline-red:hover,
.fs_style_62:hover {
  border: solid 1px #df3a3e;
}

.button-outline-red strong,
.fs_style_62 strong {
  color: #696c73;
}

.button-outline-red:hover strong,
.fs_style_62:hover strong {
  color: rgba(255, 255, 255, 0.7);
}

.button-solid-dark-blue,
.fs_style_63 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 8px 16px;
  background: #002269;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.6875rem;
  line-height: 1.36364;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
}

.button-solid-dark-blue:hover,
.button-solid-dark-blue:focus,
.fsStateSelected .button-solid-dark-blue,
.button-solid-dark-blue.on,
.fs_style_63:hover,
.fs_style_63:focus,
.fsStateSelected .fs_style_63,
.fs_style_63.on {
  background: #00339c;
  color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.button-solid-dark-blue em,
.fs_style_63 em {
  display: block;
  font-style: normal;
}

.button-solid-dark-blue strong,
.fs_style_63 strong {
  color: rgba(255, 255, 255, 0.7);
}

.button-solid-red,
.fs_style_71 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 8px 16px;
  background: #df3a3e;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.6875rem;
  line-height: 1.36364;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
}

.button-solid-red:hover,
.button-solid-red:focus,
.fsStateSelected .button-solid-red,
.button-solid-red.on,
.fs_style_71:hover,
.fs_style_71:focus,
.fsStateSelected .fs_style_71,
.fs_style_71.on {
  background: #c62024;
  color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.button-solid-red em,
.fs_style_71 em {
  display: block;
  font-style: normal;
}

.button-solid-red strong,
.fs_style_71 strong {
  color: rgba(255, 255, 255, 0.7);
}

.button-solid-blue,
.fs_style_65 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 8px 16px;
  background: #4d6496;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.6875rem;
  line-height: 1.36364;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
}

.button-solid-blue:hover,
.button-solid-blue:focus,
.fsStateSelected .button-solid-blue,
.button-solid-blue.on,
.fs_style_65:hover,
.fs_style_65:focus,
.fsStateSelected .fs_style_65,
.fs_style_65.on {
  background: #3c4e74;
  color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.button-solid-blue em,
.fs_style_65 em {
  display: block;
  font-style: normal;
}

.button-solid-blue strong,
.fs_style_65 strong {
  color: rgba(255, 255, 255, 0.7);
}

.button-solid-black,
.fs_style_66 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 8px 16px;
  background: #0b0e22;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.6875rem;
  line-height: 1.36364;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
}

.button-solid-black:hover,
.button-solid-black:focus,
.fsStateSelected .button-solid-black,
.button-solid-black.on,
.fs_style_66:hover,
.fs_style_66:focus,
.fsStateSelected .fs_style_66,
.fs_style_66.on {
  background: #595959;
  color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.button-solid-black em,
.fs_style_66 em {
  display: block;
  font-style: normal;
}

.button-solid-black strong,
.fs_style_66 strong {
  color: rgba(255, 255, 255, 0.7);
}

.button-outline-white,
.fs_style_68 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 8px 16px;
  background: transparent;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.6875rem;
  line-height: 1.36364;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
  border: solid 1px #ffffff;
}

.button-outline-white:hover,
.button-outline-white:focus,
.fsStateSelected .button-outline-white,
.button-outline-white.on,
.fs_style_68:hover,
.fs_style_68:focus,
.fsStateSelected .fs_style_68,
.fs_style_68.on {
  background: #ffffff;
  color: #000000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.button-outline-white em,
.fs_style_68 em {
  display: block;
  font-style: normal;
}

.button-outline-white:hover,
.fs_style_68:hover {
  border: solid 1px #ffffff;
}

.button-solid-white,
.fs_style_67 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 8px 16px;
  background: #ffffff;
  color: #000000;
  border-radius: 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.6875rem;
  line-height: 1.36364;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
  border: solid 1px #ffffff;
}

.button-solid-white:hover,
.button-solid-white:focus,
.fsStateSelected .button-solid-white,
.button-solid-white.on,
.fs_style_67:hover,
.fs_style_67:focus,
.fsStateSelected .fs_style_67,
.fs_style_67.on {
  background: transparent;
  color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.button-solid-white em,
.fs_style_67 em {
  display: block;
  font-style: normal;
}

.button-solid-white:hover,
.fs_style_67:hover {
  border: solid 1px #ffffff;
}

.button-medium,
.fs_style_69 {
  padding: 15px 40px;
  font-size: 1.25rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
}

.button-large,
.fs_style_70 {
  padding: 25px 60px;
  font-size: 1.5rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
}

.button-large strong,
.fs_style_70 strong {
  display: block;
  font-size: 0.875rem;
  font-family: "proxima-nova", sans-serif;
  font-weight: 600;
  text-transform: none;
}

.fs_style_XX {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 8px 16px;
  background: #3c3f48;
  color: #fff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.6875rem;
  line-height: 1.36364;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
}

.fs_style_XX:hover,
.fs_style_XX:focus,
.fsStateSelected .fs_style_XX,
.fs_style_XX.on {
  background: #0b0e22;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.fs_style_XX em {
  display: block;
  font-style: normal;
}

.fs_style_XY {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 8px 16px;
  background: #4d6496;
  color: #fff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.6875rem;
  line-height: 1.36364;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
}

.fs_style_XY:hover,
.fs_style_XY:focus,
.fsStateSelected .fs_style_XY,
.fs_style_XY.on {
  background: #0b0e22;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.fs_style_XY em {
  display: block;
  font-style: normal;
}

.fsStyleDefaultButton,
button.fsStyleDefaultButton,
.fsSelectAll {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 8px 16px;
  background: transparent;
  color: #696c73;
  border-radius: 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.6875rem;
  line-height: 1.36364;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
  border: solid 1px #d2d3d5;
}

.fsStyleDefaultButton:hover,
.fsStyleDefaultButton:focus,
.fsStateSelected .fsStyleDefaultButton,
.fsStyleDefaultButton.on,
button.fsStyleDefaultButton:hover,
button.fsStyleDefaultButton:focus,
.fsStateSelected button.fsStyleDefaultButton,
button.fsStyleDefaultButton.on,
.fsSelectAll:hover,
.fsSelectAll:focus,
.fsStateSelected .fsSelectAll,
.fsSelectAll.on {
  background: #f9f9fa;
  color: #4d6496;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.fsStyleDefaultButton em,
button.fsStyleDefaultButton em,
.fsSelectAll em {
  display: block;
  font-style: normal;
}

.fsStyleDefaultButton:hover,
button.fsStyleDefaultButton:hover,
.fsSelectAll:hover {
  border: solid 1px #ccd3e1;
}

.fsStyleDefaultButton strong,
button.fsStyleDefaultButton strong,
.fsSelectAll strong {
  color: #696c73;
}

.fsStyleDefaultButton:hover strong,
button.fsStyleDefaultButton:hover strong,
.fsSelectAll:hover strong {
  color: #696c73;
}

.fsStyleDefaultButton.fsLoadMoreButton,
button.fsStyleDefaultButton.fsLoadMoreButton,
.fsSelectAll.fsLoadMoreButton {
  margin-bottom: 0;
}

.fsStyleDefaultButton.fsSelectAll,
button.fsStyleDefaultButton.fsSelectAll,
.fsSelectAll.fsSelectAll {
  margin-bottom: 5px;
  padding: 7px 12px;
  font-size: 0.875em;
  line-height: 1.2;
}

.fsStyleUpdateButton {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 8px 16px;
  background: #3c3f48;
  color: #fff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.6875rem;
  line-height: 1.36364;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
}

.fsStyleUpdateButton:hover,
.fsStyleUpdateButton:focus,
.fsStateSelected .fsStyleUpdateButton,
.fsStyleUpdateButton.on {
  background: #0b0e22;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.fsStyleUpdateButton em {
  display: block;
  font-style: normal;
}

/*! _main.scss - src/sass/modules/common/ - main common import */

/*! elements - common v0.0.1 */

/* Contains generic styles that apply to every element */

.fsElement {
  margin-bottom: 40px;
}

.fsElement:last-child {
  margin-bottom: 0;
}

.fsElementHeaderContent {
  margin-bottom: 20px;
}

.fsElementFooterContent {
  margin-top: 20px;
}

.fsPanel {
  margin-bottom: 0;
}

.fsStyleDefaultField {
  border: solid 1px #c3c4c6;
}

/*! elements - common - list subtype v0.0.1 */

/* Contains generic styles that apply to every element with the class '.fsList' and the list subtype selected */

.fsList article {
  margin-bottom: 20px;
}

.fsListNav .fsStyleDefaultList {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fsListNav .fsStyleDefaultList .fsListItem a {
  display: inline-block;
  padding: 0;
}

.fsListNav .fsStyleDefaultList .fsListItem a:hover,
.fsListNav .fsStyleDefaultList .fsListItem a:focus {
  color: #ffcc00;
  background: transparent;
}

.fsListNav .fsStyleDefaultList .fsListItem.fsResourceCollection.fsStateExpanded > .fsResourceCollectionLink {
  margin-bottom: 10px;
}

.fsListNav .fsListLevel1 > .fsListItem {
  padding: 0 0 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px #d2d3d5;
}

.fsListNav .fsListLevel2 > .fsListItem {
  padding-left: 10px;
}

.fsListNav .fsListLevel3 > .fsListItem {
  padding-left: 20px;
}

.fsListNav .fsListLevel4 > .fsListItem {
  padding-left: 30px;
}

.fsListNav .fsListLevel5 > .fsListItem {
  padding-left: 40px;
}

/*! element - common - slideshow subtype v0.0.1 */

/* Contains generic styles that apply to every element slideshow subtype*/

.fsSlideshow.fsSlideshowVertical .fsElementSlideshow[data-slides-to-show="1"] article {
  padding-bottom: 0;
}

.fsSlideshow.fsSlideshowHorizontal .fsElementSlideshow[data-arrows*="true"] {
  padding-top: 0;
  padding-bottom: 0;
}

.fsSlideshow.fsSlideshowHorizontal article {
  padding-bottom: 0;
}

.fsSlideshow .fsNextButton,
.fsSlideshow .fsPrevButton {
  overflow: hidden;
  background: rgba(11, 14, 34, 0.7);
  height: 60px;
  width: 60px;
}

.fsSlideshow .fsNextButton:before,
.fsSlideshow .fsPrevButton:before {
  color: #ffffff;
  font-size: 33px;
  -webkit-transition: .3s;
  transition: .3s;
  display: inline-block;
  line-height: 1;
  width: auto;
  height: auto;
  position: absolute;
  top: 44%;
  -webkit-transform: translateY(-43%);
      -ms-transform: translateY(-43%);
          transform: translateY(-43%);
}

.fsSlideshow .fsNextButton.fsLeftArrow:before,
.fsSlideshow .fsNextButton.fsRightArrow:before,
.fsSlideshow .fsPrevButton.fsLeftArrow:before,
.fsSlideshow .fsPrevButton.fsRightArrow:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

.fsSlideshow .fsNextButton.fsLeftArrow:before,
.fsSlideshow .fsPrevButton.fsLeftArrow:before {
  left: 40%;
  translate: transformY(-50%);
}

.fsSlideshow .fsNextButton.fsRightArrow:before,
.fsSlideshow .fsPrevButton.fsRightArrow:before {
  right: 40%;
  translate: transformY(-50%);
}

.fsSlideshow .fsNextButton:hover:before,
.fsSlideshow .fsNextButton:focus:before,
.fsSlideshow .fsPrevButton:hover:before,
.fsSlideshow .fsPrevButton:focus:before {
  color: rgba(255, 255, 255, 0.7);
  -webkit-transition: .3s;
  transition: .3s;
}

.fsSlideshow .fsPager {
  margin-bottom: 0;
  margin-top: 20px;
}

.fsSlideshow .fsPager li {
  width: 12px;
  height: 12px;
  position: relative;
  vertical-align: middle;
}

.fsSlideshow .fsPager li button {
  width: 100%;
  height: 100%;
  padding: 0;
  color: #002269;
}

.fsSlideshow .fsPager li button:before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: solid 1px #002269;
  -webkit-transition: .3s;
  transition: .3s;
  opacity: 1;
}

.fsSlideshow .fsPager li button:hover:before,
.fsSlideshow .fsPager li button:focus:before {
  background-color: #002269;
  -webkit-transition: .3s;
  transition: .3s;
}

.fsSlideshow .fsPager li button:focus {
  outline: 1px dashed rgba(0, 34, 105, 0.25);
}

.fsSlideshow .fsPager li.slick-active button:before {
  opacity: 1;
  background-color: #002269;
}

/*! elements - common - dialog box v0.0.1 */

/* Contains generic styles that apply to every element that has a pop-up/dialog option */

.fsDialogCloseButton {
  opacity: 1;
}

.fsDialogCloseButton:after,
.fsDialogCloseButton:before {
  background: #002269;
}

.fsDialogCloseButton:focus:after,
.fsDialogCloseButton:focus:before {
  background: #002269;
}

.fsDialogCloseButton:hover:after,
.fsDialogCloseButton:hover:before {
  background: #000000;
}

.fsElementDialog {
  color: #002269;
}

blockquote,
.fs_style_25 {
  display: block;
  position: relative;
  width: 100%;
  margin: 80px auto 30px auto;
  padding: 50px 20px 0 10px;
  color: #4d6496;
  font-size: 22px;
  line-height: 1.72727;
  text-align: center;
  font-weight: 700;
}

blockquote:before,
.fs_style_25:before {
  position: absolute;
  top: -15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
  font-size: 32px;
  color: #b3bdd2;
  text-align: center;
  content: "\E905";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
}

.fsBanner blockquote {
  font-size: 1.125rem;
  line-height: 1.72222;
  margin-top: 60px;
}

.fsBanner blockquote:before {
  font-size: 25px;
  top: -5px;
}

.lead-in,
.fs_style_24 {
  font-size: 1.5rem;
  line-height: 2.1875rem;
  font-weight: 600;
  margin-bottom: 30px;
  display: block;
}

cite,
.fs_style_30 {
  margin: 0 0 60px 0;
  display: block;
  color: #696c73;
  font-size: 12px;
  line-height: 0.63158;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

cite:before,
.fs_style_30:before {
  content: "- ";
}

.callout,
.fs_style_31 {
  padding: 20px;
  background: #df3a3e;
  color: #fff;
}

.callout.left,
.fs_style_31.left {
  float: left;
  margin-left: 20px;
}

@media (min-width: 500px) {
  .callout.left,
  .fs_style_31.left {
    width: 50%;
  }
}

.callout.right,
.fs_style_31.right {
  float: right;
  margin-right: 20px;
}

@media (min-width: 500px) {
  .callout.right,
  .fs_style_31.right {
    width: 50%;
  }
}

.callout-content,
.fs_style_26,
.callout-right,
.fs_style_28,
.callout-left,
.fs_style_27 {
  display: block;
  padding: 10px 10px 10px 20px;
  font-weight: 700;
  line-height: 1.6;
  background: transparent;
  color: #0b0e22;
  font-size: 20px;
  border-left: 4px solid #e6e9f0;
}

.callout-right,
.fs_style_28 {
  color: #002269;
}

@media (min-width: 600px) {
  .callout-right,
  .fs_style_28 {
    float: right;
    width: 50%;
    margin-left: 50px;
  }
}

.callout-left,
.fs_style_27 {
  color: #df3a3e;
}

@media (min-width: 600px) {
  .callout-left,
  .fs_style_27 {
    width: 50%;
    float: left;
    margin-right: 50px;
  }
}

.text-red,
.fs_style_56 {
  color: #df3a3e !important;
}

.text-blue,
.fs_style_57 {
  color: #002269 !important;
}

.text-black,
.fs_style_58 {
  color: #0b0e22 !important;
}

/*! _main.scss - src/sass/navigation/ - main import */

.fsNavigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fsNavigation li.fsNavCurrentPage > a,
.fsNavigation li.fsNavCurrentPageAncestor > a {
  color: #ffcc00;
  background: transparent;
}

.fsNavigation a {
  display: block;
  padding: 10px 0;
  color: #084cdc;
  background: transparent;
}

.fsNavigation a:hover,
.fsNavigation a:focus {
  color: #ffcc00;
  background: transparent;
}

.fsNavigation .fsNavLevel2 > li > a {
  padding-left: 10px;
}

.fsNavigation .fsNavLevel3 > li > a {
  padding-left: 20px;
}

.fsNavigation .fsNavLevel4 > li > a {
  padding-left: 30px;
}

.fsNavigation .fsNavLevel5 > li > a {
  padding-left: 40px;
}

.fsBreadcrumb {
  background: #ffffff;
  padding-left: 20px;
  padding-right: 20px;
}

.fsBreadcrumb > .fsElementContent {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.fsBreadcrumb ul li {
  display: inline-block;
  color: #667aa5;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-right: 10px;
  margin-top: 55px;
}

@media (min-width: 1000px) {
  .fsBreadcrumb ul li {
    padding-top: 150px;
  }
}

.fsBreadcrumb ul li .fsNavBreadcrumbSeperator {
  margin-left: 10px;
  color: #696c73;
}

.fsBreadcrumb ul li a {
  display: inline-block;
  padding: 0;
  font-weight: 400;
  color: #696c73;
}

.interior-hero + .fsBreadcrumb ul li {
  padding-top: 0;
}

.nav-site-map ul {
  margin: 0 0 0 20px;
  padding: 0;
}

.nav-site-map ul.fsNavLevel1 {
  margin-left: 0;
  list-style: none;
}

@media (min-width: 600px) {
  .nav-site-map ul.fsNavLevel1 {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    -webkit-column-rule: 0;
       -moz-column-rule: 0;
            column-rule: 0;
    min-height: initial;
  }

  .nav-site-map ul.fsNavLevel1 li {
    -webkit-column-break-inside: avoid;
       page-break-inside: avoid;
            break-inside: avoid-column;
  }
}

.nav-site-map ul.fsNavLevel1 > li > a {
  margin-bottom: 20px;
  font-weight: 700;
}

.nav-site-map ul.fsNavLevel2 {
  list-style: disc;
}

.nav-site-map ul.fsNavLevel3 {
  list-style: circle;
}

.nav-site-map ul.fsNavLevel4 {
  list-style: square;
}

.nav-site-map ul.fsNavLevel5 {
  list-style: disc;
}

.fsHeader + .nav-sub {
  display: block;
  margin-bottom: 0;
  border-top: 1px solid #ffffff;
}

@media (min-width: 600px) {
  .fsHeader + .nav-sub {
    display: none;
  }
}

.fsHeader + .nav-sub .fsElementContent .fsNavLevel1 {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.nav-tier ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-tier ul li a {
  display: block;
  padding: 10px 10px;
  color: #084cdc;
  background: transparent;
}

.nav-tier ul li a:hover,
.nav-tier ul li a:focus {
  color: #ffcc00;
  background: #d2d3d5;
}

.nav-tier ul li.fsNavCurrentPage > a {
  color: #df3a3e;
  background: #c3c4c6;
}

.nav-tier ul li.fsNavCurrentPage > a:hover,
.nav-tier ul li.fsNavCurrentPage > a:focus {
  color: #4d6496;
  background: #d2d3d5;
}

.nav-tier ul li.fsNavCurrentPageAncestor {
  background: #d2d3d5;
}

.nav-tier ul li.fsNavCurrentPageAncestor > a {
  color: #084cdc;
  background: transparent;
}

.nav-tier ul li.fsNavCurrentPageAncestor > a:hover,
.nav-tier ul li.fsNavCurrentPageAncestor > a:focus {
  color: #084cdc;
  background: #d2d3d5;
}

.nav-tier .fsNavLevel1 {
  padding-left: 0;
}

.nav-tier .fsNavLevel1 > li {
  border-bottom: solid 1px #d2d3d5;
}

.nav-tier .fsNavLevel1 > li:last-child {
  border-bottom: none;
}

.nav-tier .fsNavLevel2 > li > a {
  padding-left: 20px;
}

.nav-tier .fsNavLevel3 > li > a {
  padding-left: 30px;
}

.nav-tier .fsNavLevel4 > li > a {
  padding-left: 40px;
}

.nav-tier .fsNavLevel5 > li > a {
  padding-left: 50px;
}

.nav-sub {
  background: #002269;
  color: #ffffff;
  display: none;
}

@media (min-width: 600px) {
  .nav-sub {
    background: #f9f9fa;
  }
}

.nav-sub > header {
  display: block;
  position: relative;
}

.nav-sub > header .fsElementTitle {
  position: relative;
  margin-bottom: 0;
  display: block;
  color: #696c73;
  background-color: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 1.375rem;
  cursor: pointer;
  color: #ffffff;
  padding-left: 25px;
  position: relative;
  padding-right: 40px;
}

@media (min-width: 600px) {
  .nav-sub > header .fsElementTitle {
    display: none;
  }
}

.nav-sub > header .fsElementTitle:hover {
  background-color: transparent;
  color: #ffffff;
}

@media (min-width: 600px) {
  .nav-sub > header .fsElementTitle {
    cursor: default;
  }
}

.nav-sub > header .fsElementTitle:after {
  content: "+";
  font-size: 1rem;
  line-height: 1;
  position: absolute;
  margin: 0;
  top: 50%;
  right: 20px;
  -webkit-transform: rotate(-180deg) translateY(-50%);
      -ms-transform: rotate(-180deg) translateY(-50%);
          transform: rotate(-180deg) translateY(-50%);
  font-family: "IcoMoon";
  -webkit-transition: 0.3s -webkit-transform;
  transition: 0.3s -webkit-transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
  -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
          transform-origin: top center;
}

.nav-sub > .fsElementContent {
  position: relative;
  display: block;
  background-color: transparent;
}

.nav-sub > .fsElementContent ul li {
  margin-bottom: 19px;
}

.nav-sub > .fsElementContent ul li:last-child {
  margin-bottom: 0;
}

.nav-sub > .fsElementContent ul li a {
  display: block;
  padding: 0px 0px;
  color: #696c73;
  background: transparent;
  font-size: 0.875rem;
  line-height: 1.5;
  text-decoration: none;
  position: relative;
  font-weight: 600;
}

@media (max-width: 599px) {
  .nav-sub > .fsElementContent ul li a {
    color: #99a7c3;
  }
}

.nav-sub > .fsElementContent ul li a:hover,
.nav-sub > .fsElementContent ul li a:focus {
  color: #0b0e22;
  background: transparent;
  text-decoration: underline;
}

.nav-sub > .fsElementContent ul li.expanded > .fsNavPageInfo {
  display: block;
}

.nav-sub > .fsElementContent ul li.fsNavParentPage > a {
  padding-right: 22px;
}

.nav-sub > .fsElementContent ul li.fsNavCurrentPage:before {
  background: #696c73;
}

.nav-sub > .fsElementContent ul li.fsNavCurrentPage > a {
  color: #df3a3e;
  background: transparent;
}

.nav-sub > .fsElementContent ul li.fsNavCurrentPage > a:hover,
.nav-sub > .fsElementContent ul li.fsNavCurrentPage > a:focus {
  color: #0b0e22;
  background: transparent;
}

.nav-sub > .fsElementContent ul li.fsNavCurrentPageAncestor {
  background: transparent;
}

.nav-sub > .fsElementContent ul li.fsNavCurrentPageAncestor > a {
  color: #696c73;
  background: transparent;
  font-weight: 700;
}

.nav-sub > .fsElementContent ul li.fsNavCurrentPageAncestor > a:hover,
.nav-sub > .fsElementContent ul li.fsNavCurrentPageAncestor > a:focus {
  color: #df3a3e;
  background: transparent;
}

.nav-sub > .fsElementContent ul li:hover:before {
  background: #99a7c3;
}

.nav-sub > .fsElementContent ul li.active:before {
  background: #df3a3e;
}

.nav-sub > .fsElementContent ul li.active > a {
  color: #df3a3e;
}

.nav-sub > .fsElementContent ul li.active > a:hover,
.nav-sub > .fsElementContent ul li.active > a:focus {
  color: #df3a3e;
}

.nav-sub > .fsElementContent ul li.active > a > .drop-trigger {
  color: #df3a3e;
}

.nav-sub > .fsElementContent ul li.active > a > .drop-trigger:before {
  content: "-";
  color: #696c73;
  top: 33%;
  font-size: 1.25rem;
}

.nav-sub > .fsElementContent .drop-trigger {
  border: 0;
  background: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: -3px;
  font-size: 0;
  line-height: 1;
  width: 17px;
  height: 17px;
  cursor: pointer;
  color: #696c73;
  -webkit-transition: 0.3s color;
  transition: 0.3s color;
}

.nav-sub > .fsElementContent .drop-trigger:before {
  content: "\F067";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  content: "+";
  font-size: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.nav-sub > .fsElementContent .fsNavPageInfo {
  display: none;
  padding-left: 20px;
  margin-top: 19px;
}

.nav-sub > .fsElementContent li:last-child > .fsNavPageInfo {
  padding-bottom: 0;
}

.nav-sub > .fsElementContent .fsNavLevel1 {
  padding: 16px 27px;
  -webkit-box-shadow: inset 2px 0 0 0 #ccd3e1;
          box-shadow: inset 2px 0 0 0 #ccd3e1;
}

.nav-sub > .fsElementContent .fsNavLevel1 li {
  border-bottom: 1px solid #d2d3d5;
  margin-bottom: 12px;
  padding-bottom: 12px;
}

.nav-sub > .fsElementContent .fsNavLevel1 li:last-child {
  border: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.nav-sub > .fsElementContent .fsNavLevel1 > li {
  position: relative;
  padding-bottom: 12px;
  border-bottom: 1px solid #d2d3d5;
}

.nav-sub > .fsElementContent .fsNavLevel1 > li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.nav-sub > .fsElementContent .fsNavLevel1 > li:before {
  content: "";
  position: absolute;
  top: -17px;
  left: -27px;
  width: 2px;
  height: calc(100% + 17px);
  background: transparent;
  -webkit-transition: 0.3s background;
  transition: 0.3s background;
}

.nav-sub > .fsElementContent .fsNavLevel1 > li:last-child {
  border-bottom: 0;
}

.nav-sub > .fsElementContent .fsNavLevel1 > li:last-child:before {
  height: calc(100% + 34px);
}

.nav-sub > .fsElementContent .fsNavLevel1 > li > a {
  padding-left: 0px;
}

.nav-sub > .fsElementContent .fsNavLevel1 .fsNavLevel2 {
  border-top: solid 1px #d2d3d5;
  padding-top: 12px;
  padding-bottom: 12px;
}

.nav-sub.active-nav > header .fsElementTitle {
  background-color: transparent;
  color: #ffffff;
}

.nav-sub.active-nav > header .fsElementTitle:after {
  content: "-";
  font-size: 1.375rem;
}

@media (min-width: 600px) {
  .nav-sub {
    display: block;
  }
}

.nav-sub > .fsElementContent {
  height: auto;
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (min-width: 600px) {
  .nav-sub > .fsElementContent {
    max-height: 9999px;
    visibility: visible;
    opacity: 1;
  }
}

.nav-sub.active-nav > .fsElementContent {
  max-height: 9999px;
  visibility: visible;
  opacity: 1;
}

.fsHeader .nav-sub {
  display: block;
  margin: 20px 20px 0;
}

@media (min-width: 600px) {
  .fsHeader .nav-sub {
    display: none;
  }
}

.nav-main {
  margin-bottom: 0;
  -ms-flex-preferred-size: 65%;
      flex-basis: 65%;
  margin-right: -10px;
}

.fsHeader .nav-main {
  display: none;
}

@media (min-width: 1100px) {
  .fsHeader .nav-main {
    display: block;
  }
}

.nav-main .fsNavLevel1 {
  overflow: visible;
  position: relative;
  margin: 0 auto;
  max-width: 1180px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (min-width: 1100px) {
  .nav-main .fsNavLevel1 {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .no-flexbox .nav-main .fsNavLevel1 {
    text-align: justify;
    font-size: 0.1px;
  }

  .no-flexbox .nav-main .fsNavLevel1 > li {
    display: inline-block;
  }

  .no-flexbox .nav-main .fsNavLevel1:after {
    content: "";
    display: inline-block;
    width: 100%;
  }

  .nav-main .fsNavLevel1 .fsNavPageInfo {
    list-style: none outside;
    text-align: left;
    margin: 0;
    padding: 0;
    background-color: rgba(47, 47, 47, 0.95);
    color: rgba(47, 47, 47, 0.95);
    visibility: hidden;
    opacity: 0;
    height: 0;
    -webkit-transition: visibility 0.5s ease-out 0.5s, opacity 0.5s ease;
    transition: visibility 0.5s ease-out 0.5s, opacity 0.5s ease;
    overflow: hidden;
    z-index: 10;
    width: 0;
  }

  .nav-main .fsNavLevel1:hover .fsNavPageInfo {
    visibility: visible;
    opacity: 1;
    height: auto;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    background: rgba(60, 63, 72, 0.96);
    display: block;
    width: 100%;
    height: auto;
    padding: 10px 15px;
    max-height: none !important;
  }

  .nav-main .fsNavLevel1:hover .fsNavPageInfo > .fsNavLevel2 {
    display: block;
  }
}

.nav-main .fsNavLevel1 > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 1100px) {
  .nav-main .fsNavLevel1 > li {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.25rem;
    line-height: 1.2;
  }
}

.nav-main .fsNavLevel1 > li > a {
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  padding: 40px 5px;
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.nav-main .fsNavLevel1 > li > a:after {
  content: "";
  position: absolute;
  bottom: 38px;
  height: 0;
  background: #df3a3e;
  z-index: 3000;
  width: 100%;
  opacity: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.nav-main .fsNavLevel1 > li > a:hover,
.nav-main .fsNavLevel1 > li > a:focus {
  text-decoration: none;
}

.nav-main .fsNavLevel1 > li:hover > a {
  color: #ffffff;
  position: relative;
  text-decoration: none;
}

.nav-main .fsNavLevel1 > li:hover > a:after {
  height: 2px;
  background-color: #df3a3e;
  opacity: 1;
  -webkit-transition: visibility 0.5s ease-out 0.5s, opacity 0.5s ease;
  transition: visibility 0.5s ease-out 0.5s, opacity 0.5s ease;
}

.nav-main .fsNavLevel1 > li:hover .fsNavPageInfo {
  background: rgba(30, 34, 51, 0.9);
}

.nav-main .fsNavLevel1 > li[class*="fsNavCurrentPage"] > a {
  color: #ffffff;
  position: relative;
}

.nav-main .fsNavLevel1 > li[class*="fsNavCurrentPage"] > a:after {
  height: 2px;
  background-color: #df3a3e;
  opacity: 1;
  -webkit-transition: visibility 0.5s ease-out 0.5s, opacity 0.5s ease;
  transition: visibility 0.5s ease-out 0.5s, opacity 0.5s ease;
}

html.js .nav-main .fsNavLevel1 > li,
html:not(.js) .nav-main .fsNavLevel1 > li.menu-item-open {
  position: relative;
}

html.js .nav-main .fsNavLevel1 > li .fsNavPageInfo,
html:not(.js) .nav-main .fsNavLevel1 > li.menu-item-open .fsNavPageInfo {
  position: absolute;
  top: 100%;
  left: 0;
  max-height: 0;
  overflow: hidden;
}

.menu-item-open html.js .nav-main .fsNavLevel1 > li .fsNavPageInfo,
.menu-item-open html:not(.js) .nav-main .fsNavLevel1 > li.menu-item-open .fsNavPageInfo {
  max-height: 9999px;
}

html.js .nav-main .fsNavLevel1 > li.menu-item-open .fsNavPageInfo {
  max-height: 9999px;
}

html:not(.js) .nav-main .fsNavLevel1 > li.menu-item-open.menu-item-open .fsNavPageInfo {
  max-height: 9999px;
}

html.js .nav-main .fsNavLevel1 > li:hover .fsNavPageInfo,
html:not(.js) .nav-main .fsNavLevel1 > li.menu-item-open:hover .fsNavPageInfo {
  background: rgba(30, 34, 51, 0.9);
}

html.js .nav-main .fsNavLevel1 > li .fsNavPageInfo,
html:not(.js) .nav-main .fsNavLevel1 > li.menu-item-open .fsNavPageInfo {
  visibility: visible;
  opacity: 1;
  height: auto;
  display: block;
  width: 100%;
  height: auto;
  background: rgba(60, 63, 72, 0.96);
  padding: 10px 15px;
  max-height: none;
}

html.js .nav-main .fsNavLevel1 > li .fsNavPageInfo > .fsNavLevel2,
html:not(.js) .nav-main .fsNavLevel1 > li.menu-item-open .fsNavPageInfo > .fsNavLevel2 {
  display: block;
}

html:not(.js) .nav-main .fsNavLevel1 > li {
  position: relative;
}

html:not(.js) .nav-main .fsNavLevel1 > li > .fsNavPageInfo {
  position: absolute;
  top: 100%;
  left: 0;
  max-height: 0;
  overflow: hidden;
}

html:not(.js) .nav-main .fsNavLevel1 > li:hover > .fsNavPageInfo {
  max-height: 9999px;
}

@media (max-width: 599px) {
  html:not(.js) .nav-main .fsNavLevel1 > li:focus > .fsNavPageInfo {
    max-height: 9999px;
  }
}

.nav-main .fsNavPageInfo {
  background: #df3a3e;
  text-align: left;
  z-index: 300;
}

.nav-main .fsNavLevel1 > li:first-child .fsNavPageInfo {
  left: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.nav-main .fsNavLevel1 > li:last-child .fsNavPageInfo {
  right: 0;
  left: auto;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.nav-main .fsNavLevel2 li {
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}

.nav-main .fsNavLevel2 li:last-child {
  border: 0;
}

.nav-main .fsNavLevel2 li a {
  display: block;
  color: #fff;
  background: transparent;
  padding: 15px 0;
  font-family: "proxima-nova", sans-serif;
  font-size: 0.8125rem;
}

@media (max-width: 999px) {
  .nav-main .fsNavLevel2 li a {
    font-size: 0.75rem;
  }
}

.nav-main .fsNavLevel2 li[class*="fsNavCurrentPage"] > a {
  color: #d2d3d5;
  background: transparent;
}

.nav-main .fsNavLevel2 li[class*="fsNavCurrentPage"] > a:after {
  height: 2px;
  background-color: #df3a3e;
  opacity: 1;
  -webkit-transition: visibility 0.5s ease-out 0.5s, opacity 0.5s ease;
  transition: visibility 0.5s ease-out 0.5s, opacity 0.5s ease;
}

.drawer-ribbon {
  position: relative;
  height: 50px;
}

@media (min-width: 1100px) {
  .drawer-ribbon {
    display: none;
  }
}

.mobile-toggle {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border: 0;
  background: none;
  margin: 0;
  padding: 0;
  max-width: 50px;
}

.mobile-toggle:before,
.mobile-toggle:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  width: 50%;
  content: "";
  background: #fff;
}

.mobile-toggle:before {
  margin-top: -0.25em;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: margin-top 0.3s, -webkit-transform 0.3s;
  transition: margin-top 0.3s, -webkit-transform 0.3s;
  transition: margin-top 0.3s, transform 0.3s;
  transition: margin-top 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.mobile-toggle:after {
  -webkit-box-shadow: 0 0.25em 0 0 #fff;
          box-shadow: 0 0.25em 0 0 #fff;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
  transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
  transition: box-shadow 0.3s, transform 0.3s;
  transition: box-shadow 0.3s, transform 0.3s, -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
}

.drawer-is-active .mobile-toggle:before {
  margin-top: 0;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer-is-active .mobile-toggle:after {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

#fsMenu {
  position: absolute;
  z-index: 500;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .3s, visibility .3s, -webkit-transform .3s;
  transition: opacity .3s, visibility .3s, -webkit-transform .3s;
  transition: opacity .3s, visibility .3s, transform .3s;
  transition: opacity .3s, visibility .3s, transform .3s, -webkit-transform .3s;
  top: 0;
  right: 0;
  -webkit-transform: translate3d(20%, 0, 0);
          transform: translate3d(20%, 0, 0);
  -webkit-transform: translate(20%, 0);
      -ms-transform: translate(20%, 0);
          transform: translate(20%, 0);
  z-index: 99999;
  top: 47px;
  height: calc(100vh + 47px);
  max-width: 37.5em;
  background: #002269;
  padding-bottom: 200px;
  overflow: auto;
}

@media (max-width: 599px) {
  #fsMenu {
    top: 53px;
  }
}

.drawer-is-active #fsMenu {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

.menu-trigger-container {
  margin-bottom: 0;
  top: 60px;
  right: 20px;
}

@media (min-width: 1100px) {
  .menu-trigger-container {
    display: none;
  }
}

@media (max-width: 1099px) {
  #fsHeader .menu-trigger-container {
    padding: 0;
  }
}

#fsMenu .menu-trigger-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#fsMenu .menu-trigger-container .mobile-toggle {
  margin-left: auto;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  padding: 38px;
}

#fsMenu .menu-trigger-container .mobile-toggle:before,
#fsMenu .menu-trigger-container .mobile-toggle:after {
  left: 40px;
  top: 32px;
}

.menu-trigger-container button {
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
      align-items: stretch;
  -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;
  position: relative;
  padding-right: 20px;
}

.menu-trigger-container button span {
  display: none;
}

.mobile-toggle {
  right: 0px;
  z-index: 2;
  left: auto;
  top: 0px;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.mobile-toggle:before,
.mobile-toggle:after {
  height: 2px;
  width: 24px;
  background: #ffffff;
  right: 0;
  border-radius: 2px;
}

.mobile-toggle:before {
  margin-top: -0.46875em;
}

.mobile-toggle:after {
  -webkit-box-shadow: 0 0.46875em 0 0 #ffffff;
          box-shadow: 0 0.46875em 0 0 #ffffff;
}

.nav-mobile-utility {
  margin-top: 85px;
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.nav-mobile-utility .fsNavLevel1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav-mobile-utility .fsNavLevel1 li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
  border-right: 1px solid #99a7c3;
}

.nav-mobile-utility .fsNavLevel1 li:last-child {
  border: 0;
}

.nav-mobile-utility .fsNavLevel1 li a {
  color: #99a7c3;
  font-family: "proxima-nova-extra-condensed", sans-serif;
  font-weight: 700;
  padding: 0;
  line-height: 1;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.nav-main-mobile {
  padding: 20px;
}

.nav-main-mobile .fsNavLevel1 li {
  margin-bottom: 14px;
}

.nav-main-mobile .fsNavLevel1 li:last-child {
  margin-bottom: 0;
}

.nav-main-mobile .fsNavLevel1 li.expanded > a,
.nav-main-mobile .fsNavLevel1 li.active > a {
  color: #ffffff;
}

.nav-main-mobile .fsNavLevel1 li.fsNavParentPage.expanded > .fsNavPageInfo {
  display: block;
}

.nav-main-mobile .fsNavLevel1 li.fsNavParentPage.active > a > .drop-trigger:before {
  content: "\F107";
}

.nav-main-mobile .fsNavLevel1 li.fsNavParentPage > a {
  position: relative;
  padding-right: 22px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
}

.nav-main-mobile .fsNavLevel1 li a {
  padding: 0;
  color: #99a7c3;
  text-decoration: none;
}

.nav-main-mobile .fsNavLevel1 li a:hover,
.nav-main-mobile .fsNavLevel1 li a:focus {
  color: #ffffff;
}

.nav-main-mobile .fsNavLevel1 li ul {
  padding-top: 25px;
  padding-left: 20px;
  padding-right: 20px;
}

.nav-main-mobile .fsNavLevel1 li ul li a {
  font-size: 1rem;
  line-height: 1.334;
  font-weight: 400;
}

.nav-main-mobile .fsNavLevel1 > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 14px;
  margin-bottom: 14px;
}

.nav-main-mobile .fsNavLevel1 > li > a {
  font-size: 1.0625rem;
  line-height: 1.1765;
  text-transform: uppercase;
  font-weight: 400;
}

.nav-main-mobile .fsNavLevel2 li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 14px;
}

.nav-main-mobile .fsNavLevel2 li:last-child {
  border: 0;
}

.nav-main-mobile .fsNavLevel2 li.fsNavParentPage.expanded > .fsNavPageInfo {
  display: block;
}

.nav-main-mobile .fsNavLevel2 li.fsNavParentPage.active {
  color: #ffffff;
  padding-bottom: 0;
}

.nav-main-mobile .fsNavLevel2 li.fsNavParentPage.active > a > .drop-trigger:before {
  content: "-";
  font-size: 1.5rem;
  line-height: 0.5;
}

.nav-main-mobile .fsNavLevel2 li.fsNavParentPage > a {
  position: relative;
  padding-right: 22px;
  font-family: "proxima-nova", sans-serif;
  font-size: 1rem;
  line-height: 1.334;
}

.nav-main-mobile .fsNavLevel2 li.fsNavParentPage > a .drop-trigger:before {
  content: "+";
  font-size: 1rem;
  height: 22px;
}

.nav-main-mobile .fsNavLevel2 li > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.nav-main-mobile .fsNavLevel2 li > li .fsNavLevel3 {
  padding-left: 0;
  padding-right: 0;
}

.nav-main-mobile .drop-trigger {
  border: 0;
  background: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 22px;
  height: 22px;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  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;
  color: inherit;
}

.nav-main-mobile .drop-trigger:before {
  content: "\F105";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-size: 1.125rem;
}

.nav-main-mobile .fsNavPageInfo {
  display: none;
}

.nav-utility-header .fsNavLevel1 li {
  margin-bottom: 20px;
}

.nav-utility-header .fsNavLevel1 li:last-child {
  margin-bottom: 0;
}

.nav-utility-header .fsNavLevel1 li.expanded > a,
.nav-utility-header .fsNavLevel1 li.active > a {
  color: #4d6496;
  text-decoration: underline;
}

.nav-utility-header .fsNavLevel1 li.fsNavParentPage.expanded > .fsNavPageInfo {
  display: block;
}

.nav-utility-header .fsNavLevel1 li.fsNavParentPage > a {
  position: relative;
  padding-right: 20px;
}

.nav-utility-header .fsNavLevel1 li a {
  padding: 0;
  color: #fff;
  letter-spacing: 0.3px;
  text-decoration: none;
}

.nav-utility-header .fsNavLevel1 li a:hover,
.nav-utility-header .fsNavLevel1 li a:focus {
  color: #4d6496;
  text-decoration: underline;
}

.nav-utility-header .fsNavLevel1 li ul {
  padding-top: 25px;
  padding-left: 20px;
}

.nav-utility-header .fsNavLevel1 li ul li a {
  font-size: 0.9375rem;
  line-height: 1.334;
  letter-spacing: 0.5px;
}

.nav-utility-header .fsNavLevel1 > li {
  margin-bottom: 25px;
}

.nav-utility-header .fsNavLevel1 > li > a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8125rem;
  line-height: 1.23077;
  padding: 0;
}

.nav-utility-header .fsNavLevel1 > li > a:hover,
.nav-utility-header .fsNavLevel1 > li > a:focus {
  color: #df3a3e;
  text-decoration: underline;
}

.nav-utility-header .drop-trigger {
  border: 0;
  background: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -5px;
  width: 20px;
  height: 20px;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  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;
  color: inherit;
}

.nav-utility-header .drop-trigger:before {
  content: "\F067";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-size: 0.8125rem;
}

.nav-utility-header .fsNavPageInfo {
  display: none;
}

body.drawer-is-active #fsPageWrapper {
  overflow: hidden;
  height: 100vh;
}

.nav-social .fsNavLevel1 {
  font-size: 0;
}

.nav-social .fsNavLevel1,
.nav-social .fsNavLevel1 ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-social .fsNavLevel1 li {
  margin: 0;
  padding: 0;
}

.nav-social .fsNavLevel1 li {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}

@media (min-width: 700px) {
  .nav-social .fsNavLevel1 li:not(:last-child) {
    margin-right: 13px;
    margin-left: 0;
  }
}

.nav-social .fsNavLevel1 [href*="facebook"]:before {
  content: "\F09A";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
}

.nav-social .fsNavLevel1 [href*="instagram"]:before {
  content: "\F16D";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
}

.nav-social .fsNavLevel1 [href*="linkedin"]:before {
  content: "\F0E1";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
}

.nav-social .fsNavLevel1 [href*="pinterest"]:before {
  content: "\F0D2";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
}

.nav-social .fsNavLevel1 [href*="tumblr"]:before {
  content: "\F173";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
}

.nav-social .fsNavLevel1 [href*="twitter"]:before {
  content: "\F099";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
}

.nav-social .fsNavLevel1 [href*="vimeo"]:before {
  content: "\F27D";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
}

.nav-social .fsNavLevel1 [href*="vine"]:before {
  content: "\F1CA";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
}

.nav-social .fsNavLevel1 [href*="youtube"]:before {
  content: "\F16A";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
}

.nav-social .fsNavLevel1 [href*="googleplus"]:before {
  content: "\F0D5";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
}

.nav-social .fsNavLevel1 [href*="wechat"]:before {
  content: "\F1D7";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
}

.nav-social .fsNavLevel1 [href*="flickr"]:before {
  content: "\F16E";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
}

.nav-social .fsNavLevel1 [href*="wordpress"]:before {
  content: "\F19A";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
}

.nav-social .fsNavLevel1 [href*="snapchat"]:before {
  content: "\E904";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
}

.nav-social .fsNavLevel1 [href*="rss"]:before {
  content: "\F09E";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
}

.nav-social .fsNavLevel1 [href*="facebook"]:hover,
.nav-social .fsNavLevel1 [href*="facebook"]:focus {
  background: #ffffff;
  border-color: #ffffff;
}

.nav-social .fsNavLevel1 [href*="facebook"]:hover:before,
.nav-social .fsNavLevel1 [href*="facebook"]:focus:before {
  color: #002269;
}

.nav-social .fsNavLevel1 [href*="instagram"]:hover,
.nav-social .fsNavLevel1 [href*="instagram"]:focus {
  background: #ffffff;
  border-color: #ffffff;
}

.nav-social .fsNavLevel1 [href*="instagram"]:hover:before,
.nav-social .fsNavLevel1 [href*="instagram"]:focus:before {
  color: #002269;
}

.nav-social .fsNavLevel1 [href*="linkedin"]:hover,
.nav-social .fsNavLevel1 [href*="linkedin"]:focus {
  background: #ffffff;
  border-color: #ffffff;
}

.nav-social .fsNavLevel1 [href*="linkedin"]:hover:before,
.nav-social .fsNavLevel1 [href*="linkedin"]:focus:before {
  color: #002269;
}

.nav-social .fsNavLevel1 [href*="pinterest"]:hover,
.nav-social .fsNavLevel1 [href*="pinterest"]:focus {
  background: #ffffff;
  border-color: #ffffff;
}

.nav-social .fsNavLevel1 [href*="pinterest"]:hover:before,
.nav-social .fsNavLevel1 [href*="pinterest"]:focus:before {
  color: #002269;
}

.nav-social .fsNavLevel1 [href*="tumblr"]:hover,
.nav-social .fsNavLevel1 [href*="tumblr"]:focus {
  background: #ffffff;
  border-color: #ffffff;
}

.nav-social .fsNavLevel1 [href*="tumblr"]:hover:before,
.nav-social .fsNavLevel1 [href*="tumblr"]:focus:before {
  color: #002269;
}

.nav-social .fsNavLevel1 [href*="twitter"]:hover,
.nav-social .fsNavLevel1 [href*="twitter"]:focus {
  background: #ffffff;
  border-color: #ffffff;
}

.nav-social .fsNavLevel1 [href*="twitter"]:hover:before,
.nav-social .fsNavLevel1 [href*="twitter"]:focus:before {
  color: #002269;
}

.nav-social .fsNavLevel1 [href*="vimeo"]:hover,
.nav-social .fsNavLevel1 [href*="vimeo"]:focus {
  background: #ffffff;
  border-color: #ffffff;
}

.nav-social .fsNavLevel1 [href*="vimeo"]:hover:before,
.nav-social .fsNavLevel1 [href*="vimeo"]:focus:before {
  color: #002269;
}

.nav-social .fsNavLevel1 [href*="vine"]:hover,
.nav-social .fsNavLevel1 [href*="vine"]:focus {
  background: #ffffff;
  border-color: #ffffff;
}

.nav-social .fsNavLevel1 [href*="vine"]:hover:before,
.nav-social .fsNavLevel1 [href*="vine"]:focus:before {
  color: #002269;
}

.nav-social .fsNavLevel1 [href*="youtube"]:hover,
.nav-social .fsNavLevel1 [href*="youtube"]:focus {
  background: #ffffff;
  border-color: #ffffff;
}

.nav-social .fsNavLevel1 [href*="youtube"]:hover:before,
.nav-social .fsNavLevel1 [href*="youtube"]:focus:before {
  color: #002269;
}

.nav-social .fsNavLevel1 [href*="googleplus"]:hover,
.nav-social .fsNavLevel1 [href*="googleplus"]:focus {
  background: #ffffff;
  border-color: #ffffff;
}

.nav-social .fsNavLevel1 [href*="googleplus"]:hover:before,
.nav-social .fsNavLevel1 [href*="googleplus"]:focus:before {
  color: #002269;
}

.nav-social .fsNavLevel1 [href*="wechat"]:hover,
.nav-social .fsNavLevel1 [href*="wechat"]:focus {
  background: #ffffff;
  border-color: #ffffff;
}

.nav-social .fsNavLevel1 [href*="wechat"]:hover:before,
.nav-social .fsNavLevel1 [href*="wechat"]:focus:before {
  color: #002269;
}

.nav-social .fsNavLevel1 [href*="flickr"]:hover,
.nav-social .fsNavLevel1 [href*="flickr"]:focus {
  background: #ffffff;
  border-color: #ffffff;
}

.nav-social .fsNavLevel1 [href*="flickr"]:hover:before,
.nav-social .fsNavLevel1 [href*="flickr"]:focus:before {
  color: #002269;
}

.nav-social .fsNavLevel1 [href*="wordpress"]:hover,
.nav-social .fsNavLevel1 [href*="wordpress"]:focus {
  background: #ffffff;
  border-color: #ffffff;
}

.nav-social .fsNavLevel1 [href*="wordpress"]:hover:before,
.nav-social .fsNavLevel1 [href*="wordpress"]:focus:before {
  color: #002269;
}

.nav-social .fsNavLevel1 [href*="snapchat"]:hover,
.nav-social .fsNavLevel1 [href*="snapchat"]:focus {
  background: #ffffff;
  border-color: #ffffff;
}

.nav-social .fsNavLevel1 [href*="snapchat"]:hover:before,
.nav-social .fsNavLevel1 [href*="snapchat"]:focus:before {
  color: #002269;
}

.nav-social .fsNavLevel1 [href*="rss"]:hover,
.nav-social .fsNavLevel1 [href*="rss"]:focus {
  background: #ffffff;
  border-color: #ffffff;
}

.nav-social .fsNavLevel1 [href*="rss"]:hover:before,
.nav-social .fsNavLevel1 [href*="rss"]:focus:before {
  color: #002269;
}

.nav-social .fsNavLevel1 a {
  display: block;
  position: relative;
  border: 2px solid #ffffff;
  height: 50px;
  width: 50px;
  border-radius: 100%;
}

.nav-social .fsNavLevel1 a:before {
  color: #ffffff;
  font-size: 1.5625rem;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.nav-social .fsNavLevel1 [href*="plus.google.com"]:before {
  content: "\F0D5";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
}

.nav-social .fsNavLevel1 [href*="plus.google.com"]:hover,
.nav-social .fsNavLevel1 [href*="plus.google.com"]:focus {
  background: #db4f46;
  border-color: #db4f46;
}

.nav-social .fsNavLevel1 [href*="plus.google.com"]:hover:before,
.nav-social .fsNavLevel1 [href*="plus.google.com"]:focus:before {
  color: #fff;
}

.nav-utility-header {
  background: #e6e9f0;
  position: relative;
  width: 100%;
  margin-bottom: 0;
  padding: 7px 15px 7px 0;
}

@media (min-width: 600px) {
  .nav-utility-header {
    padding: 5px 30px;
  }
}

@media (min-width: 700px) {
  .nav-utility-header {
    padding: 5px 28px;
  }
}

@media (min-width: 1100px) {
  .nav-utility-header {
    padding: 5px 60px;
  }
}

.nav-utility-header > .fsElementContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 700px) {
  .nav-utility-header > .fsElementContent {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.nav-utility-header .nav-util-left,
.nav-utility-header .nav-util-right {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-utility-header .nav-util-left > .fsElementContent,
.nav-utility-header .nav-util-right > .fsElementContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
}

.nav-utility-header .nav-util-left > .fsElementContent .fsNavLevel1,
.nav-utility-header .nav-util-right > .fsElementContent .fsNavLevel1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1180px;
}

.nav-utility-header .nav-util-left > .fsElementContent .fsNavLevel1 li,
.nav-utility-header .nav-util-right > .fsElementContent .fsNavLevel1 li {
  margin-bottom: 0;
}

.nav-utility-header .nav-util-left > .fsElementContent .fsNavLevel1 a,
.nav-utility-header .nav-util-right > .fsElementContent .fsNavLevel1 a {
  position: relative;
  padding: 10px 5px;
  font-size: 0.875rem;
  line-height: 1.21429;
  font-family: "proxima-nova-extra-condensed", sans-serif;
  color: #1e2233;
  margin-right: 40px;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 699px) {
  .nav-utility-header .nav-util-left > .fsElementContent .fsNavLevel1 a,
  .nav-utility-header .nav-util-right > .fsElementContent .fsNavLevel1 a {
    margin-right: 25px;
  }
}

.nav-utility-header .nav-util-left > .fsElementContent .fsNavLevel1 a:after,
.nav-utility-header .nav-util-right > .fsElementContent .fsNavLevel1 a:after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 9px;
  left: 0;
  right: 0;
  background: #df3a3e;
}

.nav-utility-header .nav-util-left > .fsElementContent .fsNavLevel1 a:hover,
.nav-utility-header .nav-util-left > .fsElementContent .fsNavLevel1 a:focus,
.nav-utility-header .nav-util-right > .fsElementContent .fsNavLevel1 a:hover,
.nav-utility-header .nav-util-right > .fsElementContent .fsNavLevel1 a:focus {
  color: #df3a3e;
  text-decoration: none;
}

.nav-utility-header .nav-util-left > .fsElementContent .fsNavLevel1 a:hover:after,
.nav-utility-header .nav-util-left > .fsElementContent .fsNavLevel1 a:focus:after,
.nav-utility-header .nav-util-right > .fsElementContent .fsNavLevel1 a:hover:after,
.nav-utility-header .nav-util-right > .fsElementContent .fsNavLevel1 a:focus:after {
  background: #0b0e22;
}

@media (max-width: 699px) {
  .nav-utility-header .nav-util-left {
    display: none;
  }
}

.nav-utility-header .nav-util-right {
  padding-left: 20px;
}

@media (min-width: 700px) {
  .nav-utility-header .nav-util-right {
    margin-left: auto;
    padding-left: 0;
  }
}

.nav-utility-footer .fsNavLevel1,
.nav-utility-footer .fsNavLevel1 ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-utility-footer .fsNavLevel1 li {
  margin: 0;
  padding: 0;
}

/*! structure - header v0.0.1 */

#fsHeader {
  position: relative;
  z-index: 900;
}

#fsHeader .site-fixed-container {
  margin-bottom: 0;
}

@media (min-width: 1000px) {
  #fsHeader .site-fixed-container {
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
    -webkit-transition: 0.4s top;
    transition: 0.4s top;
    margin-top: -110px;
  }

  #fsHeader .site-fixed-container.fixed {
    position: relative;
    background: #002269;
    position: fixed;
    top: 0;
    margin-top: 0;
    -webkit-transition: 0.5s margin;
    transition: 0.5s margin;
    z-index: 900;
  }

  #fsHeader .site-fixed-container.fixed .logo-container {
    background: #002269;
  }
}

body.fsComposeMode #fsHeader .site-fixed-container.fixed {
  position: relative;
}

.skip-link {
  margin: 0;
}

.skip-link a {
  position: fixed;
  top: 0;
  left: 0;
  padding: 1em;
  background: #000000;
  color: #fff;
  font-size: 1em;
  line-height: 1;
  text-decoration: underline;
  -webkit-transition: -webkit-transform 0.1s ease-in;
  transition: -webkit-transform 0.1s ease-in;
  transition: transform 0.1s ease-in;
  transition: transform 0.1s ease-in, -webkit-transform 0.1s ease-in;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  z-index: 9000;
}

.skip-link a:focus {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.logo-container {
  padding-left: 17px;
  padding-right: 20px;
  background: #002269;
  margin-bottom: 0;
}

@media (min-width: 700px) {
  .logo-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 1100px) {
  .logo-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 599px) {
  .logo-container > .fsElementContent {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 600px) {
  .logo-container > .fsElementContent {
    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;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.logo-container .logo-title {
  width: 214px;
  margin-bottom: 0;
}

@media (min-width: 600px) {
  .logo-container .logo-title {
    width: 214px;
    z-index: 10;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (min-width: 800px) {
  .logo-container .logo-title {
    width: 300px;
    z-index: 10;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.logo-container .logo-title img {
  width: 100%;
  max-width: none;
}

.logo-container .fsImage {
  line-height: 0;
}

.site-info-container {
  position: relative;
  margin: 0 auto;
  max-width: 1180px;
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}

.site-info-container a {
  display: block;
  padding: 20px 0;
  color: transparent;
  background: url(images/logo.png) no-repeat 0 50%;
}

.site-info-container a:hover {
  color: transparent;
}

#fsFooter {
  padding: 50px 20px 75px 20px;
  color: #fff;
  width: 100%;
  font-size: 0.9375rem;
}

@media (min-width: 700px) {
  #fsFooter {
    padding: 50px 20px 60px 20px;
  }
}

@media (min-width: 800px) {
  #fsFooter {
    padding: 80px 20px 40px 20px;
  }
}

#fsFooter a {
  color: #ffffff;
}

#fsFooter .fsElement {
  margin-bottom: 30px;
}

@media (max-width: 699px) {
  #fsFooter .fsElement {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }
}

#fsFooter .fsBanner {
  position: relative;
  margin: 0 auto;
  max-width: 1180px;
  display: block;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#fsFooter .fsBanner:after {
  content: normal;
}

body.fsDraftMode #fsFooter .fsBanner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

body.fsDraftMode #fsFooter .fsBanner .fsElementActionButtonContainer {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}

@media (max-width: 799px) {
  #fsFooter .hidden-mobile {
    display: none;
  }
}

@media (min-width: 600px) {
  #fsFooter .nav-social {
    margin-bottom: 20px;
  }
}

@media (max-width: 699px) {
  #fsFooter .nav-social {
    text-align: center;
    margin-bottom: 60px;
  }
}

@media (max-width: 699px) {
  #fsFooter .nav-social li {
    margin-left: 7px;
    margin-right: 7px;
  }
}

#fsFooter .nav-social .fsElementHeaderContent {
  color: #ffffff;
  font-size: 1.1875rem;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 0;
}

#fsFooter .footer-main-container {
  width: 100%;
  margin-bottom: 0;
}

#fsFooter .footer-main-container .address-container {
  padding: 0;
  text-align: center;
}

@media (max-width: 799px) {
  #fsFooter .footer-main-container .address-container {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 800px) {
  #fsFooter .footer-main-container .address-container {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
    text-align: left;
    padding-left: 0;
    padding-right: 10px;
  }
}

#fsFooter .footer-main-container .address-container > header {
  padding-bottom: 10px;
}

@media (min-width: 700px) {
  #fsFooter .footer-main-container .address-container > header {
    padding-bottom: 5px;
    margin-bottom: 15px;
    display: inline-block;
  }
}

@media (min-width: 800px) {
  #fsFooter .footer-main-container .address-container > header {
    padding-bottom: 0;
    margin-bottom: 0;
    display: block;
  }
}

@media (max-width: 699px) {
  #fsFooter .footer-main-container .address-container > header > .fsElementTitle {
    padding: 0;
    margin: 0;
  }
}

@media (max-width: 799px) {
  #fsFooter .footer-main-container .address-container > header > .fsElementTitle {
    margin-bottom: 10px;
  }
}

#fsFooter .footer-main-container > .fsElementContent {
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
}

#fsFooter .footer-main-container .expanding-footer-lists > .fsElementContent {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#fsFooter .footer-main-container .expanding-footer-lists .fsElementTitle {
  color: #ffffff;
  font-size: 1.125rem;
  position: relative;
}

@media (max-width: 699px) {
  #fsFooter .footer-main-container .expanding-footer-lists .fsElementTitle {
    display: inline-block;
    padding: 0;
    margin: 0;
  }
}

@media (min-width: 800px) {
  #fsFooter .footer-main-container .expanding-footer-lists .fsElementTitle {
    margin-bottom: 20px;
  }
}

#fsFooter .footer-main-container .expanding-footer-lists .fsElementTitle:after {
  content: "";
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
}

#fsFooter .footer-main-container .expanding-footer-lists .nav-footer-links {
  text-align: left;
  margin-bottom: 7px;
}

@media (min-width: 700px) {
  #fsFooter .footer-main-container .expanding-footer-lists .nav-footer-links {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 800px) {
  #fsFooter .footer-main-container .expanding-footer-lists .nav-footer-links {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }

  #fsFooter .footer-main-container .expanding-footer-lists .nav-footer-links:last-child {
    padding-right: 0;
  }
}

@media (min-width: 700px) {
  #fsFooter .footer-main-container .expanding-footer-lists .nav-footer-links header > .fsElementTitle {
    margin-bottom: 15px;
  }
}

@media (min-width: 700px) {
  #fsFooter .footer-main-container .expanding-footer-lists .nav-footer-links .drop-trigger {
    display: none;
  }

  #fsFooter .footer-main-container .expanding-footer-lists .nav-footer-links nav {
    display: block !important;
  }
}

#fsFooter .footer-main-container .expanding-footer-lists .nav-footer-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

#fsFooter .footer-main-container .expanding-footer-lists .nav-footer-links li:last-child {
  border: 0;
}

#fsFooter .footer-main-container .expanding-footer-lists .nav-footer-links li a {
  padding: 1px 0;
  display: block;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.46667;
}

@media (min-width: 700px) {
  #fsFooter .footer-main-container .expanding-footer-lists .nav-footer-links li a {
    padding: 7px 0;
  }
}

#fsFooter .footer-flex {
  position: relative;
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
  width: 100%;
}

@media (max-width: 599px) {
  #fsFooter .footer-flex {
    margin-top: 80px;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 799px) {
  #fsFooter .footer-flex {
    margin-top: 80px;
  }
}

#fsFooter .footer-flex > .fsElementContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

@media (max-width: 599px) {
  #fsFooter .footer-flex > .fsElementContent {
    -ms-flex-item-align: center;
        align-self: center;
  }
}

@media (max-width: 699px) {
  #fsFooter .footer-flex > .fsElementContent > .fsElement:first-of-type {
    margin-bottom: 30px;
  }
}

#fsFooter .footer-flex > .fsElementContent .fsNavLevel1 {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 600px) {
  #fsFooter .footer-flex > .fsElementContent .fsNavLevel1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#fsFooter .footer-utility {
  position: relative;
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
  width: 100%;
  font-size: 0.875rem;
}

@media (min-width: 600px) {
  #fsFooter .footer-utility {
    padding-left: 0;
    padding-right: 20px;
  }
}

#fsFooter .footer-utility > .fsElementContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

@media (max-width: 799px) {
  #fsFooter .footer-utility > .fsElementContent {
    font-size: 14px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
}

@media (max-width: 699px) {
  #fsFooter .footer-utility > .fsElementContent > .fsElement {
    margin-bottom: 20px;
  }
}

#fsFooter .footer-utility > .fsElementContent .fsNavLevel1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 10px;
}

#fsFooter .footer-utility > .fsElementContent .fsNavLevel1 a {
  color: #ffffff;
  padding: 0 7px;
  text-decoration: underline;
}

#fsFooter .footer-utility > .fsElementContent .fsNavLevel1 a:hover {
  text-decoration: none;
}

#fsFooter .utility-footer {
  z-index: 9;
}

@media (max-width: 699px) {
  #fsFooter .nav-footer-links {
    display: block;
    width: 100%;
  }

  #fsFooter .nav-footer-links .drop-trigger {
    border: 0;
    background: none;
    margin: 0;
    padding: 0;
    display: block;
    position: absolute;
    top: 0;
    right: -3px;
    font-size: 0;
    line-height: 1;
    width: 100%;
    height: 40px;
    cursor: pointer;
    color: #ffffff;
    -webkit-transition: 0.3s color;
    transition: 0.3s color;
  }

  #fsFooter .nav-footer-links .drop-trigger:before {
    content: "\F105";
    font-family: "IcoMoon";
    font-smoothing: antialiased;
    font-weight: normal;
    speak: none;
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    right: 5px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    color: #99a7c3;
  }

  #fsFooter .nav-footer-links.active .drop-trigger:before {
    content: "\F107";
    font-family: "IcoMoon";
    font-smoothing: antialiased;
    font-weight: normal;
    speak: none;
    color: #ffffff;
  }

  #fsFooter .nav-footer-links > .fsElementContent {
    max-height: 9999px;
    visibility: visible;
    opacity: 1;
  }

  #fsFooter .nav-footer-links > header {
    position: relative;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    padding-right: 0;
    display: block;
    padding-bottom: 5px;
  }

  #fsFooter .nav-footer-links > header:before {
    content: "";
    position: absolute;
    top: -17px;
    left: -27px;
    width: 2px;
    height: calc(100% + 17px);
    background: transparent;
    -webkit-transition: 0.3s background;
    transition: 0.3s background;
  }

  #fsFooter .nav-footer-links .fsElementTitle:after {
    display: none;
  }

  #fsFooter .nav-footer-links .fsElementContent p {
    margin-bottom: 10px;
  }

  #fsFooter .nav-footer-links .fsElementContent div[itemprop="telephone"] {
    margin-top: 15px;
  }

  #fsFooter .nav-footer-links .fsElementContent nav {
    display: none;
    margin-top: 10px;
  }

  #fsFooter .nav-footer-links .fsElementContent .fsNavLevel1 {
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0 10px 16px 10px;
  }

  #fsFooter .nav-footer-links .fsElementContent .fsNavLevel1 > li {
    padding-bottom: 5px;
    margin-bottom: 5px;
  }

  #fsFooter .nav-footer-links .fsElementContent .fsNavLevel1 > li a {
    font-size: 0.9375rem;
    font-weight: 400;
  }
}

.footer-campus {
  margin-bottom: 5px;
  font-weight: 600;
}

@media (min-width: 800px) {
  .footer-campus {
    margin-bottom: 15px;
  }
}

@media (max-width: 799px) {
  .footer-address br {
    display: none;
  }
}

.footer-phone {
  margin-top: 15px;
}

@media (min-width: 700px) {
  .footer-phone {
    margin-bottom: 20px;
  }
}

.school-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 700px) {
  .school-details {
    padding-left: 10px;
  }
}

@media (min-width: 800px) {
  .school-details {
    padding-left: 0;
  }
}

.school-details img {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 215px;
}

.school-details [itemprop="streetAddress"] {
  display: block;
}

.school-details a {
  color: inherit;
}

/*! structure - layouts v0.0.1 */

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
}

html {
  background: #002269;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "proxima-nova", sans-serif;
}

body {
  font-size: 16px;
  line-height: 26px;
  color: #3c3f48;
}

#fsPageWrapper {
  position: relative;
  min-width: 320px;
  overflow-x: hidden;
}

body.fsComposeMode #fsPageWrapper {
  overflow: visible;
}

#fsPageBodyWrapper {
  padding-right: 1.25em;
  padding-left: 1.25em;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-top: 40px;
  background: #fff;
}

@media (min-width: 800px) {
  #fsPageBodyWrapper {
    padding-top: 80px;
  }
}

#fsPageBody {
  position: relative;
  margin: 0 auto;
  max-width: 1180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 600px) {
  #fsPageBody {
    display: block;
  }
}

@media (min-width: 800px) {
  #fsPageBody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#fsBannerLeft {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 1;
      order: 1;
  width: 100%;
  margin-bottom: 20px;
}

@media (min-width: 600px) {
  #fsBannerLeft {
    padding-right: 20px;
    width: 200px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
        order: 1;
    margin-bottom: 0;
  }
}

@media (min-width: 700px) {
  #fsBannerLeft {
    padding-right: 40px;
    width: 280px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
        order: 1;
  }
}

@media (min-width: 600px) {
  .fsHasLeftBanner.fsHasRightBanner #fsBannerLeft {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
        order: 1;
    padding-right: 20px;
    width: 200px;
  }
}

@media (min-width: 700px) {
  .fsHasLeftBanner.fsHasRightBanner #fsBannerLeft {
    padding-right: 40px;
    width: 280px;
  }
}

@media (min-width: 800px) {
  .fsHasLeftBanner.fsHasRightBanner #fsBannerLeft {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
        order: 1;
    padding-right: 20px;
    width: 200px;
  }
}

@media (min-width: 1000px) {
  .fsHasLeftBanner.fsHasRightBanner #fsBannerLeft {
    padding-right: 40px;
    width: 280px;
  }
}

#fsPageContent {
  width: 100%;
}

.fsHasRightBanner #fsPageContent {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 1;
      order: 1;
  width: 100%;
}

@media (min-width: 600px) {
  .fsHasRightBanner #fsPageContent {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
        order: 1;
    width: calc(100% - 240px);
  }
}

@media (min-width: 700px) {
  .fsHasRightBanner #fsPageContent {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
        order: 1;
    width: calc(100% - 320px);
  }
}

.fsHasLeftBanner #fsPageContent {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 1;
      order: 1;
  width: 100%;
}

@media (min-width: 600px) {
  .fsHasLeftBanner #fsPageContent {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
        order: 1;
    width: calc(100% - 200px);
  }
}

@media (min-width: 700px) {
  .fsHasLeftBanner #fsPageContent {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
        order: 1;
    width: calc(100% - 280px);
  }
}

.fsHasLeftBanner.fsHasRightBanner #fsPageContent {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 1;
      order: 1;
  margin-bottom: 20px;
  width: 100%;
}

@media (min-width: 600px) {
  .fsHasLeftBanner.fsHasRightBanner #fsPageContent {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
        order: 1;
    width: calc(100% - 200px);
  }
}

@media (min-width: 700px) {
  .fsHasLeftBanner.fsHasRightBanner #fsPageContent {
    width: calc(100% - 280px);
  }
}

@media (min-width: 800px) {
  .fsHasLeftBanner.fsHasRightBanner #fsPageContent {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
        order: 1;
    width: calc(100% - 440px);
    margin-bottom: 0;
  }
}

@media (min-width: 1000px) {
  .fsHasLeftBanner.fsHasRightBanner #fsPageContent {
    width: calc(100% - 600px);
  }
}

#fsBannerRight {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 1;
      order: 1;
  width: 100%;
  margin-bottom: 20px;
}

@media (min-width: 600px) {
  #fsBannerRight {
    padding-left: 20px;
    width: 240px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
        order: 1;
    margin-bottom: 0;
  }
}

@media (min-width: 700px) {
  #fsBannerRight {
    padding-left: 40px;
    width: 320px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
        order: 1;
  }
}

.fsHasLeftBanner.fsHasRightBanner #fsBannerRight {
  width: 100%;
  padding: 0;
}

@media (min-width: 600px) {
  .fsHasLeftBanner.fsHasRightBanner #fsBannerRight {
    width: calc(100% - 200px);
  }
}

@media (min-width: 700px) {
  .fsHasLeftBanner.fsHasRightBanner #fsBannerRight {
    width: calc(100% - 280px);
  }
}

@media (min-width: 800px) {
  .fsHasLeftBanner.fsHasRightBanner #fsBannerRight {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
        order: 1;
    padding-left: 20px;
    width: 240px;
  }
}

@media (min-width: 1000px) {
  .fsHasLeftBanner.fsHasRightBanner #fsBannerRight {
    padding-left: 40px;
    width: 320px;
  }
}

@media (min-width: 600px) {
  .fsLayout {
    margin-right: -20px;
    margin-left: -20px;
  }
}

.fsLayout .fsDiv {
  margin-bottom: 20px;
  width: 100%;
  float: none;
}

@media (min-width: 600px) {
  .fsLayout .fsDiv {
    float: left;
  }
}

@media (min-width: 600px) {
  .fsLayout .fsDiv {
    padding-right: 1.25em;
    padding-left: 1.25em;
  }
}

.fsLayout > header,
.fsLayout > footer {
  width: 100%;
}

@media (min-width: 600px) {
  .fsLayout > header,
  .fsLayout > footer {
    padding-right: 1.25em;
    padding-left: 1.25em;
  }
}

@media (min-width: 800px) {
  .fsTwoColumnLayout .fsDiv {
    width: 50%;
  }
}

@media (min-width: 900px) {
  .fsThreeColumnLayout .fsDiv {
    width: 33.33333%;
  }
}

@media (min-width: 800px) {
  .fsFourColumnLayout .fsDiv {
    width: 50%;
  }
}

@media (min-width: 1000px) {
  .fsFourColumnLayout .fsDiv {
    width: 25%;
  }
}

.fsLayout .fsStyleOneThird {
  float: none;
}

.fsLayout .fsStyleTwoThirds {
  float: none;
}

.fsLayout .fsStyleTwoThirds > .fsDiv {
  padding-left: 0;
  padding-right: 0;
  float: none;
}

@media (min-width: 600px) {
  .fsLayout .fsStyleTwoThirds > .fsTwoColumnLayout {
    margin-right: -20px;
    margin-left: -20px;
  }
}

.fsTwoColumnWideRightLayout,
.fsElephantLeftLayout {
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 600px) {
  .fsTwoColumnWideRightLayout,
  .fsElephantLeftLayout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.fsTwoColumnWideRightLayout > header,
.fsTwoColumnWideRightLayout > footer,
.fsElephantLeftLayout > header,
.fsElephantLeftLayout > footer {
  padding-left: 0;
  padding-right: 0;
}

.fsTwoColumnWideRightLayout .fsStyleOneThird,
.fsElephantLeftLayout .fsStyleOneThird {
  width: 100%;
  margin-bottom: 20px;
}

@media (min-width: 600px) {
  .fsTwoColumnWideRightLayout .fsStyleOneThird,
  .fsElephantLeftLayout .fsStyleOneThird {
    padding-left: 0;
    padding-right: 20px;
    width: 200px;
    margin-bottom: 0;
  }
}

@media (min-width: 700px) {
  .fsTwoColumnWideRightLayout .fsStyleOneThird,
  .fsElephantLeftLayout .fsStyleOneThird {
    padding-right: 40px;
    width: 280px;
  }
}

.fsTwoColumnWideRightLayout .fsStyleTwoThirds,
.fsElephantLeftLayout .fsStyleTwoThirds {
  width: 100%;
}

@media (min-width: 600px) {
  .fsTwoColumnWideRightLayout .fsStyleTwoThirds,
  .fsElephantLeftLayout .fsStyleTwoThirds {
    padding-left: 0;
    padding-right: 0;
    width: calc(100% - 200px);
  }
}

@media (min-width: 700px) {
  .fsTwoColumnWideRightLayout .fsStyleTwoThirds,
  .fsElephantLeftLayout .fsStyleTwoThirds {
    width: calc(100% - 280px);
  }
}

.fsHasTwoColumnWideRightLayout.fsHasRightBanner #fsPageContent,
.fsHasElephantLeftLayout.fsHasRightBanner #fsPageContent {
  width: 100%;
}

@media (min-width: 800px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner #fsPageContent,
  .fsHasElephantLeftLayout.fsHasRightBanner #fsPageContent {
    width: calc(100% - 240px);
  }
}

@media (min-width: 1000px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner #fsPageContent,
  .fsHasElephantLeftLayout.fsHasRightBanner #fsPageContent {
    width: calc(100% - 320px);
  }
}

.fsHasTwoColumnWideRightLayout.fsHasRightBanner #fsBannerRight,
.fsHasElephantLeftLayout.fsHasRightBanner #fsBannerRight {
  width: 100%;
  padding-left: 0;
  margin-top: 20px;
}

@media (min-width: 800px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner #fsBannerRight,
  .fsHasElephantLeftLayout.fsHasRightBanner #fsBannerRight {
    padding-left: 20px;
    width: 240px;
    margin-top: 0;
  }
}

@media (min-width: 1000px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner #fsBannerRight,
  .fsHasElephantLeftLayout.fsHasRightBanner #fsBannerRight {
    padding-left: 40px;
    width: 320px;
  }
}

@media (min-width: 600px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner .fsStyleOneThird,
  .fsHasElephantLeftLayout.fsHasRightBanner .fsStyleOneThird {
    padding-right: 20px;
    width: 200px;
  }
}

@media (min-width: 700px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner .fsStyleOneThird,
  .fsHasElephantLeftLayout.fsHasRightBanner .fsStyleOneThird {
    padding-right: 40px;
    width: 280px;
  }
}

@media (min-width: 800px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner .fsStyleOneThird,
  .fsHasElephantLeftLayout.fsHasRightBanner .fsStyleOneThird {
    padding-right: 20px;
    width: 200px;
  }
}

@media (min-width: 1000px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner .fsStyleOneThird,
  .fsHasElephantLeftLayout.fsHasRightBanner .fsStyleOneThird {
    padding-right: 40px;
    width: 280px;
  }
}

.fsHasTwoColumnWideRightLayout.fsHasRightBanner .fsStyleTwoThirds,
.fsHasElephantLeftLayout.fsHasRightBanner .fsStyleTwoThirds {
  width: 100%;
}

@media (min-width: 600px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner .fsStyleTwoThirds,
  .fsHasElephantLeftLayout.fsHasRightBanner .fsStyleTwoThirds {
    width: calc(100% - 200px);
  }
}

@media (min-width: 700px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner .fsStyleTwoThirds,
  .fsHasElephantLeftLayout.fsHasRightBanner .fsStyleTwoThirds {
    width: calc(100% - 280px);
  }
}

@media (min-width: 800px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner .fsStyleTwoThirds,
  .fsHasElephantLeftLayout.fsHasRightBanner .fsStyleTwoThirds {
    width: calc(100% - 200px);
  }
}

@media (min-width: 1000px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner .fsStyleTwoThirds,
  .fsHasElephantLeftLayout.fsHasRightBanner .fsStyleTwoThirds {
    width: calc(100% - 280px);
  }
}

@media (min-width: 800px) {
  .fsHasTwoColumnWideRightLayout.fsHasLeftBanner #fsPageContent,
  .fsHasElephantLeftLayout.fsHasLeftBanner #fsPageContent {
    width: calc(100% - 200px);
  }
}

@media (min-width: 1000px) {
  .fsHasTwoColumnWideRightLayout.fsHasLeftBanner #fsPageContent,
  .fsHasElephantLeftLayout.fsHasLeftBanner #fsPageContent {
    width: calc(100% - 280px);
  }
}

@media (min-width: 800px) {
  .fsHasTwoColumnWideRightLayout.fsHasLeftBanner #fsBannerLeft,
  .fsHasElephantLeftLayout.fsHasLeftBanner #fsBannerLeft {
    padding-right: 20px;
    width: 200px;
    margin-top: 0;
  }
}

@media (min-width: 1000px) {
  .fsHasTwoColumnWideRightLayout.fsHasLeftBanner #fsBannerLeft,
  .fsHasElephantLeftLayout.fsHasLeftBanner #fsBannerLeft {
    padding-right: 40px;
    width: 280px;
  }
}

.fsHasTwoColumnWideRightLayout.fsHasLeftBanner .fsStyleOneThird,
.fsHasElephantLeftLayout.fsHasLeftBanner .fsStyleOneThird {
  width: 100%;
  padding-right: 0;
}

@media (min-width: 800px) {
  .fsHasTwoColumnWideRightLayout.fsHasLeftBanner .fsStyleOneThird,
  .fsHasElephantLeftLayout.fsHasLeftBanner .fsStyleOneThird {
    padding-right: 20px;
    width: 200px;
  }
}

.fsHasTwoColumnWideRightLayout.fsHasLeftBanner .fsStyleTwoThirds,
.fsHasElephantLeftLayout.fsHasLeftBanner .fsStyleTwoThirds {
  width: 100%;
}

@media (min-width: 800px) {
  .fsHasTwoColumnWideRightLayout.fsHasLeftBanner .fsStyleTwoThirds,
  .fsHasElephantLeftLayout.fsHasLeftBanner .fsStyleTwoThirds {
    width: calc(100% - 200px);
  }
}

@media (min-width: 600px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerLeft,
  .fsHasElephantLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerLeft {
    padding-right: 20px;
    width: 200px;
  }
}

@media (min-width: 800px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerLeft,
  .fsHasElephantLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerLeft {
    padding-right: 20px;
    width: 200px;
  }
}

.fsHasTwoColumnWideRightLayout.fsHasRightBanner.fsHasLeftBanner #fsPageContent,
.fsHasElephantLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsPageContent {
  width: 100%;
  margin-bottom: 0;
}

@media (min-width: 600px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner.fsHasLeftBanner #fsPageContent,
  .fsHasElephantLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsPageContent {
    width: calc(100% - 200px);
  }
}

@media (min-width: 800px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner.fsHasLeftBanner #fsPageContent,
  .fsHasElephantLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsPageContent {
    width: calc(100% - 440px);
  }
}

.fsHasTwoColumnWideRightLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerRight,
.fsHasElephantLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerRight {
  width: 100%;
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 0;
}

@media (min-width: 800px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerRight,
  .fsHasElephantLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerRight {
    padding-left: 20px;
    width: 240px;
    margin-top: 0;
  }
}

.fsHasTwoColumnWideRightLayout.fsHasRightBanner.fsHasLeftBanner .fsStyleOneThird,
.fsHasElephantLeftLayout.fsHasRightBanner.fsHasLeftBanner .fsStyleOneThird {
  margin-bottom: 20px;
  width: 100%;
}

@media (min-width: 1000px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner.fsHasLeftBanner .fsStyleOneThird,
  .fsHasElephantLeftLayout.fsHasRightBanner.fsHasLeftBanner .fsStyleOneThird {
    padding-right: 20px;
    width: 200px;
    margin-bottom: 0;
  }
}

.fsHasTwoColumnWideRightLayout.fsHasRightBanner.fsHasLeftBanner .fsStyleTwoThirds,
.fsHasElephantLeftLayout.fsHasRightBanner.fsHasLeftBanner .fsStyleTwoThirds {
  margin-bottom: 20px;
  width: 100%;
  margin-bottom: 0;
}

@media (min-width: 1000px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner.fsHasLeftBanner .fsStyleTwoThirds,
  .fsHasElephantLeftLayout.fsHasRightBanner.fsHasLeftBanner .fsStyleTwoThirds {
    width: calc(100% - 200px);
  }
}

.fsTwoColumnWideLeftLayout,
.fsElephantRightLayout {
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 600px) {
  .fsTwoColumnWideLeftLayout,
  .fsElephantRightLayout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.fsTwoColumnWideLeftLayout > header,
.fsTwoColumnWideLeftLayout > footer,
.fsElephantRightLayout > header,
.fsElephantRightLayout > footer {
  padding-left: 0;
  padding-right: 0;
}

.fsTwoColumnWideLeftLayout .fsStyleOneThird,
.fsElephantRightLayout .fsStyleOneThird {
  width: 100%;
  margin-bottom: 20px;
}

@media (min-width: 600px) {
  .fsTwoColumnWideLeftLayout .fsStyleOneThird,
  .fsElephantRightLayout .fsStyleOneThird {
    padding-left: 20px;
    padding-right: 0;
    width: 240px;
    margin-bottom: 0;
  }
}

@media (min-width: 700px) {
  .fsTwoColumnWideLeftLayout .fsStyleOneThird,
  .fsElephantRightLayout .fsStyleOneThird {
    padding-left: 40px;
    width: 320px;
  }
}

.fsTwoColumnWideLeftLayout .fsStyleTwoThirds,
.fsElephantRightLayout .fsStyleTwoThirds {
  width: 100%;
}

@media (min-width: 600px) {
  .fsTwoColumnWideLeftLayout .fsStyleTwoThirds,
  .fsElephantRightLayout .fsStyleTwoThirds {
    width: calc(100% - 240px);
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 700px) {
  .fsTwoColumnWideLeftLayout .fsStyleTwoThirds,
  .fsElephantRightLayout .fsStyleTwoThirds {
    width: calc(100% - 320px);
  }
}

.fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsPageContent,
.fsHasElephantRightLayout.fsHasLeftBanner #fsPageContent {
  width: 100%;
}

@media (min-width: 600px) {
  .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsPageContent,
  .fsHasElephantRightLayout.fsHasLeftBanner #fsPageContent {
    width: calc(100% - 200px);
  }
}

@media (min-width: 700px) {
  .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsPageContent,
  .fsHasElephantRightLayout.fsHasLeftBanner #fsPageContent {
    width: calc(100% - 280px);
  }
}

@media (min-width: 800px) {
  .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsPageContent,
  .fsHasElephantRightLayout.fsHasLeftBanner #fsPageContent {
    width: calc(100% - 200px);
  }
}

@media (min-width: 1000px) {
  .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsPageContent,
  .fsHasElephantRightLayout.fsHasLeftBanner #fsPageContent {
    width: calc(100% - 280px);
  }
}

.fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsBannerLeft,
.fsHasElephantRightLayout.fsHasLeftBanner #fsBannerLeft {
  width: 100%;
  padding-left: 0;
  margin-bottom: 20px;
}

@media (min-width: 600px) {
  .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsBannerLeft,
  .fsHasElephantRightLayout.fsHasLeftBanner #fsBannerLeft {
    padding-right: 20px;
    width: 200px;
  }
}

@media (min-width: 700px) {
  .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsBannerLeft,
  .fsHasElephantRightLayout.fsHasLeftBanner #fsBannerLeft {
    padding-right: 40px;
    width: 280px;
  }
}

@media (min-width: 800px) {
  .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsBannerLeft,
  .fsHasElephantRightLayout.fsHasLeftBanner #fsBannerLeft {
    padding-right: 20px;
    width: 200px;
    margin-bottom: 0;
  }
}

@media (min-width: 1000px) {
  .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsBannerLeft,
  .fsHasElephantRightLayout.fsHasLeftBanner #fsBannerLeft {
    padding-right: 40px;
    width: 280px;
  }
}

.fsHasTwoColumnWideLeftLayout.fsHasLeftBanner .fsStyleOneThird,
.fsHasElephantRightLayout.fsHasLeftBanner .fsStyleOneThird {
  width: 100%;
  padding-left: 0;
}

@media (min-width: 800px) {
  .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner .fsStyleOneThird,
  .fsHasElephantRightLayout.fsHasLeftBanner .fsStyleOneThird {
    padding-left: 20px;
    width: 240px;
  }
}

@media (min-width: 1000px) {
  .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner .fsStyleOneThird,
  .fsHasElephantRightLayout.fsHasLeftBanner .fsStyleOneThird {
    padding-left: 40px;
    width: 320px;
  }
}

.fsHasTwoColumnWideLeftLayout.fsHasLeftBanner .fsStyleTwoThirds,
.fsHasElephantRightLayout.fsHasLeftBanner .fsStyleTwoThirds {
  margin-bottom: 20px;
  width: 100%;
}

@media (min-width: 800px) {
  .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner .fsStyleTwoThirds,
  .fsHasElephantRightLayout.fsHasLeftBanner .fsStyleTwoThirds {
    width: calc(100% - 240px);
    margin-bottom: 0;
  }
}

@media (min-width: 1000px) {
  .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner .fsStyleTwoThirds,
  .fsHasElephantRightLayout.fsHasLeftBanner .fsStyleTwoThirds {
    width: calc(100% - 320px);
  }
}

@media (min-width: 800px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner #fsPageContent,
  .fsHasElephantRightLayout.fsHasRightBanner #fsPageContent {
    width: calc(100% - 240px);
  }
}

@media (min-width: 1000px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner #fsPageContent,
  .fsHasElephantRightLayout.fsHasRightBanner #fsPageContent {
    width: calc(100% - 320px);
  }
}

@media (min-width: 800px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner #fsBannerRight,
  .fsHasElephantRightLayout.fsHasRightBanner #fsBannerRight {
    padding-left: 20px;
    width: 240px;
    margin-top: 0;
  }
}

@media (min-width: 1000px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner #fsBannerRight,
  .fsHasElephantRightLayout.fsHasRightBanner #fsBannerRight {
    padding-left: 40px;
    width: 320px;
  }
}

.fsHasTwoColumnWideLeftLayout.fsHasRightBanner .fsStyleOneThird,
.fsHasElephantRightLayout.fsHasRightBanner .fsStyleOneThird {
  width: 100%;
  padding-left: 0;
}

@media (min-width: 800px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner .fsStyleOneThird,
  .fsHasElephantRightLayout.fsHasRightBanner .fsStyleOneThird {
    padding-left: 20px;
    width: 240px;
  }
}

.fsHasTwoColumnWideLeftLayout.fsHasRightBanner .fsStyleTwoThirds,
.fsHasElephantRightLayout.fsHasRightBanner .fsStyleTwoThirds {
  width: 100%;
}

@media (min-width: 800px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner .fsStyleTwoThirds,
  .fsHasElephantRightLayout.fsHasRightBanner .fsStyleTwoThirds {
    width: calc(100% - 240px);
  }
}

.fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerRight,
.fsHasElephantRightLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerRight {
  width: 100%;
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 0;
}

@media (min-width: 800px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerRight,
  .fsHasElephantRightLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerRight {
    padding-left: 20px;
    width: 240px;
    margin-top: 0;
  }
}

.fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsPageContent,
.fsHasElephantRightLayout.fsHasRightBanner.fsHasLeftBanner #fsPageContent {
  width: 100%;
  margin-bottom: 0;
}

@media (min-width: 600px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsPageContent,
  .fsHasElephantRightLayout.fsHasRightBanner.fsHasLeftBanner #fsPageContent {
    width: calc(100% - 200px);
  }
}

@media (min-width: 800px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsPageContent,
  .fsHasElephantRightLayout.fsHasRightBanner.fsHasLeftBanner #fsPageContent {
    width: calc(100% - 440px);
  }
}

.fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerLeft,
.fsHasElephantRightLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerLeft {
  width: 100%;
  padding-left: 0;
  margin-bottom: 20px;
}

@media (min-width: 600px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerLeft,
  .fsHasElephantRightLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerLeft {
    padding-right: 20px;
    width: 200px;
    margin-bottom: 0;
  }
}

@media (min-width: 800px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerLeft,
  .fsHasElephantRightLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerLeft {
    padding-right: 20px;
    width: 200px;
  }
}

.fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner .fsStyleOneThird,
.fsHasElephantRightLayout.fsHasRightBanner.fsHasLeftBanner .fsStyleOneThird {
  margin-bottom: 0;
}

@media (min-width: 700px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner .fsStyleOneThird,
  .fsHasElephantRightLayout.fsHasRightBanner.fsHasLeftBanner .fsStyleOneThird {
    padding-left: 20px;
    width: 240px;
  }
}

@media (min-width: 800px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner .fsStyleOneThird,
  .fsHasElephantRightLayout.fsHasRightBanner.fsHasLeftBanner .fsStyleOneThird {
    width: 100%;
    padding-left: 0;
  }
}

@media (min-width: 1000px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner .fsStyleOneThird,
  .fsHasElephantRightLayout.fsHasRightBanner.fsHasLeftBanner .fsStyleOneThird {
    padding-left: 20px;
    width: 240px;
  }
}

.fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner .fsStyleTwoThirds,
.fsHasElephantRightLayout.fsHasRightBanner.fsHasLeftBanner .fsStyleTwoThirds {
  margin-bottom: 0;
}

@media (min-width: 700px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner .fsStyleTwoThirds,
  .fsHasElephantRightLayout.fsHasRightBanner.fsHasLeftBanner .fsStyleTwoThirds {
    width: calc(100% - 240px);
  }
}

@media (min-width: 800px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner .fsStyleTwoThirds,
  .fsHasElephantRightLayout.fsHasRightBanner.fsHasLeftBanner .fsStyleTwoThirds {
    width: 100%;
  }
}

@media (min-width: 1000px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner .fsStyleTwoThirds,
  .fsHasElephantRightLayout.fsHasRightBanner.fsHasLeftBanner .fsStyleTwoThirds {
    width: calc(100% - 240px);
  }
}

#fsPoweredByFinalsite {
  margin: 0;
  position: absolute;
  bottom: 32px;
}

@media (max-width: 799px) {
  #fsPoweredByFinalsite {
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 37px;
  }
}

@media (min-width: 800px) {
  #fsPoweredByFinalsite {
    margin: 0 auto;
    position: absolute;
    bottom: 75px;
    max-width: 1180px;
    background-position: right;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: calc(100% - 60px);
  }
}

/*! elements - constituent main */

/*! elements - constituent default layout */

.fsConstituent {
  word-break: break-word;
}

.fsConstituent .fsElementPagination {
  margin: 20px 0;
}

.fsConstituent .fsPhoto[style*="background-image"],
.fsConstituent .fsProfileImage[style*="background-image"] {
  background-size: cover;
  background-position: center;
  display: inline-block;
}

.fsConstituent .fsPhoto[style*="background-image"] > img,
.fsConstituent .fsProfileImage[style*="background-image"] > img {
  opacity: 0;
  visibility: hidden;
}

.fsConstituent[class*="fsThumbnailAlign"] .fsPhoto img,
.fsConstituent[class*="fsThumbnailAlign"] .fsProfileImage img {
  float: none;
  margin: 0;
}

.fsConstituent.fsThumbnailAlignLeft .fsPhoto,
.fsConstituent.fsThumbnailAlignLeft .fsProfileImage {
  float: left;
  padding-right: 0;
}

.fsConstituent.fsThumbnailAlignRight .fsPhoto,
.fsConstituent.fsThumbnailAlignRight .fsProfileImage {
  float: right;
  padding-left: 0;
}

.fsConstituentProfile {
  position: relative;
}

.fsConstituentProfile > div,
.fsConstituentProfile > h3 {
  margin-bottom: 20px;
}

.fsConstituentProfile > div > strong {
  display: block;
}

/*! elements - constituent default layout */

.fsConstituent .fsConstituentItem {
  float: none;
  width: calc(100% - 20px);
  margin: 0 auto 40px;
}

.fsConstituent.fsThumbnailAlignLeft .fsPhoto {
  margin-right: 10px;
  margin-bottom: 10px;
}

.fsConstituent.fsThumbnailAlignRight .fsPhoto {
  margin-left: 10px;
  margin-bottom: 10px;
}

.fsConstituentItem {
  padding-left: 10px;
  padding-right: 10px;
}

.fsConstituentItem > h3,
.fsConstituentItem > div {
  margin-bottom: 10px;
}

.fsConstituentItem > h3:last-child,
.fsConstituentItem > div:last-child {
  margin-bottom: 0;
}

.fsConstituentItem .fsPhoto img {
  display: block;
}

div[class^="fsConstituentColumnLayout"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
}

@media (min-width: 600px) {
  .fsConstituentColumnLayout_2 .fsConstituentItem,
  .fsConstituentColumnLayout_3 .fsConstituentItem,
  .fsConstituentColumnLayout_4 .fsConstituentItem {
    width: calc(50% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media (min-width: 800px) {
  .fsConstituentColumnLayout_3 .fsConstituentItem,
  .fsConstituentColumnLayout_4 .fsConstituentItem {
    width: calc(33.33% - 20px);
  }
}

@media (min-width: 1000px) {
  .fsConstituentColumnLayout_4 .fsConstituentItem {
    width: calc(25% - 20px);
  }
}

/*! elements - constituent profile */

.fsConstituent.fsProfile .fsFullName {
  margin-bottom: 20px;
}

.fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailLarge .fsHasPhoto .fsProfileImage,
.fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailSmall .fsHasPhoto .fsProfileImage,
.fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailLarge .fsHasPhoto .fsProfileImage,
.fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailSmall .fsHasPhoto .fsProfileImage {
  margin: 0 0 20px 0;
  padding: 0;
  float: none;
}

.fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailLarge .fsHasPhoto > div:not(.fsProfileImage),
.fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailLarge .fsHasPhoto > h3,
.fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailSmall .fsHasPhoto > div:not(.fsProfileImage),
.fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailSmall .fsHasPhoto > h3,
.fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailLarge .fsHasPhoto > div:not(.fsProfileImage),
.fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailLarge .fsHasPhoto > h3,
.fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailSmall .fsHasPhoto > div:not(.fsProfileImage),
.fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailSmall .fsHasPhoto > h3 {
  float: none;
  width: 100%;
}

@media (min-width: 800px) {
  .fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailLarge .fsHasPhoto > div:not(.fsProfileImage),
  .fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailLarge .fsHasPhoto > h3,
  .fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailSmall .fsHasPhoto > div:not(.fsProfileImage),
  .fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailSmall .fsHasPhoto > h3,
  .fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailLarge .fsHasPhoto > div:not(.fsProfileImage),
  .fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailLarge .fsHasPhoto > h3,
  .fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailSmall .fsHasPhoto > div:not(.fsProfileImage),
  .fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailSmall .fsHasPhoto > h3 {
    padding: 0;
  }
}

.fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailLarge .fsHasPhoto > h3:first-child,
.fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailSmall .fsHasPhoto > h3:first-child,
.fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailLarge .fsHasPhoto > h3:first-child,
.fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailSmall .fsHasPhoto > h3:first-child {
  padding: 0;
}

.fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailLarge .fsHasPhoto .fsProfileImage,
.fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailLarge .fsHasPhoto .fsProfileImage {
  float: none;
}

@media (min-width: 600px) {
  .fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailLarge .fsHasPhoto .fsProfileImage,
  .fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailLarge .fsHasPhoto .fsProfileImage {
    max-width: 40%;
  }
}

@media (min-width: 1000px) {
  .fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailLarge.fsThumbnailSquare .fsHasPhoto .fsProfileImage,
  .fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailLarge.fsThumbnailRectangle .fsHasPhoto .fsProfileImage,
  .fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailLarge.fsThumbnailSquare .fsHasPhoto .fsProfileImage,
  .fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailLarge.fsThumbnailRectangle .fsHasPhoto .fsProfileImage {
    max-width: 512px;
  }
}

@media (min-width: 600px) {
  .fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailSmall .fsHasPhoto .fsProfileImage,
  .fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailSmall .fsHasPhoto .fsProfileImage {
    max-width: 25%;
  }
}

@media (min-width: 800px) {
  .fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailSmall.fsThumbnailSquare .fsHasPhoto .fsProfileImage,
  .fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailSmall.fsThumbnailRectangle .fsHasPhoto .fsProfileImage,
  .fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailSmall.fsThumbnailSquare .fsHasPhoto .fsProfileImage,
  .fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailSmall.fsThumbnailRectangle .fsHasPhoto .fsProfileImage {
    max-width: 128px;
  }
}

.fsConstituent.fsProfile.fsThumbnailAlignLeft .fsProfileSection:after,
.fsConstituent.fsProfile.fsThumbnailAlignRight .fsProfileSection:after {
  display: none;
}

.fsConstituent.fsProfile.fsThumbnailAlignLeft .fsProfileSectionData,
.fsConstituent.fsProfile.fsThumbnailAlignRight .fsProfileSectionData {
  float: none;
  display: block;
  width: 100%;
}

.fsConstituent.fsProfile.fsThumbnailAlignLeft .fsProfileSectionData > div,
.fsConstituent.fsProfile.fsThumbnailAlignRight .fsProfileSectionData > div {
  clear: none;
}

@media (min-width: 600px) {
  .fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailLarge .fsHasPhoto .fsProfileImage,
  .fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailSmall .fsHasPhoto .fsProfileImage {
    margin-right: 20px;
    float: left;
  }
}

@media (min-width: 800px) {
  .fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailLarge .fsHasPhoto > div:not(.fsProfileImage),
  .fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailLarge .fsHasPhoto > h3 {
    padding-left: calc(40% + 20px);
  }
}

@media (min-width: 1000px) {
  .fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailLarge.fsThumbnailSquare .fsHasPhoto > div:not(.fsProfileImage),
  .fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailLarge.fsThumbnailSquare .fsHasPhoto > h3,
  .fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailLarge.fsThumbnailRectangle .fsHasPhoto > div:not(.fsProfileImage),
  .fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailLarge.fsThumbnailRectangle .fsHasPhoto > h3 {
    padding-left: 532px;
  }
}

@media (min-width: 800px) {
  .fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailSmall .fsHasPhoto > div:not(.fsProfileImage),
  .fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailSmall .fsHasPhoto > h3 {
    padding-left: calc(25% + 20px);
  }
}

@media (min-width: 800px) {
  .fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailSmall.fsThumbnailSquare .fsHasPhoto > div:not(.fsProfileImage),
  .fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailSmall.fsThumbnailSquare .fsHasPhoto > h3,
  .fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailSmall.fsThumbnailRectangle .fsHasPhoto > div:not(.fsProfileImage),
  .fsConstituent.fsProfile.fsThumbnailAlignLeft.fsThumbnailSmall.fsThumbnailRectangle .fsHasPhoto > h3 {
    padding-left: 148px;
  }
}

@media (min-width: 600px) {
  .fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailLarge .fsHasPhoto .fsProfileImage,
  .fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailSmall .fsHasPhoto .fsProfileImage {
    margin-left: 20px;
    float: right;
  }
}

@media (min-width: 800px) {
  .fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailLarge .fsHasPhoto > div:not(.fsProfileImage),
  .fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailLarge .fsHasPhoto > h3 {
    padding-right: calc(40% + 20px);
  }
}

@media (min-width: 1000px) {
  .fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailLarge.fsThumbnailSquare .fsHasPhoto > div:not(.fsProfileImage),
  .fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailLarge.fsThumbnailSquare .fsHasPhoto > h3,
  .fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailLarge.fsThumbnailRectangle .fsHasPhoto > div:not(.fsProfileImage),
  .fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailLarge.fsThumbnailRectangle .fsHasPhoto > h3 {
    padding-right: 532px;
  }
}

@media (min-width: 800px) {
  .fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailSmall .fsHasPhoto > div:not(.fsProfileImage),
  .fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailSmall .fsHasPhoto > h3 {
    padding-right: calc(25% + 20px);
  }
}

@media (min-width: 800px) {
  .fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailSmall.fsThumbnailSquare .fsHasPhoto > div:not(.fsProfileImage),
  .fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailSmall.fsThumbnailSquare .fsHasPhoto > h3,
  .fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailSmall.fsThumbnailRectangle .fsHasPhoto > div:not(.fsProfileImage),
  .fsConstituent.fsProfile.fsThumbnailAlignRight.fsThumbnailSmall.fsThumbnailRectangle .fsHasPhoto > h3 {
    padding-right: 148px;
  }
}

.fsProfileImage {
  margin-bottom: 20px;
}

.fsProfileImage img {
  display: block;
}

.fsProfileSection {
  margin-bottom: 20px;
}

.fsProfileSection h4 {
  margin: 0 0 1rem 0;
}

.fsProfileSectionData {
  margin-bottom: 1em;
}

.fsProfileSectionData:last-child {
  margin-bottom: 0;
}

.fsProfileSectionData.fsTitle {
  font-weight: inherit;
  font-size: 16px;
  line-height: 26px;
}

.fsProfileSectionData > div {
  width: auto;
  float: none;
  display: block;
}

.fsProfileSectionData.fsStyleHalf {
  width: 100%;
}

@media (min-width: 600px) {
  .fsProfileSectionData.fsStyleHalf {
    width: 50%;
  }
}

.fsProfileSectionSpecialData > div {
  width: auto;
  float: none;
  display: block;
}

.fsProfileSectionSpecialData div[id^="fsEmail"] {
  display: inline-block;
}

.fsProfileSectionFieldName,
.fsEmail > div:first-child {
  font-weight: 700;
}

/*! elements - constituent search */

.fsConstituent.fsSearch {
  overflow: hidden;
}

.fsConstituent.fsSearch + .fsConstituent {
  border-top: solid 1px #c3c4c6;
  margin-top: 20px;
  padding-top: 20px;
}

.fsConstituentSearchForm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.fsConstituentSearchForm > label {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 0 10px;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.fsConstituentSearchForm > label > span {
  margin-bottom: 2px;
}

.fsConstituentSearchForm > label > select,
.fsConstituentSearchForm > label > input {
  border: solid 1px #c3c4c6;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.fsConstituentSearchForm > label > select {
  height: 32px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.fsConstituentSearchForm [type*='submit'] {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin: 10px;
  width: 100%;
}

@media (min-width: 600px) {
  .fsConstituentSearchForm [type*='submit'] {
    width: auto;
  }
}

/*! elements - constituent default layout */

.fsConstituent.fsDialog .fsProfileImage:first-child {
  margin-top: 1em;
}

.fsConstituent.fsDialog .fsProfileImage img {
  float: none;
  margin: 0;
}

.fsConstituent .fsDialogContent {
  padding-top: 45px;
}

.fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailLarge .fsProfileImage,
.fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailSmall .fsProfileImage,
.fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailLarge .fsProfileImage,
.fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailSmall .fsProfileImage {
  margin: 0 0 20px 0;
  padding: 0;
  float: none;
}

.fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailLarge > div:not(.fsProfileImage),
.fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailLarge > h3,
.fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailSmall > div:not(.fsProfileImage),
.fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailSmall > h3,
.fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailLarge > div:not(.fsProfileImage),
.fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailLarge > h3,
.fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailSmall > div:not(.fsProfileImage),
.fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailSmall > h3 {
  float: none;
  width: 100%;
}

@media (min-width: 800px) {
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailLarge > div:not(.fsProfileImage),
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailLarge > h3,
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailSmall > div:not(.fsProfileImage),
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailSmall > h3,
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailLarge > div:not(.fsProfileImage),
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailLarge > h3,
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailSmall > div:not(.fsProfileImage),
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailSmall > h3 {
    padding: 0;
  }
}

.fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailLarge > h3:first-child,
.fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailSmall > h3:first-child,
.fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailLarge > h3:first-child,
.fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailSmall > h3:first-child {
  padding: 0;
}

.fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailLarge .fsProfileImage,
.fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailLarge .fsProfileImage {
  float: none;
}

@media (min-width: 600px) {
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailLarge .fsProfileImage,
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailLarge .fsProfileImage {
    max-width: 40%;
  }
}

@media (min-width: 600px) {
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailSmall .fsProfileImage,
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailSmall .fsProfileImage {
    max-width: 25%;
  }
}

@media (min-width: 800px) {
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailSmall.fsThumbnailSquare .fsProfileImage,
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailSmall.fsThumbnailRectangle .fsProfileImage,
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailSmall.fsThumbnailSquare .fsProfileImage,
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailSmall.fsThumbnailRectangle .fsProfileImage {
    max-width: 128px;
  }
}

.fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft .fsProfileSection:after,
.fsElementDialog .fsHasPhoto.fsThumbnailAlignRight .fsProfileSection:after {
  display: none;
}

.fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft .fsProfileSectionData,
.fsElementDialog .fsHasPhoto.fsThumbnailAlignRight .fsProfileSectionData {
  float: none;
  display: block;
  width: 100%;
}

.fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft .fsProfileSectionData > div,
.fsElementDialog .fsHasPhoto.fsThumbnailAlignRight .fsProfileSectionData > div {
  clear: none;
}

@media (min-width: 600px) {
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailLarge .fsProfileImage,
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailSmall .fsProfileImage {
    margin-right: 20px;
    float: left;
  }
}

@media (min-width: 800px) {
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailLarge > div:not(.fsProfileImage),
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailLarge > h3 {
    padding-left: calc(40% + 20px);
  }
}

@media (min-width: 800px) {
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailSmall > div:not(.fsProfileImage),
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailSmall > h3 {
    padding-left: calc(25% + 20px);
  }
}

@media (min-width: 800px) {
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailSmall.fsThumbnailSquare > div:not(.fsProfileImage),
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailSmall.fsThumbnailSquare > h3,
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailSmall.fsThumbnailRectangle > div:not(.fsProfileImage),
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignLeft.fsThumbnailSmall.fsThumbnailRectangle > h3 {
    padding-left: 148px;
  }
}

@media (min-width: 600px) {
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailLarge .fsProfileImage,
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailSmall .fsProfileImage {
    margin-left: 20px;
    float: right;
  }
}

@media (min-width: 800px) {
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailLarge > div:not(.fsProfileImage),
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailLarge > h3 {
    padding-right: calc(40% + 20px);
  }
}

@media (min-width: 800px) {
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailSmall > div:not(.fsProfileImage),
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailSmall > h3 {
    padding-right: calc(25% + 20px);
  }
}

@media (min-width: 800px) {
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailSmall.fsThumbnailSquare > div:not(.fsProfileImage),
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailSmall.fsThumbnailSquare > h3,
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailSmall.fsThumbnailRectangle > div:not(.fsProfileImage),
  .fsElementDialog .fsHasPhoto.fsThumbnailAlignRight.fsThumbnailSmall.fsThumbnailRectangle > h3 {
    padding-right: 148px;
  }
}

/*! elements - accordion */

.fsAccordion .fsPanel,
.fsTabs .fsPanel {
  border-bottom: solid 1px #d2d3d5;
}

.fsAccordion .fsPanel > header,
.fsTabs .fsPanel > header {
  cursor: pointer;
  background: #f9f9fa;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.fsAccordion .fsPanel > header h2,
.fsTabs .fsPanel > header h2 {
  margin-top: 0;
  font-weight: normal;
  font-size: 30px;
  line-height: 40px;
  color: #0b0e22;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  margin-bottom: 30px;
  margin-bottom: 0;
  display: block;
  font-size: 16px;
  padding: 13.33333px;
  color: #0b0e22;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: "proxima-nova", sans-serif;
  text-transform: none;
  line-height: 1.5;
  position: relative;
}

@media (max-width: 699px) {
  .fsAccordion .fsPanel > header h2,
  .fsTabs .fsPanel > header h2 {
    font-size: 1.875rem;
  }
}

@media (max-width: 699px) {
  .fsAccordion .fsPanel > header h2,
  .fsTabs .fsPanel > header h2 {
    font-size: 1.125rem;
  }
}

.fsAccordion .fsPanel > header h2 a,
.fsTabs .fsPanel > header h2 a {
  -webkit-transition: none;
  transition: none;
  font-weight: 700;
}

.fsAccordion .fsPanel > header:hover,
.fsTabs .fsPanel > header:hover {
  background: #d2d3d5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.fsAccordion .fsPanel > header:hover h2,
.fsTabs .fsPanel > header:hover h2 {
  color: #0b0e22;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.fsAccordion .fsPanel.fsStateOpen > header,
.fsTabs .fsPanel.fsStateOpen > header {
  background: #ffffff;
}

.fsAccordion .fsPanel.fsStateOpen > header h2,
.fsTabs .fsPanel.fsStateOpen > header h2 {
  color: #0b0e22;
}

.fsAccordion .fsPanel.fsStateOpen > header h2:before,
.fsTabs .fsPanel.fsStateOpen > header h2:before {
  content: "-";
}

.fsPanelIconAfter.fsAccordion .fsPanel > header h2::after,
.fsPanelIconAfter.fsTabs .fsPanel > header h2::after,
.fsPanelIconBefore.fsAccordion .fsPanel > header h2::before,
.fsPanelIconBefore.fsTabs .fsPanel > header h2::before {
  content: "";
  border: none;
  width: auto;
  height: auto;
  position: absolute;
  margin: 0;
  font-size: 30px;
  font-weight: 300;
  top: 4px;
  color: #0b0e22;
  content: "+";
}

.fsPanelIconBefore.fsAccordion .fsPanel.fsStateOpen > header h2::before,
.fsPanelIconBefore.fsTabs .fsPanel.fsStateOpen > header h2::before,
.fsPanelIconAfter.fsAccordion .fsPanel.fsStateOpen > header h2::after,
.fsPanelIconAfter.fsTabs .fsPanel.fsStateOpen > header h2::after {
  content: "";
  border: none;
  width: auto;
  height: auto;
  position: absolute;
  margin: 0;
  font-size: 30px;
  font-weight: 300;
  top: 4px;
  color: #0b0e22;
  content: "-";
  content: "";
  width: 13px;
  height: 2px;
  background: #696c73;
  right: 15px;
  margin-top: 18px;
}

.fsPanelIconBefore.fsAccordion .fsPanel > header h2,
.fsPanelIconBefore.fsTabs .fsPanel > header h2 {
  padding-left: 40px;
}

.fsPanelIconBefore.fsAccordion .fsPanel > header h2:before,
.fsPanelIconBefore.fsTabs .fsPanel > header h2:before {
  left: 13.33333px;
}

.fsPanelIconAfter.fsAccordion .fsPanel > header h2,
.fsPanelIconAfter.fsTabs .fsPanel > header h2 {
  padding-right: 40px;
}

.fsPanelIconAfter.fsAccordion .fsPanel > header h2:before,
.fsPanelIconAfter.fsTabs .fsPanel > header h2:before {
  display: none;
}

.fsPanelIconAfter.fsAccordion .fsPanel > header h2:after,
.fsPanelIconAfter.fsTabs .fsPanel > header h2:after {
  right: 13.33333px;
}

.fsAccordion:not(.fsPanelIconBefore):not(.fsPanelIconAfter) .fsPanel > header h2:before,
.fsTabs:not(.fsPanelIconBefore):not(.fsPanelIconAfter) .fsPanel > header h2:before {
  content: "";
}

/*! elements - athletics main */

/*! elements - athletics events */

.fsAthleticsEvent > .fsElementContent {
  width: 100%;
}

.fsAthleticsEvent .fsAlertFeeds {
  margin-bottom: 10px;
}

.fsAthleticsEvent .fsElementEventIcon {
  display: inline-block;
  max-width: 100%;
}

.fsAthleticsEvent .fsTitle {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
}

.fsAthleticsEvent div.fsTitle {
  display: inline-block;
}

/*! elements - athletics events - list subtype */

.fsAthleticsEvent.fsList .fsElementEventIcon {
  margin-right: 10px;
}

.fsAthleticsEvent.fsList .fsAthleticsEventDetailLink {
  outline: 0;
}

.fsAthleticsEvent.fsList .fsAlertIcon {
  margin-left: 5px;
  margin-bottom: -3px;
}

.fsAthleticsEvent.fsList .fsAthleticsOpponents {
  display: inline;
}

.fsAthleticsEvent.fsList .fsAthleticsOpponentNames {
  display: inline;
}

.fsAthleticsEvent.fsList .fsAthleticsEventReadMoreLink {
  display: inline-block;
  margin-top: 5px;
}

.fsAthleticsEvent.fsList .fsAthleticsDismissal,
.fsAthleticsEvent.fsList .fsAthleticsDeparture,
.fsAthleticsEvent.fsList .fsAthleticsReturn,
.fsAthleticsEvent.fsList .fsAthleticsPickup {
  margin-top: 5px;
}

.fsAthleticsEvent.fsList .fsAthleticsDismissalLabel,
.fsAthleticsEvent.fsList .fsAthleticsDepartureLabel,
.fsAthleticsEvent.fsList .fsAthleticsReturnLabel,
.fsAthleticsEvent.fsList .fsAthleticsPickupLabel {
  display: inline-block;
}

.fsAthleticsEvent.fsList .fsAthleticsDismissalLabel + div,
.fsAthleticsEvent.fsList .fsAthleticsDepartureLabel + div,
.fsAthleticsEvent.fsList .fsAthleticsReturnLabel + div,
.fsAthleticsEvent.fsList .fsAthleticsPickupLabel + div {
  display: inline-block;
}

/*! elements - athletics events */

.fsAthleticsEvent.fsEvent article > div {
  margin-bottom: 10px;
}

.fsAthleticsEvent.fsEvent article > div:last-child {
  margin-bottom: 0;
}

.fsAthleticsEvent.fsEvent .fsAthleticsOpponents {
  display: inline-block;
}

.fsAthleticsEvent.fsEvent .fsAthleticsVs + div {
  display: inline-block;
}

/*! elements - athletics events - table*/

@media (min-width: 801px) {
  .fsAthleticsEvent.fsTable .fsTitle .fsElementEventIcon {
    max-width: 100px;
  }
}

@media (min-width: 801px) {
  .fsAthleticsEvent.fsTable .fsDateTime,
  .fsAthleticsEvent.fsTable .fsAthleticsScore {
    white-space: nowrap;
  }
}

.fsAthleticsEvent.fsTable .fsElementTable {
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .fsAthleticsEvent.fsTable .fsElementTable thead {
    display: none;
  }
}

.fsAthleticsEvent.fsTable .fsElementTable thead th {
  white-space: nowrap;
}

@media (max-width: 800px) {
  .fsAthleticsEvent.fsTable .fsElementTable td {
    display: inline-block;
    width: 100%;
    padding: 0 10px;
  }

  .fsAthleticsEvent.fsTable .fsElementTable td:not(:last-child) {
    border: 0;
  }

  .fsAthleticsEvent.fsTable .fsElementTable td:first-of-type {
    padding-top: 10px;
  }

  .fsAthleticsEvent.fsTable .fsElementTable td:last-of-type {
    padding-bottom: 10px;
  }

  .fsAthleticsEvent.fsTable .fsElementTable td:before {
    display: inline-block;
    font-weight: 700;
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsTitle:before {
    content: 'Team: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsOpponents {
    display: inline-block;
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsOpponents .fsAthleticsVs {
    display: inline-block;
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsOpponents .fsAthleticsOpponentNames {
    display: inline-block;
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsOpponents:before {
    content: 'Opponent: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsDate .fsDateTime {
    display: inline-block;
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsDate:before {
    content: 'Date: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsTime .fsDateTime {
    display: inline-block;
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsTime:before {
    content: 'Time: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsLocations:before {
    content: 'Location: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsAdvantage:before {
    content: 'Advantage: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsEventType:before {
    content: 'Type: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsDetails:before {
    content: 'Details: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsResult:before {
    content: 'Result: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsScore:before {
    content: 'Score: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsAlerts:before {
    content: 'Alerts: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsDismissal:before {
    content: 'Dismissal: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsDeparture:before {
    content: 'Departure: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsReturn:before {
    content: 'Return Time: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsPickup:before {
    content: 'Pickup Time: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsRecap:before {
    content: 'Recap: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsStatus:before {
    content: 'Status: ';
  }
}

.fsAthleticsEvent.fsTable .fsAthleticsVs + div {
  display: inline;
}

.fsAthleticsEvent.fsTable .fsAthleticsDismissalLabel,
.fsAthleticsEvent.fsTable .fsAthleticsDepartureLabel,
.fsAthleticsEvent.fsTable .fsAthleticsReturnLabel,
.fsAthleticsEvent.fsTable .fsAthleticsPickupLabel {
  display: none;
}

.fsAthleticsEvent.fsTable .fsAthleticsDismissal .fsDateTime {
  display: inline-block;
}

@media (min-width: 800px) {
  .fsAthleticsEvent.fsTable .fsAthleticsDismissal .fsDateTime {
    display: block;
  }
}

body.fsComposeMode .fsAthleticsEvent.fsTable > .fsElementContent {
  overflow-x: auto;
}

/*! elements - athletics popup dialog box */

.fsAthleticsEvent.fsDialog {
  margin: auto;
}

.fsAthleticsEvent.fsDialog .fsAthleticsTitle {
  margin-top: 0;
  font-weight: normal;
  font-size: 22px;
  line-height: 27px;
  color: #0b0e22;
  font-family: "proxima-nova-extra-condensed", sans-serif;
  font-weight: 800;
  margin-bottom: 20px;
}

.fsAthleticsEvent.fsDialog .fsAthleticsLabel {
  font-weight: bold;
  margin-top: 20px;
}

.fsAthleticsEvent.fsDialog .fsAthleticsAddress > div {
  margin-top: 10px;
}

/*! elements - athletics roster */

.fsAthleticsRoster .fsElementTable td:before,
.fsAthleticsRosterList li > div:before {
  margin-right: 5px;
  display: inline-block;
  font-weight: 700;
}

.fsAthleticsRoster .fsElementTable td.fsRosterPlayerNumber:before,
.fsAthleticsRosterList li > div.fsRosterPlayerNumber:before {
  content: 'Number: ';
}

.fsAthleticsRoster .fsElementTable td.fsRosterName:before,
.fsAthleticsRosterList li > div.fsRosterName:before {
  content: 'Name: ';
}

.fsAthleticsRoster .fsElementTable td.fsRosterPosition:before,
.fsAthleticsRosterList li > div.fsRosterPosition:before {
  content: 'Position: ';
}

.fsAthleticsRoster .fsElementTable td.fsRosterClass:before,
.fsAthleticsRosterList li > div.fsRosterClass:before {
  content: 'Class: ';
}

.fsAthleticsRoster .fsElementTable td.fsRosterGradeLevel:before,
.fsAthleticsRosterList li > div.fsRosterGradeLevel:before {
  content: 'Grade: ';
}

.fsAthleticsRoster .fsElementTable td.fsRosterHometown:before,
.fsAthleticsRosterList li > div.fsRosterHometown:before {
  content: 'Hometown: ';
}

.fsAthleticsRoster .fsElementTable td.fsRosterHeight:before,
.fsAthleticsRosterList li > div.fsRosterHeight:before {
  content: 'Height: ';
}

.fsAthleticsRoster .fsElementTable td.fsRosterWeight:before,
.fsAthleticsRosterList li > div.fsRosterWeight:before {
  content: 'Weight: ';
}

@media (max-width: 800px) {
  .fsAthleticsRoster .fsElementTable thead {
    display: none;
  }
}

@media (min-width: 800px) {
  .fsAthleticsRoster .fsElementTable td:before {
    display: none;
  }
}

@media (max-width: 800px) {
  .fsAthleticsRoster .fsElementTable td {
    display: inline-block;
    width: 100%;
    padding: 0 10px;
  }

  .fsAthleticsRoster .fsElementTable td:not(:last-child) {
    border: 0;
  }

  .fsAthleticsRoster .fsElementTable td:first-of-type {
    padding-top: 10px;
  }

  .fsAthleticsRoster .fsElementTable td:last-of-type {
    padding-bottom: 10px;
  }
}

.fsAthleticsRosterContent {
  margin-bottom: 20px;
}

.fsAthleticsRosterContent:empty,
.fsAthleticsRosterContent:last-child {
  margin-bottom: 0;
}

.fsAthleticsRosterList,
.fsAthleticsRosterList ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fsAthleticsRosterList li {
  margin: 0;
  padding: 0;
}

.fsAthleticsRosterList li {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px #d2d3d5;
}

.fsAthleticsRosterList li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.fsAthleticsRosterList li > div {
  margin-bottom: 10px;
}

.fsAthleticsRosterList li > div:last-child {
  margin-bottom: 0;
}

.fsAthleticsRosterList li > div.fsRosterName {
  margin-bottom: 10px;
}

.fsAthleticsRosterList li > div.fsRosterName:before {
  display: none;
}

.fsAthleticsRosterList .fsCoachImage {
  display: block;
  margin-bottom: 10px;
}

/*! elements - athletics teams */

.fsAthleticsTeamDirectory {
  max-width: 100%;
}

.fsAthleticsTeamDirectory,
.fsAthleticsTeamDirectory ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fsAthleticsTeamDirectory li {
  margin: 0;
  padding: 0;
}

.fsAthleticsTeamDirectory > li {
  margin-bottom: 10px;
}

.fsAthleticsTeamDirectory .fsAthleticsTeamIcon {
  display: inline-block;
}

.fsAthleticsTeamIcon {
  margin-right: 10px;
}

.fsBoardElement.fsThumbnailAlignLeft .fsThumbnail {
  float: none;
}

@media (min-width: 600px) {
  .fsBoardElement.fsThumbnailAlignLeft .fsThumbnail {
    float: left;
  }
}

.fsBoardElement.fsThumbnailAlignRight .fsThumbnail {
  float: none;
}

@media (min-width: 600px) {
  .fsBoardElement.fsThumbnailAlignRight .fsThumbnail {
    float: right;
  }
}

/*! _main.scss - src/sass/modules/calendar/ - main calendar import */

/*! _all.scss - src/sass/modules/calendar/list.scss - calendar each article style */

.fsCalendar article {
  position: relative;
  padding-left: 20px;
  min-height: 80px;
  padding-top: 0;
  margin-bottom: 30px;
}

@media (min-width: 700px) {
  .fsCalendar article {
    padding-left: 100px;
  }
}

.fsCalendar article .fsElementEventColorIcon {
  width: 12px;
  height: 12px;
}

.fsCalendar .fsDate {
  position: relative;
  top: 0;
  left: 0;
  text-align: center;
  height: 80px;
  width: 80px;
  color: #fff;
  background: #df3a3e;
  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;
}

@media (min-width: 700px) {
  .fsCalendar .fsDate {
    position: absolute;
  }
}

.fsCalendar .fsDate > span {
  display: block;
}

.fsCalendar .fsDate > span.fsMonth {
  font-size: 0.8125rem;
  line-height: 1.23077;
  font-weight: 700;
  text-transform: uppercase;
}

.fsCalendar .fsDate > span.fsDay {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
}

.fsCalendar article {
  color: #696c73;
}

.fsCalendar .fsTitle > .fsCalendarEventLink {
  font-size: 1rem;
  line-height: 1.5;
  color: #0b0e22;
  font-weight: 700;
}

.fsCalendar .fsTimeRange:before {
  content: "\E903";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  padding-right: 5px;
  color: #696c73;
}

.fsCalendar .fsLocation:before {
  content: "\E902";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  padding-right: 5px;
  color: #696c73;
  padding-left: 2px;
}

.fsCalendar .fsNotes p:last-child,
.fsCalendar .fsDescription p:last-child {
  margin-bottom: 0;
}

/*! _list.scss - src/sass/modules/calendar/list.scss - calendar event */

.fsCalendar.fsList .fsListItems + button {
  margin-top: 0;
}

/*! _grid.scss - src/sass/modules/calendar/grid.scss - calendar grid */

.fsCalendar.fsGrid .fsCalendarDayView {
  margin-top: 20px;
}

.fsCalendar.fsGrid .fsCalendarDayView .fsCalendarInfo:not(:last-child) {
  margin-bottom: 20px;
}

.fsCalendar.fsGrid .fsCalendarEventTitle {
  font-weight: bold;
}

.fsCalendarEventGrid .fsCalendarRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fsCalendarEventGrid .fsCalendarRow .fsCalendarToday {
  background-color: rgba(223, 58, 62, 0.1);
}

.fsCalendarEventGrid .fsCalendarRow .fsCalendarOutOfRange {
  background-color: #f9f9fa;
}

.fsCalendarEventGrid .fsCalendarDaybox {
  border-color: #c3c4c6;
}

.fsCalendarEventGrid .fsCalendarDaybox .fsCalendarInfo {
  color: #002269;
}

.fsCalendarEventGrid .fsCalendarDaybox .fsCalendarInfo > div {
  margin-bottom: 5px;
}

.fsCalendarEventGrid .fsCalendarDaybox .fsCalendarInfo > div:last-child {
  margin-bottom: 0;
}

.fsCalendarEventGrid .fsCalendarDaybox .fsCalendarEventTitle + div {
  margin-top: 5px;
}

.fsCalendarEventGrid .fsCalendarDaybox .fsCalendarDate {
  line-height: 1;
}

@media (min-width: 900px) {
  .fsCalendarEventGrid .fsCalendarDaybox {
    height: auto !important;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  .fsCalendarEventGrid .fsCalendarDaybox.fsCalendarWeekendDayBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .fsCalendarEventGrid .fsCalendarDaybox.fsCalendarWeekendDayBox > div {
    height: auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  .fsCalendarEventGrid .fsCalendarDaybox.fsCalendarWeekendDayBox > div:first-child {
    position: relative;
  }
}

.fsCalendar.fsGrid .fsCalendarGridControlBar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fsCalendar.fsGrid .fsCalendarGridControlBar:after {
  display: none;
}

.fsCalendar.fsGrid .fsCalendarGridControlBar > div {
  margin: 0;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.fsCalendar.fsGrid .fsCalendarGridControlBar .fsDisplayNavigation {
  margin-right: 10px;
}

.fsCalendar.fsGrid .fsCalendarGridControlBar .fsCalendarGridBrowser {
  width: 100%;
  margin-top: 10px;
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

@media (min-width: 900px) {
  .fsCalendar.fsGrid .fsCalendarGridControlBar .fsCalendarGridBrowser {
    width: auto;
    margin-top: 0;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.fsCalendar.fsGrid .fsCalendarGridControlBar .fsElementControls {
  margin: 10px 0 0;
}

@media (min-width: 900px) {
  .fsCalendar.fsGrid .fsCalendarGridControlBar .fsElementControls {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    margin: 0;
  }
}

.fsCalendar.fsGrid .fsCalendarGridControlBar .fsCalendarMonthYearPicker:not(.fsStateHidden) {
  z-index: 1;
}

@media (max-width: 899px) {
  .fsCalendar.fsGrid .fsCalendarEventGrid {
    width: 100%;
    margin: 0 auto;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid:after {
    display: none;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarMonthBrowser {
    margin: 20px 0;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarWeekdays {
    display: none;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarRow {
    width: auto;
    border-right: solid 1px #c3c4c6;
    -webkit-box-shadow: 0 1px 0 0 #c3c4c6;
            box-shadow: 0 1px 0 0 #c3c4c6;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarRow:last-child {
    border-bottom: solid 1px #c3c4c6;
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox {
    cursor: pointer;
    min-height: 44px;
    position: relative;
    padding: 0;
    margin: 0;
    border: none;
    height: auto !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-left: solid 1px #c3c4c6;
    border-top: 1px solid #c3c4c6;
    color: #002269;
    background: #ffffff;
    -webkit-transition: .3s;
    transition: .3s;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox:hover {
    color: #ffffff;
    background: #ffcc00;
    -webkit-transition: .3s;
    transition: .3s;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox:hover .fsCalendarOutOfRange {
    color: #ffffff;
    background: #ffcc00;
    -webkit-transition: .3s;
    transition: .3s;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox .fsCalendarDate {
    margin: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    text-align: center;
    font-size: 14px;
    padding-bottom: calc(50% - 14px / 2);
    padding-top: calc(50% - 14px / 2);
    color: inherit;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox.fsCalendarToday {
    background: #084cdc;
    color: #ffffff;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox.fsStateHasEvents .fsCalendarDate:after,
  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox.has-info .fsCalendarDate:after {
    content: '\25CF';
    font-size: 10px;
    display: block;
    line-height: .5;
    -webkit-transform: translate3d(0, 3px, 0);
            transform: translate3d(0, 3px, 0);
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox.fsCalendarWeekendDayBox > div {
    position: relative;
    min-height: 22px;
    width: 100%;
    padding: 0;
    overflow: hidden;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox.fsCalendarWeekendDayBox > div:first-child {
    -webkit-box-shadow: inset 0 -1px 0 0 #c3c4c6;
            box-shadow: inset 0 -1px 0 0 #c3c4c6;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox.fsCalendarWeekendDayBox > div:not(.has-info) .fsCalendarDate {
    margin-bottom: 0;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox.fsCalendarWeekendDayBox > div:not(.has-info) .fsCalendarDate:after {
    display: none;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox.fsCalendarWeekendDayBox .fsCalendarDate {
    padding-bottom: calc(25% - 14px / 2);
    padding-top: calc(25% - 14px / 2);
    -webkit-transform: scale(0.875);
        -ms-transform: scale(0.875);
            transform: scale(0.875);
    margin-bottom: 3px;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox.selected {
    color: #ffffff;
    background: #3c3f48;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox.selected .fsCalendarOutOfRange {
    background: inherit;
    color: inherit;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarOutOfRange {
    background: #f9f9fa;
    color: #696c73;
    -webkit-transition: .3s;
    transition: .3s;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarInfo {
    display: none;
  }
}

#event-view {
  padding: 0 20px;
  margin: 20px 0;
}

#event-view .fsCalendarDaybox {
  height: auto !important;
}

#event-view .fsCalendarDaybox > div {
  margin-bottom: 20px;
}

#event-view .fsCalendarWeekendDayBox > div:first-child {
  padding-bottom: 20px;
}

#event-view .fsCalendarWeekendDayBox .fsCalendarInfo:not(:last-child) {
  margin-bottom: 20px;
}

#event-view .fsCalendarEventTitle {
  margin-bottom: 5px;
}

.fsCalendarDayView:not(.fsStateHidden) + .fsCalendarEventGrid + #event-view {
  display: none;
}

@media (min-width: 900px) {
  #event-view {
    display: none;
  }
}

.scroll-up {
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  margin-top: 20px;
}

.scroll-up span {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 8px 16px;
  background: #3c3f48;
  color: #fff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.6875rem;
  line-height: 1.36364;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
  padding: 10px 20px;
  margin-bottom: 0;
}

.scroll-up span:hover,
.scroll-up span:focus,
.fsStateSelected .scroll-up span,
.scroll-up span.on {
  background: #0b0e22;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.scroll-up span em {
  display: block;
  font-style: normal;
}

.scroll-up + .fsCalendarLegend {
  margin-top: 20px !important;
}

@media (min-width: 900px) {
  .scroll-up {
    display: none;
  }
}

.fsElementEventColorIcon {
  display: inline-block;
}

.fsCalendar.fsGrid .fsCalendarEventGrid + .fsCalendarLegend {
  margin-top: 40px;
}

.fsCalendar.fsGrid .fsCalendarLegend,
.fsCalendar.fsGrid .fsCalendarLegend ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fsCalendar.fsGrid .fsCalendarLegend li {
  margin: 0;
  padding: 0;
}

.fsCalendar.fsGrid .fsCalendarLegend h4 {
  margin-bottom: 20px;
}

@media (min-width: 600px) {
  .fsCalendar.fsGrid .fsCalendarLegend > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.fsCalendar.fsGrid .fsCalendarLegend > ul > li {
  margin-left: 0;
}

@media (min-width: 600px) {
  .fsCalendar.fsGrid .fsCalendarLegend > ul > li {
    width: 49%;
  }
}

.fsCalendar.fsGrid .fsCalendarLegend .fsElementEventColorIcon {
  vertical-align: baseline;
}

/*! _slideshow.scss - src/sass/modules/calendar/slideshow.scss - calendar slideshow */

.fsCalendar.fsSlideshow .fsAlertFeeds {
  float: none;
}

.fsCalendar.fsSlideshowHorizontal .fsElementSlideshow {
  padding-left: 75px;
  padding-right: 75px;
  padding-bottom: 0;
}

.fsCalendar.fsSlideshowVertical .fsElementSlideshow {
  padding-left: 75px;
  padding-top: 75px;
  padding-bottom: 45px;
}

/*! _event.scss - src/sass/modules/calendar/event.scss - calendar event */

/*! _dialog.scss - src/sass/modules/calendar/_dialog.scss - calendar dialog pop up */

/*! elements - forms */

textarea,
input,
select {
  padding: 5px;
  max-width: 100%;
}

.fsComposerFormEmbed {
  background: none;
}

.fsComposerFormEmbed body {
  margin: 0;
}

.fsComposerFormEmbed form {
  zoom: 1;
}

.fsComposerFormEmbed form:after {
  display: table;
  clear: both;
  content: '';
}

.fsComposerFormEmbed form input,
.fsComposerFormEmbed form textarea,
.fsComposerFormEmbed form select {
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #002269;
}

.fsComposerFormEmbed form input {
  border: solid 1px #c3c4c6;
}

.fsComposerFormEmbed form input.fileUploader {
  padding: 0;
  width: 100%;
  border: none;
}

.fsComposerFormEmbed form fieldset {
  padding: 0;
}

.fsComposerFormEmbed form textarea {
  max-width: 100%;
  width: 100%;
  border: solid 1px #c3c4c6;
}

.fsComposerFormEmbed form .mainGroupSub {
  max-width: 100%;
  width: 100% !important;
}

.fsComposerFormEmbed form .formPage {
  margin-bottom: 20px;
}

.fsComposerFormEmbed form .elementRow {
  max-width: 100%;
  margin: 0;
}

.fsComposerFormEmbed form .elementRow:last-child .elementContainer:last-child {
  margin-bottom: 0;
}

.fsComposerFormEmbed form .elementContainer {
  margin: 0 0 20px;
  padding: 0;
}

@media screen and (max-width: 599px) {
  .fsComposerFormEmbed form .elementContainer {
    width: 100%;
  }
}

.fsComposerFormEmbed form .elementContainer label {
  margin-bottom: 2px;
}

.fsComposerFormEmbed form .elementContainer label.horizontal {
  white-space: normal;
  margin-right: 10px !important;
}

.fsComposerFormEmbed form .elementContainer label.horizontal:last-child {
  margin-right: 0;
}

.fsComposerFormEmbed form .elementContainer hr {
  margin: 0 auto;
}

.fsComposerFormEmbed form .elementContainer p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 599px) {
  .fsComposerFormEmbed form .elementBody > input {
    width: 100%;
  }
}

.fsComposerFormEmbed form .elementBody > .descText {
  margin-bottom: 10px;
}

.fsComposerFormEmbed form .labelLeft .elementContainer label,
.fsComposerFormEmbed form .labelLeft .elementContainer .groupLabel {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
  float: none;
}

@media (min-width: 600px) {
  .fsComposerFormEmbed form .labelLeft .elementContainer label,
  .fsComposerFormEmbed form .labelLeft .elementContainer .groupLabel {
    width: 20%;
    padding-right: 10px;
    text-align: right;
    float: left;
  }
}

@media (min-width: 600px) {
  .fsComposerFormEmbed form .labelLeft .elementContainer > label {
    padding: 5px 10px 5px 5px;
  }
}

.fsComposerFormEmbed form .labelLeft .elementContainer .groupLabel label {
  width: 100%;
}

.fsComposerFormEmbed form .labelLeft .elementContainer fieldset label {
  width: auto;
}

.fsComposerFormEmbed form .labelLeft .elementBody {
  margin: 0;
  width: 100%;
  float: none;
}

@media (min-width: 600px) {
  .fsComposerFormEmbed form .labelLeft .elementBody {
    width: 80%;
    float: left;
  }
}

.fsComposerFormEmbed form .linkLike {
  color: #084cdc;
  margin-right: 10px;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}

.fsComposerFormEmbed form .linkLike:hover {
  color: #ffcc00;
}

.fsComposerFormEmbed form .required {
  color: #df3a3e;
}

.fsComposerFormEmbed form .pageControls {
  padding: 10px 0 !important;
  margin-bottom: 10px;
}

.fsComposerFormEmbed form .pageControls .userConfirmation {
  margin-bottom: 0;
}

.fsComposerFormEmbed form .userConfirmation {
  margin-bottom: 20px;
}

.fsComposerFormEmbed form .userConfirmation .userConfirmationToggle {
  margin-right: 5px;
}

.fsComposerFormEmbed form .userConfirmation > label {
  display: block;
}

.fsComposerFormEmbed form .elementColumn {
  zoom: 1;
  margin-bottom: 20px;
  max-width: 100%;
}

.fsComposerFormEmbed form .elementColumn:after {
  display: table;
  clear: both;
  content: '';
}

@media screen and (max-width: 599px) {
  .fsComposerFormEmbed form .elementColumn {
    float: none !important;
    width: 100% !important;
  }
}

.fsComposerFormEmbed form .elementColumn .elementContainer {
  margin-bottom: 0;
}

.fsComposerFormEmbed form .elementColumn .elementBody > input {
  width: 100%;
}

.fsComposerFormEmbed form .pageBreak {
  zoom: 1;
}

.fsComposerFormEmbed form .pageBreak:after {
  display: table;
  clear: both;
  content: '';
}

.fsComposerFormEmbed form .pageBreak .nextPage,
.fsComposerFormEmbed form .pageBreak .prevPage {
  background: none;
  border: none;
  color: #084cdc;
  -webkit-transition: .3s;
  transition: .3s;
  outline: 0;
  float: left;
  padding: 0;
  line-height: 1;
  padding: 10px 0;
}

.fsComposerFormEmbed form .pageBreak .nextPage:hover,
.fsComposerFormEmbed form .pageBreak .prevPage:hover {
  color: #ffcc00;
  -webkit-transition: .3s;
  transition: .3s;
}

.fsComposerFormEmbed form .pageBreak .prevPage {
  margin-right: 10px;
}

.fsComposerFormEmbed form .pageBreak .pagenum {
  display: inline-block;
  float: left;
  line-height: 1;
  margin-right: 10px;
  padding: 10px 0;
}

.fsComposerFormEmbed form .pageBreak .pagenum:empty {
  margin: 0;
}

.fsComposerFormEmbed form .submitBtn {
  border: 0;
  margin: 0;
  border-radius: 0;
  float: left;
  -webkit-transition: .3s;
  transition: .3s;
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 8px 16px;
  background: transparent;
  color: #696c73;
  border-radius: 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.6875rem;
  line-height: 1.36364;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
  border: solid 1px #d2d3d5;
}

.fsComposerFormEmbed form .submitBtn:hover,
.fsComposerFormEmbed form .submitBtn:focus,
.fsStateSelected .fsComposerFormEmbed form .submitBtn,
.fsComposerFormEmbed form .submitBtn.on {
  background: #f9f9fa;
  color: #4d6496;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.fsComposerFormEmbed form .submitBtn em {
  display: block;
  font-style: normal;
}

.fsComposerFormEmbed form .submitBtn:hover {
  border: solid 1px #ccd3e1;
}

.fsComposerFormEmbed .ui-widget {
  font-family: "proxima-nova", sans-serif;
  max-width: 100%;
}

.fsComposerFormEmbed .ui-datepicker:empty {
  display: none;
}

.fsComposerFormEmbed .ui-datepicker .ui-datepicker-header {
  background: none;
  border: none;
}

.fsComposerFormEmbed .ui-datepicker .ui-datepicker-prev,
.fsComposerFormEmbed .ui-datepicker .ui-datepicker-next {
  background: none;
  border: none;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
}

.fsComposerFormEmbed .ui-datepicker .ui-datepicker-prev span,
.fsComposerFormEmbed .ui-datepicker .ui-datepicker-next span {
  display: none;
}

.fsComposerFormEmbed .ui-datepicker .ui-datepicker-prev:before,
.fsComposerFormEmbed .ui-datepicker .ui-datepicker-next:before {
  content: '';
  font-weight: bold;
  -webkit-transition: .3s;
  transition: .3s;
}

.fsComposerFormEmbed .ui-datepicker .ui-datepicker-prev:hover:before,
.fsComposerFormEmbed .ui-datepicker .ui-datepicker-next:hover:before {
  -webkit-transition: .3s;
  transition: .3s;
  opacity: .5;
}

.fsComposerFormEmbed .ui-datepicker .ui-datepicker-next:before {
  content: '\203A';
}

.fsComposerFormEmbed .ui-datepicker .ui-datepicker-prev:before {
  content: '\2039';
}

.fsComposerFormEmbed .ui-datepicker .ui-datepicker-next-hover {
  right: 2px;
  top: 2px;
}

.fsComposerFormEmbed .ui-datepicker .ui-datepicker-prev-hover {
  left: 2px;
  top: 2px;
}

.fsComposerFormEmbed .ui-datepicker .ui-state-default {
  background: rgba(0, 0, 0, 0.05);
  text-align: center;
}

.fsComposerFormEmbed .ui-datepicker .ui-state-active {
  background: rgba(0, 0, 0, 0.1);
}

.fsComposerFormEmbed .ui-datepicker .ui-state-highlight {
  border: solid 1px #d3d3d3;
  background-color: #d3d3d3;
}

::-webkit-input-placeholder {
  color: #1e2233;
}

:-moz-placeholder {
  color: #1e2233;
  opacity: 1;
}

::-moz-placeholder {
  color: #1e2233;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #1e2233;
}

/*! elements - login */

.fsAccount button:not(:last-of-type) {
  margin-right: 10px;
}

.fsLoginForgotPasswordLink,
.fsLoginNewAccountLink {
  margin-bottom: 10px;
}

.fsLoginForgotPasswordLink:last-child,
.fsLoginNewAccountLink:last-child {
  margin-bottom: 0;
}

.fsLoginNewFields .fsLoginNewCaptcha {
  margin-bottom: 20px;
}

.fsLoginNewFields .fsLoginNewCaptcha #recaptcha_area,
.fsLoginNewFields .fsLoginNewCaptcha #recaptcha_table {
  max-width: 100%;
}

@media screen and (max-width: 599px) {
  .fsLoginNewFields .fsLoginNewCaptcha #recaptcha_widget_div {
    overflow: hidden;
    border-radius: 5px;
  }
}

.fsResetPasswordFields > div {
  margin-bottom: 20px;
}

.fsResetPasswordFields > div:last-child {
  margin-bottom: 0;
}

.fsResetPasswordFields label > span {
  display: block;
}

.fsResetPasswordFields label > input {
  margin-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .fsLoginForgotControls label,
  .fsLoginNewFields label,
  .fsResetPasswordFields label {
    display: block;
    margin-bottom: 3px;
  }

  .fsLoginForgotControls input,
  .fsLoginNewFields input,
  .fsResetPasswordFields input {
    display: block;
    width: 100%;
  }
}

.fsLoginForgotView .fsLoginForgotEmail {
  display: block;
}

.fsLoginForgotSuccess .fsStyleDefaultButton {
  margin-top: 20px;
}

.fsAccountGreeting {
  margin-bottom: 20px;
}

.fsAccountLinks {
  margin: 0;
}

.fsAccountLinks li:not(:first-child) {
  border-color: #d2d3d5;
}

.fsAccountLogout {
  display: block;
  margin-top: 20px;
}

.fsAccountLogout > .fsStyleUpdateButton:last-child {
  margin-bottom: 0;
}

input[name*="passkey"] + .fsLoginSubmit {
  margin-top: 20px;
}

.fsError {
  margin-bottom: 50px;
}

.fsResetContinue,
.fsResetCancel,
.fsLoginNewSuccess > button {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 8px 16px;
  background: #3c3f48;
  color: #fff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.6875rem;
  line-height: 1.36364;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
}

.fsResetContinue:hover,
.fsResetContinue:focus,
.fsStateSelected .fsResetContinue,
.fsResetContinue.on,
.fsResetCancel:hover,
.fsResetCancel:focus,
.fsStateSelected .fsResetCancel,
.fsResetCancel.on,
.fsLoginNewSuccess > button:hover,
.fsLoginNewSuccess > button:focus,
.fsStateSelected .fsLoginNewSuccess > button,
.fsLoginNewSuccess > button.on {
  background: #0b0e22;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.fsResetContinue em,
.fsResetCancel em,
.fsLoginNewSuccess > button em {
  display: block;
  font-style: normal;
}

.fsLoginNewSuccess button {
  margin-top: 20px;
}

.fsNews.fsThumbnailAlignLeft .fsThumbnail {
  float: none;
}

@media (min-width: 600px) {
  .fsNews.fsThumbnailAlignLeft .fsThumbnail {
    float: left;
  }
}

.fsNews.fsThumbnailAlignRight .fsThumbnail {
  float: none;
}

@media (min-width: 600px) {
  .fsNews.fsThumbnailAlignRight .fsThumbnail {
    float: right;
  }
}

/*! _dialog.scss - src/sass/modules/news/_dialog.scss - news dialog pop up */

.fsPostElement.fsThumbnailAlignLeft .fsThumbnail {
  float: none;
}

@media (min-width: 600px) {
  .fsPostElement.fsThumbnailAlignLeft .fsThumbnail {
    float: left;
  }
}

.fsPostElement.fsThumbnailAlignRight .fsThumbnail {
  float: none;
}

@media (min-width: 600px) {
  .fsPostElement.fsThumbnailAlignRight .fsThumbnail {
    float: right;
  }
}

.fsPostElement article {
  color: #696c73;
  border-bottom: #d2d3d5 solid 1px;
  padding-bottom: 30px;
  margin-top: 40px;
}

.fsPostElement article:last-of-type {
  border: 0;
}

.fsPostElement .fsTitle > .fsPostLink {
  font-size: 1rem;
  line-height: 1.5;
  color: #0b0e22;
  margin-bottom: 10px;
  display: block;
  margin-top: 13px;
  font-weight: 700;
}

.fsPostElement .fsAuthor {
  font-size: 0.8125rem;
  line-height: 1.23077;
  display: block;
  margin-bottom: 6px;
}

.fsPostElement .fsDateTime {
  font-size: 0.8125rem;
  line-height: 1.23077;
  display: block;
  margin-bottom: 15px;
}

.fsPostElement .fsSummary {
  margin-bottom: 15px;
  font-size: 0.875rem;
  line-height: 1.64286;
}

.fsPostElement .fsPostLink {
  font-size: 0.875rem;
  line-height: 1.64286;
}

.fsPostElement .fsCategories {
  margin: 10px 0;
}

.fsPostElement .fsCategories .fsCategory {
  background: #8091b4;
  margin-right: 4px;
  border: 0;
  font-size: 0.625rem;
  font-weight: 700;
  color: #ffffff;
  padding: 0 6px;
  border-radius: 2px;
}

.fsPostElement .fsCategories .fsCategory:last-child {
  margin: 0;
}

.fsPostElement .fsTags {
  margin-top: 30px;
}

.fsPostElement .fsTags .fsTag {
  background: #f9f9fa;
  border: solid 1px #d2d3d5;
  font-size: 0.6875rem;
  margin-right: 5px;
  color: #696c73;
  padding: 0 6px;
}

.fsPostElement .fsTags .fsTag:last-child {
  margin-right: 0;
}

.fsPostElement.fsSlideshow .fsElementContent {
  padding-left: 35px;
  padding-right: 35px;
}

@media (min-width: 700px) {
  .fsPostElement.fsSlideshow .fsElementContent {
    padding-left: 75px;
    padding-right: 75px;
  }
}

.fsPostElement.fsSlideshow article {
  border-bottom: 0;
}

/*! _dialog.scss - src/sass/modules/post/_dialog.scss - post dialog pop up */

.fsResourceElement .fsTitle {
  margin-bottom: 10px;
}

.fsResourceElement figcaption {
  margin-top: 10px;
}

.fsResourceElement.fsListNav .fsResourceCollectionName + nav {
  margin-top: 20px;
}

.fsResourceElement.fsListNav .fsTitle {
  font-size: 16px;
  line-height: 26px;
  font-weight: normal;
  margin-bottom: 0;
}

.fsResourceElement.fsSlideshow .fsElementSlideshow[data-arrows*="true"] {
  padding: 0;
}

.fsResourceElement.fsSlideshow.hero article {
  padding: 0;
  height: 30vh;
  min-height: 797px;
}

@media (max-width: 799px) {
  .fsResourceElement.fsSlideshow.hero article {
    min-height: 206px;
  }
}

.fsResourceElement.fsSlideshow.hero article img {
  display: none;
}

.fsResourceElement .fsElementSlideshow[data-slides-to-show="1"] .fsResourceTypeImage .fsTitle {
  text-align: center;
}

.fsResourceElement .fsElementSlideshow[data-slides-to-show="1"] .fsResourceTypeImage img {
  margin: 0 auto;
}

.fsResourceElement .fsElementSlideshowControls > button {
  bottom: 0;
  top: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*! _dialog.scss - src/sass/modules/resources/_dialog.scss - resource dialog pop up */

/*! _main.scss - src/sass/modules/search/ - main search import */

/*! _search-box.scss - src/sass/modules/search/ - sitewide search box */

.fsSearchElement.fsSearchForm .fsSearchElementKeyword {
  margin-bottom: 0;
}

.fsSearchElement.fsSearchForm .fsSearchElementKeyword + .fsSearchElementSearchButton {
  margin-top: 0;
}

.fsSearchElement.fsSearchForm .fsSearchElementSearchButton:last-child {
  margin-top: 20px;
  margin-bottom: 0;
}

/*! _search-results.scss - src/sass/modules/search/ - sitewide search results */

.fsSearchElement.fsList li.fsListItem {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px #d2d3d5;
}

.fsSearchElement.fsList .fsListItems {
  padding: 0;
}

.fsSearchElement.fsList .fsSearchResultInfo {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: solid 1px #d2d3d5;
}

.fsSearchElement.fsList .fsSearchResultInfo:empty {
  margin: 0;
  border: none;
}

/*! _custom.scss - src/sass/modules/search/ - custom site search, design based */

.top-search-container {
  max-height: 0px;
  background-color: #e6e9f0;
  -webkit-transition: max-height 0.4s ease-in-out;
  transition: max-height 0.4s ease-in-out;
  overflow: hidden;
  margin-bottom: 0;
}

body.search-expanded .top-search-container {
  max-height: 90px;
}

.top-search-container > .fsElementContent {
  padding: 0;
  text-align: center;
}

@media (max-width: 599px) {
  .top-search-container .top-search > .fsElementContent {
    border-bottom: 1px solid #99a7c3;
    padding-bottom: 15px;
  }
}

.top-search-container .top-search form {
  margin: auto;
  display: inline-block;
  overflow: hidden;
  width: 600px;
  margin-top: 20px;
  position: relative;
}

@media (max-width: 599px) {
  .top-search-container .top-search form {
    width: 90%;
  }
}

.top-search-container .top-search label {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.top-search-container .top-search input {
  background-color: #ffffff;
  height: 44px;
  border: 0px;
  margin: 0;
  padding: 10px 10px 10px 45px;
  float: left;
  display: block;
  width: calc(100% - 50px);
  font-size: 1rem;
  font-weight: 500;
  color: #696c73;
  border: solid 1px #99a7c3;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  outline: none;
}

.top-search-container .top-search .fsSearchElementSearchButton {
  height: 44px;
  width: 50px;
  margin: 0px;
  padding: 0px;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  background-color: transparent;
  border: 0px;
  font-size: 0;
  border-radius: 2px;
}

.top-search-container .top-search .fsSearchElementSearchButton:before {
  content: "\F002";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-size: 15px;
  color: #8091b4;
}

.top-search-container .top-search .fsSearchElementSearchButton:focus:before {
  color: #df3a3e;
}

.top-search-container .top-search .search-close {
  height: 44px;
  width: 45px;
  margin: 0px;
  padding: 0px;
  display: block;
  background-color: transparent;
  border: 0px;
  font-size: 0;
  background: #f9f9fa;
  border: solid 1px #99a7c3;
  border-left: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  cursor: pointer;
}

.top-search-container .top-search .search-close:hover,
.top-search-container .top-search .search-close:focus {
  background: #e6e9f0;
}

.top-search-container .top-search .search-close:before {
  content: "\E907";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-size: 0.75rem;
  color: #df3a3e;
  line-height: 3;
}

.top-search-container .fsButtonClear {
  right: 67px;
  top: 44px;
}

.search-button-nav a {
  white-space: nowrap;
  padding: 3px 0 6px 0;
  display: block;
  font-size: 0.875rem;
  font-family: "proxima-nova-extra-condensed", sans-serif;
  text-transform: uppercase;
  color: #0b0e22;
  position: relative;
}

@media (min-width: 800px) {
  .search-button-nav a {
    padding: 0 0 4px 0;
  }
}

.search-button-nav a:after {
  content: "\F002";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-size: 15px;
  color: #df3a3e;
  padding-left: 10px;
  width: 30px;
  display: inline-block;
}

.search-button-nav a:hover,
.search-button-nav a:focus {
  text-decoration: none;
  color: #df3a3e;
}

.search-btn-open a:after {
  content: "\E907";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-size: 0.6875rem;
}

/*! elements - social main */

/*! elements - social vimeo */

.fsVimeo {
  margin-bottom: 20px;
}

.fsVimeo iframe.fsSocialVideoFrame {
  margin-bottom: 20px;
}

.fsVimeoList,
.fsVimeoList ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fsVimeoList li {
  margin: 0;
  padding: 0;
}

.fsVimeoList .fsVimeoListItem {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px #d2d3d5;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  opacity: .6;
  cursor: pointer;
}

.fsVimeoList .fsVimeoListItem:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.fsVimeoList .fsVimeoListItem:hover {
  border: none;
  border-bottom: solid 1px #d2d3d5;
  padding: 0;
  padding-bottom: 20px;
  opacity: 1;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.fsVimeoList .fsVimeoListItem:hover:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.fsVimeoThumb {
  margin-bottom: 10px;
  margin-right: 20px;
}

@media (min-width: 600px) {
  .fsVimeoThumb {
    float: left;
    margin-bottom: 0;
  }
}

.vimeo_view_link a {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 8px 16px;
  background: #3c3f48;
  color: #fff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.6875rem;
  line-height: 1.36364;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
}

.vimeo_view_link a:hover,
.vimeo_view_link a:focus,
.fsStateSelected .vimeo_view_link a,
.vimeo_view_link a.on {
  background: #0b0e22;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.vimeo_view_link a em {
  display: block;
  font-style: normal;
}

/*! elements - social youtube */

.fsYoutube {
  margin-bottom: 20px;
}

.fsYoutube .fsSocialVideoFrame {
  margin-bottom: 20px;
}

.fsYoutubeList,
.fsYoutubeList ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fsYoutubeList li {
  margin: 0;
  padding: 0;
}

.fsYoutubeList .fsYoutubeListItem {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px #d2d3d5;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  opacity: .6;
}

.fsYoutubeList .fsYoutubeListItem:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.fsYoutubeList .fsYoutubeListItem:hover {
  border: none;
  border-bottom: solid 1px #d2d3d5;
  padding: 0;
  padding-bottom: 20px;
  opacity: 1;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.fsYoutubeList .fsYoutubeListItem:hover:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.fsYoutubeThumb {
  margin-bottom: 10px;
  margin-right: 20px;
  float: none;
}

@media (min-width: 600px) {
  .fsYoutubeThumb {
    float: left;
    margin-bottom: 0;
  }
}

.Youtube_view_link a {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 8px 16px;
  background: #3c3f48;
  color: #fff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.6875rem;
  line-height: 1.36364;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
}

.Youtube_view_link a:hover,
.Youtube_view_link a:focus,
.fsStateSelected .Youtube_view_link a,
.Youtube_view_link a.on {
  background: #0b0e22;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.Youtube_view_link a em {
  display: block;
  font-style: normal;
}

.juicer-feed .j-meta {
  opacity: 0.8;
}

.juicer-feed .j-poster > a:hover {
  color: #0b0e22;
}

.juicer-feed .j-poster a.j-twitter:hover:before {
  color: #2795e9;
}

.juicer-feed .j-poster.j-social:hover {
  opacity: 0.8;
}

/*! elements - tabs */

.fsTabs {
  padding: 0;
  background: none;
  border: 0;
  margin-bottom: 20px;
}

.fsTabs .fsTabsNav {
  margin: 0;
  padding: 0;
  display: none;
}

@media (min-width: 600px) {
  .fsTabs .fsTabsNav {
    display: block;
  }
}

.fsTabs .fsTabsNav li {
  margin-right: 5px;
}

.fsTabs .fsTabsNav li a {
  display: block;
  margin-top: 0;
  font-weight: normal;
  font-size: 30px;
  line-height: 40px;
  color: #0b0e22;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  margin-bottom: 30px;
  margin-bottom: 0;
  display: block;
  font-size: 16px;
  padding: 13.33333px;
  color: #0b0e22;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: "proxima-nova", sans-serif;
  text-transform: none;
  line-height: 1.5;
  background: #ffffff;
  color: #696c73;
  position: relative;
  font-weight: 700;
  font-size: 0.875rem;
}

@media (max-width: 699px) {
  .fsTabs .fsTabsNav li a {
    font-size: 1.875rem;
  }
}

.fsTabs .fsTabsNav li a:after {
  border-bottom: 2px #c3c4c6 solid;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  content: "";
}

.fsTabs .fsTabsNav li a:hover {
  background: #ffffff;
  color: #0b0e22;
}

.fsTabs .fsTabsNav li a:hover:after {
  border-bottom: solid 2px #002269;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  content: "";
}

.fsTabs .fsTabsNav li.fsStateSelected a {
  background: #ffffff;
  color: #df3a3e;
}

.fsTabs .fsTabsNav li.fsStateSelected a:after {
  border-bottom: solid 5px #df3a3e;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  content: "";
}

.fsTabs .fsPanel {
  border-bottom: 0;
  margin-top: 20px;
}

.fsPanelGroup.fsTabs > .fsElementContent > .fsPanel > .fsElementActionButtonContainer,
.fsPanelGroup.fsTabs > .fsElementContent > .fsPanel > header,
.fsPanelGroup.fsTabs > .fsElementContent > .fsPanel:not(.fsStateOpen) {
  display: block;
}

@media (min-width: 600px) {
  .fsPanelGroup.fsTabs > .fsElementContent > .fsPanel > .fsElementActionButtonContainer,
  .fsPanelGroup.fsTabs > .fsElementContent > .fsPanel > header,
  .fsPanelGroup.fsTabs > .fsElementContent > .fsPanel:not(.fsStateOpen) {
    display: none;
  }
}

/*! -main.scss - /sass/modules/tools  */

/*! _all.scss - src/sass/modules/tools - News, Calendar, & Posts Tools Elements */

.fsToolsList.fsStyleSelectList .fsStyleDefaultButton,
.fsElementToolsSearchButton {
  margin: 0 5px 0 0;
  width: auto;
}

.fsToolsList.fsStyleSelectList > li {
  padding: 0;
  margin: 0;
}

.fsToolsList.fsStyleSelectList .fsStyleDefaultButton {
  margin-bottom: 5px;
  padding: 7px 12px;
  font-size: 0.875em;
  line-height: 1.2;
}

/*! _filter.scss - src/sass/modules/tools/posts - News & Calendar Tools Elements */

.fsBannerLeft .fsElementToolsSearch,
.fsBannerRight .fsElementToolsSearch,
.fsStyleOneThird .fsElementToolsSearch,
.fsTwoColumnLayout .fsElementToolsSearch,
.fsThreeColumnLayout > .fsDiv .fsElementToolsSearch,
.fsFourColumnLayout > .fsDiv .fsElementToolsSearch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.fsBannerLeft .fsElementToolsSearch > div,
.fsBannerRight .fsElementToolsSearch > div,
.fsStyleOneThird .fsElementToolsSearch > div,
.fsTwoColumnLayout .fsElementToolsSearch > div,
.fsThreeColumnLayout > .fsDiv .fsElementToolsSearch > div,
.fsFourColumnLayout > .fsDiv .fsElementToolsSearch > div {
  width: 100%;
}

.fsBannerLeft .fsElementToolsSearch .fsFieldContainer,
.fsBannerRight .fsElementToolsSearch .fsFieldContainer,
.fsStyleOneThird .fsElementToolsSearch .fsFieldContainer,
.fsTwoColumnLayout .fsElementToolsSearch .fsFieldContainer,
.fsThreeColumnLayout > .fsDiv .fsElementToolsSearch .fsFieldContainer,
.fsFourColumnLayout > .fsDiv .fsElementToolsSearch .fsFieldContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.fsBannerLeft .fsElementToolsSearch .fsFieldContainer .fsStyleDefaultField,
.fsBannerRight .fsElementToolsSearch .fsFieldContainer .fsStyleDefaultField,
.fsStyleOneThird .fsElementToolsSearch .fsFieldContainer .fsStyleDefaultField,
.fsTwoColumnLayout .fsElementToolsSearch .fsFieldContainer .fsStyleDefaultField,
.fsThreeColumnLayout > .fsDiv .fsElementToolsSearch .fsFieldContainer .fsStyleDefaultField,
.fsFourColumnLayout > .fsDiv .fsElementToolsSearch .fsFieldContainer .fsStyleDefaultField {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.fsBannerLeft .fsElementToolsSearch .fsElementToolsSearchButton,
.fsBannerRight .fsElementToolsSearch .fsElementToolsSearchButton,
.fsStyleOneThird .fsElementToolsSearch .fsElementToolsSearchButton,
.fsTwoColumnLayout .fsElementToolsSearch .fsElementToolsSearchButton,
.fsThreeColumnLayout > .fsDiv .fsElementToolsSearch .fsElementToolsSearchButton,
.fsFourColumnLayout > .fsDiv .fsElementToolsSearch .fsElementToolsSearchButton {
  width: 100%;
}

.fsElementToolsSearch .fsSeparator {
  margin: 0 5px;
  display: inline-block;
  text-align: center;
}

.fsElementToolsKeyword + .fsElementToolsDateRange {
  margin-top: 10px;
}

.fsElementToolsSearchButton {
  margin: 10px 0 0;
}

/*! _filter.scss - src/sass/modules/tools/posts - Calendar Tools Elements */

.fsLegend .fsElementControls {
  margin-bottom: 5px;
}

.fsLegend .fsElementControls label input:checked + span {
  background: #1e2233;
  color: #ffffff;
}

.fsLegend .fsElementControls label input + span {
  color: #1e2233;
  background: #d2d3d5;
}

/*! _filter.scss - src/sass/modules/tools/posts - Calendar Tools Elements */

.fsMiniGrid .fsCalendarEventGrid {
  max-width: 100%;
  width: 280px;
}

.fsMiniGrid .fsCalendarEventGrid .fsCalendarDaybox {
  -webkit-box-shadow: inset -1px 0 0 0 #fff, inset 0 -1px 0 0 #fff;
          box-shadow: inset -1px 0 0 0 #fff, inset 0 -1px 0 0 #fff;
  background: #d2d3d5;
  color: #3c3f48;
  font-size: .875em;
  line-height: 1;
  padding: 0;
  padding: 10px 5px;
  -webkit-transition: .3s;
  transition: .3s;
}

.fsMiniGrid .fsCalendarEventGrid .fsCalendarDaybox:hover {
  opacity: 1;
  background: #ffcc00 !important;
  color: #ffffff !important;
  -webkit-transition: .3s;
  transition: .3s;
}

.fsMiniGrid .fsCalendarEventGrid .fsCalendarDaybox:last-child {
  -webkit-box-shadow: inset 0 -1px 0 0 #fff;
          box-shadow: inset 0 -1px 0 0 #fff;
}

.fsMiniGrid .fsCalendarEventGrid .fsCalendarDaybox.fsStateHasEvents {
  padding-bottom: 12px;
  background: #d2d3d5;
  color: #3c3f48;
}

.fsMiniGrid .fsCalendarEventGrid .fsCalendarDaybox.fsStateHasEvents .fsCalendarDate:after {
  content: '\25CF';
  font-size: 8px;
  display: block;
  line-height: .5;
  -webkit-transform: translate3d(0, 2px, 0);
          transform: translate3d(0, 2px, 0);
}

.fsMiniGrid .fsCalendarEventGrid .fsCalendarDaybox.fsCalendarOutOfRange {
  background: #f9f9fa;
  color: #696c73;
}

.fsMiniGrid .fsCalendarEventGrid .fsCalendarDaybox.fsCalendarToday {
  background: #084cdc;
  color: #ffffff;
}

.fsCalendarMonthYearPicker > .fsStyleUpdateButton {
  margin-bottom: 0;
  display: block;
  color: #ffffff;
  background-color: #1e2233;
}

/*! _category.scss - src/sass/modules/tools/posts - Posts Tools Elements */

/*! _tag.scss - src/sass/modules/tools/posts - Posts Tools Elements */

/*! elements - common v0.0.1 */

/* Contains generic styles that apply to every element */

.module {
  padding: 20px;
  color: #fff;
}

.module h1,
.module h2,
.module h3,
.module h4,
.module h5,
.module h6 {
  color: inherit;
}

.module a {
  color: inherit;
}

.module {
  background: #df3a3e;
}

/*! pages - home v0.0.1 */

.home #fsPageBodyWrapper {
  padding: 0;
}

.home #fsPageBody {
  margin: 0px;
  padding: 0px;
  width: 100%;
  max-width: 100%;
}

.home .fsLayout .fsDiv {
  padding: 0;
  margin: 0;
}

.home .fsPageTitle {
  position: absolute;
  opacity: 0;
}

@media (min-width: 700px) {
  .home .logo-container {
    background: rgba(0, 34, 105, 0.9);
  }
}

.home .fsLayout {
  margin-right: 0;
  margin-left: 0;
}

.home .breadcrumbs-nav {
  display: none;
}

.home .fsNavigation.nav-home-cta-links {
  margin-bottom: 0;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.home .fsNavigation.nav-home-cta-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 1180px;
  margin: -31px 0 0 0;
  z-index: 100;
  position: relative;
}

@media (max-width: 699px) {
  .home .fsNavigation.nav-home-cta-links ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
}

.home .fsNavigation.nav-home-cta-links ul a {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 8px 16px;
  background: #002269;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.6875rem;
  line-height: 1.36364;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
  width: 164px;
  padding: 20px 35px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  margin-right: 20px;
  border: solid 1px #002269;
  line-height: 1;
  margin-bottom: 0;
  font-weight: 400;
}

.home .fsNavigation.nav-home-cta-links ul a:hover,
.home .fsNavigation.nav-home-cta-links ul a:focus,
.fsStateSelected .home .fsNavigation.nav-home-cta-links ul a,
.home .fsNavigation.nav-home-cta-links ul a.on {
  background: #ffffff;
  color: #002269;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.home .fsNavigation.nav-home-cta-links ul a em {
  display: block;
  font-style: normal;
}

@media (max-width: 699px) {
  .home .fsNavigation.nav-home-cta-links ul a {
    width: 160px;
    padding: 20px 0;
    margin: 0 5px;
  }
}

.home .fsNavigation.nav-home-cta-links ul a:hover {
  border: solid 1px #155184;
  background: #155184;
  color: #ffffff;
}

.home .hero {
  position: relative;
  display: block;
  z-index: 0;
  margin-top: 0;
  margin-bottom: 0;
}

@media (min-width: 700px) {
  .home .hero {
    margin-top: -110px;
  }
}

@media (min-width: 1000px) {
  .home .hero {
    margin-top: 0;
  }
}

.home .hero h1 {
  font-size: 0;
  width: 1px;
  height: 1px;
  display: inline-block;
  overflow: hidden;
  position: absolute !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  clip: rect(1px, 1px, 1px, 1px);
}

.home .hero .fsElementSlideshow {
  margin-bottom: 0;
}

.home .hero article {
  position: relative;
  background-size: cover;
  background-position: center center;
}

.home .hero article figure {
  position: relative;
  margin: 0 auto;
  max-width: 1180px;
  height: 100%;
}

.home .hero article picture {
  min-height: 390px;
}

@media (max-width: 699px) {
  .home .hero article picture {
    min-height: 390px;
  }
}

@media (max-width: 799px) {
  .home .hero article picture {
    display: block;
    background-size: cover;
    position: relative;
    display: block;
    background-position: center center;
  }
}

@media (min-width: 700px) {
  .home .hero article picture {
    min-height: 700px;
  }
}

.home .hero article figcaption {
  padding: 20px;
  background-color: #fff;
  border-top: 5px solid #002269;
}

.home .hero article figcaption p {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
}

.home .hero article figcaption strong {
  color: #002269;
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  font-weight: 400;
}

.home .hero article figcaption strong em {
  color: #df3a3e;
}

@media (min-width: 700px) {
  .home .hero article figcaption {
    position: absolute;
    bottom: 62px;
    right: 20px;
    max-width: 348px;
    background-color: rgba(255, 255, 255, 0.9);
    border-top: 5px solid rgba(0, 34, 105, 0.9);
  }
}

.home-cta-boxes {
  margin: 30px 15px;
}

.home-cta-boxes .cta-box {
  margin-bottom: 0;
  padding: 30px;
  text-align: center;
  border: 1px solid #ccd3e1;
}

.home-cta-boxes .cta-box p:not(:last-of-type) {
  margin-bottom: 20px;
}

.home-cta-boxes .cta-box strong {
  color: #df3a3e;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
}

.home-cta-boxes .cta-box a {
  margin: 0;
}

@media (min-width: 700px) {
  .home-cta-boxes > .fsElementContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .home-cta-boxes .cta-box {
    max-width: 380px;
    padding: 30px 50px;
  }

  .home-cta-boxes .cta-box:first-of-type {
    margin-right: 50px;
  }
}

@media (min-width: 900px) {
  .home-cta-boxes {
    margin: 50px 0 80px;
  }

  .home-cta-boxes .cta-box {
    padding: 30px 73px;
  }

  .home-cta-boxes .cta-box:first-of-type {
    margin-right: 100px;
  }
}

.home-news-container {
  margin-bottom: 0;
  padding-bottom: 60px;
  padding-top: 60px;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(45deg, #ffffff 43.75%, #e6e9f0 43.75%, #e6e9f0 50%, #ffffff 50%, #ffffff 93.75%, #e6e9f0 93.75%, #e6e9f0 100%);
  background-size: 11.31px 11.31px;
  position: relative;
}

@media (max-width: 799px) {
  .home-news-container {
    padding-bottom: 50px;
  }
}

.home-news-container:before {
  height: 60px;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: white;
  background: -webkit-gradient(linear, left bottom, left top, from(white), color-stop(0%, rgba(255, 255, 255, 0)), to(white));
  background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0) 0%, white 100%);
}

.home-news-container:after {
  height: 80px;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(0%, rgba(255, 255, 255, 0)), to(white));
  background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 0%, white 100%);
}

.home-news-container > header {
  text-align: center;
}

.home-news-container > header .fsElementTitle {
  position: relative;
  display: inline-block;
  color: #df3a3e;
  text-transform: uppercase;
  border: 0;
  font-family: "Bebas Neue", sans-serif;
  margin-bottom: 10px;
  font-size: 1.875rem;
}

@media (min-width: 700px) {
  .home-news-container > header .fsElementTitle {
    font-size: 2.8125rem;
    margin-bottom: 20px;
  }
}

.home-news-container > header .fsElementTitle:before,
.home-news-container > header .fsElementTitle:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 454px;
  background: #ccd3e1;
  margin: 0px auto;
  padding: 0px;
  width: 76px;
}

@media (min-width: 800px) {
  .home-news-container > header .fsElementTitle:before,
  .home-news-container > header .fsElementTitle:after {
    width: 207px;
  }
}

.home-news-container > header .fsElementTitle:before {
  left: 165px;
}

@media (min-width: 700px) {
  .home-news-container > header .fsElementTitle:before {
    left: 245px;
  }
}

.home-news-container > header .fsElementTitle:after {
  right: 165px;
}

@media (min-width: 700px) {
  .home-news-container > header .fsElementTitle:after {
    right: 245px;
  }
}

.home-news-container > header .fsElementHeaderContent a {
  font-family: "proxima-nova-extra-condensed", sans-serif;
  color: #155184;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 400;
}

.home-news-container .news-events {
  margin-left: auto;
  margin-right: auto;
  z-index: 99;
  position: relative;
}

.home-news-container .news-events article {
  margin-top: 20px;
  border: 0;
  padding: 0 16px;
}

.home-news-container .news-events .slick-list {
  max-width: 1210px;
  margin-left: auto;
  margin-right: auto;
}

.home-news-container .news-events .fsThumbnail {
  max-width: 280px;
}

.home-news-container .news-events .fsListItems {
  margin-bottom: 0;
  padding-left: 5px;
  padding-right: 5px;
}

@media (min-width: 500px) {
  .home-news-container .news-events .fsListItems {
    padding-left: 80px;
    padding-right: 80px;
  }
}

.home-news-container .news-events .fsCategories {
  margin: 0;
  padding: 0;
}

.home-news-container .news-events .fsCategory {
  background: none;
  color: #df3a3e;
  font-size: 0.9375rem;
  font-family: "Bebas Neue", sans-serif;
  padding-left: 0;
  font-weight: 400;
}

.home-news-container .news-events .fsPostLink {
  margin-bottom: 13px;
  font-size: 1.125rem;
}

@media (max-width: 499px) {
  .home-news-container .news-events .fsPostLink {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    float: none;
  }
}

.home-news-container .news-events .fsSummary {
  color: #3c3f48;
  font-size: 0.9375rem;
  font-weight: 600;
}

.home-news-container .slick-dots {
  position: relative;
  z-index: 999;
}

.home-news-container .slick-prev {
  left: 0;
}

.home-news-container .slick-prev:before {
  content: "\F104";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.home-news-container .slick-next {
  right: 0;
}

.home-news-container .slick-next:before {
  content: "\F105";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.social-feeds {
  position: relative;
  z-index: 1;
}

.social-feeds > header {
  position: relative;
  z-index: 10;
  color: #df3a3e;
  text-align: center;
  margin: 0 auto 10px;
  padding: 36px 0;
  background: #df3a3e;
}

@media (min-width: 800px) {
  .social-feeds > header {
    margin: 0 auto 20px;
  }
}

.social-feeds > header .fsElementTitle {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 2.5rem;
  text-transform: uppercase;
}

.social-feeds > header .fsElementTitle:before {
  content: "\F16D";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  margin-right: 10px;
  font-size: 2.1875rem;
}

.social-feeds > header .fsElementHeaderContent {
  margin-bottom: 0;
  font-size: 1.5625rem;
  line-height: 1.16;
  letter-spacing: 0.5px;
}

.social-feeds > .fsElementContent {
  max-width: 100%;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 10px;
  margin-right: 10px;
}

@media (min-width: 800px) {
  .social-feeds > .fsElementContent {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media (min-width: 1200px) {
  .social-feeds > .fsElementContent {
    margin-left: 0;
    margin-right: 0;
  }
}

.social-feeds .fsFeeds {
  -webkit-transition: 0.3s top, 0.3s bottom;
  transition: 0.3s top, 0.3s bottom;
  margin-bottom: 10px;
}

@media (min-width: 800px) {
  .social-feeds .fsFeeds {
    margin-bottom: 20px;
  }
}

.social-feeds .fsFeeds.instagram {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (-ms-high-contrast: none) {
  .social-feeds .fsFeeds > .fsElementContent {
    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;
  }
}

.social-feeds .fsFeeds > .fsElementContent {
  width: 100%;
  max-width: 1180px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 700px) {
  .social-feeds .fsFeeds > .fsElementContent {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media screen and (-ms-high-contrast: none) {
  .social-feeds .fsFeeds .fsFeeds-post {
    height: 270px;
    width: auto;
    margin: 1px;
    width: calc((100% / 4) - 5px);
  }
}

.social-feeds .fsFeeds .fsFeeds-post {
  background-size: cover;
  background-position: center;
  position: relative;
}

.social-feeds .fsFeeds .fsFeeds-post:before {
  content: "";
  padding-bottom: 100%;
  display: inline-block;
  vertical-align: top;
}

.social-feeds .fsFeeds .fsFeeds-post:hover {
  opacity: 0.75;
}

.social-feeds .fsFeeds .fsFeeds-post .insta-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: hidden;
  z-index: 10;
}

.social-feeds .fsFeeds .fsFeeds-post .insta-link:focus {
  opacity: 1;
  font-size: 0;
}

body.fsComposeMode .hero {
  margin-top: 0;
}

body.fsComposeMode .fsNavigation.nav-home-cta-links ul {
  margin: 0;
}

.portal-page .fsTwoColumnWideRightLayout > .fsDiv > .fsElement + .fsElement {
  margin-top: 2em;
}

/*! pages - style-guide v0.0.1 */

.colors ol {
  zoom: 1;
  padding: 0;
  list-style: none;
}

.colors ol:after {
  display: table;
  clear: both;
  content: '';
}

.colors ol li {
  position: relative;
  float: left;
  width: 50%;
  min-width: 20%;
}

@media (min-width: 1180px) {
  .colors ol li {
    margin-bottom: 0;
  }
}

.colors ol li:after {
  display: block;
  margin-top: 60px;
  background: #fff;
  padding-bottom: 20px;
}

@media (min-width: 800px) {
  .colors.main ol li {
    width: 50%;
  }
}

.colors.main ol li:nth-of-type(1) {
  background: #002269;
}

.colors.main ol li:nth-of-type(1):after {
  content: "#002269";
}

.colors.main ol li:nth-of-type(2) {
  background: #df3a3e;
}

.colors.main ol li:nth-of-type(2):after {
  content: "#df3a3e";
}

@media (min-width: 800px) {
  .colors.shade ol li {
    width: 10%;
  }
}

.colors.shade ol li:nth-of-type(1) {
  background: #000000;
}

.colors.shade ol li:nth-of-type(1):after {
  content: "#000000";
}

.colors.shade ol li:nth-of-type(2) {
  background: #0b0e22;
}

.colors.shade ol li:nth-of-type(2):after {
  content: "#0b0e22";
}

.colors.shade ol li:nth-of-type(3) {
  background: #1e2233;
}

.colors.shade ol li:nth-of-type(3):after {
  content: "#1e2233";
}

.colors.shade ol li:nth-of-type(4) {
  background: #3c3f48;
}

.colors.shade ol li:nth-of-type(4):after {
  content: "#3c3f48";
}

.colors.shade ol li:nth-of-type(5) {
  background: #696c73;
}

.colors.shade ol li:nth-of-type(5):after {
  content: "#696c73";
}

.colors.shade ol li:nth-of-type(6) {
  background: #9ea0a4;
}

.colors.shade ol li:nth-of-type(6):after {
  content: "#9ea0a4";
}

.colors.shade ol li:nth-of-type(7) {
  background: #c3c4c6;
}

.colors.shade ol li:nth-of-type(7):after {
  content: "#c3c4c6";
}

.colors.shade ol li:nth-of-type(8) {
  background: #d2d3d5;
}

.colors.shade ol li:nth-of-type(8):after {
  content: "#d2d3d5";
}

.colors.shade ol li:nth-of-type(9) {
  background: #f9f9fa;
}

.colors.shade ol li:nth-of-type(9):after {
  content: "#f9f9fa";
}

.colors.shade ol li:nth-of-type(10) {
  background: #ffffff;
}

.colors.shade ol li:nth-of-type(10):after {
  content: "#ffffff";
}

.fonts ol {
  padding: 0;
  list-style: none;
}

.fonts ol li:nth-of-type(1) {
  font-family: "proxima-nova", sans-serif;
}

.fonts ol li:nth-of-type(1):after {
  content: "proxima-nova, sans-serif";
  display: block;
  margin-bottom: 10px;
}

.fonts ol li:nth-of-type(2) {
  font-family: "Bebas Neue", sans-serif;
}

.fonts ol li:nth-of-type(2):after {
  content: "Bebas Neue, sans-serif";
  display: block;
  margin-bottom: 10px;
}

.fonts ol li:nth-of-type(3) {
  font-family: "proxima-nova-extra-condensed", sans-serif;
}

.fonts ol li:nth-of-type(3):after {
  content: "proxima-nova-extra-condensed, sans-serif";
  display: block;
  margin-bottom: 10px;
}

.fonts ol li:nth-of-type(4) {
  font-family: "IcoMoon";
}

.fonts ol li:nth-of-type(4):after {
  content: "IcoMoon";
  display: block;
  margin-bottom: 10px;
}

.headers .fsElementContent h1:after {
  content: " - font-size: 45px / line-height: 55px";
}

.headers .fsElementContent h2:after {
  content: " - font-size: 30px / line-height: 40px";
}

.headers .fsElementContent h3:after {
  content: " - font-size: 22px / line-height: 27px";
}

.headers .fsElementContent h4:after {
  content: " - font-size: 18px / line-height: 19px";
}

.headers .fsElementContent h5:after {
  content: " - font-size: 16px / line-height: 22px";
}

.headers .fsElementContent h6:after {
  content: " - font-size: 11px / line-height: 15px";
}

.interior-hero {
  margin-bottom: 0;
}

.interior-hero article {
  padding: 0;
  height: 50vh;
  background-size: cover;
  background-position: center center;
}

@media (min-width: 800px) {
  .interior-hero article {
    height: 60vh;
  }
}

@media (min-width: 1000px) {
  .interior-hero article {
    height: 75vh;
  }
}

.interior-hero article img {
  display: none;
}

.calloutbox,
.callout-box-light,
.callout-box-dark,
.callout-box-dark-color,
.fsBanner .callout-box-school {
  display: block;
  background: #df3a3e;
  color: #3c3f48;
}

.calloutbox > header .fsElementHeaderContent,
.callout-box-light > header .fsElementHeaderContent,
.callout-box-dark > header .fsElementHeaderContent,
.callout-box-dark-color > header .fsElementHeaderContent,
.fsBanner .callout-box-school > header .fsElementHeaderContent {
  margin-bottom: 0;
}

.calloutbox > header .fsImage picture,
.callout-box-light > header .fsImage picture,
.callout-box-dark > header .fsImage picture,
.callout-box-dark-color > header .fsImage picture,
.fsBanner .callout-box-school > header .fsImage picture {
  display: block;
}

.calloutbox > header .fsImage img,
.callout-box-light > header .fsImage img,
.callout-box-dark > header .fsImage img,
.callout-box-dark-color > header .fsImage img,
.fsBanner .callout-box-school > header .fsImage img {
  display: block;
  width: 100%;
  height: auto;
}

.calloutbox > .fsElementContent,
.callout-box-light > .fsElementContent,
.callout-box-dark > .fsElementContent,
.callout-box-dark-color > .fsElementContent,
.fsBanner .callout-box-school > .fsElementContent {
  padding: 30px;
  line-height: 1.6;
}

.calloutbox > .fsElementContent h2,
.callout-box-light > .fsElementContent h2,
.callout-box-dark > .fsElementContent h2,
.callout-box-dark-color > .fsElementContent h2,
.fsBanner .callout-box-school > .fsElementContent h2 {
  font-size: 1.875rem;
  line-height: 1.33333;
  margin-bottom: 20px;
  font-family: "Bebas Neue", sans-serif;
}

.calloutbox {
  color: #ffffff;
  display: block;
}

.calloutbox > .fsElementContent {
  padding: 0;
}

@media (min-width: 800px) {
  .calloutbox figcaption,
  .calloutbox picture {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 50%;
  }
}

.calloutbox figcaption {
  padding: 30px;
  margin-top: 0;
}

@media (min-width: 800px) {
  .calloutbox figcaption {
    padding: 98px 30px;
  }
}

.calloutbox figcaption strong {
  font-size: 1.875rem;
  font-family: "Bebas Neue", sans-serif;
  line-height: 1.33333;
  font-weight: normal;
}

.calloutbox picture {
  position: relative;
  overflow: hidden;
}

.calloutbox picture img {
  min-width: 100%;
  display: block;
}

@media (min-width: 800px) {
  .calloutbox picture img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    display: block;
    height: auto;
    min-height: 100%;
    max-width: none;
  }
}

@media (min-width: 800px) {
  .calloutbox figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }
}

.calloutbox.right {
  background: #df3a3e;
}

.calloutbox.right figure {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media (min-width: 800px) {
  .calloutbox.right figure {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

.calloutbox.left {
  background: #0b0e22;
}

.calloutbox.left figure {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media (min-width: 800px) {
  .calloutbox.left figure {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.callout-box-light {
  background: #f9f9fa;
  color: #3c3f48;
}

.callout-box-light > .fsElementContent {
  border: 1px solid #c3c4c6;
}

.callout-box-light header > .fsElementHeaderContent {
  margin-bottom: 0;
}

.callout-box-dark {
  background: #002269;
  color: #ffffff;
}

.callout-box-dark header > .fsElementHeaderContent {
  margin-bottom: 0;
}

.callout-box-dark h2 {
  color: #ffffff;
}

.callout-box-dark.red {
  background: #df3a3e;
}

.callout-box-dark.red .fsElementContent a {
  color: #000000;
}

.callout-box-dark.black {
  background: #0b0e22;
}

.callout-box-dark .fsElementContent a {
  color: #ffcc00;
}

.callout-box-dark .fsElementContent a:hover {
  color: #ffffff;
}

.callout-box-dark-color {
  background: #df3a3e;
  color: #ffffff;
}

.callout-box-dark-color header > .fsElementHeaderContent {
  margin-bottom: 0;
}

.fsBanner .callout-box-light .fsImage img,
.fsBanner .callout-box-dark .fsImage img {
  border: 0;
}

.fsBanner .callout-box-light > .fsElementContent,
.fsBanner .callout-box-dark > .fsElementContent {
  padding: 30px 20px;
  font-size: 0.875rem;
}

.fsBanner .callout-box-light > .fsElementContent h2,
.fsBanner .callout-box-dark > .fsElementContent h2 {
  font-size: 1.875rem;
}

.fsBanner .callout-box-light > .fsElementContent a,
.fsBanner .callout-box-dark > .fsElementContent a {
  text-decoration: none;
}

.fsBanner .callout-box-light > .fsElementContent a:hover,
.fsBanner .callout-box-dark > .fsElementContent a:hover {
  text-decoration: underline;
}

.fsBanner .callout-box-school {
  background: #002269;
  color: #ffffff;
}

.fsBanner .callout-box-school header > .fsElementHeaderContent {
  margin-bottom: 0;
}

.fsBanner .callout-box-school > .fsElementContent h2 {
  color: #ffffff;
}

.fsBanner .callout-box-school > .fsElementContent a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.fsBanner .callout-box-school > .fsElementContent a:hover {
  text-decoration: underline;
}

.fsBanner .callout-box-school.gray {
  background: #df3a3e;
}

.fsBanner .image-caption figcaption {
  color: #9ea0a4;
  font-size: 0.875rem;
  line-height: 1.57143;
}

.fsImageCaptioned figcaption {
  color: #9ea0a4;
  font-size: 0.875rem;
  line-height: 1.57143;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 5px;
}

/*! enhancements - infographic */

.infographic {
  padding: 50px 0 10px 0;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(45deg, #ffffff 43.75%, #e6e9f0 43.75%, #e6e9f0 50%, #ffffff 50%, #ffffff 93.75%, #e6e9f0 93.75%, #e6e9f0 100%);
  background-size: 11.31px 11.31px;
  position: relative;
}

@media (min-width: 800px) {
  .infographic {
    padding: 80px 0 40px 0;
  }
}

.infographic:before {
  height: 60px;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: white;
  background: -webkit-gradient(linear, left bottom, left top, from(white), color-stop(0%, rgba(255, 255, 255, 0)), to(white));
  background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0) 0%, white 100%);
}

.infographic:after {
  height: 80px;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(0%, rgba(255, 255, 255, 0)), to(white));
  background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 0%, white 100%);
}

.infographic > header {
  text-align: center;
}

.infographic > header .fsElementTitle {
  position: relative;
  display: inline-block;
  color: #df3a3e;
  text-transform: uppercase;
  border: 0;
  font-size: 1.875rem;
  font-family: "Bebas Neue", sans-serif;
  margin-bottom: 15px;
}

@media (min-width: 700px) {
  .infographic > header .fsElementTitle {
    font-size: 2.8125rem;
    margin-bottom: 30px;
  }
}

.infographic > header .fsElementHeaderContent picture {
  position: relative;
}

.infographic > header .fsElementHeaderContent picture:before,
.infographic > header .fsElementHeaderContent picture:after {
  content: "";
  position: absolute;
  top: -50%;
  -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%);
  height: 1px;
  background: #ccd3e1;
  width: 289px;
}

@media (min-width: 800px) {
  .infographic > header .fsElementHeaderContent picture:before,
  .infographic > header .fsElementHeaderContent picture:after {
    width: 360px;
  }
}

.infographic > header .fsElementHeaderContent picture:before {
  content: "";
  left: 75px;
}

.infographic > header .fsElementHeaderContent picture:after {
  content: "";
  right: 75px;
}

.infographic > .fsElementContent {
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

@media (min-width: 600px) {
  .infographic > .fsElementContent {
    padding-left: 75px;
    padding-right: 75px;
  }
}

.infographic > .fsElementContent > .fsElement,
.infographic > .fsElementContent .slick-slide {
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 700px) {
  .infographic > .fsElementContent > .fsElement,
  .infographic > .fsElementContent .slick-slide {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.infographic > .fsElementContent > .fsElement header,
.infographic > .fsElementContent .slick-slide header {
  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;
  margin: auto;
  position: relative;
}

.infographic > .fsElementContent > .fsElement header .fsElementTitle,
.infographic > .fsElementContent .slick-slide header .fsElementTitle {
  display: block;
  color: #df3a3e;
  margin-bottom: 30px;
  border: 0;
  font-size: 5rem;
  padding-top: 40px;
}

.infographic > .fsElementContent > .fsElement .fsElementContent,
.infographic > .fsElementContent .slick-slide .fsElementContent {
  color: #3c3f48;
  font-size: 0.9375rem;
  font-weight: 600;
}

.infographic .slick-list {
  max-width: 1210px;
  margin-left: auto;
  margin-right: auto;
}

.infographic .slick-dots {
  position: relative;
  z-index: 999;
}

.infographic .slick-prev {
  left: 0;
}

.infographic .slick-prev:before {
  content: "\F104";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.infographic .slick-next {
  right: 0;
}

.infographic .slick-next:before {
  content: "\F105";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*! enhancements - testimonials */

.testimonials-container {
  background: #002269;
  margin-bottom: 0;
}

.testimonials-container article {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.testimonials-container .fsThumbnail {
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  max-width: 100%;
  min-height: 300px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

@media (min-width: 700px) {
  .testimonials-container .fsThumbnail {
    -ms-flex: 0 0 55%;
    -webkit-box-flex: 0;
            flex: 0 0 55%;
    max-width: 55%;
  }
}

@media (min-width: 800px) {
  .testimonials-container .fsThumbnail {
    -ms-flex: 0 0 53%;
    -webkit-box-flex: 0;
            flex: 0 0 53%;
    max-width: 53%;
  }
}

@media (min-width: 1001px) {
  .testimonials-container .fsThumbnail {
    -ms-flex: 0 0 53%;
    -webkit-box-flex: 0;
            flex: 0 0 53%;
    max-width: 53%;
  }
}

.testimonials-container .fsThumbnail:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: -130px;
  left: -175px;
  background-color: #002269;
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  width: 100%;
  max-width: 220px;
  height: 150%;
  -webkit-transform: rotate(24deg);
  -ms-transform: rotate(24deg);
  transform: rotate(24deg);
}

@media (max-width: 699px) {
  .testimonials-container .fsThumbnail:after {
    display: none;
  }
}

@media (min-width: 701px) {
  .testimonials-container .fsThumbnail:after {
    left: -116px;
    max-width: 170px;
    -webkit-transform: rotate(13deg);
        -ms-transform: rotate(13deg);
            transform: rotate(13deg);
  }
}

@media (min-width: 1300px) {
  .testimonials-container .fsThumbnail:after {
    left: -126px;
    max-width: 237px;
  }
}

.testimonials-container .fsThumbnail img {
  display: none;
  max-width: 140px;
}

.testimonials-container .fsBody {
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  max-width: 100%;
  padding: 0;
  z-index: 99;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

@media (min-width: 700px) {
  .testimonials-container .fsBody {
    -ms-flex: 0 0 45%;
    -webkit-box-flex: 0;
            flex: 0 0 45%;
    max-width: 45%;
    min-height: 420px;
  }
}

@media (min-width: 800px) {
  .testimonials-container .fsBody {
    padding: 0;
    -ms-flex: 0 0 47%;
    -webkit-box-flex: 0;
            flex: 0 0 47%;
    max-width: 47%;
    padding-left: 20px;
  }
}

@media (min-width: 1000px) {
  .testimonials-container .fsBody {
    -ms-flex: 0 0 47%;
    -webkit-box-flex: 0;
            flex: 0 0 47%;
    max-width: 47%;
  }
}

.testimonials-container .fs_style_25,
.testimonials-container blockquote {
  color: #ffffff;
  font-size: 1.5625rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 60px;
  max-width: 87%;
  font-size: 1.125rem;
}

@media (min-width: 900px) {
  .testimonials-container .fs_style_25,
  .testimonials-container blockquote {
    max-width: 80%;
    font-size: 1.5625rem;
  }
}

@media (min-width: 1200px) {
  .testimonials-container .fs_style_25,
  .testimonials-container blockquote {
    max-width: 62%;
  }
}

.testimonials-container .fs_style_25:before,
.testimonials-container blockquote:before {
  color: #ffffff;
  top: -10px;
}

.testimonials-container .fs_style_25:after,
.testimonials-container blockquote:after {
  height: 3px;
  background: #df3a3e;
  content: "";
  left: 15px;
  right: 15px;
  position: absolute;
  bottom: -25px;
}

@media (max-width: 999px) {
  .testimonials-container .fs_style_25:after,
  .testimonials-container blockquote:after {
    bottom: -23px;
  }
}

.testimonials-container cite {
  color: #ffffff;
  padding-top: 20px;
  font-family: "proxima-nova-extra-condensed", sans-serif;
  font-size: 1.125rem;
}

.testimonials-container cite:before {
  display: none;
}

.testimonials-container cite strong {
  margin-right: 5px;
}

@media print {
  .nav-main,
  .nav-sub,
  .nav-social,
  .nav-utility-header,
  .nav-utility-footer,
  #fsMenu,
  #fsFooter,
  #fsHeader,
  .fsThumbnail,
  .hide-for-print {
    display: none !important;
  }

  #fsPageContent,
  #fsBannerLeft,
  #fsBannerRight {
    width: 100% !important;
  }

  html {
    font-size: 100%;
    /* for IE */
  }

  body {
    font-size: 62.5%;
  }

  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000000 !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }

  .slick-slide {
    display: none !important;
  }

  .slick-slide.slick-active {
    display: block !important;
  }

  .slick-list {
    height: auto !important;
  }

  .slick-track {
    width: auto !important;
    height: auto !important;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
  }

  .slick-track .slick-slide {
    width: auto !important;
  }

  a[class*='fs_style'] {
    border-color: #000000;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* Don't show links that are fragment identifiers, or use the `javascript:` pseudo protocol */

  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

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

  /* Printing Tables: http://css-discuss.incutio.com/wiki/Printing_Tables */

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  .fsPanel > header ~ .fsElementContent {
    display: block;
  }
}