/*!
 * Sacred Hearts Academy - default_20
 * @link: https://sacredheartsorg.finalsite.com
 * Site Template: newclientcustom
 * Built By: Gabi Popescu
 * Project Manager: Lisa Willsey
 * Designer: Akua Duah
 * ==== Git Info ====
 * Branch Name: master
 * Build Version: 5.3.2
 * Git Tag: v5.2.2-32-gba8d101
 * Last built by: gabi_popescu
 */
@charset "UTF-8";

/*! helpers - functions v0.0.1 */

/*! helpers - utility v0.0.1 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*! helpers - presentational v0.0.1 */

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

/*
Example sites:
http://coderepo.demo.finalsite.com/stuff-by-al/dropdown-mixin
http://codepen.io/foxareld/pen/BNpWJm

Ex 1:
    <div class='parent'>
      <span class='sibling'>Dropdown</span>
      <ul class='dropdown'>
        <li>Link</li>
        <li>Link</li>
        <li>Link</li>
      </ul>
    </div>

Use:
    .parent {
        @include drop(".dropdown"); //this makes .dropdown drop on hover of .parent
    }

    //this makes .dropdown drop when .parent has class .drop-class, it was also have a transition
    .parent {
        @include drop(".dropdown", true, ".drop-class");
    }

    //this makes .dropdown drop when .sibling has class .drop-class, it will not have a transition
    .sibling {
        @include drop("+ .dropdown", false, ".drop-class");
    }

*/

/*! helpers - typography v0.0.1 */

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

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

h1 {
  margin-top: 0;
  font-weight: normal;
  font-size: 36px;
  line-height: 56px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h2 {
  margin-top: 0;
  font-weight: normal;
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h3 {
  margin-top: 0;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h4 {
  margin-top: 0;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h5 {
  margin-top: 0;
  font-weight: normal;
  font-size: 17px;
  line-height: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h6 {
  margin-top: 0;
  font-weight: normal;
  font-size: 13px;
  line-height: 15px;
  margin-bottom: 10px;
  color: #696969;
  text-transform: uppercase;
  font-weight: bold;
}

p {
  margin: 0 0 20px;
}

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

hr {
  margin: 0 auto 20px;
}

a {
  text-decoration: none;
  color: #131313;
  -webkit-transition: background .3s, color .3s;
  transition: background .3s, color .3s;
}

a:hover,
a:focus {
  color: #131313;
}

.fsNavigation a {
  text-decoration: none;
}

a {
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: none;
}

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

.fsAthleticsEvent.fsTable .fsElementTable,
.fsAthleticsRoster .fsElementTable,
table.fs_style_4 {
  margin-bottom: 20px;
  width: 100%;
}

.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: 10px 20px;
  background: #001448;
  color: #ffffff;
  text-align: left;
  border: 1px solid #001448;
}

.fsAthleticsEvent.fsTable .fsElementTable td,
.fsAthleticsRoster .fsElementTable td,
table.fs_style_4 td {
  padding: 10px 20px;
  background: #ffffff;
  border-bottom: 1px solid #DCE0E9;
}

.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: #ffffff;
}

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

.fsAthleticsEvent.fsTable .fsElementTable tr td:first-child,
.fsAthleticsRoster .fsElementTable tr td:first-child,
table.fs_style_4 tr td:first-child {
  border-left: 1px solid #DCE0E9;
}

.fsAthleticsEvent.fsTable .fsElementTable tr td:last-child,
.fsAthleticsRoster .fsElementTable tr td:last-child,
table.fs_style_4 tr td:last-child {
  border-right: 1px solid #DCE0E9;
}

.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: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_5,
.fsBannerRight .fs_style_5,
.fsStyleOneThird .fs_style_5,
.fsThreeColumnLayout > .fsDiv .fs_style_5,
.fsFourColumnLayout > .fsDiv .fs_style_5 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_5:hover,
.fs_style_5:focus,
.fsStateSelected .fs_style_5,
.fs_style_5.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fs_style_5 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_6 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #1C3F94;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #1C3F94;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_6,
.fsBannerRight .fs_style_6,
.fsStyleOneThird .fs_style_6,
.fsThreeColumnLayout > .fsDiv .fs_style_6,
.fsFourColumnLayout > .fsDiv .fs_style_6 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_6:hover,
.fs_style_6:focus,
.fsStateSelected .fs_style_6,
.fs_style_6.on {
  background: #ffffff;
  color: #1C3F94;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #1C3F94;
}

.fs_style_6 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_7 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #131313;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_7,
.fsBannerRight .fs_style_7,
.fsStyleOneThird .fs_style_7,
.fsThreeColumnLayout > .fsDiv .fs_style_7,
.fsFourColumnLayout > .fsDiv .fs_style_7 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_7:hover,
.fs_style_7:focus,
.fsStateSelected .fs_style_7,
.fs_style_7.on {
  background: #ffffff;
  color: #131313;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fs_style_7 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_8 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #FFB81C;
  color: #121212;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #FFB81C;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_8,
.fsBannerRight .fs_style_8,
.fsStyleOneThird .fs_style_8,
.fsThreeColumnLayout > .fsDiv .fs_style_8,
.fsFourColumnLayout > .fsDiv .fs_style_8 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_8:hover,
.fs_style_8:focus,
.fsStateSelected .fs_style_8,
.fs_style_8.on {
  background: #ffffff;
  color: #121212;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #FFB81C;
}

.fs_style_8 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_XY {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #FFB81C;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_XY,
.fsBannerRight .fs_style_XY,
.fsStyleOneThird .fs_style_XY,
.fsThreeColumnLayout > .fsDiv .fs_style_XY,
.fsFourColumnLayout > .fsDiv .fs_style_XY {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_XY:hover,
.fs_style_XY:focus,
.fsStateSelected .fs_style_XY,
.fs_style_XY.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fs_style_XY em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_9 {
  padding: 30px 80px;
  font-size: 17px;
  font-weight: bold;
  line-height: 21px;
  text-align: center;
}

.fs_style_9 em {
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_10 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: transparent;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #ffffff;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_10,
.fsBannerRight .fs_style_10,
.fsStyleOneThird .fs_style_10,
.fsThreeColumnLayout > .fsDiv .fs_style_10,
.fsFourColumnLayout > .fsDiv .fs_style_10 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_10:hover,
.fs_style_10:focus,
.fsStateSelected .fs_style_10,
.fs_style_10.on {
  background: #ffffff;
  color: #121212;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #ffffff;
}

.fs_style_10 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_11 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #F7F8FB;
  color: #252B33;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #DCE0E9;
  border-radius: 2px;
  width: 100%;
  text-align: left;
  padding-left: 25px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: bold;
  line-height: 23px;
}

.fsBannerLeft .fs_style_11,
.fsBannerRight .fs_style_11,
.fsStyleOneThird .fs_style_11,
.fsThreeColumnLayout > .fsDiv .fs_style_11,
.fsFourColumnLayout > .fsDiv .fs_style_11 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_11:hover,
.fs_style_11:focus,
.fsStateSelected .fs_style_11,
.fs_style_11.on {
  background: #ffffff;
  color: #252B33;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #DCE0E9;
}

.fs_style_11 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_11:before {
  content: '\E912';
  font-family: "IcoMoon";
  font-weight: normal;
  margin-right: 15px;
}

.fs_style_12 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #F7F8FB;
  color: #252B33;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #DCE0E9;
  border-radius: 2px;
  width: 100%;
  text-align: left;
  padding-left: 25px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: bold;
  line-height: 23px;
}

.fsBannerLeft .fs_style_12,
.fsBannerRight .fs_style_12,
.fsStyleOneThird .fs_style_12,
.fsThreeColumnLayout > .fsDiv .fs_style_12,
.fsFourColumnLayout > .fsDiv .fs_style_12 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_12:hover,
.fs_style_12:focus,
.fsStateSelected .fs_style_12,
.fs_style_12.on {
  background: #ffffff;
  color: #252B33;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #DCE0E9;
}

.fs_style_12 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_12:before {
  content: '\E903';
  font-family: "IcoMoon";
  font-weight: normal;
  margin-right: 15px;
}

.fsStyleDefaultButton {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fsStyleDefaultButton,
.fsBannerRight .fsStyleDefaultButton,
.fsStyleOneThird .fsStyleDefaultButton,
.fsThreeColumnLayout > .fsDiv .fsStyleDefaultButton,
.fsFourColumnLayout > .fsDiv .fsStyleDefaultButton {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fsStyleDefaultButton:hover,
.fsStyleDefaultButton:focus,
.fsStateSelected .fsStyleDefaultButton,
.fsStyleDefaultButton.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fsStyleDefaultButton em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fsStyleDefaultButton.fsLoadMoreButton {
  margin-bottom: 0;
}

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

.fsStyleUpdateButton {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fsStyleUpdateButton,
.fsBannerRight .fsStyleUpdateButton,
.fsStyleOneThird .fsStyleUpdateButton,
.fsThreeColumnLayout > .fsDiv .fsStyleUpdateButton,
.fsFourColumnLayout > .fsDiv .fsStyleUpdateButton {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fsStyleUpdateButton:hover,
.fsStyleUpdateButton:focus,
.fsStateSelected .fsStyleUpdateButton,
.fsStyleUpdateButton.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fsStyleUpdateButton em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

/*! _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: #131313;
  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 #e5e5e5;
}

.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: #696969;
  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(105, 105, 105, 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: #696969;
}

.fsSlideshow .fsPager li button:before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(105, 105, 105, 0.25);
  -webkit-transition: .3s;
  transition: .3s;
  opacity: 1;
}

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

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

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

/*! 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: #696969;
}

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

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

.fsElementDialog {
  color: #696969;
}

.lead-in,
.fs_style_1 {
  font-size: 1.25em;
  line-height: 1.2em;
  color: #252B33;
  font-size: 24px;
  font-weight: 200;
  line-height: 35px;
}

blockquote {
  position: relative;
  margin: 20px 0;
  font-size: 1em;
  line-height: 1.2em;
  font-size: 22px;
  font-weight: 200;
  line-height: 33px;
  padding: 20px;
  padding-right: 0;
  padding-bottom: 40px;
  color: #080909;
  margin-bottom: 40px;
}

blockquote p {
  font-size: 22px;
  font-weight: 200;
  line-height: 33px;
  z-index: 1;
  display: block;
  position: relative;
  color: #080909;
}

blockquote:before {
  position: absolute;
  left: 0;
  top: 20px;
  font-size: 60px;
  content: '\E900';
  font-family: "IcoMoon";
  color: #DCE0E9;
  z-index: 0;
  opacity: 0.5;
  display: block;
}

cite,
.fs_style_3 {
  display: block;
  margin: 0 0 20px;
  font-style: normal;
  text-align: right;
  color: #696969;
  font-size: 14px;
  font-weight: bold;
  line-height: 19px;
  text-align: right;
  z-index: 1;
  color: #696969;
  font-size: 14px;
  font-weight: bold;
  line-height: 19px;
}

.fsBanner blockquote {
  padding-left: 0;
  padding-right: 0;
  padding-top: 7px;
  text-align: center;
  font-size: 18px;
  font-weight: 200;
  line-height: 26px;
}

.fsBanner blockquote p {
  font-size: 18px;
  font-weight: 200;
  line-height: 26px;
}

.fsBanner blockquote:before {
  font-size: 30px;
  top: 0;
}

.fsBanner cite,
.fsBanner .fs_style_3 {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  font-size: 14px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.callout,
.fs_style_2 {
  color: #fff;
  position: relative;
  display: table;
  padding-left: 20px;
  border-left: 1px solid #DCE0E9;
  color: #696969;
  font-size: 24px;
  font-weight: 200;
  line-height: 35px;
}

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

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

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

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

.fs_style_13 {
  color: #fff;
  position: relative;
  display: table;
  padding-left: 20px;
  border-left: 1px solid #DCE0E9;
  color: #696969;
  font-size: 24px;
  font-weight: 200;
  line-height: 35px;
  float: left;
}

@media (min-width: 500px) {
  .fs_style_13 {
    width: 50%;
  }
}

.fs_style_14 {
  color: #fff;
  position: relative;
  display: table;
  padding-left: 20px;
  border-left: 1px solid #DCE0E9;
  color: #696969;
  font-size: 24px;
  font-weight: 200;
  line-height: 35px;
  float: right;
}

@media (min-width: 500px) {
  .fs_style_14 {
    width: 50%;
  }
}

.custom-callout {
  position: relative;
  padding: 30px;
  background-color: #F7F8FB;
  overflow: hidden;
}

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

.custom-callout > header .fsElementTitle {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 31px;
  font-family: "Muli", sans-serif;
  color: #252B33;
}

.custom-callout > header > .fsElementHeaderContent {
  width: calc(100% + 60px);
  margin-top: -30px;
  margin-left: -30px;
  margin-bottom: 15px;
  height: 400px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.custom-callout > .fsElementContent p {
  margin: 0px;
  margin-bottom: 20px;
}

.custom-callout a[href^="mailto:"] {
  word-break: break-all;
}

.custom-callout.navy {
  background-color: #001448;
}

.custom-callout.navy h2.fsElementTitle {
  color: #ffffff;
}

.custom-callout.navy > .fsElementContent p {
  color: #ffffff;
}

.custom-callout.navy > .fsElementContent a {
  color: #92DBF3;
}

.custom-callout.navy > .fsElementContent a:hover,
.custom-callout.navy > .fsElementContent a:focus {
  color: #92DBF3;
}

.custom-callout.left {
  position: relative;
  padding: 30px;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: calc(50% + 30px);
  min-height: 300px;
}

@media (max-width: 1199px) {
  .custom-callout.left {
    padding: 30px !important;
  }
}

.custom-callout.left .fsElementHeaderContent {
  position: absolute;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 0;
}

@media (max-width: 1199px) {
  .custom-callout.left .fsElementHeaderContent {
    width: calc(100% + 60px);
    margin-top: -30px;
    margin-left: -30px;
    margin-bottom: 25px;
    height: 300px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.custom-callout > header > .fsElementHeaderContent img {
  display: none;
}

.custom-callout.right {
  position: relative;
  padding: 30px;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-right: calc(50% + 30px);
  min-height: 300px;
}

@media (max-width: 1199px) {
  .custom-callout.right {
    padding: 30px !important;
  }
}

.custom-callout.right .fsElementHeaderContent {
  position: absolute;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  right: 0;
  left: inherit;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 0;
}

@media (max-width: 1199px) {
  .custom-callout.right .fsElementHeaderContent {
    width: calc(100% + 60px);
    margin-top: -30px;
    margin-left: -30px;
    margin-bottom: 25px;
    height: 300px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.custom-callout.right > header > .fsElementTitle {
  font-size: 20px;
}

.fsBanner .custom-callout > header > .fsElementHeaderContent {
  height: 200px;
}

.fsBanner .custom-callout {
  padding-left: 20px;
  padding-right: 20px;
}

/*! helpers - functions v0.0.1 */

/*! helpers - utility v0.0.1 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*! helpers - presentational v0.0.1 */

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

/*
Example sites:
http://coderepo.demo.finalsite.com/stuff-by-al/dropdown-mixin
http://codepen.io/foxareld/pen/BNpWJm

Ex 1:
    <div class='parent'>
      <span class='sibling'>Dropdown</span>
      <ul class='dropdown'>
        <li>Link</li>
        <li>Link</li>
        <li>Link</li>
      </ul>
    </div>

Use:
    .parent {
        @include drop(".dropdown"); //this makes .dropdown drop on hover of .parent
    }

    //this makes .dropdown drop when .parent has class .drop-class, it was also have a transition
    .parent {
        @include drop(".dropdown", true, ".drop-class");
    }

    //this makes .dropdown drop when .sibling has class .drop-class, it will not have a transition
    .sibling {
        @include drop("+ .dropdown", false, ".drop-class");
    }

*/

/*! helpers - typography v0.0.1 */

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

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

h1 {
  margin-top: 0;
  font-weight: normal;
  font-size: 36px;
  line-height: 56px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h2 {
  margin-top: 0;
  font-weight: normal;
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h3 {
  margin-top: 0;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h4 {
  margin-top: 0;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h5 {
  margin-top: 0;
  font-weight: normal;
  font-size: 17px;
  line-height: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h6 {
  margin-top: 0;
  font-weight: normal;
  font-size: 13px;
  line-height: 15px;
  margin-bottom: 10px;
  color: #696969;
  text-transform: uppercase;
  font-weight: bold;
}

p {
  margin: 0 0 20px;
}

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

hr {
  margin: 0 auto 20px;
}

a {
  text-decoration: none;
  color: #131313;
  -webkit-transition: background .3s, color .3s;
  transition: background .3s, color .3s;
}

a:hover,
a:focus {
  color: #131313;
}

.fsNavigation a {
  text-decoration: none;
}

a {
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: none;
}

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

.fsAthleticsEvent.fsTable .fsElementTable,
.fsAthleticsRoster .fsElementTable,
table.fs_style_4 {
  margin-bottom: 20px;
  width: 100%;
}

.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: 10px 20px;
  background: #001448;
  color: #ffffff;
  text-align: left;
  border: 1px solid #001448;
}

.fsAthleticsEvent.fsTable .fsElementTable td,
.fsAthleticsRoster .fsElementTable td,
table.fs_style_4 td {
  padding: 10px 20px;
  background: #ffffff;
  border-bottom: 1px solid #DCE0E9;
}

.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: #ffffff;
}

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

.fsAthleticsEvent.fsTable .fsElementTable tr td:first-child,
.fsAthleticsRoster .fsElementTable tr td:first-child,
table.fs_style_4 tr td:first-child {
  border-left: 1px solid #DCE0E9;
}

.fsAthleticsEvent.fsTable .fsElementTable tr td:last-child,
.fsAthleticsRoster .fsElementTable tr td:last-child,
table.fs_style_4 tr td:last-child {
  border-right: 1px solid #DCE0E9;
}

.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: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_5,
.fsBannerRight .fs_style_5,
.fsStyleOneThird .fs_style_5,
.fsThreeColumnLayout > .fsDiv .fs_style_5,
.fsFourColumnLayout > .fsDiv .fs_style_5 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_5:hover,
.fs_style_5:focus,
.fsStateSelected .fs_style_5,
.fs_style_5.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fs_style_5 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_6 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #1C3F94;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #1C3F94;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_6,
.fsBannerRight .fs_style_6,
.fsStyleOneThird .fs_style_6,
.fsThreeColumnLayout > .fsDiv .fs_style_6,
.fsFourColumnLayout > .fsDiv .fs_style_6 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_6:hover,
.fs_style_6:focus,
.fsStateSelected .fs_style_6,
.fs_style_6.on {
  background: #ffffff;
  color: #1C3F94;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #1C3F94;
}

.fs_style_6 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_7 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #131313;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_7,
.fsBannerRight .fs_style_7,
.fsStyleOneThird .fs_style_7,
.fsThreeColumnLayout > .fsDiv .fs_style_7,
.fsFourColumnLayout > .fsDiv .fs_style_7 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_7:hover,
.fs_style_7:focus,
.fsStateSelected .fs_style_7,
.fs_style_7.on {
  background: #ffffff;
  color: #131313;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fs_style_7 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_8 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #FFB81C;
  color: #121212;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #FFB81C;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_8,
.fsBannerRight .fs_style_8,
.fsStyleOneThird .fs_style_8,
.fsThreeColumnLayout > .fsDiv .fs_style_8,
.fsFourColumnLayout > .fsDiv .fs_style_8 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_8:hover,
.fs_style_8:focus,
.fsStateSelected .fs_style_8,
.fs_style_8.on {
  background: #ffffff;
  color: #121212;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #FFB81C;
}

.fs_style_8 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_XY {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #FFB81C;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_XY,
.fsBannerRight .fs_style_XY,
.fsStyleOneThird .fs_style_XY,
.fsThreeColumnLayout > .fsDiv .fs_style_XY,
.fsFourColumnLayout > .fsDiv .fs_style_XY {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_XY:hover,
.fs_style_XY:focus,
.fsStateSelected .fs_style_XY,
.fs_style_XY.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fs_style_XY em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_9 {
  padding: 30px 80px;
  font-size: 17px;
  font-weight: bold;
  line-height: 21px;
  text-align: center;
}

.fs_style_9 em {
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_10 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: transparent;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #ffffff;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_10,
.fsBannerRight .fs_style_10,
.fsStyleOneThird .fs_style_10,
.fsThreeColumnLayout > .fsDiv .fs_style_10,
.fsFourColumnLayout > .fsDiv .fs_style_10 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_10:hover,
.fs_style_10:focus,
.fsStateSelected .fs_style_10,
.fs_style_10.on {
  background: #ffffff;
  color: #121212;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #ffffff;
}

.fs_style_10 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_11 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #F7F8FB;
  color: #252B33;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #DCE0E9;
  border-radius: 2px;
  width: 100%;
  text-align: left;
  padding-left: 25px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: bold;
  line-height: 23px;
}

.fsBannerLeft .fs_style_11,
.fsBannerRight .fs_style_11,
.fsStyleOneThird .fs_style_11,
.fsThreeColumnLayout > .fsDiv .fs_style_11,
.fsFourColumnLayout > .fsDiv .fs_style_11 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_11:hover,
.fs_style_11:focus,
.fsStateSelected .fs_style_11,
.fs_style_11.on {
  background: #ffffff;
  color: #252B33;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #DCE0E9;
}

.fs_style_11 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_11:before {
  content: '\E912';
  font-family: "IcoMoon";
  font-weight: normal;
  margin-right: 15px;
}

.fs_style_12 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #F7F8FB;
  color: #252B33;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #DCE0E9;
  border-radius: 2px;
  width: 100%;
  text-align: left;
  padding-left: 25px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: bold;
  line-height: 23px;
}

.fsBannerLeft .fs_style_12,
.fsBannerRight .fs_style_12,
.fsStyleOneThird .fs_style_12,
.fsThreeColumnLayout > .fsDiv .fs_style_12,
.fsFourColumnLayout > .fsDiv .fs_style_12 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_12:hover,
.fs_style_12:focus,
.fsStateSelected .fs_style_12,
.fs_style_12.on {
  background: #ffffff;
  color: #252B33;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #DCE0E9;
}

.fs_style_12 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_12:before {
  content: '\E903';
  font-family: "IcoMoon";
  font-weight: normal;
  margin-right: 15px;
}

.fsStyleDefaultButton {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fsStyleDefaultButton,
.fsBannerRight .fsStyleDefaultButton,
.fsStyleOneThird .fsStyleDefaultButton,
.fsThreeColumnLayout > .fsDiv .fsStyleDefaultButton,
.fsFourColumnLayout > .fsDiv .fsStyleDefaultButton {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fsStyleDefaultButton:hover,
.fsStyleDefaultButton:focus,
.fsStateSelected .fsStyleDefaultButton,
.fsStyleDefaultButton.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fsStyleDefaultButton em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fsStyleDefaultButton.fsLoadMoreButton {
  margin-bottom: 0;
}

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

.fsStyleUpdateButton {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fsStyleUpdateButton,
.fsBannerRight .fsStyleUpdateButton,
.fsStyleOneThird .fsStyleUpdateButton,
.fsThreeColumnLayout > .fsDiv .fsStyleUpdateButton,
.fsFourColumnLayout > .fsDiv .fsStyleUpdateButton {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fsStyleUpdateButton:hover,
.fsStyleUpdateButton:focus,
.fsStateSelected .fsStyleUpdateButton,
.fsStyleUpdateButton.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fsStyleUpdateButton em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

body:not(.fsComposeMode):not(.fsHasLeftBanner):not(.fsHasRightBanner) .bpa-testimonials-1 {
  width: 100vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  position: relative;
}

body:not(.fsComposeMode) .bpa-testimonials-1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #F7F7F7;
}

body:not(.fsComposeMode) .bpa-testimonials-1 > .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) .bpa-testimonials-1 > .fsElementContent .testimonial-block {
  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;
  margin-right: 10px;
  margin-left: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 270px;
          flex: 0 0 270px;
}

body:not(.fsComposeMode) .bpa-testimonials-1 > header .fsElementTitle {
  font-family: "Muli", sans-serif;
  font-size: 35px;
  font-weight: 800;
  line-height: 46px;
  margin-bottom: 50px;
  text-align: center;
  color: #001448;
}

body:not(.fsComposeMode) .bpa-testimonials-1 > .fsElementContent {
  position: relative;
  margin: 0 auto;
  max-width: 1180px;
}

body:not(.fsComposeMode) .bpa-testimonials-1.dark {
  background-color: #001448;
}

body:not(.fsComposeMode) .bpa-testimonials-1.dark > header .fsElementTitle {
  color: #fff;
}

body:not(.fsComposeMode) .bpa-testimonials-1.dark .testimonial-block {
  background-color: #fff;
  color: #4C4C4C;
}

body:not(.fsComposeMode) .bpa-testimonials-1.dark .testimonial-block footer strong {
  color: #001448;
}

body:not(.fsComposeMode) .testimonial-block {
  position: relative;
  display: inline-block;
  padding: 70px 25px 20px;
  margin-top: 70px;
  background-color: #001448;
  color: #fff;
  text-align: center;
}

body:not(.fsComposeMode) .testimonial-block blockquote {
  margin: 0;
  color: #fff;
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 16px;
  font-family: "Muli", sans-serif;
  font-weight: normal;
  line-height: 24px;
}

body:not(.fsComposeMode) .testimonial-block blockquote p {
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  font-family: "Muli", sans-serif;
  font-weight: normal;
}

body:not(.fsComposeMode) .testimonial-block header {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

body:not(.fsComposeMode) .testimonial-block header .fsElementHeaderContent,
body:not(.fsComposeMode) .testimonial-block header p {
  margin-bottom: 0;
}

body:not(.fsComposeMode) .testimonial-block header img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
}

body:not(.fsComposeMode) .testimonial-block footer {
  font-size: 0.929em;
}

body:not(.fsComposeMode) .testimonial-block footer strong {
  text-transform: uppercase;
}

body:not(.fsComposeMode) .testimonial-block footer a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  font-size: 0;
}

body:not(.fsComposeMode) .testimonial-block:last-child {
  margin-bottom: 40px;
}

/*! _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: #131313;
  background: transparent;
}

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

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

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

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

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

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

.fsBreadcrumb {
  position: relative;
  margin: 0 auto;
  max-width: 1180px;
  padding-top: 40px;
}

.fsBreadcrumb ul li {
  display: inline-block;
}

.fsBreadcrumb ul li a {
  display: inline-block;
  padding: 0;
}

.fsBreadcrumb > header {
  display: none;
}

@media (max-width: 1180px) {
  .fsBreadcrumb {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.fsBreadcrumb li {
  color: #252B33;
  font-size: 12px;
  font-weight: bold;
  line-height: 15px;
}

.fsBreadcrumb a {
  color: #696969;
  font-size: 12px;
  font-weight: bold;
  line-height: 15px;
}

.fsBreadcrumb a:hover,
.fsBreadcrumb a:focus {
  color: #696969;
  text-decoration: underline;
}

.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-sub-mobile {
  margin-right: -20px;
  margin-left: -20px;
}

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

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

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

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

.nav-tier ul li.fsNavCurrentPage > a:hover,
.nav-tier ul li.fsNavCurrentPage > a:focus {
  color: #FFB81C;
  background: #e5e5e5;
}

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

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

.nav-tier ul li.fsNavCurrentPageAncestor > a:hover,
.nav-tier ul li.fsNavCurrentPageAncestor > a:focus {
  color: #131313;
  background: #e5e5e5;
}

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

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

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

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

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

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

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

.nav-sub {
  background: #F7F8FB;
  margin-bottom: 60px;
  display: none;
}

@media (max-width: 1023px) {
  .nav-sub {
    margin-bottom: 20px;
  }
}

.nav-sub.mobile {
  display: none;
}

@media (max-width: 1023px) {
  .nav-sub.mobile {
    display: block;
  }
}

@media (max-width: 1023px) {
  .nav-sub {
    margin-bottom: 0;
  }
}

@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-size: 17px;
    line-height: 20px;
    margin-bottom: 10px;
    margin-bottom: 0;
    display: block;
    font-size: 16px;
    padding: 14px 40px 14px;
    color: #001448;
    background-color: #ffffff;
    -webkit-transition: .3s;
    transition: .3s;
    font-size: 18px;
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    padding-right: 40px;
  }
}

@media screen and (max-width: 599px) and (max-width: 767px) {
  .nav-sub > header .fsElementTitle {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 599px) {
  .nav-sub > header .fsElementTitle:hover {
    background-color: #ffffff;
    color: #696969;
  }
}

@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: 0px;
    width: 20px;
    right: 35px;
  }
}

@media screen and (max-width: 599px) and (max-width: 767px) {
  .nav-sub > header .fsElementTitle:after {
    right: 15px;
  }
}

@media screen and (max-width: 599px) {
  .nav-sub > .fsElementContent {
    position: relative;
    display: block;
  }

  .nav-sub > .fsElementContent ul li a {
    display: block;
    padding: 15px 20px;
    color: #696969;
    background: transparent;
  }

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

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

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

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

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

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

  .nav-sub > .fsElementContent .fsNavLevel1 {
    padding: 0 40px;
  }
}

@media screen and (max-width: 599px) and (max-width: 767px) {
  .nav-sub > .fsElementContent .fsNavLevel1 {
    padding: 0 20px;
  }
}

@media screen and (max-width: 599px) {
  .nav-sub > .fsElementContent .fsNavLevel1 > li > a {
    padding-left: 20px;
    padding-left: 0;
  }

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

  .nav-sub > .fsElementContent .fsNavLevel3 > li > a {
    padding-left: 20px;
    padding-left: 40px !important;
  }

  .nav-sub > .fsElementContent .fsNavLevel4 > li > a {
    padding-left: 20px;
    padding-left: 60px !important;
  }

  .nav-sub > .fsElementContent .fsNavLevel5 > li > a {
    padding-left: 20px;
    padding-left: 80px !important;
  }

  .nav-sub.active-nav .fsElementTitle {
    border-left: 0;
    border-right: 0;
  }

  .nav-sub.active-nav .expander {
    right: 0;
  }

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

  .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 {
  border-top: 1px solid #DCE0E9;
}

.nav-sub ul li:first-child {
  border-top: none;
}

.nav-sub ul li a {
  display: block;
  padding: 5px 5px;
  color: #696969;
  background: transparent;
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  font-family: "Muli", sans-serif;
  padding-top: 15px;
  padding-bottom: 15px;
}

.nav-sub ul li a:hover,
.nav-sub ul li a:focus {
  color: #001448;
  background: transparent;
  text-decoration: none;
}

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

.nav-sub ul li.fsNavCurrentPage > a:hover,
.nav-sub ul li.fsNavCurrentPage > a:focus {
  color: #696969;
  background: transparent;
  text-decoration: none;
}

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

.nav-sub ul li.fsNavCurrentPageAncestor > a {
  color: #696969;
  background: transparent;
}

.nav-sub ul li.fsNavCurrentPageAncestor > a:hover,
.nav-sub ul li.fsNavCurrentPageAncestor > a:focus {
  color: #696969;
  background: transparent;
  text-decoration: none;
}

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

@media screen and (max-width: 599px) {
  .nav-sub .fsNavLevel1 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

@media (min-width: 1024px) {
  .nav-sub .fsNavLevel1 > li:first-child {
    border: 0;
  }
}

.nav-sub .fsNavLevel2 > li > a {
  padding-left: 25px;
}

.nav-sub .fsNavLevel3 > li > a {
  padding-left: 45px;
}

.nav-sub .fsNavLevel4 > li > a {
  padding-left: 65px;
}

.nav-sub .fsNavLevel5 > li > a {
  padding-left: 85px;
}

.nav-sub {
  position: relative;
}

@media (min-width: 600px) {
  .nav-sub {
    padding: 15px 30px;
  }
}

.nav-sub .has-expander > a {
  padding-right: 30px;
  position: relative;
}

@media (max-width: 599px) {
  .nav-sub .has-expander > a {
    padding-right: 50px !important;
  }
}

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

@media (max-width: 599px) {
  .nav-sub .expander {
    right: 19px;
  }
}

.nav-sub .expander:before {
  content: '+';
  font-size: 14px;
  color: #696969;
}

.nav-sub .expander:hover::before {
  color: #001448;
}

.nav-sub .expanded > a > .expander:before {
  content: "-";
}

.nav-sub .fsNavLevel2,
.nav-sub .fsNavLevel3,
.nav-sub .fsNavLevel4,
.nav-sub .fsNavLevel5 {
  display: none;
}

.landing-nav {
  position: relative;
  margin: 0px;
  padding: 10px 20px;
  background-color: #F7F8FB;
  text-align: center;
}

@media (max-width: 599px) {
  .landing-nav {
    display: none;
  }
}

.landing-nav nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.landing-nav .fsElementFooterContent {
  margin: 0;
}

.landing-nav a.jobopening {
  padding: 6px 16px;
  position: relative;
  color: #696969;
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.landing-nav a.jobopening:hover,
.landing-nav a.jobopening:focus {
  color: #ffffff;
  background-color: #2E7E85;
}

body.home .landing-nav {
  display: none;
}

.landing-nav > header {
  display: none;
}

.landing-nav > .fsElementContent {
  position: relative;
  margin: 0 auto;
  max-width: 1180px;
}

.landing-nav ul.fsNavLevel1 > li {
  position: relative;
  display: inline-block;
  margin: 5px 0px;
}

.landing-nav ul.fsNavLevel1 > li > a {
  padding: 6px 16px;
  position: relative;
  color: #696969;
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  text-decoration: none;
}

.landing-nav ul.fsNavLevel1 > li > a:hover,
.landing-nav ul.fsNavLevel1 > li > a:focus {
  color: #ffffff;
  background-color: #2E7E85;
}

.landing-nav ul.fsNavLevel1 > li.fsNavCurrentPage > a,
.landing-nav ul.fsNavLevel1 > li.fsNavCurrentPageAncestor > a {
  background-color: #2E7E85;
  color: #ffffff;
}

.landing-nav ul.fsNavLevel2 {
  display: none;
}

.nav-sub-mobile {
  display: block;
  display: none !important;
}

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

.nav-main {
  margin-bottom: 0;
}

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

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

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

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

@media (min-width: 1150px) {
  .nav-main .fsNavLevel1 > li {
    -webkit-box-flex: 1;
        -ms-flex: 1 auto;
            flex: 1 auto;
  }
}

.nav-main .fsNavLevel1 > li:hover > a {
  color: #e5e5e5;
  background: transparent;
}

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

.nav-main .fsNavLevel1 > li > a {
  display: block;
  color: #fff;
  background: transparent;
  padding: 1.25em;
  padding-top: 0;
  padding-bottom: 17px;
  padding-left: 7.5px;
  padding-right: 7.5px;
  position: relative;
  font-family: "Muli", sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
}

.nav-main .fsNavLevel1 > li > a:before {
  content: ' ';
  width: calc(100% - 15px);
  height: 5px;
  background: #FFB81C;
  position: absolute;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  bottom: 6px;
  display: none;
}

.nav-main .fsNavLevel1 > li > a:focus {
  color: #e5e5e5;
  background: transparent;
}

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.js .nav-main .fsNavLevel1 > li:hover > a:before,
html:not(.js) .nav-main .fsNavLevel1 > li.menu-item-open:hover > a:before {
  display: block;
}

html.js .nav-main .fsNavLevel1 > li:focus-within > a:before,
html:not(.js) .nav-main .fsNavLevel1 > li.menu-item-open:focus-within > a:before {
  display: block;
}

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

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

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

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

.nav-main .fsNavPageInfo {
  background: #010d2f;
  text-align: left;
  z-index: 300;
  width: auto;
  min-width: 380px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

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

.nav-main .fsNavLevel1 > li:nth-child(n+4) .fsNavPageInfo {
  right: 0;
  left: auto !important;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

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

.nav-main .fsNavLevel2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 10px 20px;
}

.nav-main .fsNavLevel2 li a {
  border-bottom: 1px solid rgba(151, 151, 151, 0.5);
  padding-bottom: 16px;
  padding-top: 16px;
}

.nav-main .fsNavLevel2 .sub-list li:last-child a {
  border-bottom: none;
}

.nav-main .fsNavLevel2 .sub-list:first-child {
  margin-right: 40px;
}

.nav-main .fsNavLevel2 li a {
  display: block;
  color: #fff;
  background: transparent;
  padding: 0.625em;
  font-size: 14px;
  line-height: 14px;
  padding-bottom: 16px;
  padding-top: 16px;
}

.nav-main .fsNavLevel2 li a:hover,
.nav-main .fsNavLevel2 li a:focus {
  color: #D4AF37;
  background: transparent;
  text-decoration: underline;
}

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

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

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

.burger-container {
  display: none;
  position: relative;
  background: #333333;
  margin-left: -20px;
  margin-right: -20px;
  height: 40px;
  margin-bottom: 0;
}

@media (max-width: 1150px) {
  .burger-container {
    display: block;
  }
}

.burger-container > header {
  display: none;
}

.mobile-toggle {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border: 0;
  background: none;
  margin: 0;
  padding: 0;
  max-width: 35px;
  left: auto;
  right: 10px;
  z-index: 500;
  cursor: pointer;
}

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

.mobile-toggle:before {
  margin-top: -0.25em;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: margin-top .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.25em 0 0 #fff;
          box-shadow: 0 0.25em 0 0 #fff;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-box-shadow .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 {
  opacity: 0.5;
}

.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;
  min-height: 100%;
  max-width: 37.5em;
  background: #001448;
  padding-top: 45px;
}

@media (min-width: 1150px) {
  .fsMenu {
    display: none;
  }
}

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

.fsMenu .nav-main-mobile {
  position: relative;
  margin: 0px 0px 8px 0px;
  padding: 0px;
  margin-bottom: 10px;
}

.fsMenu .nav-main-mobile ul.fsNavLevel1 {
  padding: 0 20px;
}

.fsMenu .nav-main-mobile ul.fsNavLevel1 > li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.fsMenu .nav-main-mobile ul.fsNavLevel1 > li:last-child {
  border-bottom: none;
}

.fsMenu .nav-main-mobile ul.fsNavLevel1 > li > a {
  position: relative;
  background: transparent;
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.fsMenu .nav-main-mobile ul.fsNavLevel1 > li > a:hover,
.fsMenu .nav-main-mobile ul.fsNavLevel1 > li > a:focus {
  text-decoration: none;
  color: #ffffff;
}

.fsMenu .nav-main-mobile ul.fsNavLevel1 > li > .fsNavPageInfo ul.fsNavLevel2 > li:first-child a {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}

.fsMenu .nav-main-mobile ul.fsNavLevel1 > li.has-expander > a {
  position: relative;
}

.fsMenu .nav-main-mobile ul.fsNavLevel1 > li .expander {
  border: 0;
  background: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 15px;
  right: 0;
  width: 20px;
  height: 20px;
  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;
  color: #000000;
  background: #D4AF37;
  border-radius: 100%;
}

.fsMenu .nav-main-mobile ul.fsNavLevel1 > li .expander:before {
  content: '\E91B';
  font-family: "IcoMoon";
  font-weight: bold;
  font-size: 10px;
}

.fsMenu .nav-main-mobile ul.fsNavLevel1 > li .expander:hover:before,
.fsMenu .nav-main-mobile ul.fsNavLevel1 > li .expander:focus:before {
  color: #000000;
}

.fsMenu .nav-main-mobile ul.fsNavLevel1 > li.expanded > a > .expander:before {
  font-size: 10px;
  color: #000000;
  content: '\F068';
  font-family: "IcoMoon";
}

.fsMenu .nav-main-mobile ul.fsNavLevel1 > li .fsNavLevel2,
.fsMenu .nav-main-mobile ul.fsNavLevel1 > li .fsNavLevel3,
.fsMenu .nav-main-mobile ul.fsNavLevel1 > li .fsNavLevel4,
.fsMenu .nav-main-mobile ul.fsNavLevel1 > li .fsNavLevel5 {
  display: none;
}

.fsMenu .nav-main-mobile ul.fsNavLevel2 > li {
  position: relative;
}

.fsMenu .nav-main-mobile ul.fsNavLevel2 > li:last-child {
  margin-bottom: 7.5px;
}

.fsMenu .nav-main-mobile ul.fsNavLevel2 > li > a {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Muli", sans-serif;
  font-size: 14px;
  line-height: 19px;
  padding-top: 7.5px;
  padding-bottom: 7.5px;
}

.fsMenu .nav-main-mobile ul.fsNavLevel2 > li > a > .expander {
  top: 6.5px;
}

.fsMenu .nav-main-mobile ul.fsNavLevel2 > li > a:hover,
.fsMenu .nav-main-mobile ul.fsNavLevel2 > li > a:focus {
  color: #ffffff;
}

.fsMenu .nav-main-mobile ul.fsNavLevel2 > li.expanded > a > .expander:before {
  font-size: 10px;
  color: #000000;
  content: '\F068';
  font-family: "IcoMoon";
}

.fsMenu .nav-main-mobile ul.fsNavLevel3 a,
.fsMenu .nav-main-mobile ul.fsNavLevel4 a,
.fsMenu .nav-main-mobile ul.fsNavLevel4 a,
.fsMenu .nav-main-mobile ul.fsNavLevel5 a {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Muli", sans-serif;
  font-size: 14px;
  line-height: 19px;
}

.fsMenu .nav-main-mobile ul.fsNavLevel3 a:hover,
.fsMenu .nav-main-mobile ul.fsNavLevel3 a:focus,
.fsMenu .nav-main-mobile ul.fsNavLevel4 a:hover,
.fsMenu .nav-main-mobile ul.fsNavLevel4 a:focus,
.fsMenu .nav-main-mobile ul.fsNavLevel4 a:hover,
.fsMenu .nav-main-mobile ul.fsNavLevel4 a:focus,
.fsMenu .nav-main-mobile ul.fsNavLevel5 a:hover,
.fsMenu .nav-main-mobile ul.fsNavLevel5 a:focus {
  color: #ffffff;
}

.fsMenu .mobile-header-links a {
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
  color: #ffffff;
  padding: 0;
  margin-bottom: 13px;
}

.fsMenu .mobile-header-links a:hover,
.fsMenu .mobile-header-links a:focus {
  text-decoration: underline;
  color: #ffffff;
}

.mobile-search {
  position: relative;
}

.mobile-search form {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.mobile-search label {
  display: none;
}

.mobile-search .fsButtonClear {
  display: none;
}

.mobile-search .fsSearchElementSearchButton.fsStyleUpdateButton {
  border: 0;
  background: none;
  margin: 0;
  padding: 0;
  font-size: 0;
  color: transparent;
  width: 30px;
  height: 40px;
  position: absolute;
  right: 20px;
  top: 0;
  font-weight: normal;
  text-align: center;
}

.mobile-search .fsSearchElementSearchButton.fsStyleUpdateButton:before {
  content: '\E90C';
  font-family: "IcoMoon";
  font-size: 14px;
  color: #D4AF37;
  line-height: 40px;
  text-align: center;
}

.mobile-search .fsStyleSearchField.fsStyleDefaultField {
  background-color: #060D1D;
  height: 40px;
  font-size: 20px;
  padding-right: 30px;
  padding-left: 10px;
  color: #ffffff;
  border: none;
}

.mobile-quicklinks {
  padding-left: 20px;
  padding-right: 20px;
}

.mobile-quicklinks a {
  opacity: 0.8;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: bold;
  line-height: 14px;
  margin-bottom: 20px;
  padding: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.mobile-quicklinks a:hover,
.mobile-quicklinks a:focus {
  opacity: 1;
  color: #ffffff;
  text-decoration: none;
}

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

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

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

.nav-social .fsNavLevel1 li {
  display: inline-block;
}

.nav-social .fsNavLevel1 li:not(:last-child) {
  margin-right: 10px;
}

.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 [href*='facebook']:hover,
.nav-social .fsNavLevel1 [href*='facebook']:focus {
  background: #3b5998;
  border-color: #3b5998;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1024px) {
  .nav-social .fsNavLevel1 a {
    width: 33px;
    height: 33px;
  }

  .nav-social .fsNavLevel1 a:before {
    font-size: 12px;
  }
}

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

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

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

.nav-utility-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 {
  padding: 0 20px;
}

.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: relative;
  margin: 0 auto;
  max-width: 1180px;
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}

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

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

#fsHeader .header-container {
  margin-bottom: 0;
  z-index: 10;
  position: relative;
  display: block;
  width: 100%;
}

#fsHeader .header-container > .fsElementContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  margin: 0 auto;
  max-width: 1250px;
}

#fsHeader .header-container > .fsElementContent .header-links-container {
  padding-top: 25px;
}

#fsHeader .header-container > .fsElementContent .header-links-container > .fsElementContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#fsHeader .header-container > .fsElementContent .header-links-container > .fsElementContent .header-utility-links {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#fsHeader .header-container > .fsElementContent .header-links-container > .fsElementContent .header-utility-links nav ul.fsNavLevel1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#fsHeader .header-container > .fsElementContent .header-links-container > .fsElementContent .header-utility-links nav ul.fsNavLevel1 a {
  font-size: 11px;
  font-weight: bold;
  line-height: 14px;
  color: #ffffff;
  text-transform: uppercase;
  opacity: 0.8;
  margin-right: 20px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#fsHeader .header-container > .fsElementContent .header-links-container > .fsElementContent .header-utility-links nav ul.fsNavLevel1 a:hover,
#fsHeader .header-container > .fsElementContent .header-links-container > .fsElementContent .header-utility-links nav ul.fsNavLevel1 a:focus {
  opacity: 1;
}

#fsHeader .header-container > .fsElementContent .header-links-container > .fsElementContent .header-utility-links > footer .fsElementFooterContent {
  margin-top: 0;
}

#fsHeader .header-container > .fsElementContent .header-links-container > .fsElementContent .header-utility-links > footer .fsElementFooterContent .desktop-search-button {
  background: none;
  background-color: none;
  border: none;
  font-size: 0;
  color: transparent;
  padding: 0;
  width: 14px;
  position: relative;
  margin-right: 8px;
  cursor: pointer;
  height: 20px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#fsHeader .header-container > .fsElementContent .header-links-container > .fsElementContent .header-utility-links > footer .fsElementFooterContent .desktop-search-button:before {
  content: '\E90C';
  font-family: "IcoMoon";
  font-size: 12px;
  color: #FFB81C;
  font-weight: normal;
  line-height: 14px;
  position: absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 38%;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#fsHeader .header-container > .fsElementContent .header-links-container > .fsElementContent .header-utility-links > footer .fsElementFooterContent .desktop-search-button:hover:before,
#fsHeader .header-container > .fsElementContent .header-links-container > .fsElementContent .header-utility-links > footer .fsElementFooterContent .desktop-search-button:focus:before {
  color: #ffffff;
}

#fsHeader .header-container .header-logo {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 425px;
  margin-bottom: 0;
}

#fsHeader .header-container .header-logo > header {
  margin-right: 20px;
}

#fsHeader .header-container .header-logo > header .fsElementHeaderContent {
  margin-bottom: 0;
}

#fsHeader .header-container .header-logo > header .fsElementHeaderContent img {
  width: 82px;
}

#fsHeader .header-container .header-logo > header picture {
  display: table;
  line-height: 0;
}

#fsHeader .header-container .header-logo > .fsElementContent {
  margin-bottom: 10px;
}

#fsHeader .header-container .header-logo a {
  color: #FFFFFF;
  font-size: 24px;
  line-height: 29px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Crimson Text", serif;
}

#fsHeader .header-container .header-logo a:hover,
#fsHeader .header-container .header-logo a:focus {
  text-decoration: none;
  color: #ffffff;
}

#fsHeader .header-container .desktop-search {
  display: none;
  position: absolute;
  right: 0;
  top: 27px;
  z-index: 50;
  margin-bottom: 0;
}

#fsHeader .header-container .desktop-search label {
  display: none;
}

#fsHeader .header-container .desktop-search .fsSearchElementKeyword {
  margin-bottom: 0;
}

#fsHeader .header-container .desktop-search .fsSearchElementKeyword input {
  height: 30px;
  width: 256px;
  border-radius: 15px;
  background-color: #FFFFFF;
  padding-left: 30px;
  padding-right: 30px;
}

#fsHeader .header-container form {
  position: relative;
}

#fsHeader .header-container .fsSearchElementSearchButton.fsStyleUpdateButton {
  border: 0;
  background: none;
  margin: 0;
  padding: 0;
  color: transparent;
  font-size: 0;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translatey(-50%);
      -ms-transform: translatey(-50%);
          transform: translatey(-50%);
  width: 30px;
  height: 30px;
  border-radius: 100%;
}

#fsHeader .header-container .fsSearchElementSearchButton.fsStyleUpdateButton:before {
  content: ' ';
  font-size: 12px;
  line-height: 30px;
  color: #001448;
  content: '\E90C';
  font-family: "IcoMoon";
  font-weight: normal;
}

#fsHeader .header-container .desktop-search.active {
  display: block;
}

#fsHeader .header-container .close-search {
  position: absolute;
  right: 0;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: none;
  background: none;
  color: transparent;
  top: 0;
  font-size: 0;
  cursor: pointer;
}

#fsHeader .header-container .close-search:before {
  content: '\E90E';
  font-size: 12px;
  line-height: 30px;
  color: #001448;
  font-family: "IcoMoon";
  font-weight: normal;
}

#fsHeader .sticky-header-container {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  margin-bottom: 0;
  background: #001448;
  border-bottom: 6px solid #D4AF37;
  padding-top: 46px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
}

#fsHeader .sticky-header-container > .fsElementContent {
  position: relative;
  margin: 0 auto;
  max-width: 1250px;
}

#fsHeader .sticky-header-container .header-utility-links {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#fsHeader .sticky-header-container .header-utility-links nav ul.fsNavLevel1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#fsHeader .sticky-header-container .header-utility-links nav ul.fsNavLevel1 a {
  font-size: 11px;
  font-weight: bold;
  line-height: 14px;
  color: #ffffff;
  text-transform: uppercase;
  margin-right: 20px;
}

#fsHeader .sticky-header-container .header-utility-links nav ul.fsNavLevel1 a:hover,
#fsHeader .sticky-header-container .header-utility-links nav ul.fsNavLevel1 a:focus {
  text-decoration: underline;
}

#fsHeader .sticky-header-container .header-utility-links > footer .fsElementFooterContent {
  margin-top: 0;
}

#fsHeader .sticky-header-container .header-utility-links > footer .fsElementFooterContent .desktop-search-button {
  background: none;
  background-color: none;
  border: none;
  font-size: 0;
  color: transparent;
  padding: 0;
  width: 14px;
  position: relative;
  margin-right: 8px;
  cursor: pointer;
  height: 20px;
}

#fsHeader .sticky-header-container .header-utility-links > footer .fsElementFooterContent .desktop-search-button:before {
  content: '\E90C';
  font-family: "IcoMoon";
  font-size: 12px;
  color: #FFB81C;
  font-weight: normal;
  line-height: 14px;
  position: absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 38%;
}

#fsHeader .sticky-header-container .header-logo {
  margin-bottom: 0;
  margin-right: 85px;
  margin-left: 85px;
  margin-top: -40px;
}

#fsHeader .sticky-header-container .header-logo img {
  width: 73px;
}

@media (max-width: 1200px) {
  #fsHeader .sticky-header-container .header-logo {
    margin-right: 45px;
    margin-left: 45px;
  }
}

#fsHeader .sticky-header-container picture {
  display: table;
  line-height: 0;
}

#fsHeader .sticky-header-container .header-utility-links {
  position: absolute;
  right: 0;
  top: -37px;
}

#fsHeader .sticky-header-container .header-utility-links a {
  opacity: 0.8;
}

#fsHeader .sticky-header-container .nav-main .fsNavLevel1 {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: inherit;
}

#fsHeader .sticky-header-container .nav-main .fsNavLevel1 li {
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
  margin-right: 15px;
  margin-left: 15px;
}

#fsHeader .sticky-header-container .nav-main .fsNavLevel1 li:last-child {
  margin-right: 0;
}

#fsHeader .sticky-header-container .nav-main .fsNavLevel1 li:first-child {
  margin-left: 0;
}

#fsHeader .sticky-header-container .desktop-search {
  display: none;
  position: absolute;
  right: 0;
  top: -35px;
  z-index: 50;
  margin-bottom: 0;
}

#fsHeader .sticky-header-container .desktop-search label {
  display: none;
}

#fsHeader .sticky-header-container .desktop-search .fsSearchElementKeyword {
  margin-bottom: 0;
}

#fsHeader .sticky-header-container .desktop-search .fsSearchElementKeyword input {
  height: 30px;
  width: 256px;
  border-radius: 15px;
  background-color: #FFFFFF;
  padding-left: 30px;
  padding-right: 30px;
}

#fsHeader .sticky-header-container form {
  position: relative;
}

#fsHeader .sticky-header-container .fsSearchElementSearchButton.fsStyleUpdateButton {
  border: 0;
  background: none;
  margin: 0;
  padding: 0;
  color: transparent;
  font-size: 0;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translatey(-50%);
      -ms-transform: translatey(-50%);
          transform: translatey(-50%);
  width: 30px;
  height: 30px;
  border-radius: 100%;
}

#fsHeader .sticky-header-container .fsSearchElementSearchButton.fsStyleUpdateButton:before {
  content: ' ';
  font-size: 12px;
  line-height: 30px;
  color: #001448;
  content: '\E90C';
  font-family: "IcoMoon";
  font-weight: normal;
}

#fsHeader .sticky-header-container .desktop-search.active {
  display: block;
}

#fsHeader .sticky-header-container .close-search {
  position: absolute;
  right: 0;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: none;
  background: none;
  color: transparent;
  top: 0;
  font-size: 0;
  cursor: pointer;
}

#fsHeader .sticky-header-container .close-search:before {
  content: '\E90E';
  font-size: 12px;
  line-height: 30px;
  color: #001448;
  font-family: "IcoMoon";
  font-weight: normal;
}

body:not(.home) #fsHeader {
  background-color: #001448;
}

body:not(.home) #fsHeader .header-container .header-logo {
  padding-top: 20px;
  padding-bottom: 20px;
}

body:not(.home) #fsHeader .header-container .header-logo .fsElementContent {
  margin-bottom: 0;
}

body:not(.has-hero):not(.has-slideshow) .header-container {
  background: #001448;
}

#fsHeader .sticky-header-container {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
}

#fsHeader.sticky .sticky-header-container {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

@media (max-width: 1150px) {
  #fsHeader.sticky .sticky-header-container {
    display: none !important;
  }

  #fsHeader .header-container {
    background: none;
  }

  #fsHeader .header-container .header-links-container {
    display: none;
  }

  #fsHeader .header-container > .fsElementContent {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  #fsHeader .header-container .header-logo {
    -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;
  }

  #fsHeader .header-container .header-logo > header {
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0px;
  }

  #fsHeader .header-container .header-logo > header .fsElementHeaderContent img {
    width: 40px;
  }

  #fsHeader .header-container .header-logo > .fsElementContent {
    margin-bottom: 0;
  }

  #fsHeader .header-container .header-logo > .fsElementContent a {
    font-size: 18px;
    line-height: 22px;
  }
}

.custom-top-nav {
  background-color: #F7F8FB;
  border-bottom: 1px solid #DCE0E9;
  padding-top: 14px;
  padding-bottom: 14px;
  margin-bottom: 0;
}

.custom-top-nav > header {
  display: none;
}

.custom-top-nav > .fsElementContent {
  position: relative;
  margin: 0 auto;
  max-width: 1180px;
}

@media (max-width: 1180px) {
  .custom-top-nav > .fsElementContent {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.custom-top-nav > .fsElementContent ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.custom-top-nav > .fsElementContent ul a {
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  padding: 7px 15px;
  color: #696969;
  text-decoration: none;
  margin-bottom: 0;
  border-radius: 16px;
}

.custom-top-nav > .fsElementContent ul a:hover,
.custom-top-nav > .fsElementContent ul a:focus {
  color: #001448;
  text-decoration: none;
}

.custom-top-nav > .fsElementContent ul li:first-child.fsNavCurrentPage {
  margin-left: 15px;
}

.custom-top-nav > .fsElementContent ul li.fsNavCurrentPage a {
  color: #ffffff;
  background: #001448;
}

.custom-top-nav > .fsElementContent ul li.fsNavCurrentPage a:hover,
.custom-top-nav > .fsElementContent ul li.fsNavCurrentPage a:focus {
  background: #FFB81C;
  color: #001448;
}

body:not(.fsComposeMode) .sticky-button {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 70px;
  margin-bottom: 0;
  z-index: 10;
}

body:not(.fsComposeMode) .sticky-button > header {
  display: none;
}

body:not(.fsComposeMode) .sticky-button > .fsElementContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 100%;
}

body:not(.fsComposeMode) .sticky-button p {
  margin-bottom: 0;
  margin-right: 10px;
}

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

body:not(.fsComposeMode) .sticky-button p:last-child a:before {
  display: none;
}

@media (max-width: 600px) {
  body:not(.fsComposeMode) .sticky-button {
    position: relative !important;
    right: auto !important;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
    top: auto !important;
    width: 100% !important;
    display: block !important;
  }

  body:not(.fsComposeMode) .sticky-button > .fsElementContent {
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
    -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-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  body:not(.fsComposeMode) .sticky-button > .fsElementContent p {
    width: 100%;
    margin: 0;
  }
}

body:not(.fsComposeMode) .sticky-button p {
  font-size: 13px;
  line-height: 13px;
}

body:not(.fsComposeMode) .sticky-button a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 13px;
  padding: 15px 10px;
  background-color: #1C3F94;
  display: block;
}

body:not(.fsComposeMode) .sticky-button a:before {
  content: '\F004';
  font-family: "IcoMoon";
  color: #D4AF37;
  margin-right: 10px;
}

body:not(.fsComposeMode) .sticky-button a:hover,
body:not(.fsComposeMode) .sticky-button a:focus {
  color: #FFB81C;
}

@media (max-width: 600px) {
  body:not(.fsComposeMode) .sticky-button a {
    width: 100% !important;
    display: block;
    text-align: center;
  }
}

.fsAccountBarVisible #fsHeader .sticky-header-container {
  top: 45px;
}

#fsFooter {
  padding: 20px;
  color: #fff;
}

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

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

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

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

#fsFooter .nav-social {
  margin-bottom: 20px;
}

.school-details {
  margin-bottom: 20px;
}

.school-details [itemprop='name'] {
  margin-top: 0;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 20px;
}

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

.school-details a {
  color: inherit;
}

#fsFooter {
  background: none;
  max-width: inherit;
  padding: 0;
  position: relative;
}

#fsFooter .fsBanner {
  max-width: inherit;
}

.footer-container {
  width: 100%;
  position: relative;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 900px) {
  .footer-container {
    background: #001448 !important;
  }
}

.footer-container:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background: #001448;
  opacity: 0.8;
  z-index: 1;
  display: block;
}

.footer-container > .fsElementContent {
  padding-left: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 2;
  position: relative;
  margin: 0 auto;
  max-width: 1180px;
}

@media (max-width: 1024px) {
  .footer-container > .fsElementContent {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 900px) {
  .footer-container > .fsElementContent {
    -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;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.footer-container > .fsElementContent .footer-logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
  padding-top: 10px;
}

@media (max-width: 900px) {
  .footer-container > .fsElementContent .footer-logo-container {
    -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;
    text-align: center;
  }
}

.footer-container > .fsElementContent .footer-logo-container > header {
  width: 151px;
  margin-right: 40px;
  padding-top: 7px;
}

@media (max-width: 900px) {
  .footer-container > .fsElementContent .footer-logo-container > header {
    width: 86px;
    margin-right: 0;
  }
}

.footer-container > .fsElementContent .footer-logo-container .fsElementHeaderContent {
  margin-bottom: 0;
}

.footer-container > .fsElementContent .footer-logo-container > .fsElementContent {
  margin-bottom: 10px;
}

.footer-container > .fsElementContent .footer-logo-container > .fsElementContent h2 {
  font-family: "Crimson Text", serif;
  font-size: 24px;
  line-height: 33px;
  color: #ffffff;
  font-weight: normal;
  margin-bottom: 13px;
}

.footer-container > .fsElementContent .footer-logo-container > .fsElementContent p {
  font-size: 15px;
  line-height: 26px;
}

@media (max-width: 900px) {
  .footer-container > .fsElementContent .footer-logo-container > .fsElementContent p {
    font-size: 12px;
    line-height: 26px;
  }
}

.footer-container .nav-social {
  display: table;
  margin-bottom: 10px !important;
  padding-top: 65px;
}

@media (max-width: 1024px) {
  .footer-container .nav-social {
    padding-top: 68px;
  }
}

@media (max-width: 900px) {
  .footer-container .nav-social {
    margin-right: auto;
    margin-left: auto;
    padding-top: 0;
  }
}

.footer-container .footer-navs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (max-width: 900px) {
  .footer-container .footer-navs {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 50px;
  }

  .footer-container .footer-navs .footer-links .fsNavLevel1 li {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.footer-container .footer-links .fsNavLevel1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 500px) {
  .footer-container .footer-links .fsNavLevel1 {
    -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;
  }
}

.footer-container .footer-links .fsNavLevel1 li {
  margin-left: 20px;
}

.footer-container .footer-links .fsNavLevel1 a {
  font-size: 15px;
  line-height: 19px;
  color: #ffffff;
  opacity: 0.8;
}

.footer-container .footer-links .fsNavLevel1 a:hover,
.footer-container .footer-links .fsNavLevel1 a:focus {
  text-decoration: underline;
}

/*! 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: "Muli", sans-serif;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-size: 16px;
  line-height: 24px;
  color: #696969;
}

#fsPageWrapper {
  overflow-x: hidden;
  position: relative;
}

body.fsComposeMode #fsPageWrapper {
  overflow: visible;
}

#fsPageBodyWrapper {
  padding-right: 1.25em;
  padding-left: 1.25em;
  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% - 320px);
  }
}

.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% - 600px);
  }
}

#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: 40px;
    width: 320px;
    -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: 40px;
    width: 320px;
  }
}

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

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

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

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

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

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

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

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

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

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

.fsLayout .fsStyleOneThird {
  float: none;
}

.fsLayout .fsStyleTwoThirds {
  float: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#fsPoweredByFinalsite {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  z-index: 2;
}

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

/*! elements - constituent main */

/*! elements - constituent default layout */

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

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

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

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

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

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

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

.fsConstituentProfile {
  position: relative;
}

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

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

/*! elements - constituent default layout */

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

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

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

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

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

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

.fsConstituentItem .fsPhoto img {
  display: block;
}

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

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

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

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

/*! elements - constituent profile */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fsProfileImage {
  margin-bottom: 20px;
}

.fsProfileImage img {
  display: block;
}

.fsProfileSection {
  margin-bottom: 20px;
}

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

.fsProfileSectionData {
  margin-bottom: 1em;
}

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

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

.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: 32px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

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

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

/*! elements - constituent default layout */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*! elements - accordion */

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

.fsAccordion .fsPanel:first-of-type,
.fsTabs .fsPanel:first-of-type {
  border-top: 1px solid #DCE0E9;
}

.fsAccordion .fsPanel > header,
.fsTabs .fsPanel > header {
  cursor: pointer;
  background: transparent;
  -webkit-transition: .3s;
  transition: .3s;
}

.fsAccordion .fsPanel > header h2,
.fsTabs .fsPanel > header h2 {
  margin-top: 0;
  font-weight: normal;
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 20px;
  margin-bottom: 2px;
  display: block;
  font-size: 21px;
  padding: 13.33333px;
  color: #252B33;
  -webkit-transition: .3s;
  transition: .3s;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
  text-transform: none;
  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: transparent;
  -webkit-transition: .3s;
  transition: .3s;
}

.fsAccordion .fsPanel > header:hover h2,
.fsTabs .fsPanel > header:hover h2 {
  color: #252B33;
  -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 {
  background: #FFB81C !important;
}

.fsAccordion .fsPanel.fsStateOpen > header,
.fsTabs .fsPanel.fsStateOpen > header {
  background: transparent;
}

.fsAccordion .fsPanel.fsStateOpen > header h2,
.fsTabs .fsPanel.fsStateOpen > header h2 {
  color: #001448;
}

.fsAccordion .fsPanel.fsStateOpen > header h2:before,
.fsTabs .fsPanel.fsStateOpen > header h2:before {
  content: "-";
}

.fsPanelIconAfter.fsAccordion .fsPanel > header h2::after,
.fsPanelIconAfter.fsTabs .fsPanel > header h2::after,
.fsPanelIconBefore.fsAccordion .fsPanel > header h2::before,
.fsPanelIconBefore.fsTabs .fsPanel > header h2::before {
  content: '';
  border: none;
  width: auto;
  height: auto;
  position: absolute;
  margin: 0;
  top: 13.33333px;
  height: 24px;
  width: 24px;
  line-height: 24px;
  background: #252B33;
  text-align: center;
  color: #ffffff;
  -webkit-transition: all .3s;
  transition: all .3s;
  top: calc(50% - 12px);
  content: "+";
}

.fsPanelIconBefore.fsAccordion .fsPanel.fsStateOpen > header h2::before,
.fsPanelIconBefore.fsTabs .fsPanel.fsStateOpen > header h2::before,
.fsPanelIconAfter.fsAccordion .fsPanel.fsStateOpen > header h2::after,
.fsPanelIconAfter.fsTabs .fsPanel.fsStateOpen > header h2::after {
  content: '';
  border: none;
  width: auto;
  height: auto;
  position: absolute;
  margin: 0;
  top: 13.33333px;
  height: 24px;
  width: 24px;
  line-height: 24px;
  background: #252B33;
  text-align: center;
  color: #ffffff;
  -webkit-transition: all .3s;
  transition: all .3s;
  top: calc(50% - 12px);
  content: "-";
  background: #1C3F94 !important;
}

.fsPanelIconBefore.fsAccordion .fsPanel > header h2,
.fsPanelIconBefore.fsTabs .fsPanel > header h2 {
  padding-left: 40px;
  padding-left: 50px;
}

.fsPanelIconBefore.fsAccordion .fsPanel > header h2:before,
.fsPanelIconBefore.fsTabs .fsPanel > header h2:before {
  left: 13.33333px;
  left: 0;
}

.fsPanelIconAfter.fsAccordion .fsPanel > header h2,
.fsPanelIconAfter.fsTabs .fsPanel > header h2 {
  padding-right: 40px;
  padding-right: 50px;
}

.fsPanelIconAfter.fsAccordion .fsPanel > header h2:before,
.fsPanelIconAfter.fsTabs .fsPanel > header h2:before {
  display: none;
}

.fsPanelIconAfter.fsAccordion .fsPanel > header h2:after,
.fsPanelIconAfter.fsTabs .fsPanel > header h2:after {
  right: 13.33333px;
  right: 0;
  left: auto;
}

.fsAccordion:not(.fsPanelIconBefore):not(.fsPanelIconAfter) .fsPanel > header h2:before,
.fsTabs:not(.fsPanelIconBefore):not(.fsPanelIconAfter) .fsPanel > header h2:before {
  content: '';
}

/*! elements - athletics main */

/*! elements - athletics events */

.fsAthleticsEvent > .fsElementContent {
  width: 100%;
}

.fsAthleticsEvent .fsAlertFeeds {
  margin-bottom: 10px;
}

.fsAthleticsEvent .fsElementEventIcon {
  display: inline-block;
  max-width: 100%;
}

.fsAthleticsEvent .fsTitle {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}

.fsAthleticsEvent div.fsTitle {
  display: inline-block;
}

/*! elements - athletics events - list subtype */

.fsAthleticsEvent.fsList .fsElementEventIcon {
  margin-right: 10px;
}

.fsAthleticsEvent.fsList .fsAthleticsEventDetailLink {
  outline: 0;
}

.fsAthleticsEvent.fsList .fsAlertIcon {
  margin-left: 5px;
  margin-bottom: -3px;
}

.fsAthleticsEvent.fsList .fsAthleticsOpponents {
  display: inline;
}

.fsAthleticsEvent.fsList .fsAthleticsOpponentNames {
  display: inline;
}

.fsAthleticsEvent.fsList .fsAthleticsEventReadMoreLink {
  display: inline-block;
  margin-top: 5px;
}

.fsAthleticsEvent.fsList .fsAthleticsDismissal,
.fsAthleticsEvent.fsList .fsAthleticsDeparture,
.fsAthleticsEvent.fsList .fsAthleticsReturn,
.fsAthleticsEvent.fsList .fsAthleticsPickup {
  margin-top: 5px;
}

.fsAthleticsEvent.fsList .fsAthleticsDismissalLabel,
.fsAthleticsEvent.fsList .fsAthleticsDepartureLabel,
.fsAthleticsEvent.fsList .fsAthleticsReturnLabel,
.fsAthleticsEvent.fsList .fsAthleticsPickupLabel {
  display: inline-block;
}

.fsAthleticsEvent.fsList .fsAthleticsDismissalLabel + div,
.fsAthleticsEvent.fsList .fsAthleticsDepartureLabel + div,
.fsAthleticsEvent.fsList .fsAthleticsReturnLabel + div,
.fsAthleticsEvent.fsList .fsAthleticsPickupLabel + div {
  display: inline-block;
}

/*! elements - athletics events */

.fsAthleticsEvent.fsEvent article > div {
  margin-bottom: 10px;
}

.fsAthleticsEvent.fsEvent article > div:last-child {
  margin-bottom: 0;
}

.fsAthleticsEvent.fsEvent .fsAthleticsOpponents {
  display: inline-block;
}

.fsAthleticsEvent.fsEvent .fsAthleticsVs + div {
  display: inline-block;
}

/*! elements - athletics events - table*/

@media (min-width: 801px) {
  .fsAthleticsEvent.fsTable .fsTitle .fsElementEventIcon {
    max-width: 100px;
  }
}

@media (min-width: 801px) {
  .fsAthleticsEvent.fsTable .fsDateTime,
  .fsAthleticsEvent.fsTable .fsAthleticsScore {
    white-space: nowrap;
  }
}

.fsAthleticsEvent.fsTable .fsElementTable {
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .fsAthleticsEvent.fsTable .fsElementTable thead {
    display: none;
  }
}

.fsAthleticsEvent.fsTable .fsElementTable thead th {
  white-space: nowrap;
}

@media (max-width: 800px) {
  .fsAthleticsEvent.fsTable .fsElementTable td {
    display: inline-block;
    width: 100%;
    padding: 0 10px;
  }

  .fsAthleticsEvent.fsTable .fsElementTable td:not(:last-child) {
    border: 0;
  }

  .fsAthleticsEvent.fsTable .fsElementTable td:first-of-type {
    padding-top: 10px;
  }

  .fsAthleticsEvent.fsTable .fsElementTable td:last-of-type {
    padding-bottom: 10px;
  }

  .fsAthleticsEvent.fsTable .fsElementTable td:before {
    display: inline-block;
    font-weight: 700;
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsTitle:before {
    content: 'Team: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsOpponents {
    display: inline-block;
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsOpponents .fsAthleticsVs {
    display: inline-block;
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsOpponents .fsAthleticsOpponentNames {
    display: inline-block;
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsOpponents:before {
    content: 'Opponent: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsDate .fsDateTime {
    display: inline-block;
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsDate:before {
    content: 'Date: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsTime .fsDateTime {
    display: inline-block;
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsTime:before {
    content: 'Time: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsLocations:before {
    content: 'Location: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsAdvantage:before {
    content: 'Advantage: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsEventType:before {
    content: 'Type: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsDetails:before {
    content: 'Details: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsResult:before {
    content: 'Result: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsScore:before {
    content: 'Score: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsAlerts:before {
    content: 'Alerts: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsDismissal:before {
    content: 'Dismissal: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsDeparture:before {
    content: 'Departure: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsReturn:before {
    content: 'Return Time: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsPickup:before {
    content: 'Pickup Time: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsRecap:before {
    content: 'Recap: ';
  }

  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsStatus:before {
    content: 'Status: ';
  }
}

.fsAthleticsEvent.fsTable .fsAthleticsVs + div {
  display: inline;
}

.fsAthleticsEvent.fsTable .fsAthleticsDismissalLabel,
.fsAthleticsEvent.fsTable .fsAthleticsDepartureLabel,
.fsAthleticsEvent.fsTable .fsAthleticsReturnLabel,
.fsAthleticsEvent.fsTable .fsAthleticsPickupLabel {
  display: none;
}

.fsAthleticsEvent.fsTable .fsAthleticsDismissal .fsDateTime {
  display: inline-block;
}

@media (min-width: 800px) {
  .fsAthleticsEvent.fsTable .fsAthleticsDismissal .fsDateTime {
    display: block;
  }
}

body.fsComposeMode .fsAthleticsEvent.fsTable > .fsElementContent {
  overflow-x: auto;
}

/*! elements - athletics popup dialog box */

.fsAthleticsEvent.fsDialog {
  margin: auto;
}

.fsAthleticsEvent.fsDialog .fsAthleticsTitle {
  margin-top: 0;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
}

.fsAthleticsEvent.fsDialog .fsAthleticsLabel {
  font-weight: bold;
  margin-top: 20px;
}

.fsAthleticsEvent.fsDialog .fsAthleticsAddress > div {
  margin-top: 10px;
}

/*! elements - athletics roster */

.fsAthleticsRoster .fsElementTable td:before,
.fsAthleticsRosterList li > div:before {
  margin-right: 5px;
  display: inline-block;
  font-weight: 700;
}

.fsAthleticsRoster .fsElementTable td.fsRosterPlayerNumber:before,
.fsAthleticsRosterList li > div.fsRosterPlayerNumber:before {
  content: 'Number: ';
}

.fsAthleticsRoster .fsElementTable td.fsRosterName:before,
.fsAthleticsRosterList li > div.fsRosterName:before {
  content: 'Name: ';
}

.fsAthleticsRoster .fsElementTable td.fsRosterPosition:before,
.fsAthleticsRosterList li > div.fsRosterPosition:before {
  content: 'Position: ';
}

.fsAthleticsRoster .fsElementTable td.fsRosterClass:before,
.fsAthleticsRosterList li > div.fsRosterClass:before {
  content: 'Class: ';
}

.fsAthleticsRoster .fsElementTable td.fsRosterGradeLevel:before,
.fsAthleticsRosterList li > div.fsRosterGradeLevel:before {
  content: 'Grade: ';
}

.fsAthleticsRoster .fsElementTable td.fsRosterHometown:before,
.fsAthleticsRosterList li > div.fsRosterHometown:before {
  content: 'Hometown: ';
}

.fsAthleticsRoster .fsElementTable td.fsRosterHeight:before,
.fsAthleticsRosterList li > div.fsRosterHeight:before {
  content: 'Height: ';
}

.fsAthleticsRoster .fsElementTable td.fsRosterWeight:before,
.fsAthleticsRosterList li > div.fsRosterWeight:before {
  content: 'Weight: ';
}

@media (max-width: 800px) {
  .fsAthleticsRoster .fsElementTable thead {
    display: none;
  }
}

@media (min-width: 800px) {
  .fsAthleticsRoster .fsElementTable td:before {
    display: none;
  }
}

@media (max-width: 800px) {
  .fsAthleticsRoster .fsElementTable td {
    display: inline-block;
    width: 100%;
    padding: 0 10px;
  }

  .fsAthleticsRoster .fsElementTable td:not(:last-child) {
    border: 0;
  }

  .fsAthleticsRoster .fsElementTable td:first-of-type {
    padding-top: 10px;
  }

  .fsAthleticsRoster .fsElementTable td:last-of-type {
    padding-bottom: 10px;
  }
}

.fsAthleticsRosterContent {
  margin-bottom: 20px;
}

.fsAthleticsRosterContent:empty,
.fsAthleticsRosterContent:last-child {
  margin-bottom: 0;
}

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

.fsAthleticsRosterList li {
  margin: 0;
  padding: 0;
}

.fsAthleticsRosterList li {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px #e5e5e5;
}

.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: 75px;
  min-height: 90px;
  padding-top: 0;
}

.fsCalendar article .fsElementEventColorIcon {
  width: 12px;
  height: 12px;
}

.fsCalendar .fsDate {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  height: 90px;
  width: 60px;
  color: #fff;
  background: #001448;
  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;
}

.fsCalendar .fsDate > span {
  display: block;
}

.fsCalendar .fsDate > span.fsMonth {
  font-size: 12px;
  font-weight: bold;
  line-height: 12px;
  text-align: center;
}

.fsCalendar .fsDate > span.fsDay {
  font-size: 30px;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 3px;
}

.fsCalendar .fsDate > span.fsYear {
  font-size: 12px;
  font-weight: bold;
  line-height: 12px;
  text-align: center;
}

.fsCalendar .fsTitle {
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
  margin-bottom: 15px;
}

.fsCalendar .fsTitle a {
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
  text-decoration: none;
}

.fsCalendar .fsTitle a:hover,
.fsCalendar .fsTitle a:focus {
  text-decoration: underline;
}

.fsCalendar .fsTimeRange {
  color: #252B33;
  font-size: 13px;
  line-height: 16px;
}

.fsCalendar .fsTimeRange:before {
  content: '\E902';
  font-family: "IcoMoon";
  font-weight: normal;
  color: #ADB5BD;
  font-size: 10px;
  margin-right: 5px;
}

.fsCalendar .fsLocation {
  color: #252B33;
  font-size: 13px;
  line-height: 16px;
  text-transform: uppercase;
}

.fsCalendar .fsLocation:before {
  content: '\E906';
  font-family: "IcoMoon";
  font-weight: normal;
  color: #ADB5BD;
  font-size: 10px;
  margin-right: 12px;
}

.fsCalendar .fsNotes,
.fsCalendar .fsDescription {
  margin-top: 20px;
}

.fsCalendar .fsNotes p,
.fsCalendar .fsDescription p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 8px;
}

.fsCalendar .fsNotes p:last-child,
.fsCalendar .fsDescription p:last-child {
  margin-bottom: 0;
}

.fsCalendar .fsCalendarEventLink {
  font-size: 14px;
  font-weight: bold;
  line-height: 26px;
  text-decoration: none;
}

.fsCalendar .fsCalendarEventLink:hover,
.fsCalendar .fsCalendarEventLink:focus {
  text-decoration: underline;
}

/*! _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(0, 20, 72, 0.1);
}

.fsCalendarEventGrid .fsCalendarRow .fsCalendarOutOfRange {
  background-color: #f8f8f8;
}

.fsCalendarEventGrid .fsCalendarDaybox {
  border-color: #cfcfcf;
}

.fsCalendarEventGrid .fsCalendarDaybox .fsCalendarInfo {
  color: #696969;
}

.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: #696969;
    background: #ffffff;
    -webkit-transition: .3s;
    transition: .3s;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox:hover {
    color: #ffffff;
    background: #131313;
    -webkit-transition: .3s;
    transition: .3s;
  }

  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox:hover .fsCalendarOutOfRange {
    color: #ffffff;
    background: #131313;
    -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: #131313;
    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: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
  padding: 10px 20px;
  margin-bottom: 0;
}

.fsBannerLeft .scroll-up span,
.fsBannerRight .scroll-up span,
.fsStyleOneThird .scroll-up span,
.fsThreeColumnLayout > .fsDiv .scroll-up span,
.fsFourColumnLayout > .fsDiv .scroll-up span {
  width: 100%;
  display: block;
  margin-right: 0;
}

.scroll-up span:hover,
.scroll-up span:focus,
.fsStateSelected .scroll-up span,
.scroll-up span.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.scroll-up span em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

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

.fsComposerFormEmbed form:after {
  display: table;
  clear: both;
  content: '';
}

.fsComposerFormEmbed form input,
.fsComposerFormEmbed form textarea,
.fsComposerFormEmbed form select {
  font-family: "Muli", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #696969;
}

.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: #131313;
  margin-right: 10px;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}

.fsComposerFormEmbed form .linkLike:hover {
  color: #131313;
}

.fsComposerFormEmbed form .required {
  color: #001448;
}

.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: #131313;
  -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: #131313;
  -webkit-transition: .3s;
  transition: .3s;
}

.fsComposerFormEmbed form .pageBreak .prevPage {
  margin-right: 10px;
}

.fsComposerFormEmbed form .pageBreak .pagenum {
  display: inline-block;
  float: left;
  line-height: 1;
  margin-right: 10px;
  padding: 10px 0;
}

.fsComposerFormEmbed form .pageBreak .pagenum:empty {
  margin: 0;
}

.fsComposerFormEmbed form .submitBtn {
  border: 0;
  margin: 0;
  padding: 10px 20px;
  border-radius: 0;
  background: #001448;
  color: #fff;
  float: left;
  -webkit-transition: .3s;
  transition: .3s;
}

.fsComposerFormEmbed form .submitBtn:hover {
  -webkit-transition: .3s;
  transition: .3s;
  background: #FFB81C;
}

.fsComposerFormEmbed .ui-widget {
  font-family: "Muli", sans-serif;
  max-width: 100%;
}

.fsComposerFormEmbed .ui-datepicker:empty {
  display: none;
}

.fsComposerFormEmbed .ui-datepicker .ui-datepicker-header {
  background: none;
  border: none;
}

.fsComposerFormEmbed .ui-datepicker .ui-datepicker-prev,
.fsComposerFormEmbed .ui-datepicker .ui-datepicker-next {
  background: none;
  border: none;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
}

.fsComposerFormEmbed .ui-datepicker .ui-datepicker-prev span,
.fsComposerFormEmbed .ui-datepicker .ui-datepicker-next span {
  display: none;
}

.fsComposerFormEmbed .ui-datepicker .ui-datepicker-prev:before,
.fsComposerFormEmbed .ui-datepicker .ui-datepicker-next:before {
  content: '';
  font-weight: bold;
  -webkit-transition: .3s;
  transition: .3s;
}

.fsComposerFormEmbed .ui-datepicker .ui-datepicker-prev:hover:before,
.fsComposerFormEmbed .ui-datepicker .ui-datepicker-next:hover:before {
  -webkit-transition: .3s;
  transition: .3s;
  opacity: .5;
}

.fsComposerFormEmbed .ui-datepicker .ui-datepicker-next:before {
  content: '\203A';
}

.fsComposerFormEmbed .ui-datepicker .ui-datepicker-prev:before {
  content: '\2039';
}

.fsComposerFormEmbed .ui-datepicker .ui-datepicker-next-hover {
  right: 2px;
  top: 2px;
}

.fsComposerFormEmbed .ui-datepicker .ui-datepicker-prev-hover {
  left: 2px;
  top: 2px;
}

.fsComposerFormEmbed .ui-datepicker .ui-state-default {
  background: rgba(0, 0, 0, 0.05);
  text-align: center;
}

.fsComposerFormEmbed .ui-datepicker .ui-state-active {
  background: rgba(0, 0, 0, 0.1);
}

.fsComposerFormEmbed .ui-datepicker .ui-state-highlight {
  border: solid 1px #d3d3d3;
  background-color: #d3d3d3;
}

::-webkit-input-placeholder {
  color: #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: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fsResetContinue,
.fsBannerRight .fsResetContinue,
.fsStyleOneThird .fsResetContinue,
.fsThreeColumnLayout > .fsDiv .fsResetContinue,
.fsFourColumnLayout > .fsDiv .fsResetContinue,
.fsBannerLeft .fsResetCancel,
.fsBannerRight .fsResetCancel,
.fsStyleOneThird .fsResetCancel,
.fsThreeColumnLayout > .fsDiv .fsResetCancel,
.fsFourColumnLayout > .fsDiv .fsResetCancel,
.fsBannerLeft .fsLoginNewSuccess > button,
.fsBannerRight .fsLoginNewSuccess > button,
.fsStyleOneThird .fsLoginNewSuccess > button,
.fsThreeColumnLayout > .fsDiv .fsLoginNewSuccess > button,
.fsFourColumnLayout > .fsDiv .fsLoginNewSuccess > button {
  width: 100%;
  display: block;
  margin-right: 0;
}

.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: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fsResetContinue em,
.fsResetCancel em,
.fsLoginNewSuccess > button em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fsLoginNewSuccess button {
  margin-top: 20px;
}

.fsNews.fsThumbnailAlignLeft .fsThumbnail {
  float: none;
}

@media (min-width: 600px) {
  .fsNews.fsThumbnailAlignLeft .fsThumbnail {
    float: left;
  }
}

.fsNews.fsThumbnailAlignRight .fsThumbnail {
  float: none;
}

@media (min-width: 600px) {
  .fsNews.fsThumbnailAlignRight .fsThumbnail {
    float: right;
  }
}

/*! _dialog.scss - src/sass/modules/news/_dialog.scss - news dialog pop up */

.fsPostElement.fsThumbnailAlignLeft .fsThumbnail {
  float: none;
}

@media (min-width: 600px) {
  .fsPostElement.fsThumbnailAlignLeft .fsThumbnail {
    float: left;
  }
}

.fsPostElement.fsThumbnailAlignRight .fsThumbnail {
  float: none;
}

@media (min-width: 600px) {
  .fsPostElement.fsThumbnailAlignRight .fsThumbnail {
    float: right;
  }
}

.fsPostElement article {
  border-bottom: 1px solid #DCE0E9;
  padding-bottom: 20px;
}

.fsPostElement article:last-child {
  border-bottom: none;
}

.fsPostElement .fsCategories {
  font-size: 10px;
  font-weight: bold;
  line-height: 13px;
  color: #252B33;
  margin-left: 0;
}

.fsPostElement .fsCategories .fsCategory {
  background: #DCE0E9;
  border-radius: 2px;
  margin-right: 6px;
}

.fsPostElement .fsTitle {
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}

.fsPostElement .fsTitle a {
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
  text-decoration: none;
}

.fsPostElement .fsTitle a:hover,
.fsPostElement .fsTitle a:focus {
  text-decoration: underline;
}

.fsPostElement .fsAuthor {
  font-size: 15px;
  line-height: 19px;
  display: block;
  color: #252B33;
  margin-bottom: 5px;
}

.fsPostElement .fsDateTime {
  font-size: 15px;
  line-height: 19px;
  display: block;
  color: #252B33;
  text-transform: uppercase;
}

.fsPostElement .fsSummary {
  color: #696969;
  font-size: 16px;
  line-height: 23px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.fsPostElement .fsTags {
  margin-left: 0;
}

.fsPostElement .fsTags .fsTag {
  border: 1px solid #DCE0E9;
  background-color: #FFFFFF;
  color: #252B33;
  font-size: 12px;
  font-weight: bold;
  line-height: 15px;
  margin-right: 6px;
  padding: 8px;
}

.fsPostElement a.fsReadMoreLink {
  color: #131313;
  font-size: 16px;
  font-weight: bold;
  line-height: 23px;
  text-decoration: none;
}

.fsPostElement a.fsReadMoreLink:hover,
.fsPostElement a.fsReadMoreLink:focus {
  text-decoration: underline;
}

body:not(.home) #fsPageContent .fsPostElement.fsList:not(.bpa-featured-profiles-2) article {
  padding-left: 330px;
  overflow: hidden;
  position: relative;
  min-height: 220px;
}

body:not(.home) #fsPageContent .fsPostElement.fsList:not(.bpa-featured-profiles-2) article:first-of-type .fsThumbnail {
  top: 0px;
}

@media (max-width: 1099px) {
  body:not(.home) #fsPageContent .fsPostElement.fsList:not(.bpa-featured-profiles-2) article {
    padding-left: 0px;
  }
}

body:not(.home) #fsPageContent .fsPostElement.fsList:not(.bpa-featured-profiles-2) article .fsCategories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0px;
}

@media (max-width: 1099px) {
  body:not(.home) #fsPageContent .fsPostElement.fsList:not(.bpa-featured-profiles-2) article .fsCategories {
    margin-top: 20px;
  }
}

body:not(.home) #fsPageContent .fsPostElement.fsList:not(.bpa-featured-profiles-2) article .fsCategories li {
  margin-top: 0px;
}

body:not(.home) #fsPageContent .fsPostElement.fsList:not(.bpa-featured-profiles-2) article .fsThumbnail {
  position: absolute;
  left: 0;
  top: 0px;
  height: 200px;
  max-width: 100% !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 300px;
}

@media (max-width: 1099px) {
  body:not(.home) #fsPageContent .fsPostElement.fsList:not(.bpa-featured-profiles-2) article .fsThumbnail {
    position: relative;
    left: inherit;
    top: inherit;
    height: auto;
    width: 100%;
    max-width: 100%;
    background-image: none;
  }
}

body:not(.home) #fsPageContent .fsPostElement.fsList:not(.bpa-featured-profiles-2) article .fsThumbnail img {
  display: none;
  width: 300px;
}

@media (max-width: 1099px) {
  body:not(.home) #fsPageContent .fsPostElement.fsList:not(.bpa-featured-profiles-2) article .fsThumbnail img {
    width: inherit;
    display: block;
  }
}

body:not(.home) #fsPageContent .fsPostElement.fsList:not(.bpa-featured-profiles-2) article.no-image {
  padding-left: 0px;
}

body:not(.home):not(.fsComposeMode) #fsPageContent .fsTwoColumnWideLeftLayout .fsStyleOneThird .fsPostElement.fsList:not(.bpa-featured-profiles-2) article {
  padding-left: 0px !important;
}

body:not(.home):not(.fsComposeMode) #fsPageContent .fsTwoColumnWideLeftLayout .fsStyleOneThird .fsPostElement.fsList:not(.bpa-featured-profiles-2) article .fsThumbnail {
  position: relative;
  left: inherit;
  top: inherit;
}

body:not(.home):not(.fsComposeMode) .fsPostElement.fsList:not(.bpa-featured-profiles-2) article {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #CBD4D6;
}

body:not(.home):not(.fsComposeMode) .fsPostElement.fsList:not(.bpa-featured-profiles-2) article:last-child {
  border: 0;
  margin-bottom: 0;
}

body:not(.home):not(.fsComposeMode) .fsPageContent .fsPostElement.fsList:not(.bpa-featured-profiles-2) button {
  max-width: 143px;
  display: table;
  margin: 0 auto;
  width: 100%;
}

body:not(.home):not(.fsComposeMode) .fsPageContent .fsPostElement.fsList:not(.bpa-featured-profiles-2) .fsThumbnail {
  margin-right: 30px;
}

/*! _dialog.scss - src/sass/modules/post/_dialog.scss - post dialog pop up */

.fsResourceElement .fsTitle {
  margin-bottom: 10px;
}

.fsResourceElement figcaption {
  margin-top: 10px;
}

.fsResourceElement.fsListNav .fsResourceCollectionName + nav {
  margin-top: 20px;
}

.fsResourceElement.fsListNav .fsTitle {
  font-size: 16px;
  line-height: 24px;
  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;
}

.universal-slideshow .slick-list {
  width: 100%;
}

body:not(.fsComposeMode) .universal-slideshow {
  width: 100%;
  margin-top: -109px;
  margin-bottom: 0;
  position: relative;
  z-index: 0;
}

@media (max-width: 1150px) {
  body:not(.fsComposeMode) .universal-slideshow {
    margin-top: -92px;
  }
}

body:not(.fsComposeMode) .universal-slideshow .slick-slider {
  padding: 0 !important;
  margin: 0 !important;
}

body:not(.fsComposeMode) .universal-slideshow article {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding: 0;
  width: 100%;
  height: 100vh;
}

@media (max-width: 1100px) {
  body:not(.fsComposeMode) .universal-slideshow article {
    height: 75vw;
  }
}

body:not(.fsComposeMode) .universal-slideshow article img {
  display: none;
}

body:not(.fsComposeMode) .universal-slideshow article:before {
  content: ' ';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(#001448));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #001448 100%);
  opacity: 0.5;
}

body:not(.fsComposeMode) .universal-slideshow video {
  max-width: unset;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body:not(.fsComposeMode) .universal-slideshow .slick-arrow {
  width: 30px;
  height: 30px;
  border: 1px solid #ffffff;
  border-radius: 100%;
  text-align: center;
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  background-color: rgba(19, 19, 19, 0.2);
  -webkit-transition: all .3s;
  transition: all .3s;
}

body:not(.fsComposeMode) .universal-slideshow .slick-arrow:before {
  color: white;
  font-size: 18px;
  font-family: "IcoMoon";
  position: absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}

body:not(.fsComposeMode) .universal-slideshow .slick-arrow:hover,
body:not(.fsComposeMode) .universal-slideshow .slick-arrow:focus {
  background-color: rgba(19, 19, 19, 0.5);
}

body:not(.fsComposeMode) .universal-slideshow .fsSlideshowPause,
body:not(.fsComposeMode) .universal-slideshow .fsSlideshowPlay {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid #ffffff;
  border-radius: 100%;
  background: none;
  left: auto;
  right: auto;
  cursor: pointer;
  background-color: rgba(19, 19, 19, 0.2);
  -webkit-transition: all .3s;
  transition: all .3s;
}

body:not(.fsComposeMode) .universal-slideshow .fsSlideshowPause:before,
body:not(.fsComposeMode) .universal-slideshow .fsSlideshowPlay:before {
  margin: 0;
  padding: 0;
  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 .fsSlideshowPause:hover,
body:not(.fsComposeMode) .universal-slideshow .fsSlideshowPause:focus,
body:not(.fsComposeMode) .universal-slideshow .fsSlideshowPlay:hover,
body:not(.fsComposeMode) .universal-slideshow .fsSlideshowPlay:focus {
  background-color: rgba(19, 19, 19, 0.5);
}

body:not(.fsComposeMode) .universal-slideshow .fsPrevButton:before {
  content: '\F104';
  left: 45%;
}

body:not(.fsComposeMode) .universal-slideshow .fsNextButton:before {
  content: '\F105';
  left: 55%;
}

body:not(.fsComposeMode) .universal-slideshow .controls-container {
  max-width: 1250px;
  position: absolute;
  bottom: 45px;
  left: 50%;
  padding-left: 20px;
  padding-right: 20px;
  right: auto;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
  width: 100%;
  -webkit-transform: translateX(calc(50% - 135px));
      -ms-transform: translateX(calc(50% - 135px));
          transform: translateX(calc(50% - 135px));
}

body:not(.fsComposeMode) .universal-slideshow .controls-container .fsPrevButton {
  margin-right: 10px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

body:not(.fsComposeMode) .universal-slideshow .controls-container .fsSlideshowPlay {
  margin-right: 10px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

body:not(.fsComposeMode) .universal-slideshow .controls-container .fsSlideshowPause {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-right: 10px;
}

body:not(.fsComposeMode) .universal-slideshow .controls-container .fsNextButton {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

@media (max-width: 1150px) {
  body:not(.fsComposeMode) .universal-slideshow .controls-container {
    width: 150px;
    bottom: 25px;
    -webkit-transform: translatex(-50%);
        -ms-transform: translatex(-50%);
            transform: translatex(-50%);
  }
}

body:not(.fsComposeMode) .universal-slideshow figcaption {
  position: absolute;
  bottom: 55px;
  max-width: 850px;
  position: absolute;
  bottom: 45px;
  left: 50%;
  padding-left: 20px;
  padding-right: 20px;
  right: auto;
  width: 100%;
  -webkit-transform: translateX(calc(-50% + -220px));
      -ms-transform: translateX(calc(-50% + -220px));
          transform: translateX(calc(-50% + -220px));
}

@media (max-width: 1300px) {
  body:not(.fsComposeMode) .universal-slideshow figcaption {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    left: 0;
  }
}

@media (max-width: 1150px) {
  body:not(.fsComposeMode) .universal-slideshow figcaption {
    display: none;
  }
}

body:not(.fsComposeMode) .universal-slideshow figcaption h2 {
  font-size: 36px;
  line-height: 49px;
  color: #ffffff;
  margin-bottom: 10px;
  text-transform: none;
  font-family: "Crimson Text", serif;
  font-weight: normal;
}

body:not(.fsComposeMode) .universal-slideshow figcaption p {
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
  color: #ffffff;
}

body:not(.fsComposeMode) .universal-slideshow figcaption a {
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
  color: #ffffff;
  text-transform: uppercase;
  padding-right: 20px;
  position: relative;
}

body:not(.fsComposeMode) .universal-slideshow figcaption a:after {
  content: '\F101';
  font-family: "IcoMoon";
  margin-left: 10px;
  color: #D4AF37;
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

body:not(.fsComposeMode) .universal-slideshow figcaption a:hover,
body:not(.fsComposeMode) .universal-slideshow figcaption a:focus {
  text-decoration: underline;
  color: #ffffff;
}

body:not(.fsComposeMode) .hero-image {
  width: 100%;
  margin-bottom: 0;
  position: relative;
  z-index: 0;
}

body:not(.fsComposeMode) .hero-image article {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding: 0;
  width: 100%;
  height: 500px;
}

@media (max-width: 1100px) {
  body:not(.fsComposeMode) .hero-image article {
    height: 75vw;
  }
}

body:not(.fsComposeMode) .hero-image article img {
  display: none;
}

body:not(.fsComposeMode) .hero-image article:before {
  content: ' ';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(#001448));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #001448 100%);
  opacity: 0.5;
}

/*! _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 #e5e5e5;
}

.fsSearchElement.fsList .fsListItems {
  padding: 0;
}

.fsSearchElement.fsList .fsSearchResultInfo {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: solid 1px #e5e5e5;
}

.fsSearchElement.fsList .fsSearchResultInfo:empty {
  margin: 0;
  border: none;
}

/*! _custom.scss - src/sass/modules/search/ - custom site search, design based */

/*! 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 #e5e5e5;
  -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 #e5e5e5;
  padding: 0;
  padding-bottom: 20px;
  opacity: 1;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.fsVimeoList .fsVimeoListItem:hover:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.fsVimeoThumb {
  margin-bottom: 10px;
  margin-right: 20px;
}

@media (min-width: 600px) {
  .fsVimeoThumb {
    float: left;
    margin-bottom: 0;
  }
}

.vimeo_view_link a {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .vimeo_view_link a,
.fsBannerRight .vimeo_view_link a,
.fsStyleOneThird .vimeo_view_link a,
.fsThreeColumnLayout > .fsDiv .vimeo_view_link a,
.fsFourColumnLayout > .fsDiv .vimeo_view_link a {
  width: 100%;
  display: block;
  margin-right: 0;
}

.vimeo_view_link a:hover,
.vimeo_view_link a:focus,
.fsStateSelected .vimeo_view_link a,
.vimeo_view_link a.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.vimeo_view_link a em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

/*! 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 #e5e5e5;
  -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 #e5e5e5;
  padding: 0;
  padding-bottom: 20px;
  opacity: 1;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.fsYoutubeList .fsYoutubeListItem:hover:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.fsYoutubeThumb {
  margin-bottom: 10px;
  margin-right: 20px;
  float: none;
}

@media (min-width: 600px) {
  .fsYoutubeThumb {
    float: left;
    margin-bottom: 0;
  }
}

.Youtube_view_link a {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .Youtube_view_link a,
.fsBannerRight .Youtube_view_link a,
.fsStyleOneThird .Youtube_view_link a,
.fsThreeColumnLayout > .fsDiv .Youtube_view_link a,
.fsFourColumnLayout > .fsDiv .Youtube_view_link a {
  width: 100%;
  display: block;
  margin-right: 0;
}

.Youtube_view_link a:hover,
.Youtube_view_link a:focus,
.fsStateSelected .Youtube_view_link a,
.Youtube_view_link a.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.Youtube_view_link a em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

/*! 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: 2px;
}

.fsTabs .fsTabsNav li a {
  display: block;
  margin-top: 0;
  font-weight: normal;
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 20px;
  margin-bottom: 2px;
  display: block;
  font-size: 21px;
  padding: 13.33333px;
  color: #252B33;
  -webkit-transition: .3s;
  transition: .3s;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
  text-transform: none;
  background: transparent;
  color: #696969;
  margin-bottom: 0;
}

.fsTabs .fsTabsNav li a:hover {
  background: transparent;
  color: #252B33;
}

.fsTabs .fsTabsNav li.fsStateSelected a {
  background: transparent;
  color: #252B33;
  -webkit-box-shadow: inset 0 -5px 0 0 #252B33;
          box-shadow: inset 0 -5px 0 0 #252B33;
}

.fsTabs .fsPanel {
  border-top: 1px solid #DCE0E9;
}

.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: 280px;
}

.fsMiniGrid .fsCalendarEventGrid .fsCalendarDaybox {
  -webkit-box-shadow: inset -1px 0 0 0 #fff, inset 0 -1px 0 0 #fff;
          box-shadow: inset -1px 0 0 0 #fff, inset 0 -1px 0 0 #fff;
  background: #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: #131313 !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: #131313;
  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: #001448;
}

/*! pages - home v0.0.1 */

.home .nav-sub,
.home .landing-nav,
.home .custom-top-nav,
.home .custom-breadcrumb {
  display: none;
}

.home #fsPageBodyWrapper {
  padding: 0px;
  margin: 0px;
}

.home #fsPageBody {
  max-width: 100%;
  padding: 0px;
  margin: 0px;
}

.home #fsPageContent {
  padding: 0px;
  margin: 0px;
}

.home #fsPageContent > .fsLayout {
  padding: 0px;
  margin: 0px;
}

.home #fsPageContent > .fsLayout > .fsDiv {
  padding: 0px;
  margin: 0px;
}

body:not(.fsComposeMode) .home-section-1 {
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
  padding-top: 60px;
  padding-bottom: 70px;
}

body:not(.fsComposeMode) .home-section-1 > header {
  text-align: center;
}

body:not(.fsComposeMode) .home-section-1 > header h2 {
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
  margin-bottom: 50px;
}

body:not(.fsComposeMode) .home-section-1 > .fsElementContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
}

body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle {
  border-radius: 100%;
  width: 260px;
  height: 260px;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  -webkit-transition: none;
  transition: none;
}

body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle:before {
  content: ' ';
  width: 260px;
  height: 260px;
  border-radius: 100%;
  border: 2px solid #FFB81C;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: inset 0px 0px 0px 6px #fff;
          box-shadow: inset 0px 0px 0px 6px #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.63)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.63) 100%);
}

body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle > header {
  height: 254px;
  width: 254px;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10px;
  -webkit-transition: all .2s;
  transition: all .2s;
  position: relative;
}

body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle > header h2 {
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  font-family: "Crimson Text", serif;
  text-transform: none;
  position: relative;
  font-weight: normal;
  padding-bottom: 10px;
  margin-bottom: 27px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle > header h2:after {
  content: ' ';
  width: 40px;
  height: 1px;
  background: #FFB81C;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  bottom: 5px;
}

body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle > .fsElementContent {
  position: absolute;
  text-align: center;
  bottom: 7px;
  -webkit-transition: all .3s;
  transition: all .3s;
  padding-left: 20px;
  padding-right: 20px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 254px;
  width: 254px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  border-radius: 100%;
  left: 7px;
}

body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle > .fsElementContent:before {
  content: ' ';
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 100%;
  width: 246px;
  height: 246px;
  bottom: 0;
  left: 0;
  position: absolute;
  -webkit-transition: all .3s;
  transition: all .3s;
  opacity: 0;
  display: block;
  overflow: hidden;
}

body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle > .fsElementContent h2 {
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  font-family: "Crimson Text", serif;
  text-transform: none;
  position: relative;
  font-weight: normal;
  padding-bottom: 10px;
}

body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle > .fsElementContent h2:after {
  content: ' ';
  width: 40px;
  height: 1px;
  background: #FFB81C;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  bottom: 5px;
}

body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle > .fsElementContent p {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
  display: block;
  width: 100%;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
}

body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle > .fsElementContent a {
  font-size: 12px;
  font-weight: bold;
  line-height: 15px;
  position: relative;
  color: #ffffff;
  text-decoration: none;
  display: block;
  -webkit-transition: all .3s;
  transition: all .3s;
}

body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle > .fsElementContent a:hover,
body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle > .fsElementContent a:focus {
  opacity: 0.85;
}

body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle > .fsElementContent a:after {
  content: '\F101';
  font-family: "IcoMoon";
  margin-left: 6px;
  color: #D4AF37;
  font-size: 16px;
  position: absolute;
}

body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle:hover > header {
  opacity: 0;
}

body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle:hover > header h2 {
  margin-bottom: 200px;
}

body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle:hover > .fsElementContent {
  max-height: 248px;
  opacity: 1;
}

body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle:hover > .fsElementContent p,
body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle:hover > .fsElementContent a {
  opacity: 1;
}

body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle:hover > .fsElementContent:before {
  opacity: 1;
  height: 246px;
}

body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle.open > header {
  opacity: 0;
}

body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle.open > header h2 {
  margin-bottom: 200px;
}

body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle.open > .fsElementContent {
  max-height: 248px;
  opacity: 1;
}

body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle.open > .fsElementContent p,
body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle.open > .fsElementContent a {
  opacity: 1;
}

body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle.open > .fsElementContent:before {
  opacity: 1;
  height: 246px;
}

@media (max-width: 1150px) {
  body:not(.fsComposeMode) .home-section-1 {
    position: relative;
    margin: 0 auto;
    max-width: 540px;
    padding-bottom: 40px;
  }

  body:not(.fsComposeMode) .home-section-1 > .fsElementContent .home-circle {
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  body:not(.fsComposeMode) .home-section-1 {
    position: relative;
    margin: 0 auto;
    max-width: 260px;
  }
}

body:not(.fsComposeMode) .home-section-2 {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 40px;
  padding-bottom: 90px;
  margin-bottom: 0;
}

body:not(.fsComposeMode) .home-section-2 > header {
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}

body:not(.fsComposeMode) .home-section-2 > header h2 {
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
  margin-bottom: 10px;
  color: #ffffff;
}

body:not(.fsComposeMode) .home-section-2 > header a {
  font-size: 15px;
  line-height: 19px;
  color: #ffffff;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  padding-right: 20px;
}

body:not(.fsComposeMode) .home-section-2 > header a:after {
  content: '\F101';
  font-family: "IcoMoon";
  margin-left: 10px;
  color: #D4AF37;
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

body:not(.fsComposeMode) .home-section-2 > header a:hover,
body:not(.fsComposeMode) .home-section-2 > header a:focus {
  text-decoration: underline;
  color: #ffffff;
}

body:not(.fsComposeMode) .home-section-2:before {
  content: ' ';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #001448;
  opacity: 0.8;
  display: block;
}

body:not(.fsComposeMode) .home-section-2 > .fsElementContent {
  position: relative;
  margin: 0 auto;
  max-width: 1190px;
  padding-left: 55px;
  padding-right: 55px;
}

@media (max-width: 800px) {
  body:not(.fsComposeMode) .home-section-2 > .fsElementContent {
    position: relative;
    margin: 0 auto;
    max-width: 630px;
  }
}

@media (max-width: 600px) {
  body:not(.fsComposeMode) .home-section-2 > .fsElementContent {
    position: relative;
    margin: 0 auto;
    max-width: 300px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

body:not(.fsComposeMode) .home-section-2 > .fsElementContent article {
  background: #1C3F94;
  border: 1px solid #FFFFFF;
  margin-right: 20px;
  margin-left: 20px;
  min-height: 200px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
  padding-top: 24px;
}

body:not(.fsComposeMode) .home-section-2 > .fsElementContent article:before {
  content: ' ';
  width: 90%;
  height: 90%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(images/heart_white.png) no-repeat center;
  background-size: contain;
  opacity: 0.1;
}

body:not(.fsComposeMode) .home-section-2 > .fsElementContent article time.fsDate {
  z-index: 2;
  background: none;
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  text-align: center;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
  position: relative;
}

body:not(.fsComposeMode) .home-section-2 > .fsElementContent article time.fsDate:after {
  content: ' ';
  height: 3px;
  width: 41px;
  background-color: #D4AF37;
  position: absolute;
  bottom: -10px;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

body:not(.fsComposeMode) .home-section-2 > .fsElementContent article time.fsDate span {
  display: inherit;
  font-size: 18px;
  font-weight: bold;
  line-height: 23px;
  margin: 0;
  text-transform: uppercase;
}

body:not(.fsComposeMode) .home-section-2 > .fsElementContent article time.fsDate .fsMonth {
  margin-right: 5px;
}

body:not(.fsComposeMode) .home-section-2 > .fsElementContent article .fsTitle {
  margin-bottom: 10px;
  z-index: 2;
  position: relative;
  display: block;
  width: 100%;
}

body:not(.fsComposeMode) .home-section-2 > .fsElementContent article .fsTitle a {
  display: block;
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
  color: #ffffff;
  width: 100%;
  text-decoration: none;
}

body:not(.fsComposeMode) .home-section-2 > .fsElementContent article .fsTitle a:hover,
body:not(.fsComposeMode) .home-section-2 > .fsElementContent article .fsTitle a:focus {
  color: #ffffff;
  text-decoration: underline;
}

body:not(.fsComposeMode) .home-section-2 > .fsElementContent article .fsTimeRange,
body:not(.fsComposeMode) .home-section-2 > .fsElementContent article .fsLocation {
  z-index: 2;
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  text-transform: none;
  color: #ffffff;
}

body:not(.fsComposeMode) .home-section-2 > .fsElementContent article .fsTimeRange:after,
body:not(.fsComposeMode) .home-section-2 > .fsElementContent article .fsLocation:after {
  display: none;
}

body:not(.fsComposeMode) .home-section-2 > .fsElementContent article .fsTimeRange:before,
body:not(.fsComposeMode) .home-section-2 > .fsElementContent article .fsLocation:before {
  display: none;
}

body:not(.fsComposeMode) .home-section-2 .slick-arrow {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 100%;
  text-align: center;
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  background-color: #D4AF37;
  font-size: 0;
  color: transparent;
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: all .3s;
  transition: all .3s;
}

body:not(.fsComposeMode) .home-section-2 .slick-arrow:before {
  color: #26262C;
  font-size: 18px;
  font-family: "IcoMoon";
  position: absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all .3s;
  transition: all .3s;
  text-align: center;
}

@media (max-width: 800px) {
  body:not(.fsComposeMode) .home-section-2 .slick-arrow {
    top: auto;
    bottom: -50px;
  }
}

body:not(.fsComposeMode) .home-section-2 .slick-arrow:hover,
body:not(.fsComposeMode) .home-section-2 .slick-arrow:focus {
  background-color: #ffffff;
}

body:not(.fsComposeMode) .home-section-2 .slick-prev {
  left: -40px;
}

@media (max-width: 800px) {
  body:not(.fsComposeMode) .home-section-2 .slick-prev {
    left: 50%;
    -webkit-transform: translateX(calc(-50% - 20px));
        -ms-transform: translateX(calc(-50% - 20px));
            transform: translateX(calc(-50% - 20px));
  }
}

body:not(.fsComposeMode) .home-section-2 .slick-prev:before {
  content: '\F104';
  left: 45%;
}

body:not(.fsComposeMode) .home-section-2 .slick-next {
  right: -40px;
}

@media (max-width: 800px) {
  body:not(.fsComposeMode) .home-section-2 .slick-next {
    left: 50%;
    -webkit-transform: translateX(calc(-50% + 20px));
        -ms-transform: translateX(calc(-50% + 20px));
            transform: translateX(calc(-50% + 20px));
  }
}

body:not(.fsComposeMode) .home-section-2 .slick-next:before {
  content: '\F105';
  left: 55%;
}

body:not(.fsComposeMode) .home-section-3 {
  position: relative;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 40px;
  padding-bottom: 60px;
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  body:not(.fsComposeMode) .home-section-3 {
    padding-bottom: 80px;
  }
}

body:not(.fsComposeMode) .home-section-3 > header {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

body:not(.fsComposeMode) .home-section-3 > header h2 {
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
  margin-bottom: 10px;
  color: #26262C;
}

body:not(.fsComposeMode) .home-section-3 > header a {
  font-size: 15px;
  line-height: 19px;
  color: #26262C;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  padding-right: 20px;
}

body:not(.fsComposeMode) .home-section-3 > header a:after {
  content: '\F101';
  font-family: "IcoMoon";
  margin-left: 10px;
  color: #D4AF37;
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

body:not(.fsComposeMode) .home-section-3 > header a:hover,
body:not(.fsComposeMode) .home-section-3 > header a:focus {
  text-decoration: underline;
  color: #26262C;
}

body:not(.fsComposeMode) .home-section-3 > .fsElementContent {
  position: relative;
  margin: 0 auto;
  max-width: 1190px;
  padding-left: 55px;
  padding-right: 55px;
}

@media (max-width: 1100px) {
  body:not(.fsComposeMode) .home-section-3 > .fsElementContent {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 600px) {
  body:not(.fsComposeMode) .home-section-3 > .fsElementContent {
    padding-left: 5px;
    padding-right: 5px;
  }
}

body:not(.fsComposeMode) .home-section-3 article {
  margin-right: 15px;
  margin-left: 15px;
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
  position: relative;
  overflow: visible;
  padding-bottom: 60px;
}

body:not(.fsComposeMode) .home-section-3 article .fsThumbnail {
  background-color: #001448;
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  max-width: none;
  position: relative;
}

body:not(.fsComposeMode) .home-section-3 article .fsThumbnail img {
  opacity: 0;
}

body:not(.fsComposeMode) .home-section-3 article .fsThumbnail:before {
  content: ' ';
  width: 90%;
  height: 90%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(images/heart_white.png) no-repeat center;
  background-size: contain;
  opacity: 0.1;
}

body:not(.fsComposeMode) .home-section-3 article a.fsThumbnail:before {
  display: none;
}

body:not(.fsComposeMode) .home-section-3 article .post-text-wrapper {
  display: table;
  position: relative;
  z-index: 2;
  background-color: #D4AF37;
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  padding: 20px 30px;
  position: absolute;
  bottom: 0;
  display: block;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (max-width: 600px) {
  body:not(.fsComposeMode) .home-section-3 article .post-text-wrapper {
    width: calc(100% - 30px);
  }
}

body:not(.fsComposeMode) .home-section-3 article .post-text-wrapper .fsTitle {
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
  color: #131313;
  margin-bottom: 8px;
}

body:not(.fsComposeMode) .home-section-3 article .post-text-wrapper .fsDateTime {
  font-size: 12px;
  line-height: 15px;
  color: #131313;
}

body:not(.fsComposeMode) .home-section-3 article .post-text-wrapper .fsReadMoreLink {
  font-size: 12px;
  font-weight: bold;
  line-height: 15px;
  color: #131313;
  position: relative;
  padding-right: 20px;
  max-height: 0px;
  display: block;
  overflow: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
  opacity: 0;
  margin-top: 0px;
}

body:not(.fsComposeMode) .home-section-3 article .post-text-wrapper .fsReadMoreLink:after {
  content: '\F101';
  font-family: "IcoMoon";
  margin-left: 10px;
  color: #131313;
  font-size: 18px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

body:not(.fsComposeMode) .home-section-3 article:hover .post-text-wrapper .fsReadMoreLink,
body:not(.fsComposeMode) .home-section-3 article:focus .post-text-wrapper .fsReadMoreLink {
  max-height: 20px;
  opacity: 1;
  margin-top: 8px;
}

body:not(.fsComposeMode) .home-section-3 article:focus-within .post-text-wrapper .fsReadMoreLink {
  max-height: 20px;
  opacity: 1;
  margin-top: 8px;
}

body:not(.fsComposeMode) .home-section-3 .slick-arrow {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 100%;
  text-align: center;
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  background-color: #001448;
  font-size: 0;
  color: transparent;
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: all .3s;
  transition: all .3s;
}

body:not(.fsComposeMode) .home-section-3 .slick-arrow:before {
  color: #ffffff;
  font-size: 18px;
  font-family: "IcoMoon";
  position: absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all .3s;
  transition: all .3s;
  text-align: center;
}

body:not(.fsComposeMode) .home-section-3 .slick-arrow:hover,
body:not(.fsComposeMode) .home-section-3 .slick-arrow:focus {
  background: #FFB81C;
}

body:not(.fsComposeMode) .home-section-3 .slick-arrow:hover:before,
body:not(.fsComposeMode) .home-section-3 .slick-arrow:focus:before {
  color: #001448;
}

@media (max-width: 1100px) {
  body:not(.fsComposeMode) .home-section-3 .slick-arrow {
    top: auto;
    bottom: -50px;
  }
}

body:not(.fsComposeMode) .home-section-3 .slick-prev {
  left: -40px;
}

@media (max-width: 1100px) {
  body:not(.fsComposeMode) .home-section-3 .slick-prev {
    left: 50%;
    -webkit-transform: translateX(calc(-50% - 20px));
        -ms-transform: translateX(calc(-50% - 20px));
            transform: translateX(calc(-50% - 20px));
  }
}

body:not(.fsComposeMode) .home-section-3 .slick-prev:before {
  content: '\F104';
  left: 45%;
}

body:not(.fsComposeMode) .home-section-3 .slick-next {
  right: -40px;
}

@media (max-width: 1100px) {
  body:not(.fsComposeMode) .home-section-3 .slick-next {
    left: 50%;
    -webkit-transform: translateX(calc(-50% + 20px));
        -ms-transform: translateX(calc(-50% + 20px));
            transform: translateX(calc(-50% + 20px));
  }
}

body:not(.fsComposeMode) .home-section-3 .slick-next:before {
  content: '\F105';
  left: 55%;
}

.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: #696969;
}

.colors.main ol li:nth-of-type(1):after {
  content: "#696969";
}

.colors.main ol li:nth-of-type(2) {
  background: #001448;
}

.colors.main ol li:nth-of-type(2):after {
  content: "#001448";
}

.colors.main ol li:nth-of-type(3) {
  background: #FFB81C;
}

.colors.main ol li:nth-of-type(3):after {
  content: "#FFB81C";
}

@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: "Muli", sans-serif;
}

.fonts ol li:nth-of-type(1):after {
  content: "Muli, sans-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: 36px / line-height: 56px";
}

.headers .fsElementContent h2:after {
  content: " - font-size: 24px / line-height: 31px";
}

.headers .fsElementContent h3:after {
  content: " - font-size: 20px / line-height: 24px";
}

.headers .fsElementContent h4:after {
  content: " - font-size: 16px / line-height: 19px";
}

.headers .fsElementContent h5:after {
  content: " - font-size: 17px / line-height: 20px";
}

.headers .fsElementContent h6:after {
  content: " - font-size: 13px / line-height: 15px";
}

@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;
  }
}/*! helpers - functions v0.0.1 */

/*! helpers - utility v0.0.1 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*! helpers - presentational v0.0.1 */

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

/*
Example sites:
http://coderepo.demo.finalsite.com/stuff-by-al/dropdown-mixin
http://codepen.io/foxareld/pen/BNpWJm

Ex 1:
    <div class='parent'>
      <span class='sibling'>Dropdown</span>
      <ul class='dropdown'>
        <li>Link</li>
        <li>Link</li>
        <li>Link</li>
      </ul>
    </div>

Use:
    .parent {
        @include drop(".dropdown"); //this makes .dropdown drop on hover of .parent
    }

    //this makes .dropdown drop when .parent has class .drop-class, it was also have a transition
    .parent {
        @include drop(".dropdown", true, ".drop-class");
    }

    //this makes .dropdown drop when .sibling has class .drop-class, it will not have a transition
    .sibling {
        @include drop("+ .dropdown", false, ".drop-class");
    }

*/

/*! helpers - typography v0.0.1 */

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

h1 {
  margin-top: 0;
  font-weight: normal;
  font-size: 36px;
  line-height: 56px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h2 {
  margin-top: 0;
  font-weight: normal;
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h3 {
  margin-top: 0;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h4 {
  margin-top: 0;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h5 {
  margin-top: 0;
  font-weight: normal;
  font-size: 17px;
  line-height: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h6 {
  margin-top: 0;
  font-weight: normal;
  font-size: 13px;
  line-height: 15px;
  margin-bottom: 10px;
  color: #696969;
  text-transform: uppercase;
  font-weight: bold;
}

p {
  margin: 0 0 20px;
}

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

hr {
  margin: 0 auto 20px;
}

a {
  text-decoration: none;
  color: #131313;
  -webkit-transition: background .3s, color .3s;
  transition: background .3s, color .3s;
}

a:hover,
a:focus {
  color: #131313;
}

.fsNavigation a {
  text-decoration: none;
}

a {
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: none;
}

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

table.fs_style_4 {
  margin-bottom: 20px;
  width: 100%;
}

table.fs_style_4 th,
table.fs_style_4 td {
  vertical-align: top;
  border-bottom: none;
}

table.fs_style_4 th {
  padding: 10px 20px;
  background: #001448;
  color: #ffffff;
  text-align: left;
  border: 1px solid #001448;
}

table.fs_style_4 td {
  padding: 10px 20px;
  background: #ffffff;
  border-bottom: 1px solid #DCE0E9;
}

table.fs_style_4 tr:nth-of-type(odd) td {
  background-color: #ffffff;
}

table.fs_style_4 tr {
  border-bottom: solid 1px #ffffff;
}

table.fs_style_4 tr td:first-child {
  border-left: 1px solid #DCE0E9;
}

table.fs_style_4 tr td:last-child {
  border-right: 1px solid #DCE0E9;
}

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: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_5,
.fsBannerRight .fs_style_5,
.fsStyleOneThird .fs_style_5,
.fsThreeColumnLayout > .fsDiv .fs_style_5,
.fsFourColumnLayout > .fsDiv .fs_style_5 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_5:hover,
.fs_style_5:focus,
.fsStateSelected .fs_style_5,
.fs_style_5.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fs_style_5 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_6 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #1C3F94;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #1C3F94;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_6,
.fsBannerRight .fs_style_6,
.fsStyleOneThird .fs_style_6,
.fsThreeColumnLayout > .fsDiv .fs_style_6,
.fsFourColumnLayout > .fsDiv .fs_style_6 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_6:hover,
.fs_style_6:focus,
.fsStateSelected .fs_style_6,
.fs_style_6.on {
  background: #ffffff;
  color: #1C3F94;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #1C3F94;
}

.fs_style_6 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_7 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #131313;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_7,
.fsBannerRight .fs_style_7,
.fsStyleOneThird .fs_style_7,
.fsThreeColumnLayout > .fsDiv .fs_style_7,
.fsFourColumnLayout > .fsDiv .fs_style_7 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_7:hover,
.fs_style_7:focus,
.fsStateSelected .fs_style_7,
.fs_style_7.on {
  background: #ffffff;
  color: #131313;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fs_style_7 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_8 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #FFB81C;
  color: #121212;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #FFB81C;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_8,
.fsBannerRight .fs_style_8,
.fsStyleOneThird .fs_style_8,
.fsThreeColumnLayout > .fsDiv .fs_style_8,
.fsFourColumnLayout > .fsDiv .fs_style_8 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_8:hover,
.fs_style_8:focus,
.fsStateSelected .fs_style_8,
.fs_style_8.on {
  background: #ffffff;
  color: #121212;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #FFB81C;
}

.fs_style_8 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_XY {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #FFB81C;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_XY,
.fsBannerRight .fs_style_XY,
.fsStyleOneThird .fs_style_XY,
.fsThreeColumnLayout > .fsDiv .fs_style_XY,
.fsFourColumnLayout > .fsDiv .fs_style_XY {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_XY:hover,
.fs_style_XY:focus,
.fsStateSelected .fs_style_XY,
.fs_style_XY.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fs_style_XY em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_9 {
  padding: 30px 80px;
  font-size: 17px;
  font-weight: bold;
  line-height: 21px;
  text-align: center;
}

.fs_style_9 em {
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_10 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: transparent;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #ffffff;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_10,
.fsBannerRight .fs_style_10,
.fsStyleOneThird .fs_style_10,
.fsThreeColumnLayout > .fsDiv .fs_style_10,
.fsFourColumnLayout > .fsDiv .fs_style_10 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_10:hover,
.fs_style_10:focus,
.fsStateSelected .fs_style_10,
.fs_style_10.on {
  background: #ffffff;
  color: #121212;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #ffffff;
}

.fs_style_10 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_11 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #F7F8FB;
  color: #252B33;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #DCE0E9;
  border-radius: 2px;
  width: 100%;
  text-align: left;
  padding-left: 25px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: bold;
  line-height: 23px;
}

.fsBannerLeft .fs_style_11,
.fsBannerRight .fs_style_11,
.fsStyleOneThird .fs_style_11,
.fsThreeColumnLayout > .fsDiv .fs_style_11,
.fsFourColumnLayout > .fsDiv .fs_style_11 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_11:hover,
.fs_style_11:focus,
.fsStateSelected .fs_style_11,
.fs_style_11.on {
  background: #ffffff;
  color: #252B33;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #DCE0E9;
}

.fs_style_11 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_11:before {
  content: '\E912';
  font-family: "IcoMoon";
  font-weight: normal;
  margin-right: 15px;
}

.fs_style_12 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #F7F8FB;
  color: #252B33;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #DCE0E9;
  border-radius: 2px;
  width: 100%;
  text-align: left;
  padding-left: 25px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: bold;
  line-height: 23px;
}

.fsBannerLeft .fs_style_12,
.fsBannerRight .fs_style_12,
.fsStyleOneThird .fs_style_12,
.fsThreeColumnLayout > .fsDiv .fs_style_12,
.fsFourColumnLayout > .fsDiv .fs_style_12 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_12:hover,
.fs_style_12:focus,
.fsStateSelected .fs_style_12,
.fs_style_12.on {
  background: #ffffff;
  color: #252B33;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #DCE0E9;
}

.fs_style_12 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_12:before {
  content: '\E903';
  font-family: "IcoMoon";
  font-weight: normal;
  margin-right: 15px;
}

.fsStyleDefaultButton {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fsStyleDefaultButton,
.fsBannerRight .fsStyleDefaultButton,
.fsStyleOneThird .fsStyleDefaultButton,
.fsThreeColumnLayout > .fsDiv .fsStyleDefaultButton,
.fsFourColumnLayout > .fsDiv .fsStyleDefaultButton {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fsStyleDefaultButton:hover,
.fsStyleDefaultButton:focus,
.fsStateSelected .fsStyleDefaultButton,
.fsStyleDefaultButton.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fsStyleDefaultButton em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fsStyleDefaultButton.fsLoadMoreButton {
  margin-bottom: 0;
}

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

.fsStyleUpdateButton {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fsStyleUpdateButton,
.fsBannerRight .fsStyleUpdateButton,
.fsStyleOneThird .fsStyleUpdateButton,
.fsThreeColumnLayout > .fsDiv .fsStyleUpdateButton,
.fsFourColumnLayout > .fsDiv .fsStyleUpdateButton {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fsStyleUpdateButton:hover,
.fsStyleUpdateButton:focus,
.fsStateSelected .fsStyleUpdateButton,
.fsStyleUpdateButton.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fsStyleUpdateButton em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

/*! helpers - functions v0.0.1 */

/*! helpers - utility v0.0.1 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*! helpers - presentational v0.0.1 */

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

/*
Example sites:
http://coderepo.demo.finalsite.com/stuff-by-al/dropdown-mixin
http://codepen.io/foxareld/pen/BNpWJm

Ex 1:
    <div class='parent'>
      <span class='sibling'>Dropdown</span>
      <ul class='dropdown'>
        <li>Link</li>
        <li>Link</li>
        <li>Link</li>
      </ul>
    </div>

Use:
    .parent {
        @include drop(".dropdown"); //this makes .dropdown drop on hover of .parent
    }

    //this makes .dropdown drop when .parent has class .drop-class, it was also have a transition
    .parent {
        @include drop(".dropdown", true, ".drop-class");
    }

    //this makes .dropdown drop when .sibling has class .drop-class, it will not have a transition
    .sibling {
        @include drop("+ .dropdown", false, ".drop-class");
    }

*/

/*! helpers - typography v0.0.1 */

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

h1 {
  margin-top: 0;
  font-weight: normal;
  font-size: 36px;
  line-height: 56px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h2 {
  margin-top: 0;
  font-weight: normal;
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h3 {
  margin-top: 0;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h4 {
  margin-top: 0;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h5 {
  margin-top: 0;
  font-weight: normal;
  font-size: 17px;
  line-height: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h6 {
  margin-top: 0;
  font-weight: normal;
  font-size: 13px;
  line-height: 15px;
  margin-bottom: 10px;
  color: #696969;
  text-transform: uppercase;
  font-weight: bold;
}

p {
  margin: 0 0 20px;
}

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

hr {
  margin: 0 auto 20px;
}

a {
  text-decoration: none;
  color: #131313;
  -webkit-transition: background .3s, color .3s;
  transition: background .3s, color .3s;
}

a:hover,
a:focus {
  color: #131313;
}

.fsNavigation a {
  text-decoration: none;
}

a {
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: none;
}

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

table.fs_style_4 {
  margin-bottom: 20px;
  width: 100%;
}

table.fs_style_4 th,
table.fs_style_4 td {
  vertical-align: top;
  border-bottom: none;
}

table.fs_style_4 th {
  padding: 10px 20px;
  background: #001448;
  color: #ffffff;
  text-align: left;
  border: 1px solid #001448;
}

table.fs_style_4 td {
  padding: 10px 20px;
  background: #ffffff;
  border-bottom: 1px solid #DCE0E9;
}

table.fs_style_4 tr:nth-of-type(odd) td {
  background-color: #ffffff;
}

table.fs_style_4 tr {
  border-bottom: solid 1px #ffffff;
}

table.fs_style_4 tr td:first-child {
  border-left: 1px solid #DCE0E9;
}

table.fs_style_4 tr td:last-child {
  border-right: 1px solid #DCE0E9;
}

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: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_5,
.fsBannerRight .fs_style_5,
.fsStyleOneThird .fs_style_5,
.fsThreeColumnLayout > .fsDiv .fs_style_5,
.fsFourColumnLayout > .fsDiv .fs_style_5 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_5:hover,
.fs_style_5:focus,
.fsStateSelected .fs_style_5,
.fs_style_5.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fs_style_5 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_6 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #1C3F94;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #1C3F94;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_6,
.fsBannerRight .fs_style_6,
.fsStyleOneThird .fs_style_6,
.fsThreeColumnLayout > .fsDiv .fs_style_6,
.fsFourColumnLayout > .fsDiv .fs_style_6 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_6:hover,
.fs_style_6:focus,
.fsStateSelected .fs_style_6,
.fs_style_6.on {
  background: #ffffff;
  color: #1C3F94;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #1C3F94;
}

.fs_style_6 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_7 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #131313;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_7,
.fsBannerRight .fs_style_7,
.fsStyleOneThird .fs_style_7,
.fsThreeColumnLayout > .fsDiv .fs_style_7,
.fsFourColumnLayout > .fsDiv .fs_style_7 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_7:hover,
.fs_style_7:focus,
.fsStateSelected .fs_style_7,
.fs_style_7.on {
  background: #ffffff;
  color: #131313;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fs_style_7 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_8 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #FFB81C;
  color: #121212;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #FFB81C;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_8,
.fsBannerRight .fs_style_8,
.fsStyleOneThird .fs_style_8,
.fsThreeColumnLayout > .fsDiv .fs_style_8,
.fsFourColumnLayout > .fsDiv .fs_style_8 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_8:hover,
.fs_style_8:focus,
.fsStateSelected .fs_style_8,
.fs_style_8.on {
  background: #ffffff;
  color: #121212;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #FFB81C;
}

.fs_style_8 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_XY {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #FFB81C;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_XY,
.fsBannerRight .fs_style_XY,
.fsStyleOneThird .fs_style_XY,
.fsThreeColumnLayout > .fsDiv .fs_style_XY,
.fsFourColumnLayout > .fsDiv .fs_style_XY {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_XY:hover,
.fs_style_XY:focus,
.fsStateSelected .fs_style_XY,
.fs_style_XY.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fs_style_XY em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_9 {
  padding: 30px 80px;
  font-size: 17px;
  font-weight: bold;
  line-height: 21px;
  text-align: center;
}

.fs_style_9 em {
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_10 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: transparent;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #ffffff;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_10,
.fsBannerRight .fs_style_10,
.fsStyleOneThird .fs_style_10,
.fsThreeColumnLayout > .fsDiv .fs_style_10,
.fsFourColumnLayout > .fsDiv .fs_style_10 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_10:hover,
.fs_style_10:focus,
.fsStateSelected .fs_style_10,
.fs_style_10.on {
  background: #ffffff;
  color: #121212;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #ffffff;
}

.fs_style_10 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_11 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #F7F8FB;
  color: #252B33;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #DCE0E9;
  border-radius: 2px;
  width: 100%;
  text-align: left;
  padding-left: 25px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: bold;
  line-height: 23px;
}

.fsBannerLeft .fs_style_11,
.fsBannerRight .fs_style_11,
.fsStyleOneThird .fs_style_11,
.fsThreeColumnLayout > .fsDiv .fs_style_11,
.fsFourColumnLayout > .fsDiv .fs_style_11 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_11:hover,
.fs_style_11:focus,
.fsStateSelected .fs_style_11,
.fs_style_11.on {
  background: #ffffff;
  color: #252B33;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #DCE0E9;
}

.fs_style_11 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_11:before {
  content: '\E912';
  font-family: "IcoMoon";
  font-weight: normal;
  margin-right: 15px;
}

.fs_style_12 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #F7F8FB;
  color: #252B33;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #DCE0E9;
  border-radius: 2px;
  width: 100%;
  text-align: left;
  padding-left: 25px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: bold;
  line-height: 23px;
}

.fsBannerLeft .fs_style_12,
.fsBannerRight .fs_style_12,
.fsStyleOneThird .fs_style_12,
.fsThreeColumnLayout > .fsDiv .fs_style_12,
.fsFourColumnLayout > .fsDiv .fs_style_12 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_12:hover,
.fs_style_12:focus,
.fsStateSelected .fs_style_12,
.fs_style_12.on {
  background: #ffffff;
  color: #252B33;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #DCE0E9;
}

.fs_style_12 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_12:before {
  content: '\E903';
  font-family: "IcoMoon";
  font-weight: normal;
  margin-right: 15px;
}

.fsStyleDefaultButton {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fsStyleDefaultButton,
.fsBannerRight .fsStyleDefaultButton,
.fsStyleOneThird .fsStyleDefaultButton,
.fsThreeColumnLayout > .fsDiv .fsStyleDefaultButton,
.fsFourColumnLayout > .fsDiv .fsStyleDefaultButton {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fsStyleDefaultButton:hover,
.fsStyleDefaultButton:focus,
.fsStateSelected .fsStyleDefaultButton,
.fsStyleDefaultButton.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fsStyleDefaultButton em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fsStyleDefaultButton.fsLoadMoreButton {
  margin-bottom: 0;
}

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

.fsStyleUpdateButton {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fsStyleUpdateButton,
.fsBannerRight .fsStyleUpdateButton,
.fsStyleOneThird .fsStyleUpdateButton,
.fsThreeColumnLayout > .fsDiv .fsStyleUpdateButton,
.fsFourColumnLayout > .fsDiv .fsStyleUpdateButton {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fsStyleUpdateButton:hover,
.fsStyleUpdateButton:focus,
.fsStateSelected .fsStyleUpdateButton,
.fsStyleUpdateButton.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fsStyleUpdateButton em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

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

.bpa-infographic-1 section:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'infographic1' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.infographic1-cloud:before {
  content: "\E900";
}

.infographic1-star:before {
  content: "\E901";
}

.infographic1-video:before {
  content: "\E902";
}

.infographic1-user:before {
  content: "\E903";
}

.infographic1-search:before {
  content: "\E904";
}

.infographic1-bulb:before {
  content: "\E915";
}

.infographic1-settings:before {
  content: "\E905";
}

.infographic1-camera:before {
  content: "\E906";
}

.infographic1-lock:before {
  content: "\E907";
}

.infographic1-location:before {
  content: "\E908";
}

.infographic1-phone:before {
  content: "\E909";
}

.infographic1-like:before {
  content: "\E90A";
}

.infographic1-note:before {
  content: "\E90B";
}

.infographic1-megaphone:before {
  content: "\E90C";
}

.infographic1-beaker:before {
  content: "\E90D";
}

.infographic1-book:before {
  content: "\E90E";
}

.infographic1-check:before {
  content: "\E90F";
}

.infographic1-droplet:before {
  content: "\E910";
}

.infographic1-globe:before {
  content: "\E911";
}

.infographic1-graduate-cap:before {
  content: "\E912";
}

.infographic1-heart:before {
  content: "\E913";
}

.infographic1-laptop:before {
  content: "\E914";
}

.infographic1-lightbulb:before {
  content: "\E915";
}

.infographic1-microscope:before {
  content: "\E916";
}

.infographic1-money:before {
  content: "\E917";
}

.infographic1-music:before {
  content: "\E918";
}

.infographic1-pencil:before {
  content: "\E919";
}

.infographic1-podium:before {
  content: "\E91A";
}

.infographic1-ribbon:before {
  content: "\E91B";
}

.infographic1-teacher:before {
  content: "\E91C";
}

.infographic1-trophy:before {
  content: "\E91D";
}

.infographic1-athletics:before {
  content: "\E91E";
}

.infographic1-arrow-left:before {
  content: "\E91F";
}

.bpa-infographic-1 {
  background-color: #D4AF37;
  padding: 40px 20px 20px 20px;
}

body .bpa-infographic-1 {
  width: 100vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  position: relative;
}

.bpa-infographic-1 > header {
  text-align: center;
  padding-bottom: 30px;
}

.bpa-infographic-1 > header .fsElementTitle {
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
  color: #000000;
}

.bpa-infographic-1 > .fsElementContent {
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
}

body:not(.fsDraftMode) .bpa-infographic-1 > .fsElementContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media (max-width: 1099px) {
  body .bpa-infographic-1 > .fsElementContent {
    position: relative;
    margin: 0 auto;
    max-width: 730px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 599px) {
  body .bpa-infographic-1 > .fsElementContent {
    padding-bottom: 40px;
    position: relative;
    margin: 0 auto;
    max-width: 360px;
  }

  body .bpa-infographic-1 > .fsElementContent .slick-slide {
    max-width: 100% !important;
    margin: 0 20px 40px 20px !important;
  }
}

body.fsHasLeftBanner .bpa-infographic-1 > .fsElementContent,
body.fsHasRightBanner .bpa-infographic-1 > .fsElementContent {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin: 0 auto;
  max-width: 730px;
}

@media (max-width: 949px) {
  body.fsHasLeftBanner .bpa-infographic-1 > .fsElementContent,
  body.fsHasRightBanner .bpa-infographic-1 > .fsElementContent {
    padding-bottom: 50px !important;
  }

  body.fsHasLeftBanner .bpa-infographic-1 > .fsElementContent .slick-slide,
  body.fsHasRightBanner .bpa-infographic-1 > .fsElementContent .slick-slide {
    max-width: 100% !important;
    margin: 0 20px 40px 20px !important;
  }
}

.bpa-infographic-1 > .fsElementContent > .fsElement,
.bpa-infographic-1 > .fsElementContent .slick-slide {
  color: #1C1C1C;
  background: #fff;
  position: relative;
  text-align: center;
}

body:not(.fsDraftMode) .bpa-infographic-1 > .fsElementContent > .fsElement,
body:not(.fsDraftMode) .bpa-infographic-1 > .fsElementContent .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  margin: 0 10px 40px 10px;
  min-height: 360px;
  max-width: 330px;
  min-width: 220px;
  padding: 0 22px;
}

.bpa-infographic-1 > .fsElementContent > .fsElement:before,
.bpa-infographic-1 > .fsElementContent .slick-slide:before {
  color: #001448;
  display: block;
  width: 100%;
  padding-top: 70px;
  line-height: 1;
  font-size: 70px;
}

.bpa-infographic-1 > .fsElementContent > .fsElement header,
.bpa-infographic-1 > .fsElementContent .slick-slide header {
  width: 100%;
  padding-top: 20px;
  padding-top: 10px;
}

.bpa-infographic-1 > .fsElementContent > .fsElement .fsElementTitle,
.bpa-infographic-1 > .fsElementContent .slick-slide .fsElementTitle {
  font-size: 4em;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: bold;
  line-height: 63px;
}

.bpa-infographic-1 > .fsElementContent > .fsElement .fsElementContent,
.bpa-infographic-1 > .fsElementContent .slick-slide .fsElementContent {
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  text-align: center;
  width: 100%;
}

.bpa-infographic-1 .slick-arrow {
  border: 0;
  background: none;
  margin: 0;
  padding: 0;
  position: absolute;
  font-size: 0;
  bottom: 20px;
  bottom: 0px;
  width: 15px;
  height: 27px;
  cursor: pointer;
  z-index: 2;
}

.bpa-infographic-1 .slick-arrow:before {
  color: #1C1C1C;
  content: '\E91F';
  font-family: infographic1;
  display: inline-block;
  font-size: 26px;
  height: 27px;
  width: 15px;
  line-height: 1;
}

.bpa-infographic-1 .slick-arrow.slick-prev {
  -webkit-transform: translateX(-34px);
      -ms-transform: translateX(-34px);
          transform: translateX(-34px);
}

.bpa-infographic-1 .slick-arrow.slick-next {
  -webkit-transform: translateX(34px);
      -ms-transform: translateX(34px);
          transform: translateX(34px);
}

.bpa-infographic-1 .slick-arrow.slick-next:before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.bpa-infographic-1.dark-theme {
  background-color: #001448;
}

.bpa-infographic-1.dark-theme > header > .fsElementTitle {
  color: #fff;
}

.bpa-infographic-1.dark-theme > .fsElementContent > .fsElement,
.bpa-infographic-1.dark-theme > .fsElementContent .slick-slide {
  color: #fff;
  background: #000d2f;
}

.bpa-infographic-1.dark-theme > .fsElementContent > .fsElement:before,
.bpa-infographic-1.dark-theme > .fsElementContent .slick-slide:before {
  color: #002995;
}

.bpa-infographic-1.dark-theme > .fsElementContent > .fsElement .fsElementTitle,
.bpa-infographic-1.dark-theme > .fsElementContent .slick-slide .fsElementTitle {
  color: #fff;
}

.bpa-infographic-1.dark-theme .slick-arrow:before {
  color: #fff;
}

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

.icon-list li {
  margin: 0;
  padding: 0;
}

.icon-list li {
  margin: 6px 0px;
}

.icon-list li:before {
  font-size: 30px;
  margin-right: 14px;
}@charset "UTF-8";

/*! helpers - functions v0.0.1 */

/*! helpers - utility v0.0.1 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*! helpers - presentational v0.0.1 */

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

/*
Example sites:
http://coderepo.demo.finalsite.com/stuff-by-al/dropdown-mixin
http://codepen.io/foxareld/pen/BNpWJm

Ex 1:
    <div class='parent'>
      <span class='sibling'>Dropdown</span>
      <ul class='dropdown'>
        <li>Link</li>
        <li>Link</li>
        <li>Link</li>
      </ul>
    </div>

Use:
    .parent {
        @include drop(".dropdown"); //this makes .dropdown drop on hover of .parent
    }

    //this makes .dropdown drop when .parent has class .drop-class, it was also have a transition
    .parent {
        @include drop(".dropdown", true, ".drop-class");
    }

    //this makes .dropdown drop when .sibling has class .drop-class, it will not have a transition
    .sibling {
        @include drop("+ .dropdown", false, ".drop-class");
    }

*/

/*! helpers - typography v0.0.1 */

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

h1 {
  margin-top: 0;
  font-weight: normal;
  font-size: 36px;
  line-height: 56px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h2 {
  margin-top: 0;
  font-weight: normal;
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h3 {
  margin-top: 0;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h4 {
  margin-top: 0;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h5 {
  margin-top: 0;
  font-weight: normal;
  font-size: 17px;
  line-height: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h6 {
  margin-top: 0;
  font-weight: normal;
  font-size: 13px;
  line-height: 15px;
  margin-bottom: 10px;
  color: #696969;
  text-transform: uppercase;
  font-weight: bold;
}

p {
  margin: 0 0 20px;
}

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

hr {
  margin: 0 auto 20px;
}

a {
  text-decoration: none;
  color: #131313;
  -webkit-transition: background .3s, color .3s;
  transition: background .3s, color .3s;
}

a:hover,
a:focus {
  color: #131313;
}

.fsNavigation a {
  text-decoration: none;
}

a {
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: none;
}

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

table.fs_style_4 {
  margin-bottom: 20px;
  width: 100%;
}

table.fs_style_4 th,
table.fs_style_4 td {
  vertical-align: top;
  border-bottom: none;
}

table.fs_style_4 th {
  padding: 10px 20px;
  background: #001448;
  color: #ffffff;
  text-align: left;
  border: 1px solid #001448;
}

table.fs_style_4 td {
  padding: 10px 20px;
  background: #ffffff;
  border-bottom: 1px solid #DCE0E9;
}

table.fs_style_4 tr:nth-of-type(odd) td {
  background-color: #ffffff;
}

table.fs_style_4 tr {
  border-bottom: solid 1px #ffffff;
}

table.fs_style_4 tr td:first-child {
  border-left: 1px solid #DCE0E9;
}

table.fs_style_4 tr td:last-child {
  border-right: 1px solid #DCE0E9;
}

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: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_5,
.fsBannerRight .fs_style_5,
.fsStyleOneThird .fs_style_5,
.fsThreeColumnLayout > .fsDiv .fs_style_5,
.fsFourColumnLayout > .fsDiv .fs_style_5 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_5:hover,
.fs_style_5:focus,
.fsStateSelected .fs_style_5,
.fs_style_5.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fs_style_5 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_6 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #1C3F94;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #1C3F94;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_6,
.fsBannerRight .fs_style_6,
.fsStyleOneThird .fs_style_6,
.fsThreeColumnLayout > .fsDiv .fs_style_6,
.fsFourColumnLayout > .fsDiv .fs_style_6 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_6:hover,
.fs_style_6:focus,
.fsStateSelected .fs_style_6,
.fs_style_6.on {
  background: #ffffff;
  color: #1C3F94;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #1C3F94;
}

.fs_style_6 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_7 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #131313;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_7,
.fsBannerRight .fs_style_7,
.fsStyleOneThird .fs_style_7,
.fsThreeColumnLayout > .fsDiv .fs_style_7,
.fsFourColumnLayout > .fsDiv .fs_style_7 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_7:hover,
.fs_style_7:focus,
.fsStateSelected .fs_style_7,
.fs_style_7.on {
  background: #ffffff;
  color: #131313;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fs_style_7 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_8 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #FFB81C;
  color: #121212;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #FFB81C;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_8,
.fsBannerRight .fs_style_8,
.fsStyleOneThird .fs_style_8,
.fsThreeColumnLayout > .fsDiv .fs_style_8,
.fsFourColumnLayout > .fsDiv .fs_style_8 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_8:hover,
.fs_style_8:focus,
.fsStateSelected .fs_style_8,
.fs_style_8.on {
  background: #ffffff;
  color: #121212;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #FFB81C;
}

.fs_style_8 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_XY {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #FFB81C;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_XY,
.fsBannerRight .fs_style_XY,
.fsStyleOneThird .fs_style_XY,
.fsThreeColumnLayout > .fsDiv .fs_style_XY,
.fsFourColumnLayout > .fsDiv .fs_style_XY {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_XY:hover,
.fs_style_XY:focus,
.fsStateSelected .fs_style_XY,
.fs_style_XY.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fs_style_XY em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_9 {
  padding: 30px 80px;
  font-size: 17px;
  font-weight: bold;
  line-height: 21px;
  text-align: center;
}

.fs_style_9 em {
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_10 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: transparent;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #ffffff;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_10,
.fsBannerRight .fs_style_10,
.fsStyleOneThird .fs_style_10,
.fsThreeColumnLayout > .fsDiv .fs_style_10,
.fsFourColumnLayout > .fsDiv .fs_style_10 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_10:hover,
.fs_style_10:focus,
.fsStateSelected .fs_style_10,
.fs_style_10.on {
  background: #ffffff;
  color: #121212;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #ffffff;
}

.fs_style_10 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_11 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #F7F8FB;
  color: #252B33;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #DCE0E9;
  border-radius: 2px;
  width: 100%;
  text-align: left;
  padding-left: 25px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: bold;
  line-height: 23px;
}

.fsBannerLeft .fs_style_11,
.fsBannerRight .fs_style_11,
.fsStyleOneThird .fs_style_11,
.fsThreeColumnLayout > .fsDiv .fs_style_11,
.fsFourColumnLayout > .fsDiv .fs_style_11 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_11:hover,
.fs_style_11:focus,
.fsStateSelected .fs_style_11,
.fs_style_11.on {
  background: #ffffff;
  color: #252B33;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #DCE0E9;
}

.fs_style_11 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_11:before {
  content: '\E912';
  font-family: "IcoMoon";
  font-weight: normal;
  margin-right: 15px;
}

.fs_style_12 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #F7F8FB;
  color: #252B33;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #DCE0E9;
  border-radius: 2px;
  width: 100%;
  text-align: left;
  padding-left: 25px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: bold;
  line-height: 23px;
}

.fsBannerLeft .fs_style_12,
.fsBannerRight .fs_style_12,
.fsStyleOneThird .fs_style_12,
.fsThreeColumnLayout > .fsDiv .fs_style_12,
.fsFourColumnLayout > .fsDiv .fs_style_12 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_12:hover,
.fs_style_12:focus,
.fsStateSelected .fs_style_12,
.fs_style_12.on {
  background: #ffffff;
  color: #252B33;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #DCE0E9;
}

.fs_style_12 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_12:before {
  content: '\E903';
  font-family: "IcoMoon";
  font-weight: normal;
  margin-right: 15px;
}

.fsStyleDefaultButton {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fsStyleDefaultButton,
.fsBannerRight .fsStyleDefaultButton,
.fsStyleOneThird .fsStyleDefaultButton,
.fsThreeColumnLayout > .fsDiv .fsStyleDefaultButton,
.fsFourColumnLayout > .fsDiv .fsStyleDefaultButton {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fsStyleDefaultButton:hover,
.fsStyleDefaultButton:focus,
.fsStateSelected .fsStyleDefaultButton,
.fsStyleDefaultButton.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fsStyleDefaultButton em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fsStyleDefaultButton.fsLoadMoreButton {
  margin-bottom: 0;
}

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

.fsStyleUpdateButton {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fsStyleUpdateButton,
.fsBannerRight .fsStyleUpdateButton,
.fsStyleOneThird .fsStyleUpdateButton,
.fsThreeColumnLayout > .fsDiv .fsStyleUpdateButton,
.fsFourColumnLayout > .fsDiv .fsStyleUpdateButton {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fsStyleUpdateButton:hover,
.fsStyleUpdateButton:focus,
.fsStateSelected .fsStyleUpdateButton,
.fsStyleUpdateButton.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fsStyleUpdateButton em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

body:not(.fsComposeMode):not(.fsHasLeftBanner):not(.fsHasRightBanner) .testimonial-slider-dark {
  width: 100vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
  position: relative;
  padding-top: 1.25em;
  padding-bottom: 1.25em;
}

body:not(.fsComposeMode) .testimonial-slider-dark {
  background-color: #001448;
}

body:not(.fsComposeMode) .testimonial-slider-dark > .fsElementContent,
body:not(.fsComposeMode) .testimonial-slider-dark > header,
body:not(.fsComposeMode) .testimonial-slider-dark > footer {
  position: relative;
  margin: 0 auto;
  max-width: 1180px;
}

body:not(.fsComposeMode) .testimonial-slider-dark .fsElementTitle {
  color: #fff;
}

body:not(.fsComposeMode) .testimonial-slider-dark .testimonial-slides .fsElement > footer {
  background-color: #fff;
  color: #001448;
}

body:not(.fsComposeMode) .testimonial-slider-dark .testimonial-slides .fsElement > footer:after {
  border-color: transparent transparent #fff transparent;
}

body:not(.fsComposeMode) .testimonial-slider-dark .testimonial-slides .slick-dots button {
  background-color: rgba(0, 20, 72, 0.4);
}

body:not(.fsComposeMode) .testimonial-slider-dark .testimonial-slides .slick-dots .slick-active button,
body:not(.fsComposeMode) .testimonial-slider-dark .testimonial-slides .slick-dots button:hover {
  background-color: rgba(0, 20, 72, 0.8);
}

@media (min-width: 600px) {
  body:not(.fsComposeMode) .testimonial-slider-dark .testimonial-slides:not([class*=stacked]) .fsElement > footer:after {
    border-color: transparent #fff transparent transparent;
  }
}

body:not(.fsComposeMode) .testimonial-slides .fsElement {
  margin-bottom: 0;
}

body:not(.fsComposeMode) .testimonial-slides .fsElement.testimonial-icon_cap .fsElementFooterContent:before {
  content: "\E907";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-size: 100px;
}

body:not(.fsComposeMode) .testimonial-slides .fsElement.testimonial-icon_user .fsElementFooterContent:before {
  content: "\E90A";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-size: 100px;
}

body:not(.fsComposeMode) .testimonial-slides .fsElement.testimonial-icon_trophy .fsElementFooterContent:before {
  content: "\E909";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-size: 100px;
}

body:not(.fsComposeMode) .testimonial-slides .fsElement.testimonial-icon_apple .fsElementFooterContent:before {
  content: "\E901";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-size: 100px;
}

body:not(.fsComposeMode) .testimonial-slides .fsElement.testimonial-icon_backpack .fsElementFooterContent:before {
  content: "\E904";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-size: 100px;
}

body:not(.fsComposeMode) .testimonial-slides .fsElement > .fsElementContent,
body:not(.fsComposeMode) .testimonial-slides .fsElement > footer {
  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-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body:not(.fsComposeMode) .testimonial-slides .fsElement > .fsElementContent {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 40px;
  background-color: #F5F5F5;
  font-size: 1.125em;
  line-height: 1.6;
  text-align: center;
}

body:not(.fsComposeMode) .testimonial-slides .fsElement > .fsElementContent:before,
body:not(.fsComposeMode) .testimonial-slides .fsElement > .fsElementContent:after {
  content: "\E908";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  position: absolute;
  color: rgba(0, 20, 72, 0.15);
  font-size: 40px;
}

body:not(.fsComposeMode) .testimonial-slides .fsElement > .fsElementContent:before {
  left: 30px;
  top: 30px;
}

body:not(.fsComposeMode) .testimonial-slides .fsElement > .fsElementContent:after {
  right: 30px;
  bottom: 30px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

body:not(.fsComposeMode) .testimonial-slides .fsElement > footer {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #001448;
  color: #fff;
  padding: 40px 40px 80px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.875em;
}

body:not(.fsComposeMode) .testimonial-slides .fsElement > footer .fsElementFooterContent {
  margin-top: 0;
}

body:not(.fsComposeMode) .testimonial-slides .fsElement > footer p {
  margin-bottom: 0;
}

body:not(.fsComposeMode) .testimonial-slides .fsElement > footer strong {
  display: inline-block;
  font-family: "Muli", sans-serif;
  font-size: 1.286em;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 10px;
}

body:not(.fsComposeMode) .testimonial-slides .fsElement > footer:after {
  position: absolute;
  top: -17px;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 17px 17px 17px;
  border-color: transparent transparent #001448 transparent;
}

body:not(.fsComposeMode) .testimonial-slides .slick-dots {
  position: absolute;
  position: absolute;
  bottom: 20px;
  right: 0;
  width: 100%;
  text-align: center;
}

body:not(.fsComposeMode) .testimonial-slides .slick-dots,
body:not(.fsComposeMode) .testimonial-slides .slick-dots ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

body:not(.fsComposeMode) .testimonial-slides .slick-dots li {
  margin: 0;
  padding: 0;
}

body:not(.fsComposeMode) .testimonial-slides .slick-dots li {
  display: inline-block;
}

body:not(.fsComposeMode) .testimonial-slides .slick-dots li + li {
  margin-left: 6px;
}

body:not(.fsComposeMode) .testimonial-slides .slick-dots button {
  border: 0;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  font-size: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

body:not(.fsComposeMode) .testimonial-slides .slick-dots .slick-active button,
body:not(.fsComposeMode) .testimonial-slides .slick-dots button:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 600px) {
  body:not(.fsComposeMode) .testimonial-slides:not([class*=stacked]) .fsElement {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  body:not(.fsComposeMode) .testimonial-slides:not([class*=stacked]) .fsElement > .fsElementContent {
    padding: 130px 40px;
    font-size: 1.375em;
    line-height: 1.5;
  }

  body:not(.fsComposeMode) .testimonial-slides:not([class*=stacked]) .fsElement > .fsElementContent:before {
    left: 40px;
    top: 40px;
  }

  body:not(.fsComposeMode) .testimonial-slides:not([class*=stacked]) .fsElement > .fsElementContent:after {
    right: 40px;
    bottom: 40px;
  }

  body:not(.fsComposeMode) .testimonial-slides:not([class*=stacked]) .fsElement > footer {
    width: 32.2%;
    padding: 40px;
    font-size: 1em;
  }

  body:not(.fsComposeMode) .testimonial-slides:not([class*=stacked]) .fsElement > footer strong {
    font-size: 1.4em;
  }

  body:not(.fsComposeMode) .testimonial-slides:not([class*=stacked]) .fsElement > footer:after {
    top: auto;
    left: -17px;
    border-width: 17px 17px 17px 0;
    border-color: transparent #001448 transparent transparent;
  }

  body:not(.fsComposeMode) .testimonial-slides:not([class*=stacked]) .slick-dots {
    width: 32.2%;
  }
}/*! helpers - functions v0.0.1 */

/*! helpers - utility v0.0.1 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*! helpers - presentational v0.0.1 */

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

/*
Example sites:
http://coderepo.demo.finalsite.com/stuff-by-al/dropdown-mixin
http://codepen.io/foxareld/pen/BNpWJm

Ex 1:
    <div class='parent'>
      <span class='sibling'>Dropdown</span>
      <ul class='dropdown'>
        <li>Link</li>
        <li>Link</li>
        <li>Link</li>
      </ul>
    </div>

Use:
    .parent {
        @include drop(".dropdown"); //this makes .dropdown drop on hover of .parent
    }

    //this makes .dropdown drop when .parent has class .drop-class, it was also have a transition
    .parent {
        @include drop(".dropdown", true, ".drop-class");
    }

    //this makes .dropdown drop when .sibling has class .drop-class, it will not have a transition
    .sibling {
        @include drop("+ .dropdown", false, ".drop-class");
    }

*/

/*! helpers - typography v0.0.1 */

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

h1 {
  margin-top: 0;
  font-weight: normal;
  font-size: 36px;
  line-height: 56px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h2 {
  margin-top: 0;
  font-weight: normal;
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h3 {
  margin-top: 0;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h4 {
  margin-top: 0;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h5 {
  margin-top: 0;
  font-weight: normal;
  font-size: 17px;
  line-height: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h6 {
  margin-top: 0;
  font-weight: normal;
  font-size: 13px;
  line-height: 15px;
  margin-bottom: 10px;
  color: #696969;
  text-transform: uppercase;
  font-weight: bold;
}

p {
  margin: 0 0 20px;
}

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

hr {
  margin: 0 auto 20px;
}

a {
  text-decoration: none;
  color: #131313;
  -webkit-transition: background .3s, color .3s;
  transition: background .3s, color .3s;
}

a:hover,
a:focus {
  color: #131313;
}

.fsNavigation a {
  text-decoration: none;
}

a {
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: none;
}

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

table.fs_style_4 {
  margin-bottom: 20px;
  width: 100%;
}

table.fs_style_4 th,
table.fs_style_4 td {
  vertical-align: top;
  border-bottom: none;
}

table.fs_style_4 th {
  padding: 10px 20px;
  background: #001448;
  color: #ffffff;
  text-align: left;
  border: 1px solid #001448;
}

table.fs_style_4 td {
  padding: 10px 20px;
  background: #ffffff;
  border-bottom: 1px solid #DCE0E9;
}

table.fs_style_4 tr:nth-of-type(odd) td {
  background-color: #ffffff;
}

table.fs_style_4 tr {
  border-bottom: solid 1px #ffffff;
}

table.fs_style_4 tr td:first-child {
  border-left: 1px solid #DCE0E9;
}

table.fs_style_4 tr td:last-child {
  border-right: 1px solid #DCE0E9;
}

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: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_5,
.fsBannerRight .fs_style_5,
.fsStyleOneThird .fs_style_5,
.fsThreeColumnLayout > .fsDiv .fs_style_5,
.fsFourColumnLayout > .fsDiv .fs_style_5 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_5:hover,
.fs_style_5:focus,
.fsStateSelected .fs_style_5,
.fs_style_5.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fs_style_5 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_6 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #1C3F94;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #1C3F94;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_6,
.fsBannerRight .fs_style_6,
.fsStyleOneThird .fs_style_6,
.fsThreeColumnLayout > .fsDiv .fs_style_6,
.fsFourColumnLayout > .fsDiv .fs_style_6 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_6:hover,
.fs_style_6:focus,
.fsStateSelected .fs_style_6,
.fs_style_6.on {
  background: #ffffff;
  color: #1C3F94;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #1C3F94;
}

.fs_style_6 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_7 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #131313;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_7,
.fsBannerRight .fs_style_7,
.fsStyleOneThird .fs_style_7,
.fsThreeColumnLayout > .fsDiv .fs_style_7,
.fsFourColumnLayout > .fsDiv .fs_style_7 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_7:hover,
.fs_style_7:focus,
.fsStateSelected .fs_style_7,
.fs_style_7.on {
  background: #ffffff;
  color: #131313;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fs_style_7 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_8 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #FFB81C;
  color: #121212;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #FFB81C;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_8,
.fsBannerRight .fs_style_8,
.fsStyleOneThird .fs_style_8,
.fsThreeColumnLayout > .fsDiv .fs_style_8,
.fsFourColumnLayout > .fsDiv .fs_style_8 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_8:hover,
.fs_style_8:focus,
.fsStateSelected .fs_style_8,
.fs_style_8.on {
  background: #ffffff;
  color: #121212;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #FFB81C;
}

.fs_style_8 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_XY {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #FFB81C;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_XY,
.fsBannerRight .fs_style_XY,
.fsStyleOneThird .fs_style_XY,
.fsThreeColumnLayout > .fsDiv .fs_style_XY,
.fsFourColumnLayout > .fsDiv .fs_style_XY {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_XY:hover,
.fs_style_XY:focus,
.fsStateSelected .fs_style_XY,
.fs_style_XY.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fs_style_XY em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_9 {
  padding: 30px 80px;
  font-size: 17px;
  font-weight: bold;
  line-height: 21px;
  text-align: center;
}

.fs_style_9 em {
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_10 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: transparent;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #ffffff;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_10,
.fsBannerRight .fs_style_10,
.fsStyleOneThird .fs_style_10,
.fsThreeColumnLayout > .fsDiv .fs_style_10,
.fsFourColumnLayout > .fsDiv .fs_style_10 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_10:hover,
.fs_style_10:focus,
.fsStateSelected .fs_style_10,
.fs_style_10.on {
  background: #ffffff;
  color: #121212;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #ffffff;
}

.fs_style_10 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_11 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #F7F8FB;
  color: #252B33;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #DCE0E9;
  border-radius: 2px;
  width: 100%;
  text-align: left;
  padding-left: 25px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: bold;
  line-height: 23px;
}

.fsBannerLeft .fs_style_11,
.fsBannerRight .fs_style_11,
.fsStyleOneThird .fs_style_11,
.fsThreeColumnLayout > .fsDiv .fs_style_11,
.fsFourColumnLayout > .fsDiv .fs_style_11 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_11:hover,
.fs_style_11:focus,
.fsStateSelected .fs_style_11,
.fs_style_11.on {
  background: #ffffff;
  color: #252B33;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #DCE0E9;
}

.fs_style_11 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_11:before {
  content: '\E912';
  font-family: "IcoMoon";
  font-weight: normal;
  margin-right: 15px;
}

.fs_style_12 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #F7F8FB;
  color: #252B33;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #DCE0E9;
  border-radius: 2px;
  width: 100%;
  text-align: left;
  padding-left: 25px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: bold;
  line-height: 23px;
}

.fsBannerLeft .fs_style_12,
.fsBannerRight .fs_style_12,
.fsStyleOneThird .fs_style_12,
.fsThreeColumnLayout > .fsDiv .fs_style_12,
.fsFourColumnLayout > .fsDiv .fs_style_12 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_12:hover,
.fs_style_12:focus,
.fsStateSelected .fs_style_12,
.fs_style_12.on {
  background: #ffffff;
  color: #252B33;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #DCE0E9;
}

.fs_style_12 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_12:before {
  content: '\E903';
  font-family: "IcoMoon";
  font-weight: normal;
  margin-right: 15px;
}

.fsStyleDefaultButton {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fsStyleDefaultButton,
.fsBannerRight .fsStyleDefaultButton,
.fsStyleOneThird .fsStyleDefaultButton,
.fsThreeColumnLayout > .fsDiv .fsStyleDefaultButton,
.fsFourColumnLayout > .fsDiv .fsStyleDefaultButton {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fsStyleDefaultButton:hover,
.fsStyleDefaultButton:focus,
.fsStateSelected .fsStyleDefaultButton,
.fsStyleDefaultButton.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fsStyleDefaultButton em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fsStyleDefaultButton.fsLoadMoreButton {
  margin-bottom: 0;
}

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

.fsStyleUpdateButton {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fsStyleUpdateButton,
.fsBannerRight .fsStyleUpdateButton,
.fsStyleOneThird .fsStyleUpdateButton,
.fsThreeColumnLayout > .fsDiv .fsStyleUpdateButton,
.fsFourColumnLayout > .fsDiv .fsStyleUpdateButton {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fsStyleUpdateButton:hover,
.fsStyleUpdateButton:focus,
.fsStateSelected .fsStyleUpdateButton,
.fsStyleUpdateButton.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fsStyleUpdateButton em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

/*! helpers - functions v0.0.1 */

/*! helpers - utility v0.0.1 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*! helpers - presentational v0.0.1 */

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

/*
Example sites:
http://coderepo.demo.finalsite.com/stuff-by-al/dropdown-mixin
http://codepen.io/foxareld/pen/BNpWJm

Ex 1:
    <div class='parent'>
      <span class='sibling'>Dropdown</span>
      <ul class='dropdown'>
        <li>Link</li>
        <li>Link</li>
        <li>Link</li>
      </ul>
    </div>

Use:
    .parent {
        @include drop(".dropdown"); //this makes .dropdown drop on hover of .parent
    }

    //this makes .dropdown drop when .parent has class .drop-class, it was also have a transition
    .parent {
        @include drop(".dropdown", true, ".drop-class");
    }

    //this makes .dropdown drop when .sibling has class .drop-class, it will not have a transition
    .sibling {
        @include drop("+ .dropdown", false, ".drop-class");
    }

*/

/*! helpers - typography v0.0.1 */

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

h1 {
  margin-top: 0;
  font-weight: normal;
  font-size: 36px;
  line-height: 56px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h2 {
  margin-top: 0;
  font-weight: normal;
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h3 {
  margin-top: 0;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h4 {
  margin-top: 0;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h5 {
  margin-top: 0;
  font-weight: normal;
  font-size: 17px;
  line-height: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: bold;
  color: #252B33;
}

h6 {
  margin-top: 0;
  font-weight: normal;
  font-size: 13px;
  line-height: 15px;
  margin-bottom: 10px;
  color: #696969;
  text-transform: uppercase;
  font-weight: bold;
}

p {
  margin: 0 0 20px;
}

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

hr {
  margin: 0 auto 20px;
}

a {
  text-decoration: none;
  color: #131313;
  -webkit-transition: background .3s, color .3s;
  transition: background .3s, color .3s;
}

a:hover,
a:focus {
  color: #131313;
}

.fsNavigation a {
  text-decoration: none;
}

a {
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: none;
}

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

table.fs_style_4 {
  margin-bottom: 20px;
  width: 100%;
}

table.fs_style_4 th,
table.fs_style_4 td {
  vertical-align: top;
  border-bottom: none;
}

table.fs_style_4 th {
  padding: 10px 20px;
  background: #001448;
  color: #ffffff;
  text-align: left;
  border: 1px solid #001448;
}

table.fs_style_4 td {
  padding: 10px 20px;
  background: #ffffff;
  border-bottom: 1px solid #DCE0E9;
}

table.fs_style_4 tr:nth-of-type(odd) td {
  background-color: #ffffff;
}

table.fs_style_4 tr {
  border-bottom: solid 1px #ffffff;
}

table.fs_style_4 tr td:first-child {
  border-left: 1px solid #DCE0E9;
}

table.fs_style_4 tr td:last-child {
  border-right: 1px solid #DCE0E9;
}

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: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_5,
.fsBannerRight .fs_style_5,
.fsStyleOneThird .fs_style_5,
.fsThreeColumnLayout > .fsDiv .fs_style_5,
.fsFourColumnLayout > .fsDiv .fs_style_5 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_5:hover,
.fs_style_5:focus,
.fsStateSelected .fs_style_5,
.fs_style_5.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fs_style_5 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_6 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #1C3F94;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #1C3F94;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_6,
.fsBannerRight .fs_style_6,
.fsStyleOneThird .fs_style_6,
.fsThreeColumnLayout > .fsDiv .fs_style_6,
.fsFourColumnLayout > .fsDiv .fs_style_6 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_6:hover,
.fs_style_6:focus,
.fsStateSelected .fs_style_6,
.fs_style_6.on {
  background: #ffffff;
  color: #1C3F94;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #1C3F94;
}

.fs_style_6 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_7 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #131313;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_7,
.fsBannerRight .fs_style_7,
.fsStyleOneThird .fs_style_7,
.fsThreeColumnLayout > .fsDiv .fs_style_7,
.fsFourColumnLayout > .fsDiv .fs_style_7 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_7:hover,
.fs_style_7:focus,
.fsStateSelected .fs_style_7,
.fs_style_7.on {
  background: #ffffff;
  color: #131313;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fs_style_7 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_8 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #FFB81C;
  color: #121212;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #FFB81C;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_8,
.fsBannerRight .fs_style_8,
.fsStyleOneThird .fs_style_8,
.fsThreeColumnLayout > .fsDiv .fs_style_8,
.fsFourColumnLayout > .fsDiv .fs_style_8 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_8:hover,
.fs_style_8:focus,
.fsStateSelected .fs_style_8,
.fs_style_8.on {
  background: #ffffff;
  color: #121212;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #FFB81C;
}

.fs_style_8 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_XY {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #FFB81C;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_XY,
.fsBannerRight .fs_style_XY,
.fsStyleOneThird .fs_style_XY,
.fsThreeColumnLayout > .fsDiv .fs_style_XY,
.fsFourColumnLayout > .fsDiv .fs_style_XY {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_XY:hover,
.fs_style_XY:focus,
.fsStateSelected .fs_style_XY,
.fs_style_XY.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fs_style_XY em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_9 {
  padding: 30px 80px;
  font-size: 17px;
  font-weight: bold;
  line-height: 21px;
  text-align: center;
}

.fs_style_9 em {
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_10 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: transparent;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #ffffff;
  border-radius: 2px;
}

.fsBannerLeft .fs_style_10,
.fsBannerRight .fs_style_10,
.fsStyleOneThird .fs_style_10,
.fsThreeColumnLayout > .fsDiv .fs_style_10,
.fsFourColumnLayout > .fsDiv .fs_style_10 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_10:hover,
.fs_style_10:focus,
.fsStateSelected .fs_style_10,
.fs_style_10.on {
  background: #ffffff;
  color: #121212;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #ffffff;
}

.fs_style_10 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_11 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #F7F8FB;
  color: #252B33;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #DCE0E9;
  border-radius: 2px;
  width: 100%;
  text-align: left;
  padding-left: 25px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: bold;
  line-height: 23px;
}

.fsBannerLeft .fs_style_11,
.fsBannerRight .fs_style_11,
.fsStyleOneThird .fs_style_11,
.fsThreeColumnLayout > .fsDiv .fs_style_11,
.fsFourColumnLayout > .fsDiv .fs_style_11 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_11:hover,
.fs_style_11:focus,
.fsStateSelected .fs_style_11,
.fs_style_11.on {
  background: #ffffff;
  color: #252B33;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #DCE0E9;
}

.fs_style_11 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_11:before {
  content: '\E912';
  font-family: "IcoMoon";
  font-weight: normal;
  margin-right: 15px;
}

.fs_style_12 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #F7F8FB;
  color: #252B33;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #DCE0E9;
  border-radius: 2px;
  width: 100%;
  text-align: left;
  padding-left: 25px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: bold;
  line-height: 23px;
}

.fsBannerLeft .fs_style_12,
.fsBannerRight .fs_style_12,
.fsStyleOneThird .fs_style_12,
.fsThreeColumnLayout > .fsDiv .fs_style_12,
.fsFourColumnLayout > .fsDiv .fs_style_12 {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fs_style_12:hover,
.fs_style_12:focus,
.fsStateSelected .fs_style_12,
.fs_style_12.on {
  background: #ffffff;
  color: #252B33;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #DCE0E9;
}

.fs_style_12 em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fs_style_12:before {
  content: '\E903';
  font-family: "IcoMoon";
  font-weight: normal;
  margin-right: 15px;
}

.fsStyleDefaultButton {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fsStyleDefaultButton,
.fsBannerRight .fsStyleDefaultButton,
.fsStyleOneThird .fsStyleDefaultButton,
.fsThreeColumnLayout > .fsDiv .fsStyleDefaultButton,
.fsFourColumnLayout > .fsDiv .fsStyleDefaultButton {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fsStyleDefaultButton:hover,
.fsStyleDefaultButton:focus,
.fsStateSelected .fsStyleDefaultButton,
.fsStyleDefaultButton.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fsStyleDefaultButton em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

.fsStyleDefaultButton.fsLoadMoreButton {
  margin-bottom: 0;
}

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

.fsStyleUpdateButton {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #131313;
  border-radius: 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-style: solid !important;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
  padding: 20px 15px;
  border: 1px solid #131313;
  border-radius: 2px;
}

.fsBannerLeft .fsStyleUpdateButton,
.fsBannerRight .fsStyleUpdateButton,
.fsStyleOneThird .fsStyleUpdateButton,
.fsThreeColumnLayout > .fsDiv .fsStyleUpdateButton,
.fsFourColumnLayout > .fsDiv .fsStyleUpdateButton {
  width: 100%;
  display: block;
  margin-right: 0;
}

.fsStyleUpdateButton:hover,
.fsStyleUpdateButton:focus,
.fsStateSelected .fsStyleUpdateButton,
.fsStyleUpdateButton.on {
  background: #131313;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #131313;
}

.fsStyleUpdateButton em {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
}

body:not(.fsComposeMode) .bpa-image-buttons-1 {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: hidden;
  position: relative;
  height: 0;
  margin: 0 auto;
  padding: 0 0 100%;
  color: #ffffff;
  background-size: cover;
  background-position: top center;
  text-align: center;
  border-radius: 100%;
}

body:not(.fsComposeMode) .bpa-image-buttons-1 .image-button-content {
  position: absolute;
  bottom: 0;
  padding: 20px;
  z-index: 2;
}

body:not(.fsComposeMode) .bpa-image-buttons-1 .image-button-content > header {
  margin-bottom: 15px;
}

body:not(.fsComposeMode) .bpa-image-buttons-1 .image-button-content > header h2.fsElementTitle {
  margin-bottom: 0;
}

body:not(.fsComposeMode) .bpa-image-buttons-1 .image-button-content > header > .fsElementHeaderContent {
  margin-top: 5px;
  margin-bottom: 0;
}

body:not(.fsComposeMode) .bpa-image-buttons-1 .image-button-content > header > .fsElementHeaderContent p {
  margin-bottom: 0;
}

body:not(.fsComposeMode) .bpa-image-buttons-1 .image-button-content > .fsElementContent {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  height: auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 15px;
}

body:not(.fsComposeMode) .bpa-image-buttons-1 .image-button-content > .fsElementContent p:last-child {
  margin: 0;
}

body:not(.fsComposeMode) .bpa-image-buttons-1 .image-button-content > footer {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  height: auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

body:not(.fsComposeMode) .bpa-image-buttons-1 .image-button-content > footer > .fsElementFooterContent {
  margin-top: 15px;
}

body:not(.fsComposeMode) .bpa-image-buttons-1 .image-button-content > footer > .fsElementFooterContent p {
  margin: 0;
}

body:not(.fsComposeMode) .bpa-image-buttons-1:hover .image-button-content > .fsElementContent,
body:not(.fsComposeMode) .bpa-image-buttons-1:hover .image-button-content > footer {
  opacity: 1;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

body:not(.fsComposeMode) .bpa-image-buttons-1.open .image-button-content > .fsElementContent,
body:not(.fsComposeMode) .bpa-image-buttons-1.open .image-button-content > footer {
  opacity: 1;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

body:not(.fsComposeMode) .bpa-image-buttons-1:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, rgba(0, 0, 0, 0.5)));
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 50%);
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}

body:not(.fsComposeMode) .bpa-image-buttons-1:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}

body:not(.fsComposeMode) .bpa-image-buttons-1:hover:after {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 100%;
}

body:not(.fsComposeMode) .bpa-image-buttons-1:hover .image-button-content > .fsElementContent,
body:not(.fsComposeMode) .bpa-image-buttons-1:hover .image-button-content > footer {
  max-height: 500px;
}

body:not(.fsComposeMode) .bpa-image-buttons-1.open:after {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 100%;
}

body:not(.fsComposeMode) .bpa-image-buttons-1.open .image-button-content > .fsElementContent,
body:not(.fsComposeMode) .bpa-image-buttons-1.open .image-button-content > footer {
  max-height: 500px;
}

body:not(.fsComposeMode) .bpa-image-buttons-1 > .image-button-content {
  padding: 20px 40px 40px;
  padding-right: 20%;
  padding-left: 20%;
  padding-bottom: 10%;
}

body:not(.fsComposeMode) .bpa-image-buttons-1 > .image-button-content > header {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 0;
}

body:not(.fsComposeMode) .bpa-image-buttons-1 > .image-button-content > header h2.fsElementTitle {
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  font-family: "Muli", sans-serif;
  text-transform: none;
  position: relative;
  font-weight: normal;
  padding-bottom: 10px;
  margin-bottom: 0;
}

body:not(.fsComposeMode) .bpa-image-buttons-1 > .image-button-content > header h2.fsElementTitle:after {
  content: ' ';
  width: 40px;
  height: 1px;
  background: #FFB81C;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  bottom: 5px;
}

body:not(.fsComposeMode) .bpa-image-buttons-1 > .image-button-content > header .fsElementHeaderContent {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
}

body:not(.fsComposeMode) .bpa-image-buttons-1 > .image-button-content > .fsElementContent {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
  display: block;
  width: 100%;
}

body:not(.fsComposeMode) .bpa-image-buttons-1 > .image-button-content > footer > .fsElementFooterContent {
  margin-top: 5px;
}

body:not(.fsComposeMode) .bpa-image-buttons-1 > .image-button-content > footer > .fsElementFooterContent a {
  color: #ffffff;
  font-weight: 600;
}

body:not(.fsComposeMode) .bpa-image-buttons-1 > .image-button-content > footer > .fsElementFooterContent a:hover {
  text-decoration: underline;
}

body:not(.fsComposeMode) .bpa-image-buttons-1 > .image-button-content > footer > .fsElementFooterContent a {
  font-size: 12px;
  font-weight: bold;
  line-height: 15px;
  position: relative;
  color: #ffffff;
  text-decoration: none;
  display: block;
  -webkit-transition: all .3s;
  transition: all .3s;
}

body:not(.fsComposeMode) .bpa-image-buttons-1 > .image-button-content > footer > .fsElementFooterContent a:hover,
body:not(.fsComposeMode) .bpa-image-buttons-1 > .image-button-content > footer > .fsElementFooterContent a:focus {
  opacity: 0.85;
}

body:not(.fsComposeMode) .bpa-image-buttons-1 > .image-button-content > footer > .fsElementFooterContent a:after {
  content: '\F101';
  font-family: "IcoMoon";
  margin-left: 6px;
  color: #D4AF37;
  font-size: 16px;
  position: absolute;
}