/*!
 * AECC Career School
 */
@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.33333em;
  margin-left: 1.33333em;
}

.margin-x-2x {
  margin-right: 2.66667em;
  margin-left: 2.66667em;
}

.margin-y {
  margin-top: 1.33333em;
  margin-bottom: 1.33333em;
}

.margin-y-2x {
  margin-top: 2.66667em;
  margin-bottom: 2.66667em;
}

.padding-x {
  padding-right: 1.33333em;
  padding-left: 1.33333em;
}

.padding-x-2x {
  padding-right: 2.66667em;
  padding-left: 2.66667em;
}

.padding-y {
  padding-top: 1.33333em;
  padding-bottom: 1.33333em;
}

.padding-y-2x {
  padding-top: 2.66667em;
  padding-bottom: 2.66667em;
}

.stretch-container {
  margin-right: -1.33333em;
  margin-left: -1.33333em;
}

.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-family: "Raleway", sans-serif;
  font-size: 35px;
  line-height: 48px;
  margin-bottom: 5px;
}

h2 {
  margin-top: 0;
  font-weight: normal;
  font-family: "Raleway", sans-serif;
  font-size: 30px;
  line-height: 43px;
  margin-bottom: 5px;
}

h3 {
  margin-top: 0;
  font-weight: normal;
  font-family: "Raleway", sans-serif;
  font-size: 28px;
  line-height: 39px;
  margin-bottom: 5px;
  color: #416BA9;
}

h4 {
  margin-top: 0;
  font-weight: normal;
  font-family: "Raleway", sans-serif;
  font-size: 22px;
  line-height: 33px;
  margin-bottom: 5px;
}

h5 {
  margin-top: 0;
  font-weight: normal;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

h6 {
  margin-top: 0;
  font-weight: normal;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 2px;
  color: #416BA9;
  text-transform: uppercase;
  letter-spacing: 3.5px;
}

p {
  margin: 0 0 20px;
  letter-spacing: 1.2px;
}

body:not(.fsComposeMode) p:last-child {
  margin-bottom: 0;
}

hr {
  margin: 0 auto 20px;
}

a {
  text-decoration: underline;
  color: #525252;
  -webkit-transition: background .3s, color .3s;
  transition: background .3s, color .3s;
}

a:hover,
a:focus {
  color: #416BA9;
}

ul,
ol {
  margin-top: 0;
  padding-left: 20px;
}

.fsAthleticsEvent.fsTable .fsElementTable,
.fsAthleticsRoster .fsElementTable,
table.fs_style_4 {
  margin-bottom: 20px;
  width: 100%;
  overflow-x: auto;
}

.fsAthleticsEvent.fsTable .fsElementTable th,
.fsAthleticsRoster .fsElementTable th,
.fsAthleticsEvent.fsTable .fsElementTable td,
.fsAthleticsRoster .fsElementTable td,
table.fs_style_4 th,
table.fs_style_4 td {
  vertical-align: top;
  border-bottom: none;
}

.fsAthleticsEvent.fsTable .fsElementTable th,
.fsAthleticsRoster .fsElementTable th,
table.fs_style_4 th {
  padding: 13px;
  background: #416BA9;
  color: #ffffff;
  text-align: left;
  font-size: 13px;
  line-height: 23px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: bold;
}

.fsAthleticsEvent.fsTable .fsElementTable td,
.fsAthleticsRoster .fsElementTable td,
table.fs_style_4 td {
  padding: 13px;
  background: #ffffff;
  color: #000000;
  font-size: 15px;
  line-height: 23px;
}

.fsAthleticsEvent.fsTable .fsElementTable tr:nth-of-type(odd) td,
.fsAthleticsRoster .fsElementTable tr:nth-of-type(odd) td,
table.fs_style_4 tr:nth-of-type(odd) td {
  background-color: #D9E4E0;
}

.fsAthleticsEvent.fsTable .fsElementTable tr,
.fsAthleticsRoster .fsElementTable tr,
table.fs_style_4 tr {
  border-bottom: solid 1px #ffffff;
}

.fsAthleticsEvent.fsTable .fsElementTable tr.fsLoadMoreButtonRow,
.fsAthleticsRoster .fsElementTable tr.fsLoadMoreButtonRow,
table.fs_style_4 tr.fsLoadMoreButtonRow {
  border-bottom: none;
}

.fsAthleticsEvent.fsTable .fsElementTable tr.fsLoadMoreButtonRow > td,
.fsAthleticsRoster .fsElementTable tr.fsLoadMoreButtonRow > td,
table.fs_style_4 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_4: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%;
}

.fs_style_5 {
  display: inline-block;
  border: 1.5px solid #D9E4E0;
  margin: 0 0 20px;
  padding: 25px;
  background: transparent;
  color: #000000;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 23px;
  font-weight: bold;
  letter-spacing: 2px;
  width: 270px;
}

.fs_style_5:hover,
.fs_style_5:focus,
.fsStateSelected .fs_style_5,
.fs_style_5.on {
  background: #416BA9;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1.5px solid #416BA9;
}

.fs_style_5 em {
  display: block;
  font-style: normal;
  text-transform: none;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 1px;
}

.fs_style_XY {
  display: inline-block;
  border: 1.5px solid #D9E4E0;
  margin: 0 0 20px;
  padding: 25px;
  background: #B81F26;
  color: #000000;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 23px;
  font-weight: bold;
  letter-spacing: 2px;
  width: 270px;
}

.fs_style_XY:hover,
.fs_style_XY:focus,
.fsStateSelected .fs_style_XY,
.fs_style_XY.on {
  background: #416BA9;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1.5px solid #416BA9;
}

.fs_style_XY em {
  display: block;
  font-style: normal;
  text-transform: none;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 1px;
}

.fsStyleDefaultButton {
  display: inline-block;
  border: 1.5px solid #D9E4E0;
  margin: 0 0 20px;
  padding: 25px;
  background: transparent;
  color: #000000;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 23px;
  font-weight: bold;
  letter-spacing: 2px;
  width: 270px;
}

.fsStyleDefaultButton:hover,
.fsStyleDefaultButton:focus,
.fsStateSelected .fsStyleDefaultButton,
.fsStyleDefaultButton.on {
  background: #416BA9;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1.5px solid #416BA9;
}

.fsStyleDefaultButton em {
  display: block;
  font-style: normal;
  text-transform: none;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 1px;
}

.fsStyleDefaultButton.fsLoadMoreButton {
  margin-bottom: 0;
}

.fsStyleDefaultButton.fsSelectAll {
  display: inline-block;
  border: 1.5px solid #D9E4E0;
  margin: 0 0 20px;
  padding: 25px;
  background: transparent;
  color: #000000;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 23px;
  font-weight: bold;
  letter-spacing: 2px;
  width: 270px;
  padding: 10px;
  width: auto;
}

.fsStyleDefaultButton.fsSelectAll:hover,
.fsStyleDefaultButton.fsSelectAll:focus,
.fsStateSelected .fsStyleDefaultButton.fsSelectAll,
.fsStyleDefaultButton.fsSelectAll.on {
  background: #416BA9;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1.5px solid #416BA9;
}

.fsStyleDefaultButton.fsSelectAll em {
  display: block;
  font-style: normal;
  text-transform: none;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 1px;
}

.fs_style_9 {
  display: inline-block;
  border: 1.5px solid #D9E4E0;
  margin: 0 0 20px;
  padding: 25px;
  background: transparent;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 23px;
  font-weight: bold;
  letter-spacing: 2px;
  width: 270px;
  border: 1.5px solid #ffffff;
}

.fs_style_9:hover,
.fs_style_9:focus,
.fsStateSelected .fs_style_9,
.fs_style_9.on {
  background: #B81F26;
  color: #000000;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1.5px solid #416BA9;
}

.fs_style_9 em {
  display: block;
  font-style: normal;
  text-transform: none;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 1px;
}

.fs_style_9:hover,
.fs_style_9:focus,
.fsStateSelected .fs_style_9,
.fs_style_9.on {
  border: 1.5px solid #B81F26;
}

.dark-section {
  background-color: #000000;
  position: relative;
  display: block;
  padding: 20px;
}

.dark-section > header,
.dark-section > header h2 {
  color: #ffffff;
}

.fsStyleUpdateButton {
  display: inline-block;
  border: 1.5px solid #D9E4E0;
  margin: 0 0 20px;
  padding: 25px;
  background: transparent;
  color: #000000;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 23px;
  font-weight: bold;
  letter-spacing: 2px;
  width: 270px;
}

.fsStyleUpdateButton:hover,
.fsStyleUpdateButton:focus,
.fsStateSelected .fsStyleUpdateButton,
.fsStyleUpdateButton.on {
  background: #416BA9;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1.5px solid #416BA9;
}

.fsStyleUpdateButton em {
  display: block;
  font-style: normal;
  text-transform: none;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 1px;
}

/*! _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 #cfcfcf;
}

/*! 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: #039;
  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 #416BA9;
}

.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;
}

.fsSlideshow .fsNextButton:before,
.fsSlideshow .fsPrevButton:before {
  color: #000000;
  font-size: 45px;
  -webkit-transition: .3s;
  transition: .3s;
  display: inline-block;
  line-height: 1;
  width: auto;
  height: auto;
  position: absolute;
}

.fsSlideshow .fsNextButton.fsLeftArrow:before,
.fsSlideshow .fsNextButton.fsRightArrow:before,
.fsSlideshow .fsPrevButton.fsLeftArrow:before,
.fsSlideshow .fsPrevButton.fsRightArrow:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.fsSlideshow .fsNextButton.fsLeftArrow:before,
.fsSlideshow .fsPrevButton.fsLeftArrow:before {
  left: 0;
}

.fsSlideshow .fsNextButton.fsRightArrow:before,
.fsSlideshow .fsPrevButton.fsRightArrow:before {
  right: 0;
}

.fsSlideshow .fsNextButton:hover:before,
.fsSlideshow .fsNextButton:focus:before,
.fsSlideshow .fsPrevButton:hover:before,
.fsSlideshow .fsPrevButton:focus:before {
  color: rgba(0, 0, 0, 0.5);
  -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: #000000;
}

.fsSlideshow .fsPager li button:before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: .3s;
  transition: .3s;
  opacity: 1;
}

.fsSlideshow .fsPager li button:hover:before,
.fsSlideshow .fsPager li button:focus:before {
  background-color: #000000;
  -webkit-transition: .3s;
  transition: .3s;
}

.fsSlideshow .fsPager li button:focus {
  outline: 1px dashed rgba(0, 0, 0, 0.25);
}

.fsSlideshow .fsPager li.slick-active button:before {
  opacity: 1;
  background-color: #000000;
}

/*! 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: #000000;
}

.fsDialogCloseButton:focus:after,
.fsDialogCloseButton:focus:before {
  background: #000000;
}

.fsDialogCloseButton:hover:after,
.fsDialogCloseButton:hover:before {
  background: #000000;
}

.fsElementDialog {
  color: #000000;
}

.lead-in,
.fs_style_1 {
  font-size: 1.33333em;
  line-height: 1.5em;
  font-family: "Helvetica Neue LT W05_65 Medium", serif;
}

blockquote {
  position: relative;
  margin: 70px;
  font-size: 20px;
  line-height: 30px;
  font-family: "Helvetica Neue LT W05_65 Medium", serif;
}

@media (max-width: 899px) {
  blockquote {
    margin: 50px 20px;
  }
}

.fsBannerLeft blockquote,
.fsBannerRight blockquote {
  margin: 0px;
  padding-top: 20px;
  border-top: 1.5px solid #416BA9;
}

cite,
.fs_style_2 {
  display: block;
  text-align: left;
  margin-top: 20px;
  font-family: "Helvetica Neue LT W05_55 Roman", serif;
  font-size: 14px;
  letter-spacing: 3.5px;
  line-height: 25px;
  text-transform: uppercase;
  color: #416BA9;
  font-weight: 700;
}

.callout,
.fs_style_3 {
  font-size: 15px;
  line-height: 23px;
  position: relative;
  display: block;
  padding-left: 125px;
}

.callout:before,
.fs_style_3:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  background-color: #416BA9;
  width: 85px;
  height: 1.5px;
}

@media (max-width: 899px) {
  .callout,
  .fs_style_3 {
    padding-left: 60px;
  }

  .callout:before,
  .fs_style_3:before {
    width: 30px;
  }
}

.callout.left,
.fs_style_3.left {
  float: left;
  margin-left: 20px;
}

@media (min-width: 500px) {
  .callout.left,
  .fs_style_3.left {
    width: 50%;
  }
}

.callout.right,
.fs_style_3.right {
  float: right;
  margin-right: 20px;
}

@media (min-width: 500px) {
  .callout.right,
  .fs_style_3.right {
    width: 50%;
  }
}

/*! _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: #039;
  background: transparent;
}

.fsNavigation a {
  display: block;
  padding: 10px 0;
  color: #36c;
  background: transparent;
}

.fsNavigation a:hover,
.fsNavigation a:focus {
  color: #039;
  background: transparent;
}

.fsNavigation .fsNavLevel2 > li > a {
  /*padding-left: 10px;*/
  text-align: center;
}

.fsNavigation .fsNavLevel3 > li > a {
  padding-left: 20px;
}

.fsNavigation .fsNavLevel4 > li > a {
  padding-left: 30px;
}

.fsNavigation .fsNavLevel5 > li > a {
  padding-left: 40px;
}

.fsBreadcrumb {
  text-align: left;
  margin-bottom: 40px;
  display: none;
}

@media (min-width: 800px) {
  .fsBreadcrumb {
    display: block;
  }
}

.fsBreadcrumb ul li {
  display: inline-block;
  color: #000000;
  font-size: 13px;
  font-weight: 700;
  line-height: 23px;
  text-transform: uppercase;
}

.fsBreadcrumb ul li a {
  display: inline-block;
  padding: 0;
  color: #000000;
  font-size: 13px;
  font-weight: 700;
  line-height: 23px;
  text-transform: uppercase;
  text-decoration: none;
}

.fsBreadcrumb ul li a:hover,
.fsBreadcrumb ul li a:focus {
  text-decoration: none;
  color: #416BA9;
}

.fsBreadcrumb ul li:last-child {
  color: #416BA9;
}

.fsBreadcrumb .fsNavBreadcrumbSeperator {
  color: #416BA9;
  margin: 0px 7px;
}

.home .fsBreadcrumb,
#fsHeader .fsBreadcrumb {
  display: none;
}

.site-breadcrumb header {
  display: none;
}

.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;
}

.nav-tier ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-tier ul li a {
  display: block;
  padding: 10px 10px;
  color: #36c;
  background: transparent;
}

.nav-tier ul li a:hover,
.nav-tier ul li a:focus {
  color: #039;
  background: #e5e5e5;
}

.nav-tier ul li.fsNavCurrentPage > a {
  color: #416BA9;
  background: #cfcfcf;
}

.nav-tier ul li.fsNavCurrentPage > a:hover,
.nav-tier ul li.fsNavCurrentPage > a:focus {
  color: #B81F26;
  background: #e5e5e5;
}

.nav-tier ul li.fsNavCurrentPageAncestor {
  background: #e5e5e5;
}

.nav-tier ul li.fsNavCurrentPageAncestor > a {
  color: #36c;
  background: transparent;
}

.nav-tier ul li.fsNavCurrentPageAncestor > a:hover,
.nav-tier ul li.fsNavCurrentPageAncestor > a:focus {
  color: #36c;
  background: #e5e5e5;
}

.nav-tier .fsNavLevel1 {
  padding-left: 0;
}

.nav-tier .fsNavLevel1 > li {
  border-bottom: solid 1px #416BA9;
}

.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 {
  border: 1px solid #416BA9;
  position: relative;
  display: none;
}

.nav-sub.from-header {
  display: none;
}

@media (max-width: 599px) {
  .nav-sub.from-header {
    display: block;
    margin: 50px 20px 0px 20px;
  }
}

@media (min-width: 600px) {
  .nav-sub {
    padding: 15px 30px;
  }
}

@media screen and (max-width: 599px) {
  .nav-sub > header {
    display: block;
    position: relative;
  }

  .nav-sub > header .fsElementTitle {
    position: relative;
    margin-top: 0;
    font-weight: normal;
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 5px;
    margin-bottom: 0;
    display: block;
    padding: 10px 20px;
    color: #000000;
    background-color: transparent;
    -webkit-transition: .3s;
    transition: .3s;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 23px;
    cursor: pointer;
    position: relative;
    padding-right: 40px;
  }

  .nav-sub > header .fsElementTitle:hover {
    background-color: #416BA9;
    color: #ffffff;
  }
}

@media screen and (max-width: 599px) and (min-width: 600px) {
  .nav-sub > header .fsElementTitle {
    cursor: default;
  }
}

@media screen and (max-width: 599px) {
  .nav-sub > header .fsElementTitle:after {
    content: "+";
    line-height: 1;
    position: absolute;
    margin: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    right: 20px;
    font-size: 30px;
    font-weight: 100;
  }

  .nav-sub > .fsElementContent {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 0px 20px;
  }

  .nav-sub > .fsElementContent ul li a {
    display: block;
    padding: 15px 0;
    color: #000000;
    background: transparent;
  }

  .nav-sub > .fsElementContent ul li a:hover,
  .nav-sub > .fsElementContent ul li a:focus {
    color: #416BA9;
    background: transparent;
  }

  .nav-sub > .fsElementContent ul li.fsNavCurrentPage > a {
    color: #416BA9;
    background: transparent;
  }

  .nav-sub > .fsElementContent ul li.fsNavCurrentPage > a:hover,
  .nav-sub > .fsElementContent ul li.fsNavCurrentPage > a:focus {
    color: #416BA9;
    background: transparent;
  }

  .nav-sub > .fsElementContent ul li.fsNavCurrentPageAncestor {
    background: transparent;
  }

  .nav-sub > .fsElementContent ul li.fsNavCurrentPageAncestor > a {
    color: #416BA9;
    background: transparent;
  }

  .nav-sub > .fsElementContent ul li.fsNavCurrentPageAncestor > a:hover,
  .nav-sub > .fsElementContent ul li.fsNavCurrentPageAncestor > a:focus {
    color: #416BA9;
    background: transparent;
  }

  .nav-sub > .fsElementContent .fsNavLevel1 > li > a {
    padding-left: 0;
  }

  .nav-sub > .fsElementContent .fsNavLevel2 > li > a {
    padding-left: 20px;
  }

  .nav-sub > .fsElementContent .fsNavLevel3 > li > a {
    padding-left: 40px;
  }

  .nav-sub > .fsElementContent .fsNavLevel4 > li > a {
    padding-left: 60px;
  }

  .nav-sub > .fsElementContent .fsNavLevel5 > li > a {
    padding-left: 80px;
  }

  .nav-sub.active-nav > header .fsElementTitle {
    background-color: #416BA9;
    color: #ffffff;
  }

  .nav-sub.active-nav > header .fsElementTitle:after {
    content: "-";
  }
}

@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;
}

@media (min-width: 600px) {
  .fsHeader .nav-sub {
    display: none;
  }
}

.nav-sub.nav-sub-empty {
  display: none !important;
}

.nav-sub ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-sub ul li a {
  display: block;
  padding: 15px 0px;
  color: #000000;
  background: transparent;
  font-family: "Helvetica Neue LT W05_55 Roman", serif;
  font-size: 15px;
  letter-spacing: 1.2px;
  line-height: 23px;
  text-decoration: none;
}

.nav-sub ul li a:hover,
.nav-sub ul li a:focus {
  color: #416BA9;
  background: transparent;
}

.nav-sub ul li.fsNavCurrentPage > a {
  color: #416BA9;
  background: transparent;
}

.nav-sub ul li.fsNavCurrentPage > a:hover,
.nav-sub ul li.fsNavCurrentPage > a:focus {
  color: #416BA9;
  background: transparent;
}

.nav-sub ul li.fsNavCurrentPageAncestor {
  background: transparent;
}

.nav-sub ul li.fsNavCurrentPageAncestor > a {
  color: #416BA9;
  background: transparent;
}

.nav-sub ul li.fsNavCurrentPageAncestor > a:hover,
.nav-sub ul li.fsNavCurrentPageAncestor > a:focus {
  color: #416BA9;
  background: transparent;
}

.nav-sub .fsNavLevel1 {
  padding-left: 0;
}

@media screen and (max-width: 599px) {
  .nav-sub .fsNavLevel1 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.nav-sub .fsNavLevel1 > li {
  border-bottom: solid 1px #416BA9;
}

.nav-sub .fsNavLevel1 > li:last-child {
  border-bottom: none;
}

.nav-sub .fsNavLevel2 > li > a {
  padding-left: 20px;
}

.nav-sub .fsNavLevel3 > li > a {
  padding-left: 40px;
}

.nav-sub .fsNavLevel4 > li > a {
  padding-left: 60px;
}

.nav-sub .fsNavLevel5 > li > a {
  padding-left: 80px;
}

.nav-sub {
  position: relative;
}

.nav-sub > header > h2.fsElementTitle {
  display: none;
}

@media (max-width: 599px) {
  .nav-sub > header > h2.fsElementTitle {
    display: block;
  }
}

.nav-sub .has-expander > a {
  padding-right: 30px;
  position: relative;
}

.nav-sub .expander {
  border: 0;
  background: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  font-size: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  font-weight: bold;
}

.nav-sub .expander:before {
  content: '\E905';
  font-size: 12px;
  color: #000000;
  font-family: "IcoMoon";
}

.nav-sub .expanded > a > .expander:before {
  content: '\E908';
  font-size: 7px;
  color: #416BA9;
}

.nav-sub .expanded:hover > a,
.nav-sub .expanded:focus > a {
  color: #416BA9;
}

.nav-sub .expanded > a {
  color: #416BA9;
}

.nav-sub .fsNavLevel2,
.nav-sub .fsNavLevel3,
.nav-sub .fsNavLevel4,
.nav-sub .fsNavLevel5 {
  padding-bottom: 15px;
  display: none;
}

.nav-sub .fsNavLevel2 > li > a,
.nav-sub .fsNavLevel3 > li > a,
.nav-sub .fsNavLevel4 > li > a,
.nav-sub .fsNavLevel5 > li > a {
  padding-top: 5px;
  padding-bottom: 5px;
}

.nav-sub .fsNavLevel2 > li > a:hover,
.nav-sub .fsNavLevel2 > li > a:focus,
.nav-sub .fsNavLevel3 > li > a:hover,
.nav-sub .fsNavLevel3 > li > a:focus,
.nav-sub .fsNavLevel4 > li > a:hover,
.nav-sub .fsNavLevel4 > li > a:focus,
.nav-sub .fsNavLevel5 > li > a:hover,
.nav-sub .fsNavLevel5 > li > a:focus {
  color: #416BA9;
  text-decoration: none;
}

.nav-sub .fsNavLevel2 > li > a,
.nav-sub .fsNavLevel3 > li > a {
  position: relative;
}

.nav-sub .fsNavLevel3,
.nav-sub .fsNavLevel4 {
  padding-bottom: 0;
}

.nav-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 0;
  -webkit-transition: .3s;
  transition: .3s;
  z-index: 1;
}

.scroll-active .nav-main,
.no-banner .nav-main {
  background-color: rgba(247, 247, 247, 0.9);
}

.scroll-active .nav-main .fsNavLevel1 li a,
.no-banner .nav-main .fsNavLevel1 li a {
  color: #000000;
}

.search-is-active .nav-main .fsNavLevel1 > li > a {
  color: #ffffff;
}

.fsHeader .nav-main {
  display: none;
}

@media (min-width: 900px) {
  .fsHeader .nav-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 1023px) {
  .nav-main {
    display: none !important;
  }
}

@media (min-width: 900px) {
  .nav-main .fsNavLevel1 {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: 40px;
  }

  .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 > li {
  position: static !important;
}

.nav-main .fsNavLevel1 > li:hover > a {
  color: #416BA9;
  background: #F7F7F7;
}

.nav-main .fsNavLevel1 > li[class*="fsNavCurrentPage"] > a {
  color: #416BA9;
  background: #F7F7F7;
}

.nav-main .fsNavLevel1 > li > a {
  display: block;
  color: #fff;
  background: transparent;
  padding: 0 15px;
  line-height: 60px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  .nav-main .fsNavLevel1 > li > a {
    font-size: 11px;
    padding: 0 12px;
  }
}

.nav-main .fsNavLevel1 > li > a:focus {
  color: #416BA9;
  background: #F7F7F7;
}

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 {
  max-height: 9999px;
}

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 li.menu-item-open .fsNavPageInfo {
  height: auto;
  visibility: visible;
  opacity: 1;
  top: 0;
}

.nav-main li .fsNavPageInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav-main .fsNavPageInfo {
  background: #F7F7F7;
  text-align: left;
  z-index: 300;
  padding: 30px 25px;
  width: 100%;
  -webkit-transition: .3s !important;
  transition: .3s !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 0px;
  visibility: hidden;
  opacity: 0;
}

.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 !important;
  left: auto;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.nav-main li.fsNavParentPage:hover .fsNavPageInfo,
.nav-main li.fsNavParentPage:focus .fsNavPageInfo,
.nav-main li.fsNavParentPage:focus-within .fsNavPageInfo {
  visibility: visible;
  opacity: 1;
  height: auto;
}

.nav-main .fsNavLevel2 {
  width: 50%;
  padding: 0 25px;
}

.nav-main .fsNavLevel2 li a {
  display: block;
  color: #000000;
  background: transparent;
  padding: 0.66667em;
  text-decoration: none;
  padding: 10px 0px;
  line-height: 23px;
  letter-spacing: 1.2px;
}

.nav-main .fsNavLevel2 li a:hover,
.nav-main .fsNavLevel2 li a:focus {
  color: #416BA9;
  background: transparent;
}

@media (max-width: 1199px) {
  .nav-main .fsNavLevel2 li a {
    font-size: 12px;
  }
}

.nav-main .fsNavLevel2 li[class*="fsNavCurrentPage"] > a {
  color: #416BA9;
  background: transparent;
}

.nav-main .fsNavLevel2 li:not(:last-child) a {
  border-bottom: 1.5px solid #D9E4E0;
}

.drawer-ribbon {
  position: relative;
  height: 50px;
}

@media (min-width: 900px) {
  .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: 20px;
  max-height: 20px;
  z-index: 500;
  position: absolute;
  right: 30px;
  left: inherit;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  cursor: pointer;
}

.mobile-toggle:before,
.mobile-toggle:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  width: 100%;
  content: '';
  background: #fff;
}

.mobile-toggle:before {
  margin-top: -0.4em;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: margin-top .3s, -webkit-transform .3s;
  transition: margin-top .3s, -webkit-transform .3s;
  transition: margin-top .3s, transform .3s;
  transition: margin-top .3s, transform .3s, -webkit-transform .3s;
}

.mobile-toggle:after {
  -webkit-box-shadow: 0 0.4em 0 0 #fff;
          box-shadow: 0 0.4em 0 0 #fff;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-box-shadow .3s, -webkit-transform .3s;
  transition: -webkit-box-shadow .3s, -webkit-transform .3s;
  transition: box-shadow .3s, transform .3s;
  transition: box-shadow .3s, transform .3s, -webkit-box-shadow .3s, -webkit-transform .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);
  top: 0em;
  position: fixed;
  height: 100%;
  overflow-y: scroll;
  max-width: 33.33333em;
  background: #000000;
  padding: 0px 30px 50px 30px;
  z-index: 300;
}

.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);
}

@media (min-width: 1024px) {
  .fsMenu {
    display: none;
  }
}

body.drawer-is-active {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .fsHeader .main-header .mobile-toggle {
    display: none;
  }
}

.fsHeader .main-header .mobile-toggle > header {
  display: none;
}

#fsMenu .mobile-search {
  position: relative;
  display: block;
  margin: 0px 0px 40px 0px;
  border-bottom: 1px solid #525252;
  background: transparent;
}

#fsMenu .mobile-search form label {
  display: none;
}

#fsMenu .mobile-search form .fsSearchElementKeyword {
  margin: 0px;
}

#fsMenu .mobile-search form .fsButtonClear {
  display: none !important;
}

#fsMenu .mobile-search form .fsStyleSearchField.fsStyleDefaultField {
  padding: 0px 50px 0px 30px;
  color: #ffffff;
  line-height: 50px;
  border: none;
  width: 100%;
  background: transparent;
}

#fsMenu .mobile-search form .fsStyleSearchField.fsStyleDefaultField::-webkit-input-placeholder {
  color: #959595;
  opacity: 1;
}

#fsMenu .mobile-search form .fsStyleSearchField.fsStyleDefaultField::-moz-placeholder {
  color: #959595;
  opacity: 1;
}

#fsMenu .mobile-search form .fsStyleSearchField.fsStyleDefaultField::-ms-input-placeholder {
  color: #959595;
  opacity: 1;
}

#fsMenu .mobile-search form .fsStyleSearchField.fsStyleDefaultField::placeholder {
  color: #959595;
  opacity: 1;
}

#fsMenu .mobile-search form .fsStyleSearchField.fsStyleDefaultField:-ms-input-placeholder {
  color: #959595;
}

#fsMenu .mobile-search form .fsStyleSearchField.fsStyleDefaultField::-ms-input-placeholder {
  color: #959595;
}

#fsMenu .mobile-search form button.fsSearchElementSearchButton.fsStyleUpdateButton {
  position: absolute;
  top: 14px;
  left: 0px;
  height: 18px;
  width: 18px;
  display: block;
  max-width: 18px;
  min-width: 18px;
  border: none;
  border-radius: 0px;
  background: transparent;
  margin: 0px;
  padding: 0px;
  color: #ffffff;
  font-size: 0px;
  cursor: pointer;
}

#fsMenu .mobile-search form button.fsSearchElementSearchButton.fsStyleUpdateButton:after {
  position: absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "\E90D";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-size: 18px;
  line-height: 18px;
  height: 18px;
  font-family: "IcoMoon";
  color: #ffffff;
}

#fsMenu .mobile-search form button.fsSearchElementSearchButton.fsStyleUpdateButton:before {
  display: none;
}

.fsMenu .mobile-main-nav {
  position: relative;
  margin: 0px 0px 50px 0px;
  padding: 0px;
}

.fsMenu .mobile-main-nav ul.fsNavLevel1 > li {
  position: relative;
}

.fsMenu .mobile-main-nav ul.fsNavLevel1 > li > .fsNavPageInfo {
  max-height: 0px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s;
  transition: .3s;
}

.fsMenu .mobile-main-nav ul.fsNavLevel1 > li.open > .fsNavPageInfo {
  max-height: 9999px;
  opacity: 1;
  visibility: visible;
}

.fsMenu .mobile-main-nav ul.fsNavLevel1 > li:last-child {
  margin: 0px;
}

.fsMenu .mobile-main-nav ul.fsNavLevel1 > li > a {
  position: relative;
  padding: 0px 0px 0px 0px;
  margin: 12px 0px;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-size: 22px;
  font-weight: bold;
  line-height: 33px;
  text-decoration: none;
  text-align: center;
}

.fsMenu .mobile-main-nav ul.fsNavLevel1 > li > a:hover,
.fsMenu .mobile-main-nav ul.fsNavLevel1 > li > a:focus {
  text-decoration: none;
  color: #B81F26;
}

.fsMenu .mobile-main-nav ul.fsNavLevel2 li:not(:last-child) a {
  border-bottom: 1px solid #525252;
}

.fsMenu .mobile-main-nav ul.fsNavLevel2 li > a {
  display: block;
  margin-bottom: 0;
  padding: 10px 0px;
  position: relative;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 1.2px;
  line-height: 23px;
  text-decoration: none;
  text-align: center;
}

.fsMenu .mobile-main-nav ul.fsNavLevel2 li > a:hover,
.fsMenu .mobile-main-nav ul.fsNavLevel2 li > a:focus {
  text-decoration: none;
  color: #B81F26;
}

.fsMenu .mobile-portals ul.fsNavLevel1 li {
  position: relative;
  text-align: center;
}

.fsMenu .mobile-portals ul.fsNavLevel1 li.quicklinks > a {
  padding-right: 15px;
  position: relative;
}

.fsMenu .mobile-portals ul.fsNavLevel1 li.quicklinks > a:after {
  content: '\E908';
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 0px;
  font-family: "IcoMoon";
  font-size: 5px;
}

.fsMenu .mobile-portals ul.fsNavLevel1 li.quicklinks > .fsNavPageInfo {
  max-height: 0px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s;
  transition: .3s;
}

.fsMenu .mobile-portals ul.fsNavLevel1 li.quicklinks.open > .fsNavPageInfo {
  max-height: 9999px;
  opacity: 1;
  visibility: visible;
}

.fsMenu .mobile-portals ul.fsNavLevel1 li:last-child {
  margin: 0px;
}

.fsMenu .mobile-portals ul.fsNavLevel1 li > a {
  position: relative;
  padding: 0px 0px 0px 0px;
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 1.2px;
  line-height: 23px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

.fsMenu .mobile-portals ul.fsNavLevel1 li > a:hover,
.fsMenu .mobile-portals ul.fsNavLevel1 li > a:focus {
  text-decoration: none;
  color: #B81F26;
}

.fsMenu .mobile-portals ul.fsNavLevel2 li:not(:last-child) a {
  border-bottom: 1px solid #525252;
}

.fsMenu .mobile-portals ul.fsNavLevel2 li > a {
  display: block;
  margin-bottom: 0;
  padding: 10px 0px;
}

.nav-social .fsNavLevel1 {
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px !important;
  position: relative;
}

.nav-social .fsNavLevel1,
.nav-social .fsNavLevel1 ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-social .fsNavLevel1 li {
  margin: 0;
  padding: 0;
}

@media (max-width: 899px) {
  .nav-social .fsNavLevel1 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0 !important;
  }
}

.nav-social .fsNavLevel1 li {
  display: inline-block;
  margin-left: 25px;
}

@media (max-width: 899px) {
  .nav-social .fsNavLevel1 li {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.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*='rss']:before {
  content: "\F09E";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
}

.nav-social .fsNavLevel1 a {
  display: block;
  font-size: 0;
  padding: 0;
  line-height: 0;
  text-decoration: none;
}

.nav-social .fsNavLevel1 a:before {
  color: #ffffff;
  font-size: 20px;
  line-height: 20px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  display: block;
}

.nav-social .fsNavLevel1 a:hover,
.nav-social .fsNavLevel1 a:focus {
  text-decoration: none;
}

.nav-social .fsNavLevel1 a:hover:before,
.nav-social .fsNavLevel1 a:focus:before {
  color: #B81F26;
  cursor: pointer;
}

.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:before,
.nav-social .fsNavLevel1 [href*='plus.google.com']:focus:before {
  color: #db4f46;
}

.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;
  background-color: #ffffff;
}

.skip-link {
  margin: 0;
}

.skip-link a {
  position: fixed;
  top: 0;
  left: 0;
  padding: 1em;
  background: #000000;
  color: #fff !important;
  font-size: 1em;
  line-height: 1;
  text-decoration: underline;
  -webkit-transition: -webkit-transform .1s ease-in;
  transition: -webkit-transform .1s ease-in;
  transition: transform .1s ease-in;
  transition: transform .1s ease-in, -webkit-transform .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);
}

.site-info-container {
  position: absolute;
  left: 50px;
  top: 0;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  margin: 0px;
  z-index: 200;
  background-color: #ffffff;
  height: 138.54px;
  width: 299.94px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (max-width: 1299px) {
  .site-info-container {
    height: 71.76px;
    width: 155.36px;
  }
}

@media (max-width: 599px) {
  .site-info-container {
    left: 0;
  }
}

.site-info-container a {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 0;
  height: 89.8px;
  width: 269.24px;
  -webkit-transition: none;
  transition: none;
  background: url(images/aecc.png) no-repeat center/cover;
}

@media (max-width: 1299px) {
  .site-info-container a {
    height: 47px;
    width: 111px;
  }
}

.search-is-active .fsHeader .main-header .site-info-container {
  background-color: #416BA9;
}

.search-is-active .fsHeader .main-header .site-info-container a {
  background: url(images/Phil_footer.svg) no-repeat center/cover;
}

@media (min-width: 1024px) {
  .scroll-active .fsHeader .main-header .site-info-container {
    background-color: transparent;
    top: 59px;
    height: 45px;
    width: 200px;
  }

  .scroll-active .fsHeader .main-header .site-info-container a {
    height: 45px;
    width: 200px;
    background: url(images/aeccsticky.png) no-repeat center/cover;
  }
}

@media (min-width: 1024px) {
  .scroll-active.search-is-active .fsHeader .main-header .site-info-container {
    background-color: #416BA9;
    top: 0;
    height: 138.54px;
    width: 299.94px;
  }

  .scroll-active.search-is-active .fsHeader .main-header .site-info-container a {
    height: 89.8px;
    width: 214.24px;
    background: url(images/Phil_footer.svg) no-repeat center/cover;
  }
}

.fsHeader .main-header {
  position: relative;
  margin: 0px;
  padding: 0px;
  width: 100%;
}

@media (min-width: 1024px) {
  body:not(.fsComposeMode) .fsHeader .main-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1200;
  }
}

.fsHeader .main-header > header {
  display: none;
}

.fsHeader .main-header .header-portals {
  position: relative;
  margin: 0px;
  padding: 0px 50px 0px 50px;
  width: 100%;
  background: #416BA9;
  height: auto;
}

.fsHeader .main-header .header-portals > .fsElementContent {
  position: relative;
  padding-right: 30px;
}

.fsHeader .main-header .header-portals .fsNavLevel1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fsHeader .main-header .header-portals .fsNavLevel1 > li {
  position: relative;
}

.fsHeader .main-header .header-portals .fsNavLevel1 > li > a {
  color: #fff;
  text-decoration: none;
  padding: 0 25px;
  line-height: 50px;
  letter-spacing: 1.2px;
}

.fsHeader .main-header .header-portals .fsNavLevel1 > li > a:hover,
.fsHeader .main-header .header-portals .fsNavLevel1 > li > a:focus {
  background-color: #F7F7F7;
  color: #416BA9;
}

.fsHeader .main-header .header-portals .fsNavLevel1 > li > .fsNavPageInfo {
  position: absolute;
  top: 100%;
  left: 0;
  max-height: 0;
  overflow: hidden;
}

.menu-item-open .fsHeader .main-header .header-portals .fsNavLevel1 > li > .fsNavPageInfo {
  max-height: 9999px;
}

.fsHeader .main-header .header-portals .fsNavLevel1 > li.menu-item-open > .fsNavPageInfo {
  max-height: 9999px;
}

.fsHeader .main-header .header-portals .fsNavLevel1 > li:hover .fsNavPageInfo {
  max-height: 9999px;
  z-index: 100;
}

.fsHeader .main-header .header-portals .fsNavLevel1 > li.donate > a {
  background-color: #B81F26;
}

.fsHeader .main-header .header-portals .fsNavLevel1 > li.donate > a:hover,
.fsHeader .main-header .header-portals .fsNavLevel1 > li.donate > a:focus {
  color: #ffffff;
  background-color: #416BA9;
}

.fsHeader .main-header .header-portals .fsNavLevel1 > li.quicklinks > a {
  padding-right: 40px;
  position: relative;
}

.fsHeader .main-header .header-portals .fsNavLevel1 > li.quicklinks > a:after {
  content: '\E908';
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 20px;
  font-family: "IcoMoon";
  font-size: 6px;
}

.fsHeader .main-header .header-portals .fsNavLevel1 > li.quicklinks .fsNavLevel2 {
  background-color: #F7F7F7;
  padding: 15px 25px;
  width: 200px;
}

.fsHeader .main-header .header-portals .fsNavLevel1 > li.quicklinks .fsNavLevel2 li a {
  color: #000000;
  text-decoration: none;
  padding: 10px 0px;
  line-height: 23px;
  letter-spacing: 1.2px;
}

.fsHeader .main-header .header-portals .fsNavLevel1 > li.quicklinks .fsNavLevel2 li a:hover,
.fsHeader .main-header .header-portals .fsNavLevel1 > li.quicklinks .fsNavLevel2 li a:focus {
  color: #416BA9;
}

.fsHeader .main-header .header-portals .fsNavLevel1 > li.quicklinks .fsNavLevel2 li:not(:last-child) a {
  border-bottom: 1.5px solid #D9E4E0;
}

.fsHeader .main-header .header-portals .fsNavLevel1 > li.quicklinks.menu-item-open > a {
  color: #416BA9;
  background-color: #F7F7F7;
}

@media (max-width: 1023px) {
  .fsHeader .main-header .header-portals {
    background: #B81F26;
  }

  .fsHeader .main-header .header-portals > .fsElementContent {
    display: none;
  }
}

.fsHeader .main-header .header-portals footer {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 0px;
}

.fsHeader .main-header .header-portals footer .fsElementFooterContent {
  margin: 0px;
}

.fsHeader .main-header .header-portals footer button.search-trigger {
  border: 0;
  background: none;
  margin: 0;
  padding: 0;
  width: 18px;
  height: 18px;
  display: block;
  cursor: pointer;
  font-size: 0;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
}

.fsHeader .main-header .header-portals footer button.search-trigger:before {
  width: 18px;
  height: 18px;
  font-size: 18px;
  line-height: 18px;
  content: "\E90D";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  color: #000000;
  font-weight: bold;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.search-is-active .fsHeader .main-header .header-portals footer button.search-trigger:before {
  content: "\E90E";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-weight: bold;
}

body:not(.fsComposeMode) .fsHeader .fixed-buttons {
  margin: 0;
  position: fixed;
  right: -110px;
  bottom: 235px;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: 200;
}

body:not(.home) body:not(.fsComposeMode) .fsHeader .fixed-buttons {
  display: none;
}

@media (max-width: 1023px) {
  body:not(.fsComposeMode) .fsHeader .fixed-buttons {
    display: none;
  }
}

body:not(.fsComposeMode) .fsHeader .fixed-buttons > .fsElementContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body:not(.fsComposeMode) .fsHeader .fixed-buttons p {
  margin: 0;
  margin-right: 2px;
}

body:not(.fsComposeMode) .fsHeader .fixed-buttons a {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 23px;
  color: #000000;
  padding: 10px 20px;
  background-color: #B81F26;
  min-width: 127px;
  text-align: center;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  margin-right: 2px;
}

body:not(.fsComposeMode) .fsHeader .fixed-buttons a:hover,
body:not(.fsComposeMode) .fsHeader .fixed-buttons a:focus {
  color: #ffffff;
  background-color: #416BA9;
}

#fsFooter {
  padding: 20px;
  color: #fff;
  background-color: #000000;
  border-top: 10px solid #B81F26;
}

#fsFooter .fsBanner {
  max-width: 1210px;
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#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%;
}

#fsFooter .upper-footer {
  padding-top: 50px;
  position: relative;
}

#fsFooter .upper-footer:after {
  content: '';
  width: 300%;
  height: 1px;
  background-color: #416BA9;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

#fsFooter .upper-footer > .fsElementContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 899px) {
  #fsFooter .upper-footer > .fsElementContent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}

#fsFooter .upper-footer > .fsElementContent > .fsElement > header h2 {
  font-family: "Helvetica Neue LT W05_55 Roman", serif;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 23px;
  color: #B81F26;
  text-transform: uppercase;
  margin-bottom: 50px;
}

@media (max-width: 899px) {
  #fsFooter .upper-footer > .fsElementContent > .fsElement > header h2 {
    margin-bottom: 20px;
  }
}

#fsFooter .upper-footer .contact {
  width: 380px;
}

@media (max-width: 1199px) {
  #fsFooter .upper-footer .contact {
    width: 280px;
  }
}

@media (max-width: 899px) {
  #fsFooter .upper-footer .contact {
    width: 100%;
  }
}

#fsFooter .upper-footer .resources {
  width: 300px;
}

@media (max-width: 899px) {
  #fsFooter .upper-footer .resources {
    width: 100%;
    margin-bottom: 30px;
  }
}

#fsFooter .upper-footer .resources ul li a {
  color: #ffffff;
  text-decoration: none;
  padding: 0;
  padding-bottom: 15px;
}

#fsFooter .upper-footer .resources ul li a:hover,
#fsFooter .upper-footer .resources ul li a:focus {
  color: #B81F26;
}

@media (max-width: 899px) {
  #fsFooter .upper-footer .quicklinks {
    width: 100%;
    margin-bottom: 30px;
  }
}

#fsFooter .upper-footer .quicklinks ul li a {
  color: #ffffff;
  text-decoration: none;
  padding: 0;
  padding-bottom: 15px;
}

#fsFooter .upper-footer .quicklinks ul li a:hover,
#fsFooter .upper-footer .quicklinks ul li a:focus {
  color: #B81F26;
}

#fsFooter .lower-footer {
  position: relative;
  margin: 0;
}

#fsFooter .lower-footer > .fsElementContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 899px) {
  #fsFooter .lower-footer > .fsElementContent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-line-pack: center;
        align-content: center;
    text-align: center;
  }
}

#fsFooter .lower-footer > .fsElementContent > .footer-logo {
  width: 380px;
}

@media (max-width: 1199px) {
  #fsFooter .lower-footer > .fsElementContent > .footer-logo {
    width: 280px;
  }
}

@media (max-width: 899px) {
  #fsFooter .lower-footer > .fsElementContent > .footer-logo {
    width: 100%;
    margin-bottom: 30px;
  }
}

#fsFooter .lower-footer > .fsElementContent .right-side .nav-social {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 899px) {
  #fsFooter .lower-footer > .fsElementContent .right-side .nav-social {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-line-pack: center;
        align-content: center;
    text-align: center;
  }
}

#fsFooter .lower-footer > .fsElementContent .right-side .nav-social > header {
  max-width: 530px;
  width: 100%;
}

@media (max-width: 899px) {
  #fsFooter .lower-footer > .fsElementContent .right-side .nav-social > header {
    max-width: 100%;
    margin-bottom: 30px;
  }
}

#fsFooter .lower-footer > .fsElementContent .right-side .nav-social > header .fsElementHeaderContent {
  margin: 0;
}

#fsFooter .lower-footer > .fsElementContent .right-side .nav-social > header .fsElementHeaderContent p {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0;
}

#fsFooter .lower-footer > .fsElementContent .right-side .nav-social > .fsElementContent {
  padding-left: 100px;
  margin-left: 50px;
  position: relative;
}

@media (max-width: 1199px) {
  #fsFooter .lower-footer > .fsElementContent .right-side .nav-social > .fsElementContent {
    padding-left: 90px;
    margin-left: 20px;
  }
}

#fsFooter .lower-footer > .fsElementContent .right-side .nav-social > .fsElementContent:before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 85px;
  height: 1px;
  background-color: #ffffff;
}

@media (max-width: 899px) {
  #fsFooter .lower-footer > .fsElementContent .right-side .nav-social > .fsElementContent {
    padding-left: 0;
    margin-left: 0;
    padding-top: 20px;
  }

  #fsFooter .lower-footer > .fsElementContent .right-side .nav-social > .fsElementContent:before {
    top: 0;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

#fsFooter .lower-footer > .fsElementContent .right-side .footer-utility {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 700px;
  width: 100%;
}

@media (max-width: 899px) {
  #fsFooter .lower-footer > .fsElementContent .right-side .footer-utility {
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

#fsFooter .lower-footer > .fsElementContent .right-side .footer-utility > header h2 {
  font-size: 15px;
  letter-spacing: 1.2px;
  line-height: 25px;
  margin: 0;
}

@media (max-width: 899px) {
  #fsFooter .lower-footer > .fsElementContent .right-side .footer-utility > header h2 {
    margin-bottom: 15px;
  }
}

#fsFooter .lower-footer > .fsElementContent .right-side .footer-utility > .fsElementContent ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 899px) {
  #fsFooter .lower-footer > .fsElementContent .right-side .footer-utility > .fsElementContent ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#fsFooter .lower-footer > .fsElementContent .right-side .footer-utility > .fsElementContent ul li a {
  font-size: 15px;
  letter-spacing: 1.2px;
  line-height: 25px;
  margin: 0;
  color: #ffffff;
  text-decoration: none;
  padding: 0;
  margin-left: 50px;
}

@media (max-width: 1199px) {
  #fsFooter .lower-footer > .fsElementContent .right-side .footer-utility > .fsElementContent ul li a {
    margin-left: 25px;
  }
}

@media (max-width: 899px) {
  #fsFooter .lower-footer > .fsElementContent .right-side .footer-utility > .fsElementContent ul li a {
    margin-left: 0px;
    margin-bottom: 15px;
  }
}

#fsFooter .lower-footer > .fsElementContent .right-side .footer-utility > .fsElementContent ul li a:hover,
#fsFooter .lower-footer > .fsElementContent .right-side .footer-utility > .fsElementContent ul li a:focus {
  color: #B81F26;
}

.school-details {
  margin-bottom: 20px;
}

.school-details [itemprop='name'] {
  margin-top: 0;
  font-weight: normal;
  font-family: "Raleway", sans-serif;
  font-size: 22px;
  line-height: 33px;
  margin-bottom: 5px;
}

.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 {
  font-family: "Helvetica Neue LT W05_55 Roman", serif;
  background: #416BA9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-size: 15px;
  line-height: 23px;
  color: #000000;
}

#fsPageWrapper {
  overflow-x: hidden;
  position: relative;
}

body.fsComposeMode #fsPageWrapper {
  overflow: visible;
}

#fsPageBodyWrapper {
  padding-right: 1.33333em;
  padding-left: 1.33333em;
  /*padding-top: 40px;*/
  padding-bottom: 40px;
  background: #fff;
}

#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: 2;
      -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: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 0;
  }
}

@media (min-width: 700px) {
  #fsBannerLeft {
    padding-right: 40px;
    width: 280px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media (min-width: 600px) {
  .fsHasLeftBanner.fsHasRightBanner #fsBannerLeft {
    -webkit-box-ordinal-group: 2;
        -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: 2;
        -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: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
}

@media (min-width: 600px) {
  .fsHasRightBanner #fsPageContent {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: calc(100% - 240px);
  }
}

@media (min-width: 700px) {
  .fsHasRightBanner #fsPageContent {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: calc(100% - 400px);
  }
}

.fsHasLeftBanner #fsPageContent {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
}

@media (min-width: 600px) {
  .fsHasLeftBanner #fsPageContent {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: calc(100% - 200px);
  }
}

@media (min-width: 700px) {
  .fsHasLeftBanner #fsPageContent {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: calc(100% - 280px);
  }
}

.fsHasLeftBanner.fsHasRightBanner #fsPageContent {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-bottom: 20px;
  width: 100%;
}

@media (min-width: 600px) {
  .fsHasLeftBanner.fsHasRightBanner #fsPageContent {
    -webkit-box-ordinal-group: 2;
        -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: 2;
        -ms-flex-order: 1;
            order: 1;
    width: calc(100% - 440px);
    margin-bottom: 0;
  }
}

@media (min-width: 1000px) {
  .fsHasLeftBanner.fsHasRightBanner #fsPageContent {
    width: calc(100% - 680px);
  }
}

#fsBannerRight {
  -webkit-box-ordinal-group: 2;
      -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: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 0;
  }
}

@media (min-width: 700px) {
  #fsBannerRight {
    padding-left: 100px;
    width: 400px;
    -webkit-box-ordinal-group: 2;
        -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: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-left: 20px;
    width: 240px;
  }
}

@media (min-width: 1000px) {
  .fsHasLeftBanner.fsHasRightBanner #fsBannerRight {
    padding-left: 100px;
    width: 400px;
  }
}

@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.33333em;
    padding-left: 1.33333em;
  }
}

.fsLayout > header,
.fsLayout > footer {
  width: 100%;
}

@media (min-width: 600px) {
  .fsLayout > header,
  .fsLayout > footer {
    padding-right: 1.33333em;
    padding-left: 1.33333em;
  }
}

@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% - 400px);
  }
}

.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: 100px;
    width: 400px;
  }
}

@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: 100px;
    width: 400px;
  }
}

.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% - 400px);
  }
}

.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: 100px;
    width: 400px;
  }
}

.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% - 400px);
  }
}

@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% - 400px);
  }
}

@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: 100px;
    width: 400px;
  }
}

.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 {
  opacity: 1;
  position: relative;
}

@media (max-width: 899px) {
  #fsPoweredByFinalsite {
    margin: 0 auto;
    margin-top: 20px;
  }
}

/*! 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: 15px;
  line-height: 23px;
}

.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 #cfcfcf;
  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 #cfcfcf;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.fsConstituentSearchForm > label > select {
  height: 31px;
  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 > header,
.fsTabs .fsPanel > header {
  cursor: pointer;
  background: #D9E4E0;
  -webkit-transition: .3s;
  transition: .3s;
}

.fsAccordion .fsPanel > header h2,
.fsTabs .fsPanel > header h2 {
  margin-top: 0;
  font-weight: normal;
  font-family: "Raleway", sans-serif;
  font-size: 30px;
  line-height: 43px;
  margin-bottom: 5px;
  margin-bottom: 2px;
  display: block;
  padding: 15px 20px;
  color: #000000;
  -webkit-transition: .3s;
  transition: .3s;
  font-family: "Helvetica Neue LT W05_55 Roman", serif;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 23px;
  letter-spacing: 2px;
  font-weight: bold;
  position: relative;
}

.fsAccordion .fsPanel > header h2 a,
.fsTabs .fsPanel > header h2 a {
  -webkit-transition: none;
  transition: none;
}

.fsAccordion .fsPanel > header:hover,
.fsTabs .fsPanel > header:hover {
  background: #416BA9;
  -webkit-transition: .3s;
  transition: .3s;
}

.fsAccordion .fsPanel > header:hover h2,
.fsTabs .fsPanel > header:hover h2 {
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
}

.fsAccordion .fsPanel > header:hover h2:after,
.fsTabs .fsPanel > header:hover h2:after,
.fsAccordion .fsPanel > header:hover h2:before,
.fsTabs .fsPanel > header:hover h2:before {
  color: #B81F26 !important;
}

.fsAccordion .fsPanel > .fsElementContent,
.fsTabs .fsPanel > .fsElementContent {
  padding: 15px 20px;
}

.fsAccordion .fsPanel.fsStateOpen > header,
.fsTabs .fsPanel.fsStateOpen > header {
  background: #416BA9;
}

.fsAccordion .fsPanel.fsStateOpen > header h2,
.fsTabs .fsPanel.fsStateOpen > header h2 {
  color: #ffffff;
}

.fsAccordion .fsPanel.fsStateOpen > header h2:after,
.fsTabs .fsPanel.fsStateOpen > header h2:after,
.fsAccordion .fsPanel.fsStateOpen > header h2:before,
.fsTabs .fsPanel.fsStateOpen > header h2:before {
  color: #B81F26 !important;
}

.fsAccordion .fsPanel.fsStateOpen > header h2:before,
.fsTabs .fsPanel.fsStateOpen > header h2:before {
  content: "\E904";
}

.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: '';
  margin: 0;
  border: none;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  font-size: 8px;
  line-height: 8px;
  font-family: "IcoMoon";
  color: #416BA9;
  -webkit-transition: all .3s;
  transition: all .3s;
  content: "\E904";
  -webkit-transform: translateY(-50%) rotate(-90deg);
      -ms-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}

.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: '';
  margin: 0;
  border: none;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  font-size: 8px;
  line-height: 8px;
  font-family: "IcoMoon";
  color: #416BA9;
  -webkit-transition: all .3s;
  transition: all .3s;
  content: "\E904";
  -webkit-transform: translateY(-50%) rotate(0deg);
      -ms-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}

.fsPanelIconBefore.fsAccordion .fsPanel > header h2,
.fsPanelIconBefore.fsTabs .fsPanel > header h2 {
  padding-left: 60px;
}

.fsPanelIconBefore.fsAccordion .fsPanel > header h2:before,
.fsPanelIconBefore.fsTabs .fsPanel > header h2:before {
  left: 20px;
}

.fsPanelIconAfter.fsAccordion .fsPanel > header h2,
.fsPanelIconAfter.fsTabs .fsPanel > header h2 {
  padding-right: 60px;
}

.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: 20px;
}

.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: 15px;
  line-height: 23px;
  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-family: "Raleway", sans-serif;
  font-size: 28px;
  line-height: 39px;
  margin-bottom: 5px;
}

.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 #416BA9;
}

.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: 120px;
  min-height: 100px;
  padding-top: 0;
}

.fsCalendar article .fsElementEventColorIcon {
  width: 12px;
  height: 12px;
}

.fsCalendar .fsDate {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  height: 100px;
  width: 100px;
  color: #416BA9;
  background: transparent;
  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;
  border: 1.5px solid #416BA9;
}

.fsCalendar .fsDate > span {
  display: block;
}

.fsCalendar .fsDate > span.fsMonth {
  font-size: 14px;
  font-weight: bold;
  line-height: 25px;
  text-align: center;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
}

.fsCalendar .fsDate > span.fsDay {
  font-family: "Raleway", sans-serif;
  font-size: 45px;
  font-weight: bold;
  line-height: 45px;
  text-align: center;
}

.fsCalendar .fsTitle,
.fsCalendar .fsTitle a {
  font-size: 18px;
  font-family: "Raleway", sans-serif;
  line-height: 28px;
  color: #000000;
  font-weight: bold;
  margin-bottom: 15px;
  text-decoration: none;
}

.fsCalendar .fsTitle:hover,
.fsCalendar .fsTitle:focus,
.fsCalendar .fsTitle a:hover,
.fsCalendar .fsTitle a:focus {
  color: #416BA9;
}

.fsCalendar .fsNotes p:last-child,
.fsCalendar .fsDescription p:last-child {
  margin-bottom: 0;
}

.fsCalendar .fsTimeRange,
.fsCalendar .fsLocation,
.fsCalendar .fsAllDay {
  margin-bottom: 0px;
  position: relative;
}

.fsCalendar .fsTimeRange:before,
.fsCalendar .fsLocation:before,
.fsCalendar .fsAllDay:before {
  display: none;
}

.fsCalendar .fsLocation:before {
  content: "\E907";
}

.fsCalendar .fsCalendarEventLink.fsReadMoreLink {
  color: #000000;
  font-size: 14px;
  line-height: 26px;
  text-decoration: none;
}

.fsCalendar .fsCalendarEventLink.fsReadMoreLink:hover,
.fsCalendar .fsCalendarEventLink.fsReadMoreLink:focus {
  color: #416BA9;
}

.fsCalendar button.fsLoadMoreButton {
  display: inline-block;
  border: 1.5px solid #D9E4E0;
  margin: 0 0 20px;
  padding: 25px;
  background: transparent;
  color: #000000;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 23px;
  font-weight: bold;
  letter-spacing: 2px;
  width: 270px;
  margin: 0 auto;
  display: block;
}

.fsCalendar button.fsLoadMoreButton:hover,
.fsCalendar button.fsLoadMoreButton:focus,
.fsStateSelected .fsCalendar button.fsLoadMoreButton,
.fsCalendar button.fsLoadMoreButton.on {
  background: #416BA9;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1.5px solid #416BA9;
}

.fsCalendar button.fsLoadMoreButton em {
  display: block;
  font-style: normal;
  text-transform: none;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 1px;
}

.fsBannerRight .fsCalendar button.fsLoadMoreButton,
.fsBannerLeft .fsCalendar button.fsLoadMoreButton {
  width: 100%;
}

@media (max-width: 599px) {
  .fsCalendar.fsSlideshow.fsSlideshowHorizontal article {
    padding: 0;
  }

  .fsCalendar.fsSlideshow.fsSlideshowHorizontal article time {
    position: relative;
    margin-bottom: 20px;
  }
}

article .fsEventDetails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

article .fsEventDetails .holder {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-bottom: 10px;
}

article .fsEventDetails .fsTitle {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-bottom: 10px;
  max-height: 28px;
  overflow-y: hidden;
}

article .fsEventDetails .fsLocation {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-bottom: 10px;
}

article .fsEventDetails .holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

article .fsEventDetails .holder .fsTimeRange,
article .fsEventDetails .holder .fsAllDay {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

article .fsEventDetails .holder .fsDayName {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  position: relative;
}

/*! _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(36, 96, 73, 0.1);
}

.fsCalendarEventGrid .fsCalendarRow .fsCalendarOutOfRange {
  background-color: #f8f8f8;
}

.fsCalendarEventGrid .fsCalendarDaybox {
  border-color: #cfcfcf;
}

.fsCalendarEventGrid .fsCalendarDaybox .fsCalendarInfo {
  color: #000000;
}

.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 #cfcfcf;
    -webkit-box-shadow: 0 1px 0 0 #cfcfcf;
            box-shadow: 0 1px 0 0 #cfcfcf;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarRow:last-child {
    border-bottom: solid 1px #cfcfcf;
    -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 #cfcfcf;
    border-top: 1px solid #cfcfcf;
    color: #000000;
    background: #ffffff;
    -webkit-transition: .3s;
    transition: .3s;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox:hover {
    color: #ffffff;
    background: #039;
    -webkit-transition: .3s;
    transition: .3s;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox:hover .fsCalendarOutOfRange {
    color: #ffffff;
    background: #039;
    -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: #36c;
    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 #cfcfcf;
            box-shadow: inset 0 -1px 0 0 #cfcfcf;
  }

  .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: #373737;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox.selected .fsCalendarOutOfRange {
    background: inherit;
    color: inherit;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarOutOfRange {
    background: #f8f8f8;
    color: #636363;
    -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: 1.5px solid #D9E4E0;
  margin: 0 0 20px;
  padding: 25px;
  background: transparent;
  color: #000000;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 23px;
  font-weight: bold;
  letter-spacing: 2px;
  width: 270px;
  padding: 10px 20px;
  margin-bottom: 0;
}

.scroll-up span:hover,
.scroll-up span:focus,
.fsStateSelected .scroll-up span,
.scroll-up span.on {
  background: #416BA9;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1.5px solid #416BA9;
}

.scroll-up span em {
  display: block;
  font-style: normal;
  text-transform: none;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 1px;
}

.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: 45px;
  padding-right: 45px;
  padding-bottom: 0;
}

.fsCalendar.fsSlideshowVertical .fsElementSlideshow {
  padding-left: 45px;
  padding-top: 45px;
  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;
  font-size: 17px;
}

.fsComposerFormEmbed form:after {
  display: table;
  clear: both;
  content: '';
}

.fsComposerFormEmbed form input,
.fsComposerFormEmbed form textarea,
.fsComposerFormEmbed form select {
  font-family: "Helvetica Neue LT W05_55 Roman", serif;
  font-size: 15px;
  line-height: 23px;
  color: #000000;
}

.fsComposerFormEmbed form input {
  border: solid 1px #cfcfcf;
}

.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 #cfcfcf;
}

.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: #36c;
  margin-right: 10px;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}

.fsComposerFormEmbed form .linkLike:hover {
  color: #039;
}

.fsComposerFormEmbed form .required {
  color: #416BA9;
}

.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: #36c;
  -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: #039;
  -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 {
  display: inline-block;
  border: 1.5px solid #D9E4E0;
  margin: 0 0 20px;
  padding: 25px;
  background: transparent;
  color: #000000;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 23px;
  font-weight: bold;
  letter-spacing: 2px;
  width: 270px;
}

.fsComposerFormEmbed form .submitBtn:hover,
.fsComposerFormEmbed form .submitBtn:focus,
.fsStateSelected .fsComposerFormEmbed form .submitBtn,
.fsComposerFormEmbed form .submitBtn.on {
  background: #416BA9;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1.5px solid #416BA9;
}

.fsComposerFormEmbed form .submitBtn em {
  display: block;
  font-style: normal;
  text-transform: none;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 1px;
}

.fsComposerFormEmbed .ui-widget {
  font-family: "Helvetica Neue LT W05_55 Roman", 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: #242424;
}

:-moz-placeholder {
  color: #242424;
  opacity: 1;
}

::-moz-placeholder {
  color: #242424;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #242424;
}

/*! 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: #e5e5e5;
}

.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: 1.5px solid #D9E4E0;
  margin: 0 0 20px;
  padding: 25px;
  background: transparent;
  color: #000000;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 23px;
  font-weight: bold;
  letter-spacing: 2px;
  width: 270px;
}

.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: #416BA9;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1.5px solid #416BA9;
}

.fsResetContinue em,
.fsResetCancel em,
.fsLoginNewSuccess > button em {
  display: block;
  font-style: normal;
  text-transform: none;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 1px;
}

.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 button.fsLoadMoreButton {
  display: inline-block;
  border: 1.5px solid #D9E4E0;
  margin: 0 0 20px;
  padding: 25px;
  background: transparent;
  color: #000000;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 23px;
  font-weight: bold;
  letter-spacing: 2px;
  width: 270px;
  margin: 0 auto;
  display: block;
}

.fsPostElement button.fsLoadMoreButton:hover,
.fsPostElement button.fsLoadMoreButton:focus,
.fsStateSelected .fsPostElement button.fsLoadMoreButton,
.fsPostElement button.fsLoadMoreButton.on {
  background: #416BA9;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1.5px solid #416BA9;
}

.fsPostElement button.fsLoadMoreButton em {
  display: block;
  font-style: normal;
  text-transform: none;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 1px;
}

.fsBannerRight .fsPostElement button.fsLoadMoreButton,
.fsBannerLeft .fsPostElement button.fsLoadMoreButton {
  width: 100%;
}

.fsPostElement .fsThumbnail {
  max-width: 300px !important;
  height: 200px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 15px;
}

.fsPostElement .fsThumbnail img {
  display: none;
}

.fsPostElement article {
  margin-bottom: 40px;
  padding-bottom: 20px;
}

.fsPostElement article:not(:last-child) {
  border-bottom: 1.5px solid #D9E4E0;
}

.fsPostElement .fsTitle,
.fsPostElement .fsTitle a {
  color: #000000;
  font-size: 18px;
  font-family: "Raleway", sans-serif;
  line-height: 28px;
  letter-spacing: 0.5px;
  text-decoration: none;
  margin-bottom: 10px;
  font-weight: 300;
}

.fsPostElement .fsTitle:hover,
.fsPostElement .fsTitle:focus-within,
.fsPostElement .fsTitle a:hover,
.fsPostElement .fsTitle a:focus-within {
  color: #416BA9;
}

.fsPostElement .fsAuthor,
.fsPostElement .fsDateTime {
  color: #000000;
  font-size: 13px;
  line-height: 20px;
  margin: 0;
  display: block;
  letter-spacing: 1px;
}

.fsPostElement .fsSummary,
.fsPostElement .fsBody {
  font-size: 15px;
  line-height: 23px;
  margin: 15px 0;
  letter-spacing: 1.2px;
}

.fsPostElement .fsPostLink.fsReadMoreLink {
  color: #000000;
  font-size: 13px;
  line-height: 23px;
  text-decoration: none;
}

.fsPostElement .fsPostLink.fsReadMoreLink:hover,
.fsPostElement .fsPostLink.fsReadMoreLink:focus {
  color: #416BA9;
}

.fsPostElement .fsCategories {
  margin: 0;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fsPostElement .fsCategories .fsCategory {
  margin: 0;
  font-weight: 100;
  text-transform: none;
  font-size: 13px;
  line-height: 20px;
  color: #000000;
  padding: 6px 8px 6px 8px;
  background-color: #D9E4E0;
  margin-right: 6px;
}

.fsPostElement .fsTags {
  margin: 0;
  margin-bottom: 15px;
}

.fsPostElement .fsTags .fsTag {
  font-size: 13px;
  line-height: 15px;
  color: #000000;
  padding: 6px 8px 6px 8px;
  background-color: #ffffff;
  border: 1px solid #F7F7F7;
  margin-right: 6px;
  font-weight: 100;
}

body:not(.fsComposeMode) #fsPageContent .fsPostElement.main_content.fsList article,
body:not(.home) #fsPageContent .fsPostElement.main_content.fsList article {
  padding-left: 330px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

@media (max-width: 1099px) {
  body:not(.fsComposeMode) #fsPageContent .fsPostElement.main_content.fsList article,
  body:not(.home) #fsPageContent .fsPostElement.main_content.fsList article {
    padding-left: 0px;
  }
}

body:not(.fsComposeMode) #fsPageContent .fsPostElement.main_content.fsList article.no-image,
body:not(.home) #fsPageContent .fsPostElement.main_content.fsList article.no-image {
  padding-left: 0px;
}

body:not(.fsComposeMode) #fsPageContent .fsPostElement.main_content.fsList .fsThumbnail,
body:not(.home) #fsPageContent .fsPostElement.main_content.fsList .fsThumbnail {
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 1099px) {
  body:not(.fsComposeMode) #fsPageContent .fsPostElement.main_content.fsList .fsThumbnail,
  body:not(.home) #fsPageContent .fsPostElement.main_content.fsList .fsThumbnail {
    position: relative;
  }
}

#fsPageContent .fsTwoColumnWideLeftLayout .fsStyleOneThird .fsPostElement.fsList article {
  padding-left: 0px !important;
}

#fsPageContent .fsTwoColumnWideLeftLayout .fsStyleOneThird .fsPostElement.fsList article .fsThumbnail {
  position: relative;
  left: inherit;
  top: inherit;
}

body:not(.fsComposeMode) #fsPageContent .fsPostElement.fsGrid article,
body:not(.fsComposeMode) #fsPageContent .fsPostElement.fsSlideshow article {
  border: none;
}

/*! _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: 15px;
  line-height: 23px;
  font-weight: normal;
  margin-bottom: 0;
}

.fsResourceElement .fsElementSlideshow[data-slides-to-show="1"] .fsResourceTypeImage .fsTitle {
  text-align: center;
}

.fsResourceElement .fsElementSlideshow[data-slides-to-show="1"] .fsResourceTypeImage img {
  margin: 0 auto;
}

body:not(.fsComposeMode) .universal-slideshow {
  position: relative;
  display: block;
  padding: 0px;
  margin: 0px;
  background: #000000;
}

body:not(.fsComposeMode) .universal-slideshow article {
  position: relative;
  display: block;
  padding: 0px;
  margin: 0px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  body:not(.fsComposeMode) .universal-slideshow article {
    height: 100vh;
    max-height: 100vh;
  }

  body:not(.fsComposeMode) .universal-slideshow article video {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    max-width: none;
    max-height: none;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    display: block;
  }

  body.fsAccountBarVisible .universal-slideshow article {
    height: calc(100vh - 167px);
  }
}

body:not(.fsComposeMode) .universal-slideshow .slick-slider {
  margin: 0px !important;
  padding: 0px;
}

body:not(.fsComposeMode) .universal-slideshow .fsNextButton,
body:not(.fsComposeMode) .universal-slideshow .fsPrevButton {
  position: relative;
  width: 72px;
  height: 72px;
  left: 0;
  right: inherit;
  top: 0;
  -webkit-transform: none !important;
      -ms-transform: none !important;
          transform: none !important;
  text-align: center;
  font-size: 0px;
  background: transparent;
  -webkit-transition: .3s;
  transition: .3s;
  position: absolute;
  bottom: 15px;
  top: inherit;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1023px) {
  body:not(.fsComposeMode) .universal-slideshow .fsNextButton,
  body:not(.fsComposeMode) .universal-slideshow .fsPrevButton {
    bottom: 0;
  }
}

body:not(.fsComposeMode) .universal-slideshow .fsNextButton::before,
body:not(.fsComposeMode) .universal-slideshow .fsPrevButton::before {
  font-size: 37px;
  color: #ffffff;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

body:not(.fsComposeMode) .universal-slideshow .fsNextButton:hover:before,
body:not(.fsComposeMode) .universal-slideshow .fsNextButton:focus:before,
body:not(.fsComposeMode) .universal-slideshow .fsPrevButton:hover:before,
body:not(.fsComposeMode) .universal-slideshow .fsPrevButton:focus:before {
  color: #B81F26;
}

body:not(.fsComposeMode) .universal-slideshow .fsNextButton {
  left: inherit;
  right: 20px;
}

body:not(.fsComposeMode) .universal-slideshow .fsNextButton::before {
  content: "\E901";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
}

@media (max-width: 1023px) {
  body:not(.fsComposeMode) .universal-slideshow .fsNextButton {
    right: 0;
  }
}

body:not(.fsComposeMode) .universal-slideshow .fsPrevButton {
  left: 20px;
}

body:not(.fsComposeMode) .universal-slideshow .fsPrevButton::before {
  content: "\E902";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
}

@media (max-width: 1023px) {
  body:not(.fsComposeMode) .universal-slideshow .fsPrevButton {
    left: 0;
  }
}

body:not(.fsComposeMode) .universal-slideshow .slideshow-controls {
  position: absolute;
  position: relative;
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  bottom: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 1209px) {
  body:not(.fsComposeMode) .universal-slideshow .slideshow-controls {
    padding: 0px 40px;
  }
}

@media (max-width: 1099px) {
  body:not(.fsComposeMode) .universal-slideshow .slideshow-controls {
    bottom: 50px;
  }
}

@media (max-width: 599px) {
  body:not(.fsComposeMode) .universal-slideshow .slideshow-controls {
    bottom: inherit;
    top: 215px;
    padding: 0px 20px;
  }
}

body:not(.fsComposeMode) .universal-slideshow .fsElementSlideshowControls > button {
  opacity: 0;
  visibility: hidden;
}

body:not(.fsComposeMode) .universal-slideshow article picture {
  position: relative;
  display: block;
  padding: 0px;
  margin: 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  height: 100vh;
  max-height: 100vh;
}

@media (max-width: 1023px) {
  body:not(.fsComposeMode) .universal-slideshow article picture {
    height: 520px;
    max-height: 520px;
  }
}

body:not(.fsComposeMode) .universal-slideshow article picture img {
  display: none;
}

body:not(.fsComposeMode) .universal-slideshow article picture:after {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 112px;
  z-index: 2;
  visibility: visible;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  opacity: 0.8;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

body:not(.fsComposeMode) .universal-slideshow article picture:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 2;
  opacity: 0.2;
  visibility: visible;
}

@media (max-width: 1023px) {
  body:not(.fsComposeMode) .universal-slideshow article picture {
    height: 520px;
    max-height: 520px;
  }

  body:not(.fsComposeMode) .universal-slideshow article picture:after,
  body:not(.fsComposeMode) .universal-slideshow article picture:before {
    display: none;
  }
}

body:not(.fsComposeMode) .universal-slideshow article figcaption {
  position: absolute;
  bottom: 150px;
  text-align: left;
  z-index: 5;
  width: 550px;
  padding: 45px 50px;
  margin: 0px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
}

@media (max-width: 1023px) {
  body:not(.fsComposeMode) .universal-slideshow article figcaption {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    text-align: center;
    padding: 70px 15px 80px 15px;
    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;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}

body:not(.fsComposeMode) .universal-slideshow article figcaption h2,
body:not(.fsComposeMode) .universal-slideshow article figcaption h3 {
  color: #ffffff;
  font-size: 35px;
  line-height: 48px;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  margin-bottom: 28px;
}

@media (max-width: 1023px) {
  body:not(.fsComposeMode) .universal-slideshow article figcaption h2,
  body:not(.fsComposeMode) .universal-slideshow article figcaption h3 {
    font-size: 30px;
    line-height: 43px;
  }
}

body:not(.fsComposeMode) .universal-slideshow article figcaption p {
  font-size: 15px;
  letter-spacing: 1.2px;
  line-height: 25px;
  margin-bottom: 0;
}

body:not(.fsComposeMode) .universal-slideshow article figcaption a {
  margin-top: 45px;
  margin-bottom: 0;
  color: #ffffff;
}

@media (max-width: 1023px) {
  body:not(.fsComposeMode) .universal-slideshow article figcaption a {
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 23px;
    padding: 15px 50px;
    width: auto;
    margin-top: 25px;
  }
}

body:not(.fsComposeMode) .universal-slideshow footer .fsElementFooterContent {
  margin: 0px;
}

@media (max-width: 1023px) {
  body:not(.fsComposeMode) .universal-slideshow footer {
    display: none;
  }
}

body:not(.fsComposeMode) .universal-slideshow footer button.scroll-down {
  border: 0;
  background: none;
  margin: 0;
  padding: 0;
  font-size: 0;
  position: absolute;
  left: 50%;
  bottom: 50px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 21px;
  height: 31px;
  border: 2px solid #fff;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}

body:not(.fsComposeMode) .universal-slideshow footer button.scroll-down:before {
  position: absolute;
  top: 2px;
  left: 8px;
  content: '';
  width: 1px;
  height: 4px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb10 2s infinite;
          animation: sdb10 2s infinite;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body:not(.fsComposeMode) .universal-slideshow footer button.scroll-down:after {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  top: 25px;
  content: '\F107';
  font-family: "IcoMoon";
  font-size: 20px;
  color: #ffffff;
  font-weight: 100;
  -webkit-transition: .3s;
  transition: .3s;
}

body:not(.fsComposeMode) .universal-slideshow footer button.scroll-down:hover,
body:not(.fsComposeMode) .universal-slideshow footer button.scroll-down:focus {
  bottom: 40px;
  border: 2px solid #c7c7c9;
}

body:not(.fsComposeMode) .universal-slideshow footer button.scroll-down:hover::before,
body:not(.fsComposeMode) .universal-slideshow footer button.scroll-down:focus::before {
  background: #c7c7c9;
}

body:not(.fsComposeMode) .universal-slideshow footer button.scroll-down:hover:after,
body:not(.fsComposeMode) .universal-slideshow footer button.scroll-down:focus:after {
  color: #c7c7c9;
}

@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  80% {
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

body:not(.fsComposeMode) .landing-image {
  position: relative;
  margin: 0px;
  padding: 0px;
}

body:not(.fsComposeMode) .landing-image > a {
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-size: 35px;
  font-weight: bold;
  line-height: 48px;
  padding: 25px 40px 25px 130px;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100;
  position: absolute;
  bottom: 200px;
  text-decoration: none;
}

body:not(.fsComposeMode) .landing-image > a:before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 0;
  height: 1.5px;
  width: 98px;
  background-color: #ffffff;
}

@media (max-width: 899px) {
  body:not(.fsComposeMode) .landing-image > a {
    bottom: 100px;
    -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
            transform: scale(0.7);
    left: -54px;
  }
}

@media (max-width: 599px) {
  body:not(.fsComposeMode) .landing-image > a {
    display: none;
  }
}

body:not(.fsComposeMode) .landing-image article {
  width: 100%;
  position: relative;
}

body:not(.fsComposeMode) .landing-image article figure {
  position: relative;
  height: 100%;
}

body:not(.fsComposeMode) .landing-image picture {
  position: relative;
  width: 100%;
  height: 600px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

body:not(.fsComposeMode) .landing-image picture::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 112px;
  z-index: 2;
  visibility: visible;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  opacity: 0.8;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

@media (max-width: 1023px) {
  body:not(.fsComposeMode) .landing-image picture::before {
    top: 0;
  }
}

@media (max-width: 899px) {
  body:not(.fsComposeMode) .landing-image picture {
    height: 390px;
  }
}

body:not(.fsComposeMode) .landing-image picture img {
  display: none;
}

@media (min-width: 1024px) {
  body.no-banner {
    border-top: 150px solid #ffffff;
  }
}

body.fsComposeMode #fsPageWrapper {
  overflow: inherit;
}

/*! _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: 20px;
}

.fsSearchElement.fsSearchForm .fsSearchElementKeyword + .fsSearchElementSearchButton {
  margin-top: 0;
}

.fsSearchElement.fsSearchForm .fsSearchElementSearchButton:last-child {
  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 #416BA9;
}

.fsSearchElement.fsList .fsListItems {
  padding: 0;
}

.fsSearchElement.fsList .fsSearchResultInfo {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: solid 1px #416BA9;
}

.fsSearchElement.fsList .fsSearchResultInfo:empty {
  margin: 0;
  border: none;
}

/*! _custom.scss - src/sass/modules/search/ - custom site search, design based */

.fsHeader .search-screen {
  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);
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  height: 600px;
  background: #000000;
  z-index: 0;
  padding: 200px 135px 50px 135px;
  margin: 0px;
}

.search-is-active .fsHeader .search-screen {
  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);
}

@media (max-width: 999px) {
  .fsHeader .search-screen {
    display: none;
  }
}

.fsHeader .search-screen .desktop-search {
  position: relative;
  display: block;
  margin: 0px 0px 135px 0px;
  background: transparent;
}

.fsHeader .search-screen .desktop-search:before {
  content: "";
  width: 2px;
  height: 85%;
  background: #ffffff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.fsHeader .search-screen .desktop-search form label {
  display: none;
}

.fsHeader .search-screen .desktop-search form .fsSearchElementKeyword {
  margin: 0px;
}

.fsHeader .search-screen .desktop-search form .fsButtonClear {
  display: none !important;
}

.fsHeader .search-screen .desktop-search form .fsStyleSearchField.fsStyleDefaultField {
  padding: 10px 15px 10px 15px;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-size: 35px;
  font-weight: bold;
  line-height: 48px;
  border: none;
  width: 100%;
  background: transparent;
}

.fsHeader .search-screen .desktop-search form .fsStyleSearchField.fsStyleDefaultField::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 1;
}

.fsHeader .search-screen .desktop-search form .fsStyleSearchField.fsStyleDefaultField::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}

.fsHeader .search-screen .desktop-search form .fsStyleSearchField.fsStyleDefaultField::-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
}

.fsHeader .search-screen .desktop-search form .fsStyleSearchField.fsStyleDefaultField::placeholder {
  color: #ffffff;
  opacity: 1;
}

.fsHeader .search-screen .desktop-search form .fsStyleSearchField.fsStyleDefaultField:-ms-input-placeholder {
  color: #ffffff;
}

.fsHeader .search-screen .desktop-search form .fsStyleSearchField.fsStyleDefaultField::-ms-input-placeholder {
  color: #ffffff;
}

.fsHeader .search-screen .desktop-search form button.fsSearchElementSearchButton.fsStyleUpdateButton {
  display: none;
}

.search-screen .popular-search-nav {
  position: relative;
  margin: 0px;
  padding: 0px;
}

.search-screen .popular-search-nav > header .fsElementTitle {
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Helvetica Neue LT W05_55 Roman", serif;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 23px;
}

.search-screen .popular-search-nav nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search-screen .popular-search-nav ul.fsNavLevel1 {
  margin-right: 100px;
}

.search-screen .popular-search-nav ul.fsNavLevel1 > li {
  margin-bottom: 15px;
}

.search-screen .popular-search-nav ul.fsNavLevel1 a {
  position: relative;
  padding: 0px;
  margin: 0px;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
}

.search-screen .popular-search-nav ul.fsNavLevel1 a:hover,
.search-screen .popular-search-nav ul.fsNavLevel1 a:focus {
  color: #B81F26;
}

.fsHeader .search-screen > .fsElementContent .desktop-search {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s;
  transition: .3s;
}

.fsHeader .search-screen > .fsElementContent .popular-search-nav {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s;
  transition: .3s;
}

body.search-is-active .fsHeader .search-screen > .fsElementContent .desktop-search {
  opacity: 1;
  visibility: visible;
  -webkit-transition: .5s ease-in .25s;
  transition: .5s ease-in .25s;
}

body.search-is-active .fsHeader .search-screen > .fsElementContent .desktop-search:before {
  opacity: 1;
  visibility: visible;
  -webkit-transition: .8s ease-in .45s;
  transition: .8s ease-in .45s;
}

body.search-is-active .fsHeader .search-screen > .fsElementContent .popular-search-nav {
  opacity: 1;
  visibility: visible;
  -webkit-transition: .7s ease-in .35s;
  transition: .7s ease-in .35s;
}

/*! 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 #416BA9;
  -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 #416BA9;
  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: 1.5px solid #D9E4E0;
  margin: 0 0 20px;
  padding: 25px;
  background: transparent;
  color: #000000;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 23px;
  font-weight: bold;
  letter-spacing: 2px;
  width: 270px;
}

.vimeo_view_link a:hover,
.vimeo_view_link a:focus,
.fsStateSelected .vimeo_view_link a,
.vimeo_view_link a.on {
  background: #416BA9;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1.5px solid #416BA9;
}

.vimeo_view_link a em {
  display: block;
  font-style: normal;
  text-transform: none;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 1px;
}

/*! 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 #416BA9;
  -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 #416BA9;
  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: 1.5px solid #D9E4E0;
  margin: 0 0 20px;
  padding: 25px;
  background: transparent;
  color: #000000;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 23px;
  font-weight: bold;
  letter-spacing: 2px;
  width: 270px;
}

.Youtube_view_link a:hover,
.Youtube_view_link a:focus,
.fsStateSelected .Youtube_view_link a,
.Youtube_view_link a.on {
  background: #416BA9;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1.5px solid #416BA9;
}

.Youtube_view_link a em {
  display: block;
  font-style: normal;
  text-transform: none;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 1px;
}

/*! 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: 10px;
}

.fsTabs .fsTabsNav li a {
  display: block;
  margin-top: 0;
  font-weight: normal;
  font-family: "Raleway", sans-serif;
  font-size: 30px;
  line-height: 43px;
  margin-bottom: 5px;
  margin-bottom: 2px;
  display: block;
  padding: 15px 20px;
  color: #000000;
  -webkit-transition: .3s;
  transition: .3s;
  font-family: "Helvetica Neue LT W05_55 Roman", serif;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 23px;
  letter-spacing: 2px;
  font-weight: bold;
  background: #D9E4E0;
  color: #000000;
  padding: 15px 12px;
  position: relative;
  border: 1px solid #DCE0E9;
}

.fsTabs .fsTabsNav li a:before {
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  bottom: -7px;
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 7px solid #416BA9;
  -webkit-transition: all .3s;
  transition: all .3s;
  visibility: hidden;
  opacity: 0;
}

.fsTabs .fsTabsNav li a:hover {
  background: #416BA9;
  color: #ffffff;
}

.fsTabs .fsTabsNav li.fsStateSelected a {
  background: #416BA9;
  color: #ffffff;
  border: 1px solid #416BA9;
}

.fsTabs .fsTabsNav li.fsStateSelected a:before {
  bottom: -7px;
  visibility: visible;
  opacity: 1;
}

.fsTabs .fsPanel > .fsElementContent {
  padding: 20px 0px;
}

.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: .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: #242424;
  color: #ffffff;
}

.fsLegend .fsElementControls label input + span {
  color: #242424;
  background: #e5e5e5;
}

/*! _filter.scss - src/sass/modules/tools/posts - Calendar Tools Elements */

.fsMiniGrid .fsCalendarEventGrid {
  max-width: 100%;
  width: 300px;
}

.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: #e5e5e5;
  color: #373737;
  font-size: .875em;
  line-height: 1;
  padding: 0;
  padding: 10px 5px;
  -webkit-transition: .3s;
  transition: .3s;
}

.fsMiniGrid .fsCalendarEventGrid .fsCalendarDaybox:hover {
  opacity: 1;
  background: #039 !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: #e5e5e5;
  color: #373737;
}

.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: #f8f8f8;
  color: #636363;
}

.fsMiniGrid .fsCalendarEventGrid .fsCalendarDaybox.fsCalendarToday {
  background: #36c;
  color: #ffffff;
}

.fsCalendarMonthYearPicker > .fsStyleUpdateButton {
  margin-bottom: 0;
  display: block;
  color: #ffffff;
  background-color: #242424;
}

/*! _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: #416BA9;
}

body:not(.fsComposeMode) .custom-callout {
  background-color: #D9E4E0;
  position: relative;
  overflow: hidden;
  padding: 30px;
  margin-bottom: 60px;
}

body:not(.fsComposeMode) .custom-callout > header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

body:not(.fsComposeMode) .custom-callout > header > .fsElementTitle {
  color: #000000;
  margin-bottom: 20px;
  font-size: 18px;
  letter-spacing: 0.5px;
  line-height: 28px;
}

body:not(.fsComposeMode) .custom-callout > header > .fsElementHeaderContent {
  width: calc(100% + 60px);
  height: 400px;
  margin-top: -30px;
  margin-left: -30px;
  margin-bottom: 30px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body:not(.fsComposeMode) .custom-callout > .fsElementContent p {
  letter-spacing: 1.2px;
}

body:not(.fsComposeMode) .custom-callout.green {
  background: #416BA9;
}

body:not(.fsComposeMode) .custom-callout.green header > .fsElementTitle,
body:not(.fsComposeMode) .custom-callout.green > .fsElementContent p {
  color: #ffffff;
}

body:not(.fsComposeMode) .custom-callout.green > .fsElementContent p a {
  color: #CCCCCC;
}

body:not(.fsComposeMode) .custom-callout.green > .fsElementContent p a:hover,
body:not(.fsComposeMode) .custom-callout.green > .fsElementContent p a:focus {
  color: #B81F26;
}

body:not(.fsComposeMode) .custom-callout.black {
  background: #000000;
}

body:not(.fsComposeMode) .custom-callout.black header > .fsElementTitle,
body:not(.fsComposeMode) .custom-callout.black > .fsElementContent p {
  color: #ffffff;
}

body:not(.fsComposeMode) .custom-callout.black > .fsElementContent p a {
  color: #CCCCCC;
}

body:not(.fsComposeMode) .custom-callout.black > .fsElementContent p a:hover,
body:not(.fsComposeMode) .custom-callout.black > .fsElementContent p a:focus {
  color: #B81F26;
}

body:not(.fsComposeMode) .custom-callout > header > .fsElementHeaderContent img {
  display: none;
}

body:not(.fsComposeMode) .fsBannerRight .custom-callout {
  padding: 30px 20px;
}

body:not(.fsComposeMode) .fsBannerRight .custom-callout > header > .fsElementHeaderContent {
  height: 200px;
}

/*! pages - home v0.0.1 */

body:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 1500;
}

body.custom-popup-active:before {
  visibility: visible;
  opacity: 1;
}

.home #fsPageBodyWrapper {
  margin: 0px;
  padding: 0px;
}

.home #fsPageBody {
  margin: 0px;
  padding: 0px;
  width: 100%;
  max-width: 100%;
}

.home #fsPageContent > .fsPageLayout {
  margin: 0px;
  padding: 0px;
}

.home #fsPageContent > .fsPageLayout > .fsDiv {
  margin: 0px;
  padding: 0px;
}

body:not(.fsComposeMode).home .fsPageTitle {
  display: none;
}

body:not(.fsComposeMode).home .four-buttons {
  position: relative;
  display: block;
  margin-bottom: 0;
}

body:not(.fsComposeMode).home .four-buttons .fsElementContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 0.75px solid #D9E4E0;
}

body:not(.fsComposeMode).home .four-buttons .fsElementContent p {
  min-width: 250px;
  width: 25%;
  margin: 0;
}

@media (max-width: 1023px) {
  body:not(.fsComposeMode).home .four-buttons .fsElementContent p {
    width: 50%;
  }
}

@media (max-width: 599px) {
  body:not(.fsComposeMode).home .four-buttons .fsElementContent p {
    width: 100%;
  }
}

body:not(.fsComposeMode).home .four-buttons .fsElementContent p > a {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 23px;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
  text-align: center;
  padding: 30px;
  display: block;
  border: 0.75px solid #D9E4E0;
}

body:not(.fsComposeMode).home .four-buttons .fsElementContent p > a:hover,
body:not(.fsComposeMode).home .four-buttons .fsElementContent p > a:focus {
  background-color: #416BA9;
  color: #ffffff;
}

body:not(.fsComposeMode).home .four-buttons .fsElementContent p > a em {
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 20px;
  text-align: center;
  display: block;
  text-transform: none;
  font-style: normal;
  font-weight: 100;
}

body:not(.fsComposeMode).home .school-description {
  position: relative;
  display: block;
  padding: 100px 20px;
  background-color: #F7F7F7;
  margin-bottom: 60px;
}

@media (max-width: 599px) {
  body:not(.fsComposeMode).home .school-description {
    padding: 50px 14px;
  }
}

body:not(.fsComposeMode).home .school-description > .fsElementContent {
  position: relative;
  margin: 0 auto;
  max-width: 866px;
}

body:not(.fsComposeMode).home .school-description > .fsElementContent p {
  font-size: 30px;
  font-weight: bold;
  line-height: 43px;
  text-align: center;
  letter-spacing: 0;
  font-family: "Raleway", sans-serif;
}

@media (max-width: 599px) {
  body:not(.fsComposeMode).home .school-description > .fsElementContent p {
    font-size: 22px;
    line-height: 33px;
  }
}

body:not(.fsComposeMode).home .testimonial-container {
  max-width: 1440px;
  margin: 0 auto;
  margin-bottom: 100px;
  position: relative;
}

@media (max-width: 999px) {
  body:not(.fsComposeMode).home .testimonial-container {
    margin-bottom: 50px;
  }
}

body:not(.fsComposeMode).home .testimonial-container > header h2 {
  color: #416BA9;
  font-size: 28px;
  font-weight: bold;
  line-height: 39px;
  text-align: center;
  margin-bottom: 20px;
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent:not(.cloned) > .slick-dots {
  display: none;
}

@media (max-width: 1023px) {
  body:not(.fsComposeMode).home .testimonial-container .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

body:not(.fsComposeMode).home .testimonial-container .testimonial-box:not(.cloned) {
  height: 450px;
  position: relative;
  margin-bottom: 0;
  cursor: pointer;
  overflow: hidden;
}

body:not(.fsComposeMode).home .testimonial-container .testimonial-box:not(.cloned):hover > header,
body:not(.fsComposeMode).home .testimonial-container .testimonial-box:not(.cloned):focus > header {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
      -ms-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}

body:not(.fsComposeMode).home .testimonial-container .testimonial-box:not(.cloned):after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 226px;
  opacity: 0.78;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  z-index: 1;
}

body:not(.fsComposeMode).home .testimonial-container .testimonial-box:not(.cloned) > header {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  -webkit-transition: all .3s;
  transition: all .3s;
}

body:not(.fsComposeMode).home .testimonial-container .testimonial-box:not(.cloned) > header img {
  display: none;
}

body:not(.fsComposeMode).home .testimonial-container .testimonial-box:not(.cloned) > footer {
  z-index: 2;
  position: absolute;
  left: 30px;
  bottom: 30px;
  color: #ffffff;
}

body:not(.fsComposeMode).home .testimonial-container .testimonial-box:not(.cloned) > footer h3 {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.5px;
  line-height: 28px;
  color: #ffffff;
  margin-bottom: 10px;
}

body:not(.fsComposeMode).home .testimonial-container .testimonial-box:not(.cloned) > footer h4 {
  color: #ffffff;
  font-family: "Helvetica Neue LT W05_35 Thin", serif;
  font-size: 15px;
  letter-spacing: 1.2px;
  line-height: 25px;
  margin-bottom: 0;
}

body:not(.fsComposeMode).home .testimonial-container .testimonial-box:not(.cloned) > footer p {
  margin-bottom: 0;
  font-family: "Helvetica Neue LT W05_35 Thin", serif;
  display: none;
}

@media (max-width: 1023px) {
  body:not(.fsComposeMode).home .testimonial-container .testimonial-box:not(.cloned) {
    width: 380px !important;
  }
}

@media (max-width: 899px) {
  body:not(.fsComposeMode).home .testimonial-container .testimonial-box:not(.cloned) {
    width: 320px !important;
  }
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned {
  background-color: #000000;
  padding: 0 20px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9999;
  width: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
  visibility: hidden;
  opacity: 0;
}

@media (max-width: 799px) {
  body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned {
    position: absolute;
    top: 59px;
    left: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned button.close-popup {
  width: 20px;
  height: 20px;
  border: none;
  font-size: 0;
  background-color: transparent;
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}

@media (max-width: 799px) {
  body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned button.close-popup {
    top: 400px;
    right: 15px;
  }
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned button.close-popup:before {
  content: '\E90E';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 18px;
  color: #ffffff;
  font-family: "IcoMoon";
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned > .holder {
  max-width: 1080px;
  position: relative;
  display: block;
  margin: 0 auto;
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned > .holder > button.slick-arrow {
  display: none !important;
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned > .holder .custom_paging {
  position: absolute;
  right: 0;
  top: 67px;
}

@media (max-width: 799px) {
  body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned > .holder .custom_paging {
    top: 400px;
    left: 0px;
  }
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned > .holder .custom_paging span {
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  line-height: 13px;
  letter-spacing: 2px;
  position: relative;
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned > .holder .custom_paging .page {
  padding-right: 10px;
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned > .holder .custom_paging .page:after {
  content: '';
  width: 2px;
  height: 10px;
  background: #ffffff;
  -webkit-transform: rotate(15deg);
      -ms-transform: rotate(15deg);
          transform: rotate(15deg);
  position: absolute;
  right: 0;
  top: 3px;
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned > .holder .custom_paging .separator {
  padding-left: 10px;
  top: 5px;
  font-size: 0;
  color: transparent;
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned > .holder .custom_paging,
body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned > .holder .custom_paging ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned > .holder .custom_paging li {
  margin: 0;
  padding: 0;
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned > .holder .custom_paging li {
  display: none;
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned > .holder .custom_paging li.slick-active {
  display: block;
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned .testimonial-box.cloned {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 799px) {
  body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned .testimonial-box.cloned {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 50px 0px;
  }
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned .testimonial-box.cloned > header {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 570px;
  width: 500px;
  margin-right: 78px;
}

@media (max-width: 1023px) {
  body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned .testimonial-box.cloned > header {
    margin-right: 30px;
  }
}

@media (max-width: 799px) {
  body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned .testimonial-box.cloned > header {
    height: 330px;
    width: 290px;
  }
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned .testimonial-box.cloned > header img {
  display: none;
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned .testimonial-box.cloned > footer {
  width: 500px;
  padding: 60px 0px;
}

@media (max-width: 799px) {
  body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned .testimonial-box.cloned > footer {
    width: auto;
    padding: 60px 0px 0px 0px;
  }
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned .testimonial-box.cloned > footer > .fsElementFooterContent {
  margin: 0;
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned .testimonial-box.cloned > footer > .fsElementFooterContent h3 {
  color: #ffffff;
  font-size: 28px;
  font-weight: bold;
  line-height: 39px;
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned .testimonial-box.cloned > footer > .fsElementFooterContent h4 {
  color: #ffffff;
  font-family: "Helvetica Neue LT W05_35 Thin", serif;
  font-size: 15px;
  letter-spacing: 1.2px;
  line-height: 23px;
  display: inline-block;
  padding-right: 20px;
  position: relative;
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned .testimonial-box.cloned > footer > .fsElementFooterContent h4:after {
  content: '';
  position: absolute;
  height: 18px;
  width: 1px;
  background-color: #ffffff;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned .testimonial-box.cloned > footer > .fsElementFooterContent h4:nth-child(3):after {
  display: none;
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned .testimonial-box.cloned > footer > .fsElementFooterContent p {
  font-family: "Helvetica Neue LT W05_35 Thin", serif;
  color: #ffffff;
  height: 275px;
  overflow-y: scroll;
  padding-right: 20px;
  margin: 35px 0;
}

@media (max-width: 799px) {
  body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned .testimonial-box.cloned > footer > .fsElementFooterContent p {
    height: 205px;
  }
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned .testimonial-box.cloned > footer button.slick-arrow {
  width: 30px;
  height: 30px;
  border: none;
  font-size: 0;
  background-color: #D9E4E0;
  position: absolute;
  border-radius: 100%;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned .testimonial-box.cloned > footer button.slick-arrow:hover,
body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned .testimonial-box.cloned > footer button.slick-arrow:focus {
  background-color: #B81F26;
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned .testimonial-box.cloned > footer button.slick-arrow:before {
  content: '\F104';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 18px;
  line-height: 18px;
  color: #416BA9;
  font-weight: bold;
  font-family: "IcoMoon";
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned .testimonial-box.cloned > footer button.slick-arrow.slick-next {
  margin-left: 45px;
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned .testimonial-box.cloned > footer button.slick-arrow.slick-next:before {
  content: '\F105';
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned .testimonial-box.cloned > footer > .fsElementFooterContent p::-webkit-scrollbar {
  width: 6px;
}

body:not(.fsComposeMode).home .testimonial-container > .fsElementContent.cloned .testimonial-box.cloned > footer > .fsElementFooterContent p::-webkit-scrollbar-thumb {
  background-color: #416BA9;
}

body.custom-popup-active .testimonial-container > .fsElementContent.cloned {
  visibility: visible !important;
  opacity: 1 !important;
}

body:not(.fsComposeMode).home .posts-events-container {
  position: relative;
  display: block;
  max-width: 1240px;
  margin: 0 auto;
  margin-bottom: 70px;
}

body:not(.fsComposeMode).home .posts-events-container > header {
  display: none;
}

body:not(.fsComposeMode).home .posts-events-container > .fsElementContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 999px) {
  body:not(.fsComposeMode).home .posts-events-container > .fsElementContent {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  body:not(.fsComposeMode).home .posts-events-container > .fsElementContent .spotlight {
    margin-right: 0;
  }

  body:not(.fsComposeMode).home .posts-events-container > .fsElementContent .spotlight > header h2 {
    text-align: center;
  }
}

@media (max-width: 999px) and (max-width: 999px) {
  body:not(.fsComposeMode).home .posts-events-container > .fsElementContent .spotlight > header h2 {
    margin-bottom: 50px;
  }
}

@media (max-width: 999px) {
  body:not(.fsComposeMode).home .posts-events-container > .fsElementContent .events {
    padding: 0 20px;
    max-width: 100%;
  }

  body:not(.fsComposeMode).home .posts-events-container > .fsElementContent .events > header h2 {
    text-align: center;
  }
}

@media (max-width: 799px) {
  body:not(.fsComposeMode).home .posts-events-container > .fsElementContent .events {
    padding: 0 15px;
    max-width: 320px;
  }
}

body:not(.fsComposeMode).home .posts-events-container .spotlight {
  position: relative;
  max-width: 437px;
  width: 100%;
  margin-right: 70px;
}

@media (max-width: 1379px) {
  body:not(.fsComposeMode).home .posts-events-container .spotlight {
    max-width: 320px;
    margin-right: 50px;
  }
}

body:not(.fsComposeMode).home .posts-events-container .spotlight > header h2 {
  color: #416BA9;
  font-size: 28px;
  font-weight: bold;
  line-height: 39px;
  margin-bottom: 20px;
}

body:not(.fsComposeMode).home .posts-events-container .spotlight .slick-slider {
  padding: 0;
  margin: 0;
}

body:not(.fsComposeMode).home .posts-events-container .spotlight .slick-slider article {
  background-color: #F7F7F7;
  padding: 25px;
  margin: 0;
}

body:not(.fsComposeMode).home .posts-events-container .spotlight .slick-slider article a.fsThumbnail {
  position: relative;
  max-width: calc(100% + 50px) !important;
  width: calc(100% + 50px) !important;
  height: 250px;
  margin-top: -25px;
  margin-left: -25px;
  margin-bottom: 25px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 1379px) {
  body:not(.fsComposeMode).home .posts-events-container .spotlight .slick-slider article a.fsThumbnail {
    height: 180px;
  }
}

body:not(.fsComposeMode).home .posts-events-container .spotlight .slick-slider article .fsSummary {
  height: 70px;
  margin: 0;
  overflow-y: hidden;
}

body:not(.fsComposeMode).home .posts-events-container .spotlight > .fsElementContent {
  padding-bottom: 80px;
}

body:not(.fsComposeMode).home .posts-events-container .spotlight > .fsElementContent > footer {
  position: absolute;
  bottom: 18px;
  right: 100px;
}

@media (max-width: 499px) {
  body:not(.fsComposeMode).home .posts-events-container .spotlight > .fsElementContent > footer {
    right: 120px;
  }
}

body:not(.fsComposeMode).home .posts-events-container .spotlight > .fsElementContent > footer > .fsElementFooterContent {
  margin: 0;
}

body:not(.fsComposeMode).home .posts-events-container .spotlight > .fsElementContent > footer > .fsElementFooterContent a {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 23px;
  text-transform: uppercase;
  text-decoration: none;
  color: #000000;
}

body:not(.fsComposeMode).home .posts-events-container .spotlight > .fsElementContent > footer > .fsElementFooterContent a:hover,
body:not(.fsComposeMode).home .posts-events-container .spotlight > .fsElementContent > footer > .fsElementFooterContent a:focus {
  color: #416BA9;
}

body:not(.fsComposeMode).home .posts-events-container .spotlight > .fsElementContent button {
  bottom: 0;
  top: auto;
  width: 30px;
  height: 30px;
  font-size: 0;
  line-height: 0;
  background-color: #D9E4E0;
  border-radius: 100%;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}

body:not(.fsComposeMode).home .posts-events-container .spotlight > .fsElementContent button:hover,
body:not(.fsComposeMode).home .posts-events-container .spotlight > .fsElementContent button:focus {
  background-color: #B81F26;
}

body:not(.fsComposeMode).home .posts-events-container .spotlight > .fsElementContent button:before {
  content: '\F104';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 18px;
  line-height: 18px;
  height: 20px;
  width: 7px;
  color: #416BA9;
  font-weight: bold;
  font-family: "IcoMoon";
}

body:not(.fsComposeMode).home .posts-events-container .spotlight > .fsElementContent button.fsPrevButton {
  left: auto;
  right: 45px;
}

@media (max-width: 499px) {
  body:not(.fsComposeMode).home .posts-events-container .spotlight > .fsElementContent button.fsPrevButton {
    right: 65px;
  }
}

@media (max-width: 499px) {
  body:not(.fsComposeMode).home .posts-events-container .spotlight > .fsElementContent button.fsNextButton {
    right: 20px;
  }
}

body:not(.fsComposeMode).home .posts-events-container .spotlight > .fsElementContent button.fsNextButton:before {
  content: '\F105';
}

body:not(.fsComposeMode).home .posts-events-container .events {
  position: relative;
  max-width: 735px;
  width: 100%;
}

body:not(.fsComposeMode).home .posts-events-container .events > header h2 {
  color: #416BA9;
  font-size: 28px;
  font-weight: bold;
  line-height: 39px;
  margin-bottom: 20px;
}

body:not(.fsComposeMode).home .posts-events-container .events > .fsElementContent .fsListItems {
  padding-bottom: 80px;
}

body:not(.fsComposeMode).home .posts-events-container .events > .fsElementContent .fsListItems > footer {
  position: absolute;
  bottom: 3px;
  right: 100px;
}

body:not(.fsComposeMode).home .posts-events-container .events > .fsElementContent .fsListItems > footer > .fsElementFooterContent {
  margin: 0;
}

body:not(.fsComposeMode).home .posts-events-container .events > .fsElementContent .fsListItems > footer > .fsElementFooterContent a {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 23px;
  text-transform: uppercase;
  text-decoration: none;
  color: #000000;
}

body:not(.fsComposeMode).home .posts-events-container .events > .fsElementContent .fsListItems > footer > .fsElementFooterContent a:hover,
body:not(.fsComposeMode).home .posts-events-container .events > .fsElementContent .fsListItems > footer > .fsElementFooterContent a:focus {
  color: #416BA9;
}

body:not(.fsComposeMode).home .posts-events-container .events > .fsElementContent .fsListItems button {
  bottom: 0;
  top: auto;
  position: absolute;
  width: 30px;
  height: 30px;
  font-size: 0;
  line-height: 0;
  background-color: #D9E4E0;
  border-radius: 100%;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
}

body:not(.fsComposeMode).home .posts-events-container .events > .fsElementContent .fsListItems button:hover,
body:not(.fsComposeMode).home .posts-events-container .events > .fsElementContent .fsListItems button:focus {
  background-color: #B81F26;
}

body:not(.fsComposeMode).home .posts-events-container .events > .fsElementContent .fsListItems button:before {
  content: '\F104';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 18px;
  line-height: 18px;
  height: 20px;
  width: 7px;
  color: #416BA9;
  font-weight: bold;
  font-family: "IcoMoon";
}

body:not(.fsComposeMode).home .posts-events-container .events > .fsElementContent .fsListItems button.slick-prev {
  left: auto;
  right: 45px;
}

body:not(.fsComposeMode).home .posts-events-container .events > .fsElementContent .fsListItems button.slick-next {
  right: 0;
}

body:not(.fsComposeMode).home .posts-events-container .events > .fsElementContent .fsListItems button.slick-next:before {
  content: '\F105';
}

body:not(.fsComposeMode).home .posts-events-container .events .slick-list:after {
  position: absolute;
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 1px;
  width: 100%;
  background-color: #D9E4E0;
}

body:not(.fsComposeMode).home .posts-events-container .events .slick-slide > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body:not(.fsComposeMode).home .posts-events-container .events .slick-slide > div:first-child {
  margin-bottom: 100px;
}

body:not(.fsComposeMode).home .posts-events-container .events .slick-slide > div:last-child {
  margin-top: 100px;
}

body:not(.fsComposeMode).home .posts-events-container .events .slick-slide article {
  margin: 0;
  height: auto;
  padding-left: 110px;
}

body:not(.fsComposeMode).home .posts-events-container .events .slick-slide article time {
  width: 90px;
  height: 80px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

body:not(.fsComposeMode).home .posts-events-container .events .slick-slide article time .fsMonth {
  line-height: 18px;
}

body:not(.fsComposeMode).home .posts-events-container .events .slick-slide article time .fsDay {
  line-height: 40px;
}

body:not(.fsComposeMode).home .posts-events-container .events .slick-slide article:hover time.fsDate,
body:not(.fsComposeMode).home .posts-events-container .events .slick-slide article:focus time.fsDate {
  background-color: #416BA9;
  color: #ffffff;
}

body:not(.fsComposeMode).home .posts-events-container .events article .fsEventDetails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body:not(.fsComposeMode).home .posts-events-container .events article .fsEventDetails .holder {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-bottom: 10px;
}

body:not(.fsComposeMode).home .posts-events-container .events article .fsEventDetails .fsTitle {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-bottom: 10px;
  max-height: 28px;
  overflow-y: hidden;
}

@media (max-width: 799px) {
  body:not(.fsComposeMode).home .posts-events-container .events article .fsEventDetails .fsTitle .events {
    max-height: auto;
    overflow-y: visible;
  }
}

body:not(.fsComposeMode).home .posts-events-container .events article .fsEventDetails .fsLocation {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-bottom: 10px;
}

body:not(.fsComposeMode).home .posts-events-container .events article .fsEventDetails .holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body:not(.fsComposeMode).home .posts-events-container .events article .fsEventDetails .holder .fsTimeRange,
body:not(.fsComposeMode).home .posts-events-container .events article .fsEventDetails .holder .fsAllDay {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  padding-left: 10px;
}

body:not(.fsComposeMode).home .posts-events-container .events article .fsEventDetails .holder .fsDayName {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding-right: 10px;
  position: relative;
}

body:not(.fsComposeMode).home .posts-events-container .events article .fsEventDetails .holder .fsDayName:before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 0;
  height: 15px;
  width: 1px;
  background-color: #000000;
}

@media (max-width: 1219px) {
  body:not(.fsComposeMode).home .posts-events-container .events {
    max-width: 500px;
  }

  body:not(.fsComposeMode).home .posts-events-container .events article .fsEventDetails .holder {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  body:not(.fsComposeMode).home .posts-events-container .events article .fsEventDetails .holder .fsTimeRange,
  body:not(.fsComposeMode).home .posts-events-container .events article .fsEventDetails .holder .fsDayName {
    padding: 0;
  }

  body:not(.fsComposeMode).home .posts-events-container .events article .fsEventDetails .holder .fsTimeRange:before,
  body:not(.fsComposeMode).home .posts-events-container .events article .fsEventDetails .holder .fsDayName:before {
    display: none;
  }
}

body:not(.fsComposeMode).home .cta-boxes-container {
  position: relative;
  display: block;
  margin-bottom: 100px;
}

@media (max-width: 999px) {
  body:not(.fsComposeMode).home .cta-boxes-container {
    margin-bottom: 50px;
  }
}

body:not(.fsComposeMode).home .cta-boxes-container > header {
  display: none;
}

body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box {
  position: relative;
  width: 33.33%;
  margin-bottom: 0;
  height: 320px;
  overflow: hidden;
}

@media (max-width: 1199px) {
  body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box {
    width: 50%;
  }
}

@media (max-width: 899px) {
  body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box {
    width: 100%;
    height: 213px;
  }
}

body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.59);
  -webkit-transition: all .9s;
  transition: all .9s;
}

body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box > header {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 50px;
  z-index: 2;
  display: block;
}

body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box > header .fsElementHeaderContent {
  margin: 0;
}

body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box > header .fsElementHeaderContent h3 {
  font-size: 28px;
  font-weight: bold;
  line-height: 39px;
  font-family: "Raleway", sans-serif;
  color: #ffffff;
}

@media (max-width: 899px) {
  body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box > header .fsElementHeaderContent h3 {
    font-size: 22px;
    line-height: 33px;
  }
}

body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box > .fsElementContent {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: .3s;
  transition: .3s;
}

body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box > .fsElementContent > img {
  display: none;
}

body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box > footer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .6s;
  transition: all .6s;
  z-index: 3;
  display: block;
  background-color: rgba(36, 96, 73, 0.95);
  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;
}

body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box > footer > .fsElementFooterContent {
  margin: 0;
  padding: 50px;
  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;
  color: #ffffff;
}

@media (max-width: 599px) {
  body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box > footer > .fsElementFooterContent {
    padding: 15px;
  }
}

body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box > footer > .fsElementFooterContent h3 {
  color: #ffffff;
  margin-bottom: 25px;
}

@media (max-width: 899px) {
  body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box > footer > .fsElementFooterContent h3 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 22px;
  }
}

body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box > footer > .fsElementFooterContent p {
  font-weight: 100;
}

@media (max-width: 899px) {
  body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box > footer > .fsElementFooterContent p {
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 10px;
  }
}

body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box > footer > .fsElementFooterContent a {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 23px;
  text-decoration: none;
}

@media (max-width: 899px) {
  body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box > footer > .fsElementFooterContent a {
    font-size: 12px;
    line-height: 14px;
  }
}

body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box > footer > .fsElementFooterContent a:hover,
body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box > footer > .fsElementFooterContent a:focus {
  color: #B81F26;
}

body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box:hover,
body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box:focus {
  cursor: pointer;
}

body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box:hover > footer,
body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box:focus > footer {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box:hover > .fsElementContent,
body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box:focus > .fsElementContent {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
      -ms-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}

body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box:hover:after,
body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box:focus:after {
  opacity: 0;
}

body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box:focus-within {
  cursor: pointer;
}

body:not(.fsComposeMode).home .cta-boxes-container > .fsElementContent .cta-box:focus-within > footer {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

body:not(.fsComposeMode).home .custom-feeds-container {
  margin-bottom: 100px;
}

@media (max-width: 1023px) {
  body:not(.fsComposeMode).home .custom-feeds-container {
    margin-bottom: 50px;
  }
}

@media (max-width: 599px) {
  body:not(.fsComposeMode).home .custom-feeds-container {
    margin-bottom: 20px;
  }
}

body:not(.fsComposeMode).home .custom-feeds-container > header h2 {
  color: #416BA9;
  font-size: 28px;
  font-weight: bold;
  line-height: 39px;
  text-align: center;
  margin-bottom: 10px;
}

@media (max-width: 999px) {
  body:not(.fsComposeMode).home .custom-feeds-container > header h2 {
    margin-bottom: 30px;
  }
}

body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram {
  max-width: 1260px;
  margin: 0 auto;
  position: relative;
}

body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article {
  position: relative;
  display: block;
  width: calc(25% - 24px);
  height: 290px;
  background-color: #000000;
  margin: 12px;
  overflow: hidden;
}

@media (max-width: 1023px) {
  body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article {
    width: calc(50% - 20px);
    margin: 10px;
  }
}

@media (max-width: 599px) {
  body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article {
    width: calc(100% - 10px);
  }

  body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article:last-child,
  body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article:nth-last-child(2),
  body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article:nth-last-child(3),
  body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article:nth-last-child(4),
  body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article:nth-last-child(5) {
    display: none;
  }
}

body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article > a {
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 50;
}

body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article .image-bg {
  position: absolute;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: .3s;
  transition: .3s;
  display: block;
  width: 100%;
  height: 290px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article .image-bg img {
  display: none;
}

body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.74);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px;
}

body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article .holder .feed-content {
  position: relative;
  display: block;
  overflow: hidden;
}

body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article .holder .feed-content .handle {
  padding-left: 30px;
  margin-bottom: 20px;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 20px;
  color: #ffffff;
  position: relative;
}

body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article .holder .feed-content .handle:before {
  content: '\F16D';
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 0;
  font-family: "IcoMoon";
  font-size: 20px;
  color: #ffffff;
}

body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article .holder .feed-content .feed-desc {
  color: #ffffff;
  max-height: 92px;
  overflow: hidden;
  margin-bottom: 20px;
  font-size: 15px;
  letter-spacing: 1.2px;
  line-height: 23px;
}

body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article .holder .feed-content .date {
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 20px;
  color: #ffffff;
}

body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article:hover,
body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article:focus {
  cursor: pointer;
}

body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article:hover .holder,
body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article:focus .holder {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article:hover .image-bg,
body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article:focus .image-bg {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article:focus-within .holder {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

body:not(.fsComposeMode).home .custom-feeds-container .hp-instagram > .fsElementContent article:focus-within .image-bg {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.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: 33.33333%;
  }
}

.colors.main ol li:nth-of-type(1) {
  background: #000000;
}

.colors.main ol li:nth-of-type(1):after {
  content: "#000000";
}

.colors.main ol li:nth-of-type(2) {
  background: #416BA9;
}

.colors.main ol li:nth-of-type(2):after {
  content: "#416BA9";
}

.colors.main ol li:nth-of-type(3) {
  background: #B81F26;
}

.colors.main ol li:nth-of-type(3):after {
  content: "#B81F26";
}

@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: #131313;
}

.colors.shade ol li:nth-of-type(2):after {
  content: "#131313";
}

.colors.shade ol li:nth-of-type(3) {
  background: #242424;
}

.colors.shade ol li:nth-of-type(3):after {
  content: "#242424";
}

.colors.shade ol li:nth-of-type(4) {
  background: #373737;
}

.colors.shade ol li:nth-of-type(4):after {
  content: "#373737";
}

.colors.shade ol li:nth-of-type(5) {
  background: #636363;
}

.colors.shade ol li:nth-of-type(5):after {
  content: "#636363";
}

.colors.shade ol li:nth-of-type(6) {
  background: #959595;
}

.colors.shade ol li:nth-of-type(6):after {
  content: "#959595";
}

.colors.shade ol li:nth-of-type(7) {
  background: #cfcfcf;
}

.colors.shade ol li:nth-of-type(7):after {
  content: "#cfcfcf";
}

.colors.shade ol li:nth-of-type(8) {
  background: #e5e5e5;
}

.colors.shade ol li:nth-of-type(8):after {
  content: "#e5e5e5";
}

.colors.shade ol li:nth-of-type(9) {
  background: #f8f8f8;
}

.colors.shade ol li:nth-of-type(9):after {
  content: "#f8f8f8";
}

.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: "Helvetica Neue LT W05_55 Roman", serif;
}

.fonts ol li:nth-of-type(1):after {
  content: "Helvetica Neue LT W05_55 Roman, serif";
  display: block;
  margin-bottom: 10px;
}

.fonts ol li:nth-of-type(2) {
  font-family: "IcoMoon";
}

.fonts ol li:nth-of-type(2):after {
  content: "IcoMoon";
  display: block;
  margin-bottom: 10px;
}

.headers .fsElementContent h1:after {
  content: " - font-size: 35px / line-height: 48px";
}

.headers .fsElementContent h2:after {
  content: " - font-size: 30px / line-height: 43px";
}

.headers .fsElementContent h3:after {
  content: " - font-size: 28px / line-height: 39px";
}

.headers .fsElementContent h4:after {
  content: " - font-size: 22px / line-height: 33px";
}

.headers .fsElementContent h5:after {
  content: " - font-size: 18px / line-height: 28px";
}

.headers .fsElementContent h6:after {
  content: " - font-size: 14px / line-height: 25px";
}

@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;
  }
}/*@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.33333em;
  margin-left: 1.33333em;
}

.margin-x-2x {
  margin-right: 2.66667em;
  margin-left: 2.66667em;
}

.margin-y {
  margin-top: 1.33333em;
  margin-bottom: 1.33333em;
}

.margin-y-2x {
  margin-top: 2.66667em;
  margin-bottom: 2.66667em;
}

.padding-x {
  padding-right: 1.33333em;
  padding-left: 1.33333em;
}

.padding-x-2x {
  padding-right: 2.66667em;
  padding-left: 2.66667em;
}

.padding-y {
  padding-top: 1.33333em;
  padding-bottom: 1.33333em;
}

.padding-y-2x {
  padding-top: 2.66667em;
  padding-bottom: 2.66667em;
}

.stretch-container {
  margin-right: -1.33333em;
  margin-left: -1.33333em;
}

.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;
}

h1 {
  margin-top: 0;
  font-weight: normal;
  font-family: "Raleway", sans-serif;
  font-size: 35px;
  line-height: 48px;
  margin-bottom: 5px;
}

h2 {
  margin-top: 0;
  font-weight: normal;
  font-family: "Raleway", sans-serif;
  font-size: 30px;
  line-height: 43px;
  margin-bottom: 5px;
}

h3 {
  margin-top: 0;
  font-weight: normal;
  font-family: "Raleway", sans-serif;
  font-size: 28px;
  line-height: 39px;
  margin-bottom: 5px;
  color: #416BA9;
}

h4 {
  margin-top: 0;
  font-weight: normal;
  font-family: "Raleway", sans-serif;
  font-size: 22px;
  line-height: 33px;
  margin-bottom: 5px;
}

h5 {
  margin-top: 0;
  font-weight: normal;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

h6 {
  margin-top: 0;
  font-weight: normal;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 2px;
  color: #416BA9;
  text-transform: uppercase;
  letter-spacing: 3.5px;
}

p {
  margin: 0 0 20px;
  letter-spacing: 1.2px;
}

body:not(.fsComposeMode) p:last-child {
  margin-bottom: 0;
}

hr {
  margin: 0 auto 20px;
}

a {
  text-decoration: underline;
  color: #525252;
  -webkit-transition: background .3s, color .3s;
  transition: background .3s, color .3s;
}

a:hover,
a:focus {
  color: #416BA9;
}

ul,
ol {
  margin-top: 0;
  padding-left: 20px;
}

table.fs_style_4 {
  margin-bottom: 20px;
  width: 100%;
  overflow-x: auto;
}

table.fs_style_4 th,
table.fs_style_4 td {
  vertical-align: top;
  border-bottom: none;
}

table.fs_style_4 th {
  padding: 13px;
  background: #416BA9;
  color: #ffffff;
  text-align: left;
  font-size: 13px;
  line-height: 23px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: bold;
}

table.fs_style_4 td {
  padding: 13px;
  background: #ffffff;
  color: #000000;
  font-size: 15px;
  line-height: 23px;
}

table.fs_style_4 tr:nth-of-type(odd) td {
  background-color: #D9E4E0;
}

table.fs_style_4 tr {
  border-bottom: solid 1px #ffffff;
}

table.fs_style_4 tr.fsLoadMoreButtonRow {
  border-bottom: none;
}

table.fs_style_4 tr.fsLoadMoreButtonRow > td {
  background: none;
  padding: 20px 0;
}

body:not(.fsComposeMode) table.fs_style_4: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%;
}

.fs_style_5 {
  display: inline-block;
  border: 1.5px solid #D9E4E0;
  margin: 0 0 20px;
  padding: 25px;
  background: transparent;
  color: #000000;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 23px;
  font-weight: bold;
  letter-spacing: 2px;
  width: 270px;
}

.fs_style_5:hover,
.fs_style_5:focus,
.fsStateSelected .fs_style_5,
.fs_style_5.on {
  background: #416BA9;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1.5px solid #416BA9;
}

.fs_style_5 em {
  display: block;
  font-style: normal;
  text-transform: none;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 1px;
}

.fs_style_XY {
  display: inline-block;
  border: 1.5px solid #D9E4E0;
  margin: 0 0 20px;
  padding: 25px;
  background: #B81F26;
  color: #000000;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 23px;
  font-weight: bold;
  letter-spacing: 2px;
  width: 270px;
}

.fs_style_XY:hover,
.fs_style_XY:focus,
.fsStateSelected .fs_style_XY,
.fs_style_XY.on {
  background: #416BA9;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1.5px solid #416BA9;
}

.fs_style_XY em {
  display: block;
  font-style: normal;
  text-transform: none;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 1px;
}

.fsStyleDefaultButton {
  display: inline-block;
  border: 1.5px solid #D9E4E0;
  margin: 0 0 20px;
  padding: 25px;
  background: transparent;
  color: #000000;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 23px;
  font-weight: bold;
  letter-spacing: 2px;
  width: 270px;
}

.fsStyleDefaultButton:hover,
.fsStyleDefaultButton:focus,
.fsStateSelected .fsStyleDefaultButton,
.fsStyleDefaultButton.on {
  background: #416BA9;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1.5px solid #416BA9;
}

.fsStyleDefaultButton em {
  display: block;
  font-style: normal;
  text-transform: none;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 1px;
}

.fsStyleDefaultButton.fsLoadMoreButton {
  margin-bottom: 0;
}

.fsStyleDefaultButton.fsSelectAll {
  display: inline-block;
  border: 1.5px solid #D9E4E0;
  margin: 0 0 20px;
  padding: 25px;
  background: transparent;
  color: #000000;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 23px;
  font-weight: bold;
  letter-spacing: 2px;
  width: 270px;
  padding: 10px;
  width: auto;
}

.fsStyleDefaultButton.fsSelectAll:hover,
.fsStyleDefaultButton.fsSelectAll:focus,
.fsStateSelected .fsStyleDefaultButton.fsSelectAll,
.fsStyleDefaultButton.fsSelectAll.on {
  background: #416BA9;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1.5px solid #416BA9;
}

.fsStyleDefaultButton.fsSelectAll em {
  display: block;
  font-style: normal;
  text-transform: none;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 1px;
}

.fs_style_9 {
  display: inline-block;
  border: 1.5px solid #D9E4E0;
  margin: 0 0 20px;
  padding: 25px;
  background: transparent;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 23px;
  font-weight: bold;
  letter-spacing: 2px;
  width: 270px;
  border: 1.5px solid #ffffff;
}

.fs_style_9:hover,
.fs_style_9:focus,
.fsStateSelected .fs_style_9,
.fs_style_9.on {
  background: #B81F26;
  color: #000000;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1.5px solid #416BA9;
}

.fs_style_9 em {
  display: block;
  font-style: normal;
  text-transform: none;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 1px;
}

.fs_style_9:hover,
.fs_style_9:focus,
.fsStateSelected .fs_style_9,
.fs_style_9.on {
  border: 1.5px solid #B81F26;
}

.dark-section {
  background-color: #000000;
  position: relative;
  display: block;
  padding: 20px;
}

.dark-section > header,
.dark-section > header h2 {
  color: #ffffff;
}

.fsStyleUpdateButton {
  display: inline-block;
  border: 1.5px solid #D9E4E0;
  margin: 0 0 20px;
  padding: 25px;
  background: transparent;
  color: #000000;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 23px;
  font-weight: bold;
  letter-spacing: 2px;
  width: 270px;
}

.fsStyleUpdateButton:hover,
.fsStyleUpdateButton:focus,
.fsStateSelected .fsStyleUpdateButton,
.fsStyleUpdateButton.on {
  background: #416BA9;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1.5px solid #416BA9;
}

.fsStyleUpdateButton em {
  display: block;
  font-style: normal;
  text-transform: none;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 1px;
}

@font-face {
  font-family: 'bpa-font-icons';
  src: url(fonts/bpa-icon-library.eot);
  src: url(fonts/bpa-icon-library.eot) format("embedded-opentype"), url(fonts/bpa-icon-library.woff2) format("woff2"), url(fonts/bpa-icon-library.woff) format("woff"), url(fonts/bpa-icon-library.ttf) format("truetype"), url(fonts/bpa-icon-library.svg) format("svg");
  font-weight: 400;
  font-style: normal;
}

.bpa-campus-map-2 .fsDialogBackdrop,
.bpa-campus-map-2 ._dialog_overlay,
.bpa-campus-map-2 dialog.fsResourceElement {
  display: none !important;
  width: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}

.bpa-campus-map-2 .fsPageTitle {
  text-align: center;
}

.map-intro {
  text-align: center;
}

.map-container-2 {
  position: relative;
  margin: 50px 0;
}

.fsPageLayout.fsOneColumnLayout .map-container-2 > header {
  width: 100vw;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

body.fsComposeMode .fsPageLayout.fsOneColumnLayout .map-container-2 > header {
  width: auto;
  margin-left: 0;
  -webkit-transform: unset;
      -ms-transform: unset;
          transform: unset;
}

.map-container-2:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  -webkit-transition: .5s ease-in-out .3s;
  transition: .5s ease-in-out .3s;
  display: none;
}

@media (min-width: 700px) {
  .map-container-2:before {
    display: block;
  }
}

.map-container-2 > header {
  position: relative;
}

body:not(.fsComposeMode) .map-container-2 > header .fsElementTitle {
  display: none;
}

.map-container-2 > header .fsElementHeaderContent {
  margin-bottom: 0;
}

.map-container-2 > header .fsElementHeaderContent picture,
.map-container-2 > header .fsElementHeaderContent img {
  display: block;
  width: 100%;
}

.point-plotter .map-container-2 {
  z-index: 10;
}

.point-plotter .map-container-2 > header {
  opacity: .5;
}

body:not(.fsComposeMode) .map-points-2 {
  display: none;
}

body.fsComposeMode .map-points-2 .fsResource {
  background-color: #fff;
  position: relative;
  z-index: 5;
  width: 250px;
  background-color: #fff;
  -webkit-box-shadow: 7px 10px 10px rgba(0, 0, 0, 0.35);
          box-shadow: 7px 10px 10px rgba(0, 0, 0, 0.35);
  margin-left: 15px;
  border-radius: 4px;
  padding: 20px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

body.fsComposeMode .map-points-2 .fsResource > .fsTitle {
  margin-bottom: 10px;
}

body.fsComposeMode .map-points-2 .fsResource > figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

body.fsComposeMode .map-points-2 .fsResource > figure picture {
  display: block;
  border-radius: 4px;
  overflow: hidden;
}

body.fsComposeMode .map-points-2 .fsResource > figure picture img {
  display: block;
  width: 100%;
}

body.fsComposeMode .map-points-2 .fsResource figcaption {
  margin-bottom: 20px;
}

body.fsComposeMode .map-points-2 .fsResource.mobile {
  display: none;
}

body:not(.fsComposeMode) .points-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  margin-bottom: 0;
}

.point-plotter .points-wrapper {
  z-index: -1;
}

body:not(.fsComposeMode) .points-wrapper > header,
body:not(.fsComposeMode) .points-wrapper > footer {
  display: none;
}

.points-wrapper .fsResource {
  border: none;
  padding: 0;
  position: absolute;
  margin: 0;
  display: block;
  counter-increment: li;
  z-index: 2;
  -webkit-transform: translate3d(-15px, -46px, 0);
          transform: translate3d(-15px, -46px, 0);
  opacity: 0;
  visibility: hidden;
  width: 30px;
  height: 46px;
  text-align: center;
}

@media (min-width: 700px) {
  .points-wrapper .fsResource {
    opacity: 1;
    visibility: visible;
  }
}

body.fsComposeMode .points-wrapper .fsResource {
  position: relative;
}

.points-wrapper .fsResource:hover,
.points-wrapper .fsResource:focus {
  z-index: 5;
}

.points-wrapper .fsResource.active-point {
  z-index: 50;
  opacity: 1;
  visibility: visible;
}

.map-point {
  width: 100%;
  height: 46px;
  text-align: center;
  white-space: nowrap;
  display: block;
  cursor: pointer;
}

body.fsComposeMode .map-point {
  color: #000000;
}

.map-point:before {
  content: "\E900";
  font-family: "bpa-font-icons";
  font-weight: normal;
  speak: none;
  display: block;
  font-size: 46px;
  line-height: 1;
  color: #fff;
  text-shadow: 0 20px 10px rgba(0, 0, 0, 0.35);
  opacity: 1;
  background: none;
  margin: 0;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  top: 0;
}

.map-point:after {
  content: counter(li);
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  text-align: center;
  color: #000000;
  font-family: "Helvetica Neue LT W05_55 Roman", serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  top: 12px;
}

.map-point > span {
  display: none;
}

.map-point:hover,
.map-point:focus {
  color: inherit;
}

.point-content-container {
  display: none;
  text-align: left;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: calc(100% + 10px);
  width: 250px;
  background-color: #fff;
  -webkit-box-shadow: 7px 10px 10px rgba(0, 0, 0, 0.35);
          box-shadow: 7px 10px 10px rgba(0, 0, 0, 0.35);
  margin-left: 15px;
  padding: 10px 5px 20px 0;
  border-radius: 4px;
}

.point-content-container:before {
  content: '';
  position: absolute;
  left: -15px;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 2px;
  top: calc(50% - 20px);
  -webkit-transform: translate3d(0, -50%, 0) rotate(45deg);
          transform: translate3d(0, -50%, 0) rotate(45deg);
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-box-shadow: 7px 10px 10px rgba(0, 0, 0, 0.35);
          box-shadow: 7px 10px 10px rgba(0, 0, 0, 0.35);
}

@media (min-width: 700px) {
  .active-point .point-content-container {
    display: block;
  }
}

.right-side .point-content-container {
  left: auto;
  right: calc(100% + 10px);
  margin-left: 0;
  margin-right: 15px;
}

.right-side .point-content-container:before {
  left: calc(100% - 25px);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.up-top .point-content-container {
  top: -10px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.up-top .point-content-container:before {
  top: 0;
  -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
          transform: translate3d(0, 0, 0) rotate(45deg);
}

.down-low .point-content-container {
  top: auto;
  bottom: -10px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.down-low .point-content-container:before {
  top: auto;
  bottom: 35px;
  -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
          transform: translate3d(0, 0, 0) rotate(45deg);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.point-content {
  background-color: #fff;
  position: relative;
  z-index: 5;
  padding-top: 30px;
}

@media (min-width: 700px) {
  .point-content {
    padding: 10px 15px 5px 20px;
    max-height: 460px;
    overflow-y: auto;
  }
}

.point-content > .fsTitle {
  margin-bottom: 10px;
}

.point-content > figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.point-content > figure picture {
  display: block;
  border-radius: 4px;
  overflow: hidden;
}

.point-content > figure picture img {
  display: block;
  width: 100%;
}

.point-content figcaption {
  margin-bottom: 20px;
}

@media (min-width: 700px) {
  .point-content.mobile {
    display: none;
  }
}

.map-legend-container > header {
  text-align: center;
}

.map-legend-container > header .fsElementTitle {
  color: #000000;
  font-family: "Helvetica Neue LT W05_55 Roman", serif;
  font-size: 28px;
  line-height: 32px;
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 50px;
}

@media (min-width: 600px) {
  .map-legend-container > .fsElementContent {
    margin: 0 -10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.map-legend-2 {
  position: relative;
  color: #ff6060;
  margin-top: 30px;
}

@media (min-width: 600px) {
  .map-legend-2 {
    margin: 0 10px;
    width: calc(50% - 20px);
  }

  .map-legend-2:nth-child(n+3) {
    margin-top: 50px;
  }
}

@media (min-width: 800px) {
  .map-legend-2 {
    width: calc(33.333% - 20px);
  }

  .map-legend-2:nth-child(n+3) {
    margin-top: 0;
  }

  .map-legend-2:nth-child(n+4) {
    margin-top: 50px;
  }
}

@media (min-width: 1100px) {
  .map-legend-2 {
    width: calc(25% - 20px);
  }

  .map-legend-2:nth-child(n+4) {
    margin-top: 0;
  }

  .map-legend-2:nth-child(n+5) {
    margin-top: 50px;
  }
}

.map-legend-2 .fsResourceCollectionName {
  position: relative;
  font-family: "Helvetica Neue LT W05_55 Roman", serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.map-legend-2 .fsResourceCollectionName:after {
  content: '';
  width: 80px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-box-shadow: 0 1px 0 0 #ccc;
          box-shadow: 0 1px 0 0 #ccc;
}

.map-legend-2 .fsStyleDefaultList {
  padding: 0;
  margin: 0;
}

.map-legend-2 .fsStyleDefaultList > li.fsListItem {
  border: none;
  position: relative;
  padding: 0;
  margin: 0 0 15px;
  display: block;
  cursor: pointer;
}

.map-legend-2 .fsStyleDefaultList > li.fsListItem > .fsTitle {
  color: #000000;
  font-family: "Helvetica Neue LT W05_55 Roman", serif;
  font-size: 15px;
  line-height: 23px;
  font-weight: normal;
  display: inline-block;
  word-wrap: normal;
  word-break: normal;
}

.map-legend-2 .fsStyleDefaultList > li.fsListItem > .fsTitle:before {
  display: none;
}

.map-legend-2 .fsStyleDefaultList > li.fsListItem > .fsTitle:hover,
.map-legend-2 .fsStyleDefaultList > li.fsListItem > .fsTitle:focus {
  color: #bbb;
}

.map-legend-2 .fsStyleDefaultList > li.fsListItem > .fsTitle a {
  pointer-events: none;
  color: inherit;
  display: inline;
}

.map-legend-2 .fsStyleDefaultList > li.fsListItem > .fsTitle a:hover,
.map-legend-2 .fsStyleDefaultList > li.fsListItem > .fsTitle a:focus {
  color: #bbb;
}

body:not(.fsComposeMode) .map-legend-2 > footer {
  display: none;
}

.legend-item-number {
  display: inline;
  font-size: inherit;
  line-height: inherit;
  font-weight: 600;
}

.legend-item-number:after {
  content: ' - ';
  display: inline-block;
  margin: 0 3px;
  color: #000000;
  font-weight: normal;
}

.color-1 .map-point:after,
.color-1 .legend-item-number,
.color-1 .fsResourceCollectionName,
.color-1 .fsElementEmpty {
  color: #ff6060;
}

.color-2 .map-point:after,
.color-2 .legend-item-number,
.color-2 .fsResourceCollectionName,
.color-2 .fsElementEmpty {
  color: #00bccd;
}

.color-3 .map-point:after,
.color-3 .legend-item-number,
.color-3 .fsResourceCollectionName,
.color-3 .fsElementEmpty {
  color: #f99d3c;
}

.color-4 .map-point:after,
.color-4 .legend-item-number,
.color-4 .fsResourceCollectionName,
.color-4 .fsElementEmpty {
  color: #813f95;
}

.color-5 .map-point:after,
.color-5 .legend-item-number,
.color-5 .fsResourceCollectionName,
.color-5 .fsElementEmpty {
  color: #0072bc;
}

.color-6 .map-point:after,
.color-6 .legend-item-number,
.color-6 .fsResourceCollectionName,
.color-6 .fsElementEmpty {
  color: #acc02a;
}

.color-7 .map-point:after,
.color-7 .legend-item-number,
.color-7 .fsResourceCollectionName,
.color-7 .fsElementEmpty {
  color: #7da7d9;
}

.color-8 .map-point:after,
.color-8 .legend-item-number,
.color-8 .fsResourceCollectionName,
.color-8 .fsElementEmpty {
  color: #39b54a;
}

.coordinates-popup {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 50;
  background-color: #fff;
  color: #000000;
  padding: 10px;
}