@charset "UTF-8";
 /**
 *
 * Epiphany School - 2021-workorder
 * @link https://www.epiphanyschool.org
 * Site Template : newclientcustom
 * Built By: Stephen Petrus
 * Project Manager: David Lopes
 * Designer: Brittany Murray
 * ==== Git Info ====
 * Branch Name: clients/epiphanyschoolorg
 * Build version: 3.2.6
 * Git Tag: Composer-Build-2.0-461-g5c65ec24c2
 * Last build by: JonB7
 *
 **/

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

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

/*
 * Nivo Lightbox v1.2.0
 * http://dev7studios.com/nivo-lightbox
 *
 * Copyright 2013, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
.nivo-lightbox-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99998;
  overflow: hidden;
  visibility: hidden;
  background: rgba(26, 28, 31, 0.9);
  opacity: 0;
  box-sizing: border-box; }
  .nivo-lightbox-overlay.nivo-lightbox-open {
    visibility: visible;
    opacity: 1; }

.nivo-lightbox-wrap {
  width: 100%;
  max-width: 1030px;
  padding: 0 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: auto;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }
  @media (min-width: 550px) {
    .nivo-lightbox-wrap {
      padding: 0 60px; } }

.nivo-lightbox-content {
  width: 100%;
  height: 100%;
  position: relative; }
  .nivo-lightbox-content:before {
    content: '';
    display: block;
    padding-bottom: 56.25%; }
  .nivo-lightbox-content > iframe {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }

.nivo-lightbox-title-wrap {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 99999;
  text-align: center; }

.nivo-lightbox-nav {
  display: none; }

.nivo-lightbox-prev {
  position: absolute;
  top: 50%;
  left: 0; }

.nivo-lightbox-next {
  position: absolute;
  top: 50%;
  right: 0; }

.nivo-lightbox-close {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border-radius: 0;
  position: absolute;
  top: -10px;
  left: auto;
  right: 10px;
  bottom: auto;
  color: transparent;
  font-size: 1px;
  text-indent: -9999em;
  background: none;
  overflow: visible; }
  @media (max-width: 549px) {
    .nivo-lightbox-close {
      display: none; } }
  .nivo-lightbox-close:before, .nivo-lightbox-close:after {
    content: '';
    display: block;
    width: 2px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #ffffff; }
  .nivo-lightbox-close:before {
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg); }
  .nivo-lightbox-close:after {
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg); }

.nivo-lightbox-image {
  text-align: center; }
  .nivo-lightbox-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    vertical-align: middle; }

.nivo-lightbox-content iframe {
  width: 100%;
  height: 100%; }

.nivo-lightbox-inline,
.nivo-lightbox-ajax {
  max-height: 100%;
  overflow: auto;
  box-sizing: border-box; }

.nivo-lightbox-error {
  display: table;
  width: 100%;
  height: 100%;
  color: #fff;
  text-shadow: 0 1px 1px #000;
  text-align: center; }
  .nivo-lightbox-error p {
    display: table-cell;
    vertical-align: middle; }

/*! 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
		}

		.parent {
				@include drop(".dropdown", true, ".drop-class"); //this makes .dropdown drop when .parent has class .drop-class, it was also have a transition
		}

*/
/*! helpers - typography v0.0.1 */
/*! content - html v0.0.1 */
@font-face {
  font-family: 'IcoMoon';
  src: url("../fonts//icomoon.eot");
  src: url("../fonts//icomoon.eot?#iefix") format("embedded-opentype"), url("../fonts//icomoon.woff2") format("woff2"), url("../fonts//icomoon.woff") format("woff"), url("../fonts//icomoon.ttf") format("truetype"), url("../fonts//icomoon.svg#IcoMoon") format("svg");
  font-weight: 400;
  font-style: normal; }

.fsAthleticsEvent.fsTable thead th, .fsRosterName, .fsTitle, .fsFacebookFrom, .fsVimeoTitle, .fsYoutubeTitle {
  margin: 0;
  font-weight: bold;
  font-size: 1.1em; }

h1 {
  color: #231f20;
  margin-top: 0;
  font-weight: bold;
  color: #ee3224;
  font-size: 36px;
  line-height: 40px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 17px; }

h2 {
  color: #231f20;
  margin-top: 0;
  font-weight: bold;
  font-size: 32px;
  line-height: 40px;
  font-weight: 900;
  margin-bottom: 17px; }

h3 {
  color: #231f20;
  margin-top: 0;
  font-weight: bold;
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 17px; }

h4 {
  color: #231f20;
  margin-top: 0;
  font-weight: bold;
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 17px; }

h5 {
  color: #231f20;
  margin-top: 0;
  font-weight: bold;
  font-size: 17px;
  line-height: 26px;
  margin-bottom: 17px; }

h6 {
  color: #231f20;
  margin-top: 0;
  font-weight: bold;
  color: #5e7075;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 17px; }

p {
  margin: 0 0 20px; }

hr {
  margin: 0 auto 20px; }

a {
  text-decoration: none;
  color: #00b2b0;
  transition: background .3s, color .3s; }
  a:hover {
    color: #06347a; }

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

table.styled {
  margin-bottom: 1.25em;
  width: 100%; }
  table.styled th,
  table.styled td {
    vertical-align: top;
    border-bottom: 1px solid #fff; }
  table.styled th {
    padding: 1.25em;
    text-align: left;
    background: #363636;
    color: #fff; }
  table.styled td {
    padding: 0.625em 1.25em;
    background: rgba(0, 0, 0, 0.05); }
    table.styled tr:nth-of-type(odd) td {
      background-color: rgba(0, 0, 0, 0.1); }

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

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

.fsDialogContent {
  max-height: 80vh; }

/*! content - buttons v0.0.1 */
.fsLoadMoreButton {
  display: inline-block;
  min-width: 200px;
  margin: 0 0 20px;
  padding: 7px 20px 6px;
  outline: 0;
  border: 2px solid #1c1c1c;
  border-radius: 200px;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-align: center;
  font-family: "semplicitapro", sans-serif;
  font-weight: 700;
  background-color: #1c1c1c;
  transition: all 0.3s ease;
  margin: 20px 0 20px;
  text-shadow: none;
  min-height: 42px; }
  .fsLoadMoreButton:hover {
    border: 2px solid #e5e5e5;
    color: #1c1c1c;
    background: transparent; }
  .fsLoadMoreButton.fs_style_36 {
    padding: 26px 45px 23px;
    border-radius: 6px;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.04em;
    font-family: "semplicitapro", sans-serif;
    font-weight: bold;
    text-align: center; }
    .fsLoadMoreButton.fs_style_36 em {
      display: block;
      font-size: 14px;
      font-style: normal;
      text-transform: lowercase;
      font-family: "fira-sans", sans-serif;
      letter-spacing: 0;
      font-weight: normal; }

.fs_style_30 {
  display: inline-block;
  min-width: 200px;
  margin: 0 0 20px;
  padding: 7px 20px 6px;
  outline: 0;
  border: 2px solid #fdb913;
  border-radius: 200px;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-align: center;
  font-family: "semplicitapro", sans-serif;
  font-weight: 700;
  background-color: #fdb913;
  transition: all 0.3s ease; }
  .fs_style_30:hover {
    border: 2px solid #e5e5e5;
    color: #fdb913;
    background: transparent; }
  .fs_style_30.fs_style_36 {
    padding: 26px 45px 23px;
    border-radius: 6px;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.04em;
    font-family: "semplicitapro", sans-serif;
    font-weight: bold;
    text-align: center; }
    .fs_style_30.fs_style_36 em {
      display: block;
      font-size: 14px;
      font-style: normal;
      text-transform: lowercase;
      font-family: "fira-sans", sans-serif;
      letter-spacing: 0;
      font-weight: normal; }

.fs_style_31 {
  display: inline-block;
  min-width: 200px;
  margin: 0 0 20px;
  padding: 7px 20px 6px;
  outline: 0;
  border: 2px solid #ee3224;
  border-radius: 200px;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-align: center;
  font-family: "semplicitapro", sans-serif;
  font-weight: 700;
  background-color: #ee3224;
  transition: all 0.3s ease; }
  .fs_style_31:hover {
    border: 2px solid #e5e5e5;
    color: #ee3224;
    background: transparent; }
  .fs_style_31.fs_style_36 {
    padding: 26px 45px 23px;
    border-radius: 6px;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.04em;
    font-family: "semplicitapro", sans-serif;
    font-weight: bold;
    text-align: center; }
    .fs_style_31.fs_style_36 em {
      display: block;
      font-size: 14px;
      font-style: normal;
      text-transform: lowercase;
      font-family: "fira-sans", sans-serif;
      letter-spacing: 0;
      font-weight: normal; }
  .fs_style_31.family-portal {
    position: relative;
    bottom: 6px; }

.fs_style_32 {
  display: inline-block;
  min-width: 200px;
  margin: 0 0 20px;
  padding: 7px 20px 6px;
  outline: 0;
  border: 2px solid #06347a;
  border-radius: 200px;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-align: center;
  font-family: "semplicitapro", sans-serif;
  font-weight: 700;
  background-color: #06347a;
  transition: all 0.3s ease; }
  .fs_style_32:hover {
    border: 2px solid #e5e5e5;
    color: #06347a;
    background: transparent; }
  .fs_style_32.fs_style_36 {
    padding: 26px 45px 23px;
    border-radius: 6px;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.04em;
    font-family: "semplicitapro", sans-serif;
    font-weight: bold;
    text-align: center; }
    .fs_style_32.fs_style_36 em {
      display: block;
      font-size: 14px;
      font-style: normal;
      text-transform: lowercase;
      font-family: "fira-sans", sans-serif;
      letter-spacing: 0;
      font-weight: normal; }

.fs_style_33 {
  display: inline-block;
  min-width: 200px;
  margin: 0 0 20px;
  padding: 7px 20px 6px;
  outline: 0;
  border: 2px solid #bfd730;
  border-radius: 200px;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-align: center;
  font-family: "semplicitapro", sans-serif;
  font-weight: 700;
  background-color: #bfd730;
  transition: all 0.3s ease; }
  .fs_style_33:hover {
    border: 2px solid #e5e5e5;
    color: #bfd730;
    background: transparent; }
  .fs_style_33.fs_style_36 {
    padding: 26px 45px 23px;
    border-radius: 6px;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.04em;
    font-family: "semplicitapro", sans-serif;
    font-weight: bold;
    text-align: center; }
    .fs_style_33.fs_style_36 em {
      display: block;
      font-size: 14px;
      font-style: normal;
      text-transform: lowercase;
      font-family: "fira-sans", sans-serif;
      letter-spacing: 0;
      font-weight: normal; }

.fs_style_34 {
  display: inline-block;
  min-width: 200px;
  margin: 0 0 20px;
  padding: 7px 20px 6px;
  outline: 0;
  border: 2px solid #b4babf;
  border-radius: 200px;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-align: center;
  font-family: "semplicitapro", sans-serif;
  font-weight: 700;
  background-color: #b4babf;
  transition: all 0.3s ease; }
  .fs_style_34:hover {
    border: 2px solid #e5e5e5;
    color: #b4babf;
    background: transparent; }
  .fs_style_34.fs_style_36 {
    padding: 26px 45px 23px;
    border-radius: 6px;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.04em;
    font-family: "semplicitapro", sans-serif;
    font-weight: bold;
    text-align: center; }
    .fs_style_34.fs_style_36 em {
      display: block;
      font-size: 14px;
      font-style: normal;
      text-transform: lowercase;
      font-family: "fira-sans", sans-serif;
      letter-spacing: 0;
      font-weight: normal; }

.fs_style_35 {
  display: inline-block;
  min-width: 200px;
  margin: 0 0 20px;
  padding: 7px 20px 6px;
  outline: 0;
  border: 2px solid #b4babf;
  border-radius: 200px;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-align: center;
  font-family: "semplicitapro", sans-serif;
  font-weight: 700;
  background-color: #b4babf;
  transition: all 0.3s ease;
  color: #231f20;
  border: 2px solid #e5e5e5;
  background-color: #ffffff; }
  .fs_style_35:hover {
    border: 2px solid #e5e5e5;
    color: #b4babf;
    background: transparent; }
  .fs_style_35.fs_style_36 {
    padding: 26px 45px 23px;
    border-radius: 6px;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.04em;
    font-family: "semplicitapro", sans-serif;
    font-weight: bold;
    text-align: center; }
    .fs_style_35.fs_style_36 em {
      display: block;
      font-size: 14px;
      font-style: normal;
      text-transform: lowercase;
      font-family: "fira-sans", sans-serif;
      letter-spacing: 0;
      font-weight: normal; }
  .fs_style_35:hover {
    color: #ffffff;
    border: 2px solid #b4babf;
    background-color: #b4babf; }

.fs_style_37 {
  width: 100%;
  max-width: 100%; }

.image-button {
  position: relative;
  background-size: cover;
  background-position: 50% 50%; }
  .image-button .fsResourceLink {
    display: block;
    height: 100%;
    width: 100%;
    position: relative; }
  .image-button figcaption {
    font-family: "Droid Serif", Georgia, serif;
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    font-weight: normal;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(6, 52, 122, 0.7);
    transition: all .3s;
    padding-right: 1.25em;
    padding-left: 1.25em;
    opacity: 0; }
    @media (min-width: 1000px) {
      .image-button figcaption {
        padding-right: 30px;
        padding-left: 30px; } }
  .image-button:hover figcaption, .image-button:focus figcaption {
    background: rgba(6, 52, 122, 0.7);
    opacity: 1; }
  .image-button picture {
    visibility: hidden; }
  .image-button img {
    width: 100%; }

/*! content - style manger v0.0.1 */
.lead-in,
.fs_style_24 {
  color: #231f20;
  font-size: 21px;
  line-height: 32px; }

blockquote {
  position: relative;
  margin: 20px 0;
  color: #06347a;
  font-size: 21px;
  line-height: 32px;
  text-align: center; }

cite,
.fs_style_26 {
  display: block;
  margin: 0 0 20px;
  color: #a3a8ad;
  font-size: 11px;
  font-weight: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase; }

.fs_style_27,
.fs_style_28,
.fs_style_29 {
  color: #00b2b0;
  font-size: 21px;
  line-height: 32px;
  font-weight: 500; }

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

.fs_style_29 {
  float: right;
  margin-left: 20px; }
  @media (min-width: 500px) {
    .fs_style_29 {
      width: 50%; } }

table.fs_style_38, table.fs_style_39 {
  margin-bottom: 20px;
  width: 100%; }
  table.fs_style_38 td, table.fs_style_39 td {
    padding: 8px 22px 8px;
    border: 0;
    vertical-align: top; }

table.fs_style_38 tr:nth-of-type(odd) td {
  background-color: #f2f2f2; }

table.fs_style_39 tr:nth-of-type(even) td {
  background-color: #f2f2f2; }

table.fs_style_39 tr:first-of-type td {
  padding-top: 9px;
  color: #ffffff;
  background-color: #ee3224; }
  table.fs_style_39 tr:first-of-type td:first-of-type {
    border-radius: 7px 0 0 0; }
  table.fs_style_39 tr:first-of-type td:last-of-type {
    border-radius: 0 7px 0 0; }

/*! enhancements - animated-graph v0.0.1 */
.animated-graph {
  background-repeat: no-repeat;
  margin-bottom: 20px; }
  .animated-graph .fsGraph {
    width: 100%;
    max-width: 213px;
    color: #ffffff;
    line-height: 1;
    background-color: #fdb913;
    background-position: center center; }
  .animated-graph .fsGraphValues {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: right; }
    .animated-graph .fsGraphValues div {
      width: 100%;
      left: 0;
      font-weight: bold;
      box-sizing: border-box; }
  .animated-graph .fsGraphSizer {
    max-width: 213px;
    padding: 0;
    margin: 0 auto; }
    .animated-graph .fsGraphSizer:before {
      width: 100%;
      content: '';
      display: block;
      padding-bottom: 110.79812%; }
  .animated-graph .fsGraphGoal {
    position: absolute;
    top: 0;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
  .animated-graph .fsGraphQuarters {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0; }
    .animated-graph .fsGraphQuarters span {
      position: absolute;
      right: 0;
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
      .animated-graph .fsGraphQuarters span:nth-of-type(1) {
        top: 25%; }
      .animated-graph .fsGraphQuarters span:nth-of-type(2) {
        top: 50%; }
      .animated-graph .fsGraphQuarters span:nth-of-type(3) {
        top: 75%; }
  .animated-graph .fsGraphCurrent {
    height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    border-bottom: 2px dashed #ee3224;
    /* inherits text color */
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0; }
  .animated-graph .fsGraphOverhalf .fsGraphCurrent {
    border-bottom: 0;
    border-top: 1px solid; }
  .animated-graph .fsGraphLowValue .fsGraphCurrent {
    border-bottom: 1px dotted;
    bottom: 1.25em !important; }
  .animated-graph .fsGraphOverlap .fsGraphCurrent {
    border-bottom: 0;
    border-top: 1px dotted;
    top: 1.5em; }
  .animated-graph .fsGraphStart {
    position: absolute;
    width: 100%;
    bottom: 0;
    -ms-transform: translateY(50%);
    transform: translateY(50%); }
  .animated-graph .fsGraphOverlay {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; }
  .animated-graph .fsGraphBar {
    width: 100%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: right;
    opacity: 1; }
    .animated-graph .fsGraphBar:before {
      content: '';
      display: block;
      position: absolute;
      top: 1px;
      left: 0;
      right: 0;
      bottom: 1px;
      background-color: #ffffff; }
  .animated-graph .fsGraphMask {
    width: 100%;
    height: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    bottom: 0; }
  .animated-graph .fsGraphFill {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    background-color: #e02424; }
  .animated-graph .css3 .fsGraphFill {
    background-image: -moz-linear-gradient(0% 0% 0deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 60%), -moz-linear-gradient(100% 0% 180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 60%), -moz-linear-gradient(0% 0% 0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 100%); }
  .animated-graph .fsGraphOver {
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    background-color: #FFFFFF; }
  .animated-graph .css3 .fsGraphOver {
    background-image: -moz-linear-gradient(0% 0% 0deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 60%), -moz-linear-gradient(100% 0% 180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 60%), -moz-linear-gradient(0% 0% 0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 100%); }

.graph-giving {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  padding: 44px 0 6px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-color: #fdb913; }
  .graph-giving > header {
    -ms-flex-order: 2;
    order: 2;
    width: 100%; }
    .graph-giving > header > .fsElementTitle {
      margin: 0;
      padding: 20px;
      color: #ffffff;
      font-size: 20px;
      line-height: 24px;
      text-transform: uppercase;
      text-align: center;
      letter-spacing: 0.04em; }
  .graph-giving > .fsElementContent {
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    background-color: #fdb913; }
  .graph-giving > footer {
    -ms-flex-order: 3;
    order: 3; }
  .graph-giving .fsGraph {
    margin: 0 auto; }
  .graph-giving .fsGraphBar {
    max-width: 213px; }
  .graph-giving .fsGraphGoal {
    padding-right: 14px; }
  .graph-giving .fsGraphStart {
    display: none; }
  .graph-giving .fsGraphQuarters span {
    right: 14px; }
  .graph-giving .fsGraphCurrent {
    max-width: 213px;
    right: auto;
    left: 50% !important;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
  .graph-giving .fsGraphOverlay {
    max-width: 213px;
    box-shadow: 0 0 1px 1px #fdb913; }
    .graph-giving .fsGraphOverlay:before, .graph-giving .fsGraphOverlay:after {
      display: block;
      content: '';
      width: 3px;
      position: absolute;
      top: 0;
      bottom: 0;
      background-color: #fdb913; }
    .graph-giving .fsGraphOverlay:before {
      left: -1px; }
    .graph-giving .fsGraphOverlay:after {
      right: -1px; }

/*! enhancements - custom-content-slider v0.0.1 */
.custom-photo-slider.fsMedia {
  margin-bottom: 50px !important;
  padding-bottom: 24px; }
  body:not(.fsComposeMode) .custom-photo-slider.fsMedia {
    max-width: 0vw;
    margin: 0 auto; }
    body:not(.fsComposeMode) .custom-photo-slider.fsMedia > header,
    body:not(.fsComposeMode) .custom-photo-slider.fsMedia > .fsElementContent,
    body:not(.fsComposeMode) .custom-photo-slider.fsMedia > footer {
      margin-left: -50vw;
      margin-right: -50vw;
      width: 100vw; }
    body:not(.fsComposeMode) .custom-photo-slider.fsMedia > .fsElementContent {
      padding: 0 20px; }
      body:not(.fsComposeMode) .custom-photo-slider.fsMedia > .fsElementContent > .fsMediaContainer {
        position: relative;
        margin: 0 auto;
        max-width: 73.75em;
        max-width: 73.75rem; }
  .custom-photo-slider.fsMedia > header > .fsElementTitle {
    color: #231f20;
    margin-top: 0;
    font-weight: bold;
    color: #ee3224;
    font-size: 36px;
    line-height: 40px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 17px;
    position: relative;
    margin: 0 auto;
    max-width: 73.75em;
    max-width: 73.75rem;
    text-align: center; }
  .custom-photo-slider.fsMedia > header > .fsElementHeaderContent {
    position: relative;
    margin: 0 auto;
    max-width: 73.75em;
    max-width: 73.75rem; }
  @media (max-width: 1199px) {
    .custom-photo-slider.fsMedia > header {
      padding: 0 20px; } }
  .custom-photo-slider.fsMedia > .fsElementContent {
    background-color: #00b2b0;
    text-align: center; }
    .custom-photo-slider.fsMedia > .fsElementContent > .fsMediaContainer {
      padding-top: 60px;
      padding-bottom: 76px;
      overflow: visible; }
      @media (min-width: 550px) {
        .custom-photo-slider.fsMedia > .fsElementContent > .fsMediaContainer {
          padding-bottom: 60px; } }
      @media (min-width: 550px) {
        .custom-photo-slider.fsMedia > .fsElementContent > .fsMediaContainer > .slick-list {
          padding-left: 15%;
          padding-right: 15%; } }
      @media (min-width: 700px) {
        .custom-photo-slider.fsMedia > .fsElementContent > .fsMediaContainer > .slick-list {
          padding-left: 100px;
          padding-right: 100px; } }
  .custom-photo-slider.fsMedia article {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap; }
  .custom-photo-slider.fsMedia .image-wrapper {
    zoom: 1;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px; }
    .custom-photo-slider.fsMedia .image-wrapper:after {
      display: table;
      clear: both;
      content: ''; }
    @media (min-width: 900px) {
      .custom-photo-slider.fsMedia .image-wrapper {
        padding: 0; } }
    @media (min-width: 900px) {
      .custom-photo-slider.fsMedia .image-wrapper {
        -ms-flex-order: 2;
        order: 2;
        width: 38.77551%; } }
  .custom-photo-slider.fsMedia .slide-image {
    float: right;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    background-size: cover;
    background-position: center center; }
    @media (min-width: 550px) {
      .custom-photo-slider.fsMedia .slide-image {
        position: relative;
        z-index: 2; } }
    .custom-photo-slider.fsMedia .slide-image:before {
      content: '';
      display: block;
      width: 100%;
      padding-bottom: 100%; }
  .custom-photo-slider.fsMedia .slideshow-arrows {
    width: 76px;
    height: 40px;
    position: absolute;
    left: 50%;
    bottom: 25px;
    -ms-transform: translate(-50%);
    transform: translate(-50%); }
    @media (min-width: 550px) {
      .custom-photo-slider.fsMedia .slideshow-arrows {
        width: auto;
        height: auto;
        position: static;
        -ms-transform: none;
        transform: none; } }
  .custom-photo-slider.fsMedia .slick-arrow {
    width: 36px;
    height: 36px;
    cursor: pointer; }
    .custom-photo-slider.fsMedia .slick-arrow:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none;
      display: block;
      width: auto;
      height: auto;
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      color: #ffffff;
      font-size: 36px;
      line-height: 1;
      transition: color 0.3s ease;
      text-shadow: none;
      box-shadow: none; }
  @media (min-width: 550px) {
    .custom-photo-slider.fsMedia .slick-prev {
      left: 4.5%; } }
  @media (min-width: 700px) {
    .custom-photo-slider.fsMedia .slick-prev {
      left: 30px; } }
  .custom-photo-slider.fsMedia .slick-prev:before {
    content: '\e904'; }
  @media (min-width: 550px) {
    .custom-photo-slider.fsMedia .slick-next {
      right: 4.5%; } }
  @media (min-width: 700px) {
    .custom-photo-slider.fsMedia .slick-next {
      right: 30px; } }
  .custom-photo-slider.fsMedia .slick-next:before {
    content: '\e905'; }
  .custom-photo-slider.fsMedia .fsMediaCustomPlayer .caption-wrapper {
    -ms-flex-order: 2;
    order: 2;
    padding-top: 31px;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    text-align: left;
    background: none; }
    @media (min-width: 900px) {
      .custom-photo-slider.fsMedia .fsMediaCustomPlayer .caption-wrapper {
        -ms-flex-order: 1;
        order: 1;
        width: 61.22449%;
        padding-top: 5px;
        padding-right: 30px; } }
    @media (min-width: 1200px) {
      .custom-photo-slider.fsMedia .fsMediaCustomPlayer .caption-wrapper {
        padding-top: 25px;
        padding-right: 75px; } }
    .custom-photo-slider.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-title {
      padding-bottom: 3px;
      color: rgba(255, 255, 255, 0.5);
      font-size: 13px;
      line-height: 13px;
      letter-spacing: 0.04em;
      font-weight: bold;
      font-family: "semplicitapro", sans-serif;
      text-transform: uppercase; }
    .custom-photo-slider.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-desc {
      display: block;
      color: #ffffff;
      font-size: 16px;
      line-height: 28px; }
      .custom-photo-slider.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-desc h1 {
        margin-bottom: 9px;
        color: #ffffff;
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -0.01em;
        font-weight: 900;
        text-transform: none; }
        @media (min-width: 550px) {
          .custom-photo-slider.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-desc h1 {
            font-size: 36px;
            line-height: 44px; } }
      .custom-photo-slider.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-desc h2, .custom-photo-slider.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-desc h3, .custom-photo-slider.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-desc h4, .custom-photo-slider.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-desc h5, .custom-photo-slider.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-desc h6 {
        margin-bottom: 11px;
        color: #ffffff;
        font-size: 26px;
        line-height: 36px;
        text-transform: none; }
      .custom-photo-slider.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-desc p {
        margin-bottom: 29px; }
      .custom-photo-slider.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-desc > *:last-child {
        margin-bottom: 0; }
    .custom-photo-slider.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-title + .caption-desc {
      padding-top: 12px; }
      @media (min-width: 550px) {
        .custom-photo-slider.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-title + .caption-desc {
          padding-top: 6px; } }
  .custom-photo-slider.fsMedia .slideshow-index {
    position: relative;
    margin: 0 auto;
    max-width: 73.75em;
    max-width: 73.75rem;
    margin-top: -9px;
    text-align: center; }
    .custom-photo-slider.fsMedia .slideshow-index a {
      padding-top: 22px;
      padding-left: 5px;
      padding-right: 5px;
      color: #999999;
      font-size: 13px;
      line-height: 13px;
      letter-spacing: 0.04em;
      font-weight: bold;
      font-family: "semplicitapro", sans-serif;
      text-transform: uppercase;
      text-align: center;
      position: relative;
      cursor: pointer; }
      @media (min-width: 900px) {
        .custom-photo-slider.fsMedia .slideshow-index a {
          width: auto !important;
          min-width: 115px; } }
      .custom-photo-slider.fsMedia .slideshow-index a.slick-current {
        color: #363636; }
        .custom-photo-slider.fsMedia .slideshow-index a.slick-current:after {
          background-color: #ee3224; }
      .custom-photo-slider.fsMedia .slideshow-index a:after {
        content: '';
        display: block;
        width: 18px;
        height: 18px;
        border-radius: 20px;
        border: 5px solid #ffffff;
        position: absolute;
        top: 0;
        left: 50%;
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        background-color: #b4babf;
        transition: background 0.3s ease; }
      .custom-photo-slider.fsMedia .slideshow-index a:hover {
        color: #363636; }
    @media (min-width: 900px) {
      .custom-photo-slider.fsMedia .slideshow-index .slick-list {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: row;
        flex-flow: row;
        -ms-flex-pack: center;
        justify-content: center;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: visible; } }
    .custom-photo-slider.fsMedia .slideshow-index .slick-track {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: start;
      align-items: flex-start; }
      @media (min-width: 900px) {
        .custom-photo-slider.fsMedia .slideshow-index .slick-track {
          width: auto !important;
          -ms-transform: none !important;
          transform: none !important; } }
  .custom-photo-slider.fsMedia.photo-slider-top {
    padding-bottom: 0;
    padding-top: 25px; }
    .custom-photo-slider.fsMedia.photo-slider-top .slideshow-index {
      margin-top: 0;
      margin-bottom: -10px; }
      @media (min-width: 900px) {
        .custom-photo-slider.fsMedia.photo-slider-top .slideshow-index {
          margin-bottom: -18px; } }
      .custom-photo-slider.fsMedia.photo-slider-top .slideshow-index .slick-track {
        -ms-flex-align: end;
        align-items: flex-end; }
      @media (min-width: 900px) {
        .custom-photo-slider.fsMedia.photo-slider-top .slideshow-index .slick-list {
          display: inline-block !important; } }
    .custom-photo-slider.fsMedia.photo-slider-top a {
      padding-top: 0;
      padding-bottom: 22px; }
      .custom-photo-slider.fsMedia.photo-slider-top a:after {
        top: auto;
        bottom: 0; }

.custom-grid .fsListItems {
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0; }
  .custom-grid .fsListItems article {
    background-color: #b7e2e3;
    padding: 20px; }
  .custom-grid .fsListItems .fsCategory {
    color: #231f20;
    margin-top: 0;
    font-weight: bold;
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 17px; }
  .custom-grid .fsListItems .fsReadMoreLink {
    display: inline-block;
    min-width: 200px;
    margin: 0 0 20px;
    padding: 7px 20px 6px;
    outline: 0;
    border: 2px solid #00b2b0;
    border-radius: 200px;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    text-align: center;
    font-family: "semplicitapro", sans-serif;
    font-weight: 700;
    background-color: #00b2b0;
    transition: all 0.3s ease;
    color: #fff; }
    .custom-grid .fsListItems .fsReadMoreLink:hover {
      border: 2px solid #e5e5e5;
      color: #00b2b0;
      background: transparent; }
    .custom-grid .fsListItems .fsReadMoreLink.fs_style_36 {
      padding: 26px 45px 23px;
      border-radius: 6px;
      font-size: 17px;
      line-height: 24px;
      letter-spacing: 0.04em;
      font-family: "semplicitapro", sans-serif;
      font-weight: bold;
      text-align: center; }
      .custom-grid .fsListItems .fsReadMoreLink.fs_style_36 em {
        display: block;
        font-size: 14px;
        font-style: normal;
        text-transform: lowercase;
        font-family: "fira-sans", sans-serif;
        letter-spacing: 0;
        font-weight: normal; }
    .custom-grid .fsListItems .fsReadMoreLink:hover {
      background-color: #fff;
      border-color: #fff;
      color: #00b2b0; }
  @media (min-width: 600px) {
    .custom-grid .fsListItems.fsStyleTwoColumns article, .custom-grid .fsListItems.fsStyleThreeColumns article, .custom-grid .fsListItems.fsStyleFourColumns article {
      width: 48.5%; } }
  @media (min-width: 800px) {
    .custom-grid .fsListItems.fsStyleThreeColumns article, .custom-grid .fsListItems.fsStyleFourColumns article {
      width: 32%; } }
  @media (min-width: 1000px) {
    .custom-grid .fsListItems.fsStyleFourColumns article {
      width: 23.5%; } }

/*! enhancements - infographic v0.0.1 */
.infographic.fsContainer > header,
.infographic.fsSharedContainer > .fsContainer > header {
  margin-bottom: 40px; }
  .infographic.fsContainer > header > .fsElementTitle,
  .infographic.fsSharedContainer > .fsContainer > header > .fsElementTitle {
    color: #231f20;
    margin-top: 0;
    font-weight: bold;
    color: #ee3224;
    font-size: 36px;
    line-height: 40px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 17px;
    text-align: center; }

.infographic.fsContainer > .fsElementContent,
.infographic.fsSharedContainer > .fsContainer > .fsElementContent {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap; }

.infographic .fsContent {
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
  opacity: 0; }
  .infographic .fsContent.element-loaded {
    opacity: 1; }
  .fsComposeMode .infographic .fsContent {
    opacity: 1; }
  @media (min-width: 700px) {
    .infographic .fsContent {
      width: 50%; } }
  @media (min-width: 900px) {
    .infographic .fsContent {
      width: 25%; } }
  .infographic .fsContent .icon-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 65px;
    max-width: 80px;
    margin: 0 auto 17px; }
    .infographic .fsContent .icon-wrapper img {
      display: inline-block;
      max-width: 100%; }
  .infographic .fsContent > header > .fsElementTitle {
    margin-bottom: 14px;
    color: #231f20;
    font-size: 36px;
    line-height: 25px;
    letter-spacing: -0.01em; }
  .infographic .fsContent > .fsElementContent {
    font-size: 14px;
    line-height: 25px; }

/*! enhancements - post grid */
.custom-post-grid.fsPostElement.fsGrid {
  background-repeat: no-repeat;
  background-size: 0 0; }
  .custom-post-grid.fsPostElement.fsGrid .fsListItems {
    margin: -10px;
    -moz-column-gap: 0;
    column-gap: 0;
    width: auto; }
    @media (min-width: 600px) {
      .custom-post-grid.fsPostElement.fsGrid .fsListItems.fsStyleTwoColumns > article,
      .custom-post-grid.fsPostElement.fsGrid .fsListItems.fsStyleThreeColumns > article,
      .custom-post-grid.fsPostElement.fsGrid .fsListItems.fsStyleFourColumns > article {
        width: calc(50% - 20px); } }
    @media (min-width: 800px) {
      .custom-post-grid.fsPostElement.fsGrid .fsListItems.fsStyleThreeColumns > article,
      .custom-post-grid.fsPostElement.fsGrid .fsListItems.fsStyleFourColumns > article {
        width: calc(33.33% - 20px); } }
    @media (min-width: 1000px) {
      .custom-post-grid.fsPostElement.fsGrid .fsListItems.fsStyleFourColumns > article {
        width: calc(25% - 20px); } }
  .custom-post-grid.fsPostElement.fsGrid article {
    width: calc(100% - 20px);
    margin: 10px;
    padding: 0 0 calc(47.5% - 10px);
    border: 0;
    position: relative; }
    @media (min-width: 600px) {
      .custom-post-grid.fsPostElement.fsGrid article {
        padding: 0; } }
    .custom-post-grid.fsPostElement.fsGrid article:hover, .custom-post-grid.fsPostElement.fsGrid article:focus, .custom-post-grid.fsPostElement.fsGrid article:focus-within {
      padding-bottom: 0; }
      .custom-post-grid.fsPostElement.fsGrid article:hover > .fsTitle, .custom-post-grid.fsPostElement.fsGrid article:focus > .fsTitle, .custom-post-grid.fsPostElement.fsGrid article:focus-within > .fsTitle {
        opacity: 0;
        visibility: hidden; }
      .custom-post-grid.fsPostElement.fsGrid article:hover .overlay, .custom-post-grid.fsPostElement.fsGrid article:focus .overlay, .custom-post-grid.fsPostElement.fsGrid article:focus-within .overlay {
        display: -ms-flexbox;
        display: flex; }
        @media (min-width: 600px) {
          .custom-post-grid.fsPostElement.fsGrid article:hover .overlay, .custom-post-grid.fsPostElement.fsGrid article:focus .overlay, .custom-post-grid.fsPostElement.fsGrid article:focus-within .overlay {
            opacity: 1; } }
    .custom-post-grid.fsPostElement.fsGrid article:before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 17.19%, rgba(0, 0, 0, 0.7) 100%); }
    .custom-post-grid.fsPostElement.fsGrid article .fsThumbnail {
      max-width: 100%;
      border-radius: 0;
      margin: 0;
      background-size: cover;
      background-position: center;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
      @media (min-width: 600px) {
        .custom-post-grid.fsPostElement.fsGrid article .fsThumbnail {
          position: static;
          width: auto;
          height: auto; } }
      .custom-post-grid.fsPostElement.fsGrid article .fsThumbnail img {
        opacity: 0;
        height: 0;
        width: 100%;
        padding-bottom: 47.5%; }
        @media (min-width: 600px) {
          .custom-post-grid.fsPostElement.fsGrid article .fsThumbnail img {
            padding-bottom: 87.36842%; } }
      .custom-post-grid.fsPostElement.fsGrid article .fsThumbnail .fsCroppedImage {
        padding-bottom: 47.5%; }
        @media (min-width: 600px) {
          .custom-post-grid.fsPostElement.fsGrid article .fsThumbnail .fsCroppedImage {
            padding-bottom: 87.36842%; } }
    .custom-post-grid.fsPostElement.fsGrid article > .fsTitle {
      position: absolute;
      bottom: 22px;
      left: 20px;
      width: calc(100% - 40px);
      text-align: center;
      color: #FFF;
      font-size: 1.25rem;
      line-height: 1.2;
      padding: 0;
      z-index: 2;
      letter-spacing: 0;
      font-weight: 700;
      transition: 0.3s all; }
      @media (min-width: 600px) {
        .custom-post-grid.fsPostElement.fsGrid article > .fsTitle {
          bottom: 24px;
          left: 24px;
          width: calc(100% - 48px); } }
      .custom-post-grid.fsPostElement.fsGrid article > .fsTitle > a {
        color: #FFF; }
        .custom-post-grid.fsPostElement.fsGrid article > .fsTitle > a:hover, .custom-post-grid.fsPostElement.fsGrid article > .fsTitle > a:focus {
          text-decoration: underline; }
    .custom-post-grid.fsPostElement.fsGrid article .overlay {
      color: #FFF;
      background-color: rgba(0, 0, 0, 0.66);
      transition: 0.3s all;
      display: none;
      -ms-flex-direction: column;
      flex-direction: column;
      -ms-flex-pack: center;
      justify-content: center;
      padding: 25px;
      text-align: center;
      font-size: 0.9375rem;
      line-height: 1.46667;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
      letter-spacing: 0.01em;
      position: relative;
      z-index: 3; }
      @media (min-width: 600px) {
        .custom-post-grid.fsPostElement.fsGrid article .overlay {
          display: -ms-flexbox;
          display: flex;
          opacity: 0;
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%; } }
      .custom-post-grid.fsPostElement.fsGrid article .overlay .fsTitle {
        color: #FFF;
        font-size: 1.25rem;
        line-height: 1.2;
        padding: 0;
        letter-spacing: 0;
        font-weight: 700;
        margin-bottom: 33px; }
        .custom-post-grid.fsPostElement.fsGrid article .overlay .fsTitle:last-child {
          margin-bottom: 0; }
        .custom-post-grid.fsPostElement.fsGrid article .overlay .fsTitle > a {
          color: #FFF; }
          .custom-post-grid.fsPostElement.fsGrid article .overlay .fsTitle > a:hover, .custom-post-grid.fsPostElement.fsGrid article .overlay .fsTitle > a:focus {
            text-decoration: underline; }
        .custom-post-grid.fsPostElement.fsGrid article .overlay .fsTitle:after {
          content: '';
          display: block;
          width: 194px;
          max-width: 100%;
          margin: 13px auto 0;
          height: 1px;
          background-color: #FFF; }
    .custom-post-grid.fsPostElement.fsGrid article .fsSummary strong {
      font-size: 1rem;
      line-height: 1.1875;
      font-weight: 600;
      text-transform: uppercase; }
    .custom-post-grid.fsPostElement.fsGrid article .fsSummary a:not([class]) {
      color: #FFF;
      text-decoration: underline; }
      .custom-post-grid.fsPostElement.fsGrid article .fsSummary a:not([class]):hover, .custom-post-grid.fsPostElement.fsGrid article .fsSummary a:not([class]):focus {
        text-decoration: none; }
    .custom-post-grid.fsPostElement.fsGrid article .fsSummary p {
      margin-bottom: 12px; }
      .custom-post-grid.fsPostElement.fsGrid article .fsSummary p:last-child {
        margin-bottom: 0; }
  .custom-post-grid.fsPostElement.fsGrid .fsLoadMoreButton {
    margin: 33px auto 0;
    border: 0;
    padding: 0;
    max-width: unset;
    letter-spacing: 0;
    display: table;
    font-family: "semplicitapro", sans-serif;
    color: #000;
    background-color: transparent;
    min-height: 0;
    font-size: 1.0625rem;
    line-height: 1.4118;
    font-weight: 700;
    min-width: 0; }
    .custom-post-grid.fsPostElement.fsGrid .fsLoadMoreButton:hover, .custom-post-grid.fsPostElement.fsGrid .fsLoadMoreButton:focus {
      color: #E41F11; }

/*! enhancements - testimonial v0.0.1 */
main .testimonial.fsElement.panel-full-width {
  margin-bottom: 50px; }

.testimonial.fsSharedContainer > header .fsElementTitle {
  color: #231f20;
  margin-top: 0;
  font-weight: bold;
  color: #ee3224;
  font-size: 36px;
  line-height: 40px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 17px;
  text-align: center; }

.testimonial.fsContainer,
.testimonial.fsSharedContainer > .fsContainer {
  height: 500px;
  position: relative;
  background-position: center center;
  background-size: cover; }
  .testimonial.fsContainer:before,
  .testimonial.fsSharedContainer > .fsContainer:before {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #231f20;
    opacity: 0.6; }

.testimonial.testimonial-small.fsContainer,
.testimonial.testimonial-small.fsSharedContainer > .fsContainer {
  height: 320px; }

.testimonial.testimonial-small .fsContent {
  height: 320px; }

.testimonial .slick-track {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap; }

.testimonial .fsContent {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 500px;
  margin: 0;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  opacity: 0; }
  @media (min-width: 700px) {
    .testimonial .fsContent {
      padding-left: 100px;
      padding-right: 100px; } }
  .testimonial .fsContent.element-loaded {
    opacity: 1; }
  .fsComposeMode .testimonial .fsContent {
    opacity: 1; }
  .testimonial .fsContent.slick-shown > .fsElementContent {
    opacity: 1;
    top: 0; }
  .testimonial .fsContent > .fsElementContent {
    max-width: 840px;
    color: #ffffff;
    position: relative;
    opacity: 0;
    top: 6px;
    transition: opacity 1s ease, top 1s ease; }
    .testimonial .fsContent > .fsElementContent blockquote {
      display: block;
      padding: 0;
      margin: 0;
      color: #ffffff;
      font-size: 14px;
      line-height: 36px;
      letter-spacing: -0.02em; }
      @media (min-width: 700px) {
        .testimonial .fsContent > .fsElementContent blockquote {
          font-size: 18px; } }
      @media (min-width: 1000px) {
        .testimonial .fsContent > .fsElementContent blockquote {
          font-size: 26px; } }
      .testimonial .fsContent > .fsElementContent blockquote .fs_style_26 {
        display: block;
        margin: 18px 0 0;
        color: #ffffff;
        font-size: 13px;
        font-family: "semplicitapro", sans-serif;
        letter-spacing: 0.08em; }
        .testimonial .fsContent > .fsElementContent blockquote .fs_style_26:before {
          display: inline-block;
          content: '\2013';
          margin-right: 5px;
          color: #ffffff;
          font-size: 13px;
          font-family: "semplicitapro", sans-serif;
          letter-spacing: 0.08em; }

.testimonial .slick-arrow {
  display: none !important;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 390;
  color: transparent;
  font-size: 1px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.2); }
  @media (min-width: 700px) {
    .testimonial .slick-arrow {
      display: block !important; } }
  .testimonial .slick-arrow:before {
    content: "";
    font-family: "IcoMoon";
    font-smoothing: antialiased;
    font-weight: normal;
    speak: none;
    display: block;
    height: 12px;
    color: #ffffff;
    font-size: 12px;
    line-height: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }

.testimonial .slick-prev {
  left: 28px; }
  .testimonial .slick-prev:before {
    content: '\e907'; }

.testimonial .slick-next {
  right: 28px; }
  .testimonial .slick-next:before {
    content: '\e906'; }

.testimonial .slick-dots {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 50%;
  bottom: 13px;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }
  .testimonial .slick-dots ul, .testimonial .slick-dots li {
    list-style: none;
    padding: 0;
    margin: 0; }
  .testimonial .slick-dots li {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    border: 1px solid #ffffff;
    border-radius: 30px;
    transition: background 0.3s ease; }
    .testimonial .slick-dots li.slick-active {
      background-color: #ffffff; }
  .testimonial .slick-dots button {
    display: block;
    width: 100%;
    height: 100%;
    outline: none;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 1px;
    color: transparent;
    background: none; }

/*! enhancements - timeline v0.0.1 */
.timeline.fsMedia {
  padding-bottom: 20px; }
  body:not(.fsComposeMode) .timeline.fsMedia {
    max-width: 0vw;
    margin: 0 auto; }
    body:not(.fsComposeMode) .timeline.fsMedia > header,
    body:not(.fsComposeMode) .timeline.fsMedia > .fsElementContent,
    body:not(.fsComposeMode) .timeline.fsMedia > footer {
      margin-left: -50vw;
      margin-right: -50vw;
      width: 100vw; }
    body:not(.fsComposeMode) .timeline.fsMedia > .fsElementContent {
      padding: 0 20px; }
      @media (min-width: 550px) {
        body:not(.fsComposeMode) .timeline.fsMedia > .fsElementContent {
          padding: 0 40px !important; } }
      @media (min-width: 900px) {
        body:not(.fsComposeMode) .timeline.fsMedia > .fsElementContent {
          padding: 0 20px !important; } }
      body:not(.fsComposeMode) .timeline.fsMedia > .fsElementContent > .fsMediaContainer {
        position: relative;
        margin: 0 auto;
        max-width: 73.75em;
        max-width: 73.75rem;
        margin-bottom: 60px; }
  .timeline.fsMedia > header > .fsElementTitle {
    color: #231f20;
    margin-top: 0;
    font-weight: bold;
    color: #ee3224;
    font-size: 36px;
    line-height: 40px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 17px;
    text-align: center; }
  .timeline.fsMedia > .fsElementContent {
    text-align: center;
    background-color: #f1f1f1; }
    .timeline.fsMedia > .fsElementContent > .fsMediaContainer {
      padding-top: 30px;
      padding-bottom: 60px;
      overflow: visible; }
      .timeline.fsMedia > .fsElementContent > .fsMediaContainer > .slick-list {
        background-color: #ffffff;
        box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.05); }
        @media (min-width: 550px) {
          .timeline.fsMedia > .fsElementContent > .fsMediaContainer > .slick-list {
            padding-left: 15%;
            padding-right: 15%; } }
        @media (min-width: 700px) {
          .timeline.fsMedia > .fsElementContent > .fsMediaContainer > .slick-list {
            padding-left: 100px;
            padding-right: 100px; } }
  .timeline.fsMedia article {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    min-height: 400px;
    padding-top: 30px;
    padding-bottom: 92px; }
    @media (min-width: 550px) {
      .timeline.fsMedia article {
        padding-bottom: 60px; } }
    @media (min-width: 900px) {
      .timeline.fsMedia article {
        padding-bottom: 30px; } }
  .timeline.fsMedia .image-wrapper {
    zoom: 1;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px; }
    .timeline.fsMedia .image-wrapper:after {
      display: table;
      clear: both;
      content: ''; }
    @media (min-width: 550px) {
      .timeline.fsMedia .image-wrapper {
        padding: 0; } }
    @media (min-width: 900px) {
      .timeline.fsMedia .image-wrapper {
        width: 43.57143%; } }
  .timeline.fsMedia .slide-image {
    float: right;
    width: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center center; }
    @media (min-width: 550px) {
      .timeline.fsMedia .slide-image {
        position: relative;
        z-index: 2; } }
    .timeline.fsMedia .slide-image:before {
      content: '';
      display: block;
      width: 100%;
      padding-bottom: 89.22717%; }
  .timeline.fsMedia .slideshow-arrows {
    width: 76px;
    height: 40px;
    position: absolute;
    left: 50%;
    bottom: 88px;
    -ms-transform: translate(-50%);
    transform: translate(-50%); }
    @media (min-width: 550px) {
      .timeline.fsMedia .slideshow-arrows {
        width: auto;
        height: auto;
        position: static;
        -ms-transform: none;
        transform: none; } }
  .timeline.fsMedia .slick-arrow {
    width: 36px;
    height: 36px;
    cursor: pointer; }
    .timeline.fsMedia .slick-arrow:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none;
      display: block;
      width: auto;
      height: auto;
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      color: #dfe0e6;
      font-size: 36px;
      line-height: 1;
      transition: color 0.3s ease;
      text-shadow: none;
      box-shadow: none; }
  @media (min-width: 550px) {
    .timeline.fsMedia .slick-prev {
      left: 4.5%; } }
  @media (min-width: 700px) {
    .timeline.fsMedia .slick-prev {
      left: 30px; } }
  .timeline.fsMedia .slick-prev:before {
    content: '\e904'; }
  @media (min-width: 550px) {
    .timeline.fsMedia .slick-next {
      right: 4.5%; } }
  @media (min-width: 700px) {
    .timeline.fsMedia .slick-next {
      right: 30px; } }
  .timeline.fsMedia .slick-next:before {
    content: '\e905'; }
  .timeline.fsMedia .fsMediaCustomPlayer .caption-wrapper {
    -ms-flex-order: 2;
    order: 2;
    padding: 31px 18px 0;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    text-align: left;
    background: none; }
    @media (min-width: 550px) {
      .timeline.fsMedia .fsMediaCustomPlayer .caption-wrapper {
        padding: 31px 0 0 0; } }
    @media (min-width: 900px) {
      .timeline.fsMedia .fsMediaCustomPlayer .caption-wrapper {
        width: 56.42857%;
        padding-top: 5px;
        padding-left: 31px; } }
    @media (min-width: 1200px) {
      .timeline.fsMedia .fsMediaCustomPlayer .caption-wrapper {
        padding-top: 25px;
        padding-left: 51px; } }
    .timeline.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-title {
      color: #00b2b0;
      font-size: 13px;
      line-height: 22px;
      letter-spacing: 0;
      font-weight: 600;
      font-family: "semplicitapro", sans-serif; }
    .timeline.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-desc {
      display: block;
      color: #231f20;
      font-size: 16px;
      line-height: 28px; }
      .timeline.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-desc h2, .timeline.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-desc h3, .timeline.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-desc h4, .timeline.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-desc h5, .timeline.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-desc h6 {
        margin-bottom: 11px;
        color: #231f20;
        font-size: 26px;
        line-height: 36px;
        text-transform: none; }
      .timeline.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-desc h1 {
        margin-bottom: 9px;
        color: #231f20;
        font-size: 36px;
        line-height: 44px;
        font-weight: 900;
        font-family: "fira-sans", sans-serif;
        letter-spacing: -0.01em;
        text-transform: none; }
      .timeline.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-desc p {
        margin-bottom: 29px; }
      .timeline.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-desc > *:last-child {
        margin-bottom: 0; }
    .timeline.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-title + .caption-desc {
      padding-top: 11px; }
      @media (min-width: 550px) {
        .timeline.fsMedia .fsMediaCustomPlayer .caption-wrapper .caption-title + .caption-desc {
          padding-top: 5px; } }
  .timeline.fsMedia .slideshow-index {
    height: 60px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0; }
    .timeline.fsMedia .slideshow-index a {
      height: 60px;
      min-width: 11px;
      width: auto !important;
      position: relative;
      cursor: pointer; }
      .timeline.fsMedia .slideshow-index a.slick-current:before {
        width: 3px;
        right: 4px;
        background-color: #00b2b0; }
      .timeline.fsMedia .slideshow-index a.slick-current:after {
        background-color: #00b2b0; }
      .timeline.fsMedia .slideshow-index a.slick-current span:before {
        top: 0; }
      .timeline.fsMedia .slideshow-index a:before {
        content: '';
        display: block;
        height: 60px;
        width: 1px;
        position: absolute;
        bottom: 0;
        right: 5px;
        -ms-transform: none;
        transform: none;
        background-color: #b4babf;
        transition: background 0.3s ease; }
      .timeline.fsMedia .slideshow-index a:after {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        border-radius: 20px;
        position: absolute;
        bottom: -4px;
        right: 1px;
        -ms-transform: none;
        transform: none;
        background-color: #b4babf;
        transition: background 0.3s ease; }
      .timeline.fsMedia .slideshow-index a:hover {
        color: #363636; }
      .timeline.fsMedia .slideshow-index a span {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0; }
        .timeline.fsMedia .slideshow-index a span:before {
          content: '';
          display: block;
          width: 0;
          height: 0;
          border-left: 12px solid transparent;
          border-right: 12px solid transparent;
          border-top: 12px solid #ffffff;
          position: absolute;
          top: -12px;
          right: -6px;
          transition: top 0.3s ease, opacity 0.3s ease; }
    .timeline.fsMedia .slideshow-index .slick-list {
      overflow: visible; }
      @media (min-width: 700px) {
        .timeline.fsMedia .slideshow-index .slick-list {
          height: 60px !important;
          display: inline-block !important;
          padding-left: 0 !important;
          padding-right: 0 !important; } }
    .timeline.fsMedia .slideshow-index .slick-track {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: end;
      align-items: flex-end; }
      @media (min-width: 700px) {
        .timeline.fsMedia .slideshow-index .slick-track {
          width: auto !important;
          -ms-transform: none !important;
          transform: none !important; } }
  .timeline.fsMedia .slideshow-increments {
    zoom: 1;
    position: absolute;
    top: 75px;
    left: 0; }
    .timeline.fsMedia .slideshow-increments:after {
      display: table;
      clear: both;
      content: ''; }
  .timeline.fsMedia section.increment-decade {
    float: left;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row;
    flex-flow: row;
    padding-top: 24px;
    position: relative; }
    .timeline.fsMedia section.increment-decade:last-of-type {
      width: 1px; }
      .timeline.fsMedia section.increment-decade:last-of-type span.increment-mark {
        width: 1px; }
      .timeline.fsMedia section.increment-decade:last-of-type span {
        display: none; }
        .timeline.fsMedia section.increment-decade:last-of-type span:first-of-type {
          display: block; }
  .timeline.fsMedia label.increment-label {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #b7b7b7;
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 0;
    font-weight: 600;
    font-family: "semplicitapro", sans-serif;
    letter-spacing: 0.02em; }
  .timeline.fsMedia span.increment-mark {
    display: block;
    width: 11px;
    height: 21px;
    position: relative; }
    .timeline.fsMedia span.increment-mark:before {
      content: '';
      display: block;
      width: 1px;
      height: 9px;
      position: absolute;
      top: 6px;
      left: 0;
      background-color: #dadbe0; }
    .timeline.fsMedia span.increment-mark:first-of-type:before {
      height: 21px;
      top: 0; }

.timeline.fsContainer {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
  transform: translate3d(0, 0, 0); }
  @media (max-width: 1219px) {
    body:not(.fsComposeMode) .timeline.fsContainer {
      margin-left: -20px;
      width: calc(100% + 40px) !important;
      left: auto !important; } }
  .fsPageLayout > .fsDiv > .timeline.fsContainer:last-child {
    margin-bottom: -70px; }
  .timeline.fsContainer.fixed {
    -ms-transform: unset;
    transform: unset; }
    @media (min-width: 600px) {
      .timeline.fsContainer.fixed .decade.in-view > header .fsElementTitle {
        position: fixed; } }
  .timeline.fsContainer .fsElement {
    margin-bottom: 0; }
  .timeline.fsContainer .decade {
    background-size: 0px;
    background-repeat: no-repeat;
    position: relative;
    padding: 33px 20px 20px;
    min-height: 100vh;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center; }
    @media (min-width: 600px) {
      .timeline.fsContainer .decade {
        padding: 0;
        min-height: 0;
        display: block; } }
    .timeline.fsContainer .decade.in-view:before {
      opacity: 0.2; }
    @media (min-width: 600px) {
      .timeline.fsContainer .decade.in-view > header .fsElementTitle {
        opacity: 1; } }
    .timeline.fsContainer .decade:before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background-image: inherit;
      background-position: center;
      background-size: cover;
      opacity: 0;
      transition: 0.5s opacity; }
    .timeline.fsContainer .decade > header .fsElementTitle {
      margin-bottom: 12px;
      position: relative;
      font-size: 3.125rem;
      line-height: 1.2;
      color: #FFF;
      text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.22);
      font-weight: 700;
      text-align: center;
      z-index: 1; }
      @media (min-width: 600px) {
        .timeline.fsContainer .decade > header .fsElementTitle {
          margin-bottom: 0;
          position: absolute;
          top: 50px;
          left: 25px;
          font-size: 4.0625rem;
          text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
          text-align: left;
          opacity: 0;
          transition: 0.5s opacity; } }
      @media (min-width: 1000px) {
        .timeline.fsContainer .decade > header .fsElementTitle {
          top: 150px;
          left: 69px;
          font-size: 7.5rem;
          line-height: 1.2; } }
    @media (min-width: 600px) {
      .timeline.fsContainer .decade > .fsElementContent {
        min-height: 100vh;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: end;
        align-items: flex-end;
        padding: 130px 0 40px; } }
    @media (min-width: 1000px) {
      .timeline.fsContainer .decade > .fsElementContent {
        padding: 200px 40px 40px; } }
  @media (min-width: 600px) {
    .timeline.fsContainer .year {
      width: 350px;
      margin-right: 45px; } }
  @media (min-width: 1000px) {
    .timeline.fsContainer .year {
      width: 879px;
      margin-right: 75px; } }
  @media (min-width: 1100px) {
    .timeline.fsContainer .year {
      margin-right: 104px; } }
  .timeline.fsContainer .year:not(:last-child) {
    margin-bottom: 23px; }
    @media (min-width: 600px) {
      .timeline.fsContainer .year:not(:last-child) {
        margin-bottom: 13px; } }
  @media (min-width: 1000px) {
    .timeline.fsContainer .year > .fsElementContent {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
      align-items: center; } }
  .timeline.fsContainer .fsResourceElement {
    position: relative;
    z-index: 2; }
    @media (min-width: 1000px) {
      .timeline.fsContainer .fsResourceElement {
        width: 39.81797%;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)); } }
    .timeline.fsContainer .fsResourceElement img {
      width: 100%; }
  .timeline.fsContainer .fsContent {
    background-color: #FFF;
    position: relative;
    z-index: 1;
    padding: 25px 24px 35px 23px; }
    @media (min-width: 600px) {
      .timeline.fsContainer .fsContent {
        padding: 35px 30px; } }
    @media (min-width: 1000px) {
      .timeline.fsContainer .fsContent {
        margin-left: -27px;
        padding: 40px 45px 40px 77px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: center;
        justify-content: center;
        min-height: 320px; } }
    .timeline.fsContainer .fsContent > header {
      margin-bottom: 15px; }
      @media (min-width: 600px) {
        .timeline.fsContainer .fsContent > header {
          margin-bottom: 20px; } }
      .timeline.fsContainer .fsContent > header .fsElementTitle {
        color: #00B3B0;
        margin-bottom: 13px;
        font-weight: 700;
        font-size: 1rem;
        line-height: 1.1875;
        padding-left: 13px;
        position: relative; }
        .timeline.fsContainer .fsContent > header .fsElementTitle:before {
          content: '';
          position: absolute;
          top: 3px;
          left: 0;
          width: 5px;
          height: calc(100% - 5px);
          background-color: #fdb913; }
      .timeline.fsContainer .fsContent > header .fsElementHeaderContent {
        color: #06347a;
        font-weight: 700;
        font-size: 1.25rem;
        line-height: 1.2; }
        @media (min-width: 600px) {
          .timeline.fsContainer .fsContent > header .fsElementHeaderContent {
            font-size: 1.375rem;
            line-height: 1.182; } }
    .timeline.fsContainer .fsContent > .fsElementContent {
      font-size: 0.8125rem;
      line-height: 1.77;
      color: #666; }
    .timeline.fsContainer .fsContent p:last-child {
      margin-bottom: 0; }
  body.fsComposeMode .timeline.fsContainer {
    margin-bottom: 20px !important; }
    body.fsComposeMode .timeline.fsContainer:last-child {
      margin-bottom: 0 !important; }
    body.fsComposeMode .timeline.fsContainer .decade {
      min-height: 0;
      padding: 20px;
      display: block;
      background-size: cover;
      background-position: center; }
      body.fsComposeMode .timeline.fsContainer .decade:before {
        content: normal; }
      body.fsComposeMode .timeline.fsContainer .decade > header .fsElementTitle {
        position: relative;
        top: auto;
        left: auto;
        opacity: 1; }
      body.fsComposeMode .timeline.fsContainer .decade > .fsElementContent {
        min-height: 0;
        display: block; }
    body.fsComposeMode .timeline.fsContainer .year {
      margin: 0 0 20px;
      width: auto; }
      body.fsComposeMode .timeline.fsContainer .year:last-child {
        margin-bottom: 0; }

@media (min-width: 900px) {
  body:not(.nav-float-near-top) .timeline.fsContainer .decade.in-view:before {
    top: 140px;
    height: calc(100vh - 140px); } }

/*! structure - header v0.0.1 */
#fsHeader {
  padding: 0;
  background: #ffffff; }
  #fsHeader.header-float {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 399;
    background-color: #ffffff; }
    .fsComposeMode #fsHeader.header-float {
      display: none; }
    .nav-float-near-top #fsHeader.header-float {
      opacity: 0;
      z-index: -1; }
    .fsAccountBarVisible #fsHeader.header-float {
      top: 40px; }
    #fsHeader.header-float .header-top {
      display: none; }
    #fsHeader.header-float .nav-sticky {
      display: none; }

.header-top {
  padding: 10px 20px 11px; }
  .header-top > .fsElementContent {
    position: relative;
    margin: 0 auto;
    max-width: 73.75em;
    max-width: 73.75rem;
    zoom: 1; }
    .header-top > .fsElementContent:after {
      display: table;
      clear: both;
      content: ''; }

.header-util-container {
  display: none;
  float: right;
  padding-top: 14px; }
  @media (min-width: 900px) {
    .header-util-container {
      display: block; } }
  .header-util-container > .fsElementContent {
    zoom: 1; }
    .header-util-container > .fsElementContent:after {
      display: table;
      clear: both;
      content: ''; }

.header-nav-util {
  float: right; }

.search-custom {
  clear: right;
  float: right; }

.nav-header-other {
  float: right; }

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

@media (min-width: 900px) {
  .off-canvas-open {
    display: none; } }

.off-canvas-open .off-canvas-open-inner {
  display: block;
  padding-top: 12px;
  padding-bottom: 10px;
  cursor: pointer;
  text-align: center; }
  .off-canvas-open .off-canvas-open-inner span {
    display: inline-block;
    padding-left: 30px;
    height: 28px;
    position: relative;
    color: #ffffff;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "semplicitapro", sans-serif; }
    .off-canvas-open .off-canvas-open-inner span:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none;
      display: inline-block;
      position: absolute;
      top: 3px;
      left: 0;
      color: #ffffff;
      font-size: 12px;
      line-height: 20px;
      text-align: center; }

.header-bottom {
  padding: 0 20px;
  position: relative;
  background-color: #00b2b0; }
  .header-bottom > .fsElementContent {
    position: relative;
    margin: 0 auto;
    max-width: 73.75em;
    max-width: 73.75rem;
    position: static; }

.header-tier {
  display: none;
  padding: 0 20px;
  background-color: #c2f1f2; }
  @media (min-width: 900px) {
    .header-tier {
      display: block; } }
  .header-tier > .fsElementContent {
    position: relative;
    margin: 0 auto;
    max-width: 73.75em;
    max-width: 73.75rem; }

.site-info-container {
  display: block; }
  @media (min-width: 900px) {
    .site-info-container {
      float: left; } }
  .site-info-container > .fsElementContent {
    text-align: center; }
  .site-info-container a {
    display: inline-block; }
    .site-info-container a img {
      display: block; }

/*! structure - footer v0.0.1 */
#fsFooter {
  padding: 26px 20px 20px;
  background: #06347a;
  position: relative;
  color: #ffffff; }
  #fsFooter .fsBanner {
    position: relative;
    margin: 0 auto;
    max-width: 73.75em;
    max-width: 73.75rem; }
  #fsFooter .fsTwoColumnLayout .fsStyleColumn-1 {
    zoom: 1;
    width: 100%; }
    #fsFooter .fsTwoColumnLayout .fsStyleColumn-1:after {
      display: table;
      clear: both;
      content: ''; }
    @media (min-width: 1200px) {
      #fsFooter .fsTwoColumnLayout .fsStyleColumn-1 {
        width: 66.10169%;
        float: left; } }
  #fsFooter .fsTwoColumnLayout .fsStyleColumn-2 {
    width: 100%; }
    @media (min-width: 1200px) {
      #fsFooter .fsTwoColumnLayout .fsStyleColumn-2 {
        width: 33.89831%;
        float: right; } }
  #fsFooter .fsNavigation ul, #fsFooter .fsNavigation li {
    list-style: none;
    padding: 0;
    margin: 0; }
  #fsFooter .school-details {
    padding-top: 4px;
    color: #ffffff;
    font-size: 16px;
    line-height: 28px;
    font-weight: normal;
    text-align: center; }
    @media (min-width: 550px) {
      #fsFooter .school-details {
        padding-top: 0;
        line-height: 36px; } }
    @media (min-width: 900px) {
      #fsFooter .school-details {
        float: left;
        text-align: left; } }
    #fsFooter .school-details .school-details-inner {
      margin-left: -10px;
      margin-right: -10px; }
      #fsFooter .school-details .school-details-inner > div {
        display: block;
        padding: 0 10px;
        position: relative; }
        @media (min-width: 550px) {
          #fsFooter .school-details .school-details-inner > div {
            display: inline-block; } }
        #fsFooter .school-details .school-details-inner > div:after {
          content: '';
          display: none;
          width: 4px;
          height: 4px;
          border-radius: 100px;
          position: absolute;
          top: 16px;
          right: -4px;
          background-color: #ffffff; }
          @media (min-width: 550px) {
            #fsFooter .school-details .school-details-inner > div:after {
              display: block; } }
        #fsFooter .school-details .school-details-inner > div:last-of-type:after {
          display: none; }
    #fsFooter .school-details [itemprop='name'] {
      font-weight: bold;
      font-size: 16px;
      text-transform: uppercase; }
    #fsFooter .school-details a {
      color: inherit; }
  #fsFooter .footer-social {
    margin-top: -2px;
    text-align: center; }
    @media (min-width: 550px) {
      #fsFooter .footer-social {
        margin-top: -6px; } }
    @media (min-width: 900px) {
      #fsFooter .footer-social {
        float: left;
        margin-top: 0;
        padding-left: 12px;
        text-align: left; } }
    #fsFooter .footer-social ul {
      zoom: 1; }
      #fsFooter .footer-social ul:after {
        display: table;
        clear: both;
        content: ''; }
    #fsFooter .footer-social li {
      float: none;
      display: inline-block; }
      @media (min-width: 900px) {
        #fsFooter .footer-social li {
          float: left;
          display: block; } }
    #fsFooter .footer-social a {
      display: block;
      width: 36px;
      height: 36px;
      position: relative;
      color: transparent;
      font-size: 1px;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
      @media (min-width: 900px) {
        #fsFooter .footer-social a {
          width: 40px;
          height: 36px; } }
      #fsFooter .footer-social a:hover:before {
        color: #fdb913; }
      #fsFooter .footer-social a[href*="facebook"]:before {
        content: '\f09a'; }
      #fsFooter .footer-social a[href*="twitter"]:before {
        content: '\f099'; }
      #fsFooter .footer-social a[href*="instagram"]:before {
        content: '\f16d';
        font-size: 16px; }
      #fsFooter .footer-social a:before {
        content: "";
        font-family: "IcoMoon";
        font-smoothing: antialiased;
        font-weight: normal;
        speak: none;
        display: block;
        color: #ffffff;
        font-size: 17px;
        position: absolute;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        transition: color 0.3s ease; }
  #fsFooter .footer-util {
    padding-top: 3px;
    clear: left;
    text-align: center; }
    @media (min-width: 900px) {
      #fsFooter .footer-util {
        padding-top: 2px;
        text-align: left; } }
    #fsFooter .footer-util ul {
      margin-left: -13px;
      margin-right: -13px; }
    #fsFooter .footer-util li {
      display: block;
      padding: 0 13px;
      position: relative;
      line-height: 28px; }
      @media (min-width: 550px) {
        #fsFooter .footer-util li {
          display: inline-block; } }
      #fsFooter .footer-util li:last-of-type:after {
        display: none; }
      #fsFooter .footer-util li:after {
        display: none;
        content: '';
        width: 1px;
        height: 12px;
        position: absolute;
        top: 10px;
        right: -3px;
        background-color: #ffffff; }
        @media (min-width: 550px) {
          #fsFooter .footer-util li:after {
            display: block; } }
    #fsFooter .footer-util a {
      display: block;
      color: #ffffff;
      font-size: 11px;
      line-height: 11px;
      line-height: 28px;
      letter-spacing: 0.08em;
      font-weight: bold;
      font-family: "semplicitapro", sans-serif;
      text-transform: uppercase; }
      @media (min-width: 550px) {
        #fsFooter .footer-util a {
          display: inline-block; } }
      #fsFooter .footer-util a:hover {
        color: #fdb913; }
  #fsFooter .footer-accreditation {
    margin-bottom: 0; }
    #fsFooter .footer-accreditation ul, #fsFooter .footer-accreditation li {
      list-style: none;
      padding: 0;
      margin: 0; }
    #fsFooter .footer-accreditation ul {
      text-align: center;
      padding-left: 40px;
      padding-right: 40px; }
      @media (min-width: 450px) {
        #fsFooter .footer-accreditation ul {
          padding-left: 0;
          padding-right: 0; } }
      @media (min-width: 900px) {
        #fsFooter .footer-accreditation ul {
          text-align: left; } }
      @media (min-width: 1200px) {
        #fsFooter .footer-accreditation ul {
          text-align: right; } }
    #fsFooter .footer-accreditation li {
      display: inline-block;
      vertical-align: middle;
      position: relative;
      cursor: pointer; }
      #fsFooter .footer-accreditation li:hover .fsNavPageInfo {
        opacity: 0.75; }
      #fsFooter .footer-accreditation li a {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2; }
      #fsFooter .footer-accreditation li img {
        display: block;
        vertical-align: middle; }
      #fsFooter .footer-accreditation li .fsNavPageThumbnail {
        vertical-align: middle; }
      #fsFooter .footer-accreditation li .fsNavPageInfo {
        position: relative;
        z-index: 1;
        opacity: 0.5;
        transition: opacity 0.3s ease; }
      #fsFooter .footer-accreditation li.nav-nwais {
        margin: 0 7px 20px 0; }
        #fsFooter .footer-accreditation li.nav-nwais img {
          max-width: 56px; }
      #fsFooter .footer-accreditation li.nav-nais {
        margin: 0 7px 20px 7px; }
        #fsFooter .footer-accreditation li.nav-nais img {
          max-width: 71px; }
      #fsFooter .footer-accreditation li.nav-green {
        margin: 0 2px 20px 7px; }
        #fsFooter .footer-accreditation li.nav-green img {
          max-width: 67px; }
      #fsFooter .footer-accreditation li.nav-psis {
        margin: 0 5px 20px 2px; }
        #fsFooter .footer-accreditation li.nav-psis img {
          max-width: 69px; }
      #fsFooter .footer-accreditation li.nav-wfis {
        margin: 0 0 20px 5px; }
        #fsFooter .footer-accreditation li.nav-wfis img {
          max-width: 37px; }
    #fsFooter .footer-accreditation a {
      font-size: 1px;
      color: transparent;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
  #fsFooter .footer-copyright {
    padding-top: 3px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
    line-height: 28px;
    letter-spacing: 0.05em;
    font-weight: normal;
    font-family: "semplicitapro", sans-serif;
    text-transform: uppercase;
    text-align: center; }
    @media (min-width: 550px) {
      #fsFooter .footer-copyright {
        padding-top: 6px; } }
    @media (min-width: 900px) {
      #fsFooter .footer-copyright {
        text-align: left; } }
  #fsFooter #fsPoweredByFinalsite {
    margin: 0 auto;
    display: block; }
    @media (min-width: 900px) {
      #fsFooter #fsPoweredByFinalsite {
        margin: 0;
        float: left; } }
    @media (min-width: 1200px) {
      #fsFooter #fsPoweredByFinalsite {
        float: right; } }

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

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

html {
  font-family: "fira-sans", sans-serif;
  background: #06347a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

body {
  color: #363636;
  font-size: 16px;
  line-height: 28px; }

html body.fsAccountBarVisible {
  margin-top: 40px; }

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

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

#fsPageBody {
  position: relative;
  margin: 0 auto;
  max-width: 73.75em;
  max-width: 73.75rem; }

main a {
  font-weight: 500; }

main .fsElement {
  margin-bottom: 20px; }

#fsBannerLeft {
  margin-bottom: 20px;
  width: 100%;
  float: none;
  -ms-flex: 1 100%;
  flex: 1 100%;
  -ms-flex-order: 3;
  order: 3; }
  @media (min-width: 800px) {
    #fsBannerLeft {
      float: left; } }
  @media (min-width: 800px) {
    #fsBannerLeft {
      -ms-flex: none;
      flex: none;
      padding-right: 40px;
      width: 23.72881%; } }

#fsPageContent {
  margin-bottom: 20px;
  width: 100% !important;
  float: none !important;
  -ms-flex: 1 100%;
  flex: 1 100%;
  -ms-flex-order: 1;
  order: 1; }
  @media (min-width: 800px) {
    #fsPageContent {
      float: left !important; } }
  @media (min-width: 1000px) {
    #fsPageContent {
      -ms-flex: none;
      flex: none; } }
  @media (min-width: 1000px) {
    .fsHasRightBanner #fsPageContent {
      width: 72.88136% !important; } }
  @media (min-width: 1000px) {
    .fsHasLeftBanner #fsPageContent {
      width: 76.27119% !important; } }
  @media (min-width: 1000px) {
    .fsHasLeftBanner.fsHasRightBanner #fsPageContent {
      width: 49.15254% !important; } }

#fsBannerRight {
  margin-bottom: 20px;
  width: 100%;
  float: none;
  -ms-flex: 1 100%;
  flex: 1 100%;
  -ms-flex-order: 2;
  order: 2; }
  @media (min-width: 800px) {
    #fsBannerRight {
      float: left; } }
  @media (min-width: 1000px) {
    #fsBannerRight {
      -ms-flex: none;
      flex: none;
      padding-left: 40px;
      width: 27.11864%; } }

#fsBannerRight > .fsBanner > .fsElement:not(:last-child) {
  margin-bottom: 40px; }

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

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

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

@media (min-width: 900px) {
  .fsLayout.fsTwoColumnWideLeftLayout {
    margin-left: 0;
    margin-right: 0; } }

.fsLayout.fsTwoColumnWideLeftLayout .fsStyleTwoThirds {
  width: 100%; }
  @media (min-width: 1000px) {
    .fsLayout.fsTwoColumnWideLeftLayout .fsStyleTwoThirds {
      width: 72.88136% !important; } }
  @media (min-width: 1000px) {
    .fsLayout.fsTwoColumnWideLeftLayout .fsStyleTwoThirds {
      padding-left: 0;
      padding-right: 0; } }

.fsLayout.fsTwoColumnWideLeftLayout .fsStyleOneThird {
  width: 100%; }
  @media (max-width: 599px) {
    .fsLayout.fsTwoColumnWideLeftLayout .fsStyleOneThird .fsContent img {
      width: 100%; } }
  @media (min-width: 1000px) {
    .fsLayout.fsTwoColumnWideLeftLayout .fsStyleOneThird {
      width: 27.11864%;
      padding-left: 40px;
      padding-right: 0; }
      .fsLayout.fsTwoColumnWideLeftLayout .fsStyleOneThird > .fsElement:not(:last-child) {
        margin-bottom: 40px; } }

@media (min-width: 900px) {
  .fsLayout.fsTwoColumnWideRightLayout {
    margin-left: 0;
    margin-right: 0; } }

.fsLayout.fsTwoColumnWideRightLayout .fsStyleTwoThirds {
  width: 100%; }
  @media (min-width: 1000px) {
    .fsLayout.fsTwoColumnWideRightLayout .fsStyleTwoThirds {
      width: 76.27119% !important; } }
  @media (min-width: 1000px) {
    .fsLayout.fsTwoColumnWideRightLayout .fsStyleTwoThirds {
      padding-left: 0;
      padding-right: 0; } }

.fsLayout.fsTwoColumnWideRightLayout .fsStyleOneThird {
  width: 100%; }
  @media (max-width: 599px) {
    .fsLayout.fsTwoColumnWideRightLayout .fsStyleOneThird .fsContent img {
      width: 100%; } }
  @media (min-width: 1000px) {
    .fsLayout.fsTwoColumnWideRightLayout .fsStyleOneThird {
      width: 23.72881%;
      padding-left: 0;
      padding-right: 40px; }
      .fsLayout.fsTwoColumnWideRightLayout .fsStyleOneThird > .fsElement:not(:last-child) {
        margin-bottom: 40px; } }

.fsLayout .fsStyleTwoThirds {
  width: 100%; }
  @media (min-width: 1000px) {
    .fsLayout .fsStyleTwoThirds {
      width: 66.66667%; } }

.fsLayout .fsStyleOneThird {
  width: 100%; }
  @media (min-width: 1000px) {
    .fsLayout .fsStyleOneThird {
      width: 33.33333%; } }

#fsPoweredByFinalsite {
  display: none; }

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

.fsBreadcrumb li {
  display: inline-block; }

/*! navigation - main v0.0.1 */
#fsHeader .nav-main {
  display: none; }
  @media (min-width: 900px) {
    #fsHeader .nav-main {
      display: block; } }

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

.nav-main li {
  margin: 0;
  padding: 0; }

@media (min-width: 900px) {
  .nav-main .fsNavLevel1 {
    position: relative;
    margin: 0 auto;
    max-width: 73.75em;
    max-width: 73.75rem;
    text-align: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .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: 900px) {
  .nav-main .fsNavLevel1 > li {
    -ms-flex: 1 auto;
    flex: 1 auto; } }

.nav-main .fsNavLevel1 > li.fsNavCurrentPage > a:after, .nav-main .fsNavLevel1 > li.fsNavCurrentPageAncestor > a:after {
  max-width: 30px; }

.nav-main .fsNavLevel1 > li.fsNavCurrentPage > .fsNavPageInfo, .nav-main .fsNavLevel1 > li.fsNavCurrentPageAncestor > .fsNavPageInfo {
  display: none; }

.nav-main .fsNavLevel1 > li:last-of-type > a > span:after {
  content: '';
  display: block;
  width: 1px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.15); }

.nav-main .fsNavLevel1 > li:hover > a:after {
  max-width: 30px; }

.nav-main .fsNavLevel1 > li > a {
  display: block;
  padding: 12px 20px 10px;
  position: relative;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "semplicitapro", sans-serif;
  letter-spacing: 0.03em; }
  .nav-main .fsNavLevel1 > li > a:before {
    content: '';
    display: block;
    width: 1px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.15); }
  .nav-main .fsNavLevel1 > li > a:after {
    display: block;
    content: '';
    width: 100%;
    max-width: 0;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fdb913;
    transition: max-width 0.3s ease; }
  .nav-main .fsNavLevel1 > li > a span {
    display: block; }

.nav-main .fsNavLevel1 {
  position: static; }
  .nav-main .fsNavLevel1:hover > li > .fsNavPageInfo {
    transition: none !important; }
  .nav-main .fsNavLevel1 > li {
    position: relative;
    position: static; }
    .nav-main .fsNavLevel1 > li > .fsNavPageInfo {
      position: absolute;
      top: 100%;
      left: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0, 1, 0, 1); }
    .nav-main .fsNavLevel1 > li:hover > .fsNavPageInfo {
      max-height: 9999px;
      transition: max-height 0.5s cubic-bezier(1, 0, 1, 0); }
    @media (max-width: 599px) {
      .nav-main .fsNavLevel1 > li:focus > .fsNavPageInfo {
        max-height: 9999px;
        transition: max-height 0.5s cubic-bezier(1, 0, 1, 0); } }
    .nav-main .fsNavLevel1 > li > .fsNavPageInfo {
      z-index: 300; }

.nav-main .fsNavPageInfo {
  right: 0;
  text-align: left;
  background-color: #00b2b0; }
  .home .nav-main .fsNavPageInfo {
    background-color: rgba(0, 178, 176, 0.9); }
  .nav-main .fsNavPageInfo:before {
    content: '';
    display: block;
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.15); }
  @media (min-width: 980px) {
    .nav-main .fsNavParentPage:hover .fsNavPageInfo {
      display: block; } }

.nav-main .info-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 73.75em;
  max-width: 73.75rem;
  min-height: 180px;
  zoom: 1; }
  .nav-main .info-wrapper:after {
    display: table;
    clear: both;
    content: ''; }

.nav-main .fsNavPageDescription {
  float: left;
  padding-top: 20px;
  padding-right: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 25px;
  width: 32.20339%; }

.nav-main .fsNavLevel2 {
  float: right;
  width: 67.79661%;
  padding-top: 16px;
  padding-bottom: 21px;
  -moz-column-count: 3;
  column-count: 3; }
  .nav-main .fsNavLevel2 li {
    position: relative;
    page-break-inside: avoid;
    break-inside: avoid; }
    .nav-main .fsNavLevel2 li:before {
      content: '';
      display: block;
      width: 4px;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      background-color: rgba(255, 255, 255, 0.2); }
    .nav-main .fsNavLevel2 li.fsNavCurrentPage a:after, .nav-main .fsNavLevel2 li.fsNavCurrentPageAncestor a:after {
      background-color: #bfd730;
      top: 7px;
      bottom: 7px; }
    .nav-main .fsNavLevel2 li:hover a:after {
      background-color: #fdb913;
      top: 7px;
      bottom: 7px; }
  .nav-main .fsNavLevel2 a {
    display: block;
    padding: 5px 21px;
    color: #ffffff;
    font-size: 15px;
    line-height: 21px;
    font-weight: 500; }
    .nav-main .fsNavLevel2 a:after {
      content: '';
      display: block;
      width: 4px;
      position: absolute;
      top: 50%;
      left: 0;
      bottom: 50%;
      transition: top 0.3s ease, bottom 0.3s ease; }

/*! navigation - off-canvas v0.0.1 */
#fsMenu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none; }
  html.off-canvas-active #fsMenu {
    pointer-events: auto; }

html.off-canvas-active {
  overflow: hidden;
  height: 100%; }

html.off-canvas-main body {
  overflow: hidden;
  position: fixed;
  height: 100vh;
  width: 100%; }

.fsMenu .off-canvas-container {
  display: block;
  height: 100%;
  width: 100%;
  max-width: 300px;
  overflow-x: hidden;
  overflow-y: visible;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease, right 0.3s ease;
  background-color: #ffffff; }
  .fsAccountBarVisible .fsMenu .off-canvas-container {
    top: 40px; }
  .off-canvas-active .fsMenu .off-canvas-container {
    right: 0;
    opacity: 1; }
  .fsMenu .off-canvas-container > .fsElementContent {
    padding-bottom: 40px; }

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

.fsMenu .nav-mobile-main {
  padding-top: 25px;
  padding-bottom: 5px;
  margin-bottom: 0;
  background-color: #00b2b0; }
  .fsMenu .nav-mobile-main a {
    color: #ffffff;
    font-family: "fira-sans", sans-serif; }
  .fsMenu .nav-mobile-main nav a {
    display: block; }
  .fsMenu .nav-mobile-main .menu-toggle {
    display: block;
    width: 52px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    transition: transform 0.3s ease; }
    .fsMenu .nav-mobile-main .menu-toggle:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none;
      display: block;
      width: 11px;
      height: 11px;
      position: absolute;
      top: 9px;
      left: 50%;
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      -ms-transform-origin: 50% 50%;
      transform-origin: 50% 50%;
      color: #ffffff;
      line-height: 11px;
      font-size: 17px;
      text-align: center;
      transition: transform 0.3s ease, color 0.3s ease; }
  .fsMenu .nav-mobile-main .fsNavLevel1 > li {
    display: block;
    position: relative;
    margin-bottom: 21px; }
    .fsMenu .nav-mobile-main .fsNavLevel1 > li.menu-open > .menu-toggle:before {
      -ms-transform: translateX(-50%) rotate(90deg);
      transform: translateX(-50%) rotate(90deg); }
    .fsMenu .nav-mobile-main .fsNavLevel1 > li.fsNavParentPage > a {
      padding-right: 0;
      margin-right: 52px; }
    .fsMenu .nav-mobile-main .fsNavLevel1 > li > a {
      display: block;
      position: relative;
      color: #ffffff;
      font-size: 15px;
      line-height: 20px;
      font-family: "fira-sans", sans-serif;
      text-transform: uppercase;
      font-weight: 400; }
      .fsMenu .nav-mobile-main .fsNavLevel1 > li > a:after {
        content: '';
        display: block;
        width: 1px;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.15); }
      .fsMenu .nav-mobile-main .fsNavLevel1 > li > a span {
        display: block;
        padding: 6px 35px 4px 42px; }
    .fsMenu .nav-mobile-main .fsNavLevel1 > li > .fsNavPageInfo {
      display: none; }
  .fsMenu .nav-mobile-main .fsNavLevel2 {
    padding-top: 11px;
    padding-bottom: 2px;
    border: 0; }
    .fsMenu .nav-mobile-main .fsNavLevel2 > li {
      display: block;
      position: relative; }
      .fsMenu .nav-mobile-main .fsNavLevel2 > li:before {
        content: '';
        display: block;
        width: 4px;
        position: absolute;
        top: 0;
        left: 35px;
        bottom: 0;
        background-color: rgba(255, 255, 255, 0.2); }
      .fsMenu .nav-mobile-main .fsNavLevel2 > li > a {
        display: block;
        padding: 5px 35px 5px 56px;
        border: 0;
        color: #ffffff;
        font-weight: 500;
        font-size: 15px;
        font-family: "fira-sans", sans-serif;
        line-height: 21px; }
        .fsMenu .nav-mobile-main .fsNavLevel2 > li > a:after {
          content: '';
          display: block; }
      .fsMenu .nav-mobile-main .fsNavLevel2 > li.fsNavParentPage > .fsNavPageInfo {
        display: none; }
      .fsMenu .nav-mobile-main .fsNavLevel2 > li > .menu-toggle {
        display: block;
        width: 52px;
        position: absolute;
        top: 0;
        right: 5px;
        bottom: 0;
        cursor: pointer;
        transition: transform 0.3s ease; }
        .fsMenu .nav-mobile-main .fsNavLevel2 > li > .menu-toggle:before {
          content: "";
          font-family: "IcoMoon";
          font-smoothing: antialiased;
          font-weight: normal;
          speak: none;
          display: block;
          width: 11px;
          height: 11px;
          position: absolute;
          top: 14px;
          left: 50%;
          -ms-transform: translateX(-50%);
          transform: translateX(-50%);
          -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
          color: #ffffff;
          line-height: 11px;
          font-size: 17px;
          text-align: center;
          transition: transform 0.3s ease, color 0.3s ease; }
      .fsMenu .nav-mobile-main .fsNavLevel2 > li.menu-open > a {
        color: #ffffff; }
      .fsMenu .nav-mobile-main .fsNavLevel2 > li.menu-open > .menu-toggle:before {
        -ms-transform: translateX(-50%) rotate(90deg);
        transform: translateX(-50%) rotate(90deg); }
  .fsMenu .nav-mobile-main ul.fsNavLevel3 {
    margin-top: -4px;
    padding-bottom: 23px; }
    .fsMenu .nav-mobile-main ul.fsNavLevel3 li a {
      padding-top: 1px;
      padding-bottom: 0px;
      font-size: 13px;
      line-height: 22px;
      text-transform: uppercase; }
    .fsMenu .nav-mobile-main ul.fsNavLevel3 ul {
      padding-top: 5px;
      padding-bottom: 5px; }
    .fsMenu .nav-mobile-main ul.fsNavLevel3 > li > a {
      padding-left: 44px; }
    .fsMenu .nav-mobile-main ul.fsNavLevel3 .menu-toggle {
      top: -8px; }
  .fsMenu .nav-mobile-main ul.fsNavLevel4 > li > a {
    padding-left: 64px; }
  .fsMenu .nav-mobile-main ul.fsNavLevel5 > li > a {
    padding-left: 84px; }

.fsMenu .off-canvas-close {
  display: block;
  height: 69px;
  width: 50px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 100;
  background-color: transparent; }
  .fsMenu .off-canvas-close:before {
    content: "";
    font-family: "IcoMoon";
    font-smoothing: antialiased;
    font-weight: normal;
    speak: none;
    display: block;
    height: 56px;
    width: 50px;
    color: #afb1b3;
    font-size: 11px;
    line-height: 55px;
    text-align: center;
    vertical-align: middle;
    transition: color 0.3s ease; }
  .fsMenu .off-canvas-close:hover:before {
    color: #231f20; }

.off-canvas-overlay {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  opacity: 0;
  background-color: #000000;
  transition: opacity 0.3s ease; }
  html.off-canvas-active .off-canvas-overlay {
    left: 0;
    opacity: 0.5; }

.nav-mobile-util,
.nav-mobile-other {
  float: none;
  clear: none; }
  .nav-mobile-util nav ul.fsNavLevel1 > li,
  .nav-mobile-other nav ul.fsNavLevel1 > li {
    float: none;
    margin-left: 0; }
    .nav-mobile-util nav ul.fsNavLevel1 > li > a,
    .nav-mobile-other nav ul.fsNavLevel1 > li > a {
      padding-left: 34px; }

.nav-mobile-util {
  padding-top: 27px;
  padding-bottom: 10px; }
  .nav-mobile-util .menu-toggle {
    display: block;
    width: 52px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    transition: transform 0.3s ease; }
    .nav-mobile-util .menu-toggle:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none;
      display: block;
      width: 11px;
      height: 11px;
      position: absolute;
      top: 6px;
      left: 50%;
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      -ms-transform-origin: 50% 50%;
      transform-origin: 50% 50%;
      color: #06347a;
      line-height: 11px;
      font-size: 17px;
      text-align: center;
      transition: transform 0.3s ease, color 0.3s ease; }
  .nav-mobile-util .fsNavLevel1 > li {
    display: block;
    position: relative;
    margin-bottom: 10px; }
    .nav-mobile-util .fsNavLevel1 > li.menu-open > .menu-toggle:before {
      -ms-transform: translateX(-50%) rotate(90deg);
      transform: translateX(-50%) rotate(90deg); }
    .nav-mobile-util .fsNavLevel1 > li.fsNavParentPage > a {
      padding-right: 0;
      margin-right: 52px; }
      .nav-mobile-util .fsNavLevel1 > li.fsNavParentPage > a:after {
        display: block; }
    .nav-mobile-util .fsNavLevel1 > li > a {
      display: block;
      position: relative;
      color: #06347a;
      font-size: 13px;
      line-height: 25px;
      font-family: "semplicitapro", sans-serif;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.01em; }
      .nav-mobile-util .fsNavLevel1 > li > a:after {
        content: '';
        display: none;
        width: 1px;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        text-align: left;
        background-color: rgba(0, 0, 0, 0.15); }
      .nav-mobile-util .fsNavLevel1 > li > a span {
        display: block; }
    .nav-mobile-util .fsNavLevel1 > li > .fsNavPageInfo {
      display: none; }
  .nav-mobile-util .fsNavLevel2 {
    padding-top: 13px;
    padding-bottom: 16px;
    border: 0; }
    .nav-mobile-util .fsNavLevel2 > li {
      display: block;
      position: relative; }
      .nav-mobile-util .fsNavLevel2 > li:before {
        content: '';
        display: block;
        width: 4px;
        position: absolute;
        top: 0;
        left: 35px;
        bottom: 0;
        background-color: rgba(6, 52, 122, 0.2); }
      .nav-mobile-util .fsNavLevel2 > li > a {
        display: block;
        padding: 5px 35px 5px 56px;
        border: 0;
        color: #06347a;
        font-weight: 500;
        font-size: 15px;
        font-family: "fira-sans", sans-serif;
        line-height: 21px;
        text-align: left; }
        .nav-mobile-util .fsNavLevel2 > li > a:after {
          content: '';
          display: block; }
      .nav-mobile-util .fsNavLevel2 > li.fsNavParentPage > .fsNavPageInfo {
        display: none; }
      .nav-mobile-util .fsNavLevel2 > li > .menu-toggle {
        display: block;
        width: 52px;
        position: absolute;
        top: 0;
        right: 5px;
        bottom: 0;
        cursor: pointer;
        transition: transform 0.3s ease; }
        .nav-mobile-util .fsNavLevel2 > li > .menu-toggle:before {
          content: "";
          font-family: "IcoMoon";
          font-smoothing: antialiased;
          font-weight: normal;
          speak: none;
          display: block;
          width: 11px;
          height: 11px;
          position: absolute;
          top: 14px;
          left: 50%;
          -ms-transform: translateX(-50%);
          transform: translateX(-50%);
          -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
          color: #06347a;
          line-height: 11px;
          font-size: 17px;
          text-align: center;
          transition: transform 0.3s ease, color 0.3s ease; }
      .nav-mobile-util .fsNavLevel2 > li.menu-open > a {
        color: #ffffff; }
      .nav-mobile-util .fsNavLevel2 > li.menu-open > .menu-toggle:before {
        -ms-transform: translateX(-50%) rotate(90deg);
        transform: translateX(-50%) rotate(90deg); }
  .nav-mobile-util ul.fsNavLevel3 {
    margin-top: -4px;
    padding-bottom: 23px; }
    .nav-mobile-util ul.fsNavLevel3 li a {
      padding-top: 1px;
      padding-bottom: 0px;
      font-size: 13px;
      line-height: 22px;
      text-transform: uppercase; }
    .nav-mobile-util ul.fsNavLevel3 ul {
      padding-top: 5px;
      padding-bottom: 5px; }
    .nav-mobile-util ul.fsNavLevel3 > li > a {
      padding-left: 44px; }
    .nav-mobile-util ul.fsNavLevel3 .menu-toggle {
      top: -8px; }
  .nav-mobile-util ul.fsNavLevel4 > li > a {
    padding-left: 64px; }
  .nav-mobile-util ul.fsNavLevel5 > li > a {
    padding-left: 84px; }

.nav-mobile-other.nav-header-other li.nav-request-info a {
  padding-left: 55px; }
  .nav-mobile-other.nav-header-other li.nav-request-info a:before {
    left: 35px;
    top: 1px; }

/*! navigation - sub v0.0.1 */
.nav-sub {
  display: none;
  background-color: transparent; }
  @media (min-width: 1000px) {
    .nav-sub {
      display: block; } }
  .nav-sub ul, .nav-sub li {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block; }
  .nav-sub a {
    display: block;
    font-family: "fira-sans", sans-serif; }
  .nav-sub .fsNavLevel1 {
    position: relative; }
    .nav-sub .fsNavLevel1 > li {
      display: none;
      position: relative; }
      .nav-sub .fsNavLevel1 > li > a {
        display: none; }
      .nav-sub .fsNavLevel1 > li.fsNavCurrentPage, .nav-sub .fsNavLevel1 > li.fsNavCurrentPageAncestor {
        display: block; }
      .nav-sub .fsNavLevel1 > li > .fsNavPageInfo {
        background-color: transparent; }
  .nav-sub .fsNavLevel2 > li > a {
    display: block;
    padding: 10px 0 10px 0;
    border: 0;
    color: #414141;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    /*
        &:after {
          content: '';
          display: block;
          border-bottom: 1px solid #e0e0e0;

          position: absolute;
          left: 0;
          right: 0;
          bottom: 0;
        }
*/ }
  .nav-sub .fsNavLevel2 > li > .fsNavPageInfo {
    display: none; }
  .nav-sub .fsNavLevel2 li {
    position: relative; }
    .nav-sub .fsNavLevel2 li.fsNavParentPage.fsNavCurrentPage > .fsNavPageInfo, .nav-sub .fsNavLevel2 li.fsNavParentPage.fsNavCurrentPageAncestor > .fsNavPageInfo {
      display: block; }
    .nav-sub .fsNavLevel2 li.fsNavParentPage.fsNavCurrentPage > a, .nav-sub .fsNavLevel2 li.fsNavParentPage.fsNavCurrentPageAncestor > a {
      color: #ee3224 !important; }
    .nav-sub .fsNavLevel2 li.fsNavCurrentPage > a {
      color: #ee3224 !important; }
    .nav-sub .fsNavLevel2 li.fsNavParentPage > a {
      padding-right: 65px; }
    .nav-sub .fsNavLevel2 li.fsNavParentPage > .fsNavPageInfo {
      display: none; }
    .nav-sub .fsNavLevel2 li a {
      color: #414141; }
      .nav-sub .fsNavLevel2 li a:hover {
        color: #06347a; }
    .nav-sub .fsNavLevel2 li > .menu-toggle {
      display: block;
      width: 52px;
      position: absolute;
      top: 0;
      right: 14px;
      bottom: 0;
      cursor: pointer;
      transition: transform 0.3s ease; }
      .nav-sub .fsNavLevel2 li > .menu-toggle:before {
        content: "";
        font-family: "IcoMoon";
        font-smoothing: antialiased;
        font-weight: normal;
        speak: none;
        display: block;
        width: 19px;
        height: 19px;
        position: absolute;
        top: 11px;
        left: 50%;
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        -ms-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        color: #afb1b3;
        line-height: 19px;
        font-size: 13px;
        text-align: center;
        opacity: 1;
        background: none;
        transition: transform 0.3s ease, color 0.3s ease; }
    .nav-sub .fsNavLevel2 li.menu-open > a {
      color: #414141; }
    .nav-sub .fsNavLevel2 li.menu-open > .menu-toggle:before {
      content: '\f068'; }
  .nav-sub ul.fsNavLevel3 {
    margin-top: 0;
    padding-bottom: 23px; }
    .nav-sub ul.fsNavLevel3 li a {
      padding-top: 1px;
      padding-bottom: 0px;
      font-size: 13px;
      line-height: 22px;
      text-transform: uppercase; }
    .nav-sub ul.fsNavLevel3 ul {
      padding-top: 5px;
      padding-bottom: 5px; }
    .nav-sub ul.fsNavLevel3 > li > a {
      padding-left: 61px; }
    .nav-sub ul.fsNavLevel3 .menu-toggle {
      top: -8px; }
  .nav-sub ul.fsNavLevel4 > li > a {
    padding-left: 81px; }
  .nav-sub ul.fsNavLevel5 > li > a {
    padding-left: 101px; }

.nav-sub-mobile {
  display: block;
  padding-left: 0;
  padding-right: 0;
  background-color: transparent;
  opacity: 0; }
  main .nav-sub-mobile {
    margin-bottom: 0; }
  .nav-sub-mobile.element-loaded {
    opacity: 1; }
  .fsComposeMode .nav-sub-mobile {
    opacity: 1; }
  @media (max-width: 399px) {
    .nav-sub-mobile {
      width: calc(100% + 20px);
      margin-left: -10px;
      margin-right: -10px; } }
  @media (min-width: 1000px) {
    .nav-sub-mobile {
      display: none; } }
  .nav-sub-mobile .menu-toggle {
    display: block;
    width: 52px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    transition: transform 0.3s ease; }
    .nav-sub-mobile .menu-toggle:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none;
      display: block;
      width: 18px;
      height: 18px;
      margin: 0px;
      padding-top: 1px;
      padding-left: 0px;
      border-radius: 4px;
      position: absolute;
      top: 14px;
      left: 26px;
      color: #ffffff;
      font-size: 14px;
      line-height: 18px;
      text-align: center;
      -ms-transform-origin: 50% 50% 0px;
      transform-origin: 50% 50% 0px;
      background-color: #fdb913; }
  .nav-sub-mobile .fsNavLevel1 > li {
    border: 2px solid #e7e7e7;
    border-radius: 6px; }
    .nav-sub-mobile .fsNavLevel1 > li.fsNavCurrentPage, .nav-sub-mobile .fsNavLevel1 > li.fsNavCurrentPageAncestor {
      margin-bottom: 45px; }
      @media (max-width: 799px) {
        .nav-sub-mobile .fsNavLevel1 > li.fsNavCurrentPage, .nav-sub-mobile .fsNavLevel1 > li.fsNavCurrentPageAncestor {
          margin-top: -20px;
          margin-bottom: 25px; } }
    .nav-sub-mobile .fsNavLevel1 > li.menu-open > a {
      color: #414141; }
    .nav-sub-mobile .fsNavLevel1 > li.menu-open > .menu-toggle:before {
      content: '\f068'; }
    .nav-sub-mobile .fsNavLevel1 > li.fsNavParentPage > a {
      padding-right: 0; }
    .nav-sub-mobile .fsNavLevel1 > li > a {
      display: block;
      padding: 14px 35px 12px 24px;
      position: relative;
      color: #414141;
      font-size: 15px;
      line-height: 20px;
      text-transform: uppercase;
      font-weight: 700;
      letter-spacing: 0.04em;
      font-family: "semplicitapro", sans-serif;
      background-color: transparent; }
    .nav-sub-mobile .fsNavLevel1 > li > .menu-toggle {
      right: 5px; }
    .nav-sub-mobile .fsNavLevel1 > li > .fsNavPageInfo {
      display: none;
      background: none; }
  .nav-sub-mobile ul.fsNavLevel2 {
    margin-top: 5px;
    padding: 8px 0 28px 0;
    position: relative; }
    .nav-sub-mobile ul.fsNavLevel2:before {
      display: block;
      content: '';
      height: 2px;
      position: absolute;
      top: -5px;
      left: 13px;
      right: 13px;
      background-color: #e5e5e5; }
    .nav-sub-mobile ul.fsNavLevel2 li.fsNavCurrentPage > a, .nav-sub-mobile ul.fsNavLevel2 li.fsNavCurrentPageAncestor > a {
      color: #ee3224; }
    .nav-sub-mobile ul.fsNavLevel2 li a {
      padding: 5px 25px 4px 22px;
      border: 0;
      color: #414141;
      font-size: 15px;
      line-height: 22px; }
      .nav-sub-mobile ul.fsNavLevel2 li a:hover {
        color: #000000; }
      .nav-sub-mobile ul.fsNavLevel2 li a:after {
        content: '';
        display: block;
        position: absolute;
        left: 25px;
        right: 25px;
        bottom: 0; }
    .nav-sub-mobile ul.fsNavLevel2 li > .menu-toggle {
      right: 2px; }
      .nav-sub-mobile ul.fsNavLevel2 li > .menu-toggle:before {
        top: 8px; }
    .nav-sub-mobile ul.fsNavLevel2 > li ul li a:after {
      display: none; }
  .nav-sub-mobile ul.fsNavLevel3 {
    padding-bottom: 13px; }
    .nav-sub-mobile ul.fsNavLevel3 li a {
      padding-top: 3px;
      padding-bottom: 3px;
      color: #808080;
      font-size: 14px;
      line-height: 22px;
      font-weight: bold;
      text-transform: none; }
    .nav-sub-mobile ul.fsNavLevel3 ul {
      padding-top: 3px;
      padding-bottom: 5px; }
    .nav-sub-mobile ul.fsNavLevel3 > li > a {
      padding-left: 40px; }
    .nav-sub-mobile ul.fsNavLevel3 .menu-toggle {
      top: -3px; }
  .nav-sub-mobile ul.fsNavLevel4 li a {
    padding-top: 3px;
    padding-bottom: 3px;
    color: #999999;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    text-transform: none; }
    .nav-sub-mobile ul.fsNavLevel4 li a:hover {
      color: #000000; }
  .nav-sub-mobile ul.fsNavLevel4 > li > a {
    padding-left: 60px; }
  .nav-sub-mobile ul.fsNavLevel5 > li > a {
    padding-left: 80px;
    font-weight: 400; }

.nav-site-map .fsElementContent nav ul {
  margin: 0 0 0 20px;
  padding: 0; }
  .nav-site-map .fsElementContent nav ul li {
    margin: 0;
    padding: 0;
    font-weight: 400; }
  .nav-site-map .fsElementContent nav ul.fsNavLevel1 {
    margin-left: 0;
    list-style: none; }
    @media (min-width: 600px) {
      .nav-site-map .fsElementContent nav 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 .fsElementContent nav ul.fsNavLevel1 li {
          page-break-inside: avoid;
          break-inside: avoid-column; }
        .no-csscolumns .nav-site-map .fsElementContent nav ul.fsNavLevel1 li {
          float: left;
          display: block;
          width: 100%;
          vertical-align: top; } }
    .nav-site-map .fsElementContent nav ul.fsNavLevel1 > li {
      margin-bottom: 20px;
      font-weight: 700; }
  .nav-site-map .fsElementContent nav ul.fsNavLevel2 {
    list-style: disc; }
  .nav-site-map .fsElementContent nav ul.fsNavLevel3 {
    list-style: circle; }
  .nav-site-map .fsElementContent nav ul.fsNavLevel4 {
    list-style: square; }
  .nav-site-map .fsElementContent nav ul.fsNavLevel5 {
    list-style: disc; }

/*! Navigation - Social */
.nav-social .fsNavLevel1 {
  font-size: 0; }
  .nav-social .fsNavLevel1, .nav-social .fsNavLevel1 ul {
    margin: 0;
    padding: 0;
    list-style: none; }
  .nav-social .fsNavLevel1 li {
    margin: 0;
    padding: 0; }
  .nav-social .fsNavLevel1 li {
    display: inline-block; }
    .nav-social .fsNavLevel1 li:not(:last-child) {
      margin-right: 10px; }
  .nav-social .fsNavLevel1 [href*='facebook']:before {
    content: "";
    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*='facebook']:hover {
    background: #3b5998;
    border-color: #3b5998; }
    .nav-social .fsNavLevel1 [href*='facebook']:hover:before {
      color: #fff; }
  .nav-social .fsNavLevel1 [href*='instagram']:hover {
    background: #3f729b;
    border-color: #3f729b; }
    .nav-social .fsNavLevel1 [href*='instagram']:hover:before {
      color: #fff; }
  .nav-social .fsNavLevel1 [href*='linkedin']:hover {
    background: #0077b5;
    border-color: #0077b5; }
    .nav-social .fsNavLevel1 [href*='linkedin']:hover:before {
      color: #fff; }
  .nav-social .fsNavLevel1 [href*='pinterest']:hover {
    background: #cc2127;
    border-color: #cc2127; }
    .nav-social .fsNavLevel1 [href*='pinterest']:hover:before {
      color: #fff; }
  .nav-social .fsNavLevel1 [href*='tumblr']:hover {
    background: #35465c;
    border-color: #35465c; }
    .nav-social .fsNavLevel1 [href*='tumblr']:hover:before {
      color: #fff; }
  .nav-social .fsNavLevel1 [href*='twitter']:hover {
    background: #55acee;
    border-color: #55acee; }
    .nav-social .fsNavLevel1 [href*='twitter']:hover:before {
      color: #fff; }
  .nav-social .fsNavLevel1 [href*='vimeo']:hover {
    background: #1ab7ea;
    border-color: #1ab7ea; }
    .nav-social .fsNavLevel1 [href*='vimeo']:hover:before {
      color: #fff; }
  .nav-social .fsNavLevel1 [href*='vine']:hover {
    background: #00b488;
    border-color: #00b488; }
    .nav-social .fsNavLevel1 [href*='vine']:hover:before {
      color: #fff; }
  .nav-social .fsNavLevel1 [href*='youtube']:hover {
    background: #cd201f;
    border-color: #cd201f; }
    .nav-social .fsNavLevel1 [href*='youtube']:hover:before {
      color: #fff; }
  .nav-social .fsNavLevel1 [href*='rss']:hover {
    background: #f26522;
    border-color: #f26522; }
    .nav-social .fsNavLevel1 [href*='rss']:hover:before {
      color: #fff; }
  .nav-social .fsNavLevel1 a {
    display: block;
    position: relative;
    border: 1px solid #163052;
    background: #FFF;
    height: 30px;
    width: 30px;
    border-radius: 100%; }
    .nav-social .fsNavLevel1 a:before {
      color: #163052;
      font-size: 16px;
      transition: 0.3s all;
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }

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

.nav-header-tier ul.fsNavLevel1 {
  zoom: 1;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-left: -15px;
  margin-right: -15px; }
  .nav-header-tier ul.fsNavLevel1:after {
    display: table;
    clear: both;
    content: ''; }
  .nav-header-tier ul.fsNavLevel1 > li {
    float: left;
    margin-left: 15px;
    margin-right: 15px; }
    .nav-header-tier ul.fsNavLevel1 > li > a {
      line-height: 30px; }
    .nav-header-tier ul.fsNavLevel1 > li.fsNavParentPage {
      padding-right: 11px;
      position: relative; }
      .nav-header-tier ul.fsNavLevel1 > li.fsNavParentPage:after {
        content: "";
        font-family: "IcoMoon";
        font-smoothing: antialiased;
        font-weight: normal;
        speak: none;
        display: block;
        color: #afb1b3;
        font-size: 12px;
        position: absolute;
        top: 3px;
        right: 0; }
    .nav-header-tier ul.fsNavLevel1 > li:hover > .fsNavPageInfo {
      display: block;
      max-height: 300px;
      opacity: 1; }
    .nav-header-tier ul.fsNavLevel1 > li.nav-header-link > a {
      pointer-events: none; }
    .nav-header-tier ul.fsNavLevel1 > li.fsNavCurrentPage > a, .nav-header-tier ul.fsNavLevel1 > li.fsNavCurrentPageAncestor > a {
      color: #ee3224; }

.nav-header-tier a {
  display: block;
  color: #5e7075;
  font-size: 15px;
  line-height: 18px;
  font-family: "fira-sans", sans-serif;
  font-weight: 600;
  text-transform: none; }
  .nav-header-tier a:hover {
    color: #231f20; }

.nav-header-util {
  padding-bottom: 17px; }
  .nav-header-util ul, .nav-header-util li {
    list-style: none;
    padding: 0;
    margin: 0; }
  .nav-header-util ul.fsNavLevel1 {
    zoom: 1; }
    .nav-header-util ul.fsNavLevel1:after {
      display: table;
      clear: both;
      content: ''; }
    .nav-header-util ul.fsNavLevel1 > li {
      float: left;
      margin-left: 44px; }
      .nav-header-util ul.fsNavLevel1 > li > a {
        line-height: 32px; }
      .nav-header-util ul.fsNavLevel1 > li.fsNavParentPage {
        padding-right: 11px;
        position: relative; }
        .nav-header-util ul.fsNavLevel1 > li.fsNavParentPage:after {
          content: "";
          font-family: "IcoMoon";
          font-smoothing: antialiased;
          font-weight: normal;
          speak: none;
          display: block;
          color: #afb1b3;
          font-size: 12px;
          position: absolute;
          top: 3px;
          right: 0; }
      .nav-header-util ul.fsNavLevel1 > li:hover > .fsNavPageInfo {
        display: block;
        max-height: 300px;
        opacity: 1; }
      .nav-header-util ul.fsNavLevel1 > li.nav-header-link > a {
        pointer-events: none; }
      .nav-header-util ul.fsNavLevel1 > li:first-of-type {
        margin-left: 0; }
  .nav-header-util a {
    display: block;
    color: #06347a;
    font-size: 13px;
    line-height: 25px;
    font-family: "semplicitapro", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.01em; }
    .nav-header-util a:hover {
      color: #ee3224; }
  .nav-header-util .fsNavPageInfo {
    max-height: 0;
    overflow: hidden;
    width: 200px;
    position: absolute;
    top: 100%;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 399;
    text-align: center;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1) 0.1s, opacity 0.3s ease;
    opacity: 0;
    background-color: #ffffff; }
    .nav-header-util .fsNavPageInfo > .fsNavLevel2 {
      border: 2px solid #cccccc;
      padding: 20px; }
      .nav-header-util .fsNavPageInfo > .fsNavLevel2 a {
        font-family: "fira-sans", sans-serif;
        text-transform: none; }
      .nav-header-util .fsNavPageInfo > .fsNavLevel2 .fsNavPageInfo {
        display: none; }

.nav-header-other ul, .nav-header-other li {
  list-style: none;
  padding: 0;
  margin: 0; }

.nav-header-other ul.fsNavLevel1 {
  zoom: 1; }
  .nav-header-other ul.fsNavLevel1:after {
    display: table;
    clear: both;
    content: ''; }
  .nav-header-other ul.fsNavLevel1 > li {
    float: left;
    margin-left: 44px; }

.nav-header-other li.nav-request-info a {
  padding-left: 20px;
  position: relative; }
  .nav-header-other li.nav-request-info a:before {
    content: "";
    font-family: "IcoMoon";
    font-smoothing: antialiased;
    font-weight: normal;
    speak: none;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 15px; }
  .nav-header-other li.nav-request-info a:hover {
    color: #06347a; }

.nav-header-other a {
  display: block;
  color: #ee3224;
  font-size: 13px;
  line-height: 32px;
  font-family: "semplicitapro", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em; }
  .nav-header-other a:hover {
    color: #ee3224; }

/*! elements - constituent main */
/*! elements - constituent search */
.fsConstituent.fsSearch {
  margin: 0;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #dddedf; }
  @media (min-width: 800px) {
    .fsConstituent.fsSearch > .fsElementContent {
      margin: 0 -10px; } }
  .fsConstituent.fsSearch label {
    display: block;
    margin-bottom: 1.25em; }
    @media (min-width: 800px) {
      .fsConstituent.fsSearch label {
        display: inline-block;
        vertical-align: top;
        width: 49.5%;
        padding: 0 10px; } }
    @media (min-width: 900px) {
      .fsConstituent.fsSearch label {
        width: 32.83333%; } }
  .fsConstituent.fsSearch input,
  .fsConstituent.fsSearch select {
    display: block;
    width: 100%; }
  .fsConstituent.fsSearch [type*='submit'] {
    width: auto; }
    @media (min-width: 800px) {
      .fsConstituent.fsSearch [type*='submit'] {
        margin-left: 0.625em; } }
  .fsConstituent.fsSearch .fsConstituentSearchButton {
    display: inline-block;
    min-width: 200px;
    margin: 0 0 20px;
    padding: 7px 20px 6px;
    outline: 0;
    border: 2px solid #1c1c1c;
    border-radius: 200px;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    text-align: center;
    font-family: "semplicitapro", sans-serif;
    font-weight: 700;
    background-color: #1c1c1c;
    transition: all 0.3s ease;
    display: block;
    margin: 0 10px; }
    .fsConstituent.fsSearch .fsConstituentSearchButton:hover {
      border: 2px solid #e5e5e5;
      color: #1c1c1c;
      background: transparent; }
    .fsConstituent.fsSearch .fsConstituentSearchButton.fs_style_36 {
      padding: 26px 45px 23px;
      border-radius: 6px;
      font-size: 17px;
      line-height: 24px;
      letter-spacing: 0.04em;
      font-family: "semplicitapro", sans-serif;
      font-weight: bold;
      text-align: center; }
      .fsConstituent.fsSearch .fsConstituentSearchButton.fs_style_36 em {
        display: block;
        font-size: 14px;
        font-style: normal;
        text-transform: lowercase;
        font-family: "fira-sans", sans-serif;
        letter-spacing: 0;
        font-weight: normal; }

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

/*! elements - constituent profile */
.fsConstituentProfile {
  zoom: 1;
  position: relative; }
  .fsConstituentProfile:after {
    display: table;
    clear: both;
    content: ''; }
  .fsConstituentProfile .fsProfileImage {
    display: block;
    margin-bottom: 20px; }
  .fsConstituentProfile .fsFullName {
    color: #363636; }
  @media (min-width: 1000px) {
    .fsConstituentProfile.fsHasPhoto > div, .fsConstituentProfile.fsHasPhoto > h3 {
      padding: 0;
      padding-left: calc(25% + 20px); } }
  @media (min-width: 600px) {
    .fsConstituentProfile.fsHasPhoto .fsProfileImage {
      float: left;
      padding-right: 20px;
      max-width: 50%; } }
  @media (min-width: 1000px) {
    .fsConstituentProfile.fsHasPhoto .fsProfileImage {
      position: absolute;
      left: 0;
      top: 0;
      max-width: 25%;
      padding: 0;
      float: none; } }
  .fsDialogContent .fsConstituentProfile.fsHasPhoto .fsProfileImage {
    position: relative;
    float: left; }
  @media (min-width: 600px) {
    .fsConstituentProfile:not(.fsHasPhoto) .fsProfileImage {
      float: left;
      padding-right: 20px;
      max-width: 50%; } }
  @media (min-width: 1000px) {
    .fsConstituentProfile:not(.fsHasPhoto) .fsProfileImage {
      max-width: 25%; } }

.fsProfileSection {
  margin-bottom: 1.25em;
  font-size: 16px; }
  .fsProfileSection h4 {
    font-weight: 700;
    font-size: 18px;
    border-bottom: 1px solid #333;
    margin: 0 0 .5em 0;
    padding: 0 0 .5em 0; }
  .fsProfileSection .fsProfileSectionData {
    margin-bottom: 10px;
    padding-bottom: 10px; }
    .fsProfileSection .fsProfileSectionData.fsTitle {
      font-weight: normal;
      font-size: 1em; }

.fsProfileSectionSpecialData > div, .fsProfileSpecialFieldName > div {
  width: auto;
  float: none; }
  @media (min-width: 1000px) {
    .fsProfileSectionSpecialData > div, .fsProfileSpecialFieldName > div {
      float: left; }
      .fsProfileSectionSpecialData > div:first-child, .fsProfileSpecialFieldName > div:first-child {
        width: 25%; }
      .fsProfileSectionSpecialData > div:last-child, .fsProfileSpecialFieldName > div:last-child {
        width: 75%; } }

.fsProfileSectionFieldName,
.fsProfileSectionFieldValue {
  width: auto;
  float: none; }

.fsProfileSectionData.fsLocation, .fsProfileSectionData.fsClassOf, .fsProfileSectionData.fsCurrentGrade, .fsProfileSectionData.fsPersonIDHomeroomteacher {
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0; }

.fsProfileSectionData .fsAddressHome {
  width: 100%;
  float: left; }

@media (min-width: 1000px) {
  .fsBiography .fsProfileSectionFieldName {
    font-weight: bold; }
  .fsBiography .fsProfileSectionFieldName,
  .fsBiography .fsProfileSectionFieldValue {
    float: none;
    width: 100%; } }

.fsProfileSectionData.fsEmployedSince {
  width: 100% !important; }

/*! elements - constituent default layout */
.fsDirectory {
  word-break: break-word;
  margin-bottom: 20px; }
  .fsDirectory .fsConstituentItem {
    padding: 20px 0;
    background-color: #f1f2f2; }
    .fsDirectory .fsConstituentItem > h3, .fsDirectory .fsConstituentItem > div {
      padding-right: 20px;
      padding-left: 20px;
      margin-bottom: 10px;
      padding-top: 0; }
      .fsDirectory .fsConstituentItem > h3:last-child, .fsDirectory .fsConstituentItem > div:last-child {
        margin-bottom: 0; }
    .fsDirectory .fsConstituentItem .fsPhoto img {
      display: block;
      width: 100%; }

.fsConstituentColumnLayout_1 .fsConstituentItem {
  margin: 0;
  margin-bottom: 20px;
  page-break-inside: avoid;
  break-inside: avoid; }

@media (min-width: 800px) {
  .fsConstituentColumnLayout_2 {
    margin: 0 -10px; } }

.fsConstituentColumnLayout_2 .fsConstituentItem {
  width: 100%;
  margin: 0;
  margin-bottom: 20px;
  page-break-inside: avoid;
  break-inside: avoid; }
  @media (min-width: 800px) {
    .fsConstituentColumnLayout_2 .fsConstituentItem {
      width: calc(50% - 20px);
      margin: 0 10px;
      margin-bottom: 20px; } }
  .fsConstituentColumnLayout_2 .fsConstituentItem:nth-child(2n+1) {
    clear: both; }

@media (min-width: 800px) {
  .fsConstituentColumnLayout_3 {
    margin: 0 -10px; } }

.fsConstituentColumnLayout_3 .fsConstituentItem {
  width: 100%;
  margin: 0;
  margin-bottom: 20px;
  page-break-inside: avoid;
  break-inside: avoid; }
  @media (min-width: 800px) {
    .fsConstituentColumnLayout_3 .fsConstituentItem {
      width: calc(50% - 20px);
      float: left;
      margin: 0 10px;
      margin-bottom: 20px; }
      .fsConstituentColumnLayout_3 .fsConstituentItem:nth-child(2n+1) {
        clear: both; } }
  @media (min-width: 900px) {
    .fsConstituentColumnLayout_3 .fsConstituentItem {
      width: calc(33.33% - 20px); }
      .fsConstituentColumnLayout_3 .fsConstituentItem:nth-child(2n+1) {
        clear: none; }
      .fsConstituentColumnLayout_3 .fsConstituentItem:nth-child(3n+1) {
        clear: both; } }

@media (min-width: 800px) {
  .fsConstituentColumnLayout_4 {
    margin: 0 -10px; } }

.fsConstituentColumnLayout_4 .fsConstituentItem {
  width: 100%;
  margin: 0;
  margin-bottom: 20px;
  page-break-inside: avoid;
  break-inside: avoid; }
  @media (min-width: 800px) {
    .fsConstituentColumnLayout_4 .fsConstituentItem {
      width: calc(50% - 20px);
      margin: 0 10px;
      margin-bottom: 20px; }
      .fsConstituentColumnLayout_4 .fsConstituentItem:nth-child(2n+1) {
        clear: both; } }
  @media (min-width: 900px) {
    .fsConstituentColumnLayout_4 .fsConstituentItem {
      width: calc(33.33% - 20px); }
      .fsConstituentColumnLayout_4 .fsConstituentItem:nth-child(2n+1) {
        clear: none; }
      .fsConstituentColumnLayout_4 .fsConstituentItem:nth-child(3n+1) {
        clear: both; } }
  @media (min-width: 1000px) {
    .fsConstituentColumnLayout_4 .fsConstituentItem {
      width: calc(25% - 20px); }
      .fsConstituentColumnLayout_4 .fsConstituentItem:nth-child(3n+1) {
        clear: none; }
      .fsConstituentColumnLayout_4 .fsConstituentItem:nth-child(4n+1) {
        clear: both; } }

/*! elements - accordion */
.fsAccordion .fsPanel, .fsTabs .fsPanel {
  margin: 0; }
  .fsAccordion .fsPanel > header, .fsTabs .fsPanel > header {
    cursor: pointer;
    background-color: transparent;
    transition: all 0.3s ease;
    margin: 0;
    border-top: 1px solid #b7e2e3; }
    .fsAccordion .fsPanel > header h2, .fsTabs .fsPanel > header h2 {
      display: block;
      margin-bottom: 0;
      padding: 8px 19px 10px 19px;
      color: #231f20;
      font-size: 17px;
      line-height: 24px;
      font-weight: 700;
      letter-spacing: 0;
      position: relative;
      transition: none;
      text-transform: none; }
      .fsAccordion .fsPanel > header h2 a, .fsTabs .fsPanel > header h2 a {
        font-weight: bold; }
      .fsAccordion .fsPanel > header h2:before, .fsTabs .fsPanel > header h2:before, .fsAccordion .fsPanel > header h2:after, .fsTabs .fsPanel > header h2:after {
        color: #ffffff;
        transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease; }
    .fsAccordion .fsPanel > header:hover h2:before, .fsTabs .fsPanel > header:hover h2:before, .fsAccordion .fsPanel > header:hover h2:after, .fsTabs .fsPanel > header:hover h2:after {
      background-color: #fdb913 !important; }
  .fsAccordion .fsPanel > .fsElementContent, .fsTabs .fsPanel > .fsElementContent {
    padding: 19px 40px 5px; }

.fsPanelIconBefore.fsAccordion .fsPanel > header h2::before, .fsPanelIconBefore.fsTabs .fsPanel > header h2::before,
.fsPanelIconAfter.fsAccordion .fsPanel > header h2::after,
.fsPanelIconAfter.fsTabs .fsPanel > header h2::after,
.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";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  display: block;
  width: 18px;
  height: 18px;
  margin: 0;
  padding-top: 1px;
  padding-left: 0;
  border: none;
  border-radius: 4px;
  position: absolute;
  top: 12px;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  background-color: #bfd730; }

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

.fsPanelIconBefore.fsAccordion .fsPanel > .fsElementContent, .fsPanelIconBefore.fsTabs .fsPanel > .fsElementContent {
  padding: 4px 19px 11px 38px; }

.fsPanelIconBefore.fsAccordion .fsPanel.fsStateOpen > header h2:before, .fsPanelIconBefore.fsTabs .fsPanel.fsStateOpen > header h2:before {
  content: '\f068' !important;
  background-color: #ee3224 !important; }

.fsPanelIconAfter.fsAccordion .fsPanel > header h2, .fsPanelIconAfter.fsTabs .fsPanel > header h2 {
  padding-right: 39px; }
  .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: 3px; }

.fsPanelIconAfter.fsAccordion .fsPanel > .fsElementContent, .fsPanelIconAfter.fsTabs .fsPanel > .fsElementContent {
  padding: 4px 38px 11px 19px; }

.fsPanelIconAfter.fsAccordion .fsPanel.fsStateOpen > header h2:after, .fsPanelIconAfter.fsTabs .fsPanel.fsStateOpen > header h2:after {
  content: '\f068' !important;
  background-color: #ee3224 !important; }

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

.fsAccordion {
  margin-bottom: 20px; }
  .fsAccordion > .fsElementContent {
    border-bottom: 1px solid #b7e2e3; }

/*! elements - athletics main */
/*! elements - athletics events */
.fsAthleticsEvent {
  margin-bottom: 20px; }
  .fsAthleticsEvent.fsList .fsAlertFeeds {
    margin-bottom: 10px; }
    @media (min-width: 600px) {
      .fsAthleticsEvent.fsList .fsAlertFeeds {
        margin-bottom: 0; } }
  .fsAthleticsEvent.fsList .fsListItems article {
    margin-bottom: 20px; }
  .fsAthleticsEvent.fsList .fsTitle {
    display: inline-block;
    margin-bottom: 0; }
  .fsAthleticsEvent.fsList .fsElementEventIcon {
    margin-right: 10px; }
  .fsAthleticsEvent.fsList .fsAthleticsEventDetailLink {
    outline: 0; }
  .fsAthleticsEvent.fsList .fsAlertIcon {
    margin-left: 5px;
    margin-bottom: -3px; }
  .fsAthleticsEvent.fsList .fsLoadMoreButton {
    display: inline-block;
    min-width: 200px;
    margin: 0 0 20px;
    padding: 7px 20px 6px;
    outline: 0;
    border: 2px solid #1c1c1c;
    border-radius: 200px;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    text-align: center;
    font-family: "semplicitapro", sans-serif;
    font-weight: 700;
    background-color: #1c1c1c;
    transition: all 0.3s ease;
    padding: 10px 20px; }
    .fsAthleticsEvent.fsList .fsLoadMoreButton:hover {
      border: 2px solid #e5e5e5;
      color: #1c1c1c;
      background: transparent; }
    .fsAthleticsEvent.fsList .fsLoadMoreButton.fs_style_36 {
      padding: 26px 45px 23px;
      border-radius: 6px;
      font-size: 17px;
      line-height: 24px;
      letter-spacing: 0.04em;
      font-family: "semplicitapro", sans-serif;
      font-weight: bold;
      text-align: center; }
      .fsAthleticsEvent.fsList .fsLoadMoreButton.fs_style_36 em {
        display: block;
        font-size: 14px;
        font-style: normal;
        text-transform: lowercase;
        font-family: "fira-sans", sans-serif;
        letter-spacing: 0;
        font-weight: normal; }
  .fsAthleticsEvent.fsList .fsAthleticsOpponents {
    display: inline; }
  .fsAthleticsEvent.fsList .fsAthleticsOpponentNames {
    display: inline; }
  .fsAthleticsEvent.fsTable {
    overflow-x: auto; }
    .fsAthleticsEvent.fsTable .fsEventTable td, .fsAthleticsEvent.fsTable table.fsTable td {
      padding: 10px; }

/*! elements - athletics popup modal */
#fsAthleticsEventElementDialog .fsAthleticsEvent.fsAlertIcon {
  margin-left: 5px;
  margin-bottom: -3px; }

/*! elements - athletics roster */
.fsAthleticsRoster {
  margin-bottom: 20px; }

.fsAthleticsRosterContent {
  margin-bottom: 20px; }
  .fsAthleticsRosterContent p:last-child {
    margin-bottom: 0; }
  .fsAthleticsRosterContent:empty {
    margin-bottom: 0; }

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

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

.fsAthleticsRosterList li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #eee; }
  .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; }

.fsRosterPlayerNumber:before {
  content: 'Number: '; }

.fsRosterPosition:before {
  content: 'Position: '; }

.fsRosterHeight:before {
  content: 'Height: '; }

.fsRosterWeight:before {
  content: 'Weight: '; }

.fsRosterBio p:last-child {
  margin-bottom: 0; }

/*! elements - athletics teams */
.fsAthleticsTeam {
  margin-bottom: 20px; }

.fsAthleticsTeamDirectory {
  max-width: 100%;
  margin-bottom: 20px; }
  .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; }

/*! _main.scss - src/sass/modules/calendar/ - main calendar import */
/*! _list.scss - src/sass/modules/calendar/list.scss - calendar list */
.fsCalendar article {
  min-height: 80px;
  padding-left: 100px;
  padding-top: 0;
  position: relative; }
  .fsCalendar article .fsElementEventColorIcon {
    width: 12px;
    height: 12px; }

.fsCalendar .fsDate {
  padding-bottom: 5px;
  border-radius: 100px;
  position: absolute;
  top: 8px;
  left: 0;
  text-align: center;
  height: 80px;
  width: 80px;
  color: #ffffff;
  background: #bfd730;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center; }
  .fsCalendar .fsDate > span {
    display: block; }
    .fsCalendar .fsDate > span.fsMonth {
      padding-bottom: 3px;
      font-size: 13px;
      line-height: 20px;
      font-weight: bold;
      letter-spacing: 0.04em;
      font-family: "semplicitapro", sans-serif;
      text-transform: uppercase; }
    .fsCalendar .fsDate > span.fsDay {
      font-size: 26px;
      line-height: 20px;
      font-weight: bold;
      font-family: "semplicitapro", sans-serif; }

.fsCalendar > header {
  position: relative;
  padding-right: 50px; }
  .fsCalendar > header > .fsElementTitle {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.04em;
    text-transform: uppercase; }

.fsCalendar .fsElementControls {
  margin: 0; }

.fsCalendar .fsAlertFeeds {
  right: 0;
  top: 6px; }

.fsCalendar article {
  border-top: 2px solid rgba(35, 31, 32, 0.1); }
  .fsCalendar article:first-of-type {
    border-top: 0; }

.fsCalendar > footer {
  padding-top: 4px;
  border-top: 2px solid rgba(35, 31, 32, 0.1); }
  .fsCalendar > footer .fs_style_40 {
    color: #a3a8ad;
    font-size: 11px;
    font-family: "semplicitapro", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.08em; }

.fsCalendar article {
  min-height: 80px;
  padding-top: 19px;
  padding-top: 22px; }

.fsCalendar .fsTitle {
  padding-bottom: 4px;
  color: #231f20;
  font-size: 17px;
  line-height: 24px;
  font-weight: bold;
  letter-spacing: -0.01em; }
  .fsCalendar .fsTitle a {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit; }

.fsCalendar .fsEventDetails {
  color: rgba(35, 31, 32, 0.5);
  font-size: 13px;
  line-height: 22px;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-family: "semplicitapro", sans-serif; }

.fsCalendar .fsNotes p:last-child, .fsCalendar .fsDescription p:last-child {
  margin-bottom: 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) {
  .flexbox .fsCalendarEventGrid .fsCalendarRow {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    align-items: stretch; }
  .flexbox .fsCalendarEventGrid .fsCalendarDaybox {
    height: auto !important; } }

.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(54, 54, 54, 0.15); }
      .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox.fsCalendarOutOfRange {
        background-color: rgba(54, 54, 54, 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(54, 54, 54, 0.25); }
      .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox.selected {
        background-color: rgba(54, 54, 54, 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;
    min-width: 200px;
    margin: 0 0 20px;
    padding: 7px 20px 6px;
    outline: 0;
    border: 2px solid #1c1c1c;
    border-radius: 200px;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    text-align: center;
    font-family: "semplicitapro", sans-serif;
    font-weight: 700;
    background-color: #1c1c1c;
    transition: all 0.3s ease;
    padding: 10px 20px; }
    .scroll-up span:hover {
      border: 2px solid #e5e5e5;
      color: #1c1c1c;
      background: transparent; }
    .scroll-up span.fs_style_36 {
      padding: 26px 45px 23px;
      border-radius: 6px;
      font-size: 17px;
      line-height: 24px;
      letter-spacing: 0.04em;
      font-family: "semplicitapro", sans-serif;
      font-weight: bold;
      text-align: center; }
      .scroll-up span.fs_style_36 em {
        display: block;
        font-size: 14px;
        font-style: normal;
        text-transform: lowercase;
        font-family: "fira-sans", sans-serif;
        letter-spacing: 0;
        font-weight: normal; }
  .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%; } }

/*! _slideshow.scss - src/sass/modules/calendar/slideshow.scss - calendar slideshow */
/*! _event.scss - src/sass/modules/calendar/event.scss - calendar event */
/*! elements - common v0.0.1 */
/* Contains generic styles that apply to every element */
.fsElementTitle p {
  margin-bottom: 0; }

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

.module, .module-light, .module-dark {
  margin-bottom: 20px;
  padding: 28px 29px 33px;
  color: #4c4c4c;
  font-size: 14px;
  line-height: 25px; }
  .module > header > .fsElementTitle, .module-light > header > .fsElementTitle, .module-dark > header > .fsElementTitle {
    margin-bottom: 12px;
    color: #231f20;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.04em;
    text-transform: uppercase; }
  .module > .fsElementContent > *:last-child, .module-light > .fsElementContent > *:last-child, .module-dark > .fsElementContent > *:last-child {
    margin-bottom: 0; }

.module {
  padding: 0; }

.module-light {
  background-color: #f2f2f2; }
  .module-light .fsElementContent p:last-child {
    margin: 0; }
    .module-light .fsElementContent p:last-child span {
      margin: 0; }
  .module-light .fsElementContent .fsListItems article:last-child {
    padding-bottom: 0; }
  .module-light footer p {
    margin: 0; }
  .module-light footer a {
    margin: 0; }
  .module-light footer .fs_style_31 {
    bottom: 0; }

.module-dark {
  color: rgba(255, 255, 255, 0.75);
  background-color: #00b2b0; }
  .module-dark > header > .fsElementTitle {
    color: #ffffff; }

.fsHasAlertFeeds.fsCalendar header, .fsHasAlertFeeds.fsNews header {
  position: relative;
  padding-right: 50px;
  padding-bottom: 8px; }

.fsHasAlertFeeds.fsCalendar .fsElementControls, .fsHasAlertFeeds.fsNews .fsElementControls {
  margin: 0; }

.fsHasAlertFeeds.fsCalendar .fsAlertFeeds, .fsHasAlertFeeds.fsNews .fsAlertFeeds {
  position: absolute;
  right: 0;
  bottom: 14px;
  float: none; }

.styled.fsCalendar header .fsElementTitle, .styled.fsNews header .fsElementTitle {
  color: #ee3224;
  font-size: 22px;
  line-height: 30px; }

.styled.fsCalendar footer .fs_style_31, .styled.fsNews footer .fs_style_31 {
  padding-right: 9px;
  position: relative;
  color: #bfbfbf;
  font-size: 13px;
  font-weight: bold;
  line-height: 25px;
  letter-spacing: 0.04em;
  text-transform: uppercase; }
  .styled.fsCalendar footer .fs_style_31:after, .styled.fsNews footer .fs_style_31:after {
    content: "";
    font-family: "IcoMoon";
    font-smoothing: antialiased;
    font-weight: normal;
    speak: none;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    color: #bfbfbf;
    font-size: 12px;
    line-height: 18px; }

body:not(.fsComposeMode) .panel-full-width {
  max-width: 0;
  margin: 0 auto; }
  body:not(.fsComposeMode) .panel-full-width > footer,
  body:not(.fsComposeMode) .panel-full-width > header,
  body:not(.fsComposeMode) .panel-full-width > .fsElementContent {
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw; }
  body:not(.fsComposeMode) .panel-full-width.fsSharedContainer > .fsContainer {
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw; }
  body:not(.fsComposeMode) .panel-full-width.panel-background > .fsElementContent {
    position: relative; }
    body:not(.fsComposeMode) .panel-full-width.panel-background > .fsElementContent > .fsElementBackground {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-position: center center;
      background-size: cover; }

body:not(.fsComposeMode) .panel-full-boundry > .fsElementContent {
  padding: 0 20px; }
  body:not(.fsComposeMode) .panel-full-boundry > .fsElementContent > .fsElement {
    position: relative;
    margin: 0 auto;
    max-width: 73.75em;
    max-width: 73.75rem; }

body:not(.fsComposeMode) .panel-full-boundry.fsSharedContainer > .fsContainer > .fsElementContent {
  position: relative;
  margin: 0 auto;
  max-width: 73.75em;
  max-width: 73.75rem; }

.hero-image {
  position: relative;
  background-color: #ffffff; }
  .hero-image > header {
    display: none; }
  .hero-image > footer {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 101;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center; }
    @media (min-width: 900px) {
      .hero-image > footer {
        display: block; } }
    .hero-image > footer .scroll-to {
      width: 80px;
      height: 70px;
      padding-top: 17px;
      color: #ffffff;
      font-size: 13px;
      letter-spacing: 0.04em;
      font-weight: 600;
      text-transform: uppercase;
      cursor: pointer; }
      .hero-image > footer .scroll-to:before {
        content: "";
        font-family: "IcoMoon";
        font-smoothing: antialiased;
        font-weight: normal;
        speak: none;
        display: block;
        position: absolute;
        left: 50%;
        bottom: 7px;
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        color: #ffffff;
        font-size: 20px; }
  .hero-image.fsMedia, .hero-image.fsResourceElement {
    display: block;
    opacity: 0; }
    .hero-image.fsMedia.element-loaded, .hero-image.fsResourceElement.element-loaded {
      opacity: 1; }
      .hero-image.fsMedia.element-loaded .fsElementSlideshow:before,
      .hero-image.fsMedia.element-loaded .fsMediaCustomPlayer:before, .hero-image.fsResourceElement.element-loaded .fsElementSlideshow:before,
      .hero-image.fsResourceElement.element-loaded .fsMediaCustomPlayer:before {
        display: none; }
    .fsComposeMode .hero-image.fsMedia, .fsComposeMode .hero-image.fsResourceElement {
      opacity: 1; }
    .hero-image.fsMedia .fsElementContent, .hero-image.fsResourceElement .fsElementContent {
      position: relative; }
    .hero-image.fsMedia .fsMediaCustomPlayer, .hero-image.fsResourceElement .fsMediaCustomPlayer {
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover; }
      .hero-image.fsMedia .fsMediaCustomPlayer:before, .hero-image.fsResourceElement .fsMediaCustomPlayer:before {
        content: '';
        display: block;
        width: 100%;
        padding-bottom: 71.61458%; }
    .hero-image.fsMedia article, .hero-image.fsResourceElement article {
      min-height: 170px;
      max-height: 590px;
      overflow: hidden; }
      .hero-image.fsMedia article:after, .hero-image.fsResourceElement article:after {
        content: '';
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 100;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0px, transparent 180px); }
        @media (min-width: 900px) {
          .hero-image.fsMedia article:after, .hero-image.fsResourceElement article:after {
            display: block; } }
    .hero-image.fsMedia .caption-wrapper, .hero-image.fsResourceElement .caption-wrapper {
      display: none;
      width: 100%;
      max-width: 600px;
      padding: 0;
      position: absolute;
      top: 50%;
      left: 50%;
      right: auto;
      bottom: auto;
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      z-index: 101;
      text-align: center;
      background-color: rgba(0, 13, 38, 0.6);
      background: none; }
      @media (min-width: 900px) {
        .hero-image.fsMedia .caption-wrapper, .hero-image.fsResourceElement .caption-wrapper {
          display: block; } }
      @media (min-width: 1000px) {
        .hero-image.fsMedia .caption-wrapper, .hero-image.fsResourceElement .caption-wrapper {
          max-width: 600px; } }
    .hero-image.fsMedia .caption-title, .hero-image.fsResourceElement .caption-title {
      color: #ffffff;
      font-size: 55px;
      line-height: 65px;
      letter-spacing: -0.01em;
      font-weight: bold;
      text-transform: none;
      text-shadow: 1px 3px 1px #000; }
    .hero-image.fsMedia .caption-title + .caption-desc, .hero-image.fsResourceElement .caption-title + .caption-desc {
      padding-top: 12px; }
    .hero-image.fsMedia .caption-desc, .hero-image.fsResourceElement .caption-desc {
      color: #ffffff;
      font-size: 16px;
      line-height: 25px; }
      .hero-image.fsMedia .caption-desc > *:last-child, .hero-image.fsResourceElement .caption-desc > *:last-child {
        margin-bottom: 0; }
      .hero-image.fsMedia .caption-desc a[class*="fs_style"]:hover, .hero-image.fsResourceElement .caption-desc a[class*="fs_style"]:hover {
        color: #ffffff; }
    .hero-image.fsMedia .slick-dots, .hero-image.fsResourceElement .slick-dots {
      zoom: 1;
      display: none !important;
      position: absolute;
      left: auto;
      right: 53px;
      bottom: 69px;
      display: block;
      margin: 0;
      padding: 0;
      list-style: none; }
      .hero-image.fsMedia .slick-dots:after, .hero-image.fsResourceElement .slick-dots:after {
        display: table;
        clear: both;
        content: ''; }
      @media (min-width: 900px) {
        .hero-image.fsMedia .slick-dots, .hero-image.fsResourceElement .slick-dots {
          display: block !important; } }
      .hero-image.fsMedia .slick-dots li, .hero-image.fsResourceElement .slick-dots li {
        float: left;
        display: block;
        list-style: none; }
        .hero-image.fsMedia .slick-dots li.slick-active button:before, .hero-image.fsResourceElement .slick-dots li.slick-active button:before {
          background-color: white; }
        .hero-image.fsMedia .slick-dots li button, .hero-image.fsResourceElement .slick-dots li button {
          display: block;
          width: 17px;
          height: 17px;
          -webkit-appearance: none;
          -moz-appearance: none;
          appearance: none;
          border: 0;
          outline: 0;
          font-size: 1px;
          color: transparent;
          background: none; }
          .hero-image.fsMedia .slick-dots li button:before, .hero-image.fsResourceElement .slick-dots li button:before {
            display: block;
            content: '';
            width: 9px;
            height: 9px;
            border-radius: 20px;
            background-color: rgba(255, 255, 255, 0.25);
            box-shadow: 0 0 2px 2px rgba(50, 50, 50, 0.15);
            transition: background 0.3s ease; }
    .hero-image.fsMedia.fsSlideshow .fsElementSlideshow, .hero-image.fsResourceElement.fsSlideshow .fsElementSlideshow {
      margin-bottom: 0; }
      .hero-image.fsMedia.fsSlideshow .fsElementSlideshow .fsElementSlideshowControls, .hero-image.fsResourceElement.fsSlideshow .fsElementSlideshow .fsElementSlideshowControls {
        display: none; }
      .hero-image.fsMedia.fsSlideshow .fsElementSlideshow .fsPager, .hero-image.fsResourceElement.fsSlideshow .fsElementSlideshow .fsPager {
        position: absolute;
        bottom: auto; }
        @media (min-width: 700px) {
          .hero-image.fsMedia.fsSlideshow .fsElementSlideshow .fsPager, .hero-image.fsResourceElement.fsSlideshow .fsElementSlideshow .fsPager {
            bottom: 0; } }
        .hero-image.fsMedia.fsSlideshow .fsElementSlideshow .fsPager li.slick-active button, .hero-image.fsResourceElement.fsSlideshow .fsElementSlideshow .fsPager li.slick-active button {
          background: #fdb913 !important; }
        .hero-image.fsMedia.fsSlideshow .fsElementSlideshow .fsPager li button, .hero-image.fsResourceElement.fsSlideshow .fsElementSlideshow .fsPager li button {
          border-radius: 100%;
          background: #b4babf; }
          .hero-image.fsMedia.fsSlideshow .fsElementSlideshow .fsPager li button::before, .hero-image.fsResourceElement.fsSlideshow .fsElementSlideshow .fsPager li button::before {
            content: none; }
          .hero-image.fsMedia.fsSlideshow .fsElementSlideshow .fsPager li button:hover, .hero-image.fsResourceElement.fsSlideshow .fsElementSlideshow .fsPager li button:hover {
            background: #00b2b0; }
          @media (min-width: 700px) {
            .hero-image.fsMedia.fsSlideshow .fsElementSlideshow .fsPager li button, .hero-image.fsResourceElement.fsSlideshow .fsElementSlideshow .fsPager li button {
              background: #eee; } }
    .hero-image.fsMedia.fsSlideshow article, .hero-image.fsResourceElement.fsSlideshow article {
      padding: 0;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;
      height: 350px;
      min-height: none;
      max-height: none; }
      @media (min-width: 900px) {
        .hero-image.fsMedia.fsSlideshow article, .hero-image.fsResourceElement.fsSlideshow article {
          height: 590px; } }
      .hero-image.fsMedia.fsSlideshow article:before, .hero-image.fsResourceElement.fsSlideshow article:before {
        display: none !important; }
      .hero-image.fsMedia.fsSlideshow article:after, .hero-image.fsResourceElement.fsSlideshow article:after {
        height: auto;
        visibility: visible; }
      .hero-image.fsMedia.fsSlideshow article img, .hero-image.fsResourceElement.fsSlideshow article img {
        visibility: hidden;
        opacity: 0;
        display: none; }
      .hero-image.fsMedia.fsSlideshow article video, .hero-image.fsResourceElement.fsSlideshow article video {
        -o-object-fit: cover;
        object-fit: cover;
        height: 100%;
        -o-object-position: 50% 40%;
        object-position: 50% 40%; }
        .hero-image.fsMedia.fsSlideshow article video + .fsTitle,
        .hero-image.fsMedia.fsSlideshow article video + .fsTitle + .fsDescription, .hero-image.fsResourceElement.fsSlideshow article video + .fsTitle,
        .hero-image.fsResourceElement.fsSlideshow article video + .fsTitle + .fsDescription {
          display: none; }
  .hero-image.fsContent {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0; }
    .hero-image.fsContent.element-loaded {
      opacity: 1; }
    .fsComposeMode .hero-image.fsContent {
      opacity: 1; }
    .hero-image.fsContent:before {
      display: block;
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(35, 31, 32, 0.3); }
    .hero-image.fsContent > header {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-flow: row wrap;
      flex-flow: row wrap;
      -ms-flex-pack: center;
      justify-content: center;
      -ms-flex-align: center;
      align-items: center;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; }
      .hero-image.fsContent > header > .fsElementTitle {
        color: #ffffff;
        text-transform: uppercase;
        font-size: 60px;
        line-height: normal;
        font-family: "semplicitapro", sans-serif;
        letter-spacing: 0.24em; }
      .hero-image.fsContent > header > .fsElementHeaderContent {
        display: none; }
    .hero-image.fsContent .fsElementContent {
      min-height: 320px;
      max-height: 440px; }
      .hero-image.fsContent .fsElementContent:before {
        display: block;
        content: '';
        width: 100%;
        padding-bottom: 36.80556%; }
  body.fsDraftMode .fsContent.hero-image .fsElementContent, body.fsComposeMode .fsContent.hero-image .fsElementContent {
    pointer-events: none; }
    body.fsDraftMode .fsContent.hero-image .fsElementContent .fsContentOverlay,
    body.fsDraftMode .fsContent.hero-image .fsElementContent .fsEditable,
    body.fsDraftMode .fsContent.hero-image .fsElementContent .redactor-box, body.fsComposeMode .fsContent.hero-image .fsElementContent .fsContentOverlay,
    body.fsComposeMode .fsContent.hero-image .fsElementContent .fsEditable,
    body.fsComposeMode .fsContent.hero-image .fsElementContent .redactor-box {
      display: none; }
  body.fsDraftMode .fsMedia.hero-image .fsMediaCustomPlayer:before, body.fsComposeMode .fsMedia.hero-image .fsMediaCustomPlayer:before {
    display: none; }
  body.fsDraftMode .hero-image, body.fsComposeMode .hero-image {
    display: block;
    opacity: 1; }

.center-title-page .fsPageLayout > .fsDiv {
  margin: 0; }
  .center-title-page .fsPageLayout > .fsDiv > .fsElement > header,
  .center-title-page .fsPageLayout > .fsDiv > .fsElement.fsContainer > .fsElementContent > .fsElement > header,
  .center-title-page .fsPageLayout > .fsDiv > .fsElement.fsSharedContainer > .fsContainer > header {
    position: relative;
    padding-bottom: 22px; }
    .center-title-page .fsPageLayout > .fsDiv > .fsElement > header > .fsElementTitle,
    .center-title-page .fsPageLayout > .fsDiv > .fsElement.fsContainer > .fsElementContent > .fsElement > header > .fsElementTitle,
    .center-title-page .fsPageLayout > .fsDiv > .fsElement.fsSharedContainer > .fsContainer > header > .fsElementTitle {
      color: #231f20;
      font-size: 32px;
      line-height: 40px;
      text-transform: none;
      letter-spacing: -0.02em;
      text-align: center;
      margin-bottom: 6px; }
      @media (min-width: 600px) {
        .center-title-page .fsPageLayout > .fsDiv > .fsElement > header > .fsElementTitle,
        .center-title-page .fsPageLayout > .fsDiv > .fsElement.fsContainer > .fsElementContent > .fsElement > header > .fsElementTitle,
        .center-title-page .fsPageLayout > .fsDiv > .fsElement.fsSharedContainer > .fsContainer > header > .fsElementTitle {
          font-size: 36px;
          line-height: 44px; } }
  .center-title-page .fsPageLayout > .fsDiv > .fsContent > header {
    text-align: center; }
  .center-title-page .fsPageLayout > .fsDiv > .fsContent > .fsElementContent {
    max-width: 710px;
    margin: 0 auto;
    color: #262626;
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-align: center; }
    @media (min-width: 600px) {
      .center-title-page .fsPageLayout > .fsDiv > .fsContent > .fsElementContent {
        font-size: 21px;
        line-height: 36px; } }
  .center-title-page .fsPageLayout > .fsDiv > .fsContent.panel-default > header {
    padding-bottom: 8px; }
    .center-title-page .fsPageLayout > .fsDiv > .fsContent.panel-default > header > .fsElementTitle {
      margin-bottom: 0; }
  .center-title-page .fsPageLayout > .fsDiv > .fsContent > footer {
    text-align: center; }

/*! elements - forms */
textarea,
input,
select {
  padding: 5px;
  max-width: 100%; }

.fsComposerFormEmbed {
  background: none; }
  .fsComposerFormEmbed form {
    zoom: 1; }
    .fsComposerFormEmbed form:after {
      display: table;
      clear: both;
      content: ''; }
    .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: #00b2b0;
      margin-right: 10px;
      cursor: pointer;
      transition: .3s; }
      .fsComposerFormEmbed form .linkLike:hover {
        color: #06347a; }
    .fsComposerFormEmbed form .required {
      color: #363636; }
    .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: #00b2b0;
        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: #06347a;
          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: #363636 !important;
      text-shadow: none;
      font-size: inherit;
      border: none !important;
      float: left;
      line-height: 1;
      font-family: "semplicitapro", sans-serif;
      font-style: normal;
      font-weight: 700;
      font-size: 14px;
      line-height: 20px;
      background: #06347a !important;
      text-transform: uppercase;
      border-radius: 0; }
      .fsComposerFormEmbed form .submitBtn:hover {
        transition: .3s;
        color: #fff !important;
        background: #ee3224 !important; }
  .fsComposerFormEmbed .ui-widget {
    font-family: "fira-sans", 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: rgba(255, 255, 255, 0.5); }

:-moz-placeholder {
  color: rgba(255, 255, 255, 0.5); }

::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5); }

:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5); }

/*! elements - login */
.fsLogin .fsLoginMainView, .fsLogin .fsLoginForgotView, .fsLogin .fsLoginNewView, .fsAccount .fsLoginMainView, .fsAccount .fsLoginForgotView, .fsAccount .fsLoginNewView {
  zoom: 1; }
  .fsLogin .fsLoginMainView:after, .fsLogin .fsLoginForgotView:after, .fsLogin .fsLoginNewView:after, .fsAccount .fsLoginMainView:after, .fsAccount .fsLoginForgotView:after, .fsAccount .fsLoginNewView:after {
    display: table;
    clear: both;
    content: ''; }
  .fsLogin .fsLoginMainView h3, .fsLogin .fsLoginForgotView h3, .fsLogin .fsLoginNewView h3, .fsAccount .fsLoginMainView h3, .fsAccount .fsLoginForgotView h3, .fsAccount .fsLoginNewView h3 {
    margin-bottom: 20px; }
  .fsLogin .fsLoginMainView span, .fsLogin .fsLoginForgotView span, .fsLogin .fsLoginNewView span, .fsAccount .fsLoginMainView span, .fsAccount .fsLoginForgotView span, .fsAccount .fsLoginNewView span {
    margin-bottom: 2px; }
  .fsLogin .fsLoginMainView .fsLoginSubmit, .fsLogin .fsLoginMainView button, .fsLogin .fsLoginForgotView .fsLoginSubmit, .fsLogin .fsLoginForgotView button, .fsLogin .fsLoginNewView .fsLoginSubmit, .fsLogin .fsLoginNewView button, .fsAccount .fsLoginMainView .fsLoginSubmit, .fsAccount .fsLoginMainView button, .fsAccount .fsLoginForgotView .fsLoginSubmit, .fsAccount .fsLoginForgotView button, .fsAccount .fsLoginNewView .fsLoginSubmit, .fsAccount .fsLoginNewView button {
    display: inline-block;
    min-width: 200px;
    margin: 0 0 20px;
    padding: 7px 20px 6px;
    outline: 0;
    border: 2px solid #1c1c1c;
    border-radius: 200px;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    text-align: center;
    font-family: "semplicitapro", sans-serif;
    font-weight: 700;
    background-color: #1c1c1c;
    transition: all 0.3s ease; }
    .fsLogin .fsLoginMainView .fsLoginSubmit:hover, .fsLogin .fsLoginMainView button:hover, .fsLogin .fsLoginForgotView .fsLoginSubmit:hover, .fsLogin .fsLoginForgotView button:hover, .fsLogin .fsLoginNewView .fsLoginSubmit:hover, .fsLogin .fsLoginNewView button:hover, .fsAccount .fsLoginMainView .fsLoginSubmit:hover, .fsAccount .fsLoginMainView button:hover, .fsAccount .fsLoginForgotView .fsLoginSubmit:hover, .fsAccount .fsLoginForgotView button:hover, .fsAccount .fsLoginNewView .fsLoginSubmit:hover, .fsAccount .fsLoginNewView button:hover {
      border: 2px solid #e5e5e5;
      color: #1c1c1c;
      background: transparent; }
    .fsLogin .fsLoginMainView .fsLoginSubmit.fs_style_36, .fsLogin .fsLoginMainView button.fs_style_36, .fsLogin .fsLoginForgotView .fsLoginSubmit.fs_style_36, .fsLogin .fsLoginForgotView button.fs_style_36, .fsLogin .fsLoginNewView .fsLoginSubmit.fs_style_36, .fsLogin .fsLoginNewView button.fs_style_36, .fsAccount .fsLoginMainView .fsLoginSubmit.fs_style_36, .fsAccount .fsLoginMainView button.fs_style_36, .fsAccount .fsLoginForgotView .fsLoginSubmit.fs_style_36, .fsAccount .fsLoginForgotView button.fs_style_36, .fsAccount .fsLoginNewView .fsLoginSubmit.fs_style_36, .fsAccount .fsLoginNewView button.fs_style_36 {
      padding: 26px 45px 23px;
      border-radius: 6px;
      font-size: 17px;
      line-height: 24px;
      letter-spacing: 0.04em;
      font-family: "semplicitapro", sans-serif;
      font-weight: bold;
      text-align: center; }
      .fsLogin .fsLoginMainView .fsLoginSubmit.fs_style_36 em, .fsLogin .fsLoginMainView button.fs_style_36 em, .fsLogin .fsLoginForgotView .fsLoginSubmit.fs_style_36 em, .fsLogin .fsLoginForgotView button.fs_style_36 em, .fsLogin .fsLoginNewView .fsLoginSubmit.fs_style_36 em, .fsLogin .fsLoginNewView button.fs_style_36 em, .fsAccount .fsLoginMainView .fsLoginSubmit.fs_style_36 em, .fsAccount .fsLoginMainView button.fs_style_36 em, .fsAccount .fsLoginForgotView .fsLoginSubmit.fs_style_36 em, .fsAccount .fsLoginForgotView button.fs_style_36 em, .fsAccount .fsLoginNewView .fsLoginSubmit.fs_style_36 em, .fsAccount .fsLoginNewView button.fs_style_36 em {
        display: block;
        font-size: 14px;
        font-style: normal;
        text-transform: lowercase;
        font-family: "fira-sans", sans-serif;
        letter-spacing: 0;
        font-weight: normal; }
  .fsLogin .fsLoginMainView .fsLoginSubmit, .fsLogin .fsLoginForgotView .fsLoginSubmit, .fsLogin .fsLoginNewView .fsLoginSubmit, .fsAccount .fsLoginMainView .fsLoginSubmit, .fsAccount .fsLoginForgotView .fsLoginSubmit, .fsAccount .fsLoginNewView .fsLoginSubmit {
    display: block; }
  .fsLogin .fsLoginMainView .fsLoginForgotPasswordLink, .fsLogin .fsLoginMainView .fsLoginNewAccountLink, .fsLogin .fsLoginForgotView .fsLoginForgotPasswordLink, .fsLogin .fsLoginForgotView .fsLoginNewAccountLink, .fsLogin .fsLoginNewView .fsLoginForgotPasswordLink, .fsLogin .fsLoginNewView .fsLoginNewAccountLink, .fsAccount .fsLoginMainView .fsLoginForgotPasswordLink, .fsAccount .fsLoginMainView .fsLoginNewAccountLink, .fsAccount .fsLoginForgotView .fsLoginForgotPasswordLink, .fsAccount .fsLoginForgotView .fsLoginNewAccountLink, .fsAccount .fsLoginNewView .fsLoginForgotPasswordLink, .fsAccount .fsLoginNewView .fsLoginNewAccountLink {
    margin-bottom: 10px; }

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

.fsLogin .fsLoginForgotView .fsLoginForgotSubmit, .fsAccount .fsLoginForgotView .fsLoginForgotSubmit {
  margin-right: 10px; }

.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 .fsLoginNewFields .fsLoginNewContinue, .fsAccount .fsLoginNewFields .fsLoginNewContinue {
  margin-right: 10px; }

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

.fsAccount .fsAccountLinks {
  margin: 0; }

.fsAccount .fsAccountLogout {
  display: block;
  margin-top: 20px; }
  .fsAccount .fsAccountLogout a {
    display: inline-block;
    min-width: 200px;
    margin: 0 0 20px;
    padding: 7px 20px 6px;
    outline: 0;
    border: 2px solid #1c1c1c;
    border-radius: 200px;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    text-align: center;
    font-family: "semplicitapro", sans-serif;
    font-weight: 700;
    background-color: #1c1c1c;
    transition: all 0.3s ease; }
    .fsAccount .fsAccountLogout a:hover {
      border: 2px solid #e5e5e5;
      color: #1c1c1c;
      background: transparent; }
    .fsAccount .fsAccountLogout a.fs_style_36 {
      padding: 26px 45px 23px;
      border-radius: 6px;
      font-size: 17px;
      line-height: 24px;
      letter-spacing: 0.04em;
      font-family: "semplicitapro", sans-serif;
      font-weight: bold;
      text-align: center; }
      .fsAccount .fsAccountLogout a.fs_style_36 em {
        display: block;
        font-size: 14px;
        font-style: normal;
        text-transform: lowercase;
        font-family: "fira-sans", sans-serif;
        letter-spacing: 0;
        font-weight: normal; }

.fsMediaCustomPlayer {
  background: none;
  position: relative; }
  .fsMediaCustomPlayer article {
    background-position: center;
    background-size: cover;
    outline: 0;
    position: relative; }
    .fsMediaCustomPlayer article img {
      opacity: 0;
      visibility: hidden; }
  .fsMediaCustomPlayer .caption-wrapper {
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 0;
    font-family: "fira-sans", sans-serif;
    font-size: 16px;
    left: 0;
    line-height: 28px;
    padding: 10px;
    position: absolute;
    width: 100%; }
    @media (min-width: 800px) {
      .fsMediaCustomPlayer .caption-wrapper {
        padding: 20px; } }
  @media (min-width: 800px) {
    .fsMediaCustomPlayer .caption-title {
      color: #231f20;
      margin-top: 0;
      font-weight: bold;
      font-size: 32px;
      line-height: 40px;
      font-weight: 900;
      margin-bottom: 17px;
      margin-bottom: 0; } }
  .fsMediaCustomPlayer .caption-desc {
    display: none; }
    @media (min-width: 800px) {
      .fsMediaCustomPlayer .caption-desc {
        display: block; } }
    .fsMediaCustomPlayer .caption-desc p:last-child {
      margin-bottom: 0; }
    .fsMediaCustomPlayer .caption-desc:empty {
      display: none; }
  .fsMediaCustomPlayer .slick-next,
  .fsMediaCustomPlayer .slick-prev {
    background: none;
    border: none;
    color: transparent;
    height: 40px;
    outline: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    z-index: 2; }
    .fsMediaCustomPlayer .slick-next:before,
    .fsMediaCustomPlayer .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;
      text-shadow: 0 0 2px rgba(0, 0, 0, 0.35); }
  .fsMediaCustomPlayer .slick-next {
    left: auto;
    right: 0; }
    .fsMediaCustomPlayer .slick-next:before {
      content: '\203A'; }
  .fsMediaCustomPlayer .slick-prev {
    left: 0;
    right: auto; }
    .fsMediaCustomPlayer .slick-prev:before {
      content: '\2039'; }

.fsNews > header, .fsPostElement > header {
  position: relative;
  padding-right: 50px; }
  .fsNews > header > .fsElementTitle, .fsPostElement > header > .fsElementTitle {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.04em;
    text-transform: uppercase; }

.fsNews .fsElementControls, .fsPostElement .fsElementControls {
  margin: 0; }

.fsNews .fsAlertFeeds, .fsPostElement .fsAlertFeeds {
  right: 0;
  top: 6px; }

.fsNews article, .fsPostElement article {
  border-top: 2px solid rgba(35, 31, 32, 0.1); }
  .fsNews article:first-of-type, .fsPostElement article:first-of-type {
    border-top: 0; }

.fsNews > footer, .fsPostElement > footer {
  padding-top: 4px;
  border-top: 2px solid rgba(35, 31, 32, 0.1); }
  .fsNews > footer .fs_style_40, .fsPostElement > footer .fs_style_40 {
    color: #a3a8ad;
    font-size: 11px;
    font-family: "semplicitapro", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.08em; }

.fsNews.fsThumbnailAlignLeft .fsThumbnail, .fsPostElement.fsThumbnailAlignLeft .fsThumbnail {
  float: none; }
  @media (min-width: 600px) {
    .fsNews.fsThumbnailAlignLeft .fsThumbnail, .fsPostElement.fsThumbnailAlignLeft .fsThumbnail {
      float: left; } }

.fsNews.fsThumbnailAlignRight .fsThumbnail, .fsPostElement.fsThumbnailAlignRight .fsThumbnail {
  float: none; }
  @media (min-width: 600px) {
    .fsNews.fsThumbnailAlignRight .fsThumbnail, .fsPostElement.fsThumbnailAlignRight .fsThumbnail {
      float: right; } }

.fsNews.fsThumbnailSquare.fsThumbnailSmall .fsThumbnail, .fsPostElement.fsThumbnailSquare.fsThumbnailSmall .fsThumbnail {
  max-width: 110px; }

.fsNews .fsThumbnail, .fsPostElement .fsThumbnail {
  border-radius: 8px;
  overflow: hidden;
  margin-right: 24px; }
  .fsNews .fsThumbnail .fsCroppedImage, .fsPostElement .fsThumbnail .fsCroppedImage {
    display: block; }
  .fsNews .fsThumbnail img, .fsPostElement .fsThumbnail img {
    display: block;
    height: auto; }

.fsNews .fsTitle, .fsPostElement .fsTitle {
  padding-top: 10px;
  padding-bottom: 4px;
  color: #231f20;
  font-size: 20px;
  line-height: 26px;
  font-weight: bold;
  letter-spacing: -0.01em; }
  .fsNews .fsTitle a, .fsPostElement .fsTitle a {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit; }

.fsNews .fsNewsPostLink.fsReadMoreLink, .fsPostElement .fsNewsPostLink.fsReadMoreLink {
  color: rgba(35, 31, 32, 0.5);
  font-size: 12px;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-family: "semplicitapro", sans-serif; }

.fsNews.fsList article, .fsPostElement.fsList article {
  margin: 0;
  padding: 0;
  padding-top: 24px;
  padding-bottom: 23px; }
  .fsNews.fsList article:first-of-type, .fsPostElement.fsList article:first-of-type {
    padding-top: 0; }

.fsNews.fsGrid .fsListItems, .fsPostElement.fsGrid .fsListItems {
  width: 100%;
  min-height: initial;
  -moz-column-count: 1;
  column-count: 1;
  -moz-column-gap: 20px;
  column-gap: 20px;
  -moz-column-rule: none;
  column-rule: none; }
  .fsNews.fsGrid .fsListItems > *, .fsPostElement.fsGrid .fsListItems > * {
    page-break-inside: avoid;
    break-inside: avoid-column; }
  .fsNews.fsGrid .fsListItems article, .fsPostElement.fsGrid .fsListItems article {
    border-top: none; }
  .fsNews.fsGrid .fsListItems .fsAlertFeeds, .fsPostElement.fsGrid .fsListItems .fsAlertFeeds {
    -moz-column-span: all;
    column-span: all; }

@media (min-width: 800px) {
  .fsNews.fsGrid .fsStyleTwoColumns, .fsPostElement.fsGrid .fsStyleTwoColumns {
    -moz-column-count: 2;
    column-count: 2; } }

@media (min-width: 800px) {
  .fsNews.fsGrid .fsStyleThreeColumns, .fsPostElement.fsGrid .fsStyleThreeColumns {
    -moz-column-count: 2;
    column-count: 2; } }

@media (min-width: 900px) {
  .fsNews.fsGrid .fsStyleThreeColumns, .fsPostElement.fsGrid .fsStyleThreeColumns {
    -moz-column-count: 3;
    column-count: 3; } }

@media (min-width: 800px) {
  .fsNews.fsGrid .fsStyleFourColumns, .fsPostElement.fsGrid .fsStyleFourColumns {
    -moz-column-count: 2;
    column-count: 2; } }

@media (min-width: 900px) {
  .fsNews.fsGrid .fsStyleFourColumns, .fsPostElement.fsGrid .fsStyleFourColumns {
    -moz-column-count: 3;
    column-count: 3; } }

@media (min-width: 1000px) {
  .fsNews.fsGrid .fsStyleFourColumns, .fsPostElement.fsGrid .fsStyleFourColumns {
    -moz-column-count: 4;
    column-count: 4; } }

@media (min-width: 800px) {
  .fsNews.fsGrid .fsStyleFiveColumns, .fsPostElement.fsGrid .fsStyleFiveColumns {
    -moz-column-count: 2;
    column-count: 2; } }

@media (min-width: 900px) {
  .fsNews.fsGrid .fsStyleFiveColumns, .fsPostElement.fsGrid .fsStyleFiveColumns {
    -moz-column-count: 3;
    column-count: 3; } }

@media (min-width: 1000px) {
  .fsNews.fsGrid .fsStyleFiveColumns, .fsPostElement.fsGrid .fsStyleFiveColumns {
    -moz-column-count: 4;
    column-count: 4; } }

@media (min-width: 1200px) {
  .fsNews.fsGrid .fsStyleFiveColumns, .fsPostElement.fsGrid .fsStyleFiveColumns {
    -moz-column-count: 5;
    column-count: 5; } }

.fsNews.fsSlideshow .fsElementContent article,
.fsPostElement.fsSlideshow .fsElementContent article {
  border-top: none; }

/*! _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; }
  .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 {
  margin-bottom: 20px; }
  .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: #163052 !important;
          background-image: none !important;
          width: 100%;
          height: 50px !important;
          color: #eee;
          padding-left: 10px !important;
          padding-right: 10px !important;
          margin: 0 !important;
          border-radius: 0 !important;
          font-size: 16px;
          font-family: "fira-sans", 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: #363636;
      position: relative;
      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: "fira-sans", 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; }

.fsEmbed.search-custom {
  position: relative;
  margin-left: 29px; }
  .fsEmbed.search-custom .fsElementContent {
    width: 200px; }
  .fsEmbed.search-custom button {
    height: 40px;
    width: 40px;
    border: 0;
    outline: none;
    position: absolute;
    right: 0;
    top: 6px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none; }
  .fsEmbed.search-custom .search-form {
    background: none;
    position: relative;
    height: 32px;
    width: 100%; }
  .fsEmbed.search-custom .search-input {
    width: 100%;
    padding: 3px 0 3px 43px;
    outline: 0;
    border: 0;
    border-radius: 100px;
    color: #231f20;
    font-family: "semplicitapro", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 32px;
    background-color: #dadcde;
    height: 32px; }
    .fsEmbed.search-custom .search-input::-ms-clear {
      display: none; }
    .fsEmbed.search-custom .search-input::-webkit-input-placeholder {
      color: rgba(51, 51, 51, 0.2);
      font-family: "Droid Serif", Georgia, serif;
      font-size: 15px;
      font-weight: 600; }
    .fsEmbed.search-custom .search-input:-moz-placeholder {
      color: rgba(51, 51, 51, 0.2);
      font-family: "Droid Serif", Georgia, serif;
      font-size: 15px;
      font-weight: 600; }
    .fsEmbed.search-custom .search-input::-moz-placeholder {
      color: rgba(51, 51, 51, 0.2);
      font-family: "Droid Serif", Georgia, serif;
      font-size: 15px;
      font-weight: 600; }
    .fsEmbed.search-custom .search-input:-ms-input-placeholder {
      color: rgba(51, 51, 51, 0.2);
      font-family: "Droid Serif", Georgia, serif;
      font-size: 15px;
      font-weight: 600; }
  .fsEmbed.search-custom .search-submit {
    display: block;
    height: 32px;
    width: 40px;
    padding: 0 0 0 2px;
    outline: 0;
    border: 0;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
    .fsEmbed.search-custom .search-submit:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none;
      display: block;
      width: 40px;
      height: 32px;
      position: absolute;
      top: 0;
      left: 0;
      color: #ffffff;
      font-size: 13px;
      line-height: 34px;
      background: transparent; }

.search-custom-mobile {
  padding-top: 1px;
  padding-right: 50px; }
  .search-custom-mobile > .fsElementContent {
    padding: 10px 3px 11px 12px; }
  .search-custom-mobile .search-form {
    background: none;
    position: relative;
    height: 33px;
    width: 100%; }
  .search-custom-mobile .search-input {
    width: 100%;
    padding: 3px 0 3px 43px;
    outline: 0;
    border: 0;
    border-radius: 100px;
    color: #231f20;
    font-family: "semplicitapro", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 33px;
    background-color: #dadcde;
    height: 33px; }
    .search-custom-mobile .search-input::-ms-clear {
      display: none; }
  .search-custom-mobile .search-submit {
    display: block;
    padding: 0 0 0 0;
    outline: 0;
    border: 0;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
    .search-custom-mobile .search-submit:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none;
      display: block;
      width: 40px;
      height: 32px;
      padding-top: 1px;
      color: #ffffff;
      font-size: 14px;
      line-height: 32px;
      background: transparent; }

/*! _search-box.scss - src/sass/modules/search/ - sitewide search box */
.fsSearch:not(.site-search) {
  margin-bottom: 20px; }
  .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 #1c1c1c; }
      .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: #1c1c1c;
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin: 0 !important;
        border-radius: 0 !important;
        font-size: 16px;
        font-family: "fira-sans", sans-serif; }
  .fsSearch:not(.site-search) form.gsc-search-box-tools > table.gsc-search-box td.gsc-search-button {
    padding: 0;
    overflow: hidden;
    height: 50px;
    width: 75px;
    background: #1c1c1c;
    position: relative;
    transition: .3s; }
    .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: "fira-sans", 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: "fira-sans", 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: #1c1c1c; }
  .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: #163052; }

.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: #00b2b0 !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: #06347a !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; } }

.vimeo_view_link a {
  display: inline-block;
  min-width: 200px;
  margin: 0 0 20px;
  padding: 7px 20px 6px;
  outline: 0;
  border: 2px solid #1c1c1c;
  border-radius: 200px;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-align: center;
  font-family: "semplicitapro", sans-serif;
  font-weight: 700;
  background-color: #1c1c1c;
  transition: all 0.3s ease; }
  .vimeo_view_link a:hover {
    border: 2px solid #e5e5e5;
    color: #1c1c1c;
    background: transparent; }
  .vimeo_view_link a.fs_style_36 {
    padding: 26px 45px 23px;
    border-radius: 6px;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.04em;
    font-family: "semplicitapro", sans-serif;
    font-weight: bold;
    text-align: center; }
    .vimeo_view_link a.fs_style_36 em {
      display: block;
      font-size: 14px;
      font-style: normal;
      text-transform: lowercase;
      font-family: "fira-sans", sans-serif;
      letter-spacing: 0;
      font-weight: normal; }

/*! elements - social youtube */
.fsYoutube {
  margin-bottom: 20px; }
  .fsYoutube .fsSocialVideoFrame {
    margin-bottom: 20px; }

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

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

.fsYoutubeList .fsYoutubeListItem {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px #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;
  min-width: 200px;
  margin: 0 0 20px;
  padding: 7px 20px 6px;
  outline: 0;
  border: 2px solid #1c1c1c;
  border-radius: 200px;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-align: center;
  font-family: "semplicitapro", sans-serif;
  font-weight: 700;
  background-color: #1c1c1c;
  transition: all 0.3s ease; }
  .Youtube_view_link a:hover {
    border: 2px solid #e5e5e5;
    color: #1c1c1c;
    background: transparent; }
  .Youtube_view_link a.fs_style_36 {
    padding: 26px 45px 23px;
    border-radius: 6px;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.04em;
    font-family: "semplicitapro", sans-serif;
    font-weight: bold;
    text-align: center; }
    .Youtube_view_link a.fs_style_36 em {
      display: block;
      font-size: 14px;
      font-style: normal;
      text-transform: lowercase;
      font-family: "fira-sans", sans-serif;
      letter-spacing: 0;
      font-weight: normal; }

/*! elements - tabs */
.fsTabs {
  padding: 0;
  background: none;
  border: 0;
  margin-bottom: 20px; }
  .fsTabs .fsTabsNav {
    display: none;
    margin: 0;
    padding: 0; }
    @media (min-width: 600px) {
      .fsTabs .fsTabsNav {
        display: block; } }
    .fsTabs .fsTabsNav li {
      margin-right: 4px; }
      .fsTabs .fsTabsNav li:last-of-type {
        margin-right: 0; }
      .fsTabs .fsTabsNav li a {
        display: block;
        padding: 14px 22px 12px;
        border-radius: 7px;
        position: relative;
        color: #231f20;
        font-size: 17px;
        line-height: 25px;
        font-weight: bold;
        background-color: #b7e2e3;
        transition: 0.3s ease; }
        .fsTabs .fsTabsNav li a:hover {
          background-color: #00b2b0;
          color: #ffffff; }
      .fsTabs .fsTabsNav li.fsStateSelected a {
        color: #ffffff;
        background-color: #ee3224; }
  .fsTabs .fsPanel {
    color: #4c4c4c; }
    .fsTabs .fsPanel > .fsElementContent {
      padding: 17px 0 0 !important; }

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

/*! pages - campus-map v0.0.1 */
@media (min-width: 800px) {
  .campus-map.map-pop-active .map-key:before,
  .campus-map.map-pop-active .map-container:before {
    left: 0;
    opacity: 0.7; } }

.campus-map .map-key:before,
.campus-map .map-container:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  right: 0;
  bottom: 0;
  z-index: 200;
  opacity: 0;
  background: #ffffff;
  transition: opacity 1s ease; }

.campus-map .map-wrapper {
  width: 100%;
  height: auto;
  position: relative;
  margin: 0 0 19px 0; }
  .campus-map .map-wrapper .map-container {
    margin: 0;
    position: relative; }
    .campus-map .map-wrapper .map-container > .fsElementContent {
      position: relative; }
      .campus-map .map-wrapper .map-container > .fsElementContent img {
        display: block;
        width: 100%;
        height: auto; }

.campus-map .map-points {
  margin-bottom: 0; }
  .campus-map .map-points, .campus-map .map-points ul {
    margin: 0;
    padding: 0;
    list-style: none; }
  .campus-map .map-points li {
    margin: 0;
    padding: 0; }
  @media (min-width: 800px) {
    .campus-map .map-points {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      text-align: center;
      font-size: 10px; } }
  .campus-map .map-points .fsNavLevel1 {
    font-size: 0; }
  .campus-map .map-points li {
    position: absolute;
    z-index: 0;
    counter-increment: li;
    transition: z-index 0.3s ease, opacity 0.3s ease;
    visibility: hidden;
    opacity: 0; }
    .campus-map .map-points li.active-modal {
      visibility: visible; }
      .campus-map .map-container.element-loaded li.active-modal {
        opacity: 1; }
      .campus-map.fsComposeMode .map-container.element-loaded li.active-modal {
        opacity: 1; }
      .campus-map .map-points li.active-modal a:before {
        background-color: #ee3224;
        transition: all 0s ease 0s; }
      .campus-map .map-points li.active-modal a:after {
        color: #ffffff;
        transition: all 0s ease 0s; }
      .campus-map .map-points li.active-modal a > em:before {
        background-color: #ee3224; }
    @media (min-width: 800px) {
      .campus-map .map-container.element-loaded li {
        visibility: visible;
        opacity: 1; } }
    .campus-map .map-points li:hover {
      z-index: 1; }
    .campus-map .map-points li.pin-1 {
      left: 28.38983%;
      bottom: 79.18552%; }
    .campus-map .map-points li.pin-2 {
      left: 43.38983%;
      bottom: 71.79487%; }
    .campus-map .map-points li.pin-3 {
      left: 59.49153%;
      bottom: 66.51584%; }
    .campus-map .map-points li.pin-4 {
      left: 62.0339%;
      bottom: 72.54902%; }
    .campus-map .map-points li.pin-5 {
      left: 60.25424%;
      bottom: 56.56109%; }
    .campus-map .map-points li.pin-6 {
      left: 46.10169%;
      bottom: 53.24284%; }
    .campus-map .map-points li.pin-7 {
      left: 27.9661%;
      bottom: 49.62293%; }
    .campus-map .map-points li.pin-8 {
      left: 23.22034%;
      bottom: 61.53846%; }
    .campus-map .map-points li.pin-9 {
      left: 13.89831%;
      bottom: 69.07994%; }
    .campus-map .map-points li.pin-10 {
      left: 6.69492%;
      bottom: 72.09653%; }
    .campus-map .map-points li.pin-11 {
      left: 9.40678%;
      bottom: 77.82805%; }
    .campus-map .map-points li.pin-12 {
      left: 12.9661%;
      bottom: 77.07391%; }
    .campus-map .map-points li.pin-13 {
      left: 25.9322%;
      bottom: 21.56863%; }
    .campus-map .map-points li.pin-14 {
      left: 37.9661%;
      bottom: 26.39517%; }
    .campus-map .map-points li:before {
      border-radius: 100%; }
    .campus-map .map-points li a {
      width: 26px;
      height: 26px;
      display: block;
      position: absolute;
      left: 50%;
      top: 50%;
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
      .map-pop-active.campus-map .map-points li {
        pointer-events: none; }
      .campus-map .map-points li a:hover:before {
        background-color: #ee3224; }
      .campus-map .map-points li a:hover > em:before {
        background-color: #ee3224; }
      .campus-map .map-points li a:hover .map-text {
        opacity: 1;
        visibility: visible; }
      .campus-map .map-points li a:hover:after {
        color: #ffffff; }
      .campus-map .map-points li a:before, .campus-map .map-points li a:after {
        position: absolute;
        left: 50%;
        top: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
      .campus-map .map-points li a:before {
        content: '';
        display: block;
        width: 32px;
        height: 32px;
        border-radius: 0 78% 50% 78%;
        -ms-transform: rotate(-135deg);
        transform: rotate(-135deg);
        -ms-transform-origin: 14% 35%;
        transform-origin: 14% 35%;
        z-index: 1;
        transition: all 0.3s ease;
        background-color: #fdb913; }
      .campus-map .map-points li a:after {
        content: counter(li);
        display: block;
        z-index: 2;
        color: #ffffff;
        font-size: 16px;
        line-height: normal;
        font-weight: 500;
        text-align: center;
        transition: all 0.3s ease; }
      .campus-map .map-points li a > em {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0; }
        .campus-map .map-points li a > em:before {
          content: '';
          display: block;
          width: 32px;
          height: 32px;
          border-radius: 100px;
          position: absolute;
          top: -5px;
          left: 50%;
          -ms-transform: translateX(-50%);
          transform: translateX(-50%);
          transition: all 0.3s ease;
          background-color: #fdb913; }
        .campus-map .map-points li a > em:after {
          content: '';
          display: block;
          width: 19px;
          height: 6px;
          border-radius: 100%;
          position: absolute;
          left: 50%;
          bottom: -19px;
          -ms-transform: translateX(-50%);
          transform: translateX(-50%);
          transition: all 0.3s ease;
          background: rgba(54, 54, 54, 0.25); }
      .campus-map .map-points li a .map-text {
        padding: 21px 22px 51px;
        border-radius: 0 0 40% 40%;
        position: absolute;
        left: 50%;
        bottom: 100%;
        z-index: 0;
        font-size: 16px;
        line-height: 20px;
        font-weight: 700;
        color: #2f353e;
        white-space: nowrap;
        -ms-transform: translate(-50%, 6px);
        transform: translate(-50%, 6px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease; }
        .campus-map .map-points li a .map-text > span {
          position: relative;
          z-index: 3; }
        .campus-map .map-points li a .map-text:before {
          display: block;
          content: '';
          width: 0;
          height: 0;
          border-left: 12px solid transparent;
          border-right: 12px solid transparent;
          border-top: 12px solid #ffffff;
          position: absolute;
          left: 50%;
          bottom: 21px;
          -ms-transform: translateX(-50%);
          transform: translateX(-50%);
          z-index: 301; }
        .campus-map .map-points li a .map-text:after {
          content: '';
          display: block;
          border-radius: 4px;
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 32px;
          z-index: 2;
          background-color: #ffffff;
          box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.35); }

.campus-map .map-key {
  margin: 0 0 20px 0;
  padding: 0;
  position: relative; }
  .campus-map .map-key > header > .fsElementTitle {
    margin-bottom: 6px;
    font-size: 26px;
    line-height: 40px; }
  .campus-map .map-key .fsNavLevel1 {
    padding: 0;
    margin: 0;
    list-style: none; }
    @media (min-width: 600px) {
      .campus-map .map-key .fsNavLevel1 {
        -moz-column-count: 2;
        column-count: 2;
        -moz-column-gap: 10px;
        column-gap: 10px;
        -moz-column-rule: 0;
        column-rule: 0;
        min-height: initial; } }
    @media (min-width: 900px) {
      .campus-map .map-key .fsNavLevel1 {
        -moz-column-count: 3;
        column-count: 3; } }
    @media (min-width: 1100px) {
      .campus-map .map-key .fsNavLevel1 {
        -moz-column-count: 4;
        column-count: 4; } }
    .campus-map .map-key .fsNavLevel1 li {
      counter-increment: li;
      padding: 5px 25px 6px 35px;
      position: relative; }
      .map-pop-active.campus-map .map-key .fsNavLevel1 li {
        pointer-events: none; }
      .campus-map .map-key .fsNavLevel1 li:hover:before {
        color: #ee3224; }
      .campus-map .map-key .fsNavLevel1 li:hover a {
        color: #000000; }
      .campus-map .map-key .fsNavLevel1 li:before {
        content: counter(li);
        display: inline-block;
        width: 20px;
        margin-right: 4px;
        position: absolute;
        left: 0;
        color: #00b2b0;
        font-size: 16px;
        line-height: 20px;
        text-align: center;
        font-weight: 800;
        vertical-align: middle;
        background: rgba(255, 255, 255, 0.96);
        transition: color 0.3s ease; }
      @media screen and (min-width: 600px) {
        .campus-map .map-key .fsNavLevel1 li {
          page-break-inside: avoid;
          break-inside: avoid-column; } }
      .campus-map .map-key .fsNavLevel1 li a {
        display: block;
        color: #2f353e;
        font-size: 16px;
        line-height: 20px;
        font-weight: 700; }

@media (min-width: 800px) {
  .campus-map .map-detail {
    width: 100%; } }

.campus-map .map-detail > .fsElementContent {
  height: 100%; }
  .campus-map .map-detail > .fsElementContent .slick-slider {
    height: 100%; }
    @media (min-width: 800px) {
      .campus-map .map-detail > .fsElementContent .slick-slider .slick-list {
        height: 100% !important; } }

.campus-map .map-detail .fsMediaCustomPlayer {
  color: #6d6d6d;
  font-size: 16px;
  font-family: "fira-sans", sans-serif; }

.campus-map .map-detail article {
  background-color: transparent; }

.campus-map .map-detail .slick-arrow {
  top: 25%; }

.campus-map .map-detail .slick-dots {
  margin: 0;
  padding: 24px 20px 7px 20px;
  font-size: 0;
  line-height: 1;
  list-style: none;
  text-align: center; }
  .campus-map .map-detail .slick-dots li {
    font-size: 0;
    display: inline-block;
    vertical-align: bottom;
    margin: 0 5px; }
    .campus-map .map-detail .slick-dots li.slick-active button {
      background: #ee3224;
      opacity: 1; }
    .campus-map .map-detail .slick-dots li button {
      width: 8px;
      height: 8px;
      padding: 0;
      border: 0;
      border-radius: 100%;
      opacity: 0.6;
      background: #d4d9dc;
      transition: 0.3s background; }
      .campus-map .map-detail .slick-dots li button:hover {
        background: #ee3224;
        opacity: 1; }

.campus-map .map-detail .fsSlideImage {
  position: relative;
  background-position: center center;
  background-size: cover; }
  @media screen and (max-width: 799px) {
    .campus-map .map-detail .fsSlideImage {
      background-image: none !important; } }
  .campus-map .map-detail .fsSlideImage img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 1;
    visibility: visible; }
    @media (min-width: 800px) {
      .campus-map .map-detail .fsSlideImage img {
        opacity: 0;
        visibility: hidden; } }
  .campus-map .map-detail .fsSlideImage .fsCaptionTitleWrapper {
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); }
    @media (min-width: 800px) {
      .campus-map .map-detail .fsSlideImage .fsCaptionTitleWrapper {
        padding: 20px;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6); } }
    .campus-map .map-detail .fsSlideImage .fsCaptionTitleWrapper .fsSlideTitle {
      font-size: 16px;
      color: #ffffff; }
      @media (min-width: 800px) {
        .campus-map .map-detail .fsSlideImage .fsCaptionTitleWrapper .fsSlideTitle {
          color: #ffffff;
          font-size: 16px; } }

.campus-map .map-detail .fsCaptionDescWrapper {
  padding: 5px 20px 20px;
  border-top: 0;
  overflow-y: auto;
  height: 300px;
  color: #5e5e5e;
  line-height: 25px; }
  @media (min-width: 800px) {
    .campus-map .map-detail .fsCaptionDescWrapper {
      padding: 10px 47px 10px 47px; } }
  .campus-map .map-detail .fsCaptionDescWrapper .fsSlideDescription h2 {
    margin-bottom: 8px; }
  .campus-map .map-detail .fsCaptionDescWrapper .fsSlideDescription p:last-child {
    margin-bottom: 0; }

.campus-map .ui-dialog.mapDetail {
  border-radius: 0 !important;
  border: 1px solid #d7d7d7 !important; }
  .campus-map .ui-dialog.mapDetail .ui-widget-header {
    height: 0;
    padding: 0; }
    .campus-map .ui-dialog.mapDetail .ui-widget-header .ui-state-focus {
      background: none; }
    .campus-map .ui-dialog.mapDetail .ui-widget-header .ui-icon-closethick {
      display: none !important; }
  .campus-map .ui-dialog.mapDetail .ui-dialog-titlebar-close {
    width: 40px;
    height: 40px;
    border: 2px solid #ffffff;
    border-radius: 100%;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 400;
    color: #ffffff;
    font-size: 0;
    text-align: center;
    transition: 0.3s color, 0.3s border;
    text-indent: 0; }
    .campus-map .ui-dialog.mapDetail .ui-dialog-titlebar-close:hover {
      cursor: pointer;
      color: rgba(255, 255, 255, 0.75);
      border-color: rgba(255, 255, 255, 0.75); }
    .campus-map .ui-dialog.mapDetail .ui-dialog-titlebar-close:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none;
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      font-size: 16px; }

.campus-map .ui-widget-overlay {
  background: #ffffff;
  opacity: 0.7; }

.campus-map .map-pop-wrapper {
  padding: 0; }
  @media (min-width: 800px) {
    .campus-map .map-pop-wrapper {
      width: 100%;
      max-width: 540px;
      margin: 0;
      transition: all 0.3s ease;
      background: #ffffff; } }

.ui-dialog .ui-dialog-title {
  display: none; }

body.campus-map.fsComposeMode .map-points {
  text-align: left;
  position: static; }
  body.campus-map.fsComposeMode .map-points li {
    position: static;
    opacity: 1;
    visibility: visible; }
    body.campus-map.fsComposeMode .map-points li:not(:last-child) {
      margin-bottom: 10px; }

/*! pages - home v0.0.1 */
.home .panel-titles {
  margin-bottom: 55px; }
  @media (min-width: 550px) {
    .home .panel-titles {
      margin-bottom: 76px; } }
  .home .panel-titles > header > .fsElementTitle {
    display: none; }
  .home .panel-titles > header > .fsElementHeaderContent {
    vertical-align: middle; }
    .home .panel-titles > header > .fsElementHeaderContent h2 {
      margin-bottom: 5px;
      font-size: 32px;
      line-height: 40px;
      letter-spacing: -0.01em; }
      @media (min-width: 550px) {
        .home .panel-titles > header > .fsElementHeaderContent h2 {
          margin-bottom: 5px;
          font-size: 36px;
          line-height: 44px; } }
    .home .panel-titles > header > .fsElementHeaderContent strong {
      display: inline-block;
      height: 32px;
      width: 100%;
      position: relative;
      perspective: 300px;
      transition: max-width 0.3s ease; }
      @media (min-width: 550px) {
        .home .panel-titles > header > .fsElementHeaderContent strong {
          height: 34px; } }
    .home .panel-titles > header > .fsElementHeaderContent span {
      display: inline-block;
      white-space: nowrap;
      position: absolute;
      left: 0;
      top: 0;
      opacity: 0; }
      .home .panel-titles > header > .fsElementHeaderContent span:nth-of-type(3n) {
        color: #00b2b0; }
      .home .panel-titles > header > .fsElementHeaderContent span:nth-of-type(3n+1) {
        color: #fdb913; }
      .home .panel-titles > header > .fsElementHeaderContent span:nth-of-type(3n+2) {
        color: #ee3224; }
      .home .panel-titles > header > .fsElementHeaderContent span.is-visible {
        opacity: 1;
        animation: zoom-in 0.8s; }
      .home .panel-titles > header > .fsElementHeaderContent span.is-hidden {
        animation: zoom-out 0.8s; }
  .home .panel-titles .titles {
    display: none; }
    .home.fsComposeMode .panel-titles {
      display: block; }

@keyframes zoom-in {
  0% {
    opacity: 0;
    transform: translateZ(100px); }
  100% {
    opacity: 1;
    transform: translateZ(0); } }

@keyframes zoom-out {
  0% {
    opacity: 1;
    transform: translateZ(0); }
  100% {
    opacity: 0;
    transform: translateZ(-100px); } }
  .home .panel-titles > .fsElementContent {
    font-size: 16px !important;
    line-height: 28px !important;
    letter-spacing: 0 !important; }
    @media (min-width: 550px) {
      .home .panel-titles > .fsElementContent {
        font-size: 18px !important;
        line-height: 34px !important;
        letter-spacing: -0.02em !important; } }

.home .panel-discover > .fsContainer {
  margin-bottom: 0; }
  @media (max-width: 1219px) {
    .home .panel-discover > .fsContainer > .fsElementContent {
      width: auto !important;
      -ms-transform: none !important;
      transform: none !important; } }
  @media (min-width: 900px) {
    .home .panel-discover > .fsContainer > .fsElementContent {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
      align-items: center;
      transition: 0.5s all;
      margin: 0;
      min-height: 344px; } }
  .home .panel-discover > .fsContainer:hover > .fsElementContent, .home .panel-discover > .fsContainer:focus-within > .fsElementContent {
    width: auto !important;
    -ms-transform: none !important;
    transform: none !important; }
    @media (min-width: 900px) {
      .home .panel-discover > .fsContainer:hover > .fsElementContent, .home .panel-discover > .fsContainer:focus-within > .fsElementContent {
        margin: -32px -40px;
        min-height: 408px; } }
  .home .panel-discover > .fsContainer .fsContent {
    min-height: 128px;
    margin: 0;
    color: #000;
    position: relative;
    overflow: hidden;
    opacity: 0;
    background-position: center;
    background-size: cover;
    transition: 0.5s all;
    -ms-transform: translateY(50px);
    transform: translateY(50px); }
    @media (min-width: 600px) {
      .home .panel-discover > .fsContainer .fsContent {
        min-height: 250px; } }
    @media (min-width: 900px) {
      .home .panel-discover > .fsContainer .fsContent {
        min-height: 0;
        height: 344px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        min-width: 20%;
        width: 20%; } }
    .home .panel-discover > .fsContainer .fsContent:nth-child(1), .home .panel-discover > .fsContainer .fsContent:nth-child(4), .home .panel-discover > .fsContainer .fsContent:nth-child(5) {
      color: #FFF; }
    .home .panel-discover > .fsContainer .fsContent:before {
      content: '';
      position: absolute;
      bottom: 12px;
      left: 0;
      width: 100%;
      height: calc(100% - 12px);
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 17.19%, rgba(0, 0, 0, 0.7) 100%); }
    .home .panel-discover > .fsContainer .fsContent:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 12px; }
    .home .panel-discover > .fsContainer .fsContent.element-loaded {
      opacity: 1;
      -ms-transform: translateY(0);
      transform: translateY(0);
      transition: 0.5s all, 0.5s opacity, 0.4s transform 0.1s; }
      .home .panel-discover > .fsContainer .fsContent.element-loaded:nth-child(2) {
        transition: 0.5s all, 0.5s opacity 0.1s, 0.4s transform 0.2s; }
      .home .panel-discover > .fsContainer .fsContent.element-loaded:nth-child(3) {
        transition: 0.5s all, 0.5s opacity 0.2s, 0.4s transform 0.3s; }
      .home .panel-discover > .fsContainer .fsContent.element-loaded:nth-child(4) {
        transition: 0.5s all, 0.5s opacity 0.3s, 0.4s transform 0.4s; }
      .home .panel-discover > .fsContainer .fsContent.element-loaded:nth-child(5) {
        transition: 0.5s all, 0.5s opacity 0.4s, 0.4s transform 0.5s; }
    @media (min-width: 900px) {
      .home .panel-discover > .fsContainer .fsContent:hover, .home .panel-discover > .fsContainer .fsContent:focus, .home .panel-discover > .fsContainer .fsContent:focus-within {
        width: calc(20% + 80px);
        height: 408px; } }
    .home .panel-discover > .fsContainer .fsContent:hover > header .fsElementTitle, .home .panel-discover > .fsContainer .fsContent:focus > header .fsElementTitle, .home .panel-discover > .fsContainer .fsContent:focus-within > header .fsElementTitle {
      display: none; }
      @media (min-width: 900px) {
        .home .panel-discover > .fsContainer .fsContent:hover > header .fsElementTitle, .home .panel-discover > .fsContainer .fsContent:focus > header .fsElementTitle, .home .panel-discover > .fsContainer .fsContent:focus-within > header .fsElementTitle {
          display: block;
          top: 53px;
          left: 60px;
          -ms-transform: translateY(0%);
          transform: translateY(0%);
          width: calc(100% - 120px);
          opacity: 0; } }
    .home .panel-discover > .fsContainer .fsContent:hover .content-inner, .home .panel-discover > .fsContainer .fsContent:focus .content-inner, .home .panel-discover > .fsContainer .fsContent:focus-within .content-inner {
      display: -ms-flexbox;
      display: flex; }
      @media (min-width: 900px) {
        .home .panel-discover > .fsContainer .fsContent:hover .content-inner > *, .home .panel-discover > .fsContainer .fsContent:focus .content-inner > *, .home .panel-discover > .fsContainer .fsContent:focus-within .content-inner > * {
          opacity: 1;
          transition: 0.3s opacity 0.5s; } }
    .home .panel-discover > .fsContainer .fsContent > header .fsElementTitle {
      margin: 0;
      font-size: 1.125rem;
      line-height: 1.223;
      color: #ffffff;
      font-family: "fira-sans", sans-serif;
      text-align: center;
      font-weight: 700;
      position: absolute;
      top: calc(100% - 26px);
      left: 20px;
      -ms-transform: translateY(-100%);
      transform: translateY(-100%);
      width: calc(100% - 40px);
      z-index: 1;
      transition: 0.5s all; }
      @media (min-width: 900px) {
        .home .panel-discover > .fsContainer .fsContent > header .fsElementTitle {
          font-size: 1.25rem;
          line-height: 1.2;
          top: calc(100% - 24px); } }
    .home .panel-discover > .fsContainer .fsContent > .fsElementContent {
      display: none; }
    .home .panel-discover > .fsContainer .fsContent .fsElementContent {
      font-size: 0.9375rem;
      line-height: 1.534; }
      @media (min-width: 900px) {
        .home .panel-discover > .fsContainer .fsContent .fsElementContent {
          font-size: 1rem;
          line-height: 1.4375; } }
    .home .panel-discover > .fsContainer .fsContent .content-inner {
      display: none;
      -ms-flex-direction: column;
      flex-direction: column;
      -ms-flex-pack: center;
      justify-content: center;
      position: relative;
      text-align: center;
      padding: 33px 20px 27px;
      min-height: 128px; }
      @media (min-width: 600px) {
        .home .panel-discover > .fsContainer .fsContent .content-inner {
          min-height: 250px; } }
      @media (min-width: 900px) {
        .home .panel-discover > .fsContainer .fsContent .content-inner {
          display: block;
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          transition: 0.5s background-color;
          padding: 53px 41px 30px;
          min-height: 0; }
          .home .panel-discover > .fsContainer .fsContent .content-inner > * {
            transition: 0.5s opacity;
            opacity: 0; } }
      .home .panel-discover > .fsContainer .fsContent .content-inner > header .fsElementTitle {
        font-size: 1.125rem;
        line-height: 1.223;
        color: inherit;
        font-family: "fira-sans", sans-serif;
        font-weight: 700; }
        @media (min-width: 900px) {
          .home .panel-discover > .fsContainer .fsContent .content-inner > header .fsElementTitle {
            font-size: 1.25rem;
            line-height: 1.2;
            padding: 0 19px; } }
    .home .panel-discover > .fsContainer .fsContent p:last-child {
      margin-bottom: 0; }
    .home .panel-discover > .fsContainer .fsContent:nth-of-type(4n-1):hover .content-inner, .home .panel-discover > .fsContainer .fsContent:nth-of-type(4n-1):focus-within .content-inner {
      background-color: rgba(191, 215, 48, 0.8); }
    .home .panel-discover > .fsContainer .fsContent:nth-of-type(4n-1):after {
      background-color: #bfd730; }
    .home .panel-discover > .fsContainer .fsContent:nth-of-type(4n-2):hover .content-inner, .home .panel-discover > .fsContainer .fsContent:nth-of-type(4n-2):focus-within .content-inner {
      background-color: rgba(253, 185, 19, 0.8); }
    .home .panel-discover > .fsContainer .fsContent:nth-of-type(4n-2):after {
      background-color: #fdb913; }
    .home .panel-discover > .fsContainer .fsContent:nth-of-type(4n-3):hover .content-inner, .home .panel-discover > .fsContainer .fsContent:nth-of-type(4n-3):focus-within .content-inner {
      background-color: rgba(228, 31, 17, 0.8); }
    .home .panel-discover > .fsContainer .fsContent:nth-of-type(4n-3):after {
      background-color: #E41F11; }
    .home .panel-discover > .fsContainer .fsContent:nth-of-type(4n-4):hover .content-inner, .home .panel-discover > .fsContainer .fsContent:nth-of-type(4n-4):focus-within .content-inner {
      background-color: rgba(6, 52, 122, 0.8); }
    .home .panel-discover > .fsContainer .fsContent:nth-of-type(4n-4):after {
      background-color: #06347a; }
    .home .panel-discover > .fsContainer .fsContent .fs_style_35 {
      border: 0;
      background: transparent;
      margin: 0;
      min-width: 0;
      padding: 0;
      border-radius: 0;
      color: inherit;
      letter-spacing: 0;
      font-weight: 400;
      font-size: 0.875rem;
      line-height: 1.2143;
      font-family: "fira-sans", sans-serif; }
      .home .panel-discover > .fsContainer .fsContent .fs_style_35:hover, .home .panel-discover > .fsContainer .fsContent .fs_style_35:focus {
        text-decoration: underline; }

.home .voices {
  margin: 105px -20px 40px !important;
  width: calc(100% + 40px); }
  @media (min-width: 1220px) {
    .home .voices {
      margin: 105px auto 40px !important;
      width: auto; } }
  @media (max-width: 1219px) {
    .home .voices {
      max-width: unset !important; }
      .home .voices > .fsContainer {
        margin: 0 !important;
        width: auto !important; } }
  .home .voices.in-view .fsContainer.slick-slide .fsContent:before {
    height: 100%;
    background-color: rgba(229, 229, 229, 0.6); }
  .home .voices.in-view .fsContainer.slick-slide .fsContent blockquote {
    -ms-transform: scale(1);
    transform: scale(1); }
  @media (min-width: 600px) {
    .home .voices.in-view > .fsContainer > header {
      right: 0;
      -ms-transform: translateX(0);
      transform: translateX(0); }
    .home .voices.in-view .fsContainer.slick-slide[data-slick-index="-1"], .home .voices.in-view .fsContainer.slick-slide[data-slick-index="1"] {
      -ms-transform: translateX(0);
      transform: translateX(0); }
    .home .voices.in-view .fsContainer.slick-slide.slick-current .fsResourceElement img {
      -ms-transform: translate(-50%, -50%) scale(1);
      transform: translate(-50%, -50%) scale(1); } }
  @media (min-width: 1000px) {
    .home .voices.in-view > .fsContainer > header {
      -ms-transform: translate(0, 35px);
      transform: translate(0, 35px); } }
  .home .voices > .fsContainer > header {
    padding: 0 30px !important;
    margin-bottom: 20px;
    text-align: right; }
    @media (min-width: 600px) {
      .home .voices > .fsContainer > header {
        padding: 0 100px !important;
        transition: 0.75s transform ease-in-out, 0.75s right ease-in-out;
        position: relative;
        right: -100px;
        -ms-transform: translateX(100%);
        transform: translateX(100%); } }
    @media (min-width: 1000px) {
      .home .voices > .fsContainer > header {
        margin-bottom: 0;
        -ms-transform: translate(100%, 35px);
        transform: translate(100%, 35px);
        z-index: 1; } }
    @media (min-width: 1200px) {
      .home .voices > .fsContainer > header {
        padding: 0 175px !important;
        right: -175px; } }
    @media (min-width: 1300px) {
      .home .voices > .fsContainer > header {
        padding: 0 255px !important;
        right: -255px; } }
    .home .voices > .fsContainer > header .fsElementTitle {
      text-align: inherit !important;
      letter-spacing: 0 !important;
      margin-bottom: 5px !important;
      font-size: 1.875rem !important;
      line-height: 1.2 !important;
      color: #000 !important;
      font-weight: 700; }
      @media (min-width: 600px) {
        .home .voices > .fsContainer > header .fsElementTitle {
          font-size: 2.1875rem !important;
          line-height: 1.2 !important; } }
      @media (min-width: 1000px) {
        .home .voices > .fsContainer > header .fsElementTitle {
          max-width: calc(50.53763% - 50px);
          margin-left: auto; } }
    @media (min-width: 1000px) {
      .home .voices > .fsContainer > header .fsElementHeaderContent {
        max-width: calc(50.53763% - 50px);
        margin-left: auto; } }
    .home .voices > .fsContainer > header .fsElementHeaderContent a:not([class]) {
      text-transform: uppercase;
      font-weight: 400;
      color: #E41F11;
      font-size: 0.875rem;
      line-height: 1.2143; }
      .home .voices > .fsContainer > header .fsElementHeaderContent a:not([class]):hover, .home .voices > .fsContainer > header .fsElementHeaderContent a:not([class]):focus {
        color: #06347a;
        text-decoration: underline; }
    .home .voices > .fsContainer > header .fsElementHeaderContent p:last-child {
      margin-bottom: 0; }
  .home .voices > .fsContainer > .fsElementContent {
    width: auto !important;
    -ms-transform: none !important;
    transform: none !important; }
  .home .voices .fsElement {
    margin-bottom: 0; }
  .home .voices .fsContainer.slick-slide {
    transition: 0.75s transform ease-in-out; }
    @media (min-width: 600px) {
      .home .voices .fsContainer.slick-slide[data-slick-index="-1"] {
        -ms-transform: translateX(-100px);
        transform: translateX(-100px); } }
    @media (min-width: 1200px) {
      .home .voices .fsContainer.slick-slide[data-slick-index="-1"] {
        -ms-transform: translateX(-175px);
        transform: translateX(-175px); } }
    @media (min-width: 1300px) {
      .home .voices .fsContainer.slick-slide[data-slick-index="-1"] {
        -ms-transform: translateX(-255px);
        transform: translateX(-255px); } }
    @media (min-width: 600px) {
      .home .voices .fsContainer.slick-slide[data-slick-index="1"] {
        -ms-transform: translateX(100px);
        transform: translateX(100px); } }
    @media (min-width: 1200px) {
      .home .voices .fsContainer.slick-slide[data-slick-index="1"] {
        -ms-transform: translateX(175px);
        transform: translateX(175px); } }
    @media (min-width: 1300px) {
      .home .voices .fsContainer.slick-slide[data-slick-index="1"] {
        -ms-transform: translateX(255px);
        transform: translateX(255px); } }
    @media (min-width: 600px) {
      .home .voices .fsContainer.slick-slide.slick-current .fsResourceElement {
        top: -60px;
        transition: 0.3s top 0.15s; }
        .home .voices .fsContainer.slick-slide.slick-current .fsResourceElement img {
          filter: grayscale(0);
          opacity: 1;
          -ms-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
          transition: 0.75s transform ease-in-out;
          -ms-transform-origin: bottom right;
          transform-origin: bottom right; } }
    @media (min-width: 1000px) {
      .home .voices .fsContainer.slick-slide.slick-current .fsResourceElement {
        width: 54.83871%;
        transition: 0.3s top 0.15s, 0.3s width; } }
    @media (min-width: 600px) {
      .home .voices .fsContainer.slick-slide.slick-current .fsContent {
        width: 100%;
        padding: 80px 50px 50px;
        max-height: 9999px;
        top: -60px;
        transition: 0.3s all; }
        .home .voices .fsContainer.slick-slide.slick-current .fsContent > .fsElementContent {
          opacity: 1;
          -ms-transform: scale(1);
          transform: scale(1);
          max-height: unset;
          transition: 0.3s opacity 0.6s, 0.15s transform; } }
    @media (min-width: 1000px) {
      .home .voices .fsContainer.slick-slide.slick-current .fsContent {
        width: calc((100% - 54.83871%) + 50px);
        margin-left: -50px;
        padding: 102px 74px 50px 125px;
        top: 0;
        transition: 0.3s all 0.3s, 0.3s width; } }
    @media (min-width: 600px) {
      .home .voices .fsContainer.slick-slide {
        padding-top: 60px; } }
    @media (min-width: 1000px) {
      .home .voices .fsContainer.slick-slide > .fsElementContent {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: start;
        align-items: flex-start; } }
  .home .voices .slick-arrow {
    border: 0;
    background: none;
    outline: 0;
    margin: 0;
    padding: 0;
    width: 25px;
    height: 25px;
    position: absolute;
    color: #FFF;
    font-size: 0;
    line-height: 1;
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.3s background;
    z-index: 500;
    cursor: pointer; }
    @media (min-width: 600px) {
      .home .voices .slick-arrow {
        width: 50px;
        height: 50px;
        top: 50% !important;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%); } }
    @media (min-width: 1000px) {
      .home .voices .slick-arrow {
        width: 71px;
        height: 71px; } }
    .home .voices .slick-arrow:hover, .home .voices .slick-arrow:focus {
      background-color: #000; }
    .home .voices .slick-arrow:before {
      font-size: 0.9375rem;
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
      @media (min-width: 600px) {
        .home .voices .slick-arrow:before {
          font-size: 1.875rem; } }
      @media (min-width: 1000px) {
        .home .voices .slick-arrow:before {
          font-size: 2.75rem; } }
    .home .voices .slick-arrow.slick-prev {
      left: 0; }
      .home .voices .slick-arrow.slick-prev:before {
        content: "";
        font-family: "IcoMoon";
        font-smoothing: antialiased;
        font-weight: normal;
        speak: none; }
    .home .voices .slick-arrow.slick-next {
      right: 0; }
      .home .voices .slick-arrow.slick-next:before {
        content: "";
        font-family: "IcoMoon";
        font-smoothing: antialiased;
        font-weight: normal;
        speak: none; }
  .home .voices .fsResourceElement {
    overflow: hidden; }
    @media (min-width: 600px) {
      .home .voices .fsResourceElement {
        width: 100%;
        position: relative;
        top: 0;
        z-index: 1;
        transition: 0.3s all; } }
    @media (min-width: 1000px) {
      .home .voices .fsResourceElement {
        height: 424px; } }
    .home .voices .fsResourceElement picture {
      display: block;
      position: relative;
      padding-top: 65.9375%; }
      @media (min-width: 1000px) {
        .home .voices .fsResourceElement picture {
          position: static;
          padding-top: 0; } }
    .home .voices .fsResourceElement img {
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      min-width: 100%;
      min-height: 100%;
      -o-object-fit: cover;
      object-fit: cover; }
      @media (min-width: 600px) {
        .home .voices .fsResourceElement img {
          filter: grayscale(1);
          opacity: 0.3; } }
  .home .voices .fsContent {
    overflow: hidden;
    position: relative;
    transition: 0.3s all;
    padding: 62px 20px 29px; }
    @media (min-width: 600px) {
      .home .voices .fsContent {
        width: 0;
        padding: 0; } }
    @media (min-width: 1000px) {
      .home .voices .fsContent {
        min-height: 470px;
        max-height: 470px; } }
    .home .voices .fsContent:before {
      content: '';
      position: absolute;
      top: 50%;
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      left: 0;
      width: 100%;
      height: 0;
      transition: 0.75s all ease-in-out; }
    .home .voices .fsContent > .fsElementContent {
      font-size: 0.9375rem;
      line-height: 1.534;
      color: #000;
      text-align: center; }
      @media (min-width: 600px) {
        .home .voices .fsContent > .fsElementContent {
          font-size: 1.125rem;
          line-height: 1.612;
          opacity: 0;
          -ms-transform: scale(0);
          transform: scale(0);
          max-height: 0;
          transition: 0.15s all;
          text-align: left; } }
    .home .voices .fsContent blockquote {
      font-size: inherit;
      line-height: inherit;
      color: inherit;
      margin: 0 0 20px;
      text-align: inherit;
      position: static;
      transition: 0.5s transform ease-in-out 0.3s;
      -ms-transform: scale(0);
      transform: scale(0); }
      .home .voices .fsContent blockquote:before {
        content: '“';
        position: absolute;
        top: -50px;
        left: 50%;
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        font-size: 5rem;
        line-height: 1.2;
        font-weight: 700;
        color: #00B3B0; }
        @media (min-width: 600px) {
          .home .voices .fsContent blockquote:before {
            top: -72px;
            left: -29px;
            -ms-transform: translateX(0);
            transform: translateX(0);
            font-size: 7.5rem; } }
      .home .voices .fsContent blockquote:last-child {
        margin-bottom: 0; }
    .home .voices .fsContent cite {
      margin: 30px 0 0;
      color: inherit;
      letter-spacing: 0;
      font-size: 0.875rem;
      line-height: 1.2143;
      text-transform: none;
      font-style: normal; }
    .home .voices .fsContent p:last-child {
      margin-bottom: 0; }

.home .panel-icon-links {
  margin-bottom: 0;
  padding-top: 5px;
  padding-bottom: 14px; }
  @media (min-width: 600px) {
    .home .panel-icon-links {
      padding-top: 62px;
      padding-bottom: 40px; } }
  @media (min-width: 900px) {
    .home .panel-icon-links {
      padding-top: 62px;
      padding-bottom: 40px; } }
  .home .panel-icon-links .fsNavigation ul, .home .panel-icon-links .fsNavigation li {
    list-style: none;
    padding: 0;
    margin: 0; }
  .home .panel-icon-links .fsNavigation ul.fsNavLevel1 {
    width: 100%;
    margin: 0 auto;
    position: relative; }
    @media (min-width: 600px) {
      .home .panel-icon-links .fsNavigation ul.fsNavLevel1 {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        max-width: 580px; } }
    @media (min-width: 900px) {
      .home .panel-icon-links .fsNavigation ul.fsNavLevel1 {
        max-width: none; } }
    .home .panel-icon-links .fsNavigation ul.fsNavLevel1:before {
      content: '';
      display: none;
      width: 2px;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(204, 204, 204, 0.4); }
      @media (min-width: 900px) {
        .home .panel-icon-links .fsNavigation ul.fsNavLevel1:before {
          display: block; } }
    .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li {
      -ms-flex: 1 1 auto;
      flex: 1 1 auto;
      width: 100%;
      position: relative; }
      @media (min-width: 600px) {
        .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li {
          width: 50%; } }
      @media (min-width: 900px) {
        .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li {
          width: 25%; } }
      .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:before, .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:after {
        content: '';
        display: block;
        position: absolute;
        background-color: rgba(204, 204, 204, 0.4); }
      .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:before {
        height: 2px;
        bottom: -1px;
        left: 0;
        right: 0; }
      .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:after {
        display: none;
        width: 2px;
        top: 0;
        left: -1px;
        bottom: 0; }
      .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(1) a {
        padding-top: 123px; }
        @media (min-width: 600px) {
          .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(1) a {
            padding-top: 106px; } }
        @media (min-width: 900px) {
          .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(1) a {
            padding-top: 106px; } }
      .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(1) .fsNavPageThumbnail {
        top: 30px; }
        @media (min-width: 600px) {
          .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(1) .fsNavPageThumbnail {
            top: 15px; } }
        @media (min-width: 900px) {
          .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(1) .fsNavPageThumbnail {
            top: 15px; } }
      @media (min-width: 600px) {
        .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(1):before {
          right: 10px; } }
      @media (min-width: 900px) {
        .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(1):before {
          display: none; } }
      @media (min-width: 900px) {
        .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(1):after {
          display: block; } }
      .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(1) .fsNavPageThumbnail {
        background-color: #ee3224; }
        .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(1) .fsNavPageThumbnail:after {
          box-shadow: 0 0 0 4px #ee3224; }
      .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(2) a {
        padding-top: 123px; }
        @media (min-width: 600px) {
          .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(2) a {
            padding-top: 106px; } }
        @media (min-width: 900px) {
          .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(2) a {
            padding-top: 106px; } }
      .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(2) .fsNavPageThumbnail {
        top: 30px; }
        @media (min-width: 600px) {
          .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(2) .fsNavPageThumbnail {
            top: 15px; } }
        @media (min-width: 900px) {
          .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(2) .fsNavPageThumbnail {
            top: 15px; } }
      @media (min-width: 600px) {
        .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(2):before {
          left: 10px; } }
      @media (min-width: 900px) {
        .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(2):before {
          display: none; } }
      @media (min-width: 600px) {
        .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(2):after {
          display: block;
          bottom: 10px; } }
      @media (min-width: 900px) {
        .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(2):after {
          bottom: 0; } }
      .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(2) .fsNavPageThumbnail {
        background-color: #fdb913; }
        .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(2) .fsNavPageThumbnail:after {
          box-shadow: 0 0 0 4px #fdb913; }
      .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(3) a {
        padding-top: 123px; }
        @media (min-width: 600px) {
          .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(3) a {
            padding-top: 122px; } }
        @media (min-width: 900px) {
          .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(3) a {
            padding-top: 106px; } }
      .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(3) .fsNavPageThumbnail {
        top: 30px; }
        @media (min-width: 600px) {
          .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(3) .fsNavPageThumbnail {
            top: 30px; } }
        @media (min-width: 900px) {
          .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(3) .fsNavPageThumbnail {
            top: 15px; } }
      @media (min-width: 600px) {
        .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(3):before {
          display: none; } }
      @media (min-width: 900px) {
        .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(3):after {
          display: block; } }
      .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(3) .fsNavPageThumbnail {
        background-color: #bfd730; }
        .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(3) .fsNavPageThumbnail:after {
          box-shadow: 0 0 0 4px #bfd730; }
      .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(4) a {
        padding-top: 123px; }
        @media (min-width: 600px) {
          .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(4) a {
            padding-top: 122px; } }
        @media (min-width: 900px) {
          .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(4) a {
            padding-top: 106px; } }
      .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(4) .fsNavPageThumbnail {
        top: 30px; }
        @media (min-width: 600px) {
          .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(4) .fsNavPageThumbnail {
            top: 30px; } }
        @media (min-width: 900px) {
          .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(4) .fsNavPageThumbnail {
            top: 15px; } }
      .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(4):before {
        display: none; }
      @media (min-width: 600px) {
        .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(4):after {
          display: block;
          top: 10px; } }
      @media (min-width: 900px) {
        .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(4):after {
          top: 0; } }
      .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(4) .fsNavPageThumbnail {
        background-color: #06347a; }
        .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(4) .fsNavPageThumbnail:after {
          box-shadow: 0 0 0 4px transparent, 0 0 0 4px #06347a; }
      .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:nth-of-type(n+5) {
        display: none; }
      .home .panel-icon-links .fsNavigation ul.fsNavLevel1 li:hover .fsNavPageThumbnail:after {
        -ms-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        transition: transform 0.3s ease 0s, opacity 0.3s ease 0s; }
    .home .panel-icon-links .fsNavigation ul.fsNavLevel1 a {
      display: block;
      height: 178px;
      padding-top: 123px;
      position: relative;
      z-index: 2;
      color: #231f20;
      font-size: 20px;
      line-height: normal;
      letter-spacing: 0.04em;
      text-align: center;
      font-weight: 600;
      text-transform: uppercase; }
      @media (min-width: 600px) {
        .home .panel-icon-links .fsNavigation ul.fsNavLevel1 a {
          height: 170px;
          padding-top: 130px; } }
      @media (min-width: 900px) {
        .home .panel-icon-links .fsNavigation ul.fsNavLevel1 a {
          height: 160px;
          padding-top: 106px; } }
    .home .panel-icon-links .fsNavigation ul.fsNavLevel1 .fsNavPageInfo {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    .home .panel-icon-links .fsNavigation ul.fsNavLevel1 .fsNavPageThumbnail {
      width: 80px;
      height: 80px;
      position: absolute;
      left: 50%;
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      border-radius: 100px; }
      .home .panel-icon-links .fsNavigation ul.fsNavLevel1 .fsNavPageThumbnail:after {
        content: '';
        display: block;
        width: calc(100% + 4px);
        height: calc(100% + 4px);
        border-radius: 200px;
        position: absolute;
        top: 50%;
        left: 50%;
        padding: 0;
        -ms-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -ms-transform: translate(-50%, -50%) scale(0.8);
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
        transition: transform 0.3s ease 0.1s, opacity 0.3s ease 0.1s; }
      .home .panel-icon-links .fsNavigation ul.fsNavLevel1 .fsNavPageThumbnail img {
        max-width: 40px;
        max-height: 40px;
        position: absolute;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }

.home .panel-news {
  margin-bottom: 65px !important; }
  .home .panel-news.fsContainer > header,
  .home .panel-news.fsContainer > .fsElementContent,
  .home .panel-news.fsContainer > footer,
  .home .panel-news.fsSharedContainer > .fsContainer > header,
  .home .panel-news.fsSharedContainer > .fsContainer > .fsElementContent,
  .home .panel-news.fsSharedContainer > .fsContainer > footer {
    background-color: #00b2b0; }
  .home .panel-news.fsContainer > header,
  .home .panel-news.fsSharedContainer > .fsContainer > header {
    padding-top: 43px; }
    @media (min-width: 600px) {
      .home .panel-news.fsContainer > header,
      .home .panel-news.fsSharedContainer > .fsContainer > header {
        padding-top: 51px; } }
    .home .panel-news.fsContainer > header > .fsElementTitle,
    .home .panel-news.fsSharedContainer > .fsContainer > header > .fsElementTitle {
      color: #ffffff !important;
      margin-bottom: -4px !important; }
  .home .panel-news.fsContainer > .fsElementContent,
  .home .panel-news.fsSharedContainer > .fsContainer > .fsElementContent {
    background-color: #00b2b0; }
  .home .panel-news.fsContainer > footer,
  .home .panel-news.fsSharedContainer > .fsContainer > footer {
    padding-bottom: 40px;
    text-align: center; }
    .home .panel-news.fsContainer > footer .fs_style_35,
    .home .panel-news.fsSharedContainer > .fsContainer > footer .fs_style_35 {
      border-color: #ffffff;
      margin: 0 5px 10px;
      font-weight: 700;
      color: #00b2b0; }
      .home .panel-news.fsContainer > footer .fs_style_35:hover,
      .home .panel-news.fsSharedContainer > .fsContainer > footer .fs_style_35:hover {
        color: #ffffff;
        background-color: transparent; }
  .home .panel-news.fsContainer .fsTitle,
  .home .panel-news.fsSharedContainer > .fsContainer .fsTitle {
    color: #ffffff; }
    .home .panel-news.fsContainer .fsTitle a,
    .home .panel-news.fsSharedContainer > .fsContainer .fsTitle a {
      border-bottom: 1px solid rgba(191, 215, 48, 0);
      color: inherit;
      font-size: inherit;
      font-weight: inherit;
      line-height: inherit;
      transition: border 0.3s ease; }
      .home .panel-news.fsContainer .fsTitle a:hover,
      .home .panel-news.fsSharedContainer > .fsContainer .fsTitle a:hover {
        border-bottom: 1px solid #bfd730; }
  .home .panel-news.fsContainer .fsSummary,
  .home .panel-news.fsSharedContainer > .fsContainer .fsSummary {
    color: #ffffff;
    font-size: 14px;
    line-height: 25px; }
  .home .panel-news.fsContainer .fsNewsPostLink.fsReadMoreLink,
  .home .panel-news.fsSharedContainer > .fsContainer .fsNewsPostLink.fsReadMoreLink {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 22px; }
    .home .panel-news.fsContainer .fsNewsPostLink.fsReadMoreLink:hover,
    .home .panel-news.fsSharedContainer > .fsContainer .fsNewsPostLink.fsReadMoreLink:hover {
      color: #bfd730; }
  .home .panel-news.fsContainer .fsEventDetails,
  .home .panel-news.fsSharedContainer > .fsContainer .fsEventDetails {
    color: rgba(255, 255, 255, 0.6); }
  .home .panel-news .fsTwoColumnLayout {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    padding-bottom: 45px; }
    .home .panel-news .fsTwoColumnLayout .fsStyleColumn {
      margin-bottom: 0;
      padding-left: 0;
      padding-right: 0; }
    .home .panel-news .fsTwoColumnLayout .fsStyleColumn-1 {
      width: 100%; }
      @media (min-width: 1100px) {
        .home .panel-news .fsTwoColumnLayout .fsStyleColumn-1 {
          width: 65.25424%;
          padding-right: 20px; } }
    .home .panel-news .fsTwoColumnLayout .fsStyleColumn-2 {
      width: 100%;
      position: relative; }
      .home .panel-news .fsTwoColumnLayout .fsStyleColumn-2:before {
        display: block;
        content: '';
        height: 2px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background-color: rgba(226, 227, 228, 0.2); }
        @media (min-width: 1100px) {
          .home .panel-news .fsTwoColumnLayout .fsStyleColumn-2:before {
            height: auto;
            width: 2px;
            top: 0;
            left: 0;
            right: auto;
            bottom: 0; } }
      @media (min-width: 1100px) {
        .home .panel-news .fsTwoColumnLayout .fsStyleColumn-2 {
          width: 34.74576%;
          padding-left: 30px; } }
  .home .panel-news .news-featured {
    position: relative;
    margin: 0; }
    .home .panel-news .news-featured.fsThumbnailRectangle.fsThumbnailMedium .fsThumbnail, .home .panel-news .news-featured.fsThumbnailSquare.fsThumbnailMedium .fsThumbnail {
      max-width: 100%; }
      @media (min-width: 600px) {
        .home .panel-news .news-featured.fsThumbnailRectangle.fsThumbnailMedium .fsThumbnail, .home .panel-news .news-featured.fsThumbnailSquare.fsThumbnailMedium .fsThumbnail {
          max-width: 240px; } }
    .home .panel-news .news-featured article {
      padding-bottom: 25px; }
    .home .panel-news .news-featured .fsTitle {
      padding-top: 33px;
      padding-bottom: 16px; }
      @media (max-width: 599px) {
        .home .panel-news .news-featured .fsTitle {
          padding-top: 17px;
          font-size: 20px;
          line-height: 26px;
          letter-spacing: -0.01em; } }
    .home .panel-news .news-featured .fsSummary {
      margin-bottom: 12px; }
      .home .panel-news .news-featured .fsSummary > *:last-child {
        margin-bottom: 0; }
    .home .panel-news .news-featured:before {
      display: block;
      content: '';
      height: 2px;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(226, 227, 228, 0.2); }
  .home .panel-news .news-non-featured {
    margin: 0; }
    .home .panel-news .news-non-featured .fsListItems {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-flow: row wrap;
      flex-flow: row wrap;
      padding: 0;
      margin-left: -25px;
      margin-right: -25px; }
      @media (min-width: 600px) {
        .home .panel-news .news-non-featured .fsListItems {
          padding-top: 25px;
          padding-bottom: 25px; } }
      @media (min-width: 1100px) {
        .home .panel-news .news-non-featured .fsListItems {
          padding-bottom: 0; } }
    .home .panel-news .news-non-featured article {
      -ms-flex: 1 1 auto;
      flex: 1 1 auto;
      width: 100%;
      padding: 40px 25px 40px 25px;
      border: 0;
      position: relative; }
      @media (min-width: 600px) {
        .home .panel-news .news-non-featured article {
          width: 50%;
          padding-top: 0;
          padding-bottom: 0; } }
      .home .panel-news .news-non-featured article:nth-of-type(1) {
        display: none; }
      .home .panel-news .news-non-featured article:nth-of-type(2):before {
        display: block;
        content: '';
        height: 2px;
        position: absolute;
        left: 25px;
        right: 25px;
        bottom: 0;
        background-color: rgba(226, 227, 228, 0.2); }
        @media (min-width: 600px) {
          .home .panel-news .news-non-featured article:nth-of-type(2):before {
            height: auto;
            width: 2px;
            left: auto;
            right: 0;
            top: 0; } }
    .home .panel-news .news-non-featured.fsThumbnailAlignLeft .fsThumbnail {
      float: left; }
    @media (max-width: 599px) {
      .home .panel-news .news-non-featured.fsThumbnailSmall.fsThumbnailSquare .fsThumbnail {
        max-width: 80px; } }
    .home .panel-news .news-non-featured .fsTitle {
      padding-top: 16px; }
      @media (max-width: 599px) {
        .home .panel-news .news-non-featured .fsTitle {
          padding-top: 5px;
          font-size: 17px;
          line-height: 25px;
          letter-spacing: -0.01em; } }
      .home .panel-news .news-non-featured .fsTitle a {
        color: inherit;
        font-size: inherit;
        font-weight: inherit;
        line-height: inherit; }
  .home .panel-news .fsCalendar {
    margin-bottom: 0; }
    .home .panel-news .fsCalendar .fsListItems {
      padding-top: 40px; }
      @media (min-width: 600px) {
        .home .panel-news .fsCalendar .fsListItems {
          -moz-columns: 2 0;
          columns: 2 0; } }
      @media (min-width: 1100px) {
        .home .panel-news .fsCalendar .fsListItems {
          padding-top: 13px;
          -moz-columns: auto;
          columns: auto; } }
    .home .panel-news .fsCalendar .fsDate {
      background-color: rgba(35, 31, 32, 0.1); }
    .home .panel-news .fsCalendar article {
      padding-top: 24px;
      padding-bottom: 20px;
      border: 0;
      page-break-inside: avoid;
      break-inside: avoid;
      margin-bottom: 0; }
      .home .panel-news .fsCalendar article:last-of-type {
        padding-bottom: 0; }

.home.fsComposeMode .panel-discover > .fsContainer > .fsElementContent {
  display: block;
  min-height: 0;
  margin: 0; }

.home.fsComposeMode .panel-discover > .fsContainer .fsContent {
  height: auto;
  min-width: 0;
  width: 100%;
  opacity: 1;
  transition: none;
  -ms-transform: none;
  transform: none;
  padding: 20px 20px 32px;
  color: #FFF; }
  .home.fsComposeMode .panel-discover > .fsContainer .fsContent:before {
    content: normal; }
  .home.fsComposeMode .panel-discover > .fsContainer .fsContent > header .fsElementTitle {
    position: static;
    -ms-transform: none;
    transform: none;
    width: auto;
    color: inherit;
    text-align: left; }
  .home.fsComposeMode .panel-discover > .fsContainer .fsContent > .fsElementContent {
    display: block; }
  .home.fsComposeMode .panel-discover > .fsContainer .fsContent .content-inner {
    display: none; }

.home.fsComposeMode .voices {
  margin: 105px 0 40px !important;
  width: auto;
  padding: 40px; }
  .home.fsComposeMode .voices > header {
    padding: 0 !important; }
  .home.fsComposeMode .voices > .fsContainer > header {
    -ms-transform: translateY(0);
    transform: translateY(0);
    margin-bottom: 20px; }
  .home.fsComposeMode .voices > .fsContainer .fsContainer {
    margin-bottom: 40px; }
    .home.fsComposeMode .voices > .fsContainer .fsContainer:last-child {
      margin-bottom: 0; }
    .home.fsComposeMode .voices > .fsContainer .fsContainer > .fsElementContent {
      display: -ms-flexbox;
      display: flex; }
  .home.fsComposeMode .voices .fsResourceElement {
    width: 50%;
    height: auto; }
    .home.fsComposeMode .voices .fsResourceElement picture {
      padding: 0; }
    .home.fsComposeMode .voices .fsResourceElement img {
      position: static;
      -ms-transform: none;
      transform: none;
      filter: grayscale(0);
      opacity: 1;
      width: 100%;
      min-width: 0;
      min-height: 0; }
  .home.fsComposeMode .voices .fsContent {
    min-height: 0;
    max-height: unset;
    width: 50%;
    padding: 20px;
    background-color: rgba(229, 229, 229, 0.6); }
    .home.fsComposeMode .voices .fsContent:before {
      content: normal; }
    .home.fsComposeMode .voices .fsContent > .fsElementContent {
      opacity: 1;
      -ms-transform: scale(1);
      transform: scale(1);
      max-height: unset;
      transition: none; }
    .home.fsComposeMode .voices .fsContent blockquote:before {
      content: normal; }

.social {
  margin-bottom: 0 !important; }
  .social div[class*="fsStyleColumn"] {
    margin-bottom: 0; }
  .social .fsContent {
    margin-bottom: 0; }

.portal:not(.fsComposeMode) .portal-news header .fsElementHeaderContent a, .portal:not(.fsComposeMode) .portal-cal .fsElementFooterContent a, .portal:not(.fsComposeMode) .portal-directory .fsElementPagination a, .portal:not(.fsComposeMode) .portal-directory .fsConstituentItem .fsEmail a {
  color: #06347a; }
  .portal:not(.fsComposeMode) .portal-news header .fsElementHeaderContent a:hover, .portal:not(.fsComposeMode) .portal-cal .fsElementFooterContent a:hover, .portal:not(.fsComposeMode) .portal-directory .fsElementPagination a:hover, .portal:not(.fsComposeMode) .portal-directory .fsConstituentItem .fsEmail a:hover {
    color: #00b2b0; }

.portal:not(.fsComposeMode) .portal-news .fsPrevButton::before, .portal:not(.fsComposeMode) .portal-student-announcements .fsPrevButton::before {
  content: "";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-family: FontAwesome;
  font-size: 60px;
  color: #dedede; }

.portal:not(.fsComposeMode) .portal-news .fsNextButton::before, .portal:not(.fsComposeMode) .portal-student-announcements .fsNextButton::before {
  content: "";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-family: FontAwesome;
  font-size: 60px;
  color: #dedede; }

.portal:not(.fsComposeMode) .portal-news .fsPager, .portal:not(.fsComposeMode) .portal-student-announcements .fsPager {
  padding-top: 20px; }
  .portal:not(.fsComposeMode) .portal-news .fsPager li button:before, .portal:not(.fsComposeMode) .portal-student-announcements .fsPager li button:before {
    color: #dedede; }
  .portal:not(.fsComposeMode) .portal-news .fsPager li.slick-active button:before, .portal:not(.fsComposeMode) .portal-student-announcements .fsPager li.slick-active button:before {
    color: #dedede; }

#fsAccountBar {
  background: #182f50;
  color: #fff;
  font-size: 16px;
  font-family: "fira-sans", sans-serif;
  height: 40px; }
  #fsAccountBar > ul > li {
    height: 40px;
    padding: 10px 12px 8px; }
  #fsAccountBar a {
    color: #fff;
    font-size: 16px;
    font-family: "fira-sans", sans-serif; }
    #fsAccountBar a:hover {
      color: #06347a; }
  #fsAccountBar .fsAccountBarAvatar {
    height: 40px; }
  #fsAccountBar .fsAccountBarMenu a {
    color: #1c1c1c;
    font-size: 16px;
    font-family: "fira-sans", sans-serif; }
    #fsAccountBar .fsAccountBarMenu a:hover {
      color: #06347a; }

.portal a.files:before {
  content: "";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-family: FontAwesome;
  position: relative;
  display: inline;
  font-size: 14px;
  margin-right: 5px; }

.portal a.pops:before {
  content: "";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-family: FontAwesome;
  position: relative;
  display: inline;
  font-size: 14px;
  margin-right: 5px; }

.portal #fsBannerLeft .fsCalendar.fsList article {
  padding-left: 0px;
  font-size: 16px; }

.portal #fsBannerLeft .fsCalendar.fsList .fsDate {
  position: relative;
  top: 0;
  background: none;
  color: initial;
  width: auto;
  height: auto;
  text-align: left;
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #00b2b0; }
  .portal #fsBannerLeft .fsCalendar.fsList .fsDate span {
    display: inline; }

.portal #fsBannerLeft .fsCalendar.fsList .fsDescription p {
  margin-bottom: 2px; }

@media (max-width: 799px) {
  .portal:not(.fsComposeMode) #fsPageBody {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap; }
  .portal:not(.fsComposeMode) #fsBannerLeft {
    -ms-flex-order: 2;
    order: 2; }
  .portal:not(.fsComposeMode) #fsPageContent {
    -ms-flex-order: 1;
    order: 1; } }

.portal:not(.fsComposeMode) .portal-hero {
  height: 310px;
  position: relative; }
  @media (max-width: 799px) {
    .portal:not(.fsComposeMode) .portal-hero {
      height: 200px; } }
  .portal:not(.fsComposeMode) .portal-hero header {
    position: relative;
    margin: 0 auto;
    max-width: 73.75em;
    max-width: 73.75rem;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0; }
  .portal:not(.fsComposeMode) .portal-hero h2.fsElementTitle {
    position: absolute;
    right: 0;
    bottom: 40px;
    margin-bottom: 0px;
    text-align: right;
    color: #fff;
    font-family: "fira-sans", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 62px; }
    @media (max-width: 1200px) {
      .portal:not(.fsComposeMode) .portal-hero h2.fsElementTitle {
        padding: 0 20px; } }
    @media (max-width: 799px) {
      .portal:not(.fsComposeMode) .portal-hero h2.fsElementTitle {
        font-size: 42px;
        left: 0;
        text-align: center; } }

.portal:not(.fsComposeMode) #fsPageBodyWrapper header h2.fsElementTitle {
  font-family: "fira-sans", sans-serif;
  font-weight: 600;
  font-size: 32px;
  text-transform: uppercase;
  color: #162f50; }

.portal:not(.fsComposeMode) #fsPageBodyWrapper .portal-rsrc > .fsElementContent > .fsElement {
  margin-bottom: 30px; }
  .portal:not(.fsComposeMode) #fsPageBodyWrapper .portal-rsrc > .fsElementContent > .fsElement > header h2.fsElementTitle {
    font-family: "fira-sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1c1c1c;
    text-transform: none; }

.portal:not(.fsComposeMode) #fsPageBodyWrapper .fsAccordion .fsPanel > header h2 {
  padding: 8px 19px 10px 39px;
  font-size: 17px;
  line-height: 24px;
  font-weight: 700;
  text-transform: none; }

.portal:not(.fsComposeMode) .portal-news {
  position: relative; }
  .portal:not(.fsComposeMode) .portal-news header .fsElementHeaderContent {
    margin-bottom: 10px; }
    @media (min-width: 600px) {
      .portal:not(.fsComposeMode) .portal-news header .fsElementHeaderContent {
        position: absolute;
        right: 0;
        top: 10px;
        margin-bottom: 0px; } }
  .portal:not(.fsComposeMode) .portal-news a.fsThumbnail {
    width: 300px;
    height: 240px;
    margin-right: 30px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; }
    @media (max-width: 599px) {
      .portal:not(.fsComposeMode) .portal-news a.fsThumbnail {
        display: block;
        float: none; } }
    .portal:not(.fsComposeMode) .portal-news a.fsThumbnail img {
      display: none; }
  .portal:not(.fsComposeMode) .portal-news .fsTitle a.fsNewsPostLink {
    font-family: "fira-sans", sans-serif;
    font-weight: 600;
    color: #162f50;
    font-size: 24px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px; }
    .portal:not(.fsComposeMode) .portal-news .fsTitle a.fsNewsPostLink:hover {
      color: #06347a; }
  .portal:not(.fsComposeMode) .portal-news .fsDateTime {
    font-family: "fira-sans", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1c1c1c; }
  .portal:not(.fsComposeMode) .portal-news .fsSummary {
    font-size: 16px;
    color: #1c1c1c;
    line-height: 28px; }
  .portal:not(.fsComposeMode) .portal-news a.fsNewsPostLink.fsReadMoreLink {
    display: inline-block;
    font-family: "fira-sans", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    color: #fff;
    background: #c83eab;
    padding: 8px 15px; }
    .portal:not(.fsComposeMode) .portal-news a.fsNewsPostLink.fsReadMoreLink:hover {
      background: #149bc7; }
  .portal:not(.fsComposeMode) .portal-news article {
    max-width: 100%;
    border: 0px; }
    @media (max-width: 480px) {
      .portal:not(.fsComposeMode) .portal-news article {
        padding: 0px !important; } }

.portal:not(.fsComposeMode) .portal-cal {
  margin-bottom: 55px;
  position: relative; }
  @media (min-width: 600px) {
    .portal:not(.fsComposeMode) .portal-cal .fsElementControls {
      position: absolute;
      right: 0;
      top: 12px; } }
  .portal:not(.fsComposeMode) .portal-cal > .fsElementContent > .fsListItems {
    border: 1px solid #ebebeb;
    padding: 40px 15px 20px; }
  .portal:not(.fsComposeMode) .portal-cal .fsDayContainer {
    display: inline; }
  .portal:not(.fsComposeMode) .portal-cal article {
    width: 25%;
    display: inline-block;
    margin-left: -2px;
    margin-right: -2px;
    padding-left: 0px;
    text-align: center;
    padding: 0 10px;
    vertical-align: top;
    border: 0; }
    @media (max-width: 599px) {
      .portal:not(.fsComposeMode) .portal-cal article {
        width: 100%;
        margin-bottom: 40px; } }
    .portal:not(.fsComposeMode) .portal-cal article .fsDate {
      position: relative;
      top: initial;
      width: 135px;
      height: 135px;
      border-radius: 100%;
      display: block;
      margin: 0 auto;
      background: #149bc7;
      color: #fff;
      padding-top: 22px;
      margin-bottom: 30px; }
      .portal:not(.fsComposeMode) .portal-cal article .fsDate .fsDay {
        font-family: "semplicitapro", sans-serif;
        font-size: 56px;
        font-weight: 400;
        line-height: 1em;
        display: block; }
      .portal:not(.fsComposeMode) .portal-cal article .fsDate .fsMonth {
        text-transform: uppercase;
        font-family: "semplicitapro", sans-serif;
        font-size: 24px;
        font-weight: 400;
        display: block; }
    .portal:not(.fsComposeMode) .portal-cal article .fsTitle {
      font-family: "semplicitapro", sans-serif;
      font-weight: bold;
      font-size: 20px;
      color: #162f50;
      line-height: 1em;
      margin-bottom: 5px; }
      .portal:not(.fsComposeMode) .portal-cal article .fsTitle a.fsCalendarEventLink {
        color: #162f50; }
        .portal:not(.fsComposeMode) .portal-cal article .fsTitle a.fsCalendarEventLink:hover {
          color: #06347a; }
    .portal:not(.fsComposeMode) .portal-cal article .fsEventDetails {
      font-family: "semplicitapro", sans-serif;
      font-weight: 400;
      font-size: 15px;
      color: #424242; }
      .portal:not(.fsComposeMode) .portal-cal article .fsEventDetails .fsTimeRange:before,
      .portal:not(.fsComposeMode) .portal-cal article .fsEventDetails .fsAllDay:before {
        content: "";
        font-family: "IcoMoon";
        font-smoothing: antialiased;
        font-weight: normal;
        speak: none;
        font-family: FontAwesome;
        font-size: 15px;
        color: #c83eab;
        margin-right: 2px;
        position: relative; }
      .portal:not(.fsComposeMode) .portal-cal article .fsEventDetails .fsLocation:before {
        content: "";
        font-family: "IcoMoon";
        font-smoothing: antialiased;
        font-weight: normal;
        speak: none;
        font-family: FontAwesome;
        font-size: 15px;
        color: #c83eab;
        margin-right: 5px;
        position: relative; }
  .portal:not(.fsComposeMode) .portal-cal .fsElementFooterContent {
    text-align: center; }

.portal:not(.fsComposeMode) .portal-directory-search {
  border-bottom: 0px; }
  .portal:not(.fsComposeMode) .portal-directory-search form label {
    font-family: "fira-sans", sans-serif;
    font-size: 16px;
    color: #00b2b0;
    display: block; }
    .portal:not(.fsComposeMode) .portal-directory-search form label > span {
      display: inline-block;
      min-width: 100px;
      text-align: right; }
    .portal:not(.fsComposeMode) .portal-directory-search form label > input,
    .portal:not(.fsComposeMode) .portal-directory-search form label > select {
      display: inline-block;
      max-width: 190px;
      height: 30px;
      padding: 2px;
      margin-left: 10px; }
  .portal:not(.fsComposeMode) .portal-directory-search .fsConstituentSearchButton {
    font-family: "fira-sans", sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    color: #fff;
    background: #c83eab;
    padding: 8px 15px;
    min-width: 190px;
    margin-left: 125px;
    transition: background 0.15s linear; }
    .portal:not(.fsComposeMode) .portal-directory-search .fsConstituentSearchButton:hover {
      background: #149bc7; }

.portal:not(.fsComposeMode) .portal-directory .fsElementPagination {
  text-align: center; }

.portal:not(.fsComposeMode) .portal-directory .fsConstituentColumnLayout_3 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  @media (max-width: 799px) {
    .portal:not(.fsComposeMode) .portal-directory .fsConstituentColumnLayout_3 {
      max-width: 600px;
      margin: 0 auto; } }

.portal:not(.fsComposeMode) .portal-directory .fsPhoto {
  width: 280px;
  height: 215px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 15px !important; }
  .portal:not(.fsComposeMode) .portal-directory .fsPhoto img {
    display: none; }

.portal:not(.fsComposeMode) .portal-directory .fsConstituentItem {
  background: none;
  font-family: "fira-sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #00b2b0; }
  @media (max-width: 799px) {
    .portal:not(.fsComposeMode) .portal-directory .fsConstituentItem {
      max-width: 280px;
      display: block;
      float: none; } }
  @media (max-width: 599px) {
    .portal:not(.fsComposeMode) .portal-directory .fsConstituentItem {
      margin: 0 auto; } }
  .portal:not(.fsComposeMode) .portal-directory .fsConstituentItem strong {
    font-weight: 600; }
  .portal:not(.fsComposeMode) .portal-directory .fsConstituentItem > div {
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 0px; }
  .portal:not(.fsComposeMode) .portal-directory .fsConstituentItem .fsFullName {
    font-family: "fira-sans", sans-serif;
    font-weight: 600;
    font-size: 24px;
    padding-left: 0px;
    padding-right: 0px;
    text-transform: uppercase;
    margin-bottom: 20px; }
    .portal:not(.fsComposeMode) .portal-directory .fsConstituentItem .fsFullName a {
      color: #162f50; }
      .portal:not(.fsComposeMode) .portal-directory .fsConstituentItem .fsFullName a:hover {
        color: #06347a; }

.portal:not(.fsComposeMode) #fsBannerLeft > .fsBanner > .fsElement {
  margin-bottom: 70px; }

.portal:not(.fsComposeMode) .portal-sub-nav, .portal:not(.fsComposeMode) .portal-sub-nav ul {
  margin: 0;
  padding: 0;
  list-style: none; }

.portal:not(.fsComposeMode) .portal-sub-nav li {
  margin: 0;
  padding: 0; }

@media (max-width: 799px) {
  .portal:not(.fsComposeMode) .portal-sub-nav {
    display: none; } }

@media (max-width: 799px) {
  .portal:not(.fsComposeMode) .portal-sub-nav > .fsElementContent {
    display: none; } }

.portal-sub-nav.active-nav > .fsElementContent {
  display: block; }

.portal:not(.fsComposeMode) .portal-sub-nav .fsNavLevel1 {
  position: relative; }
  .portal:not(.fsComposeMode) .portal-sub-nav .fsNavLevel1 > li > a {
    padding: 0.625em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    display: block; }

.portal:not(.fsComposeMode) .portal-sub-nav li.fsNavCurrentPage > a,
.portal:not(.fsComposeMode) .portal-sub-nav li.fsNavCurrentPageAncestor > a {
  color: #363636; }

.portal:not(.fsComposeMode) .portal-sub-nav .fsNavLevel2 > li > a {
  padding: 0.625em 1.25em;
  display: block; }

.portal:not(.fsComposeMode) .portal-sub-nav > header {
  display: block; }
  @media (min-width: 800px) {
    .portal:not(.fsComposeMode) .portal-sub-nav > header {
      display: none; } }
  @media (min-width: 800px) {
    .portal:not(.fsComposeMode) .portal-sub-nav > header {
      display: block; } }
  .portal:not(.fsComposeMode) .portal-sub-nav > header a {
    font-family: "fira-sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    display: block;
    border-bottom: 1px solid #b7b7b7;
    padding-bottom: 8px; }
  .portal:not(.fsComposeMode) .portal-sub-nav > header > .fsElementTitle {
    position: relative;
    margin: 0;
    padding: 20px;
    cursor: pointer;
    background: #363636;
    color: #fff;
    font-family: "fira-sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    text-align: center; }
    @media (min-width: 800px) {
      .portal:not(.fsComposeMode) .portal-sub-nav > header > .fsElementTitle {
        cursor: default; } }
    @media (max-width: 799px) {
      .portal:not(.fsComposeMode) .portal-sub-nav > header > .fsElementTitle:after {
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        width: 40px;
        line-height: 40px;
        text-align: center;
        margin-left: 8px;
        content: "";
        font-family: "IcoMoon";
        font-smoothing: antialiased;
        font-weight: normal;
        speak: none; } }
    @media (max-width: 799px) {
      .portal-sub-nav.active-nav > header > .fsElementTitle:after {
        content: "";
        font-family: "IcoMoon";
        font-smoothing: antialiased;
        font-weight: normal;
        speak: none; } }

.portal:not(.fsComposeMode) .portal-sub-mobile {
  display: block;
  max-height: 40px;
  overflow: hidden;
  height: 40px;
  transition: max-height 0.15s linear;
  padding: 0px 20px 20px;
  background: #4c4c4c; }
  .portal:not(.fsComposeMode) .portal-sub-mobile a {
    color: #fff !important; }
  .portal:not(.fsComposeMode) .portal-sub-mobile header,
  .portal:not(.fsComposeMode) .portal-sub-mobile > .fsElementContent {
    max-width: 480px;
    margin: 0 auto;
    display: block !important; }
  @media (min-width: 800px) {
    .portal:not(.fsComposeMode) .portal-sub-mobile {
      display: none; } }
  .portal:not(.fsComposeMode) .portal-sub-mobile.active {
    height: auto;
    max-height: 900px; }
  .portal:not(.fsComposeMode) .portal-sub-mobile .fsNavLevel1 > li > a {
    border-bottom: 1px solid #b7b7b7; }
  .portal:not(.fsComposeMode) .portal-sub-mobile .sub-trigger {
    height: 40px;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 0; }

.portal:not(.fsComposeMode) .rsrc-box ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0px; }
  .portal:not(.fsComposeMode) .rsrc-box ul li {
    display: block; }

.portal:not(.fsComposeMode) .rsrc-box.qls ul li {
  display: inline-block;
  max-width: 50px;
  margin-right: 5px; }

.portal:not(.fsComposeMode) .portal-student-announcements {
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 50px;
  width: 100%; }
  .portal:not(.fsComposeMode) .portal-student-announcements header {
    text-align: center; }
  .portal:not(.fsComposeMode) .portal-student-announcements .fsElementSlideshow {
    margin-bottom: 0px;
    padding-bottom: 10px; }
    .portal:not(.fsComposeMode) .portal-student-announcements .fsElementSlideshow article {
      color: #6c6c6c;
      font-size: 16px;
      max-width: 100%;
      border: 0px; }
      @media (min-width: 600px) {
        .portal:not(.fsComposeMode) .portal-student-announcements .fsElementSlideshow article {
          padding-left: 30px; }
          .portal:not(.fsComposeMode) .portal-student-announcements .fsElementSlideshow article:nth-child(odd) {
            border-right: 1px solid #ebebeb; } }
      .portal:not(.fsComposeMode) .portal-student-announcements .fsElementSlideshow article .fsTitle > a {
        font-family: "fira-sans", sans-serif;
        font-weight: 600;
        font-size: 24px;
        color: #162f50; }
        .portal:not(.fsComposeMode) .portal-student-announcements .fsElementSlideshow article .fsTitle > a:hover {
          color: #06347a; }

.portal:not(.fsComposeMode) .portal-photos {
  background: #d0d6dc;
  text-align: center;
  padding: 30px 0 55px; }
  .portal:not(.fsComposeMode) .portal-photos header h2.fsElementTitle {
    font-family: "fira-sans", sans-serif;
    font-weight: 600;
    font-size: 32px;
    text-transform: uppercase; }
  .portal:not(.fsComposeMode) .portal-photos ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0; }
    .portal:not(.fsComposeMode) .portal-photos ul li {
      display: inline-block;
      width: 20%;
      margin-left: -2px;
      margin-right: -2px;
      padding: 0 4px; }
      @media (max-width: 599px) {
        .portal:not(.fsComposeMode) .portal-photos ul li {
          width: 33.33%; } }
      @media (max-width: 480px) {
        .portal:not(.fsComposeMode) .portal-photos ul li {
          width: 50%; } }
      @media (max-width: 320px) {
        .portal:not(.fsComposeMode) .portal-photos ul li {
          width: 100%; } }

/*! pages - style-guide v0.0.1 */
.style-guide .fsPageLayout .fsContainer > header {
  border-bottom: 1px solid #e8e7e7; }
  .style-guide .fsPageLayout .fsContainer > header > .fsElementTitle {
    margin-bottom: 6px;
    color: #222426;
    font-size: 28px;
    font-weight: normal;
    font-family: 'Lato', sans-serif; }

.style-guide .fsPageLayout .fsContainer .style-guide-label {
  margin-bottom: 30px; }
  .style-guide .fsPageLayout .fsContainer .style-guide-label .fsElementContent {
    display: inline-block;
    padding: 8px 33px 7px;
    border-radius: 2px;
    color: #87898c;
    font-size: 16px;
    font-weight: normal;
    font-family: 'Lato', sans-serif;
    background-color: #eeeff2; }

.style-guide .fsPageLayout .fsContainer > .fsElementContent > .fsLayout {
  margin-top: 0; }

.style-guide .fsPageLayout .fsContainer > .fsElementContent > .fsElement:not(.fsPanel) {
  margin-top: 50px; }

.style-guide .colors {
  margin-top: 30px !important; }
  .style-guide .colors ol {
    zoom: 1;
    margin-bottom: 40px;
    margin-left: -10px;
    margin-right: -10px;
    padding: 0;
    list-style: none; }
    .style-guide .colors ol:after {
      display: table;
      clear: both;
      content: ''; }
    .style-guide .colors ol li {
      float: left;
      width: 100px;
      margin-bottom: 30px;
      margin-left: 10px;
      margin-right: 10px;
      position: relative; }
      .style-guide .colors ol li:before {
        display: block;
        content: '';
        width: 100px;
        height: 100px; }
      .style-guide .colors ol li:after {
        display: block;
        padding: 12px 7px 11px;
        border: 1px solid #d1d3d7;
        border-top: 0;
        width: 100%;
        font-size: 16px;
        line-height: 16px;
        text-align: left;
        background-color: #ffffff; }
      .style-guide .colors ol li:nth-of-type(1) {
        color: #47494d;
        background: #ee3224; }
        .style-guide .colors ol li:nth-of-type(1):after {
          content: "#ee3224"; }
      .style-guide .colors ol li:nth-of-type(2) {
        color: #47494d;
        background: #231f20; }
        .style-guide .colors ol li:nth-of-type(2):after {
          content: "#231f20"; }
      .style-guide .colors ol li:nth-of-type(3) {
        color: #47494d;
        background: #06347a; }
        .style-guide .colors ol li:nth-of-type(3):after {
          content: "#06347a"; }
      .style-guide .colors ol li:nth-of-type(4) {
        color: #47494d;
        background: #fdb913; }
        .style-guide .colors ol li:nth-of-type(4):after {
          content: "#fdb913"; }
      .style-guide .colors ol li:nth-of-type(5) {
        color: #47494d;
        background: #bfd730; }
        .style-guide .colors ol li:nth-of-type(5):after {
          content: "#bfd730"; }
      .style-guide .colors ol li:nth-of-type(6) {
        color: #47494d;
        background: #00b2b0; }
        .style-guide .colors ol li:nth-of-type(6):after {
          content: "#00b2b0"; }
      .style-guide .colors ol li:nth-of-type(7) {
        color: #47494d;
        background: #b7e2e3; }
        .style-guide .colors ol li:nth-of-type(7):after {
          content: "#b7e2e3"; }
      .style-guide .colors ol li:nth-of-type(8) {
        color: #47494d;
        background: #b4babf; }
        .style-guide .colors ol li:nth-of-type(8):after {
          content: "#b4babf"; }
      .style-guide .colors ol li:nth-of-type(9) {
        color: #47494d;
        background: #f2f2f2; }
        .style-guide .colors ol li:nth-of-type(9):after {
          content: "#f2f2f2"; }

body:not(.fsComposeMode).blog {
  /*
     #fsPageBodyWrapper {
         margin-left: 0;
         margin-right: 0;
         margin-bottom: 0;
         padding: 0;
     }
     #fsPageBody {
         max-width: 100%;
         padding: 0;
         margin: 0;
     }
     #fsPageContent {
         max-width: 100%;
         padding: 0;
         margin: 0;
         position: relative;
     }
     .fsLayout {
         margin-right: 0px;
         margin-left: 0px;
         .fsDiv {
             padding: 0;
             margin-bottom: 0;
         }
     }
     */ }
  body:not(.fsComposeMode).blog .fsLoadMoreButton {
    margin: 0 auto;
    text-align: center;
    display: block;
    margin-top: 30px;
    border: 0;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0;
    background: none;
    color: #000; }
    body:not(.fsComposeMode).blog .fsLoadMoreButton:hover, body:not(.fsComposeMode).blog .fsLoadMoreButton:focus {
      color: #ee3224; }
  body:not(.fsComposeMode).blog .fsPostElement .fsThumbnail {
    border-radius: 0; }
  body:not(.fsComposeMode).blog .blog-filters {
    zoom: 1;
    margin-bottom: 54px;
    margin-top: 30px; }
    body:not(.fsComposeMode).blog .blog-filters:after {
      display: table;
      clear: both;
      content: ''; }
    body:not(.fsComposeMode).blog .blog-filters > header {
      position: relative;
      margin: 0 auto;
      max-width: 73.75em;
      max-width: 73.75rem;
      text-align: center;
      padding-top: 50px;
      padding-bottom: 50px;
      font-size: 22px;
      line-height: 32px;
      color: #333; }
      @media (max-width: 1220px) {
        body:not(.fsComposeMode).blog .blog-filters > header {
          padding-right: 1.25em;
          padding-left: 1.25em; } }
      body:not(.fsComposeMode).blog .blog-filters > header .fsElementTitle {
        color: #363636;
        font-size: 40px;
        line-height: 50px; }
    body:not(.fsComposeMode).blog .blog-filters > .fsElementContent {
      position: relative;
      margin: 0 auto;
      max-width: 73.75em;
      max-width: 73.75rem; }
      @media (max-width: 1220px) {
        body:not(.fsComposeMode).blog .blog-filters > .fsElementContent {
          padding-right: 1.25em;
          padding-left: 1.25em; } }
      @media (min-width: 700px) {
        body:not(.fsComposeMode).blog .blog-filters > .fsElementContent {
          display: -ms-flexbox;
          display: flex;
          -ms-flex-direction: row;
          flex-direction: row;
          -ms-flex-wrap: no-wrap;
          flex-wrap: no-wrap;
          -ms-flex-pack: justify;
          justify-content: space-between; } }
      @media (min-width: 700px) {
        body:not(.fsComposeMode).blog .blog-filters > .fsElementContent .fsCategoryFilter {
          width: 49%;
          -ms-flex: 0 1 auto;
          flex: 0 1 auto;
          margin-bottom: 0; } }
      @media (min-width: 1000px) {
        body:not(.fsComposeMode).blog .blog-filters > .fsElementContent .fsCategoryFilter {
          width: 580px; } }
      @media (min-width: 700px) {
        body:not(.fsComposeMode).blog .blog-filters > .fsElementContent .fsPostToolsElement.fsSearch {
          width: 49%;
          -ms-flex: 0 1 auto;
          flex: 0 1 auto; } }
      @media (min-width: 1000px) {
        body:not(.fsComposeMode).blog .blog-filters > .fsElementContent .fsPostToolsElement.fsSearch {
          width: 500px; } }
  body:not(.fsComposeMode).blog .fsCategoryFilter {
    position: relative;
    z-index: 5; }
    body:not(.fsComposeMode).blog .fsCategoryFilter > .fsElementContent {
      position: relative; }
    body:not(.fsComposeMode).blog .fsCategoryFilter .fsElementTitle {
      display: block;
      height: 58px;
      width: 100%;
      border: 1px solid #B3B3B3;
      padding: 13px;
      position: relative;
      margin-bottom: 0;
      font-family: "semplicitapro", sans-serif;
      font-style: normal;
      font-weight: 700;
      font-size: 15px;
      line-height: 21px;
      text-transform: uppercase;
      color: #06347A;
      cursor: pointer;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: center;
      justify-content: center;
      -ms-flex-direction: column;
      flex-direction: column;
      padding-left: 34px; }
      body:not(.fsComposeMode).blog .fsCategoryFilter .fsElementTitle:after {
        content: "";
        font-family: "IcoMoon";
        font-smoothing: antialiased;
        font-weight: normal;
        speak: none;
        height: 58px;
        width: 62px;
        border-left: 1px solid #B3B3B3;
        position: absolute;
        top: 0;
        right: 0;
        text-align: center;
        font-size: 18px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center; }
    body:not(.fsComposeMode).blog .fsCategoryFilter .fsToolsList {
      position: absolute;
      top: 0;
      left: 0;
      width: calc(100% - 62px);
      max-height: 0px;
      overflow: hidden;
      background: #fff; }
      body:not(.fsComposeMode).blog .fsCategoryFilter .fsToolsList li {
        display: block;
        margin: 0;
        margin-left: 25px;
        padding: 0; }
        body:not(.fsComposeMode).blog .fsCategoryFilter .fsToolsList li a {
          font-weight: 600;
          font-size: 13px;
          line-height: 16px;
          text-align: center;
          color: #666666;
          padding: 10px;
          margin: 0;
          margin-left: 55px;
          position: relative;
          font-family: "fira-sans", sans-serif;
          background: none;
          width: 100%;
          text-align: left;
          padding: 9px 0; }
          body:not(.fsComposeMode).blog .fsCategoryFilter .fsToolsList li a:before {
            content: '';
            position: absolute;
            top: 50%;
            -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
            background: #ee3224;
            width: 0px;
            height: 2px;
            transition: 0.3s ease;
            display: block;
            left: -45px; }
          body:not(.fsComposeMode).blog .fsCategoryFilter .fsToolsList li a:hover, body:not(.fsComposeMode).blog .fsCategoryFilter .fsToolsList li a:focus {
            color: #ee3224; }
            body:not(.fsComposeMode).blog .fsCategoryFilter .fsToolsList li a:hover:before, body:not(.fsComposeMode).blog .fsCategoryFilter .fsToolsList li a:focus:before {
              width: 32px; }
    body:not(.fsComposeMode).blog .fsCategoryFilter:focus-within .fsToolsList {
      max-height: 1000px;
      border: 1px solid #B3B3B3;
      border-top: 0;
      padding-top: 20px;
      padding-bottom: 20px; }
    body:not(.fsComposeMode).blog .fsCategoryFilter:hover .fsToolsList, body:not(.fsComposeMode).blog .fsCategoryFilter:focus .fsToolsList {
      max-height: 1000px;
      border: 1px solid #B3B3B3;
      border-top: 0;
      padding-top: 20px;
      padding-bottom: 20px; }
  body:not(.fsComposeMode).blog .fsPostToolsElement.fsSearch {
    position: relative;
    width: 100%;
    border: 1px solid #B3B3B3; }
    body:not(.fsComposeMode).blog .fsPostToolsElement.fsSearch .fsStyleSearchField {
      border: 0;
      width: calc(100% - 60px);
      height: 56px;
      color: #666666;
      font-weight: 600;
      font-family: "fira-sans", sans-serif;
      padding-left: 26px; }
    body:not(.fsComposeMode).blog .fsPostToolsElement.fsSearch .fsButtonClear {
      display: none; }
    body:not(.fsComposeMode).blog .fsPostToolsElement.fsSearch .fsElementToolsSearchButton {
      border: 0;
      background: none;
      outline: 0;
      margin: 0;
      padding: 0;
      height: 33px;
      width: 25px;
      color: transparent;
      font-size: 0;
      line-height: 0;
      position: absolute;
      top: 50%;
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
      right: 20px;
      text-align: center;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: center;
      justify-content: center;
      -ms-flex-align: center;
      align-items: center;
      transition: 0.3s; }
      body:not(.fsComposeMode).blog .fsPostToolsElement.fsSearch .fsElementToolsSearchButton:before {
        content: "";
        font-family: "IcoMoon";
        font-smoothing: antialiased;
        font-weight: normal;
        speak: none;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        color: #636363;
        font-size: 18px;
        position: relative; }
      body:not(.fsComposeMode).blog .fsPostToolsElement.fsSearch .fsElementToolsSearchButton:hover, body:not(.fsComposeMode).blog .fsPostToolsElement.fsSearch .fsElementToolsSearchButton:focus {
        opacity: 0.8; }
  body:not(.fsComposeMode).blog .blog-stories > .fsElementContent {
    position: relative;
    margin: 0 auto;
    max-width: 73.75em;
    max-width: 73.75rem; }
    @media (max-width: 1220px) {
      body:not(.fsComposeMode).blog .blog-stories > .fsElementContent {
        padding-right: 1.25em;
        padding-left: 1.25em; } }
  body:not(.fsComposeMode).blog .blog-stories .fsListItems {
    display: block;
    width: 100%; }
    @media (max-width: 699px) {
      body:not(.fsComposeMode).blog .blog-stories .fsListItems {
        border: 0;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw; } }
    @media (min-width: 700px) {
      body:not(.fsComposeMode).blog .blog-stories .fsListItems {
        -moz-column-count: 2;
        column-count: 2; } }
    @media (min-width: 1000px) {
      body:not(.fsComposeMode).blog .blog-stories .fsListItems {
        -moz-column-count: 3;
        column-count: 3; } }
  @media (max-width: 699px) {
    body:not(.fsComposeMode).blog .blog-stories > .fsElementContent > article {
      border: 0;
      width: 100vw;
      position: relative;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw; } }
  body:not(.fsComposeMode).blog .blog-stories article {
    border: 1px solid #B3B3B3;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 30px;
    transition: opacity 1s;
    transition-delay: .5s;
    padding-top: 0;
    font-family: "fira-sans", sans-serif;
    color: #000;
    padding-bottom: 0;
    page-break-inside: avoid;
    break-inside: avoid; }
    @media (max-width: 699px) {
      body:not(.fsComposeMode).blog .blog-stories article {
        border: 0; }
        body:not(.fsComposeMode).blog .blog-stories article .fsReadMoreLink:after {
          content: '';
          border-bottom: 1px solid #B3B3B3;
          height: 1px;
          position: absolute;
          display: block;
          width: 100vw;
          bottom: -1px;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0); } }
    @media (min-width: 1000px) {
      body:not(.fsComposeMode).blog .blog-stories article {
        width: 100%; } }
    body:not(.fsComposeMode).blog .blog-stories article .fsThumbnail {
      margin-bottom: 20px; }
    body:not(.fsComposeMode).blog .blog-stories article .fsTitle {
      font-family: "fira-sans", sans-serif;
      font-size: 20px;
      line-height: 24px;
      color: #000;
      margin-bottom: 8px; }
      body:not(.fsComposeMode).blog .blog-stories article .fsTitle a {
        font-weight: bold; }
      body:not(.fsComposeMode).blog .blog-stories article .fsTitle:hover, body:not(.fsComposeMode).blog .blog-stories article .fsTitle:focus {
        text-decoration: underline; }
    body:not(.fsComposeMode).blog .blog-stories article .fsSummary p {
      font-weight: 400;
      font-size: 16px;
      line-height: 30px;
      color: #000;
      font-family: "fira-sans", sans-serif;
      margin-bottom: 10px; }
    body:not(.fsComposeMode).blog .blog-stories article .fsTag {
      margin: 0;
      font-weight: 400;
      font-size: 12px;
      line-height: 14px;
      border: thin solid #00B3B0;
      padding: 5px 8px;
      display: -ms-inline-flexbox;
      display: inline-flex;
      margin-bottom: 20px;
      padding-top: 8px;
      background: none;
      color: #ee3224;
      margin-right: 15px; }
    body:not(.fsComposeMode).blog .blog-stories article .fsThumbnail {
      line-height: 0; }
      body:not(.fsComposeMode).blog .blog-stories article .fsThumbnail img {
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        height: 240px; }
    body:not(.fsComposeMode).blog .blog-stories article .fsDateTime {
      color: #666666;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
      align-items: center;
      -ms-flex-pack: center;
      justify-content: center;
      margin: 0;
      -ms-flex-pack: start;
      justify-content: flex-start;
      width: 100%;
      font-weight: 600;
      font-size: 13px;
      line-height: 16px; }
    body:not(.fsComposeMode).blog .blog-stories article .fsDate {
      margin-right: 10px;
      border-right: thin solid #666666;
      padding-right: 10px;
      display: inline-block;
      line-height: 1; }
    body:not(.fsComposeMode).blog .blog-stories article .post-wrapper {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
      flex-direction: column;
      margin-left: 23px;
      margin-right: 23px;
      padding-bottom: 22px; }
    body:not(.fsComposeMode).blog .blog-stories article .fsReadMoreLink {
      display: block;
      padding-bottom: 35px !important;
      margin-bottom: 20px !important;
      border-bottom: 1px solid #B3B3B3;
      color: #ee3224;
      font-weight: 500;
      font-size: 13px;
      line-height: 16px;
      position: relative; }
      body:not(.fsComposeMode).blog .blog-stories article .fsReadMoreLink:hover, body:not(.fsComposeMode).blog .blog-stories article .fsReadMoreLink:focus {
        text-decoration: underline;
        color: #06347a; }
    @media (min-width: 1000px) {
      body:not(.fsComposeMode).blog .blog-stories article.fsFeaturedPost:nth-of-type(1) .fsThumbnail {
        -ms-flex-order: 1;
        order: 1;
        margin: 0; }
      body:not(.fsComposeMode).blog .blog-stories article.fsFeaturedPost:nth-of-type(1) .post-wrapper {
        margin-left: 65px;
        padding-right: 19px; } }
    @media (min-width: 1000px) {
      body:not(.fsComposeMode).blog .blog-stories article.fsFeaturedPost:nth-of-type(2) .fsThumbnail {
        margin-right: 40px; }
      body:not(.fsComposeMode).blog .blog-stories article.fsFeaturedPost:nth-of-type(2) .fsReadMoreLink {
        display: inline-block;
        margin: 0; } }
    @media (min-width: 1000px) {
      body:not(.fsComposeMode).blog .blog-stories article.fsFeaturedPost:nth-of-type(1), body:not(.fsComposeMode).blog .blog-stories article.fsFeaturedPost:nth-of-type(2) {
        width: 100%;
        min-height: 470px;
        padding-bottom: 0;
        margin-bottom: 60px;
        display: -ms-flexbox;
        display: flex;
        height: auto; }
        body:not(.fsComposeMode).blog .blog-stories article.fsFeaturedPost:nth-of-type(1) .post-wrapper, body:not(.fsComposeMode).blog .blog-stories article.fsFeaturedPost:nth-of-type(2) .post-wrapper {
          margin-right: 70px;
          display: -ms-flexbox;
          display: flex;
          margin-bottom: 0;
          -ms-flex-direction: column;
          flex-direction: column;
          -ms-flex-pack: justify;
          justify-content: space-between;
          padding-bottom: 22px; }
        body:not(.fsComposeMode).blog .blog-stories article.fsFeaturedPost:nth-of-type(1) .fsTitle, body:not(.fsComposeMode).blog .blog-stories article.fsFeaturedPost:nth-of-type(2) .fsTitle {
          font-family: "fira-sans", sans-serif;
          font-size: 30px;
          line-height: 36px;
          color: #000;
          margin-bottom: 10px; }
          body:not(.fsComposeMode).blog .blog-stories article.fsFeaturedPost:nth-of-type(1) .fsTitle a, body:not(.fsComposeMode).blog .blog-stories article.fsFeaturedPost:nth-of-type(2) .fsTitle a {
            font-weight: bold; }
        body:not(.fsComposeMode).blog .blog-stories article.fsFeaturedPost:nth-of-type(1) .fsSummary,
        body:not(.fsComposeMode).blog .blog-stories article.fsFeaturedPost:nth-of-type(1) .fsTitle, body:not(.fsComposeMode).blog .blog-stories article.fsFeaturedPost:nth-of-type(2) .fsSummary,
        body:not(.fsComposeMode).blog .blog-stories article.fsFeaturedPost:nth-of-type(2) .fsTitle {
          margin-bottom: 30px; }
        body:not(.fsComposeMode).blog .blog-stories article.fsFeaturedPost:nth-of-type(1) .fsTags, body:not(.fsComposeMode).blog .blog-stories article.fsFeaturedPost:nth-of-type(2) .fsTags {
          margin-top: 40px; }
          body:not(.fsComposeMode).blog .blog-stories article.fsFeaturedPost:nth-of-type(1) .fsTags:after, body:not(.fsComposeMode).blog .blog-stories article.fsFeaturedPost:nth-of-type(2) .fsTags:after {
            left: 35px; }
        body:not(.fsComposeMode).blog .blog-stories article.fsFeaturedPost:nth-of-type(1) .fsThumbnail, body:not(.fsComposeMode).blog .blog-stories article.fsFeaturedPost:nth-of-type(2) .fsThumbnail {
          position: relative;
          width: 58%;
          overflow: hidden;
          border-radius: 0;
          min-height: 470px;
          margin-bottom: 0;
          max-width: 680px;
          -ms-flex-positive: 1;
          flex-grow: 1;
          -ms-flex-negative: 0;
          flex-shrink: 0; }
          body:not(.fsComposeMode).blog .blog-stories article.fsFeaturedPost:nth-of-type(1) .fsThumbnail img, body:not(.fsComposeMode).blog .blog-stories article.fsFeaturedPost:nth-of-type(2) .fsThumbnail img {
            width: 100%;
            -o-object-fit: cover;
            object-fit: cover;
            height: 100%; } }
  body:not(.fsComposeMode).blog .blog-stories .slick-arrow {
    width: 40px;
    height: 40px;
    border: 0;
    background: rgba(0, 179, 176, 0.8);
    position: absolute;
    font-size: 0;
    top: 201px;
    z-index: 9;
    cursor: pointer; }
    body:not(.fsComposeMode).blog .blog-stories .slick-arrow:hover, body:not(.fsComposeMode).blog .blog-stories .slick-arrow:focus {
      background: #363636; }
    body:not(.fsComposeMode).blog .blog-stories .slick-arrow:before {
      content: "";
      font-family: "IcoMoon";
      font-smoothing: antialiased;
      font-weight: normal;
      speak: none;
      display: block;
      width: auto;
      height: auto;
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      color: #dfe0e6;
      font-size: 28px;
      line-height: 1;
      transition: color 0.3s ease;
      text-shadow: none;
      box-shadow: none; }
  body:not(.fsComposeMode).blog .blog-stories .slick-prev {
    left: 0; }
    body:not(.fsComposeMode).blog .blog-stories .slick-prev:before {
      content: '\f0d9'; }
  body:not(.fsComposeMode).blog .blog-stories .slick-next {
    right: 0; }
    body:not(.fsComposeMode).blog .blog-stories .slick-next:before {
      content: '\f0da'; }
  body:not(.fsComposeMode).blog .fsEmbed {
    border: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 60px; }
    @media (min-width: 700px) {
      body:not(.fsComposeMode).blog .fsEmbed {
        margin-bottom: -74px; } }
    body:not(.fsComposeMode).blog .fsEmbed .juicer-feed {
      padding: 0; }
      body:not(.fsComposeMode).blog .fsEmbed .juicer-feed .slick-track {
        height: 100% !important; }
      body:not(.fsComposeMode).blog .fsEmbed .juicer-feed.slider .j-text .j-message p {
        color: #fff !important; }
      body:not(.fsComposeMode).blog .fsEmbed .juicer-feed .feed-item {
        display: none;
        display: block !important;
        height: 320px; }
        @media (min-width: 700px) {
          body:not(.fsComposeMode).blog .fsEmbed .juicer-feed .feed-item {
            height: 480px;
            border: thin solid #fff; } }
        body:not(.fsComposeMode).blog .fsEmbed .juicer-feed .feed-item .j-image img {
          height: 320px !important; }
          @media (min-width: 700px) {
            body:not(.fsComposeMode).blog .fsEmbed .juicer-feed .feed-item .j-image img {
              height: 480px !important; } }
        body:not(.fsComposeMode).blog .fsEmbed .juicer-feed .feed-item .j-text {
          background: rgba(0, 0, 0, 0.8); }
        body:not(.fsComposeMode).blog .fsEmbed .juicer-feed .feed-item a.j-instagram {
          position: absolute;
          bottom: 35px;
          right: 35px;
          background: none;
          color: #fff;
          font-size: 31px;
          z-index: 999; }
    body:not(.fsComposeMode).blog .fsEmbed .slick-arrow {
      width: 40px;
      height: 40px;
      border: 0;
      background: rgba(0, 179, 176, 0.8);
      position: absolute;
      font-size: 0;
      top: 201px;
      z-index: 9;
      cursor: pointer; }
      body:not(.fsComposeMode).blog .fsEmbed .slick-arrow:hover, body:not(.fsComposeMode).blog .fsEmbed .slick-arrow:focus {
        background: #363636; }
      body:not(.fsComposeMode).blog .fsEmbed .slick-arrow:before {
        content: "";
        font-family: "IcoMoon";
        font-smoothing: antialiased;
        font-weight: normal;
        speak: none;
        display: block;
        width: auto;
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        color: #dfe0e6;
        font-size: 28px;
        line-height: 1;
        transition: color 0.3s ease;
        text-shadow: none;
        box-shadow: none; }
    body:not(.fsComposeMode).blog .fsEmbed .slick-prev {
      left: 0;
      top: 50%;
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
      margin: 0; }
      @media (min-width: 700px) {
        body:not(.fsComposeMode).blog .fsEmbed .slick-prev {
          left: 8px; } }
      body:not(.fsComposeMode).blog .fsEmbed .slick-prev:before {
        content: '\f0d9'; }
    body:not(.fsComposeMode).blog .fsEmbed .slick-next {
      right: 0;
      top: 50%;
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
      margin: 0; }
      @media (min-width: 700px) {
        body:not(.fsComposeMode).blog .fsEmbed .slick-next {
          right: 8px; } }
      body:not(.fsComposeMode).blog .fsEmbed .slick-next:before {
        content: '\f0da'; }

body:not(.fsComposeMode).blog-article #fsPageBodyWrapper {
  padding-bottom: 0; }

body:not(.fsComposeMode).blog-article #fsPageContent > .fsPageLayout > .fsDiv {
  margin-bottom: 0; }

@media (min-width: 1000px) {
  body:not(.fsComposeMode).blog-article .fsLayout.fsTwoColumnWideLeftLayout .fsStyleOneThird {
    width: 33.33% !important;
    padding-left: 93px; } }

@media (min-width: 1000px) {
  body:not(.fsComposeMode).blog-article .fsLayout.fsTwoColumnWideLeftLayout .fsStyleTwoThirds {
    width: 66.66% !important; } }

body:not(.fsComposeMode).blog-article .fsResource figcaption {
  margin-top: 10px;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px; }

body:not(.fsComposeMode).blog-article .back-blog {
  margin-bottom: 60px; }
  body:not(.fsComposeMode).blog-article .back-blog a {
    font-family: "semplicitapro", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 24px;
    color: #ee3224;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase; }
    body:not(.fsComposeMode).blog-article .back-blog a:hover, body:not(.fsComposeMode).blog-article .back-blog a:focus {
      color: #06347a; }
    body:not(.fsComposeMode).blog-article .back-blog a:after {
      content: '';
      background: #B3B3B3;
      height: 2px;
      width: calc(100% - 152px);
      display: block;
      position: absolute;
      right: 0; }

body:not(.fsComposeMode).blog-article .blog-stories .fsTitle {
  border-bottom: 1px solid #B3B3B3;
  margin-bottom: 25px;
  padding-bottom: 30px; }

body:not(.fsComposeMode).blog-article .blog-featured {
  max-width: 780px; }
  body:not(.fsComposeMode).blog-article .blog-featured > footer {
    border: 0;
    padding: 0; }
  body:not(.fsComposeMode).blog-article .blog-featured .fsThumbnail {
    width: 100%;
    border-radius: 0;
    margin-bottom: 30px; }
    body:not(.fsComposeMode).blog-article .blog-featured .fsThumbnail img {
      width: 100%; }
  body:not(.fsComposeMode).blog-article .blog-featured .fsTitle {
    font-family: "fira-sans", sans-serif;
    font-size: 30px;
    line-height: 36px;
    color: #000;
    margin-bottom: 10px;
    font-weight: bold;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #B3B3B3;
    display: inline-block; }
  body:not(.fsComposeMode).blog-article .blog-featured .fsDateTime {
    color: #666666;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 40px; }
  body:not(.fsComposeMode).blog-article .blog-featured .fsDate {
    margin-right: 10px;
    border-right: thin solid #666666;
    padding-right: 10px;
    display: inline-block;
    line-height: 1; }
  body:not(.fsComposeMode).blog-article .blog-featured .fsTag {
    margin: 0;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    border: thin solid #00B3B0;
    padding: 5px 8px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-bottom: 20px;
    padding-top: 8px;
    background: none;
    color: #ee3224;
    margin-right: 15px; }

body:not(.fsComposeMode).blog-article .subscribe h2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px; }

.wf-loading {
  visibility: hidden;
  opacity: 0; }

.wf-active, .wf-inactive {
  visibility: visible;
  opacity: 1; }

.resourcesVideoControls {
  position: absolute;
  bottom: 15px;
  z-index: 999;
  left: 30px; }

.resourcesVideoControls__playButton:before {
  content: "";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-family: "IcoMoon"; }

.active.resourcesVideoControls__playButton:before {
  content: '\f04b'; }

.resourcesVideoControls__muteButton:before {
  content: "";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-family: "IcoMoon"; }

.active.resourcesVideoControls__muteButton:before {
  content: '\f026'; }

.resourcesVideoControls__playButton, .resourcesVideoControls__muteButton {
  margin: 5px;
  width: 40px;
  height: 40px;
  border: 0;
  font-size: 24px;
  color: white;
  line-height: 40px;
  padding: 0;
  background: transparent; }

@media print {
  .nav-main,
  .nav-sub,
  .nav-social,
  .nav-utility-hdr,
  .nav-utility-ftr,
  #fsMenu,
  #fsFooter,
  .fsThumbnail {
    display: none !important; }
  #fsPageContent,
  #fsBannerLeft,
  #fsBannerRight {
    width: 100%; }
  html {
    font-size: 100%;
    /* for IE */ }
  body {
    font-size: 62.5%; }
  #fsHeader {
    border-bottom: 2px solid #000; }
    #fsHeader .site-name {
      color: #231f20;
      margin-top: 0;
      font-weight: bold;
      color: #ee3224;
      font-size: 36px;
      line-height: 40px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 17px; }
  * {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
    min-height: auto !important;
    height: auto !important; }
  a, a:visited {
    text-decoration: underline; }
  dl dd {
    margin-left: 0; }
  div, dl, li {
    height: auto !important;
    height: 1%; }
  thead {
    display: table-header-group; }
  tr, img, h2, h3, pre, blockquote {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; } }
