@charset "UTF-8";
/*! helpers - functions v0.0.1 */
/*! helpers - utility v0.0.1 */
.compartment {
  position: relative;
  margin: 0 auto;
  max-width: 80em;
  max-width: 80rem; }

@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/icomoon.eot");
  src: url("../fonts/icomoon/icomoon.eot?#iefix") format("embedded-opentype"), url("../fonts/icomoon/icomoon.woff2") format("woff2"), url("../fonts/icomoon/icomoon.woff") format("woff"), url("../fonts/icomoon/icomoon.ttf") format("truetype"), url("../fonts/icomoon/icomoon.svg#IcoMoon") format("svg");
  font-weight: 400;
  font-style: normal; }

.fsTitle, .fsAthleticsRosterList li > div.fsRosterName, .fsFacebookFrom, .fsVimeoTitle, .fsYoutubeTitle, body:not(.fsComposeMode) .module.white-bg .fsElementContent h6 {
  margin: 0;
  font-weight: bold;
  font-size: 18px; }

h1 {
  margin-top: 0;
  font-family: "acumin-pro-condensed", sans-serif;
  font-weight: 400;
  font-size: 35px;
  line-height: 37px;
  margin-bottom: 16px;
  color: #540903;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px; }

h2 {
  margin-top: 0;
  font-family: "acumin-pro-condensed", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 30px;
  color: #343845;
  font-family: "acumin-pro-semi-condensed", sans-serif;
  font-weight: 700;
  margin-bottom: 16px; }

h3 {
  margin-top: 0;
  font-family: "acumin-pro-condensed", sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 28px;
  margin-bottom: 10px;
  color: #540903;
  font-weight: 700; }

h4 {
  margin-top: 0;
  font-family: "acumin-pro-condensed", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 10px;
  color: #343845;
  font-weight: 500;
  text-transform: uppercase; }

h5 {
  margin-top: 0;
  font-family: "acumin-pro-condensed", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 22px;
  margin-bottom: 10px;
  color: #343845;
  font-weight: 500; }

h6 {
  margin-top: 0;
  font-family: "acumin-pro-condensed", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 19px;
  margin-bottom: 10px;
  color: #540903;
  font-weight: 500;
  text-transform: uppercase; }

p {
  margin: 0 0 20px; }

hr {
  margin: 0 auto 20px; }

a {
  text-decoration: none;
  color: #8b0e05;
  transition: background .3s, color .3s; }
  a:hover, a:focus {
    color: #540903; }

ul,
ol {
  margin-top: 0;
  padding-left: 1.25em; }

.fsAthleticsEvent.fsTable .fsElementTable, .fsAthleticsRoster .fsElementTable,
table.fs_style_33 {
  margin-bottom: 20px;
  width: 100%;
  overflow-x: auto;
  display: table; }
  .fsAthleticsEvent.fsTable .fsElementTable td, .fsAthleticsRoster .fsElementTable td,
  table.fs_style_33 td {
    padding: 10px 20px;
    background: rgba(244, 244, 244, 0.6); }
    .fsAthleticsEvent.fsTable .fsElementTable td p, .fsAthleticsRoster .fsElementTable td p,
    table.fs_style_33 td p {
      margin: 0; }
  .fsAthleticsEvent.fsTable .fsElementTable tr, .fsAthleticsRoster .fsElementTable tr,
  table.fs_style_33 tr {
    border-bottom: solid 2px #fff;
    border-top: solid 2px #fff;
    border-radius: 5px; }
    .fsAthleticsEvent.fsTable .fsElementTable tr:nth-of-type(odd) td, .fsAthleticsRoster .fsElementTable tr:nth-of-type(odd) td,
    table.fs_style_33 tr:nth-of-type(odd) td {
      background-color: #f4f4f4; }
  .fsAthleticsEvent.fsTable .fsElementTable th, .fsAthleticsRoster .fsElementTable th, .fsAthleticsEvent.fsTable .fsElementTable td, .fsAthleticsRoster .fsElementTable td,
  table.fs_style_33 th,
  table.fs_style_33 td {
    vertical-align: top; }
    .fsAthleticsEvent.fsTable .fsElementTable th:first-child, .fsAthleticsRoster .fsElementTable th:first-child,
    .fsAthleticsEvent.fsTable .fsElementTable td:first-child,
    .fsAthleticsRoster .fsElementTable td:first-child,
    table.fs_style_33 th:first-child,
    table.fs_style_33 td:first-child {
      border-radius: 5px 0 0 5px; }
    .fsAthleticsEvent.fsTable .fsElementTable th:last-child, .fsAthleticsRoster .fsElementTable th:last-child,
    .fsAthleticsEvent.fsTable .fsElementTable td:last-child,
    .fsAthleticsRoster .fsElementTable td:last-child,
    table.fs_style_33 th:last-child,
    table.fs_style_33 td:last-child {
      border-radius: 0 5px 5px 0; }
  .fsAthleticsEvent.fsTable .fsElementTable th, .fsAthleticsRoster .fsElementTable th,
  table.fs_style_33 th {
    padding: 10px 20px;
    text-align: left;
    background: #540903;
    color: #fff; }

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

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

/*! _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: 20px; }
  .fsElement:last-child {
    margin-bottom: 0; }
  #fsLeftBanner .fsElement,
  #fsRightBanner .fsElement {
    margin-bottom: 50px; }

.fsElementHeaderContent {
  margin-bottom: 20px; }

.fsElementFooterContent {
  margin-top: 20px; }

.fsPanel {
  margin-bottom: 0; }

.fsElementTitle {
  font-family: "acumin-pro-condensed", sans-serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: uppercase; }

.fsDialogCloseButton {
  opacity: 1; }
  .fsDialogCloseButton:after, .fsDialogCloseButton:before {
    background: #757575; }
  .fsDialogCloseButton:focus:after, .fsDialogCloseButton:focus:before {
    background: #757575; }
  .fsDialogCloseButton:hover:after, .fsDialogCloseButton:hover:before {
    background: #424242; }

.fsElementDialog {
  color: #757575; }

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

/*! 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: #757575;
    font-size: 45px;
    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%;
    transform: translate3d(0, -50%, 0); }
  .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(117, 117, 117, 0.5);
    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: #757575; }
      .fsSlideshow .fsPager li button:before {
        content: '';
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background-color: rgba(117, 117, 117, 0.25);
        transition: .3s;
        opacity: 1; }
      .fsSlideshow .fsPager li button:hover:before, .fsSlideshow .fsPager li button:focus:before {
        background-color: #757575;
        transition: .3s; }
      .fsSlideshow .fsPager li button:focus {
        outline: 1px dashed rgba(117, 117, 117, 0.25); }
    .fsSlideshow .fsPager li.slick-active button:before {
      opacity: 1;
      background-color: #757575; }

.fs_style_26 {
  display: inline-block;
  border: 0;
  margin: 0 10px 20px 0;
  padding: 16px 20px;
  background: #540903;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  font-family: "acumin-pro-condensed", sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1; }
  .fs_style_26:hover, .fs_style_26:focus,
  .fsStateSelected .fs_style_26 {
    background: #8b0e05;
    color: #fff; }

.fs_style_27 {
  display: inline-block;
  border: 0;
  margin: 0 10px 20px 0;
  padding: 16px 20px;
  background: #343845;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  font-family: "acumin-pro-condensed", sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1; }
  .fs_style_27:hover, .fs_style_27:focus,
  .fsStateSelected .fs_style_27 {
    background: #979797;
    color: #fff; }

.fs_style_28 {
  display: inline-block;
  border: solid 1px transparent;
  margin: 0 auto 20px auto;
  padding: 15px 20px;
  background: #343845;
  color: #fff;
  border-radius: 36px;
  text-align: center;
  font-family: "acumin-pro-condensed", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  max-width: 300px;
  width: 100%; }
  .fs_style_28:hover, .fs_style_28:focus,
  .fsStateSelected .fs_style_28 {
    background: #979797;
    color: #fff; }
  .fs_style_28 em {
    display: block;
    font-family: "acumin-pro-semi-condensed", sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    margin-top: 5px; }

.fs_style_29 {
  display: inline-block;
  border: solid 1px transparent;
  margin: 0 auto 20px auto;
  padding: 15px 20px;
  background: #540903;
  color: #fff;
  border-radius: 36px;
  text-align: center;
  font-family: "acumin-pro-condensed", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  max-width: 300px;
  width: 100%; }
  .fs_style_29:hover, .fs_style_29:focus,
  .fsStateSelected .fs_style_29 {
    background: #8b0e05;
    color: #fff; }
  .fs_style_29 em {
    display: block;
    font-family: "acumin-pro-semi-condensed", sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    margin-top: 5px; }

.fs_style_30 {
  display: inline-block;
  border: solid 1px #343845;
  margin: 0 auto 20px auto;
  padding: 15px 20px;
  background: #fff;
  color: #343845;
  border-radius: 36px;
  text-align: center;
  font-family: "acumin-pro-condensed", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  max-width: 300px;
  width: 100%; }
  .fs_style_30:hover, .fs_style_30:focus,
  .fsStateSelected .fs_style_30 {
    background: #343845;
    color: #fff; }
  .fs_style_30 em {
    display: block;
    font-family: "acumin-pro-semi-condensed", sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    margin-top: 5px; }

.fs_style_31 {
  display: inline-block;
  border: solid 1px #540903;
  margin: 0 auto 20px auto;
  padding: 15px 20px;
  background: #fff;
  color: #540903;
  border-radius: 36px;
  text-align: center;
  font-family: "acumin-pro-condensed", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  max-width: 300px;
  width: 100%; }
  .fs_style_31:hover, .fs_style_31:focus,
  .fsStateSelected .fs_style_31 {
    background: #540903;
    color: #fff; }
  .fs_style_31 em {
    display: block;
    font-family: "acumin-pro-semi-condensed", sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    margin-top: 5px; }

.fsStyleDefaultButton {
  background: #343845;
  color: #fff;
  margin-bottom: 5px;
  padding: 7px 12px;
  font-size: .875em;
  line-height: 1.2; }
  .fsStyleDefaultButton.fsLoadMoreButton {
    margin-bottom: 0; }
  .fsStyleDefaultButton.fsSelectAll {
    background: #343845;
    color: #fff;
    margin-bottom: 5px;
    padding: 7px 12px;
    font-size: .875em;
    line-height: 1.2; }

.fsStyleUpdateButton {
  background: #343845;
  color: #fff;
  margin-bottom: 5px;
  padding: 7px 12px;
  font-size: .875em;
  line-height: 1.2; }

.fs_style_24 {
  margin-top: 0;
  font-family: "acumin-pro-condensed", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 30px;
  color: #343845;
  font-family: "acumin-pro-semi-condensed", sans-serif;
  font-weight: 700;
  margin-bottom: 16px; }

blockquote {
  color: #343845;
  position: relative;
  margin: 20px 0;
  font-family: "acumin-pro-condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5em;
  text-align: center;
  border-top: solid 1px #f4f4f4;
  padding: 40px 0 0 0; }
  blockquote:before {
    content: "";
    font-family: "IcoMoon";
    font-smoothing: antialiased;
    font-weight: normal;
    speak: none;
    color: #ebebeb;
    font-size: 24px;
    position: absolute;
    left: 0;
    right: 0;
    top: -12.5px;
    margin: auto;
    width: 68px;
    height: 25px;
    background: #fff;
    padding: 0 10px; }

.fs_style_32 {
  display: block;
  margin: 0 0 20px;
  font-style: normal;
  color: #979797;
  font-size: 14px;
  margin-top: 5px; }
  .fs_style_32:before {
    content: '- '; }

.callout {
  padding: 20px;
  background: #343845;
  color: #fff; }
  .callout .fsElementTitle {
    color: #fff; }
  .callout.left {
    float: left;
    margin-left: 20px; }
    @media (min-width: 500px) {
      .callout.left {
        width: 50%; } }
  .callout.right {
    float: right;
    margin-right: 20px; }
    @media (min-width: 500px) {
      .callout.right {
        width: 50%; } }

.fs_style_25 {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5;
  border-left: solid 1px #ebebeb;
  display: block;
  padding-left: 20px; }

.resource-links .fsElementContent {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .resource-links .fsElementContent .fsContent {
    width: 48%; }

/*! _main.scss - src/sass/navigation/ - main import */
.fsNavigation ul {
  list-style: none;
  margin: 0;
  padding: 0; }
  .fsNavigation ul li.fsNavCurrentPage > a, .fsNavigation ul li.fsNavCurrentPageAncestor > a {
    color: #540903;
    background: transparent; }
  .fsNavigation ul li a {
    display: block;
    padding: 10px 0;
    color: #8b0e05;
    background: transparent; }
    .fsNavigation ul li a:hover, .fsNavigation ul li a:focus {
      color: #540903;
      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 ul li {
  display: inline-block; }
  .fsBreadcrumb ul li a {
    display: inline-block;
    padding: 0; }

.nav-site-map ul {
  margin: 0 0 0 20px;
  padding: 0; }
  .nav-site-map ul.fsNavLevel1 {
    margin-left: 0;
    list-style: none; }
    @media (min-width: 600px) {
      .nav-site-map ul.fsNavLevel1 {
        -moz-column-count: 2;
        column-count: 2;
        -moz-column-gap: 0;
        column-gap: 0;
        -moz-column-rule: 0;
        column-rule: 0;
        min-height: initial; }
        .nav-site-map ul.fsNavLevel1 li {
          page-break-inside: avoid;
          break-inside: avoid-column; } }
    .nav-site-map ul.fsNavLevel1 > li > a {
      margin-bottom: 20px;
      font-weight: 700; }
  .nav-site-map ul.fsNavLevel2 {
    list-style: disc; }
  .nav-site-map ul.fsNavLevel3 {
    list-style: circle; }
  .nav-site-map ul.fsNavLevel4 {
    list-style: square; }
  .nav-site-map ul.fsNavLevel5 {
    list-style: disc; }

.nav-tier ul {
  list-style: none;
  margin: 0;
  padding: 0; }
  .nav-tier ul li a {
    display: block;
    padding: 10px 10px;
    color: #8b0e05;
    background: transparent; }
    .nav-tier ul li a:hover, .nav-tier ul li a:focus {
      color: #540903;
      background: #f4f4f4; }
  .nav-tier ul li.fsNavCurrentPage > a {
    color: #343845;
    background: #dbdbdb; }
    .nav-tier ul li.fsNavCurrentPage > a:hover, .nav-tier ul li.fsNavCurrentPage > a:focus {
      color: #8b0e05;
      background: #f4f4f4; }
  .nav-tier ul li.fsNavCurrentPageAncestor {
    background: #f4f4f4; }
    .nav-tier ul li.fsNavCurrentPageAncestor > a {
      color: #8b0e05;
      background: transparent; }
      .nav-tier ul li.fsNavCurrentPageAncestor > a:hover, .nav-tier ul li.fsNavCurrentPageAncestor > a:focus {
        color: #8b0e05;
        background: #f4f4f4; }

.nav-tier .fsNavLevel1 {
  padding-left: 0; }
  .nav-tier .fsNavLevel1 > li {
    border-bottom: 1px solid #f4f4f4; }
    .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 {
  display: none; }
  @media screen and (max-width: 999px) {
    .nav-sub > header {
      display: block;
      position: relative; }
      .nav-sub > header .fsElementTitle {
        position: relative;
        margin-top: 0;
        font-family: "acumin-pro-condensed", sans-serif;
        font-weight: 400;
        font-size: 26px;
        line-height: 28px;
        margin-bottom: 10px;
        margin-bottom: 0;
        display: block;
        font-size: 18px;
        font-weight: 700;
        padding: 10px 20px;
        color: #fff;
        background-color: #8b0e05;
        transition: .3s;
        cursor: pointer;
        position: relative;
        padding-right: 40px; }
        .nav-sub > header .fsElementTitle:hover {
          background-color: #540903;
          color: #fff; } }
    @media screen and (max-width: 999px) and (min-width: 1000px) {
      .nav-sub > header .fsElementTitle {
        cursor: default; } }
  @media screen and (max-width: 999px) {
        .nav-sub > header .fsElementTitle:after {
          content: "+";
          line-height: 1;
          position: absolute;
          margin: 0;
          position: absolute;
          top: 50%;
          transform: translate3d(0, -50%, 0);
          right: 20px; }
    .nav-sub > .fsElementContent {
      position: relative;
      display: block;
      background-color: #f4f4f4; }
      .nav-sub > .fsElementContent ul {
        padding: 0; }
        .nav-sub > .fsElementContent ul li a {
          display: block;
          padding: 10px 20px;
          color: #8b0e05;
          background: transparent; }
          .nav-sub > .fsElementContent ul li a:hover, .nav-sub > .fsElementContent ul li a:focus {
            color: #540903;
            background: white; }
        .nav-sub > .fsElementContent ul li.fsNavCurrentPage > a {
          color: #540903;
          background: white; }
          .nav-sub > .fsElementContent ul li.fsNavCurrentPage > a:hover, .nav-sub > .fsElementContent ul li.fsNavCurrentPage > a:focus {
            color: #8b0e05;
            background: white; }
        .nav-sub > .fsElementContent ul li.fsNavCurrentPageAncestor {
          background: white; }
          .nav-sub > .fsElementContent ul li.fsNavCurrentPageAncestor > a {
            color: #8b0e05;
            background: transparent; }
            .nav-sub > .fsElementContent ul li.fsNavCurrentPageAncestor > a:hover, .nav-sub > .fsElementContent ul li.fsNavCurrentPageAncestor > a:focus {
              color: #343845;
              background: transparent; }
      .nav-sub > .fsElementContent .fsNavLevel1 > li > a {
        padding-left: 20px; }
      .nav-sub > .fsElementContent .fsNavLevel2 > li > a {
        padding-left: 30px; }
      .nav-sub > .fsElementContent .fsNavLevel3 > li > a {
        padding-left: 40px; }
      .nav-sub > .fsElementContent .fsNavLevel4 > li > a {
        padding-left: 50px; }
      .nav-sub > .fsElementContent .fsNavLevel5 > li > a {
        padding-left: 60px; }
    .nav-sub.active-nav > header .fsElementTitle {
      background-color: #8b0e05;
      color: #fff; }
      .nav-sub.active-nav > header .fsElementTitle:after {
        content: "-"; } }
  @media (min-width: 1000px) {
    .nav-sub {
      display: block; } }
  .nav-sub > .fsElementContent {
    height: auto;
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease; }
    @media (min-width: 1000px) {
      .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: 1000px) {
      .fsHeader .nav-sub {
        display: none; } }
  .nav-sub.nav-sub-empty {
    display: none !important; }
  #fsPageBody .nav-sub header {
    display: none; }
  .nav-sub ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    .nav-sub ul li a {
      display: block;
      padding: 10px 10px;
      color: #540903;
      background: transparent; }
      .nav-sub ul li a:hover, .nav-sub ul li a:focus {
        color: #8b0e05;
        background: transparent; }
    .nav-sub ul li.fsNavCurrentPage > a {
      color: #8b0e05;
      background: transparent; }
      .nav-sub ul li.fsNavCurrentPage > a:hover, .nav-sub ul li.fsNavCurrentPage > a:focus {
        color: #8b0e05;
        background: transparent; }
    .nav-sub ul li.fsNavCurrentPageAncestor {
      background: transparent; }
      .nav-sub ul li.fsNavCurrentPageAncestor > a {
        color: #8b0e05;
        background: transparent; }
        .nav-sub ul li.fsNavCurrentPageAncestor > a:hover, .nav-sub ul li.fsNavCurrentPageAncestor > a:focus {
          color: #8b0e05;
          background: transparent; }
  .nav-sub .fsNavLevel1 {
    padding-left: 0; }
    @media screen and (max-width: 999px) {
      .nav-sub .fsNavLevel1 {
        padding-top: 10px;
        padding-bottom: 10px; } }
    .nav-sub .fsNavLevel1 > li {
      border-bottom: 1px solid rgba(151, 151, 151, 0.5); }
      .nav-sub .fsNavLevel1 > li:last-child {
        border-bottom: none; }
      .nav-sub .fsNavLevel1 > li.fsNavCurrentPage > a,
      .nav-sub .fsNavLevel1 > li.fsNavCurrentPageAncestor > a {
        border-bottom: 1px solid #8b0e05; }
      .nav-sub .fsNavLevel1 > li > a {
        font-family: "acumin-pro-condensed", sans-serif;
        font-size: 20px;
        font-weight: 700; }
  .nav-sub .fsNavLevel2 > li:first-child a {
    padding-top: 10px; }
  .nav-sub .fsNavLevel2 > li > a {
    color: #757575;
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-family: "acumin-pro-semi-condensed", sans-serif;
    font-size: 15px;
    font-weight: 500; }
  .nav-sub .fsNavLevel3 > li > a {
    padding-left: 30px;
    font-size: 15px;
    padding-top: 5px;
    padding-bottom: 5px; }
  .nav-sub .fsNavLevel4 > li > a {
    padding-left: 40px;
    font-size: 15px;
    padding-top: 5px;
    padding-bottom: 5px; }
  .nav-sub .fsNavLevel5 > li > a {
    padding-left: 50px;
    font-size: 15px;
    padding-top: 5px;
    padding-bottom: 5px; }

.nav-main {
  margin-bottom: 0; }
  .fsHeader .nav-main {
    display: none; }
    @media (min-width: 1200px) {
      .fsHeader .nav-main {
        display: block; } }
  @media (min-width: 1200px) {
    .nav-main .fsNavLevel1 {
      display: -ms-flexbox;
      display: flex; }
      .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: 1200px) {
    .nav-main .fsNavLevel1 > li {
      -ms-flex: 1 auto;
      flex: 1 auto; } }
  .nav-main .fsNavLevel1 > li:hover > a {
    color: #fff;
    background: #540903; }
  .nav-main .fsNavLevel1 > li[class*="fsNavCurrentPage"] > a {
    color: #fff;
    background: #540903; }
  .nav-main .fsNavLevel1 > li > a {
    display: block;
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    padding: 1.25em 38px; }
    .nav-main .fsNavLevel1 > li > a:focus {
      color: #fff;
      background: #540903; }
  html.js .nav-main .fsNavLevel1 > li {
    position: relative;
    position: static; }
    html.js .nav-main .fsNavLevel1 > li > .fsNavPageInfo {
      position: absolute;
      top: 100%;
      left: 0;
      max-height: 0;
      overflow: hidden; }
    .menu-item-open html.js .nav-main .fsNavLevel1 > li > .fsNavPageInfo {
      max-height: 9999px; }
    html.js .nav-main .fsNavLevel1 > li.menu-item-open > .fsNavPageInfo {
      max-height: 9999px; }
    html.js .nav-main .fsNavLevel1 > li:hover > .fsNavPageInfo {
      max-height: 9999px;
      padding: 40px 20px;
      box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
      -ms-transform: translateY(0);
      transform: translateY(0);
      transition-delay: .8s;
      opacity: 1;
      visibility: visible;
      height: auto; }
  html:not(.js) .nav-main .fsNavLevel1 > li {
    position: relative;
    position: static; }
    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: #fff;
  text-align: left;
  width: 100%;
  z-index: 300; }
  .nav-main .fsNavLevel1 > li:first-child .fsNavPageInfo {
    left: 0;
    -ms-transform: none;
    transform: none; }
  .nav-main .fsNavLevel1 > li:last-child .fsNavPageInfo {
    right: 0;
    left: auto;
    -ms-transform: none;
    transform: none; }
  html.js .nav-main .fsNavLevel1 > li.our-schools .fsNavPageInfo {
    padding: 0; }
  html:not(.js) .nav-main .fsNavLevel1 > li.our-schools .fsNavPageInfo {
    padding: 0; }

.nav-main .meganav-wrap {
  position: relative;
  margin: 0 auto;
  max-width: 80em;
  max-width: 80rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-align: start;
  align-items: flex-start; }

.nav-main .fsNavPageThumbnail {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 13.28125%;
  margin-right: 10.9375%; }
  .nav-main .fsNavPageThumbnail img {
    height: 143px;
    width: 136px; }

.nav-main .fsNavLevel2 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 75.78125%; }
  .nav-main .fsNavLevel2 > li {
    display: inline-block;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 25%;
    padding: 0 10px; }
    .nav-main .fsNavLevel2 > li > a {
      display: block;
      color: #8b0e05;
      background: transparent;
      padding: 0.625em 0;
      font-family: "acumin-pro-condensed", sans-serif;
      font-size: 20px;
      font-weight: 700; }
      .nav-main .fsNavLevel2 > li > a:hover, .nav-main .fsNavLevel2 > li > a:focus {
        color: #540903;
        background: transparent; }
    .nav-main .fsNavLevel2 > li[class*="fsNavCurrentPage"] > a {
      color: #540903;
      background: transparent; }
  .nav-main .fsNavLevel2 .fsNavPageInfo {
    display: block; }

.nav-main .fsNavLevel3 > li > a {
  display: block;
  color: #757575;
  background: transparent;
  padding: 5px 0;
  font-size: 15px; }
  .nav-main .fsNavLevel3 > li > a:hover, .nav-main .fsNavLevel3 > li > a:focus {
    color: #540903;
    background: transparent; }

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

.nav-main .our-schools .fsNavPageInfo .fsContainer {
  position: relative; }
  .nav-main .our-schools .fsNavPageInfo .fsContainer > .fsElementContent {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    position: relative;
    margin: 0 auto;
    max-width: 80em;
    max-width: 80rem;
    padding: 26px 0; }
  .nav-main .our-schools .fsNavPageInfo .fsContainer:before {
    content: '';
    background: rgba(84, 9, 3, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.nav-main .our-schools .fsNavLevel2 {
  display: none; }

.nav-main .school-info {
  background: rgba(255, 255, 255, 0.8);
  width: 260px;
  padding: 30px; }
  .nav-main .school-info:last-child {
    margin-bottom: 20px; }
  .nav-main .school-info header {
    display: block; }
    .nav-main .school-info header .fsElementHeaderContent {
      margin: 0;
      color: #540903;
      font-weight: 500;
      font-size: 15px;
      text-transform: uppercase;
      line-height: 1.2; }
      .nav-main .school-info header .fsElementHeaderContent a {
        color: inherit;
        padding: 0; }
        .nav-main .school-info header .fsElementHeaderContent a:hover {
          color: #8b0e05; }
      .nav-main .school-info header .fsElementHeaderContent br {
        display: none; }
      .nav-main .school-info header .fsElementHeaderContent p {
        margin: 0; }
      .nav-main .school-info header .fsElementHeaderContent em {
        color: #343845;
        font-style: normal;
        text-transform: none; }
  .nav-main .school-info footer {
    color: #540903;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3; }
    .nav-main .school-info footer p {
      margin: 0; }

.schools-meganav {
  display: none; }

.fsMenu .nav-mobile {
  font-family: "acumin-pro-condensed", sans-serif;
  margin-bottom: 50px; }
  .fsMenu .nav-mobile .fsElementHeaderContent {
    position: relative;
    height: 50px;
    margin-bottom: 0; }
  .fsMenu .nav-mobile .fsNavLevel1 > li {
    position: relative; }
    .fsMenu .nav-mobile .fsNavLevel1 > li.currentExpand > a {
      color: #fff;
      border-color: transparent;
      background: #540903; }
    .fsMenu .nav-mobile .fsNavLevel1 > li:hover > a {
      color: #fff; }
    .fsMenu .nav-mobile .fsNavLevel1 > li > a {
      color: #fff;
      font-size: 20px;
      font-weight: 700;
      border-bottom: solid 1px rgba(151, 151, 151, 0.4);
      padding: 13px 50px 13px 25px;
      margin: 0;
      line-height: 22px;
      text-transform: uppercase; }
  .fsMenu .nav-mobile .toggleMenu {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 49px;
    cursor: pointer;
    z-index: 20; }
    .fsMenu .nav-mobile .toggleMenu:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none;
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      font-size: 14px;
      color: #fff; }
  .fsMenu .nav-mobile .fsNavPageInfo {
    text-align: left;
    max-height: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height .5s ease, visibility .5s ease;
    width: 100%;
    margin-top: 0; }
    .nav-mobile .fsNavLevel1 > li.fsNavParentPage.currentExpand > .fsNavPageInfo {
      max-height: 9999px;
      visibility: visible; }
    .fsMenu .nav-mobile .fsNavLevel1 > li.fsNavParentPage.currentExpand > .toggleMenu:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none; }
    .nav-mobile .fsNavLevel2 > li.fsNavParentPage.currentExpand > .fsNavPageInfo {
      max-height: 9999px;
      visibility: visible; }
    .fsMenu .nav-mobile .fsNavLevel2 > li.fsNavParentPage.currentExpand > .toggleMenu:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none; }
    .nav-mobile .fsNavLevel3 > li.fsNavParentPage.currentExpand > .fsNavPageInfo {
      max-height: 9999px;
      visibility: visible; }
    .fsMenu .nav-mobile .fsNavLevel3 > li.fsNavParentPage.currentExpand > .toggleMenu:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none; }
    .nav-mobile .fsNavLevel4 > li.fsNavParentPage.currentExpand > .fsNavPageInfo {
      max-height: 9999px;
      visibility: visible; }
    .fsMenu .nav-mobile .fsNavLevel4 > li.fsNavParentPage.currentExpand > .toggleMenu:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none; }
    @media (min-width: 1200px) {
      .nav-mobile .fsNavParentPage:hover .fsNavPageInfo {
        display: block; } }
  .fsMenu .nav-mobile .fsNavLevel2 {
    -moz-column-count: 1;
    column-count: 1; }
    .fsMenu .nav-mobile .fsNavLevel2 li {
      position: relative; }
      .fsMenu .nav-mobile .fsNavLevel2 li.currentExpand > a,
      .fsMenu .nav-mobile .fsNavLevel2 li.currentExpand .toggleMenu:before,
      .fsMenu .nav-mobile .fsNavLevel2 li:hover > a,
      .fsMenu .nav-mobile .fsNavLevel2 li:hover .toggleMenu:before {
        color: rgba(255, 255, 255, 0.8); }
    .fsMenu .nav-mobile .fsNavLevel2 a {
      padding: 7px 40px;
      color: #fff;
      display: block;
      font-size: 18px;
      font-weight: 500;
      line-height: 25px; }
      .fsMenu .nav-mobile .fsNavLevel2 a:hover {
        background: transparent; }
    .fsMenu .nav-mobile .fsNavLevel2 .toggleMenu {
      height: 40px; }
  .fsMenu .nav-mobile .fsNavLevel3 li {
    position: relative; }
    .fsMenu .nav-mobile .fsNavLevel3 li.currentExpand > a,
    .fsMenu .nav-mobile .fsNavLevel3 li.currentExpand .toggleMenu:before,
    .fsMenu .nav-mobile .fsNavLevel3 li:hover > a,
    .fsMenu .nav-mobile .fsNavLevel3 li:hover .toggleMenu:before {
      color: rgba(255, 255, 255, 0.8); }
  .fsMenu .nav-mobile .fsNavLevel3 a {
    padding: 7px 60px;
    display: block;
    text-transform: capitalize; }
  .fsMenu .nav-mobile .fsNavLevel4 li {
    position: relative; }
    .fsMenu .nav-mobile .fsNavLevel4 li.currentExpand > a,
    .fsMenu .nav-mobile .fsNavLevel4 li.currentExpand .toggleMenu:before,
    .fsMenu .nav-mobile .fsNavLevel4 li:hover a,
    .fsMenu .nav-mobile .fsNavLevel4 li:hover .toggleMenu:before {
      color: rgba(255, 255, 255, 0.8); }
  .fsMenu .nav-mobile .fsNavLevel4 a {
    padding: 7px 70px;
    display: block; }
  .fsMenu .nav-mobile .fsNavLevel5 li {
    position: relative; }
    .fsMenu .nav-mobile .fsNavLevel5 li.currentExpand > a,
    .fsMenu .nav-mobile .fsNavLevel5 li.currentExpand .toggleMenu:before,
    .fsMenu .nav-mobile .fsNavLevel5 li:hover a,
    .fsMenu .nav-mobile .fsNavLevel5 li:hover .toggleMenu:before {
      color: rgba(255, 255, 255, 0.8); }
  .fsMenu .nav-mobile .fsNavLevel5 a {
    padding: 7px 80px;
    display: block; }

.drawer-ribbon {
  position: relative;
  height: 40px;
  margin: 0;
  background: #fff; }
  .fsMenu .drawer-ribbon {
    background: transparent;
    margin-bottom: 20px;
    width: 100%; }
  .drawer-ribbon header {
    display: none; }
  @media (min-width: 700px) {
    .drawer-ribbon {
      width: 40px; } }
  @media (min-width: 1200px) {
    .drawer-ribbon {
      display: none; } }

.drawer-trigger {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border: 0;
  background: none;
  outline: 0;
  margin: 0;
  padding: 0;
  max-width: 40px;
  left: auto;
  right: 0; }
  .drawer-trigger:before, .drawer-trigger:after {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 2px;
    width: 40%;
    content: '';
    background: #8b0e05; }
    .fsMenu .drawer-trigger:before, .fsMenu .drawer-trigger:after {
      background: #fff; }
  .drawer-trigger:before {
    margin-top: -0.3125em;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: margin-top .3s, transform .3s; }
  .drawer-trigger:after {
    box-shadow: 0 0.3125em 0 0 #8b0e05;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: box-shadow .3s, transform .3s; }
  .drawer-is-active .drawer-trigger:before {
    margin-top: 0;
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg); }
  .drawer-is-active .drawer-trigger:after {
    box-shadow: none;
    -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;
  transition: opacity .3s, visibility .3s, transform .3s;
  top: 0;
  left: 0;
  transform: translate3d(-20%, 0, 0);
  -ms-transform: translate(-20%, 0);
  transform: translate(-20%, 0);
  top: 0;
  min-height: 100%;
  max-width: 37.5em;
  background: #343845;
  padding: 10px 20px; }
  .drawer-is-active .fsMenu {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  .fsMenu header {
    display: none; }

.nav-social {
  margin-left: 30px; }
  .fsMenu .nav-social {
    margin-left: 25px; }
  .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: 24px; }
    .nav-social .fsNavLevel1 [href*='facebook']:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none; }
    .nav-social .fsNavLevel1 [href*='instagram']:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none; }
    .nav-social .fsNavLevel1 [href*='linkedin']:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none; }
    .nav-social .fsNavLevel1 [href*='pinterest']:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none; }
    .nav-social .fsNavLevel1 [href*='tumblr']:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none; }
    .nav-social .fsNavLevel1 [href*='twitter']:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none; }
    .nav-social .fsNavLevel1 [href*='vimeo']:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none; }
    .nav-social .fsNavLevel1 [href*='vine']:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none; }
    .nav-social .fsNavLevel1 [href*='youtube']:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none; }
    .nav-social .fsNavLevel1 [href*='rss']:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none; }
    .nav-social .fsNavLevel1 [href*='smugmug']:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none; }
    .nav-social .fsNavLevel1 [href*='facebook']:hover:before, .nav-social .fsNavLevel1 [href*='facebook']:focus:before {
      color: #fff; }
    .nav-social .fsNavLevel1 [href*='instagram']:hover:before, .nav-social .fsNavLevel1 [href*='instagram']:focus:before {
      color: #fff; }
    .nav-social .fsNavLevel1 [href*='linkedin']:hover:before, .nav-social .fsNavLevel1 [href*='linkedin']:focus:before {
      color: #fff; }
    .nav-social .fsNavLevel1 [href*='pinterest']:hover:before, .nav-social .fsNavLevel1 [href*='pinterest']:focus:before {
      color: #fff; }
    .nav-social .fsNavLevel1 [href*='tumblr']:hover:before, .nav-social .fsNavLevel1 [href*='tumblr']:focus:before {
      color: #fff; }
    .nav-social .fsNavLevel1 [href*='twitter']:hover:before, .nav-social .fsNavLevel1 [href*='twitter']:focus:before {
      color: #fff; }
    .nav-social .fsNavLevel1 [href*='vimeo']:hover:before, .nav-social .fsNavLevel1 [href*='vimeo']:focus:before {
      color: #fff; }
    .nav-social .fsNavLevel1 [href*='vine']:hover:before, .nav-social .fsNavLevel1 [href*='vine']:focus:before {
      color: #fff; }
    .nav-social .fsNavLevel1 [href*='youtube']:hover:before, .nav-social .fsNavLevel1 [href*='youtube']:focus:before {
      color: #fff; }
    .nav-social .fsNavLevel1 [href*='rss']:hover:before, .nav-social .fsNavLevel1 [href*='rss']:focus:before {
      color: #fff; }
    .nav-social .fsNavLevel1 [href*='smugmug']:hover:before, .nav-social .fsNavLevel1 [href*='smugmug']:focus:before {
      color: #fff; }
    .nav-social .fsNavLevel1 a {
      display: block;
      line-height: 1; }
      .nav-social .fsNavLevel1 a:before {
        color: rgba(255, 255, 255, 0.7);
        font-size: 18px;
        transition: 0.3s all;
        display: block; }

.nav-utility-header {
  display: none; }
  @media (min-width: 1200px) {
    .nav-utility-header {
      display: block; } }
  @media (min-width: 1200px) {
    .nav-utility-header > .fsElementContent {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: end;
      justify-content: flex-end;
      -ms-flex-align: center;
      align-items: center; } }

.portal-nav,
.quick-links {
  margin: 0; }
  .portal-nav .fsNavLevel1,
  .quick-links .fsNavLevel1 {
    display: -ms-flexbox;
    display: flex; }
    .fsMenu .portal-nav .fsNavLevel1, .fsMenu
    .quick-links .fsNavLevel1 {
      -ms-flex-direction: column;
      flex-direction: column; }
    .portal-nav .fsNavLevel1 > li > a,
    .quick-links .fsNavLevel1 > li > a {
      color: #979797;
      font-family: "acumin-pro-condensed", sans-serif;
      font-weight: 700;
      font-size: 20px;
      padding: 10px 20px; }
      .portal-nav .fsNavLevel1 > li > a:hover,
      .quick-links .fsNavLevel1 > li > a:hover {
        color: #540903; }
    html.js #fsHeader .portal-nav .fsNavLevel1 > li, html.js #fsHeader
    .quick-links .fsNavLevel1 > li {
      position: relative; }
      html.js #fsHeader .portal-nav .fsNavLevel1 > li > .fsNavPageInfo, html.js #fsHeader
      .quick-links .fsNavLevel1 > li > .fsNavPageInfo {
        position: absolute;
        top: 100%;
        left: 0;
        max-height: 0;
        overflow: hidden; }
      .menu-item-open html.js #fsHeader .portal-nav .fsNavLevel1 > li > .fsNavPageInfo, .menu-item-open html.js #fsHeader
      .quick-links .fsNavLevel1 > li > .fsNavPageInfo {
        max-height: 9999px; }
      html.js #fsHeader .portal-nav .fsNavLevel1 > li.menu-item-open > .fsNavPageInfo {
        max-height: 9999px; }
      html.js #fsHeader .quick-links .fsNavLevel1 > li.menu-item-open > .fsNavPageInfo {
        max-height: 9999px; }
      html.js #fsHeader .portal-nav .fsNavLevel1 > li:hover .fsNavPageInfo, html.js #fsHeader
      .quick-links .fsNavLevel1 > li:hover .fsNavPageInfo {
        max-height: 9999px;
        left: 50%;
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        border: solid 1px #ebebeb; }
    html:not(.js) #fsHeader .portal-nav .fsNavLevel1 > li, html:not(.js) #fsHeader
    .quick-links .fsNavLevel1 > li {
      position: relative; }
      html:not(.js) #fsHeader .portal-nav .fsNavLevel1 > li > .fsNavPageInfo, html:not(.js) #fsHeader
      .quick-links .fsNavLevel1 > li > .fsNavPageInfo {
        position: absolute;
        top: 100%;
        left: 0;
        max-height: 0;
        overflow: hidden; }
      html:not(.js) #fsHeader .portal-nav .fsNavLevel1 > li:hover > .fsNavPageInfo, html:not(.js) #fsHeader
      .quick-links .fsNavLevel1 > li:hover > .fsNavPageInfo {
        max-height: 9999px; }
      @media (max-width: 599px) {
        html:not(.js) #fsHeader .portal-nav .fsNavLevel1 > li:focus > .fsNavPageInfo, html:not(.js) #fsHeader
        .quick-links .fsNavLevel1 > li:focus > .fsNavPageInfo {
          max-height: 9999px; } }
  .portal-nav .fsNavPageInfo,
  .quick-links .fsNavPageInfo {
    background: #fff;
    width: 220px;
    z-index: 30; }
    .portal-nav .fsNavPageInfo .fsNavLevel2 li a,
    .quick-links .fsNavPageInfo .fsNavLevel2 li a {
      padding: 10px 20px; }

#fsMenu .portal-nav,
#fsMenu .quick-links {
  font-family: "acumin-pro-condensed", sans-serif; }
  #fsMenu .portal-nav .fsElementHeaderContent,
  #fsMenu .quick-links .fsElementHeaderContent {
    position: relative;
    height: 50px;
    margin-bottom: 0; }
  #fsMenu .portal-nav .fsNavLevel1 > li,
  #fsMenu .quick-links .fsNavLevel1 > li {
    position: relative; }
    #fsMenu .portal-nav .fsNavLevel1 > li.currentExpand > a,
    #fsMenu .quick-links .fsNavLevel1 > li.currentExpand > a {
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
      border-color: transparent; }
    #fsMenu .portal-nav .fsNavLevel1 > li:hover > a,
    #fsMenu .quick-links .fsNavLevel1 > li:hover > a {
      color: #fff; }
    #fsMenu .portal-nav .fsNavLevel1 > li > a,
    #fsMenu .quick-links .fsNavLevel1 > li > a {
      color: #979797;
      font-size: 20px;
      font-weight: 700;
      border-bottom: solid 1px rgba(151, 151, 151, 0.4);
      padding: 13px 50px 13px 25px;
      margin: 0;
      line-height: 22px;
      text-transform: uppercase; }
  #fsMenu .portal-nav .fsNavLevel2 li,
  #fsMenu .quick-links .fsNavLevel2 li {
    position: relative; }
    #fsMenu .portal-nav .fsNavLevel2 li.currentExpand > a,
    #fsMenu .portal-nav .fsNavLevel2 li.currentExpand .toggleMenu:before,
    #fsMenu .portal-nav .fsNavLevel2 li:hover > a,
    #fsMenu .portal-nav .fsNavLevel2 li:hover .toggleMenu:before,
    #fsMenu .quick-links .fsNavLevel2 li.currentExpand > a,
    #fsMenu .quick-links .fsNavLevel2 li.currentExpand .toggleMenu:before,
    #fsMenu .quick-links .fsNavLevel2 li:hover > a,
    #fsMenu .quick-links .fsNavLevel2 li:hover .toggleMenu:before {
      color: rgba(255, 255, 255, 0.8); }
  #fsMenu .portal-nav .fsNavLevel2 a,
  #fsMenu .quick-links .fsNavLevel2 a {
    padding: 7px 40px;
    color: #fff;
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px; }
    #fsMenu .portal-nav .fsNavLevel2 a:hover,
    #fsMenu .quick-links .fsNavLevel2 a:hover {
      background: transparent; }
  #fsMenu .portal-nav .toggleMenu,
  #fsMenu .quick-links .toggleMenu {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 49px;
    cursor: pointer;
    z-index: 20; }
    #fsMenu .portal-nav .toggleMenu:before,
    #fsMenu .quick-links .toggleMenu:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none;
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      font-size: 14px;
      color: #fff; }
  #fsMenu .portal-nav .fsNavPageInfo,
  #fsMenu .quick-links .fsNavPageInfo {
    text-align: left;
    max-height: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height .5s ease, visibility .5s ease;
    width: 100%;
    margin-top: 0;
    background: transparent; }
    #fsMenu .portal-nav .fsNavLevel1 > li.fsNavParentPage.currentExpand > .fsNavPageInfo {
      max-height: 9999px;
      visibility: visible;
      position: relative; }
    #fsMenu .portal-nav .fsNavLevel1 > li.fsNavParentPage.currentExpand > .toggleMenu:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none; }
    @media (min-width: 1200px) {
      #fsMenu .portal-nav .fsNavParentPage:hover .fsNavPageInfo {
        display: block; } }
    #fsMenu .quick-links .fsNavLevel1 > li.fsNavParentPage.currentExpand > .fsNavPageInfo {
      max-height: 9999px;
      visibility: visible; }
    #fsMenu .quick-links .fsNavLevel1 > li.fsNavParentPage.currentExpand > .toggleMenu:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none; }
    @media (min-width: 1200px) {
      #fsMenu .quick-links .fsNavParentPage:hover .fsNavPageInfo {
        display: block; } }

.nav-utility-footer {
  padding: 0 20px; }
  @media (min-width: 1000px) {
    .nav-utility-footer {
      padding-left: 121px; } }
  .nav-utility-footer .fsNavLevel1 {
    text-align: center; }
    .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; }
    @media (min-width: 600px) {
      .nav-utility-footer .fsNavLevel1 {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -ms-flex-pack: center;
        justify-content: center; } }
    @media (min-width: 1000px) {
      .nav-utility-footer .fsNavLevel1 {
        -ms-flex-pack: start;
        justify-content: flex-start; } }
    @media (min-width: 600px) {
      .nav-utility-footer .fsNavLevel1 > li {
        display: inline-block; } }
    .nav-utility-footer .fsNavLevel1 > li:last-child a:after {
      content: none; }
    .nav-utility-footer .fsNavLevel1 > li > a {
      color: rgba(255, 255, 255, 0.7);
      font-weight: 500;
      padding: 5px 0; }
      .nav-utility-footer .fsNavLevel1 > li > a:hover {
        color: #fff; }
      @media (min-width: 600px) {
        .nav-utility-footer .fsNavLevel1 > li > a:after {
          content: '|';
          padding: 0 26px; } }

/*! structure - header v0.0.1 */
.skip-link {
  margin: 0; }
  .skip-link header {
    display: none; }
  .skip-link a {
    background: transparent;
    position: absolute;
    top: -50px;
    left: 0;
    padding: 10px;
    transition: top 1s ease-out, background 1s linear;
    z-index: 9999; }

.top-row {
  background: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
  padding: 0 0 30px; }
  @media (min-width: 700px) {
    .top-row {
      -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -ms-flex-align: center;
      align-items: center;
      padding: 30px; } }
  @media (min-width: 1200px) {
    .top-row {
      display: block;
      padding-left: 20px;
      padding-right: 20px; } }
  .top-row header {
    display: none; }
  .top-row > .fsElementContent {
    -ms-flex-order: 2;
    order: 2; }
    @media (min-width: 700px) {
      .top-row > .fsElementContent {
        -ms-flex-order: 1;
        order: 1; } }
    @media (min-width: 1200px) {
      .top-row > .fsElementContent {
        position: relative;
        margin: 0 auto;
        max-width: 80em;
        max-width: 80rem;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-align: center;
        align-items: center; } }
  .top-row footer {
    -ms-flex-order: 1;
    order: 1; }
    @media (min-width: 700px) {
      .top-row footer {
        -ms-flex-order: 2;
        order: 2; } }
    @media (min-width: 1200px) {
      .top-row footer {
        display: none; } }
    .top-row footer .fsElementFooterContent {
      margin: 0; }

.nav-row {
  display: none;
  padding: 0 20px;
  position: relative;
  margin-bottom: 0; }
  @media (min-width: 1200px) {
    .nav-row {
      display: block; } }
  .nav-row header {
    display: none; }
  .nav-row > .fsElementContent {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    margin: 0 auto;
    max-width: 80em;
    max-width: 80rem;
    position: static; }

.site-info-container {
  width: 100%;
  text-align: center;
  margin: 0; }
  @media (min-width: 700px) {
    .site-info-container {
      width: auto;
      text-align: left; } }
  .site-info-container a {
    display: block;
    color: #8b0e05;
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase; }
    .site-info-container a strong {
      font-weight: 700;
      display: block; }
      @media (min-width: 700px) {
        .site-info-container a strong {
          display: inline; } }
    .site-info-container a:hover {
      color: #540903; }

#fsFooter {
  color: #fff; }
  #fsFooter .fsBanner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    #fsFooter .fsBanner:after {
      content: normal; }
    body.fsDraftMode #fsFooter .fsBanner {
      -ms-flex-flow: row wrap;
      flex-flow: row wrap; }
      body.fsDraftMode #fsFooter .fsBanner .fsElementActionButtonContainer {
        -ms-flex: 0 1 100%;
        flex: 0 1 100%; }
  #fsFooter .address-container {
    background: #540903;
    padding: 26px 20px;
    text-align: center; }
    @media (min-width: 600px) {
      #fsFooter .address-container {
        text-align: left; } }
    #fsFooter .address-container > .fsElementContent {
      position: relative;
      margin: 0 auto;
      max-width: 80em;
      max-width: 80rem; }
      @media (min-width: 1000px) {
        #fsFooter .address-container > .fsElementContent {
          display: -ms-flexbox;
          display: flex;
          -ms-flex-pack: justify;
          justify-content: space-between;
          -ms-flex-align: center;
          align-items: center; } }
  #fsFooter .utility-container {
    padding: 0 20px; }
    #fsFooter .utility-container > .fsElementContent {
      position: relative;
      margin: 0 auto;
      max-width: 80em;
      max-width: 80rem; }

.translate {
  position: relative;
  display: inline-block; }
  @media (min-width: 600px) {
    .translate {
      margin-left: 121px; } }
  .translate .fsElementTitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    font-weight: 700;
    margin: 0; }
    .translate .fsElementTitle:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none;
      font-size: 22px;
      margin-right: 10px; }
  .translate .fsElementContent {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0; }
  .translate #google_translate_element {
    display: inline-block; }
    .translate #google_translate_element .goog-te-gadget {
      font-size: 0;
      line-height: 1; }
      .translate #google_translate_element .goog-te-gadget .goog-te-combo {
        border: 0;
        background: none;
        outline: 0;
        margin: 0;
        padding: 0;
        height: 30px;
        cursor: pointer;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none; }
      .translate #google_translate_element .goog-te-gadget span {
        display: none; }
    .translate #google_translate_element label {
      visibility: hidden;
      opacity: 0;
      position: absolute;
      left: -9999px; }

@media (min-width: 600px) {
  .school-details-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0; } }

.school-details-container header {
  width: 96px;
  margin: auto; }
  @media (min-width: 600px) {
    .school-details-container header {
      margin: 0 25px 0 0; } }

.school-details {
  margin-bottom: 20px;
  font-weight: 500; }
  .school-details [itemprop='name'] {
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: 30px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px; }
    .school-details [itemprop='name'] strong {
      display: block;
      font-weight: 700; }
      @media (min-width: 600px) {
        .school-details [itemprop='name'] strong {
          display: inline-block; } }
  @media (min-width: 600px) {
    .school-details [itemprop='address'] {
      display: inline-block; } }
  .school-details [itemprop='streetAddress'] {
    display: block; }
    @media (min-width: 600px) {
      .school-details [itemprop='streetAddress'] {
        display: inline-block; }
        .school-details [itemprop='streetAddress']:after {
          content: '|';
          padding: 0 14px; } }
  @media (min-width: 600px) {
    .school-details [itemprop='telephone'] {
      display: inline-block; }
      .school-details [itemprop='telephone']:before {
        content: '|';
        padding: 0 14px; } }
  .school-details [itemprop='telephone'] a {
    color: #fff;
    text-decoration: none; }
  .school-details a {
    color: inherit; }

/*! structure - layouts v0.0.1 */
* {
  box-sizing: border-box; }

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

html {
  font-family: "acumin-pro-semi-condensed", sans-serif;
  background: #343845;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

body {
  font-size: 16px;
  line-height: 22px;
  color: #757575; }

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

#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: 80em;
  max-width: 80rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  @media (min-width: 1000px) {
    #fsPageBody {
      display: block; } }
  @media (min-width: 1000px) {
    #fsPageBody {
      display: -ms-flexbox;
      display: flex; } }

#fsBannerLeft {
  -ms-flex-order: 2;
  order: 2;
  width: 100%;
  margin-bottom: 20px; }
  @media (min-width: 1000px) {
    #fsBannerLeft {
      padding-right: 20px;
      width: 200px;
      -ms-flex-order: 2;
      order: 2;
      margin-bottom: 0; } }
  @media (min-width: 1000px) {
    #fsBannerLeft {
      padding-right: 40px;
      width: 280px;
      -ms-flex-order: 1;
      order: 1; } }
  @media (min-width: 1000px) {
    .fsHasLeftBanner.fsHasRightBanner #fsBannerLeft {
      -ms-flex-order: 2;
      order: 2;
      padding-right: 20px;
      width: 200px; } }
  @media (min-width: 1000px) {
    .fsHasLeftBanner.fsHasRightBanner #fsBannerLeft {
      padding-right: 40px;
      width: 280px; } }
  @media (min-width: 1000px) {
    .fsHasLeftBanner.fsHasRightBanner #fsBannerLeft {
      -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 {
    -ms-flex-order: 1;
    order: 1;
    width: 100%; }
    @media (min-width: 1000px) {
      .fsHasRightBanner #fsPageContent {
        -ms-flex-order: 1;
        order: 1;
        width: calc(100% - 240px); } }
    @media (min-width: 1000px) {
      .fsHasRightBanner #fsPageContent {
        -ms-flex-order: 2;
        order: 2;
        width: calc(100% - 380px); } }
  .fsHasLeftBanner #fsPageContent {
    -ms-flex-order: 1;
    order: 1;
    width: 100%; }
    @media (min-width: 1000px) {
      .fsHasLeftBanner #fsPageContent {
        -ms-flex-order: 1;
        order: 1;
        width: calc(100% - 200px); } }
    @media (min-width: 1000px) {
      .fsHasLeftBanner #fsPageContent {
        -ms-flex-order: 2;
        order: 2;
        width: calc(100% - 280px); } }
  .fsHasLeftBanner.fsHasRightBanner #fsPageContent {
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 20px;
    width: 100%; }
    @media (min-width: 1000px) {
      .fsHasLeftBanner.fsHasRightBanner #fsPageContent {
        -ms-flex-order: 1;
        order: 1;
        width: calc(100% - 200px); } }
    @media (min-width: 1000px) {
      .fsHasLeftBanner.fsHasRightBanner #fsPageContent {
        width: calc(100% - 280px); } }
    @media (min-width: 1000px) {
      .fsHasLeftBanner.fsHasRightBanner #fsPageContent {
        -ms-flex-order: 2;
        order: 2;
        width: calc(100% - 440px);
        margin-bottom: 0; } }
    @media (min-width: 1000px) {
      .fsHasLeftBanner.fsHasRightBanner #fsPageContent {
        width: calc(100% - 660px); } }

#fsBannerRight {
  -ms-flex-order: 3;
  order: 3;
  width: 100%;
  margin-bottom: 20px; }
  @media (min-width: 1000px) {
    #fsBannerRight {
      padding-left: 20px;
      width: 240px;
      -ms-flex-order: 3;
      order: 3;
      margin-bottom: 0; } }
  @media (min-width: 1000px) {
    #fsBannerRight {
      padding-left: 80px;
      width: 380px;
      -ms-flex-order: 3;
      order: 3; } }
  .fsHasLeftBanner.fsHasRightBanner #fsBannerRight {
    width: 100%;
    padding: 0; }
    @media (min-width: 1000px) {
      .fsHasLeftBanner.fsHasRightBanner #fsBannerRight {
        width: calc(100% - 200px); } }
    @media (min-width: 1000px) {
      .fsHasLeftBanner.fsHasRightBanner #fsBannerRight {
        width: calc(100% - 280px); } }
    @media (min-width: 1000px) {
      .fsHasLeftBanner.fsHasRightBanner #fsBannerRight {
        -ms-flex-order: 3;
        order: 3;
        padding-left: 20px;
        width: 240px; } }
    @media (min-width: 1000px) {
      .fsHasLeftBanner.fsHasRightBanner #fsBannerRight {
        padding-left: 80px;
        width: 380px; } }

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

.fsLayout .fsDiv {
  margin-bottom: 20px;
  width: 100%;
  float: none; }
  @media (min-width: 1000px) {
    .fsLayout .fsDiv {
      float: left; } }
  @media (min-width: 1000px) {
    .fsLayout .fsDiv {
      padding-right: 1.25em;
      padding-left: 1.25em; } }

@media (min-width: 1000px) {
  .fsLayout > footer,
  .fsLayout > header {
    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: 1000px) {
    .fsLayout .fsStyleTwoThirds > .fsTwoColumnLayout {
      margin-right: -20px;
      margin-left: -20px; } }

.fsElephantLeftLayout,
.fsTwoColumnWideRightLayout {
  margin-left: 0;
  margin-right: 0; }
  @media (min-width: 1000px) {
    .fsElephantLeftLayout,
    .fsTwoColumnWideRightLayout {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; } }
  .fsElephantLeftLayout .fsStyleOneThird,
  .fsTwoColumnWideRightLayout .fsStyleOneThird {
    width: 100%;
    margin-bottom: 20px; }
    @media (min-width: 1000px) {
      .fsElephantLeftLayout .fsStyleOneThird,
      .fsTwoColumnWideRightLayout .fsStyleOneThird {
        padding-left: 0;
        padding-right: 20px;
        width: 200px;
        margin-bottom: 0; } }
    @media (min-width: 1000px) {
      .fsElephantLeftLayout .fsStyleOneThird,
      .fsTwoColumnWideRightLayout .fsStyleOneThird {
        padding-right: 40px;
        width: 280px; } }
  .fsElephantLeftLayout .fsStyleTwoThirds,
  .fsTwoColumnWideRightLayout .fsStyleTwoThirds {
    width: 100%; }
    @media (min-width: 1000px) {
      .fsElephantLeftLayout .fsStyleTwoThirds,
      .fsTwoColumnWideRightLayout .fsStyleTwoThirds {
        padding-left: 0;
        padding-right: 0;
        width: calc(100% - 200px); } }
    @media (min-width: 1000px) {
      .fsElephantLeftLayout .fsStyleTwoThirds,
      .fsTwoColumnWideRightLayout .fsStyleTwoThirds {
        width: calc(100% - 280px); } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fsElephantRightLayout,
.fsTwoColumnWideLeftLayout {
  margin-left: 0;
  margin-right: 0; }
  @media (min-width: 1000px) {
    .fsElephantRightLayout,
    .fsTwoColumnWideLeftLayout {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; } }
  .fsElephantRightLayout .fsStyleOneThird,
  .fsTwoColumnWideLeftLayout .fsStyleOneThird {
    width: 100%;
    margin-bottom: 20px; }
    @media (min-width: 1000px) {
      .fsElephantRightLayout .fsStyleOneThird,
      .fsTwoColumnWideLeftLayout .fsStyleOneThird {
        padding-left: 20px;
        padding-right: 0;
        width: 240px;
        margin-bottom: 0; } }
    @media (min-width: 1000px) {
      .fsElephantRightLayout .fsStyleOneThird,
      .fsTwoColumnWideLeftLayout .fsStyleOneThird {
        padding-left: 80px;
        width: 380px; } }
  .fsElephantRightLayout .fsStyleTwoThirds,
  .fsTwoColumnWideLeftLayout .fsStyleTwoThirds {
    width: 100%; }
    @media (min-width: 1000px) {
      .fsElephantRightLayout .fsStyleTwoThirds,
      .fsTwoColumnWideLeftLayout .fsStyleTwoThirds {
        width: calc(100% - 240px);
        padding-left: 0;
        padding-right: 0; } }
    @media (min-width: 1000px) {
      .fsElephantRightLayout .fsStyleTwoThirds,
      .fsTwoColumnWideLeftLayout .fsStyleTwoThirds {
        width: calc(100% - 380px); } }

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

.fsHasElephantRightLayout.fsHasLeftBanner #fsBannerLeft,
.fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsBannerLeft {
  width: 100%;
  padding-left: 0;
  margin-bottom: 20px; }
  @media (min-width: 1000px) {
    .fsHasElephantRightLayout.fsHasLeftBanner #fsBannerLeft,
    .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsBannerLeft {
      padding-right: 20px;
      width: 200px; } }
  @media (min-width: 1000px) {
    .fsHasElephantRightLayout.fsHasLeftBanner #fsBannerLeft,
    .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsBannerLeft {
      padding-right: 40px;
      width: 280px; } }
  @media (min-width: 1000px) {
    .fsHasElephantRightLayout.fsHasLeftBanner #fsBannerLeft,
    .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsBannerLeft {
      padding-right: 20px;
      width: 200px;
      margin-bottom: 0; } }
  @media (min-width: 1000px) {
    .fsHasElephantRightLayout.fsHasLeftBanner #fsBannerLeft,
    .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsBannerLeft {
      padding-right: 40px;
      width: 280px; } }

.fsHasElephantRightLayout.fsHasLeftBanner .fsStyleOneThird,
.fsHasTwoColumnWideLeftLayout.fsHasLeftBanner .fsStyleOneThird {
  width: 100%;
  padding-left: 0; }
  @media (min-width: 1000px) {
    .fsHasElephantRightLayout.fsHasLeftBanner .fsStyleOneThird,
    .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner .fsStyleOneThird {
      padding-left: 20px;
      width: 240px; } }
  @media (min-width: 1000px) {
    .fsHasElephantRightLayout.fsHasLeftBanner .fsStyleOneThird,
    .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner .fsStyleOneThird {
      padding-left: 80px;
      width: 380px; } }

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 1000px) {
  .wide-left-fix .fsElephantRightLayout .fsStyleOneThird,
  .wide-left-fix .fsTwoColumnWideLeftLayout .fsStyleOneThird {
    padding-left: 20px;
    width: 380px; } }

#fsPoweredByFinalsite {
  position: relative;
  margin: 0 auto;
  max-width: 80em;
  max-width: 80rem;
  margin-top: 20px; }
  @media (min-width: 600px) {
    #fsPoweredByFinalsite {
      max-width: none;
      margin: 20px 0 0 0;
      background-position: right center;
      width: 100%; } }

/*! 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: -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: 22px; }
  .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 #c1c1c1;
    margin-top: 20px;
    padding-top: 20px; }

.fsConstituentSearchForm {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px; }
  .fsConstituentSearchForm > label {
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 0 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .fsConstituentSearchForm > label > span {
      margin-bottom: 2px; }
    .fsConstituentSearchForm > label > select,
    .fsConstituentSearchForm > label > input {
      border: solid 1px #c1c1c1;
      -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.fsElementDialog .fsProfileImage:first-child {
  margin-top: 1em; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*! elements - accordion */
.fsAccordion .fsPanel > header, .fsTabs .fsPanel > header {
  cursor: pointer;
  background: rgba(244, 244, 244, 0.6);
  transition: .3s; }
  .fsAccordion .fsPanel > header h2, .fsTabs .fsPanel > header h2 {
    margin-bottom: 2px;
    display: block;
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: 17px;
    text-transform: uppercase;
    padding: 13.33333px 30px;
    color: #343845;
    transition: .3s;
    border: solid 1px #d2d2d2;
    border-radius: 3px;
    line-height: 1.3;
    position: relative; }
    .fsAccordion .fsPanel > header h2 a, .fsTabs .fsPanel > header h2 a {
      transition: none;
      line-height: 1; }
  .fsAccordion .fsPanel > header:hover, .fsTabs .fsPanel > header:hover {
    background: #f4f4f4;
    transition: .3s; }
    .fsAccordion .fsPanel > header:hover h2, .fsTabs .fsPanel > header:hover h2 {
      color: #8b0e05;
      transition: .3s; }

.fsAccordion .fsPanel.fsStateOpen > header, .fsTabs .fsPanel.fsStateOpen > header {
  background: #540903; }
  .fsAccordion .fsPanel.fsStateOpen > header h2, .fsTabs .fsPanel.fsStateOpen > header h2 {
    color: #fff; }
    .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: '';
  font-family: "IcoMoon";
  border: none;
  width: auto;
  height: auto;
  position: absolute;
  margin: 0;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  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: '';
  font-family: "IcoMoon";
  border: none;
  width: auto;
  height: auto;
  position: absolute;
  margin: 0;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: ""; }

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

.fsPanelIconAfter.fsAccordion .fsPanel > header h2, .fsPanelIconAfter.fsTabs .fsPanel > header h2 {
  padding-right: 40px; }
  .fsPanelIconAfter.fsAccordion .fsPanel > header h2:before, .fsPanelIconAfter.fsTabs .fsPanel > header h2:before {
    display: none; }
  .fsPanelIconAfter.fsAccordion .fsPanel > header h2:after, .fsPanelIconAfter.fsTabs .fsPanel > header h2:after {
    right: 13.33333px; }

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

/*! elements - athletics main */
/*! elements - athletics events */
.fsAthleticsEvent > .fsElementContent {
  width: 100%; }

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

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

.fsAthleticsEvent .fsTitle {
  font-size: 16px;
  line-height: 22px;
  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 .fsDateTime,
  .fsAthleticsEvent.fsTable .fsAthleticsScore {
    white-space: nowrap; } }

.fsAthleticsEvent.fsTable .fsElementTable {
  margin-bottom: 0; }
  @media (max-width: 800px) {
    .fsAthleticsEvent.fsTable .fsElementTable thead {
      display: none; } }
  @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 .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; } }

/*! elements - athletics popup modal */
.fsAthleticsEvent.fsDialog {
  margin: auto; }
  .fsAthleticsEvent.fsDialog .fsAthleticsTitle {
    margin-top: 0;
    font-family: "acumin-pro-condensed", sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 10px; }
  .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 #f4f4f4; }
  .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: 100px;
  min-height: 80px;
  padding-top: 0; }
  .fsCalendar article .fsElementEventColorIcon {
    width: 12px;
    height: 12px; }

.fsCalendar .fsDate {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  height: 80px;
  width: 80px;
  color: #fff;
  background: #343845;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
  line-height: 1; }
  .fsCalendar .fsDate > span {
    display: block;
    font-weight: 500; }
    .fsCalendar .fsDate > span.fsMonth {
      font-size: 14px;
      text-transform: uppercase; }
    .fsCalendar .fsDate > span.fsDay {
      font-size: 36px; }

.fsCalendar .fsElementTitle {
  color: #8b0e05; }

.fsCalendar .fsTitle {
  color: #8b0e05; }
  .fsCalendar .fsTitle a {
    color: inherit; }
    .fsCalendar .fsTitle a:hover {
      color: #540903; }

.fsCalendar .fsEventDetails {
  font-size: 15px; }

.fsCalendar .fsNotes p:last-child, .fsCalendar .fsDescription p:last-child {
  margin-bottom: 0; }

.fsCalendar .fsElementFooterContent a {
  color: #757575;
  padding-left: 100px; }
  .fsCalendar .fsElementFooterContent a:hover {
    color: #540903; }

.fsCalendar.custom-events {
  border: solid 1px #d6d6d6;
  border-radius: 3px;
  padding: 30px;
  background: rgba(244, 244, 244, 0.6); }

/*! _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 */
.fsCalendarEventGrid .fsCalendarDaybox .fsCalendarInfo > div {
  margin-bottom: 5px; }
  .fsCalendarEventGrid .fsCalendarDaybox .fsCalendarInfo > div:last-child {
    margin-bottom: 0; }

.fsCalendarEventGrid .fsCalendarDaybox .fsCalendarEventTitle {
  font-size: 1.1em;
  font-weight: bold;
  outline: 0; }
  .fsCalendarEventGrid .fsCalendarDaybox .fsCalendarEventTitle + div {
    margin-top: 5px; }

.fsCalendarEventGrid .fsCalendarDaybox .fsCalendarDate {
  line-height: 1; }

@media (min-width: 800px) {
  .fsCalendarEventGrid .fsCalendarRow {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    align-items: stretch; }
  .fsCalendarEventGrid .fsCalendarDaybox {
    height: auto !important;
    -ms-flex-positive: 1;
    flex-grow: 1; }
    .fsCalendarEventGrid .fsCalendarDaybox.fsCalendarWeekendDayBox {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
      flex-direction: column; }
      .fsCalendarEventGrid .fsCalendarDaybox.fsCalendarWeekendDayBox > div {
        height: auto;
        -ms-flex-positive: 1;
        flex-grow: 1; } }

.fsCalendar.fsGrid .fsCalendarGridControlBar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center; }
  .fsCalendar.fsGrid .fsCalendarGridControlBar:after {
    display: none; }
  .fsCalendar.fsGrid .fsCalendarGridControlBar > div {
    margin: 0; }
  .fsCalendar.fsGrid .fsCalendarGridControlBar .fsDisplayNavigation {
    margin-right: 10px; }
  .fsCalendar.fsGrid .fsCalendarGridControlBar .fsCalendarMonthBrowser {
    width: 100%; }
    @media (min-width: 600px) {
      .fsCalendar.fsGrid .fsCalendarGridControlBar .fsCalendarMonthBrowser {
        width: auto; } }
  .fsCalendar.fsGrid .fsCalendarGridControlBar .fsElementControls {
    margin: 10px 0; }
    @media (min-width: 600px) {
      .fsCalendar.fsGrid .fsCalendarGridControlBar .fsElementControls {
        -ms-flex-order: 3;
        order: 3;
        margin: 0; } }
  .fsCalendar.fsGrid .fsCalendarGridControlBar .fsCalendarMonthYearPicker:not(.fsStateHidden) {
    z-index: 1; }

@media screen and (max-width: 799px) {
  .fsCalendar.fsGrid .fsCalendarEventGrid {
    width: 100%;
    margin: 0 auto; }
    .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarMonthBrowser {
      margin: 20px 0; }
    .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarRow {
      width: auto;
      display: inline; }
    .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox {
      width: 14.28% !important;
      height: 45px !important;
      float: left;
      overflow: hidden !important;
      cursor: pointer;
      min-height: 0;
      position: relative;
      padding: 0;
      margin: 0;
      border: none; }
      .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox.fsCalendarToday {
        background-color: rgba(52, 56, 69, 0.15); }
      .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox.fsCalendarOutOfRange {
        background-color: rgba(52, 56, 69, 0.05); }
      .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox.fsCalendarWeekendDayBox {
        border: none; }
        .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox.fsCalendarWeekendDayBox > div {
          position: relative;
          min-height: 0;
          height: 25px;
          border: 1px solid #EDEDED; }
          .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox.fsCalendarWeekendDayBox > div.selected {
            background-color: rgba(52, 56, 69, 0.25); }
      .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox.selected {
        background-color: rgba(52, 56, 69, 0.25); }
      .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox .fsCalendarDate {
        position: absolute;
        left: 50%;
        top: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        line-height: 1;
        font-size: 15px;
        margin-bottom: 0; }
    .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarInfo {
      display: none; }
    .fsCalendar.fsGrid .fsCalendarEventGrid.fsCalendarCombineWeekendDays .fsCalendarRow {
      border-left: 1px solid #EDEDED;
      border-right: 1px solid #EDEDED;
      zoom: 1;
      display: block; }
      .fsCalendar.fsGrid .fsCalendarEventGrid.fsCalendarCombineWeekendDays .fsCalendarRow:after {
        display: table;
        clear: both;
        content: ''; }
      .fsCalendar.fsGrid .fsCalendarEventGrid.fsCalendarCombineWeekendDays .fsCalendarRow:first-child {
        border-top: 1px solid #EDEDED; }
      .fsCalendar.fsGrid .fsCalendarEventGrid.fsCalendarCombineWeekendDays .fsCalendarRow:last-child {
        border-bottom: 1px solid #EDEDED; }
    .fsCalendar.fsGrid .fsCalendarEventGrid.fsCalendarCombineWeekendDays .fsCalendarDaybox {
      width: 16.666% !important;
      height: 50px !important;
      border: 1px solid #EDEDED; }
      .fsCalendar.fsGrid .fsCalendarEventGrid.fsCalendarCombineWeekendDays .fsCalendarDaybox.fsCalendarWeekendDayBox {
        border: none; }
      .fsCalendar.fsGrid .fsCalendarEventGrid.fsCalendarCombineWeekendDays .fsCalendarDaybox.fsCalendarOutOfRange {
        display: block; } }

#event-view {
  padding: 20px;
  margin: 20px auto 0; }
  #event-view .fsCalendarDaybox {
    height: auto !important; }
    #event-view .fsCalendarDaybox > div {
      margin-bottom: 20px; }
  #event-view .fsCalendarEventTitle {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 5px; }
  @media screen and (min-width: 800px) {
    #event-view {
      display: none; } }

.scroll-up {
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px; }
  .scroll-up span {
    display: inline-block;
    border: solid 1px transparent;
    margin: 0 auto 20px auto;
    padding: 15px 20px;
    background: #757575;
    color: #fff;
    border-radius: 36px;
    text-align: center;
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    max-width: 300px;
    width: 100%;
    padding: 10px 20px; }
    .scroll-up span:hover, .scroll-up span:focus,
    .fsStateSelected .scroll-up span {
      background: #979797;
      color: #fff; }
    .scroll-up span em {
      display: block;
      font-family: "acumin-pro-semi-condensed", sans-serif;
      font-size: 16px;
      font-weight: 300;
      font-style: normal;
      margin-top: 5px; }
  .scroll-up + .fsCalendarLegend {
    margin-top: 20px !important; }
  @media screen and (min-width: 800px) {
    .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: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -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 */
/*! 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: "acumin-pro-semi-condensed", sans-serif;
      font-size: 16px;
      line-height: 22px;
      color: #757575; }
    .fsComposerFormEmbed form input {
      border: solid 1px #ccc; }
      .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 #ccc; }
    .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: #8b0e05;
      margin-right: 10px;
      cursor: pointer;
      transition: .3s; }
      .fsComposerFormEmbed form .linkLike:hover {
        color: #540903; }
    .fsComposerFormEmbed form .required {
      color: #343845; }
    .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: #8b0e05;
        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: #540903;
          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;
      outline: 0;
      background: #343845 !important;
      text-shadow: none;
      font-size: inherit;
      border: none !important;
      float: left;
      line-height: 1;
      color: #fff; }
      .fsComposerFormEmbed form .submitBtn:hover {
        transition: .3s;
        color: #fff !important;
        background: #8b0e05 !important; }
  .fsComposerFormEmbed .ui-widget {
    font-family: "acumin-pro-semi-condensed", 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;
      transition: .3s; }
    .fsComposerFormEmbed .ui-datepicker .ui-datepicker-prev:hover:before, .fsComposerFormEmbed .ui-datepicker .ui-datepicker-next:hover:before {
      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: #8b0e05; }

:-moz-placeholder {
  color: #8b0e05; }

::-moz-placeholder {
  color: #8b0e05; }

:-ms-input-placeholder {
  color: #8b0e05; }

/*! elements - login */
.fsLogin .fsLoginMainView,
.fsLogin .fsLoginForgotView,
.fsLogin .fsLoginNewView,
.fsLogin .fsResetPasswordView, .fsAccount .fsLoginMainView,
.fsAccount .fsLoginForgotView,
.fsAccount .fsLoginNewView,
.fsAccount .fsResetPasswordView {
  zoom: 1; }
  .fsLogin .fsLoginMainView:after,
  .fsLogin .fsLoginForgotView:after,
  .fsLogin .fsLoginNewView:after,
  .fsLogin .fsResetPasswordView:after, .fsAccount .fsLoginMainView:after,
  .fsAccount .fsLoginForgotView:after,
  .fsAccount .fsLoginNewView:after,
  .fsAccount .fsResetPasswordView:after {
    display: table;
    clear: both;
    content: ''; }
  .fsLogin .fsLoginMainView h3,
  .fsLogin .fsLoginForgotView h3,
  .fsLogin .fsLoginNewView h3,
  .fsLogin .fsResetPasswordView h3, .fsAccount .fsLoginMainView h3,
  .fsAccount .fsLoginForgotView h3,
  .fsAccount .fsLoginNewView h3,
  .fsAccount .fsResetPasswordView h3 {
    margin-bottom: 20px; }
  .fsLogin .fsLoginMainView span,
  .fsLogin .fsLoginForgotView span,
  .fsLogin .fsLoginNewView span,
  .fsLogin .fsResetPasswordView span, .fsAccount .fsLoginMainView span,
  .fsAccount .fsLoginForgotView span,
  .fsAccount .fsLoginNewView span,
  .fsAccount .fsResetPasswordView span {
    margin-bottom: 2px; }
  .fsLogin .fsLoginMainView .fsLoginSubmit,
  .fsLogin .fsLoginMainView button,
  .fsLogin .fsLoginForgotView .fsLoginSubmit,
  .fsLogin .fsLoginForgotView button,
  .fsLogin .fsLoginNewView .fsLoginSubmit,
  .fsLogin .fsLoginNewView button,
  .fsLogin .fsResetPasswordView .fsLoginSubmit,
  .fsLogin .fsResetPasswordView button, .fsAccount .fsLoginMainView .fsLoginSubmit,
  .fsAccount .fsLoginMainView button,
  .fsAccount .fsLoginForgotView .fsLoginSubmit,
  .fsAccount .fsLoginForgotView button,
  .fsAccount .fsLoginNewView .fsLoginSubmit,
  .fsAccount .fsLoginNewView button,
  .fsAccount .fsResetPasswordView .fsLoginSubmit,
  .fsAccount .fsResetPasswordView button {
    display: inline-block;
    border: 0;
    margin: 0 10px 20px 0;
    padding: 16px 20px;
    background: #757575;
    color: #fff;
    border-radius: 3px;
    text-align: center;
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1; }
    .fsLogin .fsLoginMainView .fsLoginSubmit:hover, .fsLogin .fsLoginMainView .fsLoginSubmit:focus,
    .fsStateSelected .fsLogin .fsLoginMainView .fsLoginSubmit,
    .fsLogin .fsLoginMainView button:hover,
    .fsLogin .fsLoginMainView button:focus,
    .fsStateSelected
    .fsLogin .fsLoginMainView button,
    .fsLogin .fsLoginForgotView .fsLoginSubmit:hover,
    .fsLogin .fsLoginForgotView .fsLoginSubmit:focus,
    .fsStateSelected
    .fsLogin .fsLoginForgotView .fsLoginSubmit,
    .fsLogin .fsLoginForgotView button:hover,
    .fsLogin .fsLoginForgotView button:focus,
    .fsStateSelected
    .fsLogin .fsLoginForgotView button,
    .fsLogin .fsLoginNewView .fsLoginSubmit:hover,
    .fsLogin .fsLoginNewView .fsLoginSubmit:focus,
    .fsStateSelected
    .fsLogin .fsLoginNewView .fsLoginSubmit,
    .fsLogin .fsLoginNewView button:hover,
    .fsLogin .fsLoginNewView button:focus,
    .fsStateSelected
    .fsLogin .fsLoginNewView button,
    .fsLogin .fsResetPasswordView .fsLoginSubmit:hover,
    .fsLogin .fsResetPasswordView .fsLoginSubmit:focus,
    .fsStateSelected
    .fsLogin .fsResetPasswordView .fsLoginSubmit,
    .fsLogin .fsResetPasswordView button:hover,
    .fsLogin .fsResetPasswordView button:focus,
    .fsStateSelected
    .fsLogin .fsResetPasswordView button, .fsAccount .fsLoginMainView .fsLoginSubmit:hover, .fsAccount .fsLoginMainView .fsLoginSubmit:focus,
    .fsStateSelected .fsAccount .fsLoginMainView .fsLoginSubmit,
    .fsAccount .fsLoginMainView button:hover,
    .fsAccount .fsLoginMainView button:focus,
    .fsStateSelected
    .fsAccount .fsLoginMainView button,
    .fsAccount .fsLoginForgotView .fsLoginSubmit:hover,
    .fsAccount .fsLoginForgotView .fsLoginSubmit:focus,
    .fsStateSelected
    .fsAccount .fsLoginForgotView .fsLoginSubmit,
    .fsAccount .fsLoginForgotView button:hover,
    .fsAccount .fsLoginForgotView button:focus,
    .fsStateSelected
    .fsAccount .fsLoginForgotView button,
    .fsAccount .fsLoginNewView .fsLoginSubmit:hover,
    .fsAccount .fsLoginNewView .fsLoginSubmit:focus,
    .fsStateSelected
    .fsAccount .fsLoginNewView .fsLoginSubmit,
    .fsAccount .fsLoginNewView button:hover,
    .fsAccount .fsLoginNewView button:focus,
    .fsStateSelected
    .fsAccount .fsLoginNewView button,
    .fsAccount .fsResetPasswordView .fsLoginSubmit:hover,
    .fsAccount .fsResetPasswordView .fsLoginSubmit:focus,
    .fsStateSelected
    .fsAccount .fsResetPasswordView .fsLoginSubmit,
    .fsAccount .fsResetPasswordView button:hover,
    .fsAccount .fsResetPasswordView button:focus,
    .fsStateSelected
    .fsAccount .fsResetPasswordView button {
      background: #8b0e05;
      color: #fff; }
    .fsLogin .fsLoginMainView .fsLoginSubmit + button,
    .fsLogin .fsLoginMainView button + button,
    .fsLogin .fsLoginForgotView .fsLoginSubmit + button,
    .fsLogin .fsLoginForgotView button + button,
    .fsLogin .fsLoginNewView .fsLoginSubmit + button,
    .fsLogin .fsLoginNewView button + button,
    .fsLogin .fsResetPasswordView .fsLoginSubmit + button,
    .fsLogin .fsResetPasswordView button + button, .fsAccount .fsLoginMainView .fsLoginSubmit + button,
    .fsAccount .fsLoginMainView button + button,
    .fsAccount .fsLoginForgotView .fsLoginSubmit + button,
    .fsAccount .fsLoginForgotView button + button,
    .fsAccount .fsLoginNewView .fsLoginSubmit + button,
    .fsAccount .fsLoginNewView button + button,
    .fsAccount .fsResetPasswordView .fsLoginSubmit + button,
    .fsAccount .fsResetPasswordView button + button {
      margin-left: 10px; }
  .fsLogin .fsLoginMainView .fsLoginSubmit,
  .fsLogin .fsLoginForgotView .fsLoginSubmit,
  .fsLogin .fsLoginNewView .fsLoginSubmit,
  .fsLogin .fsResetPasswordView .fsLoginSubmit, .fsAccount .fsLoginMainView .fsLoginSubmit,
  .fsAccount .fsLoginForgotView .fsLoginSubmit,
  .fsAccount .fsLoginNewView .fsLoginSubmit,
  .fsAccount .fsResetPasswordView .fsLoginSubmit {
    display: block; }
  .fsLogin .fsLoginMainView .fsLoginForgotPasswordLink,
  .fsLogin .fsLoginMainView .fsLoginNewAccountLink,
  .fsLogin .fsLoginForgotView .fsLoginForgotPasswordLink,
  .fsLogin .fsLoginForgotView .fsLoginNewAccountLink,
  .fsLogin .fsLoginNewView .fsLoginForgotPasswordLink,
  .fsLogin .fsLoginNewView .fsLoginNewAccountLink,
  .fsLogin .fsResetPasswordView .fsLoginForgotPasswordLink,
  .fsLogin .fsResetPasswordView .fsLoginNewAccountLink, .fsAccount .fsLoginMainView .fsLoginForgotPasswordLink,
  .fsAccount .fsLoginMainView .fsLoginNewAccountLink,
  .fsAccount .fsLoginForgotView .fsLoginForgotPasswordLink,
  .fsAccount .fsLoginForgotView .fsLoginNewAccountLink,
  .fsAccount .fsLoginNewView .fsLoginForgotPasswordLink,
  .fsAccount .fsLoginNewView .fsLoginNewAccountLink,
  .fsAccount .fsResetPasswordView .fsLoginForgotPasswordLink,
  .fsAccount .fsResetPasswordView .fsLoginNewAccountLink {
    margin-bottom: 10px; }

.fsLogin .fsLoginForgotView .fsLoginForgotEmail, .fsAccount .fsLoginForgotView .fsLoginForgotEmail {
  display: block; }

.fsLogin .fsLoginNewFields .fsLoginNewCaptcha, .fsAccount .fsLoginNewFields .fsLoginNewCaptcha {
  margin-bottom: 20px; }
  .fsLogin .fsLoginNewFields .fsLoginNewCaptcha #recaptcha_area,
  .fsLogin .fsLoginNewFields .fsLoginNewCaptcha #recaptcha_table, .fsAccount .fsLoginNewFields .fsLoginNewCaptcha #recaptcha_area,
  .fsAccount .fsLoginNewFields .fsLoginNewCaptcha #recaptcha_table {
    max-width: 100%; }
  @media screen and (max-width: 599px) {
    .fsLogin .fsLoginNewFields .fsLoginNewCaptcha #recaptcha_widget_div, .fsAccount .fsLoginNewFields .fsLoginNewCaptcha #recaptcha_widget_div {
      overflow: hidden;
      border-radius: 5px; } }

.fsLogin .fsLoginNewSuccess button, .fsAccount .fsLoginNewSuccess button {
  margin-top: 20px; }

.fsLogin .fsResetPasswordFields > div, .fsAccount .fsResetPasswordFields > div {
  margin-bottom: 20px; }
  .fsLogin .fsResetPasswordFields > div:last-child, .fsAccount .fsResetPasswordFields > div:last-child {
    margin-bottom: 0; }

.fsLogin .fsResetPasswordFields label > span, .fsAccount .fsResetPasswordFields label > span {
  display: block; }

.fsLogin .fsResetPasswordFields label > input, .fsAccount .fsResetPasswordFields label > input {
  margin-bottom: 20px; }

.fsAccount .fsAccountGreeting {
  margin-bottom: 20px; }

.fsAccount .fsAccountLinks {
  margin: 0; }

.fsAccount .fsAccountLogout {
  display: block;
  margin-top: 20px; }
  .fsAccount .fsAccountLogout a {
    display: inline-block;
    border: 0;
    margin: 0 10px 20px 0;
    padding: 16px 20px;
    background: #757575;
    color: #fff;
    border-radius: 3px;
    text-align: center;
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1; }
    .fsAccount .fsAccountLogout a:hover, .fsAccount .fsAccountLogout a:focus,
    .fsStateSelected .fsAccount .fsAccountLogout a {
      background: #8b0e05;
      color: #fff; }

.fsMediaCustomPlayer {
  background: none;
  position: relative;
  color: #757575;
  font-family: "acumin-pro-semi-condensed", sans-serif; }
  .fsMediaCustomPlayer article {
    position: relative; }

.fsCustomSlider .fsElement {
  margin-bottom: 0; }

.fsCustomSlider .slick-next, .fsCustomSlider .slick-prev {
  background: none;
  border: none;
  color: transparent;
  height: 40px;
  padding: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  z-index: 2; }
  .fsCustomSlider .slick-next:before, .fsCustomSlider .slick-prev:before {
    color: #fff;
    display: block;
    font-size: 50px;
    font-weight: normal;
    height: 100%;
    left: 0;
    line-height: 30px;
    position: absolute;
    top: 0;
    width: 100%;
    text-align: center; }

.fsCustomSlider .slick-next {
  left: auto;
  right: 0; }
  .fsCustomSlider .slick-next:before {
    content: '\203A'; }

.fsCustomSlider .slick-prev {
  left: 0;
  right: auto; }
  .fsCustomSlider .slick-prev:before {
    content: '\2039'; }

.fsCustomSlider .slider-play-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #8b0e05;
  font-size: 0;
  width: 30px;
  height: 30px;
  border: 0;
  padding: 0;
  z-index: 1;
  line-height: 42px; }
  .fsCustomSlider .slider-play-btn:before {
    content: "";
    color: #fff;
    font-size: 16px;
    font-family: "Droid Serif", Georgia, serif; }

.fsCustomSlider.slider-paused .slider-play-btn:before {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-left: 13px solid #fff;
  border-bottom: 7px solid transparent;
  display: inline-block; }

.fsCustomSlider.slider-playing .slider-play-btn:before, .fsCustomSlider.slider-playing .slider-play-btn:after {
  content: "";
  width: 3px;
  height: 18px;
  background-color: #fff;
  display: inline-block;
  margin: 6px 2px 0; }

.fsCustomSlider .slick-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }
  .fsCustomSlider .slick-dots, .fsCustomSlider .slick-dots ul {
    margin: 0;
    padding: 0;
    list-style: none; }
  .fsCustomSlider .slick-dots li {
    margin: 0;
    padding: 0; }
  .fsCustomSlider .slick-dots li {
    display: inline-block; }
  .fsCustomSlider .slick-dots li + li {
    margin-left: 6px; }
  .fsCustomSlider .slick-dots button {
    border: 0;
    background-color: transparent;
    padding: 0;
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 100%;
    font-size: 0; }
  .fsCustomSlider .slick-dots .slick-active button {
    background-color: #fff; }

.fsCustomSlider .caption-wrapper {
  font-family: "acumin-pro-semi-condensed", sans-serif;
  font-size: 16px;
  line-height: 22px;
  width: 100%;
  background-color: #8b0e05;
  color: #fff; }
  .fsCustomSlider .caption-wrapper .caption-inner {
    padding: 10px 10px 30px; }
  @media (min-width: 800px) {
    .fsCustomSlider .caption-wrapper {
      padding: 30px 20px;
      position: absolute;
      bottom: 0;
      left: 0;
      background-color: rgba(139, 14, 5, 0.5); } }
  .fsCustomSlider .caption-wrapper a {
    color: rgba(255, 255, 255, 0.5); }
    .fsCustomSlider .caption-wrapper a:hover {
      text-decoration: underline; }
  .fsCustomSlider .caption-wrapper.is-empty {
    display: none; }

@media (min-width: 800px) {
  .fsCustomSlider .caption-title {
    margin-top: 0;
    font-family: "acumin-pro-condensed", sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 30px;
    color: #343845;
    font-family: "acumin-pro-semi-condensed", sans-serif;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    margin-bottom: 0; } }

@media (min-width: 800px) {
  .fsCustomSlider .caption-desc {
    display: block; } }

.fsCustomSlider .caption-desc p:last-child {
  margin-bottom: 0; }

.fsCustomSlider .caption-desc:empty {
  display: none; }

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

.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 .fsTitle {
  color: #343845;
  margin-bottom: 10px; }
  .fsPostElement .fsTitle a {
    color: inherit; }
    .fsPostElement .fsTitle a:hover {
      color: #540903; }

.fsPostElement .fsAuthor {
  color: #979797;
  font-size: 13px;
  position: relative;
  line-height: 1;
  margin: 0;
  padding-right: 10px; }
  .fsPostElement .fsAuthor:after {
    content: '';
    width: 1px;
    height: 90%;
    display: inline-block;
    background: #979797;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto; }

.fsPostElement .fsDateTime {
  color: #979797;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 1;
  padding-left: 6px; }

.fsPostElement .fsStyleInlineList {
  margin-left: 0; }

.fsPostElement .fsCategory {
  color: #fff;
  font-size: 10px;
  background: #343845;
  font-weight: 500;
  border-radius: 2px;
  border: none;
  margin-right: 6px; }

.fsPostElement .fsTags {
  border-top: solid 1px #ebebeb;
  padding-top: 20px; }

.fsPostElement .fsTag {
  color: #979797;
  font-size: 12px;
  background: #f4f4f4;
  border: solid 1px #ebebeb;
  border-radius: 2px; }

.fsPostElement .fsElementFooterContent a {
  color: #757575;
  font-size: 15px; }
  .fsPostElement .fsElementFooterContent a:hover {
    color: #540903; }

/*! _main.scss - src/sass/modules/search/ - main search import */
.fsSearch form.gsc-search-box-tools {
  margin-bottom: 0;
  overflow: hidden;
  font-size: inherit; }
  .fsSearch form.gsc-search-box-tools table {
    border: 0; }
  .fsSearch form.gsc-search-box-tools > table.gsc-search-box {
    margin-bottom: 0;
    position: relative; }
  .fsSearch form.gsc-search-box-tools td.gsib_a {
    padding: 0; }
  .fsSearch form.gsc-search-box-tools td.gsib_b {
    display: none !important; }
  .fsSearch form.gsc-search-box-tools table.gsc-branding {
    display: none; }

/*! _custom.scss - src/sass/modules/search/ - custom site search, design based */
.fsSearch.site-search form.gsc-search-box-tools {
  width: 400px; }
  .fsSearch.site-search form.gsc-search-box-tools > table.gsc-search-box td.gsc-input {
    padding: 0; }
    .fsSearch.site-search form.gsc-search-box-tools > table.gsc-search-box td.gsc-input div.gsc-input-box {
      border: 0;
      height: 100%; }
      .fsSearch.site-search form.gsc-search-box-tools > table.gsc-search-box td.gsc-input div.gsc-input-box input.gsc-input {
        background: #8b0e05 !important;
        background-image: none !important;
        width: 100%;
        height: 50px !important;
        color: #f4f4f4;
        padding-left: 10px !important;
        padding-right: 85px !important;
        margin: 0 !important;
        border-radius: 0 !important;
        font-size: 16px;
        font-family: "acumin-pro-semi-condensed", sans-serif; }
  .fsSearch.site-search form.gsc-search-box-tools > table.gsc-search-box td.gsc-search-button {
    padding: 0;
    overflow: hidden;
    height: 50px;
    width: 75px;
    background: #343845;
    position: absolute;
    right: 0;
    top: 0;
    transition: .3s; }
    .fsSearch.site-search form.gsc-search-box-tools > table.gsc-search-box td.gsc-search-button:after {
      content: "Search";
      color: #fff;
      font-family: "acumin-pro-semi-condensed", sans-serif;
      opacity: 1;
      display: block;
      position: absolute;
      text-align: center;
      height: 100%;
      width: 100%;
      left: 0;
      top: 0;
      line-height: 50px;
      font-size: 16px; }
    .fsSearch.site-search form.gsc-search-box-tools > table.gsc-search-box td.gsc-search-button:hover {
      background: black;
      transition: .3s; }
    .fsSearch.site-search form.gsc-search-box-tools > table.gsc-search-box td.gsc-search-button input.gsc-search-button {
      border: 0;
      height: 100%;
      width: 100%;
      color: transparent;
      opacity: 0;
      padding: 0;
      position: absolute;
      top: 0;
      left: 0;
      margin: 0; }

.fsMenu .top-search {
  padding: 0 10px; }
  .fsMenu .top-search header {
    display: none; }

.top-search form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center; }
  .fsMenu .top-search form {
    -ms-flex-pack: center;
    justify-content: center; }

.top-search label {
  visibility: hidden;
  color: transparent; }
  .fsMenu .top-search label {
    width: 0; }

.top-search input {
  border: none;
  border-bottom: solid #979797 1px;
  color: #8b0e05;
  font-size: 14px;
  width: 0;
  visibility: hidden;
  padding: 0;
  transition: all .3s ease; }
  .fsMenu .top-search input {
    border-bottom: solid #fff 1px;
    width: 100%;
    visibility: visible;
    transition: none;
    background: transparent;
    color: #fff; }
    .fsMenu .top-search input::-moz-placeholder {
      color: #fff; }
    .fsMenu .top-search input:-ms-input-placeholder {
      color: #fff; }
    .fsMenu .top-search input::placeholder {
      color: #fff; }

.top-search button {
  border: 0;
  background: none;
  outline: 0;
  margin: 0;
  padding: 0;
  color: transparent;
  position: relative;
  width: 30px;
  height: 30px; }
  .top-search button:before {
    content: "";
    font-family: "IcoMoon";
    font-smoothing: antialiased;
    font-weight: normal;
    speak: none;
    color: #8b0e05;
    font-size: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0); }
    .fsMenu .top-search button:before {
      color: #fff; }

.top-search:hover input {
  width: 200px;
  visibility: visible; }
  .fsMenu .top-search:hover input {
    width: 100%; }

/*! _search-box.scss - src/sass/modules/search/ - sitewide search box */
.fsSearch:not(.site-search) form.gsc-search-box-tools > table.gsc-search-box td.gsc-input {
  padding: 0; }
  .fsSearch:not(.site-search) form.gsc-search-box-tools > table.gsc-search-box td.gsc-input div.gsc-input-box {
    border: 0;
    height: 100%;
    border: solid 1px #757575; }
    .fsSearch:not(.site-search) form.gsc-search-box-tools > table.gsc-search-box td.gsc-input div.gsc-input-box input.gsc-input {
      background: #fff !important;
      background-image: none !important;
      width: 100%;
      height: 50px !important;
      color: #757575;
      padding-left: 10px !important;
      padding-right: 85px !important;
      margin: 0 !important;
      border-radius: 0 !important;
      font-size: 16px;
      font-family: "acumin-pro-semi-condensed", sans-serif; }

.fsSearch:not(.site-search) form.gsc-search-box-tools > table.gsc-search-box td.gsc-search-button {
  padding: 0;
  overflow: hidden;
  height: 100%;
  width: 75px;
  background: #757575;
  position: absolute;
  transition: .3s;
  right: 0;
  top: 0; }
  .fsSearch:not(.site-search) form.gsc-search-box-tools > table.gsc-search-box td.gsc-search-button:after {
    content: "Search";
    color: #fff;
    opacity: 1;
    display: block;
    position: absolute;
    text-align: center;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    line-height: 50px;
    font-size: 16px;
    font-family: "acumin-pro-semi-condensed", sans-serif; }
  .fsSearch:not(.site-search) form.gsc-search-box-tools > table.gsc-search-box td.gsc-search-button:hover {
    background: black;
    transition: .3s; }
  .fsSearch:not(.site-search) form.gsc-search-box-tools > table.gsc-search-box td.gsc-search-button input.gsc-search-button {
    border: 0;
    height: 100%;
    width: 100%;
    color: transparent;
    opacity: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0; }

/*! _search-results.scss - src/sass/modules/search/ - sitewide search results */
.fsSearchResults form.gsc-search-box-tools, .fsSearchFieldWithResults form.gsc-search-box-tools {
  margin-bottom: 20px; }

.fsSearchResults .gsc-control-cse, .fsSearchFieldWithResults .gsc-control-cse {
  padding: 0;
  font-family: "acumin-pro-semi-condensed", sans-serif;
  font-size: 16px; }

.fsSearchResults .gsc-results, .fsSearchFieldWithResults .gsc-results {
  width: 100%; }

.fsSearchResults .gsc-webResult .gsc-result, .fsSearchFieldWithResults .gsc-webResult .gsc-result {
  margin-bottom: 20px;
  border-bottom: solid 1px #ccc !important;
  padding: 0 0 20px; }
  .fsSearchResults .gsc-webResult .gsc-result .gs-result .gs-snippet, .fsSearchFieldWithResults .gsc-webResult .gsc-result .gs-result .gs-snippet {
    color: #757575; }
  .fsSearchResults .gsc-webResult .gsc-result .gs-webResult div.gs-visibleUrl, .fsSearchResults .gsc-webResult .gsc-result .gs-imageResult div.gs-visibleUrl, .fsSearchFieldWithResults .gsc-webResult .gsc-result .gs-webResult div.gs-visibleUrl, .fsSearchFieldWithResults .gsc-webResult .gsc-result .gs-imageResult div.gs-visibleUrl {
    color: #8b0e05; }

.fsSearchResults .gsc-table-result, .fsSearchResults .gsc-thumbnail-inside, .fsSearchResults .gsc-url-top, .fsSearchFieldWithResults .gsc-table-result, .fsSearchFieldWithResults .gsc-thumbnail-inside, .fsSearchFieldWithResults .gsc-url-top {
  padding: 0; }

.fsSearchResults div.gs-title, .fsSearchFieldWithResults div.gs-title {
  margin-bottom: 10px; }

.fsSearchResults a.gs-title, .fsSearchResults .gsc-results .gsc-cursor-box .gsc-cursor-page, .fsSearchFieldWithResults a.gs-title, .fsSearchFieldWithResults .gsc-results .gsc-cursor-box .gsc-cursor-page {
  color: #8b0e05 !important;
  outline: transparent; }
  .fsSearchResults a.gs-title:hover, .fsSearchResults .gsc-results .gsc-cursor-box .gsc-cursor-page:hover, .fsSearchFieldWithResults a.gs-title:hover, .fsSearchFieldWithResults .gsc-results .gsc-cursor-box .gsc-cursor-page:hover {
    color: #540903 !important; }

.fsSearchResults .gsc-control-cse .gs-spelling, .fsSearchResults .gsc-control-cse .gs-result .gs-title, .fsSearchResults .gsc-control-cse .gs-result .gs-title *, .fsSearchFieldWithResults .gsc-control-cse .gs-spelling, .fsSearchFieldWithResults .gsc-control-cse .gs-result .gs-title, .fsSearchFieldWithResults .gsc-control-cse .gs-result .gs-title * {
  font-size: 16px; }

.fsSearchResults .gsc-results .gsc-cursor-box, .fsSearchFieldWithResults .gsc-results .gsc-cursor-box {
  margin: 10px 0; }

/*! elements - social main */
/*! elements - social facebook */
.fsFacebook {
  margin-bottom: 20px; }

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

.fsFacebookList li {
  margin: 0;
  padding: 0; }

.fsFacebookList .fsFacebookListItem {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #dddedf; }

.fsFacebookExtras {
  margin-top: 10px; }
  .fsFacebookExtras .fsFacebookThumb {
    margin-bottom: 10px;
    display: block; }
  .fsFacebookExtras .fsFacebookTitle[href*="https://www.facebook.com/finalsite/photos"] {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block; }

.fsFacebookFollow {
  margin-top: 20px; }

/*! elements - social twitter */
.fsTwitter {
  margin-bottom: 20px; }

/*! 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 #dddedf;
  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 #dddedf;
    padding: 0;
    padding-bottom: 20px;
    opacity: 1;
    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; } }

/*! 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 #dddedf;
  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 #dddedf;
    padding: 0;
    padding-bottom: 20px;
    opacity: 1;
    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: solid 1px transparent;
  margin: 0 auto 20px auto;
  padding: 15px 20px;
  background: #757575;
  color: #fff;
  border-radius: 36px;
  text-align: center;
  font-family: "acumin-pro-condensed", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  max-width: 300px;
  width: 100%; }
  .Youtube_view_link a:hover, .Youtube_view_link a:focus,
  .fsStateSelected .Youtube_view_link a {
    background: #979797;
    color: #fff; }
  .Youtube_view_link a em {
    display: block;
    font-family: "acumin-pro-semi-condensed", sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    margin-top: 5px; }

/*! elements - tabs */
.fsTabs {
  padding: 0;
  background: none;
  border: 0;
  margin-bottom: 20px; }
  .fsTabs .fsTabsNav {
    margin: 0;
    padding: 0;
    display: none; }
    @media (min-width: 600px) {
      .fsTabs .fsTabsNav {
        display: block; } }
    .fsTabs .fsTabsNav li {
      margin-right: 10px; }
      .fsTabs .fsTabsNav li a {
        display: block;
        font-family: "acumin-pro-condensed", sans-serif;
        font-size: 17px;
        font-weight: 700;
        text-transform: uppercase;
        background: #fff;
        color: #757575;
        position: relative;
        border-radius: 3px;
        padding: 16px 30px; }
        .fsTabs .fsTabsNav li a:hover {
          background: #fff;
          color: #8b0e05; }
          .fsTabs .fsTabsNav li a:hover:after {
            background: #8b0e05; }
        .fsTabs .fsTabsNav li a:after {
          content: '';
          height: 5px;
          width: 100%;
          border-radius: 3px;
          position: absolute;
          bottom: 0;
          left: 0;
          background: #757575; }
      .fsTabs .fsTabsNav li.fsStateSelected a {
        background: #540903;
        color: #fff; }
        .fsTabs .fsTabsNav li.fsStateSelected a:after {
          background: #540903; }

.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 {
  background: #343845;
  color: #fff;
  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,
.fsThreeColumnLayout > .fsDiv .fsElementToolsSearch,
.fsFourColumnLayout > .fsDiv .fsElementToolsSearch {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .fsBannerLeft .fsElementToolsSearch > div,
  .fsBannerRight .fsElementToolsSearch > div,
  .fsStyleOneThird .fsElementToolsSearch > div,
  .fsThreeColumnLayout > .fsDiv .fsElementToolsSearch > div,
  .fsFourColumnLayout > .fsDiv .fsElementToolsSearch > div {
    width: 100%; }
  .fsBannerLeft .fsElementToolsSearch .fsFieldContainer,
  .fsBannerRight .fsElementToolsSearch .fsFieldContainer,
  .fsStyleOneThird .fsElementToolsSearch .fsFieldContainer,
  .fsThreeColumnLayout > .fsDiv .fsElementToolsSearch .fsFieldContainer,
  .fsFourColumnLayout > .fsDiv .fsElementToolsSearch .fsFieldContainer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .fsBannerLeft .fsElementToolsSearch .fsFieldContainer .fsStyleDefaultField,
    .fsBannerRight .fsElementToolsSearch .fsFieldContainer .fsStyleDefaultField,
    .fsStyleOneThird .fsElementToolsSearch .fsFieldContainer .fsStyleDefaultField,
    .fsThreeColumnLayout > .fsDiv .fsElementToolsSearch .fsFieldContainer .fsStyleDefaultField,
    .fsFourColumnLayout > .fsDiv .fsElementToolsSearch .fsFieldContainer .fsStyleDefaultField {
      -ms-flex-positive: 1;
      flex-grow: 1; }
  .fsBannerLeft .fsElementToolsSearch .fsElementToolsSearchButton,
  .fsBannerRight .fsElementToolsSearch .fsElementToolsSearchButton,
  .fsStyleOneThird .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: #ebebeb;
    color: white; }
  .fsLegend .fsElementControls label input + span {
    color: #ebebeb;
    background: white; }

/*! _filter.scss - src/sass/modules/tools/posts - Calendar Tools Elements */
.fsMiniGrid .fsCalendarEventGrid {
  max-width: 100%;
  width: 300px; }
  .fsMiniGrid .fsCalendarEventGrid .fsCalendarWeekdays {
    box-shadow: inset 0 -1px 0 0 #f4f4f4; }
  .fsMiniGrid .fsCalendarEventGrid .fsCalendarRow .fsCalendarDaybox {
    box-shadow: inset -1px 0 0 0 #fff, inset 0 -1px 0 0 #fff;
    background: #e7e7e7;
    color: #757575;
    font-size: .875em;
    line-height: 1;
    padding: 10px 5px; }
    .fsMiniGrid .fsCalendarEventGrid .fsCalendarRow .fsCalendarDaybox:last-child {
      box-shadow: inset 0 -1px 0 0 #fff; }
    .fsMiniGrid .fsCalendarEventGrid .fsCalendarRow .fsCalendarDaybox.fsStateHasEvents {
      background: #cecece;
      color: #757575; }
    .fsMiniGrid .fsCalendarEventGrid .fsCalendarRow .fsCalendarDaybox.fsCalendarOutOfRange {
      background: #f4f4f4;
      color: #c1c1c1; }
    .fsMiniGrid .fsCalendarEventGrid .fsCalendarRow .fsCalendarDaybox.fsCalendarToday {
      background: #6b738e;
      color: #fff; }

.fsCalendarMonthYearPicker > .fsStyleUpdateButton {
  margin-bottom: 0;
  display: block;
  color: #fff;
  background-color: #ebebeb; }

/*! _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 */
body:not(.fsComposeMode) .module {
  padding: 30px;
  color: #fff; }
  body:not(.fsComposeMode) .module h1, body:not(.fsComposeMode) .module h2, body:not(.fsComposeMode) .module h3, body:not(.fsComposeMode) .module h4, body:not(.fsComposeMode) .module h5, body:not(.fsComposeMode) .module h6 {
    color: inherit; }
  body:not(.fsComposeMode) .module a {
    color: inherit; }

body:not(.fsComposeMode) .module {
  background: #343845; }
  body:not(.fsComposeMode) .module.dark-bg .fsElementHeaderContent {
    text-align: center; }
    body:not(.fsComposeMode) .module.dark-bg .fsElementHeaderContent img {
      border-radius: 100%;
      box-shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.5);
      width: 90%; }
  body:not(.fsComposeMode) .module.dark-bg .fsElementContent {
    font-weight: 300; }
  body:not(.fsComposeMode) .module.white-bg {
    color: #757575;
    background: #fff;
    border: solid 1px #d6d6d6;
    border-radius: 3px;
    padding: 30px;
    background: rgba(244, 244, 244, 0.6); }
    body:not(.fsComposeMode) .module.white-bg .fsElementHeaderContent {
      text-align: center; }
      body:not(.fsComposeMode) .module.white-bg .fsElementHeaderContent img {
        width: 100%; }
    body:not(.fsComposeMode) .module.white-bg .fsElementContent h6 {
      color: #540903;
      font-family: "acumin-pro-semi-condensed", sans-serif;
      text-transform: none;
      margin-bottom: 10px; }
  body:not(.fsComposeMode) .module.wide {
    border: solid 1px #d6d6d6;
    border-radius: 3px;
    padding: 30px;
    background: rgba(244, 244, 244, 0.6);
    padding: 0; }
    @media (min-width: 600px) {
      body:not(.fsComposeMode) .module.wide {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -ms-flex-align: center;
        align-items: center;
        width: 100%; } }
    @media (min-width: 600px) {
      body:not(.fsComposeMode) .module.wide header {
        width: 40.697674418605%; } }
    @media (min-width: 600px) {
      body:not(.fsComposeMode) .module.wide header .fsElementHeaderContent {
        margin: 0; } }
    body:not(.fsComposeMode) .module.wide header .fsElementHeaderContent img {
      display: block; }
    body:not(.fsComposeMode) .module.wide .fsElementContent {
      padding: 30px; }
      @media (min-width: 600px) {
        body:not(.fsComposeMode) .module.wide .fsElementContent {
          width: 63.953488372093%; } }

.hero-image {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50vw;
  max-height: 415px; }

.instructions {
  background: #f4f4f4;
  padding: 20px;
  border: dotted 1px #ebebeb; }

.profile-slider {
  position: relative; }
  .profile-slider > .fsElementContent {
    padding: 0 30px; }
    @media (min-width: 600px) {
      .profile-slider > .fsElementContent {
        padding: 0; } }
  .profile-slider .fsListItems {
    margin: 0; }
  .profile-slider article {
    cursor: pointer;
    outline: 0;
    overflow: visible !important; }
    @media (min-width: 600px) {
      .profile-slider article {
        padding: 0 10px; } }
    .profile-slider article:hover .border-wrapper, .profile-slider article.slick-current .border-wrapper {
      background: #8b0e05; }
    .profile-slider article:hover .image-title, .profile-slider article:hover .fsTitle, .profile-slider article.slick-current .image-title, .profile-slider article.slick-current .fsTitle {
      color: #fff; }
    .profile-slider article.slick-current .border-wrapper:after {
      content: '';
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 15px 23px 0 23px;
      border-color: #8b0e05 transparent transparent transparent;
      position: absolute;
      bottom: -15px;
      left: 0;
      right: 0;
      margin: 0 auto; }
    @media (min-width: 600px) {
      .profile-slider article.slick-current .caption-wrapper, .profile-slider article.slick-current .fsbody, .profile-slider article.slick-current figure {
        opacity: 1;
        visibility: visible; } }
  .profile-slider .border-wrapper {
    padding: 20px;
    border: solid 1px #ebebeb;
    margin-bottom: 30px;
    transition: all .3s ease;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse; }
  .profile-slider .image-wrapper, .profile-slider .fsThumbnail, .profile-slider picture {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 0;
    display: block; }
    .profile-slider .image-wrapper:after, .profile-slider .fsThumbnail:after, .profile-slider picture:after {
      content: '';
      display: block;
      padding-bottom: 120%; }
    .profile-slider .image-wrapper img, .profile-slider .fsThumbnail img, .profile-slider picture img {
      display: none; }
  .profile-slider .image-title, .profile-slider .fsTitle {
    color: #540903;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 20px;
    transition: all .3s ease; }
  .profile-slider .caption-wrapper, .profile-slider .fsbody, .profile-slider figure {
    background: #fff;
    color: #757575; }
    @media (min-width: 600px) {
      .profile-slider .caption-wrapper, .profile-slider .fsbody, .profile-slider figure {
        opacity: 0;
        visibility: hidden;
        transition: all .3s ease;
        width: calc(100vw - 60px); } }
    @media (min-width: 800px) {
      .profile-slider .caption-wrapper, .profile-slider .fsbody, .profile-slider figure {
        padding: 0;
        position: static; } }
    @media (min-width: 1000px) {
      .profile-slider .caption-wrapper, .profile-slider .fsbody, .profile-slider figure {
        max-width: 880px;
        width: calc(100vw - 440px); } }
  .profile-slider .caption-title, .profile-slider strong {
    color: #8b0e05;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block; }
  .profile-slider .slick-prev,
  .profile-slider .slick-next {
    font-size: 0;
    height: 20px;
    width: 20px;
    position: absolute;
    top: 150px;
    border: 0;
    background: none;
    outline: 0;
    margin: 0;
    padding: 0; }
    .profile-slider .slick-prev:before,
    .profile-slider .slick-next:before {
      color: #8b0e05;
      font-size: 20px;
      line-height: 1;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
  .profile-slider .slick-prev {
    left: 0; }
    @media (min-width: 600px) {
      .profile-slider .slick-prev {
        left: -20px; } }
    .profile-slider .slick-prev:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none; }
  .profile-slider .slick-next {
    right: 0; }
    @media (min-width: 600px) {
      .profile-slider .slick-next {
        right: -20px; } }
    .profile-slider .slick-next:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none; }

/*! pages - home v0.0.1 */
.home #fsPageBodyWrapper {
  padding: 0; }

.home #fsPageBody {
  max-width: none; }

.home .fsLayout .fsDiv {
  margin-bottom: 0; }

body:not(.fsComposeMode) .slideshow-container {
  position: relative;
  margin-bottom: 0; }
  body:not(.fsComposeMode) .slideshow-container header {
    display: none; }
  body:not(.fsComposeMode) .slideshow-container .fsElementFooterContent {
    margin: 0; }
    body:not(.fsComposeMode) .slideshow-container .fsElementFooterContent a {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      width: 35px;
      font-size: 0;
      bottom: 20px; }
      @media (min-width: 1200px) {
        body:not(.fsComposeMode) .slideshow-container .fsElementFooterContent a:after {
          content: "";
          font-family: "IcoMoon";
          font-smoothing: antialiased;
          font-weight: normal;
          speak: none;
          font-size: 55px;
          display: inline-block;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          width: 35px;
          color: #fff;
          text-shadow: 0 3px 5px rgba(0, 0, 0, 0.6); } }

body:not(.fsComposeMode) .hero-slideshow {
  margin-bottom: 0; }
  body:not(.fsComposeMode) .hero-slideshow header {
    display: none; }
  body:not(.fsComposeMode) .hero-slideshow .fsElementSlideshow {
    padding: 0;
    margin: 0; }
  body:not(.fsComposeMode) .hero-slideshow article {
    position: relative;
    padding: 0; }
  body:not(.fsComposeMode) .hero-slideshow picture {
    position: relative;
    display: block;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    height: 95vw; }
    @media (min-width: 600px) {
      body:not(.fsComposeMode) .hero-slideshow picture {
        height: 75vw; } }
    @media (min-width: 1000px) {
      body:not(.fsComposeMode) .hero-slideshow picture {
        max-height: 650px;
        height: 55vw; } }
    body:not(.fsComposeMode) .hero-slideshow picture img {
      visibility: hidden;
      opacity: 0; }
  body:not(.fsComposeMode) .hero-slideshow .fsElementSlideshowControls > button {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 100%;
    top: 20px;
    left: 20px; }
  body:not(.fsComposeMode) .hero-slideshow .fsSlideshowPause:before {
    content: "";
    width: 3px;
    height: 18px;
    background-color: #fff;
    display: inline-block;
    margin: 6px 2px 3px 2px; }
  body:not(.fsComposeMode) .hero-slideshow .fsSlideshowPause:after {
    content: "";
    width: 3px;
    height: 18px;
    background-color: #fff;
    display: inline-block;
    margin: 6px 2px 3px 2px; }
  body:not(.fsComposeMode) .hero-slideshow .fsPrevButton,
  body:not(.fsComposeMode) .hero-slideshow .fsNextButton {
    background: rgba(0, 0, 0, 0.5);
    height: 90px;
    width: 45px; }
    body:not(.fsComposeMode) .hero-slideshow .fsPrevButton:before,
    body:not(.fsComposeMode) .hero-slideshow .fsNextButton:before {
      height: auto;
      width: auto;
      top: 25%;
      -ms-transform: translateY(-25%);
      transform: translateY(-25%);
      text-align: left;
      color: #fff; }
  body:not(.fsComposeMode) .hero-slideshow .fsPrevButton {
    border-bottom-right-radius: 90px;
    border-top-right-radius: 90px; }
    body:not(.fsComposeMode) .hero-slideshow .fsPrevButton:before {
      left: 25%;
      -ms-transform: translateX(-25%);
      transform: translateX(-25%); }
  body:not(.fsComposeMode) .hero-slideshow .fsNextButton {
    border-bottom-left-radius: 90px;
    border-top-left-radius: 90px; }
    body:not(.fsComposeMode) .hero-slideshow .fsNextButton:before {
      left: 55%;
      -ms-transform: translateX(-55%);
      transform: translateX(-55%); }
  @media (max-width: 599px) {
    body:not(.fsComposeMode) .hero-slideshow figure {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-flow: column;
      flex-flow: column; } }

body:not(.fsComposeMode) .hero-caption {
  position: relative; }
  @media (min-width: 600px) {
    body:not(.fsComposeMode) .hero-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%; } }
  @media (min-width: 1000px) {
    body:not(.fsComposeMode) .hero-caption {
      width: 50%;
      left: auto;
      right: 0; } }
  @media (min-width: 1200px) {
    body:not(.fsComposeMode) .hero-caption {
      bottom: 50px;
      width: 40%; } }
  body:not(.fsComposeMode) .hero-caption .slider-play-btn {
    display: none; }
  body:not(.fsComposeMode) .hero-caption figcaption {
    background: #333;
    padding: 20px;
    font-size: 15px;
    font-weight: 500;
    color: #fff; }
    body:not(.fsComposeMode) .hero-caption figcaption .fsTitle {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 7px; }
    @media (min-width: 600px) {
      body:not(.fsComposeMode) .hero-caption figcaption {
        background: rgba(0, 0, 0, 0.5); } }
    @media (min-width: 700px) {
      body:not(.fsComposeMode) .hero-caption figcaption {
        position: static;
        padding: 20px 70px; } }
    @media (min-width: 1000px) {
      body:not(.fsComposeMode) .hero-caption figcaption {
        min-height: 150px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: column;
        flex-flow: column; } }

body:not(.fsComposeMode) .slideshow-container {
  position: relative;
  margin-bottom: 0; }
  body:not(.fsComposeMode) .slideshow-container header {
    display: none; }
  body:not(.fsComposeMode) .slideshow-container .fsElementFooterContent {
    margin: 0; }
    body:not(.fsComposeMode) .slideshow-container .fsElementFooterContent a {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      width: 35px;
      font-size: 0;
      bottom: 20px; }
      @media (min-width: 1200px) {
        body:not(.fsComposeMode) .slideshow-container .fsElementFooterContent a:after {
          content: "";
          font-family: "IcoMoon";
          font-smoothing: antialiased;
          font-weight: normal;
          speak: none;
          font-size: 55px;
          display: inline-block;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          width: 35px;
          color: #fff;
          text-shadow: 0 3px 5px rgba(0, 0, 0, 0.6); } }

body:not(.fsComposeMode) .main-slideshow {
  margin-bottom: 0; }
  body:not(.fsComposeMode) .main-slideshow header {
    display: none; }
  body:not(.fsComposeMode) .main-slideshow article .image-wrapper {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    height: 95vw; }
    @media (min-width: 600px) {
      body:not(.fsComposeMode) .main-slideshow article .image-wrapper {
        height: 75vw; } }
    @media (min-width: 1000px) {
      body:not(.fsComposeMode) .main-slideshow article .image-wrapper {
        max-height: 650px;
        height: 55vw; } }
  body:not(.fsComposeMode) .main-slideshow article img {
    visibility: hidden;
    opacity: 0; }
  body:not(.fsComposeMode) .main-slideshow .fsElementSlideshowControls > button {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 100%; }
  body:not(.fsComposeMode) .main-slideshow .slick-prev,
  body:not(.fsComposeMode) .main-slideshow .slick-next {
    background: rgba(0, 0, 0, 0.5);
    height: 90px;
    width: 45px; }
    body:not(.fsComposeMode) .main-slideshow .slick-prev:before,
    body:not(.fsComposeMode) .main-slideshow .slick-next:before {
      height: auto;
      width: auto;
      top: 25%;
      -ms-transform: translateY(-25%);
      transform: translateY(-25%);
      text-align: left; }
  body:not(.fsComposeMode) .main-slideshow .slick-prev {
    border-bottom-right-radius: 90px;
    border-top-right-radius: 90px; }
    body:not(.fsComposeMode) .main-slideshow .slick-prev:before {
      left: 25%;
      -ms-transform: translateX(-25%);
      transform: translateX(-25%); }
  body:not(.fsComposeMode) .main-slideshow .slick-next {
    border-bottom-left-radius: 90px;
    border-top-left-radius: 90px; }
    body:not(.fsComposeMode) .main-slideshow .slick-next:before {
      left: 55%;
      -ms-transform: translateX(-55%);
      transform: translateX(-55%); }

@media (min-width: 600px) {
  body:not(.fsComposeMode) .main-captions {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; } }

@media (min-width: 1000px) {
  body:not(.fsComposeMode) .main-captions {
    width: 50%;
    left: auto;
    right: 0; } }

@media (min-width: 1200px) {
  body:not(.fsComposeMode) .main-captions {
    bottom: 50px;
    width: 40%; } }

body:not(.fsComposeMode) .main-captions .slider-play-btn {
  display: none; }

body:not(.fsComposeMode) .main-captions .caption-wrapper {
  background: #333;
  padding: 20px; }
  @media (min-width: 600px) {
    body:not(.fsComposeMode) .main-captions .caption-wrapper {
      background: rgba(0, 0, 0, 0.5); } }
  @media (min-width: 700px) {
    body:not(.fsComposeMode) .main-captions .caption-wrapper {
      position: static;
      padding: 20px 70px; } }
  @media (min-width: 1000px) {
    body:not(.fsComposeMode) .main-captions .caption-wrapper {
      min-height: 150px;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
      align-items: center; } }

body:not(.fsComposeMode) .main-captions .caption-title {
  font-size: 18px;
  font-weight: 700; }

body:not(.fsComposeMode) .main-captions .caption-desc {
  font-size: 15px;
  font-weight: 500; }

body:not(.fsComposeMode) .news-events-container {
  background: rgba(244, 244, 244, 0.6);
  padding: 40px 20px;
  margin-bottom: 0; }
  @media (min-width: 600px) {
    body:not(.fsComposeMode) .news-events-container {
      padding: 40px; } }
  @media (min-width: 1300px) {
    body:not(.fsComposeMode) .news-events-container {
      padding: 50px 0 70px 0; } }
  body:not(.fsComposeMode) .news-events-container > header .fsElementTitle {
    display: none; }
  body:not(.fsComposeMode) .news-events-container > .fsElementContent {
    position: relative;
    margin: 0 auto;
    max-width: 80em;
    max-width: 80rem; }
    @media (min-width: 1000px) {
      body:not(.fsComposeMode) .news-events-container > .fsElementContent {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: start;
        align-items: flex-start; } }

body:not(.fsComposeMode) .home-news {
  margin-bottom: 50px; }
  @media (min-width: 600px) {
    body:not(.fsComposeMode) .home-news {
      padding-left: 20px; } }
  @media (min-width: 1000px) {
    body:not(.fsComposeMode) .home-news {
      padding-right: 70px;
      -ms-flex: 2 1 auto;
      flex: 2 1 auto;
      margin-bottom: 0; } }
  @media (min-width: 1300px) {
    body:not(.fsComposeMode) .home-news {
      padding-right: 80px;
      border-right: solid 1px rgba(151, 151, 151, 0.4); } }
  body:not(.fsComposeMode) .home-news header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 30px;
    margin-bottom: 40px; }
    body:not(.fsComposeMode) .home-news header .fsElementTitle {
      color: #8b0e05;
      margin: 0; }
    body:not(.fsComposeMode) .home-news header .fsElementHeaderContent {
      margin: 0; }
      body:not(.fsComposeMode) .home-news header .fsElementHeaderContent a {
        color: #757575;
        font-size: 15px; }
        body:not(.fsComposeMode) .home-news header .fsElementHeaderContent a:hover {
          color: #8b0e05; }
    @media (min-width: 600px) {
      body:not(.fsComposeMode) .home-news header {
        margin-left: -20px; } }
  body:not(.fsComposeMode) .home-news article {
    background: #fff;
    border: solid 1px #d6d6d6;
    padding: 20px; }
    @media (min-width: 600px) {
      body:not(.fsComposeMode) .home-news article {
        margin-bottom: 40px;
        padding-bottom: 10px;
        width: calc(100% - 40px);
        margin-left: 40px; } }
    @media (min-width: 1000px) {
      body:not(.fsComposeMode) .home-news article:last-child {
        margin-bottom: 0; } }
  body:not(.fsComposeMode) .home-news .fsThumbnail {
    max-width: none;
    margin: -20px -20px 25px -20px; }
    @media (min-width: 600px) {
      body:not(.fsComposeMode) .home-news .fsThumbnail {
        max-width: 512px;
        margin: -40px 20px 0 -80px;
        width: 240px; } }
    body:not(.fsComposeMode) .home-news .fsThumbnail img {
      display: block;
      width: 100%; }
  body:not(.fsComposeMode) .home-news .fsTitle {
    color: #8b0e05; }
  body:not(.fsComposeMode) .home-news .fsSummary p:last-child {
    margin-bottom: 0; }
    @media (min-width: 600px) {
      body:not(.fsComposeMode) .home-news .fsSummary p:last-child {
        margin-bottom: 10px; } }
    @media (min-width: 1000px) {
      body:not(.fsComposeMode) .home-news .fsSummary p:last-child {
        margin-bottom: 20px; } }
  body:not(.fsComposeMode) .home-news .fsReadMoreLink {
    display: inline-block;
    font-size: 0;
    float: right;
    height: 16px; }
    body:not(.fsComposeMode) .home-news .fsReadMoreLink:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none;
      color: #757575;
      font-size: 16px; }

@media (min-width: 1000px) {
  body:not(.fsComposeMode) .home-events {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; } }

@media (min-width: 1300px) {
  body:not(.fsComposeMode) .home-events {
    padding-left: 80px; } }

body:not(.fsComposeMode) .home-events header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 30px; }
  body:not(.fsComposeMode) .home-events header .fsElementTitle {
    color: #8b0e05;
    margin: 0; }
  body:not(.fsComposeMode) .home-events header .fsElementHeaderContent {
    margin: 0; }
    body:not(.fsComposeMode) .home-events header .fsElementHeaderContent a {
      color: #757575;
      font-size: 15px; }
      body:not(.fsComposeMode) .home-events header .fsElementHeaderContent a:hover {
        color: #8b0e05; }

body:not(.fsComposeMode) .profiles-container {
  background: #343845;
  padding: 45px 36px;
  margin-bottom: 0; }
  @media (min-width: 700px) {
    body:not(.fsComposeMode) .profiles-container {
      padding: 45px 40px; } }
  body:not(.fsComposeMode) .profiles-container > header {
    text-align: center;
    margin-bottom: 20px;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    position: relative; }
    @media (min-width: 700px) {
      body:not(.fsComposeMode) .profiles-container > header {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-align: center;
        align-items: center; } }
    @media (min-width: 1000px) {
      body:not(.fsComposeMode) .profiles-container > header {
        margin-bottom: 0; } }
    body:not(.fsComposeMode) .profiles-container > header .fsElementTitle {
      color: #fff;
      font-size: 30px;
      font-weight: 500;
      letter-spacing: 1px;
      margin-bottom: 16px; }
      @media (min-width: 700px) {
        body:not(.fsComposeMode) .profiles-container > header .fsElementTitle {
          margin-bottom: 0; } }
    body:not(.fsComposeMode) .profiles-container > header .slick-dots, body:not(.fsComposeMode) .profiles-container > header .slick-dots ul {
      margin: 0;
      padding: 0;
      list-style: none; }
    body:not(.fsComposeMode) .profiles-container > header .slick-dots li {
      margin: 0;
      padding: 0; }
    @media (min-width: 900px) {
      body:not(.fsComposeMode) .profiles-container > header .slick-dots {
        position: absolute;
        top: 0;
        left: 0;
        width: calc(100% - 340px);
        text-align: right; } }
    @media (min-width: 1000px) {
      body:not(.fsComposeMode) .profiles-container > header .slick-dots {
        width: calc(100% - 420px); } }
    body:not(.fsComposeMode) .profiles-container > header .slick-dots li {
      display: inline-block;
      margin: 0 7px; }
      body:not(.fsComposeMode) .profiles-container > header .slick-dots li.slick-active button {
        background: #fff; }
    body:not(.fsComposeMode) .profiles-container > header .slick-dots button {
      border: 0;
      background: none;
      outline: 0;
      margin: 0;
      padding: 0;
      border: 0;
      background-color: rgba(255, 255, 255, 0.3);
      padding: 0;
      width: 13px;
      height: 13px;
      border-radius: 100%;
      font-size: 0; }
  body:not(.fsComposeMode) .profiles-container > .fsElementContent {
    max-width: 1120px;
    width: 100%;
    margin: auto; }

@media (min-width: 700px) {
  body:not(.fsComposeMode) .profiles {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center; } }

@media (min-width: 700px) {
  body:not(.fsComposeMode) .profiles header {
    -ms-flex-order: 2;
    order: 2;
    width: 300px; } }

@media (min-width: 1000px) {
  body:not(.fsComposeMode) .profiles header {
    width: 380px; } }

body:not(.fsComposeMode) .profiles header .fsElementHeaderContent {
  text-align: center; }
  @media (min-width: 700px) {
    body:not(.fsComposeMode) .profiles header .fsElementHeaderContent {
      margin-bottom: 0; } }
  body:not(.fsComposeMode) .profiles header .fsElementHeaderContent img {
    border-radius: 100%;
    box-shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.5);
    display: inline-block;
    width: 100%; }
    @media (min-width: 700px) {
      body:not(.fsComposeMode) .profiles header .fsElementHeaderContent img {
        display: block; } }

body:not(.fsComposeMode) .profiles .fsElementContent {
  color: #fff;
  font-size: 15px;
  font-weight: 300; }
  @media (min-width: 700px) {
    body:not(.fsComposeMode) .profiles .fsElementContent {
      -ms-flex-order: 1;
      order: 1;
      width: calc(100% - 300px);
      padding-right: 40px; } }
  @media (min-width: 1000px) {
    body:not(.fsComposeMode) .profiles .fsElementContent {
      padding-left: 40px;
      width: calc(100% - 380px); } }
  body:not(.fsComposeMode) .profiles .fsElementContent h6 {
    color: #fff;
    font-family: "acumin-pro-semi-condensed", sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: none;
    line-height: 1.2; }

.career-tech {
  font-family: "acumin-pro-semi-condensed", sans-serif; }
  .career-tech p {
    font-family: "acumin-pro-semi-condensed", sans-serif !important;
    font-size: 16px; }

body:not(.fsComposeMode) .info-container {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 40px 0;
  margin-bottom: 0; }
  @media (min-width: 1000px) {
    body:not(.fsComposeMode) .info-container {
      padding: 50px 0 100px 0; } }
  body:not(.fsComposeMode) .info-container:before {
    content: "";
    background: rgba(52, 56, 69, 0.3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }
  body:not(.fsComposeMode) .info-container .fsElementTitle {
    color: #fff;
    font-size: 35px;
    position: relative;
    text-align: center; }
    @media (min-width: 600px) {
      body:not(.fsComposeMode) .info-container .fsElementTitle {
        margin-bottom: 50px; } }
  body:not(.fsComposeMode) .info-container > .fsElementContent {
    max-width: 200px;
    width: 100%;
    margin: auto;
    position: relative; }
    @media (min-width: 600px) {
      body:not(.fsComposeMode) .info-container > .fsElementContent {
        max-width: 430px; } }
    @media (min-width: 1000px) {
      body:not(.fsComposeMode) .info-container > .fsElementContent {
        max-width: 1120px;
        padding: 0 20px; } }
  body:not(.fsComposeMode) .info-container .slideControls {
    width: 280px;
    height: 30px;
    margin: auto;
    position: absolute;
    top: calc(50% + 40px);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0; }
    @media (min-width: 600px) {
      body:not(.fsComposeMode) .info-container .slideControls {
        width: 500px; } }
    @media (min-width: 1000px) {
      body:not(.fsComposeMode) .info-container .slideControls {
        width: 100%; } }
    @media (min-width: 1200px) {
      body:not(.fsComposeMode) .info-container .slideControls {
        width: calc(100% - 40px); } }
    body:not(.fsComposeMode) .info-container .slideControls .slick-prev,
    body:not(.fsComposeMode) .info-container .slideControls .slick-next {
      border: 0;
      background: none;
      outline: 0;
      margin: 0;
      padding: 0;
      font-size: 0;
      position: absolute;
      top: 50%;
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 30px;
      height: 30px; }
      body:not(.fsComposeMode) .info-container .slideControls .slick-prev:before,
      body:not(.fsComposeMode) .info-container .slideControls .slick-next:before {
        font-size: 26px;
        color: #fff;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5); }
    body:not(.fsComposeMode) .info-container .slideControls .slick-prev {
      left: -20px; }
      @media (min-width: 1000px) {
        body:not(.fsComposeMode) .info-container .slideControls .slick-prev {
          left: 0; } }
      body:not(.fsComposeMode) .info-container .slideControls .slick-prev:before {
        content: "";
        font-family: "IcoMoon";
        font-smoothing: antialiased;
        font-weight: normal;
        speak: none; }
    body:not(.fsComposeMode) .info-container .slideControls .slick-next {
      right: -20px; }
      @media (min-width: 1000px) {
        body:not(.fsComposeMode) .info-container .slideControls .slick-next {
          right: 0; } }
      body:not(.fsComposeMode) .info-container .slideControls .slick-next:before {
        content: "";
        font-family: "IcoMoon";
        font-smoothing: antialiased;
        font-weight: normal;
        speak: none; }

body:not(.fsComposeMode) .infographic-box {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  height: 170px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "acumin-pro-condensed", sans-serif;
  color: #343845; }
  body:not(.fsComposeMode) .infographic-box .fsElementHeaderContent > div {
    display: contents; }
  @media (min-width: 600px) {
    body:not(.fsComposeMode) .infographic-box {
      margin-left: 9px;
      margin-right: 9px; } }
  body:not(.fsComposeMode) .infographic-box .fsElementHeaderContent {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    font-size: 45px;
    font-weight: 700; }
    body:not(.fsComposeMode) .infographic-box .fsElementHeaderContent img {
      margin-right: 14px;
      width: 43px; }
    body:not(.fsComposeMode) .infographic-box .fsElementHeaderContent p {
      margin: 0; }
  body:not(.fsComposeMode) .infographic-box .fsElementContent {
    padding: 0 10px;
    text-align: center;
    width: 100%; }
    body:not(.fsComposeMode) .infographic-box .fsElementContent p {
      margin-bottom: 0; }

.portal-page .fsTwoColumnWideRightLayout > .fsDiv > .fsElement + .fsElement {
  margin-top: 2em; }

/*! pages - style-guide v0.0.1 */
.style-guide-page .fsPageTitle {
  margin-bottom: 1.875em;
  padding: 1.25em;
  background: rgba(0, 0, 0, 0.1); }

.colors ol {
  zoom: 1;
  margin-bottom: 2.5em;
  padding: 0;
  list-style: none; }
  .colors ol:after {
    display: table;
    clear: both;
    content: ''; }
  .colors ol li {
    position: relative;
    float: left;
    margin-bottom: 2em;
    height: 4em;
    width: 50%; }
    @media (min-width: 600px) {
      .colors ol li {
        width: 25%; } }
    @media (min-width: 1280px) {
      .colors ol li {
        margin-bottom: 0;
        width: 12.5%; } }
    .colors ol li:after {
      position: absolute;
      top: 100%;
      left: 0; }
    .colors ol li:nth-of-type(1) {
      background: #757575;
      color: #757575; }
      .colors ol li:nth-of-type(1):after {
        content: "#757575"; }
    .colors ol li:nth-of-type(2) {
      background: #343845;
      color: #343845; }
      .colors ol li:nth-of-type(2):after {
        content: "#343845"; }
    .colors ol li:nth-of-type(3) {
      background: #8b0e05;
      color: #8b0e05; }
      .colors ol li:nth-of-type(3):after {
        content: "#8b0e05"; }
    .colors ol li:nth-of-type(4) {
      background: #540903;
      color: #540903; }
      .colors ol li:nth-of-type(4):after {
        content: "#540903"; }
    .colors ol li:nth-of-type(5) {
      background: #f4f4f4;
      color: #f4f4f4; }
      .colors ol li:nth-of-type(5):after {
        content: "#f4f4f4"; }
    .colors ol li:nth-of-type(6) {
      background: #ebebeb;
      color: #ebebeb; }
      .colors ol li:nth-of-type(6):after {
        content: "#ebebeb"; }
    .colors ol li:nth-of-type(7) {
      background: #979797;
      color: #979797; }
      .colors ol li:nth-of-type(7):after {
        content: "#979797"; }
    .colors ol li:nth-of-type(1) {
      background: #757575;
      color: #757575; }
      .colors ol li:nth-of-type(1):after {
        content: "#757575"; }

.fonts ol {
  zoom: 1;
  margin-bottom: 2.5em;
  padding: 0;
  list-style: none; }
  .fonts ol:after {
    display: table;
    clear: both;
    content: ''; }
  .fonts ol li {
    margin-bottom: 0.3125em;
    padding: 0.3125em; }
    .fonts ol li:nth-of-type(1) {
      font-family: "Droid Serif", Georgia, serif; }
      .fonts ol li:nth-of-type(1):after {
        content: "Droid Serif, Georgia, serif"; }
    .fonts ol li:nth-of-type(2):after {
      content: ""; }
    .fonts ol li:nth-of-type(3) {
      font-family: "acumin-pro-semi-condensed", sans-serif; }
      .fonts ol li:nth-of-type(3):after {
        content: "acumin-pro-semi-condensed, sans-serif"; }
    .fonts ol li:nth-of-type(4) {
      font-family: "acumin-pro-condensed", sans-serif; }
      .fonts ol li:nth-of-type(4):after {
        content: "acumin-pro-condensed, sans-serif"; }
    .fonts ol li:nth-of-type(5) {
      font-family: "IcoMoon"; }
      .fonts ol li:nth-of-type(5):after {
        content: "IcoMoon"; }
    .fonts ol li:nth-of-type(6) {
      font-family: "FontAwesome"; }
      .fonts ol li:nth-of-type(6):after {
        content: "FontAwesome"; }
    .fonts ol li:nth-of-type(7) {
      font-family: Menlo, Monaco, Consolas, "Courier New", monospace; }
      .fonts ol li:nth-of-type(7):after {
        content: "Menlo, Monaco, Consolas, Courier New, monospace"; }

.headers h1:after {
  content: " size: 35px / line: 37px"; }

.headers h2:after {
  content: " size: 28px / line: 30px"; }

.headers h3:after {
  content: " size: 26px / line: 28px"; }

.headers h4:after {
  content: " size: 22px / line: 24px"; }

.headers h5:after {
  content: " size: 20px / line: 22px"; }

.headers h6:after {
  content: " size: 17px / line: 19px"; }

body:not(.fsComposeMode) .homepage-buttons {
  position: relative;
  max-width: 0;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0; }
  body:not(.fsComposeMode) .homepage-buttons > header,
  body:not(.fsComposeMode) .homepage-buttons > footer,
  body:not(.fsComposeMode) .homepage-buttons > .fsElementContent {
    margin-right: -50vw;
    margin-left: -50vw;
    width: 100vw; }
  body:not(.fsComposeMode) .homepage-buttons > header .fsElementTitle,
  body:not(.fsComposeMode) .homepage-buttons > header .fsElementHeaderContent {
    position: relative;
    margin: 0 auto;
    max-width: 80em;
    max-width: 80rem; }
    body:not(.fsComposeMode) .homepage-buttons > header .fsElementTitle > p,
    body:not(.fsComposeMode) .homepage-buttons > header .fsElementHeaderContent > p {
      margin-bottom: 0; }
  body:not(.fsComposeMode) .homepage-buttons > footer .fsElementFooterContent {
    position: relative;
    margin: 0 auto;
    max-width: 80em;
    max-width: 80rem; }
  body:not(.fsComposeMode) .homepage-buttons > .fsElementContent > .fsContainer {
    position: relative;
    margin: 0 auto;
    max-width: 80em;
    max-width: 80rem;
    padding-right: 1.25em;
    padding-left: 1.25em;
    padding-top: 50px;
    padding-bottom: 50px; }
    @media (min-width: 1320px) {
      body:not(.fsComposeMode) .homepage-buttons > .fsElementContent > .fsContainer {
        padding-right: 0;
        padding-left: 0; } }
    body:not(.fsComposeMode) .homepage-buttons > .fsElementContent > .fsContainer > .fsElementContent {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
      -ms-flex-pack: center;
      justify-content: center;
      -ms-flex-align: stretch;
      align-items: stretch; }
      @media (min-width: 800px) {
        body:not(.fsComposeMode) .homepage-buttons > .fsElementContent > .fsContainer > .fsElementContent {
          -ms-flex-flow: row wrap;
          flex-flow: row wrap; } }
      @media (min-width: 1000px) {
        body:not(.fsComposeMode) .homepage-buttons > .fsElementContent > .fsContainer > .fsElementContent {
          -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
          -ms-flex-align: stretch;
          align-items: stretch; } }
      body:not(.fsComposeMode) .homepage-buttons > .fsElementContent > .fsContainer > .fsElementContent > .fsContent {
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        width: 100%;
        height: auto;
        margin: 0 auto 20px;
        padding: 0;
        background-image: url("../images/homepage-btn-bg.png");
        background-color: #343845;
        background-position: center bottom;
        background-size: 247px 71px;
        background-repeat: no-repeat;
        background-attachment: inherit;
        box-shadow: inset 0 -5px 0 0 rgba(139, 14, 5, 0.95);
        transition: background-color 0.3s, box-shadow 0.3s; }
        @media (min-width: 800px) {
          body:not(.fsComposeMode) .homepage-buttons > .fsElementContent > .fsContainer > .fsElementContent > .fsContent {
            width: 50%;
            width: calc(50% - 15px); } }
        @media (min-width: 1000px) {
          body:not(.fsComposeMode) .homepage-buttons > .fsElementContent > .fsContainer > .fsElementContent > .fsContent {
            margin-bottom: 0;
            width: 25%;
            width: calc(25% - 15px); } }
        @media (min-width: 1100px) {
          body:not(.fsComposeMode) .homepage-buttons > .fsElementContent > .fsContainer > .fsElementContent > .fsContent {
            max-width: 280px; } }
        body:not(.fsComposeMode) .homepage-buttons > .fsElementContent > .fsContainer > .fsElementContent > .fsContent:hover, body:not(.fsComposeMode) .homepage-buttons > .fsElementContent > .fsContainer > .fsElementContent > .fsContent:focus-within {
          background-color: #540903;
          color: #fff;
          box-shadow: inset 0 -5px 0 0 rgba(52, 56, 69, 0.95); }
        body:not(.fsComposeMode) .homepage-buttons > .fsElementContent > .fsContainer > .fsElementContent > .fsContent > .fsElementContent {
          width: 100%;
          height: 100%;
          min-height: 120px;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
          -ms-flex-pack: center;
          justify-content: center;
          -ms-flex-line-pack: center;
          align-content: center;
          -ms-flex-align: center;
          align-items: center; }
          body:not(.fsComposeMode) .homepage-buttons > .fsElementContent > .fsContainer > .fsElementContent > .fsContent > .fsElementContent > p {
            display: inline-block;
            -ms-flex: 0 1 auto;
            flex: 0 1 auto;
            margin: auto;
            padding: 0;
            width: 100%;
            height: auto; }
          body:not(.fsComposeMode) .homepage-buttons > .fsElementContent > .fsContainer > .fsElementContent > .fsContent > .fsElementContent a {
            display: block;
            border: none;
            border-radius: 0;
            margin: 0 auto;
            padding: 0 20px;
            color: #fff;
            text-align: center;
            font-family: "acumin-pro-condensed", sans-serif;
            font-weight: 700;
            font-size: 30px;
            line-height: 36px;
            letter-spacing: 0.54px;
            text-transform: uppercase;
            width: 100%;
            height: auto; }
            body:not(.fsComposeMode) .homepage-buttons > .fsElementContent > .fsContainer > .fsElementContent > .fsContent > .fsElementContent a:hover, body:not(.fsComposeMode) .homepage-buttons > .fsElementContent > .fsContainer > .fsElementContent > .fsContent > .fsElementContent a:focus {
              color: #fff; }
            body:not(.fsComposeMode) .homepage-buttons > .fsElementContent > .fsContainer > .fsElementContent > .fsContent > .fsElementContent a em,
            body:not(.fsComposeMode) .homepage-buttons > .fsElementContent > .fsContainer > .fsElementContent > .fsContent > .fsElementContent a i {
              display: block;
              font-family: "acumin-pro-condensed", sans-serif;
              font-size: 20px;
              line-height: 20px;
              letter-spacing: 0.36px;
              font-weight: 300;
              font-style: normal;
              text-transform: none; }
    body:not(.fsComposeMode) .homepage-buttons > .fsElementContent > .fsContainer:first-of-type {
      padding-bottom: 0; }
    body:not(.fsComposeMode) .homepage-buttons > .fsElementContent > .fsContainer:last-of-type {
      padding-bottom: 50px; }
    body:not(.fsComposeMode) .homepage-buttons > .fsElementContent > .fsContainer:not(:first-of-type) {
      padding-top: 0; }
      @media (min-width: 1000px) {
        body:not(.fsComposeMode) .homepage-buttons > .fsElementContent > .fsContainer:not(:first-of-type) {
          padding-top: 20px; } }
      @media (min-width: 1320px) {
        body:not(.fsComposeMode) .homepage-buttons > .fsElementContent > .fsContainer:not(:first-of-type) {
          padding-top: 2.5em; } }
    body:not(.fsComposeMode) .homepage-buttons > .fsElementContent > .fsContainer:not(:last-of-type) {
      padding-bottom: 0; }

@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: #000 !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;
    -ms-transform: none !important;
    transform: none !important; }
    .slick-track .slick-slide {
      width: auto !important; }
  a[class*='fs_style'] {
    border-color: #000; }
  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; } }

body:not(.fsComposeMode) .icon-buttons {
  padding: 30px 20px;
  font-family: "acumin-pro-semi-condensed", sans-serif;
  margin-bottom: 0px; }
  @media (min-width: 700px) {
    body:not(.fsComposeMode) .icon-buttons {
      width: 100%;
      background: rgba(244, 244, 244, 0.6); } }
  @media (min-width: 700px) and (max-width: 699px) {
    body:not(.fsComposeMode) .icon-buttons {
      background: #fff; } }
  body:not(.fsComposeMode) .icon-buttons > .fsElementContent {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    padding: 15px 0;
    max-width: 1182px;
    position: relative;
    margin: 0 auto;
    margin-top: -100px;
    width: 100%; }
    @media (max-width: 1199px) {
      body:not(.fsComposeMode) .icon-buttons > .fsElementContent {
        margin-top: 0px;
        box-shadow: none; } }
  body:not(.fsComposeMode) .icon-buttons > .fsElementContent > .fsElement {
    width: calc(50% - 1px);
    margin-bottom: 37px; }
    body:not(.fsComposeMode) .icon-buttons > .fsElementContent > .fsElement:nth-child(odd) {
      border-right: 1px solid #ccc; }
    @media (min-width: 700px) {
      body:not(.fsComposeMode) .icon-buttons > .fsElementContent > .fsElement {
        width: 16.6%;
        margin-bottom: 0; }
        body:not(.fsComposeMode) .icon-buttons > .fsElementContent > .fsElement:nth-child(even) {
          border-right: 1px solid #ccc; }
        body:not(.fsComposeMode) .icon-buttons > .fsElementContent > .fsElement:last-child {
          border-right: 0; } }
    body:not(.fsComposeMode) .icon-buttons > .fsElementContent > .fsElement p {
      margin: 0; }

body:not(.fsComposeMode) .icon-buttons > .fsElementContent > .fsElement {
  text-align: center;
  text-transform: uppercase;
  font-size: 16px; }
  body:not(.fsComposeMode) .icon-buttons > .fsElementContent > .fsElement a {
    display: block;
    padding-top: 70px;
    padding-bottom: 15px;
    position: relative;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0B3B64; }
    body:not(.fsComposeMode) .icon-buttons > .fsElementContent > .fsElement a:before {
      position: absolute;
      top: 15px;
      left: 50%;
      -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
      font-size: 44px;
      line-height: 1;
      color: #adaeb0;
      transition: all .3s linear; }
    body:not(.fsComposeMode) .icon-buttons > .fsElementContent > .fsElement a:hover:before, body:not(.fsComposeMode) .icon-buttons > .fsElementContent > .fsElement a:focus:before {
      color: #3066BE;
      top: 10px;
      font-size: 54px; }
  body:not(.fsComposeMode) .icon-buttons > .fsElementContent > .fsElement a:before, body:not(.fsComposeMode) .icon-buttons > .fsElementContent > .fsElement a:after {
    text-decoration: underline; }
  body:not(.fsComposeMode) .icon-buttons > .fsElementContent > .fsElement a:before, body:not(.fsComposeMode) .icon-buttons > .fsElementContent > .fsElement a:after,
  body:not(.fsComposeMode) .icon-buttons > .fsElementContent > .fsElement a:hover:before, body:not(.fsComposeMode) .icon-buttons > .fsElementContent > .fsElement a:hover:after {
    text-decoration: none; }

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

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-apple a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-backpack a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-bar-graph a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-baseball a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-book a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-briefcase a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-bullhorn a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-bus a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-calendar a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-camera a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-certificate a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-check a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-chess a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-city a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-college a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-cross a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-directory a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-diversity a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-door a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-droplet a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-enroll a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-faq a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-files a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-football a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-gift a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-giving a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-globe a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-grad a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-group-boys a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-group-coed a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-group-girls a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-group a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-heart a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-info a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-jersey a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-leaf a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-lightbulb a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-link a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-list a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-location a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-lock a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-map a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-medal a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-microscope a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-music a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-paint a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-pencil a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-person a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-phone a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-piggy-bank a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-portion a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-question a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-ratio a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-robot a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-school a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-screens a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-settings a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-shoe a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-soccer a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-sports a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-star-of-david a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-star a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-store a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-sun a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-teacher a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-theatre a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-time a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-tree a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-trophy a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body:not(.fsComposeMode) .icon-buttons .fsElement.icon-warning a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

.icons-library .fsElement.icon-apple a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-backpack a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-bar-graph a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-baseball a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-book a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-briefcase a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-bullhorn a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-bus a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-calendar a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-camera a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-certificate a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-check a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-chess a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-city a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-college a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-cross a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-directory a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-diversity a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-door a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-droplet a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-enroll a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-faq a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-files a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-football a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-gift a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-giving a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-globe a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-grad a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-group-boys a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-group-coed a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-group-girls a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-group a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-heart a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-info a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-jersey a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-leaf a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-lightbulb a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-link a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-list a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-location a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-lock a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-map a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-medal a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-microscope a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-music a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-paint a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-pencil a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-person a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-phone a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-piggy-bank a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-portion a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-question a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-ratio a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-robot a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-school a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-screens a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-settings a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-shoe a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-soccer a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-sports a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-star-of-david a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-star a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-store a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-sun a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-teacher a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-theatre a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-time a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-tree a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-trophy a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

.icons-library .fsElement.icon-warning a:before {
  content: "";
  font-family: "bpa-font-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  display: block;
  font-size: 50px; }

h1,
h3,
h6 {
  color: #005F1E; }

a {
  color: #005F1E; }
  a:hover, a:focus {
    color: #757575; }

table.fs_style_33 th {
  background: #005F1E; }

.module.white-bg .fsElementTitle {
  color: #005F1E; }

.module.white-bg .fsElementContent h6 {
  color: #005F1E; }

.fs_style_26,
.fs_style_29 {
  background: #005F1E; }
  .fs_style_26:hover, .fs_style_26:focus,
  .fs_style_29:hover,
  .fs_style_29:focus {
    background: #003611; }

.fs_style_31 {
  color: #005F1E;
  border-color: #005F1E; }
  .fs_style_31:hover, .fs_style_31:focus {
    background: #005F1E; }

.drawer-trigger:before, .drawer-trigger:after {
  background: #005F1E; }

.drawer-trigger:after {
  box-shadow: 0 0.3125em 0 0 #005F1E; }

.top-search button:before {
  color: #005F1E; }

.top-search input {
  color: #005F1E; }
  .top-search input::-moz-placeholder {
    color: #005F1E; }
  .top-search input:-ms-input-placeholder {
    color: #005F1E; }
  .top-search input::placeholder {
    color: #005F1E; }

.site-info-container a {
  color: #005F1E; }
  .site-info-container a:hover {
    color: #003611; }

.portal-nav .fsNavLevel1 > li > a:hover {
  color: #005F1E; }

.nav-row {
  background: #005F1E; }

.nav-main .fsNavLevel1 > li.fsNavCurrentPage > a,
.nav-main .fsNavLevel1 > li.fsNavCurrentPageAncestor > a {
  background: #343845; }

.nav-main .fsNavLevel1 > li:hover > a {
  background: #343845; }

.nav-main .fsNavLevel2 > li.fsNavCurrentPage > a,
.nav-main .fsNavLevel2 > li.fsNavCurrentPageAncestor > a {
  color: #005F1E; }

.nav-main .fsNavLevel2 > li > a {
  color: #005F1E; }
  .nav-main .fsNavLevel2 > li > a:hover, .nav-main .fsNavLevel2 > li > a:focus {
    color: #757575; }

.nav-main .fsNavLevel3 > li.fsNavCurrentPage > a,
.nav-main .fsNavLevel3 > li.fsNavCurrentPageAncestor > a {
  color: #005F1E; }

.nav-main .fsNavLevel3 > li > a:hover, .nav-main .fsNavLevel3 > li > a:focus {
  color: #005F1E; }

.nav-sub header .fsElementTitle {
  background-color: #005F1E; }
  .nav-sub header .fsElementTitle:hover, .nav-sub header .fsElementTitle:focus {
    background-color: #003611; }

.nav-sub.active-nav header .fsElementTitle {
  background-color: #003611; }

.nav-sub .fsNavLevel1 > li.fsNavCurrentPage > a,
.nav-sub .fsNavLevel1 > li.fsNavCurrentPageAncestor > a {
  color: #005F1E;
  border-color: #005F1E; }
  .nav-sub .fsNavLevel1 > li.fsNavCurrentPage > a:hover, .nav-sub .fsNavLevel1 > li.fsNavCurrentPage > a:focus,
  .nav-sub .fsNavLevel1 > li.fsNavCurrentPageAncestor > a:hover,
  .nav-sub .fsNavLevel1 > li.fsNavCurrentPageAncestor > a:focus {
    color: #003611 !important; }

.nav-sub .fsNavLevel1 > li > a {
  color: #005F1E; }
  .nav-sub .fsNavLevel1 > li > a:hover, .nav-sub .fsNavLevel1 > li > a:focus {
    color: #757575; }

.nav-sub .fsNavLevel2 > li.fsNavCurrentPage > a,
.nav-sub .fsNavLevel2 > li.fsNavCurrentPageAncestor > a {
  color: #005F1E; }
  .nav-sub .fsNavLevel2 > li.fsNavCurrentPage > a:hover, .nav-sub .fsNavLevel2 > li.fsNavCurrentPage > a:focus,
  .nav-sub .fsNavLevel2 > li.fsNavCurrentPageAncestor > a:hover,
  .nav-sub .fsNavLevel2 > li.fsNavCurrentPageAncestor > a:focus {
    color: #002c0e !important; }

.nav-sub .fsNavLevel2 > li > a:hover, .nav-sub .fsNavLevel2 > li > a:focus {
  color: #005F1E; }

@media screen and (max-width: 999px) {
  .nav-sub > .fsElementContent ul li a {
    color: #005F1E; }
    .nav-sub > .fsElementContent ul li a:hover, .nav-sub > .fsElementContent ul li a:focus {
      color: #002c0e !important; } }

body:not(.fsComposeMode) .home-news header .fsElementTitle,
body:not(.fsComposeMode) .home-events header .fsElementTitle {
  color: #005F1E; }

body:not(.fsComposeMode) .home-news .fsTitle,
body:not(.fsComposeMode) .home-events .fsTitle {
  color: #005F1E; }
  body:not(.fsComposeMode) .home-news .fsTitle a,
  body:not(.fsComposeMode) .home-events .fsTitle a {
    color: inherit; }
    body:not(.fsComposeMode) .home-news .fsTitle a:hover,
    body:not(.fsComposeMode) .home-events .fsTitle a:hover {
      color: #002c0e; }

body:not(.fsComposeMode) .profiles-container {
  background: #ebebeb; }
  body:not(.fsComposeMode) .profiles-container header .fsElementTitle {
    color: #757575; }
  body:not(.fsComposeMode) .profiles-container header .slick-dots li.slick-active button {
    background: #005F1E; }
  body:not(.fsComposeMode) .profiles-container header .slick-dots button {
    background: rgba(151, 151, 151, 0.5); }
  body:not(.fsComposeMode) .profiles-container .fsElementContent {
    color: #343845; }
    body:not(.fsComposeMode) .profiles-container .fsElementContent h6 {
      color: #005F1E; }

.fsCalendar .fsTitle,
.fsCalendar .fsElementTitle {
  color: #005F1E; }
  .fsCalendar .fsTitle a:hover,
  .fsCalendar .fsElementTitle a:hover {
    color: #757575; }

.fsCalendar .fsDate {
  background: #005F1E; }

.fsPostElement .fsTitle a:hover, .fsPostElement .fsTitle a:focus {
  color: #005F1E; }

.fsPostElement .fsElementFooterContent a:hover, .fsPostElement .fsElementFooterContent a:focus {
  color: #005F1E; }

.fsAccordion .fsPanel.fsStateOpen > header {
  background: #005F1E; }
  .fsAccordion .fsPanel.fsStateOpen > header:hover a {
    color: #fff; }

.fsAccordion .fsPanel > header:hover h2 {
  color: #005F1E; }

.fsTabs .fsTabsNav li.fsStateSelected a {
  background: #005F1E; }
  .fsTabs .fsTabsNav li.fsStateSelected a:hover {
    color: #fff; }
  .fsTabs .fsTabsNav li.fsStateSelected a:after {
    background: #005F1E; }

.fsTabs .fsTabsNav li a:hover {
  color: #005F1E; }
  .fsTabs .fsTabsNav li a:hover:after {
    background: #005F1E; }

.fsAccount .fsLoginMainView .fsLoginSubmit:hover {
  background: #005F1E; }

#fsFooter .address-container {
  background: #005F1E; }

html {
  background-color: #002F0F; }

body:not(.fsComposeMode) .info-container {
  background-image: none !important;
  background-color: #002F0F; }
  body:not(.fsComposeMode) .info-container:before {
    content: none; }

.nav-main .fsNavLevel1 > li:hover > a {
  background: #002F0F; }

body:not(.fsComposeMode) .home-news header .fsElementHeaderContent a:hover {
  color: #002F0F !important; }

body:not(.fsComposeMode) .home-events header .fsElementHeaderContent a:hover {
  color: #002F0F !important; }

.fsAccordion .fsPanel.fsStateOpen > header, .fsTabs .fsPanel.fsStateOpen > header {
  background-color: #002F0F !important; }

.fsMenu .nav-mobile .fsNavLevel1 > li.currentExpand > a {
  background: #002F0F !important; }
