 /**
 *
 * GEMS World Academy, Switzerland - default_16
 * @link http://gemsworldacademyswitzerlandcom.finalsite.com
 * Built By: Geoff Hasson & Jorge Piquer
 * Project Manager: Ritsa LaFond
 * Designer: Patryk Serkowski
 *
 */

@charset "UTF-8";
/* Lightbox Videos Hero Section */
/*
 * 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 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99998;
  width: 100%;
  height: 100%;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  box-sizing: border-box;
}

.nivo-lightbox-overlay.nivo-lightbox-open {
  visibility: visible;
  opacity: 1;
}

.nivo-lightbox-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}

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

.nivo-lightbox-title-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  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 {
  position: absolute;
  top: 2%;
  right: 2%;
}

.nivo-lightbox-image {
  text-align: center;
}

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

.nivo-lightbox-content iframe {
  width: 70%;
  height: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.nivo-lightbox-inline,
.nivo-lightbox-ajax {
  max-height: 100%;
  overflow: auto;
  box-sizing: border-box;
  /* https://bugzilla.mozilla.org/show_bug.cgi?id=308801 */
}

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

.nivo-lightbox-error p {
  display: table-cell;
  vertical-align: middle;
}

/* Effects
 **********************************************/
.nivo-lightbox-notouch .nivo-lightbox-effect-fade,
.nivo-lightbox-notouch .nivo-lightbox-effect-fadeScale,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideLeft,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideRight,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideUp,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideDown,
.nivo-lightbox-notouch .nivo-lightbox-effect-fall {
  transition: all 0.2s ease-in-out;
}

/* fadeScale */
.nivo-lightbox-effect-fadeScale .nivo-lightbox-wrap {
  transition: all 0.3s;
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
}

.nivo-lightbox-effect-fadeScale.nivo-lightbox-open .nivo-lightbox-wrap {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* slideLeft / slideRight / slideUp / slideDown */
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap {
  -webkit-transform: translateX(-10%);
  -ms-transform: translateX(-10%);
  transform: translateX(-10%);
}

.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap {
  -webkit-transform: translateX(10%);
  -ms-transform: translateX(10%);
  transform: translateX(10%);
}

.nivo-lightbox-effect-slideLeft.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight.nivo-lightbox-open .nivo-lightbox-wrap {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
  -webkit-transform: translateY(-10%);
  -ms-transform: translateY(-10%);
  transform: translateY(-10%);
}

.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap {
  -webkit-transform: translateY(10%);
  -ms-transform: translateY(10%);
  transform: translateY(10%);
}

.nivo-lightbox-effect-slideUp.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown.nivo-lightbox-open .nivo-lightbox-wrap {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* fall */
.nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall {
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.nivo-lightbox-effect-fall .nivo-lightbox-wrap {
  transition: all 0.3s ease-out;
  -webkit-transform: translateZ(300px);
  -ms-transform: translateZ(300px);
  transform: translateZ(300px);
}

.nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap {
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

/*! helpers - functions v0.0.1 */
/*! helpers - utility v0.0.1 */
.compartment {
  position: relative;
  margin: 0 auto;
  max-width: 85.55556em;
  max-width: 96.25rem;
}

@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.11111em;
  margin-left: 1.11111em;
}

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

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

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

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

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

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

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

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

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

/*! helpers - presentational v0.0.1 */
/*! helpers - ui-pattern v0.0.1 */
/*
Example sites:
http://coderepo.demo.finalsite.com/stuff-by-al/dropdown-mixin
http://codepen.io/foxareld/pen/BNpWJm

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

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

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

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

*/
/*! helpers - typography v0.0.1 */
@font-face {
  font-family: 'IcoMoon';
  src: url("../fonts//icomoon.eot");
  src: url("../fonts//icomoon.eot?#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;
}
b,
strong {
  font-family: "Genius W00 Bold", sans-serif;
}

.icon-just-gems:before {
  content: "\e90e";
}

.icon-play:before {
  content: "\e90b";
}

.icon-check:before {
  content: "\e909";
}

.icon-Shape:before {
  content: "\e90a";
}

.icon-Group-6:before {
  content: "\e908";
}

.icon-portals:before {
  content: "\e901";
}

.icon-arrow-up:before {
  content: "\e907";
}

.icon-angle-left:before {
  content: "\e90c";
}

.icon-angle-right:before {
  content: "\e90d";
}

.icon-youtube-play:before {
  content: "\e904";
}

.icon-twitter:before {
  content: "\e905";
}

.icon-facebook:before {
  content: "\e906";
}

.icon-facebook-f:before {
  content: "\e906";
}

.icon-caret-up:before {
  content: "\e902";
}

.icon-caret-down:before {
  content: "\e903";
}

.icon-search:before {
  content: "\e900";
}

.fsBanner .fsElementTitle {
  font-size: 27px;
}

.fsTitle, .fsFacebookFrom, .fsVimeoTitle, .fsYoutubeTitle {
  margin: 0;
  font-weight: bold;
  font-size: 1.1em;
}

h1 {
  margin-top: 0;
  font-style: normal;
  font-family: "Genius W00 SemiBold", sans-serif;
  font-size: 40px;
  line-height: 44px;
  color: #00A3E0;
  margin-bottom: 16px;
}

h2 {
  margin-top: 0;
  font-style: normal;
  font-family: "Genius W00 SemiBold", sans-serif;
  font-size: 40px;
  line-height: 44px;
  color: #00A3E0;
  margin-bottom: 16px;
}

h3 {
  margin-top: 0;
  font-style: normal;
  font-family: "Genius W00 SemiBold", sans-serif;
  font-size: 27px;
  line-height: 30px;
  color: #00A3E0;
  margin-bottom: 10px;
}

h4 {
  margin-top: 0;
  font-style: normal;
  font-family: "Genius W00 SemiBold", sans-serif;
  font-size: 25px;
  line-height: 27px;
  color: #00A3E0;
  margin-bottom: 10px;
}

h5 {
  margin-top: 0;
  font-style: normal;
  font-family: "Genius W00 SemiBold", sans-serif;
  font-size: 20px;
  line-height: 22px;
  margin-bottom: 10px;
}

h6 {
  margin-top: 0;
  font-style: normal;
  font-family: "Genius W00 SemiBold", sans-serif;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 10px;
}

p {
  margin: 0 0 20px;
}

hr {
  margin: 0 auto 20px;
}

a {
  outline: 0;
  text-decoration: none;
  color: #888B8D;
  transition: background .3s, color .3s;
}
a:hover {
  color: #FF6900;
}

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

.fsAthleticsEvent.fsTable .fsElementTable, .fsAthleticsRoster .fsElementTable,
table {
  width: 100%;
}

table.styled,
.fs_style_28 {
  margin-bottom: 20px;
  width: 100%;
  overflow-x: auto;
}
table.styled p,
.fs_style_28 p {
  margin: 0;
}
table.styled th,
table.styled td,
.fs_style_28 th,
.fs_style_28 td {
  vertical-align: top;
  border-bottom: 1px solid #fff;
}
table.styled th,
.fs_style_28 th {
  padding: 10px;
  text-align: left;
  background: #00A3E0;
  color: #fff;
  border: 1px solid #000;
}
table.styled td,
.fs_style_28 td {
  padding: 10px;
  border: 1px solid #000;
}
table.styled tr:nth-of-type(odd) td,
.fs_style_28 tr:nth-of-type(odd) td {
  background-color: #00A3E0;
  color: #fff;
}
table.styled tr:nth-of-type(odd) td a,
.fs_style_28 tr:nth-of-type(odd) td a {
  color: #fff;
}
table.styled tr:nth-of-type(odd) td a:hover,
.fs_style_28 tr:nth-of-type(odd) td a:hover {
  color: #FF6900;
}

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

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

.button {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #00A3E0;
  color: #fff;
  outline: 0;
  border-radius: 3px;
  text-align: center;
}
.button:hover {
  background: #0090c7;
  color: #fff;
}
.button em {
  display: block;
  font-style: normal;
}

.color-button {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #041E42;
  color: #fff;
  outline: 0;
  border-radius: 3px;
  text-align: center;
}
.color-button:hover {
  background: #03132a;
  color: #fff;
}
.color-button em {
  display: block;
  font-style: normal;
}

.hollow-button,
.fs_style_23 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: transparent;
  color: #00A3E0;
  outline: 0;
  border-radius: 3px;
  text-align: center;
  border: 2px solid #00A3E0;
}
.hollow-button:hover,
.fs_style_23:hover {
  background: transparent;
  color: #00A3E0;
}
.hollow-button em,
.fs_style_23 em {
  display: block;
  font-style: normal;
}
.hollow-button:hover,
.fs_style_23:hover {
  background: #00A3E0;
  color: #fff;
}
#fsBannerRight .hollow-button, #fsBannerLeft .hollow-button, #fsBannerRight
.fs_style_23, #fsBannerLeft
.fs_style_23 {
  display: block;
}

.fsStyleDefaultButton {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #4a4a4a;
  color: #fff;
  outline: 0;
  border-radius: 3px;
  text-align: center;
}
.fsStyleDefaultButton:hover {
  background: #3d3d3d;
  color: #fff;
}
.fsStyleDefaultButton em {
  display: block;
  font-style: normal;
}
.fsStyleDefaultButton.fsCategoryLink {
  margin-right: 5px;
}
.fsStyleDefaultButton.fsLoadMoreButton {
  margin-bottom: 0;
}

.fsStyleUpdateButton {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #4a4a4a;
  color: #fff;
  outline: 0;
  border-radius: 3px;
  text-align: center;
}
.fsStyleUpdateButton:hover {
  background: #3d3d3d;
  color: #fff;
}
.fsStyleUpdateButton em {
  display: block;
  font-style: normal;
}
.fsStyleUpdateButton.fsElementToolsSearchButton {
  margin-top: 20px;
  margin-bottom: 0;
}

body:not(.fsComposeMode) .image-hover {
  height: 250px;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
body:not(.fsComposeMode) .image-hover > .fsElementContent {
  text-align: center;
  transition: all .5s ease-in-out;
}
body:not(.fsComposeMode) .image-hover > .fsElementContent p {
  padding: 10px 20px;
  margin-top: 0;
  font-style: normal;
  font-family: "Genius W00 SemiBold", sans-serif;
  font-size: 27px;
  line-height: 30px;
  color: #00A3E0;
  margin-bottom: 10px;
  color: #fff;
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  background-color: rgba(0, 163, 224, 0.75);
  margin: 0;
}
body:not(.fsComposeMode) .image-hover footer {
  opacity: 0;
  background-color: rgba(0, 163, 224, 0.75);
  height: 100%;
  transition: all .5s ease-in-out;
}
body:not(.fsComposeMode) .image-hover footer .fsElementFooterContent {
  padding: 20px;
  text-align: center;
  width: 100%;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  color: #fff;
}
body:not(.fsComposeMode) .image-hover footer .fsElementFooterContent a {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: transparent;
  color: #fff;
  outline: 0;
  border-radius: 3px;
  text-align: center;
  border: 2px solid #fff;
  display: block;
  max-width: 150px;
  margin: 20px auto;
}
body:not(.fsComposeMode) .image-hover footer .fsElementFooterContent a:hover {
  background: transparent;
  color: #fff;
}
body:not(.fsComposeMode) .image-hover footer .fsElementFooterContent a em {
  display: block;
  font-style: normal;
}
body:not(.fsComposeMode) .image-hover footer .fsElementFooterContent a:hover {
  background-color: #fff;
  color: #00A3E0;
}
body:not(.fsComposeMode) .image-hover:hover > .fsElementContent {
  opacity: 0;
}
body:not(.fsComposeMode) .image-hover:hover footer {
  opacity: 1;
}

.profile {
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.profile header {
  position: absolute;
  width: 100%;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  padding: 10px 30px;
}
.profile .fsElementTitle {
  font-size: 18px;
  line-height: 20px;
  color: #4a4a4a;
  margin-bottom: 5px;
}
.profile .fsElementHeaderContent {
  font-size: 20px;
  color: #00A3E0;
  margin-bottom: 0;
}

.lead-in,
.fs_style_24 {
  font-size: 1.5em;
  line-height: 1.48148em;
  color: #00A3E0;
  font-family: "Genius W00 SemiBold", sans-serif;
}

.blockquote {
  text-align: center;
  color: #fff;
  position: relative;
  padding: 20px;
  padding-top: 86px;
  margin-top: 86px;
}
.blockquote .fsElementTitle {
  color: #fff;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 0;
}
.blockquote .fsElementHeaderContent img {
  position: absolute;
  top: -70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 100%;
  max-width: 120px;
}
.blockquote.left {
  padding-top: 20px;
  text-align: right;
  text-indent: 50px;
}
.blockquote.left .fsElementHeaderContent img {
  left: -20px;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

blockquote {
  position: relative;
  margin: 20px 0;
  font-size: 1em;
  line-height: 1.2em;
}
blockquote:before {
  content: '\201C';
}
blockquote:after {
  content: '\201D';
}

cite {
  display: block;
  margin: 0 0 20px;
  font-style: normal;
}
cite:before {
  content: '- ';
}

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

.button-list ul:not(.redactor-toolbar) {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  max-width: 480px;
  font-family: "Genius W00 SemiBold", sans-serif;
}
.button-list ul:not(.redactor-toolbar) li {
  position: relative;
}
.button-list ul:not(.redactor-toolbar) li:before {
  content: '';
  width: 25px;
  height: calc(100% + 5px);
  position: absolute;
  top: 0;
  left: 0;
  background: #00A3E0;
  z-index: 1;
}
.button-list ul:not(.redactor-toolbar) li:last-child:before {
  height: 100%;
}
.button-list ul:not(.redactor-toolbar) li:not(:last-child) {
  border-bottom: 5px solid #A0A0A0;
}
.button-list ul:not(.redactor-toolbar) li a {
  display: block;
  padding: 1.11111em;
  color: #fff;
  text-align: right;
  background-color: #888B8D;
  -webkit-transform-origin: 0;
  -ms-transform-origin: 0;
  transform-origin: 0;
  transition: .3s;
}
.button-list ul:not(.redactor-toolbar) li a:before {
  content: "";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-size: 50%;
  margin-right: 20px;
  opacity: 0;
  vertical-align: middle;
  transition: .3s;
}
.button-list ul:not(.redactor-toolbar) li a:hover {
  -webkit-transform: scaleX(1.05);
  -ms-transform: scaleX(1.05);
  transform: scaleX(1.05);
  background-color: #00A3E0;
}
.button-list ul:not(.redactor-toolbar) li a:hover:before {
  opacity: 1;
}

/*! structure - header v0.0.1 */
.header-container {
  background: #fff;
  position: fixed;
  width: 100%;
  height: 100px;
  z-index: 501;
  transition: .3s;
}
.fsComposeMode .header-container {
  position: relative;
}
@media (min-width: 800px) {
  .has-slideshow .header-container {
    background: transparent;
  }
}
.menu-is-active .header-container, .sticky .header-container {
  background: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}
.header-container.fsElement,
.header-container .fsElement,
.header-container p {
  margin-bottom: 0;
}
.header-container > .fsElementContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 900px) {
  .header-container > .fsElementContent {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.util-container {
  padding-right: 0;
  font-size: 12px;
}
@media (min-width: 800px) {
  .util-container {
    padding-right: 20px;
  }
}
.util-container .fsNavLevel1 > li:before {
  content: "";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-80%);
  -ms-transform: translateY(-80%);
  transform: translateY(-80%);
  color: #00A3E0;
  transition: .3s;
}
@media (min-width: 900px) {
  .util-container {
    padding-right: 50px;
  }
}
.util-container > .fsElementContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.util-container > .fsElementContent > .fsElement {
  margin: 0 10px;
}
.util-container > .fsElementContent > .fsElement:not(.menu-toggle) {
  display: none;
}
@media (min-width: 900px) {
  .util-container > .fsElementContent > .fsElement:not(.menu-toggle) {
    display: block;
  }
}
.util-container .fs_style_23 {
  margin-bottom: 0;
  text-transform: uppercase;
  padding: 4px 26px;
}
.util-container .fs_style_23:hover {
  color: #fff;
}
.util-container a,
.util-container button {
  color: #00A3E0;
}
.util-container a:before,
.util-container button:before {
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 5px;
}
.util-container a:hover,
.util-container button:hover {
  color: #FF6900;
}

.site-info-container {
  background: #00A3E0;
  padding: 0 0 0 15px;
  white-space: nowrap;
  position: relative;
}
.site-info-container:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100px 45px 0 0;
  border-color: #00A3E0 transparent transparent transparent;
  position: absolute;
  bottom: 0;
  right: -45px;
}
.site-info-container.fsElement,
.site-info-container .fsElementHeaderContent {
  margin-bottom: 0;
}
.site-info-container h1 {
  margin-bottom: 0;
}
.site-info-container a {
  display: block;
  color: transparent;
  width: 220px;
  height: 100px;
}
.svg .site-info-container a {
  background: url("../images/gwas-logo.svg") no-repeat 0 48%;
}
.no-svg .site-info-container a {
  background: url("../images/logo.png") no-repeat 0 48%;
}
.site-info-container a:hover {
  color: transparent;
}
@media (min-width: 600px) {
  .site-info-container a {
    width: 400px;
  }
  .svg .site-info-container a {
    background-size: 400px;
  }
  .no-svg .site-info-container a {
    background-size: 400px;
  }
}

#fsFooter {
  color: #fff;
  background: #393939;
}
#fsFooter ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.logos {
  background: #F3F3F3;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 1.11111em;
  padding-left: 1.11111em;
}
.logos.fsElement {
  margin-bottom: 0;
}
.logos > .fsElementContent {
  position: relative;
  margin: 0 auto;
  max-width: 85.55556em;
  max-width: 96.25rem;
}
.logos img {
  display: block;
}
.logos ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.logos li:not(:last-child) {
  margin-bottom: 20px;
  margin-right: 20px;
}
@media (min-width: 800px) {
  .logos li:not(:last-child) {
    margin: 0;
  }
}

.footer-upper {
  background: #00A3E0;
  padding: 20px;
  position: relative;
}
@media (min-width: 800px) {
  .footer-upper {
    padding-top: 10px;
  }
  .footer-upper > .fsElementContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .footer-upper > .fsElementContent > .fsElement {
    width: 50%;
  }
}
@media (min-width: 900px) {
  .footer-upper > .fsElementContent > .fsElement {
    width: 33.33%;
    margin-bottom: 0;
  }
  .footer-upper > .fsElementContent > .fsElement:first-child {
    padding-right: 40px;
  }
  .footer-upper > .fsElementContent > .fsElement:last-child {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .footer-upper {
    background: #00A3E0 url(../images/footer-boy.svg) no-repeat -10px 101%;
    background-size: 250px;
  }
  .footer-upper > .fsElementContent > .fsElement {
    width: 25%;
  }
  .footer-upper > .fsElementContent > .fsElement:last-child {
    width: 25%;
  }
}
.footer-upper > .fsElementContent {
  position: relative;
  margin: 0 auto;
  max-width: 85.55556em;
  max-width: 96.25rem;
}
.footer-upper > .fsElementContent > .fsElement:not(:last-child) {
  position: relative;
  padding-left: 20px;
  padding-top: 40px;
}
.footer-upper > .fsElementContent > .fsElement:not(:last-child):before {
  content: '';
  background: #fff;
  width: 5px;
  height: 100px;
  position: absolute;
  left: 0;
  top: 50px;
}
.footer-upper .fsElementTitle {
  color: #fff;
}
.footer-upper li {
  display: inline-block;
  margin: 0 10px 10px;
}
@media (min-width: 800px) {
  .footer-upper li {
    display: block;
  }
}
.footer-upper a {
  color: #fff;
  display: block;
}
.footer-upper a:hover {
  color: #041E42;
}
.footer-upper .nav-social {
  text-align: center;
  background: url(../images/footer-g.svg) 50% no-repeat;
  background-size: contain;
  padding: 100px 0;
}
.footer-upper .nav-social.fsElement,
.footer-upper .nav-social .fsElementFooterContent {
  margin: 0;
}
.footer-upper .nav-social .fsElementFooterContent img {
  max-width: 300px;
}
.footer-upper .nav-social .fsNavLevel1 li a:before {
  font-size: 32px;
}
.footer-upper .nav-social .fsNavLevel1 li a:hover:before {
  color: #041E42;
}

.copyright {
  padding-right: 1.11111em;
  padding-left: 1.11111em;
  position: relative;
  z-index: 10;
}
.copyright > .fsElementContent {
  position: relative;
  margin: 0 auto;
  max-width: 85.55556em;
  max-width: 96.25rem;
}

#scroll-top {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 60px 30px 60px;
  border-color: transparent transparent #393939 transparent;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 0;
}
#scroll-top:hover {
  color: #00A3E0;
}
#scroll-top:after {
  content: "";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-size: 18px;
  position: absolute;
  top: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.school-details {
  margin-bottom: 20px;
}
.school-details [itemprop='name'] {
  margin-top: 0;
  font-style: normal;
  font-family: "Genius W00 SemiBold", sans-serif;
  font-size: 25px;
  line-height: 27px;
  color: #00A3E0;
  margin-bottom: 10px;
}
.school-details [itemprop='streetAddress'] {
  display: block;
}
.school-details a {
  color: inherit;
}

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

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

html {
  font-family: "Genius W00 Regular", sans-serif;
  background: #00A3E0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-size: 18px;
  line-height: 26px;
  color: #4a4a4a;
}

.fsPageTitle {
  border-left: 5px solid #FF6900;
  padding-left: 30px;
}
.fsPageTitle span {
  display: block;
  font-size: 18px;
  line-height: 1;
  color: #4a4a4a;
  margin-bottom: 20px;
}

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

#fsPageBodyWrapper {
  padding-right: 1.11111em;
  padding-left: 1.11111em;
  background: #fff;
}
.no-slides #fsPageBodyWrapper {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 900px) {
  .no-slides #fsPageBodyWrapper {
    padding-top: 144px;
  }
}
.has-slideshow:not(.home) #fsPageBodyWrapper {
  margin-top: -60px;
}

#fsPageBody {
  position: relative;
  margin: 0 auto;
  max-width: 85.55556em;
  max-width: 96.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 600px) {
  #fsPageBody {
    display: block;
  }
}
@media (min-width: 800px) {
  #fsPageBody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#fsPageContent {
  width: 100%;
}

#fsBannerLeft {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 700px) {
  #fsBannerLeft {
    padding-right: 80px;
    width: 325px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 0;
  }
}
@media (min-width: 600px) {
  .fsHasLeftBanner.fsHasRightBanner #fsBannerLeft {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-right: 20px;
    width: 200px;
  }
}
@media (min-width: 700px) {
  .fsHasLeftBanner.fsHasRightBanner #fsBannerLeft {
    padding-right: 80px;
    width: 325px;
  }
}
@media (min-width: 800px) {
  .fsHasLeftBanner.fsHasRightBanner #fsBannerLeft {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-right: 20px;
    width: 200px;
  }
}
@media (min-width: 1000px) {
  .fsHasLeftBanner.fsHasRightBanner #fsBannerLeft {
    padding-right: 80px;
    width: 325px;
  }
}

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

#fsBannerRight {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 700px) {
  #fsBannerRight {
    padding-left: 100px;
    width: 400px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 0;
  }
}
.fsHasLeftBanner.fsHasRightBanner #fsBannerRight {
  width: 100%;
  padding: 0;
}
@media (min-width: 800px) {
  .fsHasLeftBanner.fsHasRightBanner #fsBannerRight {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-left: 20px;
    width: 240px;
  }
}
@media (min-width: 1000px) {
  .fsHasLeftBanner.fsHasRightBanner #fsBannerRight {
    padding-left: 100px;
    width: 400px;
  }
}

@media (min-width: 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: 1.11111em;
    padding-left: 1.11111em;
  }
}

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

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

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

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

div[class*="fsTwoColumnWide"] {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
div[class*="fsTwoColumnWide"] > .fsDiv {
  padding: 0;
  margin: 0;
  width: 100%;
  float: none;
  margin-bottom: 20px;
}
@media (min-width: 700px) {
  div[class*="fsTwoColumnWide"] > .fsDiv {
    margin-bottom: 0;
  }
}
div[class*="fsTwoColumnWide"] > .fsDiv:last-child {
  margin-bottom: 0;
}

.fsTwoColumnWideRightLayout > .fsDiv.fsStyleTwoThirds {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media (min-width: 700px) {
  .fsTwoColumnWideRightLayout > .fsDiv.fsStyleTwoThirds {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: calc(100% - 325px);
  }
}
@media (min-width: 700px) {
  .fsHasLeftBanner .fsTwoColumnWideRightLayout > .fsDiv.fsStyleTwoThirds {
    width: 100%;
  }
}
@media (min-width: 1000px) {
  .fsHasLeftBanner .fsTwoColumnWideRightLayout > .fsDiv.fsStyleTwoThirds {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: calc(100% - 325px);
  }
}
.fsHasRightBanner .fsTwoColumnWideRightLayout > .fsDiv.fsStyleTwoThirds {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin-bottom: 20px;
  width: 100%;
}
@media (min-width: 600px) {
  .fsHasRightBanner .fsTwoColumnWideRightLayout > .fsDiv.fsStyleTwoThirds {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: calc(100% - 200px);
  }
}
@media (min-width: 700px) {
  .fsHasRightBanner .fsTwoColumnWideRightLayout > .fsDiv.fsStyleTwoThirds {
    width: calc(100% - 325px);
  }
}
@media (min-width: 800px) {
  .fsHasRightBanner .fsTwoColumnWideRightLayout > .fsDiv.fsStyleTwoThirds {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: calc(100% - 200px);
    margin-bottom: 0;
  }
}
@media (min-width: 1000px) {
  .fsHasRightBanner .fsTwoColumnWideRightLayout > .fsDiv.fsStyleTwoThirds {
    width: calc(100% - 325px);
  }
}
.fsHasLeftBanner.fsHasRightBanner .fsTwoColumnWideRightLayout > .fsDiv.fsStyleTwoThirds {
  width: 100%;
}
@media (min-width: 1000px) {
  .fsHasLeftBanner.fsHasRightBanner .fsTwoColumnWideRightLayout > .fsDiv.fsStyleTwoThirds {
    width: calc(100% - 200px);
  }
}
.fsTwoColumnWideRightLayout > .fsDiv.fsStyleOneThird {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media (min-width: 700px) {
  .fsTwoColumnWideRightLayout > .fsDiv.fsStyleOneThird {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 325px;
    padding-right: 80px;
  }
}
@media (min-width: 700px) {
  .fsHasLeftBanner .fsTwoColumnWideRightLayout > .fsDiv.fsStyleOneThird {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
}
@media (min-width: 1000px) {
  .fsHasLeftBanner .fsTwoColumnWideRightLayout > .fsDiv.fsStyleOneThird {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 325px;
    padding-right: 80px;
    margin-bottom: 0;
  }
}
@media (min-width: 600px) {
  .fsHasRightBanner .fsTwoColumnWideRightLayout > .fsDiv.fsStyleOneThird {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-right: 20px;
    width: 200px;
  }
}
@media (min-width: 700px) {
  .fsHasRightBanner .fsTwoColumnWideRightLayout > .fsDiv.fsStyleOneThird {
    padding-right: 80px;
    width: 325px;
  }
}
@media (min-width: 800px) {
  .fsHasRightBanner .fsTwoColumnWideRightLayout > .fsDiv.fsStyleOneThird {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-right: 20px;
    width: 200px;
  }
}
@media (min-width: 1000px) {
  .fsHasRightBanner .fsTwoColumnWideRightLayout > .fsDiv.fsStyleOneThird {
    padding-right: 80px;
    width: 325px;
  }
}
.fsHasLeftBanner.fsHasRightBanner .fsTwoColumnWideRightLayout > .fsDiv.fsStyleOneThird {
  width: 100%;
}
@media (min-width: 1000px) {
  .fsHasLeftBanner.fsHasRightBanner .fsTwoColumnWideRightLayout > .fsDiv.fsStyleOneThird {
    padding-right: 20px;
    width: 200px;
  }
}
.fsHasTwoColumnWideRightLayout.fsHasRightBanner #fsPageContent {
  margin-bottom: 20px;
  width: 100%;
}
@media (min-width: 800px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner #fsPageContent {
    width: calc(100% - 240px);
    margin-bottom: 0;
  }
}
@media (min-width: 1000px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner #fsPageContent {
    width: calc(100% - 400px);
  }
}
.fsHasTwoColumnWideRightLayout.fsHasRightBanner #fsBannerRight {
  width: 100%;
  padding: 0;
}
@media (min-width: 800px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner #fsBannerRight {
    padding-left: 20px;
    width: 240px;
  }
}
@media (min-width: 1000px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner #fsBannerRight {
    padding-left: 100px;
    width: 400px;
  }
}
@media (min-width: 600px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerLeft {
    padding-right: 20px;
    width: 200px;
  }
}
@media (min-width: 700px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerLeft {
    padding-right: 80px;
    width: 325px;
  }
}
@media (min-width: 800px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerLeft {
    padding-right: 20px;
    width: 200px;
  }
}
@media (min-width: 1100px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerLeft {
    padding-right: 80px;
    width: 325px;
  }
}
.fsHasTwoColumnWideRightLayout.fsHasRightBanner.fsHasLeftBanner #fsPageContent {
  margin-bottom: 20px;
  width: 100%;
}
@media (min-width: 600px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner.fsHasLeftBanner #fsPageContent {
    width: calc(100% - 200px);
  }
}
@media (min-width: 700px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner.fsHasLeftBanner #fsPageContent {
    width: calc(100% - 325px);
  }
}
@media (min-width: 800px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner.fsHasLeftBanner #fsPageContent {
    width: calc(100% - 440px);
    margin-bottom: 0;
  }
}
@media (min-width: 1100px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner.fsHasLeftBanner #fsPageContent {
    width: calc(100% - 725px);
  }
}
.fsHasTwoColumnWideRightLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerRight {
  width: 100%;
  padding: 0;
}
@media (min-width: 800px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerRight {
    padding-left: 20px;
    width: 240px;
  }
}
@media (min-width: 1100px) {
  .fsHasTwoColumnWideRightLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerRight {
    padding-left: 100px;
    width: 400px;
  }
}

.fsTwoColumnWideLeftLayout > .fsDiv.fsStyleTwoThirds {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media (min-width: 700px) {
  .fsTwoColumnWideLeftLayout > .fsDiv.fsStyleTwoThirds {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: calc(100% - 400px);
  }
}
.fsHasLeftBanner .fsTwoColumnWideLeftLayout > .fsDiv.fsStyleTwoThirds {
  margin-bottom: 20px;
  width: 100%;
}
@media (min-width: 800px) {
  .fsHasLeftBanner .fsTwoColumnWideLeftLayout > .fsDiv.fsStyleTwoThirds {
    width: calc(100% - 240px);
    margin-bottom: 0;
  }
}
@media (min-width: 1000px) {
  .fsHasLeftBanner .fsTwoColumnWideLeftLayout > .fsDiv.fsStyleTwoThirds {
    width: calc(100% - 400px);
  }
}
@media (min-width: 700px) {
  .fsHasRightBanner .fsTwoColumnWideLeftLayout > .fsDiv.fsStyleTwoThirds {
    width: 100%;
  }
}
@media (min-width: 1000px) {
  .fsHasRightBanner .fsTwoColumnWideLeftLayout > .fsDiv.fsStyleTwoThirds {
    width: calc(100% - 400px);
  }
}
.fsHasLeftBanner.fsHasRightBanner .fsTwoColumnWideLeftLayout > .fsDiv.fsStyleTwoThirds {
  width: 100%;
}
@media (min-width: 1000px) {
  .fsHasLeftBanner.fsHasRightBanner .fsTwoColumnWideLeftLayout > .fsDiv.fsStyleTwoThirds {
    width: calc(100% - 240px);
  }
}
.fsTwoColumnWideLeftLayout > .fsDiv.fsStyleOneThird {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media (min-width: 700px) {
  .fsTwoColumnWideLeftLayout > .fsDiv.fsStyleOneThird {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 400px;
    padding-left: 100px;
  }
}
.fsHasLeftBanner .fsTwoColumnWideLeftLayout > .fsDiv.fsStyleOneThird {
  width: 100%;
  padding: 0;
}
@media (min-width: 800px) {
  .fsHasLeftBanner .fsTwoColumnWideLeftLayout > .fsDiv.fsStyleOneThird {
    padding-left: 20px;
    width: 240px;
  }
}
@media (min-width: 1000px) {
  .fsHasLeftBanner .fsTwoColumnWideLeftLayout > .fsDiv.fsStyleOneThird {
    padding-left: 100px;
    width: 400px;
  }
}
@media (min-width: 700px) {
  .fsHasRightBanner .fsTwoColumnWideLeftLayout > .fsDiv.fsStyleOneThird {
    width: 100%;
    padding-left: 0;
    margin-bottom: 20px;
  }
}
@media (min-width: 1000px) {
  .fsHasRightBanner .fsTwoColumnWideLeftLayout > .fsDiv.fsStyleOneThird {
    width: 400px;
    padding-left: 100px;
    margin-bottom: 0;
  }
}
.fsHasLeftBanner.fsHasRightBanner .fsTwoColumnWideLeftLayout > .fsDiv.fsStyleOneThird {
  width: 100%;
}
@media (min-width: 1000px) {
  .fsHasLeftBanner.fsHasRightBanner .fsTwoColumnWideLeftLayout > .fsDiv.fsStyleOneThird {
    padding-left: 20px;
    width: 240px;
  }
}
.fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsPageContent {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin-bottom: 20px;
  width: 100%;
}
@media (min-width: 600px) {
  .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsPageContent {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: calc(100% - 200px);
  }
}
@media (min-width: 700px) {
  .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsPageContent {
    width: calc(100% - 325px);
  }
}
@media (min-width: 800px) {
  .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsPageContent {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: calc(100% - 200px);
    margin-bottom: 0;
  }
}
@media (min-width: 1000px) {
  .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsPageContent {
    width: calc(100% - 325px);
  }
}
.fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsBannerLeft {
  width: 100%;
  padding: 0;
}
@media (min-width: 600px) {
  .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsBannerLeft {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-right: 20px;
    width: 200px;
  }
}
@media (min-width: 700px) {
  .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsBannerLeft {
    padding-right: 80px;
    width: 325px;
  }
}
@media (min-width: 800px) {
  .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsBannerLeft {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-right: 20px;
    width: 200px;
  }
}
@media (min-width: 1000px) {
  .fsHasTwoColumnWideLeftLayout.fsHasLeftBanner #fsBannerLeft {
    padding-right: 80px;
    width: 325px;
  }
}
@media (min-width: 600px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerLeft {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-right: 20px;
    width: 200px;
  }
}
@media (min-width: 700px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerLeft {
    padding-right: 80px;
    width: 325px;
  }
}
@media (min-width: 800px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerLeft {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-right: 20px;
    width: 200px;
  }
}
@media (min-width: 1100px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerLeft {
    padding-right: 80px;
    width: 325px;
  }
}
.fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsPageContent {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin-bottom: 20px;
  width: 100%;
}
@media (min-width: 600px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsPageContent {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: calc(100% - 200px);
  }
}
@media (min-width: 700px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsPageContent {
    width: calc(100% - 325px);
  }
}
@media (min-width: 800px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsPageContent {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: calc(100% - 440px);
    margin-bottom: 0;
  }
}
@media (min-width: 1100px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsPageContent {
    width: calc(100% - 725px);
  }
}
.fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerRight {
  width: 100%;
  padding: 0;
}
@media (min-width: 800px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerRight {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-left: 20px;
    width: 240px;
  }
}
@media (min-width: 1100px) {
  .fsHasTwoColumnWideLeftLayout.fsHasRightBanner.fsHasLeftBanner #fsBannerRight {
    padding-left: 100px;
    width: 400px;
  }
}

.fsElephantRightLayout,
.fsElephantLeftLayout {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.fsElephantRightLayout > div,
.fsElephantLeftLayout > div {
  padding: 0;
  margin: 0;
  width: 100%;
  float: none;
  margin-bottom: 20px;
}
@media (min-width: 700px) {
  .fsElephantRightLayout > div,
  .fsElephantLeftLayout > div {
    margin-bottom: 0;
  }
}
.fsElephantRightLayout > div:last-child,
.fsElephantLeftLayout > div:last-child {
  margin-bottom: 0;
}

@media (min-width: 700px) {
  .fsElephantRightLayout > div.fsStyleTwoThirds {
    width: calc(100% - 400px);
  }
}
.fsElephantRightLayout > div.fsStyleTwoThirds > .fsDiv {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 800px) {
  .fsElephantRightLayout > div.fsStyleTwoThirds > .fsTwoColumnLayout {
    margin-right: -20px;
    margin-left: -20px;
  }
}
@media (min-width: 700px) {
  .fsHasLeftBanner .fsElephantRightLayout > div.fsStyleTwoThirds {
    width: 100%;
  }
}
@media (min-width: 1000px) {
  .fsHasLeftBanner .fsElephantRightLayout > div.fsStyleTwoThirds {
    width: calc(100% - 400px);
  }
}
@media (min-width: 700px) {
  .fsHasRightBanner .fsElephantRightLayout > div.fsStyleTwoThirds {
    width: 100%;
  }
}
@media (min-width: 1000px) {
  .fsHasRightBanner .fsElephantRightLayout > div.fsStyleTwoThirds {
    width: calc(100% - 240px);
  }
}
.fsHasLeftBanner.fsHasRightBanner .fsElephantRightLayout > div.fsStyleTwoThirds {
  width: 100%;
}
@media (min-width: 1200px) {
  .fsHasLeftBanner.fsHasRightBanner .fsElephantRightLayout > div.fsStyleTwoThirds {
    width: calc(100% - 240px);
  }
}
@media (min-width: 700px) {
  .fsElephantRightLayout > div.fsStyleOneThird {
    width: 400px;
    padding-left: 100px;
    padding-right: 0;
  }
}
@media (min-width: 700px) {
  .fsHasLeftBanner .fsElephantRightLayout > div.fsStyleOneThird {
    width: 100%;
    padding-left: 0;
    margin-bottom: 20px;
  }
}
@media (min-width: 1000px) {
  .fsHasLeftBanner .fsElephantRightLayout > div.fsStyleOneThird {
    width: 400px;
    padding-left: 100px;
    margin-bottom: 0;
  }
}
@media (min-width: 700px) {
  .fsHasRightBanner .fsElephantRightLayout > div.fsStyleOneThird {
    width: 100%;
    padding-left: 0;
    margin-bottom: 20px;
  }
}
@media (min-width: 1000px) {
  .fsHasRightBanner .fsElephantRightLayout > div.fsStyleOneThird {
    width: 240px;
    padding-left: 20px;
    margin-bottom: 0;
  }
}
.fsHasLeftBanner.fsHasRightBanner .fsElephantRightLayout > div.fsStyleOneThird {
  width: 100%;
  padding-left: 0;
}
@media (min-width: 1200px) {
  .fsHasLeftBanner.fsHasRightBanner .fsElephantRightLayout > div.fsStyleOneThird {
    padding-left: 20px;
    width: 240px;
  }
}

@media (min-width: 700px) {
  .fsElephantLeftLayout > div.fsStyleTwoThirds {
    width: calc(100% - 325px);
  }
}
.fsElephantLeftLayout > div.fsStyleTwoThirds > .fsDiv {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 800px) {
  .fsElephantLeftLayout > div.fsStyleTwoThirds > .fsTwoColumnLayout {
    margin-right: -20px;
    margin-left: -20px;
  }
}
@media (min-width: 700px) {
  .fsHasLeftBanner .fsElephantLeftLayout > div.fsStyleTwoThirds {
    width: 100%;
  }
}
@media (min-width: 1000px) {
  .fsHasLeftBanner .fsElephantLeftLayout > div.fsStyleTwoThirds {
    width: calc(100% - 200px);
  }
}
@media (min-width: 700px) {
  .fsHasRightBanner .fsElephantLeftLayout > div.fsStyleTwoThirds {
    width: 100%;
  }
}
@media (min-width: 1000px) {
  .fsHasRightBanner .fsElephantLeftLayout > div.fsStyleTwoThirds {
    width: calc(100% - 325px);
  }
}
.fsHasLeftBanner.fsHasRightBanner .fsElephantLeftLayout > div.fsStyleTwoThirds {
  width: 100%;
}
@media (min-width: 1200px) {
  .fsHasLeftBanner.fsHasRightBanner .fsElephantLeftLayout > div.fsStyleTwoThirds {
    width: calc(100% - 200px);
  }
}
@media (min-width: 700px) {
  .fsElephantLeftLayout > div.fsStyleOneThird {
    width: 325px;
    padding-right: 80px;
    padding-left: 0;
  }
}
@media (min-width: 700px) {
  .fsHasLeftBanner .fsElephantLeftLayout > div.fsStyleOneThird {
    width: 100%;
    padding-left: 0;
    margin-bottom: 20px;
  }
}
@media (min-width: 1000px) {
  .fsHasLeftBanner .fsElephantLeftLayout > div.fsStyleOneThird {
    width: 200px;
    padding-right: 20px;
    margin-bottom: 0;
  }
}
@media (min-width: 700px) {
  .fsHasRightBanner .fsElephantLeftLayout > div.fsStyleOneThird {
    width: 100%;
    padding-left: 0;
    margin-bottom: 20px;
  }
}
@media (min-width: 1000px) {
  .fsHasRightBanner .fsElephantLeftLayout > div.fsStyleOneThird {
    width: 325px;
    padding-right: 80px;
    margin-bottom: 0;
  }
}
.fsHasLeftBanner.fsHasRightBanner .fsElephantLeftLayout > div.fsStyleOneThird {
  width: 100%;
  padding-left: 0;
}
@media (min-width: 1200px) {
  .fsHasLeftBanner.fsHasRightBanner .fsElephantLeftLayout > div.fsStyleOneThird {
    padding-right: 20px;
    width: 200px;
  }
}

#fsPoweredByFinalsite {
  position: relative;
  z-index: 11;
  width: 100%;
  position: relative;
  margin: 0 auto;
  max-width: 85.55556em;
  max-width: 96.25rem;
  background-position: 50%;
}
@media (min-width: 800px) {
  #fsPoweredByFinalsite {
    background-position: bottom right;
    bottom: 42px;
  }
}

.fsBreadcrumb ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.fsBreadcrumb li {
  display: inline-block;
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
#fsHeader .nav-main {
  display: none;
}
@media (min-width: 900px) {
  #fsHeader .nav-main {
    display: block;
    position: fixed;
    width: 100%;
    top: 100px;
    z-index: 500;
    opacity: 0;
    visibility: hidden;
  }
  #fsHeader .nav-main .fsNavLevel1 {
    height: 90vh;
    height: calc(100vh - 102px);
  }
  #fsHeader .nav-main .fsNavLevel1 > li {
    background-color: #00A3E0;
    width: 25%;
    height: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0;
    overflow: hidden;
    border: 0.5px solid rgba(136, 139, 141, 0.8);
  }
  #fsHeader .nav-main .fsNavLevel1 > li.menu-graphic {
    padding: 20px 20px;
    color: #fff;
    font-family: "CaflischScriptW01-Regul", cursive, serif;
    font-size: 45px;
    line-height: 1;
    background-image: url(../images/g.svg), url(../images/boy.svg);
    background-size: 20%, 60%;
    background-position: bottom left, bottom right;
  }
  #fsHeader .nav-main .fsNavLevel1 > li.menu-graphic .menu-inner {
    display: none;
  }
  #fsHeader .nav-main .fsNavLevel1 > li.menu-graphic:before {
    content: 'A school built around your child.';
  }
  #fsHeader .nav-main .fsNavLevel1 > li .menu-inner {
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    transition: .3s;
    -webkit-transform: translateY(87%);
    -ms-transform: translateY(87%);
    transform: translateY(87%);
    -webkit-transform: translateY(calc(100% - 67px));
    -ms-transform: translateY(calc(100% - 67px));
    transform: translateY(calc(100% - 67px));
  }
  #fsHeader .nav-main .fsNavLevel1 > li .menu-inner > a {
    color: #00A3E0;
    padding: 10px 20px;
    display: block;
    font-size: 25px;
    line-height: 28px;
  }
  #fsHeader .nav-main .fsNavLevel1 > li img {
    display: none;
  }
  #fsHeader .nav-main .fsNavLevel1 > li:hover .menu-inner {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    background: rgba(0, 163, 224, 0.95);
  }
  #fsHeader .nav-main .fsNavLevel1 > li:hover .menu-inner > a {
    color: #fff;
  }
  #fsHeader .nav-main .fsNavLevel1 .fsNavPageInfo {
    margin-left: 20px;
    height: 90%;
    height: calc(100% - 68px);
    overflow: auto;
  }
  .menu-is-active #fsHeader .nav-main {
    opacity: 1;
    visibility: visible;
  }
  .menu-is-active #fsHeader .nav-main .fsNavLevel1 > li {
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .menu-is-active #fsHeader .nav-main .fsNavLevel1 > li:nth-child(2) {
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
  }
  .menu-is-active #fsHeader .nav-main .fsNavLevel1 > li:nth-child(3) {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
  }
  .menu-is-active #fsHeader .nav-main .fsNavLevel1 > li:nth-child(4) {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
  }
  .menu-is-active #fsHeader .nav-main .fsNavLevel1 > li:nth-child(5) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
  }
  .menu-is-active #fsHeader .nav-main .fsNavLevel1 > li:nth-child(6) {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
  }
  .menu-is-active #fsHeader .nav-main .fsNavLevel1 > li:nth-child(7) {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
  }
  .menu-is-active #fsHeader .nav-main .fsNavLevel1 > li:nth-child(8) {
    -webkit-animation-delay: .7s;
    animation-delay: .7s;
  }
  #fsHeader .nav-main .fsNavLevel2 a {
    position: relative;
    padding: 0.55556em 1.11111em;
  }
  #fsHeader .nav-main .fsNavLevel2 a:before {
    content: '';
    height: 20px;
    width: 0;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: .3s;
  }
  #fsHeader .nav-main .fsNavLevel2 a:hover:before {
    width: 5px;
  }
  #fsHeader .nav-main .fsNavLevel2 .fsNavCurrentPage a:before,
  #fsHeader .nav-main .fsNavLevel2 .fsNavCurrentPageAncestor a:before {
    width: 5px;
  }
}
.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 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .no-flexbox .nav-main .fsNavLevel1 {
    text-align: justify;
    font-size: 0.1px;
  }
  .no-flexbox .nav-main .fsNavLevel1 > li {
    display: inline-block;
  }
  .no-flexbox .nav-main .fsNavLevel1:after {
    content: "";
    display: inline-block;
    width: 100%;
  }
}
.nav-main .fsNavLevel1 > li {
  position: relative;
}
@media (min-width: 900px) {
  .nav-main .fsNavLevel1 > li {
    -webkit-box-flex: 1;
    -ms-flex: 1 auto;
    flex: 1 auto;
  }
}
.nav-main .fsNavLevel1 > li > a {
  padding: 1.11111em;
  color: #fff;
  display: block;
}
.nav-main .fsNavLevel1 > li[class*="fsNavCurrentPage"] > a {
  background: #041E42;
}

.nav-main .fsNavLevel1 > li > .fsNavPageInfo {
  z-index: 300;
}
.nav-main .fsNavPageInfo {
  text-align: left;
}
.nav-main .fsNavLevel1 > li:first-child .fsNavPageInfo {
  left: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.nav-main .fsNavLevel1 > li:last-child .fsNavPageInfo {
  right: 0;
  left: auto;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
@media (min-width: 980px) {
  .nav-main .fsNavParentPage:hover .fsNavPageInfo {
    display: block;
  }
}
.nav-main .fsNavLevel2 a {
  padding: 0.55556em;
  color: #fff;
  display: block;
}

.menu-toggle {
  position: relative;
}
@media (min-width: 900px) {
  .menu-toggle {
    padding-left: 25px;
  }
  .menu-toggle:before {
    content: '';
    background: #00A3E0;
    width: 2px;
    height: 38px;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.menu-toggle a {
  border: 0;
  background: none;
  outline: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  color: #00A3E0;
  padding-top: 31px;
  width: 35px;
  text-align: center;
}
.menu-toggle a:before, .menu-toggle a:after {
  position: absolute;
  top: 15px;
  left: 50%;
  height: 2px;
  width: 35px;
  content: '';
  background: #00A3E0;
}
.menu-toggle a:before {
  margin-top: -10px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: margin-top .3s, -webkit-transform .3s;
  transition: margin-top .3s, transform .3s;
}
.menu-toggle a:after {
  box-shadow: 0 10px 0 0 #00A3E0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: box-shadow .3s, -webkit-transform .3s;
  transition: box-shadow .3s, transform .3s;
}
.menu-toggle a:hover:before, .menu-toggle a:hover:after {
  background: #FF6900;
}
.menu-toggle a:hover:after {
  box-shadow: 0 10px 0 0 #FF6900;
}
.menu-toggle a span:last-child {
  display: none;
}
.menu-is-active .menu-toggle a span:last-child {
  display: block;
}
.menu-is-active .menu-toggle a span:first-child {
  display: none;
}
.menu-is-active .menu-toggle a:before {
  margin-top: 0;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.menu-is-active .menu-toggle a:after {
  box-shadow: none;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-ribbon {
  position: relative;
  height: 50px;
}
@media (min-width: 900px) {
  .drawer-ribbon {
    display: none;
  }
}

.drawer-trigger {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border: 0;
  background: none;
  outline: 0;
  margin: 0;
  padding: 0;
  max-width: 50px;
}
.drawer-trigger:before, .drawer-trigger:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  width: 50%;
  content: '';
  background: #fff;
}
.drawer-trigger:before {
  margin-top: -0.22222em;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: margin-top .3s, -webkit-transform .3s;
  transition: margin-top .3s, transform .3s;
}
.drawer-trigger:after {
  box-shadow: 0 0.22222em 0 0 #fff;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: box-shadow .3s, -webkit-transform .3s;
  transition: box-shadow .3s, transform .3s;
}
.menu-is-active .drawer-trigger:before {
  margin-top: 0;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.menu-is-active .drawer-trigger:after {
  box-shadow: none;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.fsMenu {
  position: absolute;
  z-index: 500;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s, -webkit-transform .3s;
  transition: opacity .3s, visibility .3s, transform .3s;
  top: 0;
  left: 0;
  -webkit-transform: translate3d(-20%, 0, 0);
  transform: translate3d(-20%, 0, 0);
  -webkit-transform: translate(-20%, 0);
  -ms-transform: translate(-20%, 0);
  transform: translate(-20%, 0);
  top: 4.66667em;
  height: 100%;
  max-width: 33.33333em;
  background: #fff;
  position: fixed;
  padding: 20px;
  overflow: scroll;
  padding-bottom: 80px;
}
@media (min-width: 900px) {
  .fsMenu {
    display: none;
  }
}
.menu-is-active .fsMenu {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.fsMenu ul, .fsMenu ul ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.fsMenu ul li {
  margin: 0;
  padding: 0;
}
.fsMenu .menu-graphic {
  display: none;
}
.fsMenu .fs_style_23 {
  display: block;
  text-transform: uppercase;
}
.fsMenu .nav-social {
  text-align: center;
}
.fsMenu .nav-social .fsNavLevel1 li a:before {
  color: #00A3E0;
  font-size: 32px;
}
.fsMenu .mobile-search {
  position: relative;
  height: 48px;
}
.fsMenu .mobile-search input {
  background: #eee;
  outline: 0;
  border: 0;
  width: 100%;
  height: 48px;
  padding-left: 20px;
}
.fsMenu .mobile-search button {
  border: 0;
  background: none;
  outline: 0;
  margin: 0;
  padding: 0;
  font-size: 0;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 48px;
  width: 48px;
}
.fsMenu .mobile-search button:before {
  content: "";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-size: 18px;
  color: #00A3E0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.fsMenu .mobile-menu li {
  border-bottom: 1px solid #eee;
}
.fsMenu .mobile-menu a {
  color: #4a4a4a;
  display: block;
  padding: 10px 0;
}
.fsMenu .mobile-menu a:hover {
  color: #00A3E0;
}
.fsMenu .mobile-menu .fsNavCurrentPage > a,
.fsMenu .mobile-menu .fsNavCurrentPageAncestor > a {
  color: #00A3E0;
}
.fsMenu .mobile-util {
  text-align: center;
}
.fsMenu .mobile-util li {
  display: inline-block;
  margin: 0 5px;
}
.fsMenu .mobile-util li a {
  font-size: 14px;
  text-transform: uppercase;
}

.nav-sub, .nav-sub ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-sub li {
  margin: 0;
  padding: 0;
}
.has-slideshow #fsPageBody .nav-sub {
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
}
#fsHeader .nav-sub {
  display: block;
  padding: 0 20px;
  background-color: #888B8D;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  padding-top: 84px;
}
#fsHeader .nav-sub nav {
  padding-bottom: 20px;
}
.home #fsHeader .nav-sub {
  display: none;
}
#fsHeader .nav-sub.fsElement {
  margin-bottom: 0;
}
@media (min-width: 800px) {
  #fsHeader .nav-sub {
    display: none;
  }
}
#fsHeader .nav-sub .fsElementTitle {
  color: #fff;
}
#fsHeader .nav-sub a {
  color: #fff;
  text-transform: capitalize;
}
#fsHeader .nav-sub li.fsNavCurrentPage > a:before {
  background: #fff;
}
#fsPageBody .nav-sub {
  display: none;
}
@media (min-width: 800px) {
  #fsPageBody .nav-sub {
    display: block;
  }
}
.nav-sub.nav-sub-empty {
  display: none !important;
}
@media (max-width: 799px) {
  .nav-sub > .fsElementContent {
    height: auto;
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
  }
}
.nav-sub.active-nav > .fsElementContent {
  max-height: 9999px;
  visibility: visible;
  opacity: 1;
}
.nav-sub ul li.fsNavCurrentPage > a, .nav-sub ul li.fsNavCurrentPageAncestor > a {
  color: #00A3E0;
}
.nav-sub ul li.fsNavCurrentPage > a {
  position: relative;
}
.nav-sub ul li.fsNavCurrentPage > a:before {
  content: '';
  background: #00A3E0;
  width: 5px;
  height: 20px;
  position: absolute;
  top: 14px;
  left: -20px;
}
.nav-sub ul li a {
  display: block;
  padding: 10px 0;
  color: #4a4a4a;
}
.nav-sub ul li a:hover {
  color: #00A3E0;
}
.nav-sub .fsNavPageInfo {
  display: none;
  padding-left: 20px;
}
.nav-sub .fsNavCurrentPageAncestor .fsNavPageInfo,
.nav-sub .fsNavCurrentPage .fsNavPageInfo {
  display: block;
}
.nav-sub .fsNavLevel1 > li:last-child {
  border-bottom: none;
}
.nav-sub .fsNavLevel1 > span {
  display: block;
  margin-bottom: 20px;
  padding-left: 10px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  border-left: 4px solid #FF6900;
}
.nav-sub > header {
  display: block;
}
@media (min-width: 800px) {
  .nav-sub > header {
    display: none;
  }
}
.nav-sub > header > .fsElementTitle {
  position: relative;
  margin: 0;
  padding: 20px;
  cursor: pointer;
}
@media (min-width: 800px) {
  .nav-sub > header > .fsElementTitle {
    cursor: default;
  }
}
@media (max-width: 799px) {
  .nav-sub > header > .fsElementTitle:after {
    position: absolute;
    top: 50%;
    right: -15px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 35px;
    line-height: 40px;
    content: "";
    font-family: "IcoMoon";
    font-smoothing: antialiased;
    font-weight: normal;
    speak: none;
  }
}
@media (max-width: 799px) {
  .nav-sub.active-nav > header > .fsElementTitle:after {
    content: "";
    font-family: "IcoMoon";
    font-smoothing: antialiased;
    font-weight: normal;
    speak: none;
  }
}

.nav-social .fsNavLevel1 {
  font-size: 0;
}
.nav-social .fsNavLevel1, .nav-social .fsNavLevel1 ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-social .fsNavLevel1 li {
  margin: 0;
  padding: 0;
}
.nav-social .fsNavLevel1 li {
  display: inline-block;
}
.nav-social .fsNavLevel1 li:not(:last-child) {
  margin-right: 20px;
}
.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:before {
  color: #3b5998;
}
.nav-social .fsNavLevel1 [href*='instagram']:hover:before {
  color: #3f729b;
}
.nav-social .fsNavLevel1 [href*='linkedin']:hover:before {
  color: #0077b5;
}
.nav-social .fsNavLevel1 [href*='pinterest']:hover:before {
  color: #cc2127;
}
.nav-social .fsNavLevel1 [href*='tumblr']:hover:before {
  color: #35465c;
}
.nav-social .fsNavLevel1 [href*='twitter']:hover:before {
  color: #55acee;
}
.nav-social .fsNavLevel1 [href*='vimeo']:hover:before {
  color: #1ab7ea;
}
.nav-social .fsNavLevel1 [href*='vine']:hover:before {
  color: #00b488;
}
.nav-social .fsNavLevel1 [href*='youtube']:hover:before {
  color: #cd201f;
}
.nav-social .fsNavLevel1 [href*='rss']:hover:before {
  color: #f26522;
}
.nav-social .fsNavLevel1 a {
  display: block;
}
.nav-social .fsNavLevel1 a:before {
  color: #fff;
  font-size: 18px;
  transition: 0.3s all;
  display: block;
}

.nav-utility-header ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.nav-utility-header .fsNavLevel1 > li {
  position: relative;
}
.nav-utility-header .fsNavLevel1 > li > a {
  pointer-events: none;
}
.nav-utility-header .fsNavLevel1 > li:hover > a {
  color: #FF6900;
}
.nav-utility-header .fsNavLevel1 > li:hover:before {
  color: #FF6900;
}
.nav-utility-header .fsNavLevel1 > li > a {
  text-align: center;
  padding-left: 15px;
  display: block;
}
.nav-utility-header .fsNavLevel1 > li > a:before {
  content: "";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  display: block;
}
.nav-utility-header .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-utility-header .fsNavLevel1 > li:hover > .fsNavPageInfo {
  max-height: 9999px;
  transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}
@media (max-width: 599px) {
  .nav-utility-header .fsNavLevel1 > li:focus > .fsNavPageInfo {
    max-height: 9999px;
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
  }
}
.nav-utility-header .fsNavLevel1 > li > .fsNavPageInfo {
  z-index: 300;
  width: 150px;
  left: 50%;
  -webkit-transform: translateX(-45%);
  -ms-transform: translateX(-45%);
  transform: translateX(-45%);
}
.nav-utility-header .fsNavLevel2 {
  background: #888B8D;
  position: relative;
  margin-top: 13px;
  text-align: center;
}
.nav-utility-header .fsNavLevel2 a {
  display: block;
  padding: 5px 10px;
  color: #fff;
  font-family: "Genius W00 SemiBold", sans-serif;
}
.nav-utility-header .fsNavLevel2 a:hover {
  background: #00A3E0;
}
.nav-utility-header .fsNavLevel2:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #888B8D transparent;
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

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

.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 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    -webkit-column-rule: 0;
    -moz-column-rule: 0;
    column-rule: 0;
    min-height: initial;
  }
  .nav-site-map .fsElementContent nav ul.fsNavLevel1 li {
    -webkit-column-break-inside: avoid;
    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;
}

/*! 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.11111em;
}
@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.55556em;
  }
}
.fsConstituent.fsSearch .fsConstituentSearchButton {
  display: block;
  margin: 0 10px;
}
.fsConstituent .fsElementPagination {
  margin: 20px 0;
}

/*! elements - constituent profile */
.fsConstituentProfile {
  position: relative;
}
.fsConstituentProfile .fsProfileImage {
  display: block;
  margin-bottom: 20px;
}
.fsConstituentProfile .fsFullName {
  color: #00A3E0;
}
@media (min-width: 800px) {
  .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: 800px) {
  .fsConstituentProfile.fsHasPhoto .fsProfileImage {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 25%;
    padding: 0;
    float: none;
  }
}
@media (min-width: 600px) {
  .fsConstituentProfile:not(.fsHasPhoto) .fsProfileImage {
    float: left;
    padding-right: 20px;
    max-width: 50%;
  }
}
@media (min-width: 800px) {
  .fsConstituentProfile:not(.fsHasPhoto) .fsProfileImage {
    max-width: 25%;
  }
}

.fsProfileSection {
  margin-bottom: 1.11111em;
  font-size: 16px;
}
.fsProfileSection h4 {
  font-weight: 700;
  font-size: 18px;
  border-bottom: 1px solid #71DBD4;
  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: 800px) {
  .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;
}

@media (min-width: 800px) {
  .fsProfileSectionFieldName {
    width: 25%;
    float: left;
  }
}

@media (min-width: 800px) {
  .fsProfileSectionFieldValue {
    width: 75%;
    float: left;
  }
}

@media (min-width: 800px) {
  .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 .fsTitles strong {
  font-size: 0;
}
.fsDirectory .fsConstituentItem .fsTitles:before {
  content: 'Title: ';
  font-size: 18px;
  line-height: 26px;
  color: #4a4a4a;
  font-weight: 700;
}
.fsDirectory .fsConstituentItem .fsPhoto img {
  display: block;
}

.fsConstituentColumnLayout_1 .fsConstituentItem {
  margin: 0;
  margin-bottom: 20px;
  -webkit-column-break-inside: avoid;
  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;
  -webkit-column-break-inside: avoid;
  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;
  -webkit-column-break-inside: avoid;
  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;
  -webkit-column-break-inside: avoid;
  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 > header, .fsTabs .fsPanel > header {
  cursor: pointer;
  background: #fff;
  transition: .3s;
}
.fsAccordion .fsPanel > header h2, .fsTabs .fsPanel > header h2 {
  margin-top: 0;
  font-style: normal;
  font-family: "Genius W00 SemiBold", sans-serif;
  font-size: 40px;
  line-height: 44px;
  color: #00A3E0;
  margin-bottom: 16px;
  margin-bottom: 0;
  display: block;
  font-size: 18px;
  line-height: 26px;
  padding: 13.33333px;
  color: #888B8D;
  transition: .3s;
  position: relative;
}
.fsAccordion .fsPanel > header h2 a, .fsTabs .fsPanel > header h2 a {
  transition: none;
}
.fsAccordion .fsPanel > header h2:after, .fsTabs .fsPanel > header h2:after {
  content: '';
  width: 1px;
  height: 70%;
  background: #000;
  position: absolute;
  top: 15%;
  left: 40px;
}
.fsAccordion .fsPanel > header:hover, .fsTabs .fsPanel > header:hover {
  background: #888B8D;
  transition: .3s;
}
.fsAccordion .fsPanel > header:hover h2, .fsTabs .fsPanel > header:hover h2 {
  color: #fff;
  transition: .3s;
}
.fsAccordion .fsPanel > header:hover h2:after, .fsTabs .fsPanel > header:hover h2:after {
  background: #fff;
}
.fsAccordion .fsPanel.fsStateOpen > header, .fsTabs .fsPanel.fsStateOpen > header {
  background: #00A3E0;
}
.fsAccordion .fsPanel.fsStateOpen > header h2, .fsTabs .fsPanel.fsStateOpen > header h2 {
  color: #fff;
}
.fsAccordion .fsPanel.fsStateOpen > header h2:before, .fsTabs .fsPanel.fsStateOpen > header h2:before {
  content: "-";
}
.fsAccordion .fsPanel.fsStateOpen > header h2:after, .fsTabs .fsPanel.fsStateOpen > header h2:after {
  background: #fff;
}
.fsPanelIconAfter.fsAccordion .fsPanel > header h2::after, .fsPanelIconAfter.fsTabs .fsPanel > header h2::after, .fsPanelIconBefore.fsAccordion .fsPanel > header h2::before, .fsPanelIconBefore.fsTabs .fsPanel > header h2::before {
  content: '';
  border: none;
  width: auto;
  height: auto;
  position: absolute;
  margin: 0;
  top: 13.33333px;
  content: "+";
}
.fsPanelIconBefore.fsAccordion .fsPanel.fsStateOpen > header h2::before, .fsPanelIconBefore.fsTabs .fsPanel.fsStateOpen > header h2::before, .fsPanelIconAfter.fsAccordion .fsPanel.fsStateOpen > header h2::after, .fsPanelIconAfter.fsTabs .fsPanel.fsStateOpen > header h2::after {
  content: '';
  border: none;
  width: auto;
  height: auto;
  position: absolute;
  margin: 0;
  top: 13.33333px;
  content: "-";
}
.fsPanelIconBefore.fsAccordion .fsPanel > header h2, .fsPanelIconBefore.fsTabs .fsPanel > header h2 {
  padding-left: 60px;
}
.fsPanelIconBefore.fsAccordion .fsPanel > header h2:before, .fsPanelIconBefore.fsTabs .fsPanel > header h2:before {
  left: 13.33333px;
}
.fsPanelIconAfter.fsAccordion .fsPanel > header h2, .fsPanelIconAfter.fsTabs .fsPanel > header h2 {
  padding-right: 60px;
}
.fsPanelIconAfter.fsAccordion .fsPanel > header h2:before, .fsPanelIconAfter.fsTabs .fsPanel > header h2:before {
  display: none;
}
.fsPanelIconAfter.fsAccordion .fsPanel > header h2:after, .fsPanelIconAfter.fsTabs .fsPanel > header h2:after {
  right: 13.33333px;
}
.fsAccordion:not(.fsPanelIconBefore):not(.fsPanelIconAfter) .fsPanel > header h2:before, .fsTabs:not(.fsPanelIconBefore):not(.fsPanelIconAfter) .fsPanel > header h2:before {
  content: '';
}

.fsAccordion {
  margin-bottom: 20px;
}
.fsAccordion .fsPanel {
  margin-bottom: 0;
  border-bottom: 2px solid #00A3E0;
}
.fsAccordion .fsPanel:first-of-type {
  border-top: 2px solid #00A3E0;
}

/*! elements - athletics main */
/*! elements - athletics events */
.fsAthleticsEvent {
  margin-bottom: 20px;
}
.fsAthleticsEvent > .fsElementContent {
  width: 100%;
}
.fsAthleticsEvent .fsAlertFeeds {
  margin-bottom: 10px;
}
.fsAthleticsEvent .fsElementEventIcon {
  display: inline-block;
  max-width: 100%;
}
.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 .fsAthleticsOpponents {
  display: inline;
}
.fsAthleticsEvent.fsList .fsAthleticsOpponentNames {
  display: inline;
}
@media (max-width: 800px) {
  .fsAthleticsEvent.fsTable .fsElementTable thead {
    display: none;
  }
}
@media (max-width: 800px) {
  .fsAthleticsEvent.fsTable .fsElementTable td {
    display: inline-block;
    width: 100%;
    padding: 0 10px;
  }
  .fsAthleticsEvent.fsTable .fsElementTable td:not(:last-child) {
    border: 0;
  }
  .fsAthleticsEvent.fsTable .fsElementTable td:first-of-type {
    padding-top: 10px;
  }
  .fsAthleticsEvent.fsTable .fsElementTable td:last-of-type {
    padding-bottom: 10px;
  }
  .fsAthleticsEvent.fsTable .fsElementTable td:before {
    display: inline-block;
    font-weight: 700;
    color: #041E42;
  }
  .fsAthleticsEvent.fsTable .fsElementTable td.fsTitle:before {
    content: 'Team: ';
  }
  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsOpponents {
    display: inline-block;
  }
  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsOpponents .fsAthleticsVs {
    display: inline-block;
  }
  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsOpponents .fsAthleticsOpponentNames {
    display: inline-block;
  }
  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsOpponents:before {
    content: 'Opponent: ';
  }
  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsDate .fsDateTime {
    display: inline-block;
  }
  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsDate:before {
    content: 'Date: ';
  }
  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsTime .fsDateTime {
    display: inline-block;
  }
  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsTime:before {
    content: 'Time: ';
  }
  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsLocations:before {
    content: 'Location: ';
  }
  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsAdvantage:before {
    content: 'Advantage: ';
  }
  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsEventType:before {
    content: 'Type: ';
  }
  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsDetails:before {
    content: 'Details: ';
  }
  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsResult:before {
    content: 'Result: ';
  }
  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsScore:before {
    content: 'Score: ';
  }
  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsAlerts:before {
    content: 'Alerts: ';
  }
  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsDismissal:before {
    content: 'Dismissal: ';
  }
  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsDeparture:before {
    content: 'Departure: ';
  }
  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsReturn:before {
    content: 'Return Time: ';
  }
  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsPickup:before {
    content: 'Pickup Time: ';
  }
  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsRecap:before {
    content: 'Recap: ';
  }
  .fsAthleticsEvent.fsTable .fsElementTable td.fsAthleticsStatus:before {
    content: 'Status: ';
  }
}

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

/*! elements - athletics roster */
.fsAthleticsRoster .fsElementTable td:before, .fsAthleticsRosterList li > div:before {
  margin-right: 5px;
  display: inline-block;
  font-weight: 700;
  color: #041E42;
}

.fsAthleticsRoster .fsElementTable td.fsRosterPlayerNumber:before, .fsAthleticsRosterList li > div.fsRosterPlayerNumber:before {
  content: 'Number: ';
}
.fsAthleticsRoster .fsElementTable td.fsRosterName:before, .fsAthleticsRosterList li > div.fsRosterName:before {
  content: 'Name: ';
}
.fsAthleticsRoster .fsElementTable td.fsRosterPosition:before, .fsAthleticsRosterList li > div.fsRosterPosition:before {
  content: 'Position: ';
}
.fsAthleticsRoster .fsElementTable td.fsRosterClass:before, .fsAthleticsRosterList li > div.fsRosterClass:before {
  content: 'Class: ';
}
.fsAthleticsRoster .fsElementTable td.fsRosterGradeLevel:before, .fsAthleticsRosterList li > div.fsRosterGradeLevel:before {
  content: 'Grade: ';
}
.fsAthleticsRoster .fsElementTable td.fsRosterHometown:before, .fsAthleticsRosterList li > div.fsRosterHometown:before {
  content: 'Hometown: ';
}
.fsAthleticsRoster .fsElementTable td.fsRosterHeight:before, .fsAthleticsRosterList li > div.fsRosterHeight:before {
  content: 'Height: ';
}
.fsAthleticsRoster .fsElementTable td.fsRosterWeight:before, .fsAthleticsRosterList li > div.fsRosterWeight:before {
  content: 'Weight: ';
}

.fsAthleticsRoster {
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .fsAthleticsRoster .fsElementTable thead {
    display: none;
  }
}
@media (min-width: 800px) {
  .fsAthleticsRoster .fsElementTable td:before {
    display: none;
  }
}
@media (max-width: 800px) {
  .fsAthleticsRoster .fsElementTable td {
    display: inline-block;
    width: 100%;
    padding: 0 10px;
  }
  .fsAthleticsRoster .fsElementTable td:not(:last-child) {
    border: 0;
  }
  .fsAthleticsRoster .fsElementTable td:first-of-type {
    padding-top: 10px;
  }
  .fsAthleticsRoster .fsElementTable td:last-of-type {
    padding-bottom: 10px;
  }
}

.fsAthleticsRosterContent {
  margin-bottom: 20px;
}
.fsAthleticsRosterContent 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 #EEDC00;
}
.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;
}

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

.fsBoardElement.fsThumbnailAlignLeft .fsThumbnail {
  float: none;
}
@media (min-width: 600px) {
  .fsBoardElement.fsThumbnailAlignLeft .fsThumbnail {
    float: left;
  }
}
.fsBoardElement.fsThumbnailAlignRight .fsThumbnail {
  float: none;
}
@media (min-width: 600px) {
  .fsBoardElement.fsThumbnailAlignRight .fsThumbnail {
    float: right;
  }
}

/*! _main.scss - src/sass/modules/calendar/ - main calendar import */
/*! _all.scss - src/sass/modules/calendar/list.scss - calendar each article style */
.fsCalendar article {
  position: relative;
  padding-left: 120px;
  min-height: 90px;
  padding-top: 0;
}
.fsCalendar article .fsElementEventColorIcon {
  width: 12px;
  height: 12px;
}
.fsCalendar .fsDate {
  position: absolute;
  top: 5px;
  left: 0;
  text-align: center;
  height: 90px;
  width: 90px;
  color: #fff;
  background: #97D700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.fsCalendar .fsDate > span {
  display: block;
}
.fsCalendar .fsDate > span.fsMonth {
  font-size: 18px;
}
.fsCalendar .fsDate > span.fsDay {
  font-size: 42px;
  line-height: 50px;
}
.fsCalendar .fsDate > span.fsYear {
  display: none;
}
.fsCalendar .fsTitle a {
  color: #2e2e2e;
}
.fsCalendar .fsTitle a:hover {
  color: #97D700;
}
.fsCalendar .fsEventDetails {
  color: #888B8D;
}
.fsCalendar .fsNotes p:last-child, .fsCalendar .fsDescription p:last-child {
  margin-bottom: 0;
}

@media (max-width: 499px) {
  .fsDialog.fsCalendar article {
    padding-left: 0;
  }
  .fsDialog.fsCalendar .fsDate {
    position: static;
    margin: 0 auto 20px;
    width: 100%;
  }
}

/*! _list.scss - src/sass/modules/calendar/list.scss - calendar event */
.fsBanner .fsCalendar.fsList .fsElementTitle {
  border-bottom: 5px solid #00A3E0;
  padding-bottom: 10px;
}
.fsCalendar.fsList article:not(:last-child),
.fsCalendar.fsList .fsDayContainer:not(:last-child) {
  border-bottom: 5px solid #888B8D;
}
.fsCalendar.fsList article:not(:last-child) {
  padding-bottom: 40px;
}
.fsCalendar.fsList .fsDayContainer {
  margin-bottom: 20px;
}

/*! _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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .flexbox .fsCalendarEventGrid .fsCalendarDaybox {
    height: auto !important;
  }
}
.fsCalendar.fsGrid .fsCalendarGridControlBar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.fsCalendar.fsGrid .fsCalendarGridControlBar:after {
  display: none;
}
.fsCalendar.fsGrid .fsCalendarGridControlBar > div {
  margin: 0;
}
.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 {
    -webkit-box-ordinal-group: 4;
    -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(0, 163, 224, 0.15);
  }
  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox.fsCalendarOutOfRange {
    background-color: rgba(0, 163, 224, 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(0, 163, 224, 0.25);
  }
  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox.selected {
    background-color: rgba(0, 163, 224, 0.25);
  }
  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarDaybox .fsCalendarDate {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    line-height: 1;
    font-size: 15px;
    margin-bottom: 0;
  }
  .fsCalendar.fsGrid .fsCalendarEventGrid .fsCalendarInfo {
    display: none;
  }
  .fsCalendar.fsGrid .fsCalendarEventGrid.fsCalendarCombineWeekendDays .fsCalendarRow {
    border-left: 1px solid #EDEDED;
    border-right: 1px solid #EDEDED;
    zoom: 1;
    display: block;
  }
  .fsCalendar.fsGrid .fsCalendarEventGrid.fsCalendarCombineWeekendDays .fsCalendarRow:after {
    display: table;
    clear: both;
    content: '';
  }
  .fsCalendar.fsGrid .fsCalendarEventGrid.fsCalendarCombineWeekendDays .fsCalendarRow:first-child {
    border-top: 1px solid #EDEDED;
  }
  .fsCalendar.fsGrid .fsCalendarEventGrid.fsCalendarCombineWeekendDays .fsCalendarRow:last-child {
    border-bottom: 1px solid #EDEDED;
  }
  .fsCalendar.fsGrid .fsCalendarEventGrid.fsCalendarCombineWeekendDays .fsCalendarDaybox {
    width: 16.666% !important;
    height: 50px !important;
    border: 1px solid #EDEDED;
  }
  .fsCalendar.fsGrid .fsCalendarEventGrid.fsCalendarCombineWeekendDays .fsCalendarDaybox.fsCalendarWeekendDayBox {
    border: none;
  }
  .fsCalendar.fsGrid .fsCalendarEventGrid.fsCalendarCombineWeekendDays .fsCalendarDaybox.fsCalendarOutOfRange {
    display: block;
  }
}
#event-view {
  padding: 20px;
  margin: 20px auto 0;
}
#event-view .fsCalendarDaybox {
  height: auto !important;
}
#event-view .fsCalendarDaybox > div {
  margin-bottom: 20px;
}
#event-view .fsCalendarEventTitle {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 5px;
}
@media screen and (min-width: 800px) {
  #event-view {
    display: none;
  }
}

.scroll-up {
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
}
.scroll-up span {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #4a4a4a;
  color: #fff;
  outline: 0;
  border-radius: 3px;
  text-align: center;
  padding: 10px 20px;
}
.scroll-up span:hover {
  background: #3d3d3d;
  color: #fff;
}
.scroll-up span em {
  display: block;
  font-style: 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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.fsCalendar.fsGrid .fsCalendarLegend > ul > li {
  margin-left: 0;
}
@media (min-width: 600px) {
  .fsCalendar.fsGrid .fsCalendarLegend > ul > li {
    width: 49%;
  }
}

/*! _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 */
body:not(.fsComposeMode) .loader {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background: url(../images/loading.jpg) center no-repeat, #fff;
  transition: 2s;
}

.full-width {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
  color: #fff;
}
.full-width.fsElement:last-child {
  margin-bottom: -20px;
}
body:not(.has-slideshow) .full-width.fsElement:last-child {
  margin-bottom: -60px;
}
body:not(.fsComposeMode) .full-width {
  width: 100vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  position: relative;
  margin-bottom: 0;
}
.fsHasLeftBanner:not(.fsComposeMode) .full-width {
  width: 100vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  position: relative;
  padding: 20px;
}
.full-width .fsElementTitle {
  color: #fff;
}
.full-width .fs_style_23 {
  background: #fff;
  border-color: #fff;
  font-size: 14px;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 30px;
  box-shadow: 0 2px 4px 0 rgba(100, 100, 100, 0.5);
}
.full-width .fs_style_23:hover {
  background: #00A3E0;
}

.fsElement {
  margin-bottom: 20px;
}
#fsBannerRight .fsElement, #fsBannerLeft .fsElement {
  margin-bottom: 40px;
}
.fsElement:last-child {
  margin-bottom: 0;
}

.fsElementHeaderContent {
  margin-bottom: 20px;
}

.fsElementFooterContent {
  margin-top: 20px;
}

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

.module {
  margin-bottom: 1.11111em;
  padding: 1.11111em;
  color: #fff;
  text-align: right;
}
.module h1, .module h2, .module h3, .module h4, .module h5, .module h6 {
  color: inherit;
  text-indent: 50px;
}
.module h1 a, .module h2 a, .module h3 a, .module h4 a, .module h5 a, .module h6 a {
  color: #fff;
  transition: .3s;
}
.module h1 a:hover, .module h2 a:hover, .module h3 a:hover, .module h4 a:hover, .module h5 a:hover, .module h6 a:hover {
  opacity: .7;
}

.module:not(.gray) {
  background-image: url(../images/g.svg);
  background-position: bottom left;
  background-repeat: no-repeat;
}
.module.gray {
  border-left: 25px solid #00A3E0;
}

.blue {
  background-color: #00A3E0;
}

.green {
  background-color: #97D700;
}

.darkblue {
  background-color: #041E42;
}

.pink {
  background-color: #D539B5;
}

.gray {
  background-color: #888B8D;
}

.orange {
  background-color: #FF6900;
}

.return-to-top {
  text-align: center;
}

.fsEmbed.module.blue input {
  color: #000;
}

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

.fsComposerFormEmbed {
  background: none;
}
.fsComposerFormEmbed body {
  margin: 0;
}
.fsComposerFormEmbed form {
  zoom: 1;
}
.fsComposerFormEmbed form:after {
  display: table;
  clear: both;
  content: '';
}
.fsComposerFormEmbed form input {
  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: #888B8D;
  margin-right: 10px;
  cursor: pointer;
  transition: .3s;
}
.fsComposerFormEmbed form .linkLike:hover {
  color: #FF6900;
}
.fsComposerFormEmbed form .required {
  color: #00A3E0;
}
.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: #888B8D;
  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: #FF6900;
  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: #00A3E0 !important;
  text-shadow: none;
  font-size: inherit;
  border: none !important;
  float: left;
  line-height: 1;
}
.fsComposerFormEmbed form .submitBtn:hover {
  transition: .3s;
  color: #fff !important;
  background: #041E42 !important;
}
.fsComposerFormEmbed .ui-widget {
  font-family: "Genius W00 Regular", 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;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #4a4a4a;
  color: #fff;
  outline: 0;
  border-radius: 3px;
  text-align: center;
}
.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 {
  background: #3d3d3d;
  color: #fff;
}
.fsLogin .fsLoginMainView .fsLoginSubmit em, .fsLogin .fsLoginMainView button em, .fsLogin .fsLoginForgotView .fsLoginSubmit em, .fsLogin .fsLoginForgotView button em, .fsLogin .fsLoginNewView .fsLoginSubmit em, .fsLogin .fsLoginNewView button em, .fsAccount .fsLoginMainView .fsLoginSubmit em, .fsAccount .fsLoginMainView button em, .fsAccount .fsLoginForgotView .fsLoginSubmit em, .fsAccount .fsLoginForgotView button em, .fsAccount .fsLoginNewView .fsLoginSubmit em, .fsAccount .fsLoginNewView button em {
  display: block;
  font-style: 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;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #4a4a4a;
  color: #fff;
  outline: 0;
  border-radius: 3px;
  text-align: center;
}
.fsAccount .fsAccountLogout a:hover {
  background: #3d3d3d;
  color: #fff;
}
.fsAccount .fsAccountLogout a em {
  display: block;
  font-style: normal;
}

.fsSlideshow .fsPager li {
  height: 12px;
  width: 12px;
}
.fsSlideshow .fsPager li button {
  height: 12px;
  width: 12px;
  background: #fff;
  border-radius: 100%;
  transition: .3s;
}
.fsSlideshow .fsPager li button:before {
  color: #fff;
  opacity: 1;
  display: none;
}
.fsSlideshow .fsPager li.slick-active button, .fsSlideshow .fsPager li:hover button {
  background: transparent;
  border: 1px solid #fff;
}

.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: "Genius W00 Regular", sans-serif;
  font-size: 18px;
  left: 0;
  line-height: 26px;
  padding: 10px;
  position: absolute;
  width: 100%;
}
@media (min-width: 800px) {
  .fsMediaCustomPlayer .caption-wrapper {
    padding: 20px;
  }
}
.fsMediaCustomPlayer .caption-wrapper a {
  color: rgba(255, 255, 255, 0.5);
}
.fsMediaCustomPlayer .caption-wrapper a:hover {
  text-decoration: underline;
}
@media (min-width: 800px) {
  .fsMediaCustomPlayer .caption-title {
    margin-top: 0;
    font-style: normal;
    font-family: "Genius W00 SemiBold", sans-serif;
    font-size: 40px;
    line-height: 44px;
    color: #00A3E0;
    margin-bottom: 16px;
    margin-bottom: 0;
  }
}
.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%;
  -webkit-transform: translateY(-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: 0px 0px 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.fsThumbnailAlignLeft .fsThumbnail {
  float: none;
}
@media (min-width: 600px) {
  .fsNews.fsThumbnailAlignLeft .fsThumbnail {
    float: left;
  }
}
.fsNews.fsThumbnailAlignRight .fsThumbnail {
  float: none;
}
@media (min-width: 600px) {
  .fsNews.fsThumbnailAlignRight .fsThumbnail {
    float: right;
  }
}
.fsNews .fsTitle a {
  color: #00A3E0;
  font-size: 27px;
  line-height: 37px;
}
.fsNews .fsTitle a:hover {
  color: #FF6900;
}
.fsNews .fsAuthor,
.fsNews .fsDateTime {
  color: #888B8D;
  font-family: "Genius W00 SemiBold", sans-serif;
}
.fsBanner .fsNews .fsElementTitle {
  border-bottom: 5px solid #00A3E0;
  padding-bottom: 10px;
}
.fsBanner .fsNews .fsTitle a {
  color: #2e2e2e;
  font-size: 20px;
  line-height: 27px;
  font-family: "Genius W00 SemiBold", sans-serif;
}
.fsBanner .fsNews .fsTitle a:hover {
  color: #FF6900;
}

.fsNews.fsList:not(.news-showcase):not(.news-mobile) article:not(:last-child) {
  border-bottom: 5px solid #d8d8d8;
  margin-bottom: 40px;
  padding-bottom: 20px;
}

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

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

/*! _custom.scss - src/sass/modules/search/ - custom site search, design based */
.top-search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.top-search input {
  max-width: 0;
  padding: 5px 0;
  border: 0;
  transition: max-width .3s;
  outline: 0;
  border-radius: 3px;
  height: 38px;
  color: #00A3E0;
}
.top-search button {
  border: 0;
  background: none;
  outline: 0;
  margin: 0;
  padding: 0;
}
.top-search button:before {
  content: "";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  display: block;
}
.search-active .top-search input {
  max-width: 130px;
  padding: 5px;
  border: 2px solid #00A3E0;
  margin-right: 15px;
}
.home:not(.sticky):not(.menu-is-active) .top-search input {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

/*! _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 #4a4a4a;
}
.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: #4a4a4a;
  padding-left: 10px !important;
  padding-right: 85px !important;
  margin: 0 !important;
  border-radius: 0 !important;
  font-size: 18px;
  font-family: "Genius W00 Regular", sans-serif;
}
.fsSearch:not(.site-search) form.gsc-search-box-tools > table.gsc-search-box td.gsc-search-button {
  padding: 0;
  overflow: hidden;
  height: 100%;
  width: 75px;
  background: #4a4a4a;
  position: absolute;
  transition: .3s;
  right: 0;
  top: 0;
}
.fsSearch:not(.site-search) form.gsc-search-box-tools > table.gsc-search-box td.gsc-search-button:after {
  content: "Search";
  color: #fff;
  opacity: 1;
  display: block;
  position: absolute;
  text-align: center;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  line-height: 50px;
  font-size: 18px;
  font-family: "Genius W00 Regular", 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: "Genius W00 Regular", sans-serif;
  font-size: 18px;
}
.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: #4a4a4a;
}
.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: #041E42;
}
.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: #888B8D !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: #FF6900 !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: 18px;
}
.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;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #4a4a4a;
  color: #fff;
  outline: 0;
  border-radius: 3px;
  text-align: center;
}
.vimeo_view_link a:hover {
  background: #3d3d3d;
  color: #fff;
}
.vimeo_view_link a em {
  display: block;
  font-style: normal;
}

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

.fsYoutubeList, .fsYoutubeList ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.fsYoutubeList li {
  margin: 0;
  padding: 0;
}
.fsYoutubeList .fsYoutubeListItem {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px #dddedf;
  transition: opacity .3s;
  opacity: .6;
}
.fsYoutubeList .fsYoutubeListItem:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.fsYoutubeList .fsYoutubeListItem:hover {
  border: none;
  border-bottom: solid 1px #dddedf;
  padding: 0;
  padding-bottom: 20px;
  opacity: 1;
  transition: opacity .3s;
}
.fsYoutubeList .fsYoutubeListItem:hover:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.fsYoutubeThumb {
  margin-bottom: 10px;
  margin-right: 20px;
  float: none;
}
@media (min-width: 600px) {
  .fsYoutubeThumb {
    float: left;
    margin-bottom: 0;
  }
}

.Youtube_view_link a {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #4a4a4a;
  color: #fff;
  outline: 0;
  border-radius: 3px;
  text-align: center;
}
.Youtube_view_link a:hover {
  background: #3d3d3d;
  color: #fff;
}
.Youtube_view_link a em {
  display: block;
  font-style: normal;
}

/*! elements - tabs */
.fsTabs {
  padding: 0;
  background: none;
  border: 0;
  margin-bottom: 20px;
}
.fsTabs .fsTabsNav {
  margin: 0;
  padding: 0;
  display: none;
  border-bottom: 1px solid #000;
}
@media (min-width: 600px) {
  .fsTabs .fsTabsNav {
    display: block;
  }
}
.fsTabs .fsTabsNav li {
  margin-right: 2px;
}
.fsTabs .fsTabsNav li a {
  display: block;
  margin-top: 0;
  font-style: normal;
  font-family: "Genius W00 SemiBold", sans-serif;
  font-size: 40px;
  line-height: 44px;
  color: #00A3E0;
  margin-bottom: 16px;
  margin-bottom: 0;
  display: block;
  font-size: 18px;
  line-height: 26px;
  padding: 13.33333px;
  color: #888B8D;
  transition: .3s;
  background: #fff;
  color: #888B8D;
  border-top: 4px solid #fff;
  position: relative;
}
.fsTabs .fsTabsNav li a:after {
  content: '';
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #00A3E0;
  transition: .3s;
}
.fsTabs .fsTabsNav li a:hover {
  background: #fff;
  color: #888B8D;
}
.fsTabs .fsTabsNav li a:hover:after {
  height: 4px;
}
.fsTabs .fsTabsNav li.fsStateSelected a {
  background: #fff;
  color: #00A3E0;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  border-top-color: #00A3E0;
}
.fsTabs .fsTabsNav li.fsStateSelected a:after {
  background: #fff;
  bottom: -1px;
  height: 1px;
}
@media (max-width: 599px) {
  .fsTabs .fsPanel {
    margin-bottom: 0;
    border-bottom: 2px solid #00A3E0;
  }
  .fsTabs .fsPanel:first-of-type {
    border-top: 2px solid #00A3E0;
  }
}

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

body:not(.fsComposeMode).campus-tour .fsBreadcrumb {
  border-left: 5px solid #FF6900;
  margin-top: 80px;
  padding-left: 30px;
}
body:not(.fsComposeMode).campus-tour .fsBreadcrumb ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
body:not(.fsComposeMode).campus-tour .fsBreadcrumb li {
  display: block;
  margin-top: 0;
  font-style: normal;
  font-family: "Genius W00 SemiBold", sans-serif;
  font-size: 40px;
  line-height: 44px;
  color: #00A3E0;
  margin-bottom: 16px;
}
body:not(.fsComposeMode).campus-tour .fsBreadcrumb li:not(:nth-last-child(2)):not(:last-child) {
  display: none;
}
body:not(.fsComposeMode).campus-tour .fsBreadcrumb a {
  display: block;
  font-size: 18px;
  line-height: 1;
  color: #4a4a4a;
  margin-bottom: 20px;
}
body:not(.fsComposeMode).campus-tour .blue {
  border-color: #00A3E0;
}
body:not(.fsComposeMode).campus-tour .green {
  border-color: #97D700;
}
body:not(.fsComposeMode).campus-tour .darkblue {
  background-color: #041E42;
}
body:not(.fsComposeMode).campus-tour .pink {
  border-color: #D539B5;
}
body:not(.fsComposeMode).campus-tour .orange {
  border-color: #FF6900;
}
body:not(.fsComposeMode).campus-tour .home-slides header {
  display: none;
  position: absolute;
  right: -40px;
  left: auto;
  bottom: 250px;
}
body:not(.fsComposeMode).campus-tour .home-slides header img {
  width: 70%;
}
@media (min-width: 900px) {
  body:not(.fsComposeMode).campus-tour .home-slides header {
    display: block;
  }
}
body:not(.fsComposeMode).campus-tour .grid-container {
  margin-bottom: 0;
  overflow: hidden;
}
body:not(.fsComposeMode).campus-tour .grid-container:nth-last-child(2) {
  margin-bottom: 50px;
}
body:not(.fsComposeMode).campus-tour .grid-container > .fsElementContent {
  height: 100%;
  width: 100%;
}
body:not(.fsComposeMode).campus-tour .grid-container > .fsElementContent .text-box:after {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  border-width: 30px;
  z-index: 10;
  top: 50%;
  right: 100%;
  margin-top: -30px;
  border-right-color: inherit;
}
body:not(.fsComposeMode).campus-tour .grid-container > .fsElementContent .text-box:nth-child(4):after {
  top: auto;
  right: auto;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-bottom-color: inherit;
  border-right-color: transparent;
}
@media (min-width: 900px) {
  body:not(.fsComposeMode).campus-tour .grid-container > .fsElementContent .text-box:nth-child(4):after {
    left: 100%;
    right: auto;
    bottom: auto;
    top: 50%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    border-left-color: inherit;
    border-bottom-color: transparent;
  }
}
body:not(.fsComposeMode).campus-tour .grid-container > .fsElementContent .text-box:nth-child(7):before {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  border-width: 30px;
  z-index: 10;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-right-color: transparent;
  border-top-color: inherit;
}
@media (min-width: 900px) {
  body:not(.fsComposeMode).campus-tour .grid-container > .fsElementContent .text-box:nth-child(7):before {
    top: auto;
    bottom: 100%;
    border-bottom-color: inherit;
    border-top-color: transparent;
  }
}
body:not(.fsComposeMode).campus-tour .grid-container > .fsElementContent .text-box:nth-child(7):after {
  left: 100%;
  right: auto;
  border-left-color: inherit;
  border-right-color: transparent;
}
body:not(.fsComposeMode).campus-tour .grid-container > .fsElementContent .text-box:nth-child(9):after {
  top: 100%;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-top: 0;
  border-top-color: inherit;
  border-right-color: transparent;
}
@media (min-width: 900px) {
  body:not(.fsComposeMode).campus-tour .grid-container > .fsElementContent .text-box:nth-child(9):after {
    top: 50%;
    left: 100%;
    right: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin-top: -30px;
    border-left-color: inherit;
    border-top-color: transparent;
  }
}
body:not(.fsComposeMode).campus-tour .grid-item {
  width: 50%;
  height: 308px;
  margin: 0;
  z-index: 2;
}
@media (min-width: 900px) {
  body:not(.fsComposeMode).campus-tour .grid-item {
    width: 20%;
  }
}
body:not(.fsComposeMode).campus-tour .grid-item.mobile-long {
  width: 100%;
}
@media (min-width: 900px) {
  body:not(.fsComposeMode).campus-tour .grid-item.mobile-long {
    width: 20%;
  }
}
@media (min-width: 900px) {
  body:not(.fsComposeMode).campus-tour .grid-item {
    height: 616px;
  }
}
body.fsComposeMode.campus-tour .grid-item {
  height: auto;
}
body:not(.fsComposeMode).campus-tour .grid-item header {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
body:not(.fsComposeMode).campus-tour .grid-item .fsElementContent {
  height: 100%;
}
body:not(.fsComposeMode).campus-tour .grid-item footer {
  height: 50%;
}
body:not(.fsComposeMode).campus-tour .grid-item footer .fsElementFooterContent {
  height: 100%;
}
body:not(.fsComposeMode).campus-tour .grid-item img {
  display: block;
  max-width: none;
  min-width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
}
body:not(.fsComposeMode).campus-tour .grid-item.tall-image {
  z-index: 1;
}
body:not(.fsComposeMode).campus-tour .grid-item.tall-image img {
  width: 100%;
  height: auto;
}
@media (min-width: 900px) {
  body:not(.fsComposeMode).campus-tour .grid-item.tall-image img {
    width: auto;
    height: 100%;
  }
}
body:not(.fsComposeMode).campus-tour .grid-item.long-image {
  width: 100%;
  height: 308px;
  overflow: hidden;
}
body:not(.fsComposeMode).campus-tour .grid-item.long-image.mobile-short {
  width: 50%;
}
@media (min-width: 900px) {
  body:not(.fsComposeMode).campus-tour .grid-item.long-image {
    width: 40%;
  }
  body:not(.fsComposeMode).campus-tour .grid-item.long-image.mobile-short {
    width: 40%;
  }
}
body:not(.fsComposeMode).campus-tour .grid-item.small-box .fsElementContent, body:not(.fsComposeMode).campus-tour .grid-item.large-box .fsElementContent {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: auto;
  width: 100%;
  color: #fff;
  font-size: 27px;
  font-weight: 600;
  line-height: 32px;
  text-align: center;
  transition: .4s;
}
body:not(.fsComposeMode).campus-tour .grid-item.small-box footer, body:not(.fsComposeMode).campus-tour .grid-item.large-box footer {
  position: absolute;
  top: 80%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  padding: 0 30px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 1px;
  color: #fff;
  transition: .4s;
}
body:not(.fsComposeMode).campus-tour .grid-item.small-box footer a, body:not(.fsComposeMode).campus-tour .grid-item.large-box footer a {
  display: block !important;
  padding-top: 10px;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}
body:not(.fsComposeMode).campus-tour .grid-item.small-box footer a:hover, body:not(.fsComposeMode).campus-tour .grid-item.large-box footer a:hover {
  opacity: .6;
}
body:not(.fsComposeMode).campus-tour .grid-item.small-box:hover .fsElementContent, body:not(.fsComposeMode).campus-tour .grid-item.large-box:hover .fsElementContent {
  top: 20%;
}
body:not(.fsComposeMode).campus-tour .grid-item.small-box:hover footer, body:not(.fsComposeMode).campus-tour .grid-item.large-box:hover footer {
  top: 50%;
  opacity: 1;
  visibility: visible;
  transition: .4s .1s;
}
body:not(.fsComposeMode).campus-tour .grid-item.small-box {
  height: 308px;
  z-index: 3;
}
@media (min-width: 900px) {
  body:not(.fsComposeMode).campus-tour .grid-item.small-box {
    width: 20%;
  }
}
body:not(.fsComposeMode).campus-tour .grid-item.large-box {
  height: 308px;
}
@media (min-width: 900px) {
  body:not(.fsComposeMode).campus-tour .grid-item.large-box {
    width: 40%;
  }
}

.custom-portal .fsBreadcrumb {
  border-left: 5px solid #FF6900;
  padding-left: 30px;
}
.custom-portal .fsBreadcrumb ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.custom-portal .fsBreadcrumb li {
  display: block;
  margin-top: 0;
  font-style: normal;
  font-family: "Genius W00 SemiBold", sans-serif;
  font-size: 40px;
  line-height: 44px;
  color: #00A3E0;
  margin-bottom: 16px;
}
.custom-portal .fsBreadcrumb li:not(:nth-last-child(2)):not(:last-child) {
  display: none;
}
.custom-portal .fsBreadcrumb a {
  display: block;
  font-size: 18px;
  line-height: 1;
  color: #4a4a4a;
  margin-bottom: 20px;
}

body.fsComposeMode.custom-portal .fsBannerLeft,
body.fsComposeMode.custom-portal .fsPageContent {
  margin-top: 50px;
}
body.fsComposeMode.custom-portal .home-slides {
  left: 0;
}

body:not(.fsComposeMode).custom-portal .fsBannerLeft,
body:not(.fsComposeMode).custom-portal .fsPageContent {
  z-index: 10;
  margin-top: 40px;
}
@media (min-width: 800px) {
  body:not(.fsComposeMode).custom-portal .fsBannerLeft,
  body:not(.fsComposeMode).custom-portal .fsPageContent {
    margin-top: -50px;
  }
}
body:not(.fsComposeMode) .portal-block-container {
  margin-left: -10px;
}
@media (max-width: 599px) {
  body:not(.fsComposeMode) .portal-block-container {
    margin-left: 0px;
  }
}
body:not(.fsComposeMode) .portal-block-container > .fsElementContent {
  height: 100%;
  width: 100%;
}
body:not(.fsComposeMode) .portal-block-container > .fsElementContent:after {
  content: '';
  display: block;
  clear: both;
}
body:not(.fsComposeMode) .portal-block-container .grid-item {
  background-size: cover;
  background-repeat: no-repeat;
  width: 31%;
  margin: 16px 12px !important;
  height: 278px;
  float: left;
  color: #fff !important;
  overflow: hidden;
  max-width: 390px;
}
@media only screen and (max-width: 800px) {
  body:not(.fsComposeMode) .portal-block-container .grid-item {
    left: 50% !important;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (max-width: 1229px) {
  body:not(.fsComposeMode) .portal-block-container .grid-item {
    width: 47%;
  }
}
@media (max-width: 1054px) {
  body:not(.fsComposeMode) .portal-block-container .grid-item {
    width: 100%;
  }
}
@media (max-width: 599px) {
  body:not(.fsComposeMode) .portal-block-container .grid-item {
    margin: 9px 0 !important;
  }
}
body:not(.fsComposeMode) .portal-block-container .grid-item .quicklink-content {
  position: absolute;
  bottom: 0px;
  width: 100%;
  padding: 0 17px 10px;
}
body:not(.fsComposeMode) .portal-block-container .grid-item .quicklink-content header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
body:not(.fsComposeMode) .portal-block-container .grid-item .quicklink-content header .fsElementTitle {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  color: #fff;
  font-size: 20px;
  line-height: 27px;
  margin: 0 0 5px;
  text-transform: uppercase;
  font-weight: 600;
}
body:not(.fsComposeMode) .portal-block-container .grid-item .quicklink-content header .fsElementHeaderContent {
  font-size: 18px;
  line-height: 23px;
  margin-bottom: 0;
}
body:not(.fsComposeMode) .portal-block-container .grid-item .quicklink-content .fsElementContent p {
  margin: 0 !important;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.9px;
}
body:not(.fsComposeMode) .portal-block-container .grid-item .quicklink-content footer {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
body:not(.fsComposeMode) .portal-block-container .grid-item .quicklink-content footer .fsElementFooterContent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
}
body:not(.fsComposeMode) .portal-block-container .grid-item .quicklink-content footer .fsElementFooterContent a {
  font-size: 0;
  display: block;
  height: 280px;
  width: 100%;
  position: absolute;
  bottom: 0;
}
body:not(.fsComposeMode) .portal-block-container .grid-item .quicklink-content footer .fsElementFooterContent a:hover:before {
  border-color: transparent transparent rgba(0, 163, 224, 0.67) transparent;
  transition: border .3s;
}
body:not(.fsComposeMode) .portal-block-container .grid-item .quicklink-content footer .fsElementFooterContent a:hover:after {
  color: #fff;
  transition: color .3s;
}
body:not(.fsComposeMode) .portal-block-container .grid-item .quicklink-content footer .fsElementFooterContent a:after {
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: #FF6900;
  transition: color .3s;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.small-block {
  height: 123px;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.small-block .quicklink-content {
  padding-bottom: 30px;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.small-block header {
  text-align: right;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.small-block footer a:before {
  content: '';
  width: 55px;
  height: 55px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: border .3s;
  background-image: url(../images/g.svg);
}
body:not(.fsComposeMode) .portal-block-container .grid-item.small-block.with-image {
  height: 273px;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.small-block.with-image .fsElementContent {
  height: 56%;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.small-block.with-image .fsElementContent img {
  max-height: 100%;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.small-block:hover header, body:not(.fsComposeMode) .portal-block-container .grid-item.small-block:hover h2 {
  color: rgba(255, 255, 255, 0.7);
}
body:not(.fsComposeMode) .portal-block-container .grid-item.video-block .quicklink-content {
  height: 100%;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.video-block .quicklink-content:before {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: '';
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 60%);
}
body:not(.fsComposeMode) .portal-block-container .grid-item.video-block header {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.video-block header .fsElementHeaderContent:before {
  content: "";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  position: absolute;
  left: 50%;
  top: 10px;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  font-size: 30px;
  color: #fff;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.video-block header .fsElementHeaderContent:hover:before {
  opacity: .6;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.xlarge-block {
  height: 583px;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.xlarge-block img {
  width: 100%;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.xlarge-block .quicklink-content {
  height: 50%;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.xlarge-block .quicklink-content:before {
  content: '';
  background-color: #D539B5;
  -webkit-transform: skew(0deg, 5deg);
  -ms-transform: skew(0deg, 5deg);
  transform: skew(0deg, 5deg);
  height: 35%;
  width: 100%;
  position: absolute;
  top: -140px;
  left: 0;
  z-index: 1;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.xlarge-block .quicklink-content header {
  position: relative;
  z-index: 2;
  top: -55px;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.xlarge-block footer .fsElementFooterContent a {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: transparent;
  color: #fff;
  outline: 0;
  border-radius: 3px;
  text-align: center;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: auto;
  width: auto;
  font-size: inherit;
  border: 1px solid #fff;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.xlarge-block footer .fsElementFooterContent a:hover {
  background: transparent;
  color: #fff;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.xlarge-block footer .fsElementFooterContent a em {
  display: block;
  font-style: normal;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.xlarge-block footer .fsElementFooterContent a:hover {
  background: #fff;
  color: #D539B5;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.custom-feed {
  background-color: #1da1f2;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.custom-feed .fsElementContent,
body:not(.fsComposeMode) .portal-block-container .grid-item.custom-feed .slick-list,
body:not(.fsComposeMode) .portal-block-container .grid-item.custom-feed .slick-track {
  height: 100%;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.custom-feed .quicklink-content {
  z-index: 1;
  top: 50%;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.custom-feed .quicklink-content:before {
  top: -55px;
  background: #1da1f2;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.custom-feed .quicklink-content header {
  position: relative;
  z-index: 2;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.custom-feed .quicklink-content header:before {
  content: '\e905';
  font-family: IcoMoon;
  color: #fff;
  font-size: 28px;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.custom-feed .image-wrapper {
  height: 284px;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.custom-feed img {
  height: 284px;
  width: 100%;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.custom-feed .feed-content {
  position: relative;
  top: 75px;
  padding: 20px;
  z-index: 1;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.custom-feed .feed-content a {
  color: #000;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.custom-feed .slick-dots {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 10px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 5;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.custom-feed .slick-dots li {
  display: inline-block;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.custom-feed .slick-dots li.slick-active button {
  border: 1px solid #fff;
  background: transparent;
  /* Active Color */
  height: 13px;
  width: 13px;
}
body:not(.fsComposeMode) .portal-block-container .grid-item.custom-feed .slick-dots li button {
  display: block;
  float: left;
  height: 12px;
  width: 12px;
  padding: 0;
  margin: 0px 6px;
  border: none;
  border-radius: 50%;
  outline: 0;
  transition: .3s all ease-out;
  color: transparent;
  background: #fff;
  /* Inactive Color */
}
@media (max-width: 799px) {
  .fsBannerLeft {
    padding-top: 20px !important;
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
}
body:not(.fsComposeMode) .filter-options header, body:not(.fsComposeMode) .filter-options > .fsElementContent {
  padding-left: 40px;
}
@media (max-width: 799px) {
  body:not(.fsComposeMode) .filter-options footer {
    display: none !important;
  }
}
body:not(.fsComposeMode) .filter-options ul {
  list-style: none;
  padding: 0;
}
body:not(.fsComposeMode) .filter-options ul li {
  padding: 4px 0;
}
body:not(.fsComposeMode) .filter-options ul li:hover a {
  color: #00A3E0 !important;
  transition: color .3s;
}
body:not(.fsComposeMode) .filter-options ul li:hover a:before {
  background: #00A3E0;
  box-shadow: 0 0 0 1px #00A3E0, inset 0 0 0 2px #fff;
  transition: border-color .3s;
}
body:not(.fsComposeMode) .filter-options ul li a {
  color: #4a4a4a;
  position: relative;
  padding-left: 20px;
  transition: color .3s;
  cursor: pointer;
}
body:not(.fsComposeMode) .filter-options ul li a:before {
  content: '';
  background: transparent;
  width: 12px;
  height: 12px;
  border: 1px solid transparent;
  box-shadow: 0 0 0 1px #4a4a4a, inset 0 0 0 1px #fff;
  border-radius: 100%;
  position: absolute;
  top: 6px;
  left: 0;
  transition: border-color .3s;
}
body:not(.fsComposeMode) .filter-options ul li a.active {
  color: #00A3E0 !important;
  transition: color .3s;
}
body:not(.fsComposeMode) .filter-options ul li a.active:before {
  background: #00A3E0;
  box-shadow: 0 0 0 1px #00A3E0, inset 0 0 0 2px #fff;
  transition: border-color .3s;
}
body:not(.fsComposeMode) .you-know {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-bottom: 0;
  padding: 55px 0;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  text-align: center;
}
body:not(.fsComposeMode) .you-know h2 {
  color: #fff;
}
body:not(.fsComposeMode) .you-know .fsElementContent {
  color: #fff;
  max-width: 740px;
  margin: 0 auto;
}
body:not(.fsComposeMode) .you-know .fsElementFooterContent a {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: #fff;
  color: #00A3E0;
  outline: 0;
  border-radius: 3px;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  box-shadow: 0 2px 4px 0 rgba(100, 100, 100, 0.5);
}
body:not(.fsComposeMode) .you-know .fsElementFooterContent a:hover {
  background: #f2f2f2;
  color: #00A3E0;
}
body:not(.fsComposeMode) .you-know .fsElementFooterContent a em {
  display: block;
  font-style: normal;
}
body:not(.fsComposeMode) .you-know .fsElementFooterContent a:hover {
  background: #00A3E0;
  color: #fff;
}

body:not(.fsComposeMode).journey-page .fsPageBodyWrapper {
  padding: 0 !important;
  margin-top: 0 !important;
}
body:not(.fsComposeMode).journey-page .fsPageBody {
  margin: 0 !important;
  max-width: none !important;
}
body:not(.fsComposeMode) .panel {
  position: relative;
  height: 100vh;
  width: 100vw;
  margin-bottom: 0;
  background-size: cover;
  background-position: center;
}
body:not(.fsComposeMode) .panel img {
  display: none;
  position: absolute;
  right: 5px;
  bottom: -25px;
  height: 60%;
}
@media (min-width: 800px) {
  body:not(.fsComposeMode) .panel img {
    display: block;
  }
}
body:not(.fsComposeMode) .panel .fsElementContent {
  position: absolute;
  left: 45px;
  bottom: 10%;
  padding: 20px 15px;
  background: rgba(255, 255, 255, 0.79);
  width: 75%;
}
@media (min-width: 1200px) {
  body:not(.fsComposeMode) .panel .fsElementContent {
    width: 60%;
    padding: 15px 35px;
  }
}
body:not(.fsComposeMode) .panel .fsElementContent .panel-content {
  padding: 10px 0 0 40px;
  font-size: 18px;
  line-height: 28px;
  border-left: 5px solid #FF6900;
}
body:not(.fsComposeMode) .panel .fsElementContent .panel-content p:last-child {
  margin: 0;
}
@media screen and (max-width: 800px) {
  body:not(.fsComposeMode) .panel .fsElementContent .panel-content p:not(:first-child) {
    display: none;
  }
  body:not(.fsComposeMode) .panel .fsElementContent .panel-content a:not(:first-child) {
    display: none;
  }
}
body:not(.fsComposeMode) .panel .fsElementContent .panel-content strong {
  font-size: 37px;
  line-height: 44px;
}
body:not(.fsComposeMode) .panel .fsElementContent .panel-content a {
  margin-right: 10px;
  text-decoration: underline;
}
body:not(.fsComposeMode) .panel .fsElementContent .panel-content a:hover {
  color: #FF6900;
}
body:not(.fsComposeMode) .panel .fsElementContent .panel-content a:nth-of-type(2):before {
  content: "";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  display: inline-block;
  padding-right: 5px;
}
body:not(.fsComposeMode) .panel .fsElementContent .panel-content a.box-link, body:not(.fsComposeMode) .panel .fsElementContent .panel-content a.fs_style_33 {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: transparent;
  color: #4a4a4a;
  outline: 0;
  border-radius: 3px;
  text-align: center;
  margin-right: 10px;
  border: 3px solid #4a4a4a;
}
body:not(.fsComposeMode) .panel .fsElementContent .panel-content a.box-link:hover, body:not(.fsComposeMode) .panel .fsElementContent .panel-content a.fs_style_33:hover {
  background: transparent;
  color: #4a4a4a;
}
body:not(.fsComposeMode) .panel .fsElementContent .panel-content a.box-link em, body:not(.fsComposeMode) .panel .fsElementContent .panel-content a.fs_style_33 em {
  display: block;
  font-style: normal;
}
body:not(.fsComposeMode) .panel .fsElementContent .panel-content a.box-link:hover, body:not(.fsComposeMode) .panel .fsElementContent .panel-content a.fs_style_33:hover {
  background: #00A3E0;
  color: #fff;
}
body:not(.fsComposeMode) .panel:first-child {
  height: calc(100vh + 60px);
}
body:not(.fsComposeMode) .panel:nth-child(2) img {
  position: absolute;
  right: 5px;
  bottom: -25px;
  height: 60%;
}
body:not(.fsComposeMode) .panel:nth-child(2) .panel-content {
  border-color: #DA1884;
}
body:not(.fsComposeMode) .panel:nth-child(3) img {
  position: absolute;
  right: 65px;
  bottom: 0;
  height: 50%;
}
body:not(.fsComposeMode) .panel:nth-child(3) .panel-content {
  border-color: #97D700;
}
body:not(.fsComposeMode) .panel:nth-child(4) img {
  position: absolute;
  right: 60px;
  bottom: 60px;
  height: 60%;
}
body:not(.fsComposeMode) .panel:nth-child(4) .panel-content {
  border-color: #00A3E0;
}
body:not(.fsComposeMode) .pagination {
  position: fixed;
  right: 20px;
  bottom: 35%;
  z-index: 5;
  list-style: none;
}
body:not(.fsComposeMode) .pagination button {
  display: block;
  float: left;
  height: 12px;
  width: 12px;
  padding: 0;
  margin: 10px 6px;
  border: 1px solid #fff;
  border-radius: 50%;
  outline: 0;
  transition: .3s all ease-out;
  color: transparent;
  background: #fff;
  /* Inactive Color */
}
body:not(.fsComposeMode) .pagination .page-dot.on button {
  background: transparent;
}
body:not(.fsComposeMode) .pagination .scroll-link {
  display: inline-block;
  position: relative;
  top: 0;
  right: 8px;
}
body:not(.fsComposeMode) .pagination .scroll-link.scroll-top:before {
  content: "";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-size: 50%;
  color: #fff;
  display: block;
  -webkit-transform: rotate(-90deg) translateX(40%);
  -ms-transform: rotate(-90deg) translateX(40%);
  transform: rotate(-90deg) translateX(40%);
  margin-top: 10px;
}
body:not(.fsComposeMode) .pagination .scroll-link.scroll-top:after {
  display: none;
}
body:not(.fsComposeMode) .exit-journey {
  position: fixed;
  top: 120px;
  left: 75px;
}
body:not(.fsComposeMode) .exit-journey a {
  display: inline-block;
  border: 0;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: transparent;
  color: #fff;
  outline: 0;
  border-radius: 3px;
  text-align: center;
  border: 1px solid #fff;
}
body:not(.fsComposeMode) .exit-journey a:hover {
  background: transparent;
  color: #fff;
}
body:not(.fsComposeMode) .exit-journey a em {
  display: block;
  font-style: normal;
}
body:not(.fsComposeMode) .exit-journey a:before {
  content: "";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-size: 80%;
  color: #fff;
  display: inline-block;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-right: 10px;
}

/*! pages - home v0.0.1 */
.home #fsPageBodyWrapper {
  padding-top: 0;
  padding-bottom: 0;
}
.home .fsPageLayout > .fsDiv {
  margin-bottom: 0;
}
@media (min-width: 800px) {
  .has-slideshow:not(.menu-is-active):not(.sticky) .util-container a,
  .has-slideshow:not(.menu-is-active):not(.sticky) .util-container button,
  .has-slideshow:not(.menu-is-active):not(.sticky) .util-container .fsNavLevel1 > li:before {
    color: #fff;
  }
  .has-slideshow:not(.menu-is-active):not(.sticky) .util-container .fs_style_23 {
    border-color: #fff;
  }
  .has-slideshow:not(.menu-is-active):not(.sticky) .util-container .menu-toggle:before {
    background: #fff;
  }
  .has-slideshow:not(.menu-is-active):not(.sticky) .util-container .menu-toggle a:before, .has-slideshow:not(.menu-is-active):not(.sticky) .util-container .menu-toggle a:after {
    background: #fff;
  }
  .has-slideshow:not(.menu-is-active):not(.sticky) .util-container .menu-toggle a:after {
    box-shadow: 0 10px 0 0 #fff;
  }
}

.home-slides {
  min-height: 400px;
}
.home-slides .fsPager,
.home-slides .slick-slider {
  margin-bottom: 0;
}
body:not(.home) .home-slides .caption-wrapper {
  display: none;
}

.scroll-link {
  position: absolute;
  bottom: 250px;
  right: 65px;
  display: none;
}
@media (min-width: 800px) {
  .scroll-link {
    display: block;
  }
}
.scroll-link:after {
  content: "";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-size: 50%;
  color: #fff;
  display: block;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-top: 10px;
}
.scroll-link:hover {
  cursor: pointer;
}
.scroll-link:hover:after {
  -webkit-animation: 2s bounce infinite;
  animation: 2s bounce infinite;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0) rotate(90deg);
    transform: translateY(0) rotate(90deg);
  }
  40% {
    -webkit-transform: translateY(10px) rotate(90deg);
    transform: translateY(10px) rotate(90deg);
  }
  60% {
    -webkit-transform: translateY(5px) rotate(90deg);
    transform: translateY(5px) rotate(90deg);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0) rotate(90deg);
    transform: translateY(0) rotate(90deg);
  }
  40% {
    -webkit-transform: translateY(10px) rotate(90deg);
    transform: translateY(10px) rotate(90deg);
  }
  60% {
    -webkit-transform: translateY(5px) rotate(90deg);
    transform: translateY(5px) rotate(90deg);
  }
}
.top-social {
  position: absolute;
  z-index: 1;
  right: 65px;
  top: 100px;
  margin-bottom: 0;
  display: none;
}
body:not(.home) .top-social {
  display: none;
}
@media (min-width: 800px) {
  .top-social {
    display: block;
  }
}
.top-social .fsNavLevel1 > li {
  display: block;
}
.top-social .fsNavLevel1 > li:not(:last-child) {
  margin-right: 0;
}

body:not(.fsComposeMode) .home-slides {
  width: 100vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  position: relative;
  overflow: hidden;
}
body:not(.fsComposeMode) .home-slides footer {
  position: absolute;
  bottom: 65px;
  right: 60px;
  color: #fff;
  font-family: "CaflischScriptW01-Regul", cursive, serif;
  font-size: 20px;
}
@media (min-width: 800px) {
  body:not(.fsComposeMode) .home-slides footer {
    bottom: 185px;
    left: 60px;
    right: auto;
    font-size: 40px;
  }
}
@media (min-width: 1800px) {
  body:not(.fsComposeMode) .home-slides footer {
    bottom: 255px;
  }
}
body:not(.fsComposeMode) .home-slides .slick-slider {
  margin-bottom: 0;
}
body:not(.fsComposeMode) .home-slides.fsElement {
  margin-bottom: 0;
}
body:not(.fsComposeMode) .home-slides > header {
  position: absolute;
  z-index: 1;
  bottom: 80px;
  left: 20px;
  color: #fff;
  font-family: "CaflischScriptW01-Regul", cursive, serif;
  font-size: 30px;
  line-height: 37px;
}
@media (min-width: 800px) {
  body:not(.fsComposeMode) .home-slides > header {
    bottom: 250px;
    left: 60px;
    font-size: 40px;
    line-height: 47px;
  }
}
body:not(.fsComposeMode) .home-slides .universal-img {
  height: 400px;
}
@media (min-width: 800px) {
  body:not(.fsComposeMode) .home-slides .universal-img {
    height: 100vh;
  }
}
body:not(.fsComposeMode) .home-slides:after {
  content: '';
  background: #fff;
  -webkit-transform: skew(0deg, 5deg);
  -ms-transform: skew(0deg, 5deg);
  transform: skew(0deg, 5deg);
  height: 50%;
  width: 100%;
  position: absolute;
  bottom: -40%;
}
body:not(.fsComposeMode) .home-slides .caption-wrapper {
  bottom: 130px;
  left: 20px;
  background: none;
  max-width: calc(100% - 40px);
  padding: 0;
}
body:not(.fsComposeMode) .home-slides .caption-desc {
  font-size: 30px;
  line-height: 37px;
  letter-spacing: 1px;
  font-family: "Genius W00 SemiBold", sans-serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
body:not(.fsComposeMode) .home-slides .fsPager {
  position: absolute;
  bottom: 100px;
  left: 20px;
  text-align: left;
}
@media (min-width: 800px) {
  body:not(.fsComposeMode) .home-slides .caption-wrapper {
    bottom: 260px;
    left: 60px;
    max-width: 670px;
  }
  body:not(.fsComposeMode) .home-slides .caption-desc {
    font-size: 49px;
    line-height: 57px;
  }
  body:not(.fsComposeMode) .home-slides .fsPager {
    bottom: 230px;
    left: 60px;
  }
}
@media (min-width: 1800px) {
  body:not(.fsComposeMode) .home-slides .caption-wrapper {
    bottom: 330px;
  }
  body:not(.fsComposeMode) .home-slides .fsPager {
    bottom: 300px;
  }
}
body:not(.home) .home-slides {
  min-height: 300px;
  max-height: 300px;
}
@media (min-width: 800px) {
  body:not(.home) .home-slides {
    max-height: 600px;
  }
  body:not(.home) .home-slides .universal-img {
    height: 800px;
  }
  body:not(.home) .home-slides .fsPager {
    bottom: 400px;
  }
}
body:not(.home) .home-slides:after {
  bottom: -35%;
}

body:not(.fsComposeMode) .welcome {
  width: 100vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  position: relative;
  padding-right: 1.11111em;
  padding-left: 1.11111em;
  z-index: 1;
  margin-top: -40px;
}
@media (min-width: 800px) {
  body:not(.fsComposeMode) .welcome {
    margin-top: -100px;
  }
}
body:not(.fsComposeMode) .welcome > img {
  position: absolute;
  top: -100px;
  left: 0;
  -webkit-transform-origin: left 50%;
  -ms-transform-origin: left 50%;
  transform-origin: left 50%;
  z-index: -2;
}
body:not(.fsComposeMode) .welcome.fsElement {
  margin-bottom: 0;
}
body:not(.fsComposeMode) .welcome > .fsElementContent,
body:not(.fsComposeMode) .welcome .fsElementHeaderContent,
body:not(.fsComposeMode) .welcome footer {
  position: relative;
  margin: 0 auto;
  max-width: 85.55556em;
  max-width: 96.25rem;
  padding-right: 1.11111em;
  padding-left: 1.11111em;
  top: 20px;
}
body:not(.fsComposeMode) .welcome .fsElementHeaderContent {
  border-left: 5px solid #FF6900;
  padding-left: 10px;
  font-size: 20px;
  line-height: 27px;
  color: #00A3E0;
  margin-bottom: 40px;
}
body:not(.fsComposeMode) .welcome footer {
  display: none;
}
body:not(.fsComposeMode) .welcome ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  max-width: 480px;
  font-family: "Genius W00 SemiBold", sans-serif;
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
}
body:not(.fsComposeMode) .welcome ul li {
  position: relative;
}
body:not(.fsComposeMode) .welcome ul li:before {
  content: '';
  width: 25px;
  height: calc(100% + 5px);
  position: absolute;
  top: 0;
  left: 0;
  background: #00A3E0;
  z-index: 1;
}
body:not(.fsComposeMode) .welcome ul li:last-child:before {
  height: 100%;
}
body:not(.fsComposeMode) .welcome ul li:not(:last-child) {
  border-bottom: 5px solid #A0A0A0;
}
body:not(.fsComposeMode) .welcome ul li a {
  display: block;
  padding: 1.11111em;
  color: #fff;
  text-align: right;
  background-color: #888B8D;
  -webkit-transform-origin: 0;
  -ms-transform-origin: 0;
  transform-origin: 0;
  transition: .3s;
}
body:not(.fsComposeMode) .welcome ul li a:before {
  content: "";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-size: 50%;
  margin-right: 20px;
  opacity: 0;
  vertical-align: middle;
  transition: .3s;
}
body:not(.fsComposeMode) .welcome ul li a:hover {
  -webkit-transform: scaleX(1.05);
  -ms-transform: scaleX(1.05);
  transform: scaleX(1.05);
  background-color: #00A3E0;
}
body:not(.fsComposeMode) .welcome ul li a:hover:before {
  opacity: 1;
}
@media (min-width: 900px) {
  body:not(.fsComposeMode) .welcome .fsElementHeaderContent {
    font-size: 38px;
    line-height: 47px;
  }
  body:not(.fsComposeMode) .welcome footer {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
  }
  body:not(.fsComposeMode) .welcome > .fsElementContent > * {
    width: 40%;
  }
}

body:not(.fsComposeMode) .experience {
  width: 100vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-right: 1.11111em;
  padding-left: 1.11111em;
  min-height: 790px;
  text-align: center;
  background-size: cover;
  background-position: 50%;
}
body:not(.fsComposeMode) .experience .blur-overlay {
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-filter: blur(0);
  filter: blur(0);
  transition: .3s;
}
body:not(.fsComposeMode) .experience.blur .blur-overlay {
  -webkit-filter: blur(5px);
  filter: blur(5px);
}
body:not(.fsComposeMode) .experience.fsElement {
  margin-bottom: 0;
}
body:not(.fsComposeMode) .experience > .fsElementContent {
  position: relative;
  margin: 0 auto;
  max-width: 85.55556em;
  max-width: 96.25rem;
}
body:not(.fsComposeMode) .experience .fsElementTitle {
  color: #fff;
  position: relative;
}
body:not(.fsComposeMode) .experience .fsTabs {
  color: #fff;
  text-align: left;
  font-family: "Genius W00 SemiBold", sans-serif;
}
body:not(.fsComposeMode) .experience .fsTabs > .fsElementContent > .fsPanel {
  border: 0;
}
body:not(.fsComposeMode) .experience .fsTabs > .fsElementContent > .fsPanel > header {
  display: none;
}
body:not(.fsComposeMode) .experience .fsTabs.interest-options {
  padding-top: 40px;
}
body:not(.fsComposeMode) .experience .fsTabs.interest-options > .fsElementContent > .fsTabsNav {
  z-index: 1;
}
body:not(.fsComposeMode) .experience .fsTabs.interest-options > .fsElementContent > .fsTabsNav:before {
  content: 'I am interested in';
  position: absolute;
  left: -160px;
  top: 12px;
}
body:not(.fsComposeMode) .experience .fsTabs.age-options .fsTabsNav {
  width: 40%;
  margin: 0 0 0 auto;
}
@media (min-width: 600px) {
  body:not(.fsComposeMode) .experience .fsTabs.age-options .fsTabsNav {
    width: 20%;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  body:not(.fsComposeMode) .experience .fsTabs.age-options .fsTabsNav {
    width: 10%;
  }
}
body:not(.fsComposeMode) .experience .fsTabs.age-options .fsTabsNav:before {
  content: 'By August 31st my child will be';
  position: absolute;
  left: -150px;
  top: 0;
  width: 150px;
}
@media (min-width: 800px) {
  body:not(.fsComposeMode) .experience .fsTabs.age-options .fsTabsNav:before {
    left: -300px;
    top: 12px;
    width: auto;
  }
}
body:not(.fsComposeMode) .experience .fsTabs .fsTabsNav {
  border: 1px solid #fff;
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: 52px;
}
body:not(.fsComposeMode) .experience .fsTabs .fsTabsNav:after {
  content: url(../images/clip.svg);
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-40%);
  -ms-transform: translateY(-40%);
  transform: translateY(-40%);
}
@media (max-width: 600px) {
  body:not(.fsComposeMode) .experience .fsTabs .fsTabsNav {
    display: block;
  }
}
@media (min-width: 600px) {
  body:not(.fsComposeMode) .experience .fsTabs .fsTabsNav {
    width: 50%;
  }
}
@media (min-width: 900px) {
  body:not(.fsComposeMode) .experience .fsTabs .fsTabsNav {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  body:not(.fsComposeMode) .experience .fsTabs .fsTabsNav {
    width: 25%;
  }
}
body:not(.fsComposeMode) .experience .fsTabs .fsTabsNav li {
  display: none;
  margin-right: 0;
  width: 100%;
}
body:not(.fsComposeMode) .experience .fsTabs .fsTabsNav li.fsStateSelected {
  display: block;
  position: absolute;
  left: 0;
}
body:not(.fsComposeMode) .experience .fsTabs .fsTabsNav li a {
  background: transparent;
  border: 0;
  display: block;
  padding: 0 20px;
  line-height: 50px;
  color: #fff;
}
body:not(.fsComposeMode) .experience .fsTabs .fsTabsNav li a:after {
  display: none;
}
body:not(.fsComposeMode) .experience .fsTabs .fsTabsNav.tabs-open {
  border-color: transparent;
}
body:not(.fsComposeMode) .experience .fsTabs .fsTabsNav.tabs-open li {
  display: block;
  background: #fff;
}
body:not(.fsComposeMode) .experience .fsTabs .fsTabsNav.tabs-open li a {
  color: #00A3E0;
}
body:not(.fsComposeMode) .experience .fsTabs .fsTabsNav.tabs-open li.fsStateSelected {
  position: relative;
}
body:not(.fsComposeMode) .experience .fsPanel > .fsElementContent {
  padding: 40px 0;
}
body:not(.fsComposeMode) .experience .show-results.bye-results > .fsElementContent {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
body:not(.fsComposeMode) .experience .show-results.bye-results .find-results {
  color: rgba(0, 163, 224, 0.5);
}
body:not(.fsComposeMode) .experience .show-results.bye-results .find-results:hover {
  color: rgba(255, 255, 255, 0.5);
}

body:not(.fsComposeMode) .bye-results {
  text-align: center;
}
body:not(.fsComposeMode) .bye-results .find-results {
  border: 0;
  background: none;
  outline: 0;
  margin: 0;
  padding: 0;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 0 2px 4px 0 rgba(100, 100, 100, 0.5);
  border: 1px solid #fff;
  color: #00A3E0;
  padding: 8px 15px;
  font-size: 14px;
  text-transform: uppercase;
  transition: .3s;
}
body:not(.fsComposeMode) .bye-results .find-results:before {
  content: "";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  margin-right: 10px;
  vertical-align: middle;
}
body:not(.fsComposeMode) .bye-results .find-results:hover {
  background: #00A3E0;
  color: #fff;
}
body:not(.fsComposeMode) .bye-results > .fsElementContent {
  text-align: left;
  padding: 40px 0;
  opacity: 0;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  transition: .3s;
}
body:not(.fsComposeMode) .bye-results > .fsElementContent > .fsElement > .fsElementContent {
  width: 100%;
}
body:not(.fsComposeMode) .bye-results > .fsElementContent > .fsElement p {
  margin-bottom: 0;
}
body:not(.fsComposeMode) .bye-results > .fsElementContent > .fsElement a {
  display: block;
  padding: 20px;
  background: #fff;
  color: #00A3E0;
}
body:not(.fsComposeMode) .bye-results > .fsElementContent > .fsElement a:hover {
  color: #FF6900;
}
@media (min-width: 800px) {
  body:not(.fsComposeMode) .bye-results > .fsElementContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  body:not(.fsComposeMode) .bye-results > .fsElementContent > .fsElement {
    width: calc(33.33% - 20px);
    height: 240px;
    background-size: cover;
    background-position: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  body:not(.fsComposeMode) .bye-results > .fsElementContent > .fsElement a {
    background: rgba(255, 255, 255, 0.95);
  }
}

.news-events {
  width: 100vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  position: relative;
  padding-right: 1.11111em;
  padding-left: 1.11111em;
  background: #00A3E0;
  z-index: 1;
}
.news-events.fsElement {
  margin-bottom: 0;
}
.news-events > .fsElementContent {
  position: relative;
  margin: 0 auto;
  max-width: 96.66667em;
  max-width: 108.75rem;
  background: #fff;
  -webkit-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  transform: translateY(-100px);
}
.news-events > .fsElementContent > img {
  position: absolute;
  right: 20px;
  top: 45px;
  -webkit-transform-origin: right 50%;
  -ms-transform-origin: right 50%;
  transform-origin: right 50%;
}

.news-events-container {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 1.11111em;
  padding-left: 1.11111em;
}
.news-events-container > .fsElementContent {
  position: relative;
  margin: 0 auto;
  max-width: 85.55556em;
  max-width: 96.25rem;
}
@media (min-width: 900px) {
  .news-events-container > .fsElementContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .news-events-container > .fsElementContent > .fsElement {
    width: 20%;
  }
}
@media (min-width: 900px) and (min-width: 900px) {
  body:not(.fsComposeMode) .news-events-container > .fsElementContent .fsNews {
    width: 70%;
  }
}

.news-events-container .fsElementHeaderContent {
  border-left: 5px solid #FF6900;
  padding-left: 10px;
  font-size: 20px;
  line-height: 27px;
  color: #00A3E0;
  margin-bottom: 40px;
}
@media (min-width: 900px) {
  .news-events-container .fsElementHeaderContent {
    font-size: 40px;
    line-height: 47px;
  }
}
.news-events-container .fsCalendar > .fsElementContent {
  background: #888B8D;
  padding: 20px;
}
.news-events-container .fsCalendar article {
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.news-events-container .fsCalendar .fsDate {
  position: relative;
  background: none;
  width: auto;
  height: auto;
  display: block;
  text-align: left;
}
.news-events-container .fsCalendar .fsDate > span {
  display: inline;
  margin: 0 2.5px;
}
.news-events-container .fsCalendar .fsDate > span.fsDay {
  font-size: 18px;
  line-height: 26px;
}
.news-events-container .fsCalendar .fsDate > span.fsSeparator {
  display: none;
}
.news-events-container .fsCalendar .fsCalendarEventLink {
  color: #fff;
  transition: .3s;
}
.news-events-container .fsCalendar .fsCalendarEventLink:hover {
  color: #fff;
  opacity: .7;
}
.news-events-container .fsCalendar .fsPager {
  text-align: left;
}
.news-events-container .fsCalendar footer {
  text-align: right;
}

@media (min-width: 800px) {
  body:not(.fsComposeMode) .news-mobile {
    display: none;
  }
}
.news-mobile article {
  padding: 0;
  background: #888B8D;
}
.news-mobile .fsThumbnail img {
  margin-bottom: 0;
  width: 100%;
}
.news-mobile .fsTitle {
  height: 170px;
}
.news-mobile .fsTitle a {
  padding: 10px 20px;
  display: block;
  color: #fff;
}
.news-mobile .fsPager {
  position: absolute;
  bottom: 172px;
}

.news-showcase {
  display: none;
}
@media (min-width: 800px) {
  .news-showcase {
    display: block;
  }
}
.news-showcase > .fsElementContent {
  position: relative;
}
.news-showcase > .fsElementContent:after {
  content: url(../images/news-g.svg);
  position: absolute;
  left: 0;
  bottom: -6px;
}
.news-showcase .fsListItems {
  position: relative;
  height: 280px;
}
@media (min-width: 1200px) {
  .news-showcase .fsListItems {
    height: 380px;
  }
}
@media (min-width: 1400px) {
  .news-showcase .fsListItems {
    height: 425px;
  }
}
.news-showcase article {
  margin-bottom: 0;
  height: 25%;
}
.news-showcase article:not(:last-child) .fsTitle a {
  border-bottom: 4px solid #A0A0A0;
}
@media (min-width: 800px) {
  .news-showcase article {
    padding-left: 60%;
  }
}
.news-showcase article .fsThumbnail {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  transition: opacity .3s ease;
}
@media (min-width: 800px) {
  .news-showcase article .fsThumbnail {
    width: 60%;
    right: auto;
    margin: 0;
  }
}
.news-showcase article .fsThumbnail img {
  display: none;
}
.news-showcase article .fsThumbnail.thumb_active {
  opacity: 1;
}
.news-showcase article:first-child .fsThumbnail {
  opacity: 1;
}
.news-showcase .fsTitle {
  font-size: 20px;
  line-height: 23px;
  font-weight: normal;
  height: 100%;
}
.news-showcase .fsTitle a {
  color: #fff;
  background: #888B8D;
  display: block;
  padding: 14px 28px;
  transition: .3s;
  height: 100%;
}
.news-showcase .fsTitle a:hover {
  color: #fff;
  background: #00A3E0;
}
.news-showcase footer {
  text-align: right;
}

.newsletter footer {
  text-align: right;
}
.newsletter a {
  position: relative;
  display: block;
}
.newsletter a:after {
  content: attr(title);
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 20px;
}
.newsletter img {
  display: block;
  width: 100%;
}

.home:not(.fsComposeMode) .fsYoutube {
  position: relative;
  z-index: 5;
  padding-top: 15px;
}
.home:not(.fsComposeMode) .fsYoutube > .fsElementContent {
  position: relative;
  margin: 0 auto;
  max-width: 85.55556em;
  max-width: 96.25rem;
  padding-right: 1.11111em;
  padding-left: 1.11111em;
}
.home:not(.fsComposeMode) .fsYoutube > header {
  z-index: 1;
  position: absolute;
  top: -300px;
  display: none;
  text-align: center;
  width: 70%;
}
@media (min-width: 1200px) {
  .home:not(.fsComposeMode) .fsYoutube > header {
    width: 40%;
  }
}
@media (min-width: 1400px) {
  .home:not(.fsComposeMode) .fsYoutube > header {
    width: auto;
  }
}
.home:not(.fsComposeMode) .fsYoutube > header:after {
  content: '';
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transition: .3s;
}
.home:not(.fsComposeMode) .fsYoutube > header .fsElementHeaderContent {
  margin-bottom: 0;
}
.home:not(.fsComposeMode) .fsYoutube > header .fsElementTitle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
  -ms-transform: translate(-50%, -40%);
  transform: translate(-50%, -40%);
  color: transparent;
  font-size: 18px;
  margin-bottom: 0;
  padding-top: 55px;
  transition: .3s;
  z-index: 1;
}
.home:not(.fsComposeMode) .fsYoutube > header .fsElementTitle:before {
  content: "";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #00A3E0;
  border-radius: 100%;
  width: 55px;
  height: 55px;
  color: #fff;
  font-size: 26px;
  line-height: 55px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}
.home:not(.fsComposeMode) .fsYoutube > header:hover:after {
  opacity: 1;
}
.home:not(.fsComposeMode) .fsYoutube > header:hover .fsElementTitle {
  color: #fff;
}
.home:not(.fsComposeMode) .fsYoutube > header img {
  display: block;
}
.home:not(.fsComposeMode).video-modal .video-modal {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.9);
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.home:not(.fsComposeMode).video-modal .video-modal .video-modal-inner {
  width: 80%;
  height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.home:not(.fsComposeMode).video-modal .video-modal .video-modal-close {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: opacity 0.2s ease;
  background-color: transparent;
  border: 0;
  height: 25px;
  opacity: .8;
  outline: none;
  padding: 0;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 25px;
}
.home:not(.fsComposeMode).video-modal .video-modal .video-modal-close:before, .home:not(.fsComposeMode).video-modal .video-modal .video-modal-close:after {
  transition: all 0.2s ease-in-out;
  background: #fff;
  border-radius: 2px;
  content: '';
  position: absolute;
}
.home:not(.fsComposeMode).video-modal .video-modal .video-modal-close:before {
  content: '';
  height: 24px;
  left: 12px;
  top: 0;
  width: 3px;
}
.home:not(.fsComposeMode).video-modal .video-modal .video-modal-close:after {
  content: '';
  height: 3px;
  left: 2px;
  top: 11px;
  width: 24px;
}
@media (min-width: 900px) {
  .home:not(.fsComposeMode) .fsYoutube > header {
    display: block;
  }
  .home:not(.fsComposeMode) .fsYoutube .fsSocialVideoFrame {
    display: none;
  }
}

.map {
  width: 100vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  position: relative;
  position: relative;
  background-size: cover;
}
.map > .fsElementContent {
  position: relative;
  margin: 0 auto;
  max-width: 96.66667em;
  max-width: 108.75rem;
  padding-right: 1.11111em;
  padding-left: 1.11111em;
  padding-top: 40px;
  padding-bottom: 100px;
}
@media (min-width: 900px) {
  .map:after {
    content: '';
    background: #00A3E0;
    -webkit-transform: skew(0deg, 5deg);
    -ms-transform: skew(0deg, 5deg);
    transform: skew(0deg, 5deg);
    height: 50%;
    width: 100%;
    position: absolute;
    top: -39%;
  }
  .map > .fsElementContent {
    padding-top: 250px;
  }
}
.map .map-image {
  margin-bottom: 60px;
  text-align: right;
  position: relative;
}
.map .map-image > .fsElementContent img {
  max-width: 100%;
}
@media (min-width: 1000px) {
  .map .map-image > .fsElementContent img {
    max-width: 950px;
  }
}
.map .map-image header {
  position: absolute;
  z-index: 1;
  right: 47%;
  top: 10%;
  background: #00A3E0;
  padding: 10px;
  border-radius: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: .3s;
}
@media (min-width: 600px) {
  .map .map-image header {
    right: 50%;
    top: 12%;
  }
}
@media (min-width: 800px) {
  .map .map-image header {
    right: 52%;
    top: 15%;
  }
}
@media (min-width: 1000px) {
  .map .map-image header {
    right: 520px;
    top: 80px;
  }
}
.map .map-image header:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  cursor: pointer;
}
.map .map-image header img {
  display: block;
}
.map .map-image header .fsElementHeaderContent {
  margin-bottom: 0;
}
.map .map-image footer {
  position: absolute;
  top: 12%;
  right: 55%;
  z-index: 1;
  background: #fff;
  padding: 10px 20px 0;
  text-align: left;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: .3s;
}
@media (min-width: 800px) {
  .map .map-image footer {
    top: 15%;
    right: 58%;
  }
}
@media (min-width: 1000px) {
  .map .map-image footer {
    top: 80px;
    right: 620px;
  }
}
.map .map-image footer a {
  display: block;
  background: #00A3E0;
  margin: 10px -20px 0;
  padding: 5px 20px;
  color: #fff;
  text-transform: uppercase;
}
.map .map-image footer a:before {
  content: "";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  font-size: 50%;
  font-size: 0;
  vertical-align: middle;
  transition: .3s;
  color: #fff;
}
.map .map-image footer a:hover:before {
  font-size: 50%;
  margin-right: 10px;
}
.map .map-image footer .fsElementFooterContent {
  margin-top: 0;
}
.map .map-image footer:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 14px;
  right: -5px;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.map .map-image.modal-open footer {
  -webkit-animation: .3s fadeInUp forwards;
  animation: .3s fadeInUp forwards;
}
.map .map-image.modal-closed footer {
  -webkit-animation: .3s fadeOutDown forwards;
  animation: .3s fadeOutDown forwards;
}
.map > footer {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: #fff;
}

.testimonials {
  width: 100vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  position: relative;
  padding-right: 1.11111em;
  padding-left: 1.11111em;
  padding-top: 1.11111em;
  padding-bottom: 1.11111em;
  position: relative;
}
.testimonials:before {
  position: absolute;
  top: 47%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: '';
  width: 100vw;
  height: 150px;
  background: #fff;
}
@media (min-width: 800px) {
  .testimonials {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.testimonials.fsElement {
  margin-bottom: 0;
}
.testimonials > .fsElementContent {
  position: relative;
  margin: 0 auto;
  max-width: 85.55556em;
  max-width: 96.25rem;
}
@media (min-width: 800px) {
  .testimonials > .fsElementContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .testimonials > .fsElementContent > .button-list {
    width: 40%;
  }
}

.testimonial-slides {
  background: #00A3E0;
  padding: 5px 15px 5px;
  position: relative;
}
@media (min-width: 800px) {
  .testimonial-slides {
    padding: 5px 50px 5px;
    width: 60%;
  }
  .testimonial-slides:before, .testimonial-slides:after {
    content: '';
    background: #00A3E0;
    width: 100%;
    height: 30px;
    position: absolute;
    left: 0;
  }
  .testimonial-slides:before {
    top: -30px;
  }
  .testimonial-slides:after {
    bottom: -30px;
  }
}
.testimonial-slides > header .fsElementTitle {
  font-size: 20px;
  line-height: 23px;
  color: #fff;
  position: relative;
}
.testimonial-slides > header .fsElementTitle:before {
  content: '';
  background: #FF6900;
  width: 5px;
  height: 100px;
  position: absolute;
  left: -20px;
}
.testimonial-slides .slick-slider {
  margin-bottom: 0;
}
.testimonial-slides blockquote,
.testimonial-slides .blockquote {
  margin: 0;
  padding: 0;
  text-align: left;
  text-indent: 0;
  font-size: 22px;
}
.testimonial-slides blockquote header,
.testimonial-slides .blockquote header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.testimonial-slides blockquote .fsElementTitle,
.testimonial-slides .blockquote .fsElementTitle {
  margin-bottom: 23px;
}
.testimonial-slides blockquote .fsElementHeaderContent img,
.testimonial-slides .blockquote .fsElementHeaderContent img {
  position: relative;
  top: auto;
  left: auto;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  margin-right: 20px;
  width: 170px;
  max-width: 170px;
}
@media (max-width: 499px) {
  .testimonial-slides blockquote > header,
  .testimonial-slides blockquote .fsElementHeaderContent,
  .testimonial-slides .blockquote > header,
  .testimonial-slides .blockquote .fsElementHeaderContent {
    display: block;
    float: none;
  }
  .testimonial-slides blockquote .fsElementHeaderContent img,
  .testimonial-slides .blockquote .fsElementHeaderContent img {
    max-width: none;
    margin: 0 auto;
  }
}
.testimonial-slides blockquote {
  font-style: italic;
}
.testimonial-slides .fsElementFooterContent {
  margin-top: 0;
}
.testimonial-slides .fsElementFooterContent img {
  position: absolute;
  right: 20px;
  bottom: -5px;
  z-index: 1;
  -webkit-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  transform-origin: bottom right;
}
.testimonial-slides .fsElementFooterContent .fsPager {
  z-index: 2;
}

@media (min-width: 800px) {
  .newsletter-page .fsTwoColumnLayout .fsDiv {
    width: 75%;
  }
  .newsletter-page .fsTwoColumnLayout .fsDiv:first-child {
    width: 25%;
  }
}
.newsletter-page .fsElement:not(.nav-sub) .fsElementTitle {
  font-size: 34px;
  line-height: 42px;
}
.newsletter-page .fsPageTitle {
  margin-bottom: 40px;
}
.newsletter-page .fsNews.fsList article {
  border-bottom: none !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.newsletter-page .fsNews.fsList article .fsThumbnail,
.newsletter-page .fsNews.fsList article .fsDateTime,
.newsletter-page .fsNews.fsList article .fsTitle {
  margin-bottom: 20px;
}
.newsletter-page .fsNews.fsList article .fsThumbnail {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.newsletter-page .fsNews.fsList article .fsDateTime {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  color: #3F3F3F;
}
.newsletter-page .fsNews.fsList article .fsTitle {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}
.newsletter-page .fsNews.fsList article .fsSummary {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}
.newsletter-page .fsNews.fsList article .fsReadMoreLink {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
  color: #00A3E0;
  text-transform: uppercase;
}
.newsletter-page .fsNews.fsList article .fsCroppedImage {
  padding-bottom: 300px;
}
.newsletter-page .fsNews.fsList article:first-child .fsTitle a {
  color: #FF6900;
}
.newsletter-page .fsNews.fsList article:first-child .fsThumbnail {
  max-width: none;
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}
.newsletter-page .fsNews.fsList article:nth-child(2) .fsTitle a {
  color: #D539B5;
}
.newsletter-page .fsNews.fsList article:nth-child(3) .fsTitle a {
  color: #97D700;
}
.newsletter-page .fsNews.fsList article:nth-child(4) .fsTitle a {
  color: #FF0054;
}
.newsletter-page .fsNews.fsList article:nth-child(5) .fsTitle a {
  color: #00A3E0;
}
.newsletter-page .fsNews.fsList .article-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 600px) {
  .newsletter-page .fsNews.fsList .fsListItems {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .newsletter-page .fsNews.fsList .fsListItems article {
    width: calc(50% - 10px);
  }
  .newsletter-page .fsNews.fsList .fsListItems article:first-child {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .newsletter-page .fsNews.fsList .fsListItems article {
    width: calc(33.33% - 20px);
  }
  .newsletter-page .fsNews.fsList .fsListItems article:last-child {
    display: none;
  }
  .newsletter-page .fsNews.fsList .fsListItems article:first-child {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .newsletter-page .fsNews.fsList .fsListItems article:first-child > * {
    width: calc(50% - 50px);
  }
}

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

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

.colors ol {
  zoom: 1;
  margin-bottom: 2.22222em;
  padding: 0;
  list-style: none;
}
.colors ol:after {
  display: table;
  clear: both;
  content: '';
}
.colors ol li {
  position: relative;
  float: left;
  margin-bottom: 2em;
  height: 4em;
  width: 28.57143%;
}
@media (min-width: 600px) {
  .colors ol li {
    width: 14.28571%;
  }
}
.colors ol li:after {
  position: absolute;
  top: 100%;
  left: 0;
}
.colors ol li:nth-of-type(1) {
  background: #4a4a4a;
  color: #4a4a4a;
}
.colors ol li:nth-of-type(1):after {
  content: "#4a4a4a";
}
.colors ol li:nth-of-type(2) {
  background: #00A3E0;
  color: #00A3E0;
}
.colors ol li:nth-of-type(2):after {
  content: "#00A3E0";
}
.colors ol li:nth-of-type(3) {
  background: #041E42;
  color: #041E42;
}
.colors ol li:nth-of-type(3):after {
  content: "#041E42";
}
.colors ol li:nth-of-type(4) {
  background: #888B8D;
  color: #888B8D;
}
.colors ol li:nth-of-type(4):after {
  content: "#888B8D";
}
.colors ol li:nth-of-type(5) {
  background: #EEDC00;
  color: #EEDC00;
}
.colors ol li:nth-of-type(5):after {
  content: "#EEDC00";
}
.colors ol li:nth-of-type(6) {
  background: #71DBD4;
  color: #71DBD4;
}
.colors ol li:nth-of-type(6):after {
  content: "#71DBD4";
}
.colors ol li:nth-of-type(7) {
  background: #FEDB00;
  color: #FEDB00;
}
.colors ol li:nth-of-type(7):after {
  content: "#FEDB00";
}
.colors ol li:nth-of-type(8) {
  background: #FF6900;
  color: #FF6900;
}
.colors ol li:nth-of-type(8):after {
  content: "#FF6900";
}
.colors ol li:nth-of-type(9) {
  background: #DA1884;
  color: #DA1884;
}
.colors ol li:nth-of-type(9):after {
  content: "#DA1884";
}
.colors ol li:nth-of-type(10) {
  background: #ECB3CB;
  color: #ECB3CB;
}
.colors ol li:nth-of-type(10):after {
  content: "#ECB3CB";
}
.colors ol li:nth-of-type(11) {
  background: #D539B5;
  color: #D539B5;
}
.colors ol li:nth-of-type(11):after {
  content: "#D539B5";
}
.colors ol li:nth-of-type(12) {
  background: #97D700;
  color: #97D700;
}
.colors ol li:nth-of-type(12):after {
  content: "#97D700";
}
.colors ol li:nth-of-type(13) {
  background: #8BB8E8;
  color: #8BB8E8;
}
.colors ol li:nth-of-type(13):after {
  content: "#8BB8E8";
}
.colors ol li:nth-of-type(14) {
  background: #F3EA5D;
  color: #F3EA5D;
}
.colors ol li:nth-of-type(14):after {
  content: "#F3EA5D";
}

.fonts ol {
  zoom: 1;
  margin-bottom: 2.22222em;
  padding: 0;
  list-style: none;
}
.fonts ol:after {
  display: table;
  clear: both;
  content: '';
}
.fonts ol li {
  margin-bottom: 0.27778em;
  padding: 0.27778em;
}
.fonts ol li:nth-of-type(1) {
  font-family: "CaflischScriptW01-Regul", cursive, serif;
}
.fonts ol li:nth-of-type(1):after {
  content: "CaflischScriptW01-Regul, cursive, serif";
}
.fonts ol li:nth-of-type(2) {
  font-family: "Genius W00 Regular", sans-serif;
}
.fonts ol li:nth-of-type(2):after {
  content: "Genius W00 Regular, sans-serif";
}
.fonts ol li:nth-of-type(3) {
  font-family: "Genius W00 Regular Italic", sans-serif;
}
.fonts ol li:nth-of-type(3):after {
  content: "Genius W00 Regular Italic, sans-serif";
}
.fonts ol li:nth-of-type(4) {
  font-family: "Genius W00 SemiBold", sans-serif;
}
.fonts ol li:nth-of-type(4):after {
  content: "Genius W00 SemiBold, sans-serif";
}
.fonts ol li:nth-of-type(5) {
  font-family: "Genius W00 Bold", sans-serif;
}
.fonts ol li:nth-of-type(5):after {
  content: "Genius W00 Bold, sans-serif";
}
.fonts ol li:nth-of-type(6) {
  font-family: "IcoMoon";
}
.fonts ol li:nth-of-type(6):after {
  content: "IcoMoon";
}
.fonts ol li:nth-of-type(7) {
  font-family: "FontAwesome";
}
.fonts ol li:nth-of-type(7):after {
  content: "FontAwesome";
}
.fonts ol li:nth-of-type(8) {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
.fonts ol li:nth-of-type(8):after {
  content: "Menlo, Monaco, Consolas, Courier New, monospace";
}

.headers h1:after {
  content: " size: 40px / line: 44px";
}
.headers h2:after {
  content: " size: 40px / line: 44px";
}
.headers h3:after {
  content: " size: 27px / line: 30px";
}
.headers h4:after {
  content: " size: 25px / line: 27px";
}
.headers h5:after {
  content: " size: 20px / line: 22px";
}
.headers h6:after {
  content: " size: 18px / line: 20px";
}

@media (min-width: 800px) {
  .why-gems:not(.fsComposeMode) .fsTwoColumnLayout .fsDiv {
    width: 75%;
  }
  .why-gems:not(.fsComposeMode) .fsTwoColumnLayout .fsDiv:first-child {
    width: 25%;
  }
}
.why-gems:not(.fsComposeMode) .fsElement:not(.nav-sub) .fsElementTitle {
  font-size: 34px;
  line-height: 42px;
}

.why-staff {
  padding-bottom: 120px;
}
.why-staff .fsElementTitle {
  color: #D539B5;
}
@media (min-width: 1000px) {
  .why-staff > .fsElementContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .why-staff > .fsElementContent > * {
    width: calc(50% - 40px);
  }
}

.why-slides article {
  height: 450px;
}

.why-slides > .fsElementContent,
.campus-slides > .fsElementContent {
  position: relative;
}
.why-slides .slick-next,
.why-slides .slick-prev,
.campus-slides .slick-next,
.campus-slides .slick-prev {
  border: 0;
  background: none;
  outline: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #00A3E0;
  color: transparent;
  width: 30px;
  height: 30px;
  z-index: 1;
  transition: .3s;
}
.why-slides .slick-next:hover,
.why-slides .slick-prev:hover,
.campus-slides .slick-next:hover,
.campus-slides .slick-prev:hover {
  background: #FF6900;
}
.why-slides .slick-next:before,
.why-slides .slick-prev:before,
.campus-slides .slick-next:before,
.campus-slides .slick-prev:before {
  font-size: 32px;
  line-height: 30px;
  color: #fff;
  width: 100%;
  height: 100%;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.why-slides .slick-next,
.campus-slides .slick-next {
  right: -15px;
}
.why-slides .slick-next:before,
.campus-slides .slick-next:before {
  content: "";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
}
.why-slides .slick-prev,
.campus-slides .slick-prev {
  left: -15px;
}
.why-slides .slick-prev:before,
.campus-slides .slick-prev:before {
  content: "";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
}

.why-family {
  width: 100vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  position: relative;
  padding-bottom: 100px;
  background: #00A3E0;
  position: relative;
}
.why-family:before {
  content: '';
  background: #00A3E0;
  -webkit-transform: skew(0deg, 5deg);
  -ms-transform: skew(0deg, 5deg);
  transform: skew(0deg, 5deg);
  height: 50%;
  width: 100%;
  position: absolute;
  top: -100px;
}
.why-family:after {
  content: '';
  background: url(../images/g.svg) bottom left no-repeat;
  background-size: 35%;
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.8;
}
.why-family .fs_style_23 {
  font-size: 14px;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 20px;
  text-transform: uppercase;
}
.why-family .fs_style_23:hover {
  background: #00A3E0;
}
.why-family > header,
.why-family .fsElementTitle {
  color: #fff;
}
.why-family > header > .fsElementHeaderContent {
  margin-bottom: 36px;
}
.why-family > header .fsElementTitle {
  max-width: 380px;
  font-size: 34px;
  line-height: 42px;
}
.why-family > .fsElementContent,
.why-family > header {
  position: relative;
  margin: 0 auto;
  max-width: 85.55556em;
  max-width: 96.25rem;
  padding-right: 1.11111em;
  padding-left: 1.11111em;
}
.why-family .fsElementHeaderContent img {
  visibility: hidden;
}
.why-family .fsElementHeaderContent {
  margin-bottom: 0;
}
.why-family > .fsElementContent {
  z-index: 2;
}
.why-family > .fsElementContent > .fsElement {
  background: #fff;
}
.why-family > .fsElementContent > .fsElement header {
  background-size: cover;
}
.why-family > .fsElementContent > .fsElement .fsElementContent {
  padding: 20px;
}
@media (min-width: 800px) {
  .why-family > .fsElementContent > .fsElement {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media (min-width: 900px) {
  .why-family > .fsElementContent .fsElement:first-child {
    margin-right: 200px;
  }
  .why-family > .fsElementContent .fsElement:nth-child(2) > header {
    padding-right: 75px;
  }
}
@media (min-width: 1000px) {
  .why-family > .fsElementContent,
  .why-family > header {
    padding-left: 20%;
  }
}

.why-campus {
  width: 100vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  position: relative;
}
.why-campus > .fsElementContent {
  position: relative;
  margin: 0 auto;
  max-width: 85.55556em;
  max-width: 96.25rem;
  padding-right: 1.11111em;
  padding-left: 1.11111em;
}
.why-campus .fsElementTitle {
  color: #FF6900;
}
@media (min-width: 900px) {
  .why-campus {
    padding-top: 60px;
  }
  .why-campus > .fsElementContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .why-campus > .fsElementContent > * {
    width: calc(50% - 40px);
  }
}
@media (min-width: 1000px) {
  .why-campus > .fsElementContent {
    padding-left: 20%;
  }
}

.campus-slides article {
  margin: 5px;
}

.why-curriculum {
  width: 100vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  position: relative;
  background: url(../images/girl-bg.svg) top left no-repeat;
  background-size: contain;
}
.why-curriculum > .fsElementContent {
  position: relative;
  margin: 0 auto;
  max-width: 85.55556em;
  max-width: 96.25rem;
}
.why-curriculum-lead {
  background: #FF6900;
  padding: 50px 60px;
  color: #fff;
}
.why-curriculum-lead .fsElementTitle {
  color: #fff;
}
.why-curriculum .button-list {
  font-size: 27px;
  line-height: 32px;
  padding: 20px;
  margin-top: -80px;
}
.why-curriculum .button-list ul {
  max-width: none;
}
.why-curriculum .button-list header {
  height: 300px;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  -webkit-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  transform-origin: bottom right;
}
.why-curriculum .button-list .fsElementHeaderContent {
  margin-bottom: 0;
}
.why-curriculum .button-list img {
  display: none;
}
@media (min-width: 900px) {
  .why-curriculum > .fsElementContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .why-curriculum-lead {
    width: 60%;
  }
  .why-curriculum .button-list {
    width: 40%;
    padding: 0;
    margin-top: 0;
  }
  .why-curriculum .button-list header {
    -webkit-transform: scaleX(1.05);
    -ms-transform: scaleX(1.05);
    transform: scaleX(1.05);
  }
}
@media (min-width: 1000px) {
  .why-curriculum > .fsElementContent {
    padding-left: 20%;
  }
}

.why-environment {
  width: 100vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  position: relative;
  z-index: 1;
}
.why-environment > .fsElementContent,
.why-environment > header {
  position: relative;
  margin: 0 auto;
  max-width: 85.55556em;
  max-width: 96.25rem;
  padding-right: 1.11111em;
  padding-left: 1.11111em;
  z-index: 2;
}
.why-environment > .fsElementContent > .fsElement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.why-environment > .fsElementContent > .fsElement > .fsElementContent {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.why-environment > .fsElementContent .fsElementContent {
  background: #fff;
  padding: 20px;
}
.why-environment footer img {
  width: auto;
}
.why-environment ul, .why-environment ul ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.why-environment ul li {
  margin: 0;
  padding: 0;
}
.why-environment ul li {
  vertical-align: middle;
  -webkit-filter: drop-shadow(0 0 5px rgba(168, 168, 168, 0.5));
  filter: drop-shadow(0 0 5px rgba(168, 168, 168, 0.5));
  padding: 16px 20px;
  text-align: center;
  text-transform: uppercase;
  color: #00A3E0;
  position: relative;
  width: 90%;
}
.why-environment ul li:after {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 0 50px 50px;
  border-color: transparent transparent transparent #F4F4F4;
}
.why-environment ul li:first-child {
  background-color: #F4F4F4;
  z-index: 3;
}
.why-environment ul li:nth-child(2) {
  background-color: #F8F8F8;
  padding: 28px;
  font-size: 24px;
  line-height: 29px;
  z-index: 2;
  width: 80%;
}
.why-environment ul li:nth-child(2):after {
  border-width: 42.5px 0 42.5px 50px;
  border-color: transparent transparent transparent #F8F8F8;
}
.why-environment ul li:nth-child(3) {
  background-color: #fff;
  padding: 22px;
  font-size: 22px;
  line-height: 28px;
  z-index: 1;
  width: 70%;
}
.why-environment ul li:nth-child(3):after {
  border-width: 36px 0 36px 50px;
  border-color: transparent transparent transparent #fff;
}
.why-environment ul strong {
  display: block;
  font-size: 34px;
  line-height: 42px;
}
@media (min-width: 600px) {
  .why-environment ul li {
    display: inline-block;
    width: auto;
  }
  .why-environment ul li:nth-child(2), .why-environment ul li:nth-child(3) {
    width: auto;
    padding-left: 70px;
  }
}
@media (min-width: 1000px) {
  .why-environment > .fsElementContent .fsElementContent {
    position: absolute;
    top: 0;
    right: 20px;
    width: 40%;
    padding: 0 0 55px 60px;
  }
  .why-environment footer img {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .why-environment > .fsElementContent,
  .why-environment > header {
    padding-left: 20%;
  }
  .why-environment > .fsElementContent .fsElementContent {
    width: 30%;
  }
}

.why-heritage {
  width: 100vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  position: relative;
  background: #97D700;
  padding-top: 200px;
  padding-bottom: 270px;
  margin-top: -150px;
}
.why-heritage:before {
  content: '';
  background: url(../images/g.svg) bottom left no-repeat;
  background-size: 35%;
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.8;
}
.why-heritage:after {
  content: '';
  background: #fff;
  -webkit-transform: skew(0deg, 5deg);
  -ms-transform: skew(0deg, 5deg);
  transform: skew(0deg, 5deg);
  height: 50%;
  width: 100%;
  position: absolute;
  bottom: -40%;
}
.why-heritage .fsElementTitle {
  color: #97D700;
}
.why-heritage > .fsElementContent,
.why-heritage > header {
  position: relative;
  margin: 0 auto;
  max-width: 85.55556em;
  max-width: 96.25rem;
  position: static;
}
.why-heritage > header {
  position: relative;
  z-index: 1;
}
.why-heritage > header .fsElementHeaderContent {
  margin-bottom: 0;
}
.why-heritage > header img {
  display: block;
}
.why-heritage > .fsElementContent {
  margin: 0 20px;
}
.why-heritage > .fsElementContent .fsElement {
  background: #fff;
  padding: 20px;
  margin-top: -40px;
  margin-right: 40px;
  position: relative;
  z-index: 1;
}
.why-heritage .fs_style_23 {
  position: absolute;
  right: -50px;
  margin-bottom: 0;
  background: #fff;
  border-radius: 0;
  padding: 8px 60px;
  text-transform: uppercase;
}
@media (min-width: 400px) {
  .why-heritage .fs_style_23 {
    bottom: -20px;
  }
}
.why-heritage .fs_style_23:before {
  content: "";
  font-family: "IcoMoon";
  font-smoothing: antialiased;
  font-weight: normal;
  speak: none;
  display: inline-block;
  -webkit-transform: translateY(1px);
  -ms-transform: translateY(1px);
  transform: translateY(1px);
  margin-right: 10px;
}
.why-heritage .fs_style_23:hover {
  background: #00A3E0;
}
@media (min-width: 1000px) {
  .why-heritage {
    padding-top: 270px;
  }
  .why-heritage > .fsElementContent .fsElement {
    width: 380px;
    position: absolute;
    top: 300px;
    left: 60%;
    padding: 50px 60px 70px;
  }
}
@media (min-width: 1400px) {
  .why-heritage > .fsElementContent,
  .why-heritage > header {
    padding-left: 20%;
  }
}

.why-quality {
  width: 100vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  position: relative;
  background: url(../images/kid.svg) top left no-repeat;
  background-size: contain;
  margin-top: -60px;
}
.why-quality > .fsElementContent,
.why-quality > header {
  position: relative;
  margin: 0 auto;
  max-width: 85.55556em;
  max-width: 96.25rem;
  padding-right: 1.11111em;
  padding-left: 1.11111em;
}
.why-quality .fsElementTitle {
  color: #D539B5;
}
@media (min-width: 1000px) {
  .why-quality {
    padding-bottom: 100px;
    margin-top: 0;
  }
  .why-quality > .fsElementContent,
  .why-quality > header {
    padding-left: 20%;
  }
  .why-quality > .fsElementContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .why-quality > .fsElementContent > * {
    width: calc(50% - 50px);
  }
}

.grid-layout-page #fsPageBodyWrapper {
  padding-top: 100px;
  padding-bottom: 0;
}
.grid-layout-page #fsPageBodyWrapper #fsPageBody {
  max-width: none;
}
@media (min-width: 800px) {
  .grid-layout-page #fsPageBodyWrapper #fsPageBody .fsDiv {
    padding: 0;
    margin-bottom: 0;
  }
}

.grid-layout-page .grid-layout .image-hover {
  height: calc(50vh - 50px);
  background-size: cover !important;
  background-position: center !important;
}

.grid-layout-page .grid-layout .photo-slider__slide {
  height: calc(50vh - 50px);
}

body:not(.fsComposeMode) .grid-layout > .fsElementContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
}
body:not(.fsComposeMode) .grid-layout > .fsElementContent > .fsElement {
  background: #f2f2f2;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}
@media (min-width: 800px) {
  body:not(.fsComposeMode) .grid-layout > .fsElementContent > .fsElement {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25%;
    flex: 1 1 25%;
  }
}
body:not(.fsComposeMode) .grid-layout > .fsElementContent > .fsElement > .fsElementContent {
  font-size: 24px;
}
body:not(.fsComposeMode) .grid-layout > .fsElementContent > .fsElement > .fsElementContent h3 {
  font-size: 120px;
  font-weight: 300;
}
body:not(.fsComposeMode) .grid-layout > .fsElementContent > .fsElement > .fsElementContent h4 {
  font-size: 80px;
  font-weight: 300;
}
body:not(.fsComposeMode) .grid-layout > .fsElementContent > .fsElement > .fsElementContent h5 {
  font-size: 60px;
  font-weight: 300;
}
body:not(.fsComposeMode) .grid-layout > .fsElementContent > .image-hover {
  display: block;
}

body.fsDraftMode .grid-layout > .fsElementContent .fsContent {
  display: block;
}

body:not(.fsComposeMode) .grid-layout .fsElement.fifth {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 20%;
  flex: 1 1 20%;
  max-width: 100%;
}
@media (min-width: 800px) {
  body:not(.fsComposeMode) .grid-layout .fsElement.fifth {
    max-width: 20%;
  }
}
body:not(.fsComposeMode) .grid-layout .fsElement.quarter {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 25%;
  flex: 1 1 25%;
  max-width: 100%;
}
@media (min-width: 800px) {
  body:not(.fsComposeMode) .grid-layout .fsElement.quarter {
    max-width: 25%;
  }
}
body:not(.fsComposeMode) .grid-layout .fsElement.third {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 33%;
  flex: 1 1 33%;
  max-width: 100%;
}
@media (min-width: 800px) {
  body:not(.fsComposeMode) .grid-layout .fsElement.third {
    max-width: 33%;
  }
}
body:not(.fsComposeMode) .grid-layout .fsElement.half {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  max-width: 100%;
}
@media (min-width: 800px) {
  body:not(.fsComposeMode) .grid-layout .fsElement.half {
    max-width: 50%;
  }
}
body:not(.fsComposeMode) .grid-layout .fsElement.twoThirds {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 66%;
  flex: 1 1 66%;
  max-width: 100%;
}
@media (min-width: 800px) {
  body:not(.fsComposeMode) .grid-layout .fsElement.twoThirds {
    max-width: 66%;
  }
}

.photo-slider {
  opacity: 1;
}
.photo-slider .slick-dots {
  position: absolute;
  bottom: 0;
}
.photo-slider .slick-dots li {
  display: inline-block;
}
.photo-slider .slick-dots li button {
  cursor: pointer;
  width: 12px;
  height: 12px;
  font-size: 0;
  margin: 5px;
  background: white;
  border-radius: 50%;
  color: transparent;
  outline: 0;
  padding: 0;
  border: 1px solid white;
}
.photo-slider .slick-dots li.slick-active button {
  background: transparent;
  border: 1px solid white;
}

.photo-slider__container {
  width: 100%;
}

.photo-slider__slide {
  height: 250px;
  background-size: cover;
  background-position: center;
}
.photo-slider__slide img {
  visibility: hidden;
}

.news-events-container .fsCalendar > .fsElementContent {
  padding: 0px;
}

.news-events-container .fsCalendar .slick-slider .slick-list {
  display: block;
  height: 100% !important;
}

.news-events-container .fsCalendar > .fsElementContent article.slick-slide {
  padding: 0px;
}

.news-events-container .fsCalendar > .fsElementContent .slick-slide > div,
.news-events-container .fsCalendar > .fsElementContent .slick-slide > time {
  padding: 0 20px;
}

.news-events-container .fsCalendar .fsPager {
  padding: 0 20px 20px;
  text-align: center;
}

.news-events-container .fsCalendar article {
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.news-events-container .fsCalendar article img {
  width: 100%;
}

.news-events-container .fsCalendar .fsTitle {
  margin-top: 10px;
  font-size: 1.2em;
}

.news-events-container .fsCalendar .fsEventDetails {
  color: #fff;
  margin-top: 10px;
  font-size: 0.9em;
}

.news-events-container .fsCalendar .fsEventDetails .fsTimeRange:before {
  content: url("/uploaded/themes/default_16/images/Clock_Icon.svg?1512062989722");
  margin-right: 2.5%;
  vertical-align: middle;
}

.news-events-container .fsCalendar .fsEventDetails .fsAllDay {
  text-transform: capitalize;
}

.news-events-container .fsCalendar .fsEventDetails .fsNotes p {
  display: none;
}

@media print {
  /*!
   * Gutenberg
   *
   * MIT Fabien Sa
   * https://github.com/BafS/Gutenberg
   */
  /*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
  /* Document
         ========================================================================== */
  /**
       * 1. Change the default font family in all browsers (opinionated).
       * 2. Correct the line height in all browsers.
       * 3. Prevent adjustments of font size after orientation changes in
       *    IE on Windows Phone and in iOS.
       */
  html {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    /* 1 */
    line-height: 1.15;
    /* 2 */
    -ms-text-size-adjust: 100%;
    /* 3 */
    -webkit-text-size-adjust: 100%;
    /* 3 */
  }

  /* Sections
         ========================================================================== */
  /**
       * Remove the margin in all browsers (opinionated).
       */
  body {
    margin: 0;
  }

  /**
       * Add the correct display in IE 9-.
       */
  article,
  aside,
  footer,
  header,
  nav,
  section {
    display: block;
  }

  /**
       * Correct the font size and margin on `h1` elements within `section` and
       * `article` contexts in Chrome, Firefox, and Safari.
       */
  h1 {
    font-size: 2em;
    margin: 0.67em 0;
  }

  /* Grouping content
         ========================================================================== */
  /**
       * Add the correct display in IE 9-.
       */
  figcaption,
  figure {
    display: block;
  }

  /**
       * Add the correct margin in IE 8.
       */
  figure {
    margin: 1em 40px;
  }

  /**
       * 1. Add the correct box sizing in Firefox.
       * 2. Show the overflow in Edge and IE.
       */
  hr {
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
  }

  /**
       * Add the correct display in IE.
       */
  main {
    display: block;
  }

  /**
       * 1. Correct the inheritance and scaling of font size in all browsers.
       * 2. Correct the odd `em` font sizing in all browsers.
       */
  pre {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
  }

  /* Links
         ========================================================================== */
  /**
       * 1. Remove the gray background on active links in IE 10.
       * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
       */
  a {
    background-color: transparent;
    /* 1 */
    -webkit-text-decoration-skip: objects;
    /* 2 */
  }

  /**
       * Remove the outline on focused links when they are also active or hovered
       * in all browsers (opinionated).
       */
  a:active,
  a:hover {
    outline-width: 0;
  }

  /* Text-level semantics
         ========================================================================== */
  /**
       * 1. Remove the bottom border in Firefox 39-.
       * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
       */
  abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    text-decoration: underline dotted;
    /* 2 */
  }

  /**
       * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
       */
  b,
  strong {
    font-weight: inherit;
  }

  /**
       * Add the correct font weight in Chrome, Edge, and Safari.
       */
  b,
  strong {
    font-weight: bolder;
  }

  /**
       * 1. Correct the inheritance and scaling of font size in all browsers.
       * 2. Correct the odd `em` font sizing in all browsers.
       */
  code,
  kbd,
  samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
  }

  /**
       * Add the correct font style in Android 4.3-.
       */
  dfn {
    font-style: italic;
  }

  /**
       * Add the correct background and color in IE 9-.
       */
  mark {
    background-color: #ff0;
    color: #000;
  }

  /**
       * Add the correct font size in all browsers.
       */
  small {
    font-size: 80%;
  }

  /**
       * Prevent `sub` and `sup` elements from affecting the line height in
       * all browsers.
       */
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }

  sub {
    bottom: -0.25em;
  }

  sup {
    top: -0.5em;
  }

  /* Embedded content
         ========================================================================== */
  /**
       * Add the correct display in IE 9-.
       */
  audio,
  video {
    display: inline-block;
  }

  /**
       * Add the correct display in iOS 4-7.
       */
  audio:not([controls]) {
    display: none;
    height: 0;
  }

  /**
       * Remove the border on images inside links in IE 10-.
       */
  img {
    border-style: none;
  }

  /**
       * Hide the overflow in IE.
       */
  svg:not(:root) {
    overflow: hidden;
  }

  /* Forms
         ========================================================================== */
  /**
       * 1. Change the font styles in all browsers (opinionated).
       * 2. Remove the margin in Firefox and Safari.
       */
  button,
  input,
  optgroup,
  select,
  textarea {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    /* 1 */
    font-size: 100%;
    /* 1 */
    line-height: 1.15;
    /* 1 */
    margin: 0;
    /* 2 */
  }

  /**
       * Show the overflow in IE.
       */
  button {
    overflow: visible;
  }

  /**
       * Remove the inheritance of text transform in Edge, Firefox, and IE.
       * 1. Remove the inheritance of text transform in Firefox.
       */
  button,
  select {
    /* 1 */
    text-transform: none;
  }

  /**
       * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
       *    controls in Android 4.
       * 2. Correct the inability to style clickable types in iOS and Safari.
       */
  button,
  html [type="button"],
  [type="reset"],
  [type="submit"] {
    -webkit-appearance: button;
    /* 2 */
  }

  button,
  [type="button"],
  [type="reset"],
  [type="submit"] {
    /**
         * Remove the inner border and padding in Firefox.
         */
    /**
         * Restore the focus styles unset by the previous rule.
         */
  }

  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
  }

  button:-moz-focusring,
  [type="button"]:-moz-focusring,
  [type="reset"]:-moz-focusring,
  [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
  }

  /**
       * Show the overflow in Edge.
       */
  input {
    overflow: visible;
  }

  /**
       * 1. Add the correct box sizing in IE 10-.
       * 2. Remove the padding in IE 10-.
       */
  [type="checkbox"],
  [type="radio"] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
  }

  /**
       * Correct the cursor style of increment and decrement buttons in Chrome.
       */
  [type="number"]::-webkit-inner-spin-button,
  [type="number"]::-webkit-outer-spin-button {
    height: auto;
  }

  /**
       * 1. Correct the odd appearance in Chrome and Safari.
       * 2. Correct the outline style in Safari.
       */
  [type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    outline-offset: -2px;
    /* 2 */
    /**
         * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
         */
  }

  [type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  /**
       * 1. Correct the inability to style clickable types in iOS and Safari.
       * 2. Change font properties to `inherit` in Safari.
       */
  ::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
  }

  /**
       * Change the border, margin, and padding in all browsers (opinionated).
       */
  fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
  }

  /**
       * 1. Correct the text wrapping in Edge and IE.
       * 2. Correct the color inheritance from `fieldset` elements in IE.
       * 3. Remove the padding so developers are not caught out when they zero out
       *    `fieldset` elements in all browsers.
       */
  legend {
    box-sizing: border-box;
    /* 1 */
    display: table;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 3 */
    color: inherit;
    /* 2 */
    white-space: normal;
    /* 1 */
  }

  /**
       * 1. Add the correct display in IE 9-.
       * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
       */
  progress {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */
  }

  /**
       * Remove the default vertical scrollbar in IE.
       */
  textarea {
    overflow: auto;
  }

  /* Interactive
         ========================================================================== */
  /*
       * Add the correct display in Edge, IE, and Firefox.
       */
  details {
    display: block;
  }

  /*
       * Add the correct display in all browsers.
       */
  summary {
    display: list-item;
  }

  /*
       * Add the correct display in IE 9-.
       */
  menu {
    display: block;
  }

  /* Scripting
         ========================================================================== */
  /**
       * Add the correct display in IE 9-.
       */
  canvas {
    display: inline-block;
  }

  /**
       * Add the correct display in IE.
       */
  template {
    display: none;
  }

  /* Hidden
         ========================================================================== */
  /**
       * Add the correct display in IE 10-.
       */
  [hidden] {
    display: none;
  }

  * {
    box-sizing: border-box;
  }

  *,
  *:before,
  *:after,
  p:first-letter,
  div:first-letter,
  blockquote:first-letter,
  li:first-letter,
  p:first-line,
  div:first-line,
  blockquote:first-line,
  li:first-line {
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  html {
    font-size: 16px;
    margin: 0;
    padding: 0;
  }

  body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    background: #fff !important;
    color: #000 !important;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 auto;
    text-rendering: optimizeLegibility;
  }

  p,
  blockquote,
  table,
  ul,
  ol,
  dl {
    margin-bottom: 1.5rem;
    margin-top: 0;
  }

  p:last-child,
  ul:last-child,
  ol:last-child {
    margin-bottom: 0;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: #000;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    margin-top: 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5rem;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1rem;
  }

  a, a:visited {
    color: #000;
    text-decoration: underline;
    word-wrap: break-word;
  }

  table {
    border-collapse: collapse;
  }

  thead {
    display: table-header-group;
  }

  table,
  th,
  td {
    border-bottom: 1px solid #000;
  }

  td,
  th {
    padding: 8px 16px;
  }

  code,
  pre,
  kbd {
    border: 1px solid #bbb;
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
    font-size: 85%;
  }

  code,
  kbd {
    padding: 3px;
  }

  pre {
    margin-bottom: 1.5rem;
    padding: 10px 12px;
  }

  pre code,
  pre kbd {
    border: 0;
  }

  blockquote {
    border: 0;
    border-left: 5px solid #bbb;
    margin-left: 1px;
    padding: 12px 1.5rem;
  }

  blockquote:first-child {
    margin-top: 0;
  }

  blockquote p:last-child,
  blockquote ul:last-child,
  blockquote ol:last-child {
    margin-bottom: 0;
  }

  blockquote footer {
    display: block;
    font-size: 80%;
  }

  img {
    border: 0;
    display: block;
    max-width: 100% !important;
    vertical-align: middle;
  }

  hr {
    border: 0;
    border-bottom: 2px solid #bbb;
    height: 0;
    margin: 2.25rem 0;
    padding: 0;
  }

  dt {
    font-weight: bold;
  }

  dd {
    margin: 0;
    margin-bottom: 0.75rem;
  }

  abbr[title],
  acronym[title] {
    border: 0;
    text-decoration: none;
  }

  table,
  blockquote,
  pre,
  code,
  figure,
  li,
  hr,
  ul,
  ol,
  a,
  tr {
    page-break-inside: avoid;
  }

  h2,
  h3,
  h4,
  p,
  a {
    orphans: 3;
    widows: 3;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    page-break-after: avoid;
    page-break-inside: avoid;
  }

  h1 + p,
  h2 + p,
  h3 + p {
    page-break-before: avoid;
  }

  img {
    page-break-after: auto;
    page-break-before: auto;
    page-break-inside: avoid;
  }

  pre {
    white-space: pre-wrap !important;
    word-wrap: break-word;
  }

  body {
    padding-bottom: 2.54cm;
    padding-left: 1.8cm;
    padding-right: 1.8cm;
    padding-top: 2.54cm;
  }

  a[href^='http://']:after, a[href^='https://']:after, a[href^='ftp://']:after {
    content: " (" attr(href) ")";
    font-size: 80%;
  }

  abbr[title]:after,
  acronym[title]:after {
    content: " (" attr(title) ")";
  }

  .page-break,
  .page-break-before {
    page-break-before: always;
  }

  .page-break-after {
    page-break-after: always;
  }

  .no-print {
    display: none;
  }

  a.no-reformat:after {
    content: '';
  }

  abbr[title].no-reformat:after,
  acronym[title].no-reformat:after {
    content: '';
  }

  #fsMenu,
  #fsHeader,
  #fsFooter,
  .fsThumbnail,
  #fsBannerLeft,
  #fsBannerRight {
    display: none !important;
  }

  #fsPageContent,
  #fsBannerLeft,
  #fsBannerRight {
    width: 100%;
  }
}
