@-webkit-keyframes loader-figure {
  0% {
    height: 0;
    width: 0;
  }
  30% {
    height: 2em;
    width: 2em;
    border-width: 1em;
    opacity: 1;
  }
  100% {
    height: 2em;
    width: 2em;
    border-width: 0;
    opacity: 0;
  }
}
@keyframes loader-figure {
  0% {
    height: 0;
    width: 0;
  }
  30% {
    height: 2em;
    width: 2em;
    border-width: 1em;
    opacity: 1;
  }
  100% {
    height: 2em;
    width: 2em;
    border-width: 0;
    opacity: 0;
  }
}
@-webkit-keyframes loader-label {
  0% {
    opacity: 0.35;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0.35;
  }
}
@keyframes loader-label {
  0% {
    opacity: 0.35;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0.35;
  }
}


.loader {
    min-height: 200px;
    position: relative;
}

.loader .loader--instance {
    overflow: visible;
    padding-top: 2em;
    height: 0;
    width: 2em;
}

.loader .loader--instance,
.loader .loader--figure {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader .loader--figure {
    height: 0;
    width: 0;
    box-sizing: border-box;
    border: 0 solid #1470E1;
    border-radius: 50%;
    -webkit-animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
            animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.loader .loader--label {
    float: left;
    margin-left: 50%;
    transform: translateX(-50%);
    margin: 0.5em 0 0 50%;
    font-size: 0.875em;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.5em;
    color: #222;
    white-space: nowrap;
}

@charset "UTF-8";
/* moe specific */
/* design system */
/* 5px gap, verticial alignment */
/* stylelint-disable-next-line unit-blacklist */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

/**
 * Render the `main` element consistently in IE.
 */
main {
  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
   ========================================================================== */
/**
 * 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 */
}

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

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

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

/**
 * 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 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
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  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;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 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 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

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

/**
 * 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 in Chrome and Safari on macOS.
 */
[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 */
}

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

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

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

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

/*!
 * Font Awesome Free 5.14.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
          animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
          animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "";
}

.fa-accessible-icon:before {
  content: "";
}

.fa-accusoft:before {
  content: "";
}

.fa-acquisitions-incorporated:before {
  content: "";
}

.fa-ad:before {
  content: "";
}

.fa-address-book:before {
  content: "";
}

.fa-address-card:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-adobe:before {
  content: "";
}

.fa-adversal:before {
  content: "";
}

.fa-affiliatetheme:before {
  content: "";
}

.fa-air-freshener:before {
  content: "";
}

.fa-airbnb:before {
  content: "";
}

.fa-algolia:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-alipay:before {
  content: "";
}

.fa-allergies:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-amazon-pay:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-amilia:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angry:before {
  content: "";
}

.fa-angrycreative:before {
  content: "";
}

.fa-angular:before {
  content: "";
}

.fa-ankh:before {
  content: "";
}

.fa-app-store:before {
  content: "";
}

.fa-app-store-ios:before {
  content: "";
}

.fa-apper:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-apple-alt:before {
  content: "";
}

.fa-apple-pay:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-archway:before {
  content: "";
}

.fa-arrow-alt-circle-down:before {
  content: "";
}

.fa-arrow-alt-circle-left:before {
  content: "";
}

.fa-arrow-alt-circle-right:before {
  content: "";
}

.fa-arrow-alt-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-arrows-alt-h:before {
  content: "";
}

.fa-arrows-alt-v:before {
  content: "";
}

.fa-artstation:before {
  content: "";
}

.fa-assistive-listening-systems:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-asymmetrik:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-atlas:before {
  content: "";
}

.fa-atlassian:before {
  content: "";
}

.fa-atom:before {
  content: "";
}

.fa-audible:before {
  content: "";
}

.fa-audio-description:before {
  content: "";
}

.fa-autoprefixer:before {
  content: "";
}

.fa-avianex:before {
  content: "";
}

.fa-aviato:before {
  content: "";
}

.fa-award:before {
  content: "";
}

.fa-aws:before {
  content: "";
}

.fa-baby:before {
  content: "";
}

.fa-baby-carriage:before {
  content: "";
}

.fa-backspace:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-bacon:before {
  content: "";
}

.fa-bacteria:before {
  content: "";
}

.fa-bacterium:before {
  content: "";
}

.fa-bahai:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-balance-scale-left:before {
  content: "";
}

.fa-balance-scale-right:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-band-aid:before {
  content: "";
}

.fa-bandcamp:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-bars:before {
  content: "";
}

.fa-baseball-ball:before {
  content: "";
}

.fa-basketball-ball:before {
  content: "";
}

.fa-bath:before {
  content: "";
}

.fa-battery-empty:before {
  content: "";
}

.fa-battery-full:before {
  content: "";
}

.fa-battery-half:before {
  content: "";
}

.fa-battery-quarter:before {
  content: "";
}

.fa-battery-three-quarters:before {
  content: "";
}

.fa-battle-net:before {
  content: "";
}

.fa-bed:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bezier-curve:before {
  content: "";
}

.fa-bible:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-biking:before {
  content: "";
}

.fa-bimobject:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-biohazard:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitcoin:before {
  content: "";
}

.fa-bity:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-blackberry:before {
  content: "";
}

.fa-blender:before {
  content: "";
}

.fa-blender-phone:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-blog:before {
  content: "";
}

.fa-blogger:before {
  content: "";
}

.fa-blogger-b:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-bolt:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-bone:before {
  content: "";
}

.fa-bong:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-book-dead:before {
  content: "";
}

.fa-book-medical:before {
  content: "";
}

.fa-book-open:before {
  content: "";
}

.fa-book-reader:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-bootstrap:before {
  content: "";
}

.fa-border-all:before {
  content: "";
}

.fa-border-none:before {
  content: "";
}

.fa-border-style:before {
  content: "";
}

.fa-bowling-ball:before {
  content: "";
}

.fa-box:before {
  content: "";
}

.fa-box-open:before {
  content: "";
}

.fa-box-tissue:before {
  content: "";
}

.fa-boxes:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-brain:before {
  content: "";
}

.fa-bread-slice:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-briefcase-medical:before {
  content: "";
}

.fa-broadcast-tower:before {
  content: "";
}

.fa-broom:before {
  content: "";
}

.fa-brush:before {
  content: "";
}

.fa-btc:before {
  content: "";
}

.fa-buffer:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-burn:before {
  content: "";
}

.fa-buromobelexperte:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-bus-alt:before {
  content: "";
}

.fa-business-time:before {
  content: "";
}

.fa-buy-n-large:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-calendar-alt:before {
  content: "";
}

.fa-calendar-check:before {
  content: "";
}

.fa-calendar-day:before {
  content: "";
}

.fa-calendar-minus:before {
  content: "";
}

.fa-calendar-plus:before {
  content: "";
}

.fa-calendar-times:before {
  content: "";
}

.fa-calendar-week:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-campground:before {
  content: "";
}

.fa-canadian-maple-leaf:before {
  content: "";
}

.fa-candy-cane:before {
  content: "";
}

.fa-cannabis:before {
  content: "";
}

.fa-capsules:before {
  content: "";
}

.fa-car:before {
  content: "";
}

.fa-car-alt:before {
  content: "";
}

.fa-car-battery:before {
  content: "";
}

.fa-car-crash:before {
  content: "";
}

.fa-car-side:before {
  content: "";
}

.fa-caravan:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-caret-square-down:before {
  content: "";
}

.fa-caret-square-left:before {
  content: "";
}

.fa-caret-square-right:before {
  content: "";
}

.fa-caret-square-up:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-carrot:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cash-register:before {
  content: "";
}

.fa-cat:before {
  content: "";
}

.fa-cc-amazon-pay:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-apple-pay:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-centercode:before {
  content: "";
}

.fa-centos:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-chair:before {
  content: "";
}

.fa-chalkboard:before {
  content: "";
}

.fa-chalkboard-teacher:before {
  content: "";
}

.fa-charging-station:before {
  content: "";
}

.fa-chart-area:before {
  content: "";
}

.fa-chart-bar:before {
  content: "";
}

.fa-chart-line:before {
  content: "";
}

.fa-chart-pie:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-check-double:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-cheese:before {
  content: "";
}

.fa-chess:before {
  content: "";
}

.fa-chess-bishop:before {
  content: "";
}

.fa-chess-board:before {
  content: "";
}

.fa-chess-king:before {
  content: "";
}

.fa-chess-knight:before {
  content: "";
}

.fa-chess-pawn:before {
  content: "";
}

.fa-chess-queen:before {
  content: "";
}

.fa-chess-rook:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-chromecast:before {
  content: "";
}

.fa-church:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-circle-notch:before {
  content: "";
}

.fa-city:before {
  content: "";
}

.fa-clinic-medical:before {
  content: "";
}

.fa-clipboard:before {
  content: "";
}

.fa-clipboard-check:before {
  content: "";
}

.fa-clipboard-list:before {
  content: "";
}

.fa-clock:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-closed-captioning:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-cloud-download-alt:before {
  content: "";
}

.fa-cloud-meatball:before {
  content: "";
}

.fa-cloud-moon:before {
  content: "";
}

.fa-cloud-moon-rain:before {
  content: "";
}

.fa-cloud-rain:before {
  content: "";
}

.fa-cloud-showers-heavy:before {
  content: "";
}

.fa-cloud-sun:before {
  content: "";
}

.fa-cloud-sun-rain:before {
  content: "";
}

.fa-cloud-upload-alt:before {
  content: "";
}

.fa-cloudscale:before {
  content: "";
}

.fa-cloudsmith:before {
  content: "";
}

.fa-cloudversify:before {
  content: "";
}

.fa-cocktail:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-code-branch:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cog:before {
  content: "";
}

.fa-cogs:before {
  content: "";
}

.fa-coins:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-comment-alt:before {
  content: "";
}

.fa-comment-dollar:before {
  content: "";
}

.fa-comment-dots:before {
  content: "";
}

.fa-comment-medical:before {
  content: "";
}

.fa-comment-slash:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-comments-dollar:before {
  content: "";
}

.fa-compact-disc:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-compress-alt:before {
  content: "";
}

.fa-compress-arrows-alt:before {
  content: "";
}

.fa-concierge-bell:before {
  content: "";
}

.fa-confluence:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-cookie:before {
  content: "";
}

.fa-cookie-bite:before {
  content: "";
}

.fa-copy:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-cotton-bureau:before {
  content: "";
}

.fa-couch:before {
  content: "";
}

.fa-cpanel:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-creative-commons-by:before {
  content: "";
}

.fa-creative-commons-nc:before {
  content: "";
}

.fa-creative-commons-nc-eu:before {
  content: "";
}

.fa-creative-commons-nc-jp:before {
  content: "";
}

.fa-creative-commons-nd:before {
  content: "";
}

.fa-creative-commons-pd:before {
  content: "";
}

.fa-creative-commons-pd-alt:before {
  content: "";
}

.fa-creative-commons-remix:before {
  content: "";
}

.fa-creative-commons-sa:before {
  content: "";
}

.fa-creative-commons-sampling:before {
  content: "";
}

.fa-creative-commons-sampling-plus:before {
  content: "";
}

.fa-creative-commons-share:before {
  content: "";
}

.fa-creative-commons-zero:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-critical-role:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-crop-alt:before {
  content: "";
}

.fa-cross:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-crow:before {
  content: "";
}

.fa-crown:before {
  content: "";
}

.fa-crutch:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-css3-alt:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-cut:before {
  content: "";
}

.fa-cuttlefish:before {
  content: "";
}

.fa-d-and-d:before {
  content: "";
}

.fa-d-and-d-beyond:before {
  content: "";
}

.fa-dailymotion:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-deaf:before {
  content: "";
}

.fa-deezer:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-democrat:before {
  content: "";
}

.fa-deploydog:before {
  content: "";
}

.fa-deskpro:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-dev:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-dharmachakra:before {
  content: "";
}

.fa-dhl:before {
  content: "";
}

.fa-diagnoses:before {
  content: "";
}

.fa-diaspora:before {
  content: "";
}

.fa-dice:before {
  content: "";
}

.fa-dice-d20:before {
  content: "";
}

.fa-dice-d6:before {
  content: "";
}

.fa-dice-five:before {
  content: "";
}

.fa-dice-four:before {
  content: "";
}

.fa-dice-one:before {
  content: "";
}

.fa-dice-six:before {
  content: "";
}

.fa-dice-three:before {
  content: "";
}

.fa-dice-two:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-digital-ocean:before {
  content: "";
}

.fa-digital-tachograph:before {
  content: "";
}

.fa-directions:before {
  content: "";
}

.fa-discord:before {
  content: "";
}

.fa-discourse:before {
  content: "";
}

.fa-disease:before {
  content: "";
}

.fa-divide:before {
  content: "";
}

.fa-dizzy:before {
  content: "";
}

.fa-dna:before {
  content: "";
}

.fa-dochub:before {
  content: "";
}

.fa-docker:before {
  content: "";
}

.fa-dog:before {
  content: "";
}

.fa-dollar-sign:before {
  content: "";
}

.fa-dolly:before {
  content: "";
}

.fa-dolly-flatbed:before {
  content: "";
}

.fa-donate:before {
  content: "";
}

.fa-door-closed:before {
  content: "";
}

.fa-door-open:before {
  content: "";
}

.fa-dot-circle:before {
  content: "";
}

.fa-dove:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-draft2digital:before {
  content: "";
}

.fa-drafting-compass:before {
  content: "";
}

.fa-dragon:before {
  content: "";
}

.fa-draw-polygon:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-dribbble-square:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-drum:before {
  content: "";
}

.fa-drum-steelpan:before {
  content: "";
}

.fa-drumstick-bite:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-dumbbell:before {
  content: "";
}

.fa-dumpster:before {
  content: "";
}

.fa-dumpster-fire:before {
  content: "";
}

.fa-dungeon:before {
  content: "";
}

.fa-dyalog:before {
  content: "";
}

.fa-earlybirds:before {
  content: "";
}

.fa-ebay:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-edge-legacy:before {
  content: "";
}

.fa-edit:before {
  content: "";
}

.fa-egg:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-elementor:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-ello:before {
  content: "";
}

.fa-ember:before {
  content: "";
}

.fa-empire:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-envelope-open:before {
  content: "";
}

.fa-envelope-open-text:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-equals:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-erlang:before {
  content: "";
}

.fa-ethereum:before {
  content: "";
}

.fa-ethernet:before {
  content: "";
}

.fa-etsy:before {
  content: "";
}

.fa-euro-sign:before {
  content: "";
}

.fa-evernote:before {
  content: "";
}

.fa-exchange-alt:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-exclamation-triangle:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-expand-alt:before {
  content: "";
}

.fa-expand-arrows-alt:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-external-link-alt:before {
  content: "";
}

.fa-external-link-square-alt:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-dropper:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-facebook:before {
  content: "";
}

.fa-facebook-f:before {
  content: "";
}

.fa-facebook-messenger:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-fan:before {
  content: "";
}

.fa-fantasy-flight-games:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-faucet:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-feather:before {
  content: "";
}

.fa-feather-alt:before {
  content: "";
}

.fa-fedex:before {
  content: "";
}

.fa-fedora:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-figma:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-alt:before {
  content: "";
}

.fa-file-archive:before {
  content: "";
}

.fa-file-audio:before {
  content: "";
}

.fa-file-code:before {
  content: "";
}

.fa-file-contract:before {
  content: "";
}

.fa-file-csv:before {
  content: "";
}

.fa-file-download:before {
  content: "";
}

.fa-file-excel:before {
  content: "";
}

.fa-file-export:before {
  content: "";
}

.fa-file-image:before {
  content: "";
}

.fa-file-import:before {
  content: "";
}

.fa-file-invoice:before {
  content: "";
}

.fa-file-invoice-dollar:before {
  content: "";
}

.fa-file-medical:before {
  content: "";
}

.fa-file-medical-alt:before {
  content: "";
}

.fa-file-pdf:before {
  content: "";
}

.fa-file-powerpoint:before {
  content: "";
}

.fa-file-prescription:before {
  content: "";
}

.fa-file-signature:before {
  content: "";
}

.fa-file-upload:before {
  content: "";
}

.fa-file-video:before {
  content: "";
}

.fa-file-word:before {
  content: "";
}

.fa-fill:before {
  content: "";
}

.fa-fill-drip:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-fingerprint:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-fire-alt:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-firefox-browser:before {
  content: "";
}

.fa-first-aid:before {
  content: "";
}

.fa-first-order:before {
  content: "";
}

.fa-first-order-alt:before {
  content: "";
}

.fa-firstdraft:before {
  content: "";
}

.fa-fish:before {
  content: "";
}

.fa-fist-raised:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-flag-usa:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-flipboard:before {
  content: "";
}

.fa-flushed:before {
  content: "";
}

.fa-fly:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-minus:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-folder-plus:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-font-awesome:before {
  content: "";
}

.fa-font-awesome-alt:before {
  content: "";
}

.fa-font-awesome-flag:before {
  content: "";
}

.fa-font-awesome-logo-full:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-fonticons-fi:before {
  content: "";
}

.fa-football-ball:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-fort-awesome-alt:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-free-code-camp:before {
  content: "";
}

.fa-freebsd:before {
  content: "";
}

.fa-frog:before {
  content: "";
}

.fa-frown:before {
  content: "";
}

.fa-frown-open:before {
  content: "";
}

.fa-fulcrum:before {
  content: "";
}

.fa-funnel-dollar:before {
  content: "";
}

.fa-futbol:before {
  content: "";
}

.fa-galactic-republic:before {
  content: "";
}

.fa-galactic-senate:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-gas-pump:before {
  content: "";
}

.fa-gavel:before {
  content: "";
}

.fa-gem:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-ghost:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-gifts:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-git-alt:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-gitkraken:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-gitter:before {
  content: "";
}

.fa-glass-cheers:before {
  content: "";
}

.fa-glass-martini:before {
  content: "";
}

.fa-glass-martini-alt:before {
  content: "";
}

.fa-glass-whiskey:before {
  content: "";
}

.fa-glasses:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-globe-africa:before {
  content: "";
}

.fa-globe-americas:before {
  content: "";
}

.fa-globe-asia:before {
  content: "";
}

.fa-globe-europe:before {
  content: "";
}

.fa-gofore:before {
  content: "";
}

.fa-golf-ball:before {
  content: "";
}

.fa-goodreads:before {
  content: "";
}

.fa-goodreads-g:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-google-drive:before {
  content: "";
}

.fa-google-pay:before {
  content: "";
}

.fa-google-play:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-google-plus-g:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-gopuram:before {
  content: "";
}

.fa-graduation-cap:before {
  content: "";
}

.fa-gratipay:before {
  content: "";
}

.fa-grav:before {
  content: "";
}

.fa-greater-than:before {
  content: "";
}

.fa-greater-than-equal:before {
  content: "";
}

.fa-grimace:before {
  content: "";
}

.fa-grin:before {
  content: "";
}

.fa-grin-alt:before {
  content: "";
}

.fa-grin-beam:before {
  content: "";
}

.fa-grin-beam-sweat:before {
  content: "";
}

.fa-grin-hearts:before {
  content: "";
}

.fa-grin-squint:before {
  content: "";
}

.fa-grin-squint-tears:before {
  content: "";
}

.fa-grin-stars:before {
  content: "";
}

.fa-grin-tears:before {
  content: "";
}

.fa-grin-tongue:before {
  content: "";
}

.fa-grin-tongue-squint:before {
  content: "";
}

.fa-grin-tongue-wink:before {
  content: "";
}

.fa-grin-wink:before {
  content: "";
}

.fa-grip-horizontal:before {
  content: "";
}

.fa-grip-lines:before {
  content: "";
}

.fa-grip-lines-vertical:before {
  content: "";
}

.fa-grip-vertical:before {
  content: "";
}

.fa-gripfire:before {
  content: "";
}

.fa-grunt:before {
  content: "";
}

.fa-guitar:before {
  content: "";
}

.fa-gulp:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-hacker-news:before {
  content: "";
}

.fa-hacker-news-square:before {
  content: "";
}

.fa-hackerrank:before {
  content: "";
}

.fa-hamburger:before {
  content: "";
}

.fa-hammer:before {
  content: "";
}

.fa-hamsa:before {
  content: "";
}

.fa-hand-holding:before {
  content: "";
}

.fa-hand-holding-heart:before {
  content: "";
}

.fa-hand-holding-medical:before {
  content: "";
}

.fa-hand-holding-usd:before {
  content: "";
}

.fa-hand-holding-water:before {
  content: "";
}

.fa-hand-lizard:before {
  content: "";
}

.fa-hand-middle-finger:before {
  content: "";
}

.fa-hand-paper:before {
  content: "";
}

.fa-hand-peace:before {
  content: "";
}

.fa-hand-point-down:before {
  content: "";
}

.fa-hand-point-left:before {
  content: "";
}

.fa-hand-point-right:before {
  content: "";
}

.fa-hand-point-up:before {
  content: "";
}

.fa-hand-pointer:before {
  content: "";
}

.fa-hand-rock:before {
  content: "";
}

.fa-hand-scissors:before {
  content: "";
}

.fa-hand-sparkles:before {
  content: "";
}

.fa-hand-spock:before {
  content: "";
}

.fa-hands:before {
  content: "";
}

.fa-hands-helping:before {
  content: "";
}

.fa-hands-wash:before {
  content: "";
}

.fa-handshake:before {
  content: "";
}

.fa-handshake-alt-slash:before {
  content: "";
}

.fa-handshake-slash:before {
  content: "";
}

.fa-hanukiah:before {
  content: "";
}

.fa-hard-hat:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-hat-cowboy:before {
  content: "";
}

.fa-hat-cowboy-side:before {
  content: "";
}

.fa-hat-wizard:before {
  content: "";
}

.fa-hdd:before {
  content: "";
}

.fa-head-side-cough:before {
  content: "";
}

.fa-head-side-cough-slash:before {
  content: "";
}

.fa-head-side-mask:before {
  content: "";
}

.fa-head-side-virus:before {
  content: "";
}

.fa-heading:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-headphones-alt:before {
  content: "";
}

.fa-headset:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-heart-broken:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-helicopter:before {
  content: "";
}

.fa-highlighter:before {
  content: "";
}

.fa-hiking:before {
  content: "";
}

.fa-hippo:before {
  content: "";
}

.fa-hips:before {
  content: "";
}

.fa-hire-a-helper:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-hockey-puck:before {
  content: "";
}

.fa-holly-berry:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-hooli:before {
  content: "";
}

.fa-hornbill:before {
  content: "";
}

.fa-horse:before {
  content: "";
}

.fa-horse-head:before {
  content: "";
}

.fa-hospital:before {
  content: "";
}

.fa-hospital-alt:before {
  content: "";
}

.fa-hospital-symbol:before {
  content: "";
}

.fa-hospital-user:before {
  content: "";
}

.fa-hot-tub:before {
  content: "";
}

.fa-hotdog:before {
  content: "";
}

.fa-hotel:before {
  content: "";
}

.fa-hotjar:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-start:before {
  content: "";
}

.fa-house-damage:before {
  content: "";
}

.fa-house-user:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-hryvnia:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-hubspot:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-ice-cream:before {
  content: "";
}

.fa-icicles:before {
  content: "";
}

.fa-icons:before {
  content: "";
}

.fa-id-badge:before {
  content: "";
}

.fa-id-card:before {
  content: "";
}

.fa-id-card-alt:before {
  content: "";
}

.fa-ideal:before {
  content: "";
}

.fa-igloo:before {
  content: "";
}

.fa-image:before {
  content: "";
}

.fa-images:before {
  content: "";
}

.fa-imdb:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-infinity:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-instagram-square:before {
  content: "";
}

.fa-intercom:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-invision:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-itch-io:before {
  content: "";
}

.fa-itunes:before {
  content: "";
}

.fa-itunes-note:before {
  content: "";
}

.fa-java:before {
  content: "";
}

.fa-jedi:before {
  content: "";
}

.fa-jedi-order:before {
  content: "";
}

.fa-jenkins:before {
  content: "";
}

.fa-jira:before {
  content: "";
}

.fa-joget:before {
  content: "";
}

.fa-joint:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-journal-whills:before {
  content: "";
}

.fa-js:before {
  content: "";
}

.fa-js-square:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-kaaba:before {
  content: "";
}

.fa-kaggle:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-keybase:before {
  content: "";
}

.fa-keyboard:before {
  content: "";
}

.fa-keycdn:before {
  content: "";
}

.fa-khanda:before {
  content: "";
}

.fa-kickstarter:before {
  content: "";
}

.fa-kickstarter-k:before {
  content: "";
}

.fa-kiss:before {
  content: "";
}

.fa-kiss-beam:before {
  content: "";
}

.fa-kiss-wink-heart:before {
  content: "";
}

.fa-kiwi-bird:before {
  content: "";
}

.fa-korvue:before {
  content: "";
}

.fa-landmark:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-laptop-code:before {
  content: "";
}

.fa-laptop-house:before {
  content: "";
}

.fa-laptop-medical:before {
  content: "";
}

.fa-laravel:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-laugh:before {
  content: "";
}

.fa-laugh-beam:before {
  content: "";
}

.fa-laugh-squint:before {
  content: "";
}

.fa-laugh-wink:before {
  content: "";
}

.fa-layer-group:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-lemon:before {
  content: "";
}

.fa-less:before {
  content: "";
}

.fa-less-than:before {
  content: "";
}

.fa-less-than-equal:before {
  content: "";
}

.fa-level-down-alt:before {
  content: "";
}

.fa-level-up-alt:before {
  content: "";
}

.fa-life-ring:before {
  content: "";
}

.fa-lightbulb:before {
  content: "";
}

.fa-line:before {
  content: "";
}

.fa-link:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-linkedin-in:before {
  content: "";
}

.fa-linode:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-lira-sign:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-lock-open:before {
  content: "";
}

.fa-long-arrow-alt-down:before {
  content: "";
}

.fa-long-arrow-alt-left:before {
  content: "";
}

.fa-long-arrow-alt-right:before {
  content: "";
}

.fa-long-arrow-alt-up:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-luggage-cart:before {
  content: "";
}

.fa-lungs:before {
  content: "";
}

.fa-lungs-virus:before {
  content: "";
}

.fa-lyft:before {
  content: "";
}

.fa-magento:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-mail-bulk:before {
  content: "";
}

.fa-mailchimp:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-mandalorian:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-map-marked:before {
  content: "";
}

.fa-map-marked-alt:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-map-marker-alt:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-markdown:before {
  content: "";
}

.fa-marker:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mask:before {
  content: "";
}

.fa-mastodon:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-mdb:before {
  content: "";
}

.fa-medal:before {
  content: "";
}

.fa-medapps:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-medium-m:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-medrt:before {
  content: "";
}

.fa-meetup:before {
  content: "";
}

.fa-megaport:before {
  content: "";
}

.fa-meh:before {
  content: "";
}

.fa-meh-blank:before {
  content: "";
}

.fa-meh-rolling-eyes:before {
  content: "";
}

.fa-memory:before {
  content: "";
}

.fa-mendeley:before {
  content: "";
}

.fa-menorah:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-meteor:before {
  content: "";
}

.fa-microblog:before {
  content: "";
}

.fa-microchip:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-alt:before {
  content: "";
}

.fa-microphone-alt-slash:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-microscope:before {
  content: "";
}

.fa-microsoft:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-mitten:before {
  content: "";
}

.fa-mix:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-mixer:before {
  content: "";
}

.fa-mizuni:before {
  content: "";
}

.fa-mobile:before {
  content: "";
}

.fa-mobile-alt:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-monero:before {
  content: "";
}

.fa-money-bill:before {
  content: "";
}

.fa-money-bill-alt:before {
  content: "";
}

.fa-money-bill-wave:before {
  content: "";
}

.fa-money-bill-wave-alt:before {
  content: "";
}

.fa-money-check:before {
  content: "";
}

.fa-money-check-alt:before {
  content: "";
}

.fa-monument:before {
  content: "";
}

.fa-moon:before {
  content: "";
}

.fa-mortar-pestle:before {
  content: "";
}

.fa-mosque:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-mountain:before {
  content: "";
}

.fa-mouse:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-mug-hot:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-napster:before {
  content: "";
}

.fa-neos:before {
  content: "";
}

.fa-network-wired:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-newspaper:before {
  content: "";
}

.fa-nimblr:before {
  content: "";
}

.fa-node:before {
  content: "";
}

.fa-node-js:before {
  content: "";
}

.fa-not-equal:before {
  content: "";
}

.fa-notes-medical:before {
  content: "";
}

.fa-npm:before {
  content: "";
}

.fa-ns8:before {
  content: "";
}

.fa-nutritionix:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-oil-can:before {
  content: "";
}

.fa-old-republic:before {
  content: "";
}

.fa-om:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-orcid:before {
  content: "";
}

.fa-osi:before {
  content: "";
}

.fa-otter:before {
  content: "";
}

.fa-outdent:before {
  content: "";
}

.fa-page4:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-pager:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-paint-roller:before {
  content: "";
}

.fa-palette:before {
  content: "";
}

.fa-palfed:before {
  content: "";
}

.fa-pallet:before {
  content: "";
}

.fa-paper-plane:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-parachute-box:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-parking:before {
  content: "";
}

.fa-passport:before {
  content: "";
}

.fa-pastafarianism:before {
  content: "";
}

.fa-paste:before {
  content: "";
}

.fa-patreon:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-peace:before {
  content: "";
}

.fa-pen:before {
  content: "";
}

.fa-pen-alt:before {
  content: "";
}

.fa-pen-fancy:before {
  content: "";
}

.fa-pen-nib:before {
  content: "";
}

.fa-pen-square:before {
  content: "";
}

.fa-pencil-alt:before {
  content: "";
}

.fa-pencil-ruler:before {
  content: "";
}

.fa-penny-arcade:before {
  content: "";
}

.fa-people-arrows:before {
  content: "";
}

.fa-people-carry:before {
  content: "";
}

.fa-pepper-hot:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-percentage:before {
  content: "";
}

.fa-periscope:before {
  content: "";
}

.fa-person-booth:before {
  content: "";
}

.fa-phabricator:before {
  content: "";
}

.fa-phoenix-framework:before {
  content: "";
}

.fa-phoenix-squadron:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-phone-alt:before {
  content: "";
}

.fa-phone-slash:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-phone-square-alt:before {
  content: "";
}

.fa-phone-volume:before {
  content: "";
}

.fa-photo-video:before {
  content: "";
}

.fa-php:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-pied-piper-hat:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pied-piper-square:before {
  content: "";
}

.fa-piggy-bank:before {
  content: "";
}

.fa-pills:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-pizza-slice:before {
  content: "";
}

.fa-place-of-worship:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-plane-arrival:before {
  content: "";
}

.fa-plane-departure:before {
  content: "";
}

.fa-plane-slash:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-playstation:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-podcast:before {
  content: "";
}

.fa-poll:before {
  content: "";
}

.fa-poll-h:before {
  content: "";
}

.fa-poo:before {
  content: "";
}

.fa-poo-storm:before {
  content: "";
}

.fa-poop:before {
  content: "";
}

.fa-portrait:before {
  content: "";
}

.fa-pound-sign:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-pray:before {
  content: "";
}

.fa-praying-hands:before {
  content: "";
}

.fa-prescription:before {
  content: "";
}

.fa-prescription-bottle:before {
  content: "";
}

.fa-prescription-bottle-alt:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-procedures:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-project-diagram:before {
  content: "";
}

.fa-pump-medical:before {
  content: "";
}

.fa-pump-soap:before {
  content: "";
}

.fa-pushed:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-python:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-quidditch:before {
  content: "";
}

.fa-quinscape:before {
  content: "";
}

.fa-quora:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-quran:before {
  content: "";
}

.fa-r-project:before {
  content: "";
}

.fa-radiation:before {
  content: "";
}

.fa-radiation-alt:before {
  content: "";
}

.fa-rainbow:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-raspberry-pi:before {
  content: "";
}

.fa-ravelry:before {
  content: "";
}

.fa-react:before {
  content: "";
}

.fa-reacteurope:before {
  content: "";
}

.fa-readme:before {
  content: "";
}

.fa-rebel:before {
  content: "";
}

.fa-receipt:before {
  content: "";
}

.fa-record-vinyl:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-red-river:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-redhat:before {
  content: "";
}

.fa-redo:before {
  content: "";
}

.fa-redo-alt:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-remove-format:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-reply:before {
  content: "";
}

.fa-reply-all:before {
  content: "";
}

.fa-replyd:before {
  content: "";
}

.fa-republican:before {
  content: "";
}

.fa-researchgate:before {
  content: "";
}

.fa-resolving:before {
  content: "";
}

.fa-restroom:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-rev:before {
  content: "";
}

.fa-ribbon:before {
  content: "";
}

.fa-ring:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-robot:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-rocketchat:before {
  content: "";
}

.fa-rockrms:before {
  content: "";
}

.fa-route:before {
  content: "";
}

.fa-rss:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-ruble-sign:before {
  content: "";
}

.fa-ruler:before {
  content: "";
}

.fa-ruler-combined:before {
  content: "";
}

.fa-ruler-horizontal:before {
  content: "";
}

.fa-ruler-vertical:before {
  content: "";
}

.fa-running:before {
  content: "";
}

.fa-rupee-sign:before {
  content: "";
}

.fa-rust:before {
  content: "";
}

.fa-sad-cry:before {
  content: "";
}

.fa-sad-tear:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-salesforce:before {
  content: "";
}

.fa-sass:before {
  content: "";
}

.fa-satellite:before {
  content: "";
}

.fa-satellite-dish:before {
  content: "";
}

.fa-save:before {
  content: "";
}

.fa-schlix:before {
  content: "";
}

.fa-school:before {
  content: "";
}

.fa-screwdriver:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-scroll:before {
  content: "";
}

.fa-sd-card:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-search-dollar:before {
  content: "";
}

.fa-search-location:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-searchengin:before {
  content: "";
}

.fa-seedling:before {
  content: "";
}

.fa-sellcast:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-servicestack:before {
  content: "";
}

.fa-shapes:before {
  content: "";
}

.fa-share:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-shekel-sign:before {
  content: "";
}

.fa-shield-alt:before {
  content: "";
}

.fa-shield-virus:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-shipping-fast:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-shoe-prints:before {
  content: "";
}

.fa-shopify:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-shopware:before {
  content: "";
}

.fa-shower:before {
  content: "";
}

.fa-shuttle-van:before {
  content: "";
}

.fa-sign:before {
  content: "";
}

.fa-sign-in-alt:before {
  content: "";
}

.fa-sign-language:before {
  content: "";
}

.fa-sign-out-alt:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-signature:before {
  content: "";
}

.fa-sim-card:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-sink:before {
  content: "";
}

.fa-sistrix:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-sith:before {
  content: "";
}

.fa-skating:before {
  content: "";
}

.fa-sketch:before {
  content: "";
}

.fa-skiing:before {
  content: "";
}

.fa-skiing-nordic:before {
  content: "";
}

.fa-skull:before {
  content: "";
}

.fa-skull-crossbones:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-slack-hash:before {
  content: "";
}

.fa-slash:before {
  content: "";
}

.fa-sleigh:before {
  content: "";
}

.fa-sliders-h:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-smile:before {
  content: "";
}

.fa-smile-beam:before {
  content: "";
}

.fa-smile-wink:before {
  content: "";
}

.fa-smog:before {
  content: "";
}

.fa-smoking:before {
  content: "";
}

.fa-smoking-ban:before {
  content: "";
}

.fa-sms:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-snowboarding:before {
  content: "";
}

.fa-snowflake:before {
  content: "";
}

.fa-snowman:before {
  content: "";
}

.fa-snowplow:before {
  content: "";
}

.fa-soap:before {
  content: "";
}

.fa-socks:before {
  content: "";
}

.fa-solar-panel:before {
  content: "";
}

.fa-sort:before {
  content: "";
}

.fa-sort-alpha-down:before {
  content: "";
}

.fa-sort-alpha-down-alt:before {
  content: "";
}

.fa-sort-alpha-up:before {
  content: "";
}

.fa-sort-alpha-up-alt:before {
  content: "";
}

.fa-sort-amount-down:before {
  content: "";
}

.fa-sort-amount-down-alt:before {
  content: "";
}

.fa-sort-amount-up:before {
  content: "";
}

.fa-sort-amount-up-alt:before {
  content: "";
}

.fa-sort-down:before {
  content: "";
}

.fa-sort-numeric-down:before {
  content: "";
}

.fa-sort-numeric-down-alt:before {
  content: "";
}

.fa-sort-numeric-up:before {
  content: "";
}

.fa-sort-numeric-up-alt:before {
  content: "";
}

.fa-sort-up:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-sourcetree:before {
  content: "";
}

.fa-spa:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-speakap:before {
  content: "";
}

.fa-speaker-deck:before {
  content: "";
}

.fa-spell-check:before {
  content: "";
}

.fa-spider:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-splotch:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-spray-can:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-square-full:before {
  content: "";
}

.fa-square-root-alt:before {
  content: "";
}

.fa-squarespace:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-stackpath:before {
  content: "";
}

.fa-stamp:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-and-crescent:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-star-half-alt:before {
  content: "";
}

.fa-star-of-david:before {
  content: "";
}

.fa-star-of-life:before {
  content: "";
}

.fa-staylinked:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-steam-symbol:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-sticker-mule:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stopwatch:before {
  content: "";
}

.fa-stopwatch-20:before {
  content: "";
}

.fa-store:before {
  content: "";
}

.fa-store-alt:before {
  content: "";
}

.fa-store-alt-slash:before {
  content: "";
}

.fa-store-slash:before {
  content: "";
}

.fa-strava:before {
  content: "";
}

.fa-stream:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-stripe:before {
  content: "";
}

.fa-stripe-s:before {
  content: "";
}

.fa-stroopwafel:before {
  content: "";
}

.fa-studiovinari:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-suitcase-rolling:before {
  content: "";
}

.fa-sun:before {
  content: "";
}

.fa-superpowers:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-supple:before {
  content: "";
}

.fa-surprise:before {
  content: "";
}

.fa-suse:before {
  content: "";
}

.fa-swatchbook:before {
  content: "";
}

.fa-swift:before {
  content: "";
}

.fa-swimmer:before {
  content: "";
}

.fa-swimming-pool:before {
  content: "";
}

.fa-symfony:before {
  content: "";
}

.fa-synagogue:before {
  content: "";
}

.fa-sync:before {
  content: "";
}

.fa-sync-alt:before {
  content: "";
}

.fa-syringe:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-table-tennis:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-tablet-alt:before {
  content: "";
}

.fa-tablets:before {
  content: "";
}

.fa-tachometer-alt:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-tape:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-taxi:before {
  content: "";
}

.fa-teamspeak:before {
  content: "";
}

.fa-teeth:before {
  content: "";
}

.fa-teeth-open:before {
  content: "";
}

.fa-telegram:before {
  content: "";
}

.fa-telegram-plane:before {
  content: "";
}

.fa-temperature-high:before {
  content: "";
}

.fa-temperature-low:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-tenge:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-the-red-yeti:before {
  content: "";
}

.fa-theater-masks:before {
  content: "";
}

.fa-themeco:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-thermometer:before {
  content: "";
}

.fa-thermometer-empty:before {
  content: "";
}

.fa-thermometer-full:before {
  content: "";
}

.fa-thermometer-half:before {
  content: "";
}

.fa-thermometer-quarter:before {
  content: "";
}

.fa-thermometer-three-quarters:before {
  content: "";
}

.fa-think-peaks:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbtack:before {
  content: "";
}

.fa-ticket-alt:before {
  content: "";
}

.fa-tiktok:before {
  content: "";
}

.fa-times:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-tint-slash:before {
  content: "";
}

.fa-tired:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-toilet:before {
  content: "";
}

.fa-toilet-paper:before {
  content: "";
}

.fa-toilet-paper-slash:before {
  content: "";
}

.fa-toolbox:before {
  content: "";
}

.fa-tools:before {
  content: "";
}

.fa-tooth:before {
  content: "";
}

.fa-torah:before {
  content: "";
}

.fa-torii-gate:before {
  content: "";
}

.fa-tractor:before {
  content: "";
}

.fa-trade-federation:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-traffic-light:before {
  content: "";
}

.fa-trailer:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-tram:before {
  content: "";
}

.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-trash-alt:before {
  content: "";
}

.fa-trash-restore:before {
  content: "";
}

.fa-trash-restore-alt:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-truck-loading:before {
  content: "";
}

.fa-truck-monster:before {
  content: "";
}

.fa-truck-moving:before {
  content: "";
}

.fa-truck-pickup:before {
  content: "";
}

.fa-tshirt:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-tv:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-typo3:before {
  content: "";
}

.fa-uber:before {
  content: "";
}

.fa-ubuntu:before {
  content: "";
}

.fa-uikit:before {
  content: "";
}

.fa-umbraco:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-umbrella-beach:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-undo:before {
  content: "";
}

.fa-undo-alt:before {
  content: "";
}

.fa-uniregistry:before {
  content: "";
}

.fa-unity:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-university:before {
  content: "";
}

.fa-unlink:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-unsplash:before {
  content: "";
}

.fa-untappd:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-ups:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-user-alt:before {
  content: "";
}

.fa-user-alt-slash:before {
  content: "";
}

.fa-user-astronaut:before {
  content: "";
}

.fa-user-check:before {
  content: "";
}

.fa-user-circle:before {
  content: "";
}

.fa-user-clock:before {
  content: "";
}

.fa-user-cog:before {
  content: "";
}

.fa-user-edit:before {
  content: "";
}

.fa-user-friends:before {
  content: "";
}

.fa-user-graduate:before {
  content: "";
}

.fa-user-injured:before {
  content: "";
}

.fa-user-lock:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-user-minus:before {
  content: "";
}

.fa-user-ninja:before {
  content: "";
}

.fa-user-nurse:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-user-shield:before {
  content: "";
}

.fa-user-slash:before {
  content: "";
}

.fa-user-tag:before {
  content: "";
}

.fa-user-tie:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-users:before {
  content: "";
}

.fa-users-cog:before {
  content: "";
}

.fa-users-slash:before {
  content: "";
}

.fa-usps:before {
  content: "";
}

.fa-ussunnah:before {
  content: "";
}

.fa-utensil-spoon:before {
  content: "";
}

.fa-utensils:before {
  content: "";
}

.fa-vaadin:before {
  content: "";
}

.fa-vector-square:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-vial:before {
  content: "";
}

.fa-vials:before {
  content: "";
}

.fa-viber:before {
  content: "";
}

.fa-video:before {
  content: "";
}

.fa-video-slash:before {
  content: "";
}

.fa-vihara:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-vimeo-v:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-virus:before {
  content: "";
}

.fa-virus-slash:before {
  content: "";
}

.fa-viruses:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-vnv:before {
  content: "";
}

.fa-voicemail:before {
  content: "";
}

.fa-volleyball-ball:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-mute:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-vote-yea:before {
  content: "";
}

.fa-vr-cardboard:before {
  content: "";
}

.fa-vuejs:before {
  content: "";
}

.fa-walking:before {
  content: "";
}

.fa-wallet:before {
  content: "";
}

.fa-warehouse:before {
  content: "";
}

.fa-water:before {
  content: "";
}

.fa-wave-square:before {
  content: "";
}

.fa-waze:before {
  content: "";
}

.fa-weebly:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-weight:before {
  content: "";
}

.fa-weight-hanging:before {
  content: "";
}

.fa-weixin:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-whatsapp-square:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-whmcs:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-wind:before {
  content: "";
}

.fa-window-close:before {
  content: "";
}

.fa-window-maximize:before {
  content: "";
}

.fa-window-minimize:before {
  content: "";
}

.fa-window-restore:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-wine-bottle:before {
  content: "";
}

.fa-wine-glass:before {
  content: "";
}

.fa-wine-glass-alt:before {
  content: "";
}

.fa-wix:before {
  content: "";
}

.fa-wizards-of-the-coast:before {
  content: "";
}

.fa-wolf-pack-battalion:before {
  content: "";
}

.fa-won-sign:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-wordpress-simple:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpexplorer:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-wpressr:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-x-ray:before {
  content: "";
}

.fa-xbox:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-y-combinator:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-yammer:before {
  content: "";
}

.fa-yandex:before {
  content: "";
}

.fa-yandex-international:before {
  content: "";
}

.fa-yarn:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-yen-sign:before {
  content: "";
}

.fa-yin-yang:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-zhihu:before {
  content: "";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*!
 * Font Awesome Free 5.14.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/_resources/vendor/education-nz/moe-design-system/thirdparty/font-awesome/webfonts/fa-regular-400.eot");
  src: url("/_resources/vendor/education-nz/moe-design-system/thirdparty/font-awesome/webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("/_resources/vendor/education-nz/moe-design-system/thirdparty/font-awesome/webfonts/fa-regular-400.woff2") format("woff2"), url("/_resources/vendor/education-nz/moe-design-system/thirdparty/font-awesome/webfonts/fa-regular-400.woff") format("woff"), url("/_resources/vendor/education-nz/moe-design-system/thirdparty/font-awesome/webfonts/fa-regular-400.ttf") format("truetype"), url("/_resources/vendor/education-nz/moe-design-system/thirdparty/font-awesome/webfonts/fa-regular-400.svg#fontawesome") format("svg");
}
.far {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

/*!
 * Font Awesome Free 5.14.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/_resources/vendor/education-nz/moe-design-system/thirdparty/font-awesome/webfonts/fa-solid-900.eot");
  src: url("/_resources/vendor/education-nz/moe-design-system/thirdparty/font-awesome/webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("/_resources/vendor/education-nz/moe-design-system/thirdparty/font-awesome/webfonts/fa-solid-900.woff2") format("woff2"), url("/_resources/vendor/education-nz/moe-design-system/thirdparty/font-awesome/webfonts/fa-solid-900.woff") format("woff"), url("/_resources/vendor/education-nz/moe-design-system/thirdparty/font-awesome/webfonts/fa-solid-900.ttf") format("truetype"), url("/_resources/vendor/education-nz/moe-design-system/thirdparty/font-awesome/webfonts/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/*!
 * Font Awesome Free 5.14.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/_resources/vendor/education-nz/moe-design-system/thirdparty/font-awesome/webfonts/fa-brands-400.eot");
  src: url("/_resources/vendor/education-nz/moe-design-system/thirdparty/font-awesome/webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("/_resources/vendor/education-nz/moe-design-system/thirdparty/font-awesome/webfonts/fa-brands-400.woff2") format("woff2"), url("/_resources/vendor/education-nz/moe-design-system/thirdparty/font-awesome/webfonts/fa-brands-400.woff") format("woff"), url("/_resources/vendor/education-nz/moe-design-system/thirdparty/font-awesome/webfonts/fa-brands-400.ttf") format("truetype"), url("/_resources/vendor/education-nz/moe-design-system/thirdparty/font-awesome/webfonts/fa-brands-400.svg#fontawesome") format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

/*
  ==========================
  Helpers
  ==========================
*/
html {
  margin: 0;
  padding: 0;
  font-size: 18px;
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  background: #FFF;
  font-size: 1rem;
  line-height: 1.6666;
  color: #2C2C2C;
  font-family: "Gotham SSm A", "Gotham SSm B", "Gotham", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  overflow: auto;
}

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

html,
body {
  min-width: 320px;
  -webkit-print-color-adjust: exact;
}

.body {
  min-height: calc(100vh - 320px);
  /* force footer down to bottom */
  transition: opacity 0.3s ease-out;
}

a {
  color: #1470E1;
}

::-moz-selection {
  background: #1470E1;
  color: #FFF !important;
}

::selection {
  background: #1470E1;
  color: #FFF !important;
}

/*
  ==========================
  Better navigator
  ==========================
*/
#BetterNavigator {
  transform: translateY(calc(50vh - 50%));
}

#BetterNavigator.collapsed {
  transform: translateY(50vh) rotate(90deg) !important;
}

h1 {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  margin: 0.13885rem 0 0.069425rem;
  text-rendering: optimizeLegibility;
  font-size: 2.441rem;
  letter-spacing: -0.166rem;
  line-height: 1.136;
  margin: 0rem 0 0rem;
  font-weight: 800;
}
h1 > a:not(:first-child) {
  display: inline-block;
  margin-left: 0.25em;
}
@media all and (max-width: 800px) {
  h1 {
    font-size: 1.953rem;
    letter-spacing: -0.088rem;
  }
}

h2 {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  margin: 0.13885rem 0 0.069425rem;
  text-rendering: optimizeLegibility;
  font-size: 1.953rem;
  line-height: 1.42857;
  letter-spacing: -0.077rem;
  margin: 0.5554rem 0 0.13885rem;
  font-weight: 800;
}
h2 > a:not(:first-child) {
  display: inline-block;
  margin-left: 0.25em;
}
h2:first-child {
  margin-top: 0.5554rem;
}
@media all and (max-width: 800px) {
  h2 {
    font-size: 1.563rem;
    letter-spacing: -1px;
  }
}
@media all and (max-width: 560px) {
  h2 {
    font-size: 1.25rem;
    letter-spacing: -1px;
  }
}

h3 {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  margin: 0.13885rem 0 0.069425rem;
  text-rendering: optimizeLegibility;
  font-size: 1.563rem;
  line-height: 1.133;
  letter-spacing: -0.044rem;
  margin: 0rem 0 0.13885rem;
  font-weight: 800;
}
h3 > a:not(:first-child) {
  display: inline-block;
  margin-left: 0.25em;
}
@media all and (max-width: 560px) {
  h3 {
    font-size: 1rem;
    line-height: 1.25;
  }
}

h4 {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  margin: 0.13885rem 0 0.069425rem;
  text-rendering: optimizeLegibility;
  font-size: 1rem;
  line-height: 1.388;
  margin: 0rem 0 0.13885rem;
  letter-spacing: -0.038rem;
  font-weight: 700;
}
h4 > a:not(:first-child) {
  display: inline-block;
  margin-left: 0.25em;
}
@media all and (max-width: 560px) {
  h4 {
    font-size: 0.9rem;
    line-height: 1.5625;
  }
}

h5 {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  margin: 0.13885rem 0 0.069425rem;
  text-rendering: optimizeLegibility;
  font-size: 0.833rem;
  line-height: 1.666;
  letter-spacing: -0.011rem;
  font-weight: 700;
}
h5 > a:not(:first-child) {
  display: inline-block;
  margin-left: 0.25em;
}

h6 {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  margin: 0.13885rem 0 0.069425rem;
  text-rendering: optimizeLegibility;
  font-size: 0.633rem;
  line-height: 1.388;
  font-weight: 700;
  letter-spacing: -0.006rem;
}
h6 > a:not(:first-child) {
  display: inline-block;
  margin-left: 0.25em;
}

ul {
  margin: 0.5554rem 0;
  padding-left: 1.1108rem;
}

ol {
  margin: 0.5554rem 0;
  padding-left: 1.1108rem;
}

ol.semantic,
ui.semantic {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  font-size: 1rem;
  line-height: 1.6666;
  letter-spacing: -0.038rem;
}
@media all and (max-width: 800px) {
  li {
    font-size: 0.9rem;
    line-height: 1.5625;
    letter-spacing: -0.016rem;
  }
}

/*
  ==========================
  Typography
  ==========================
*/
p {
  font-size: 1rem;
  line-height: 1.6666;
  letter-spacing: -0.038rem;
  margin: 0.2777rem 0 1.1108rem;
  word-break: break-word;
}
@media all and (max-width: 800px) {
  p {
    font-size: 0.9rem;
    line-height: 1.5625;
    letter-spacing: -0.016rem;
  }
}

table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.1108rem 0 1.1108rem;
}
table th {
  padding: 0.4998444444rem 0.4442888889rem;
  font-weight: 700;
  border: 1px solid #eee;
  border-bottom-width: 2px;
}
table td {
  padding: 0.2777rem 0.4998444444rem;
  border: 1px solid #eee;
  font-size: 0.8333rem;
  line-height: 1.3333;
}
table td p {
  font-size: 0.8333rem;
  line-height: 1.3333;
}

.block-tile {
  display: flex;
  flex: 1;
  position: relative;
  flex-direction: column;
  transition: all 250ms ease;
  border-radius: 9px;
  box-shadow: 0 0.5rem 1rem 0 rgba(5, 5, 5, 0.1);
  background-color: #fff;
  border-bottom: 0.8331rem solid #1470E1;
  text-decoration: none;
}
.block-tile.block-row__pseudo {
  border: none;
  background: none;
  box-shadow: none;
}
.block-tile .block-tile__image {
  overflow: hidden;
  border-top-right-radius: 9px;
  border-top-left-radius: 9px;
}
.block-tile .block-tile__image img:not([src*=".svg"]) {
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  border-top-right-radius: 9px;
  border-top-left-radius: 9px;
  width: 0;
}
.block-tile .block-tile__image img[src*=".svg"] {
  margin: 1rem 2rem 0;
}
.block-tile .block-tile__content {
  padding: 1.6662rem;
  font-weight: normal;
  height: 100%;
  transition: all 250ms ease;
  position: relative;
}
@media all and (max-width: 800px) {
  .block-tile .block-tile__content {
    padding-left: 0.8331rem;
    padding-right: 0.8331rem;
  }
}
.block-tile .block-title__title {
  margin-top: 0;
  margin-bottom: 0.5554rem;
  font-size: 1.25rem;
  letter-spacing: -0.044rem;
  line-height: 1.3333;
}
@media all and (max-width: 800px) {
  .block-tile .block-title__title {
    font-size: 1rem;
    line-height: 1.6666;
    letter-spacing: -0.038rem;
    margin-bottom: 0.2777rem;
  }
}
.block-tile p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5625;
  letter-spacing: -0.016rem;
}
@media all and (max-width: 800px) {
  .block-tile p {
    font-size: 0.8333rem;
    line-height: 1.3333;
  }
}

a.block-tile {
  cursor: pointer;
}
a.block-tile:hover, a.block-tile:focus {
  transform: translate(0%, -0.2777rem);
  text-decoration: none;
}
a.block-tile:hover .block-tile__content, a.block-tile:focus .block-tile__content {
  opacity: 0.8;
}
a.block-tile:hover .block-tile__content:after, a.block-tile:focus .block-tile__content:after {
  opacity: 0.7;
  transform: translateX(0.2777rem);
}

.element.education__blocks__tile {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1200px;
}
@media all and (min-width: 800px) {
  .element.education__blocks__tile {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media all and (min-width: 960px) {
  .element.education__blocks__tile {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media all and (min-width: 1220px) {
  .element.education__blocks__tile {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.body > .education__blocks__tile .block-tile {
  border-bottom: none;
}
@media all and (min-width: 800px) {
  .body > .education__blocks__tile .block-tile__image {
    flex: 0 0 33%;
  }
  .body > .education__blocks__tile .block-tile__image img {
    border-top-right-radius: 9px;
    border-bottom-right-radius: 9px;
  }
}
.body > .education__blocks__tile .block-tile__has-image {
  flex-direction: row-reverse;
  align-items: center;
}
.body > .education__blocks__tile .block-tile__has-image .block-tile__content {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media all and (max-width: 800px) {
  .body > .education__blocks__tile .block-tile__has-image {
    flex-direction: column;
  }
  .body > .education__blocks__tile .block-tile__has-image .block-tile__image {
    width: 100%;
  }
}
.body > .education__blocks__tile:last-child {
  margin-bottom: 4rem;
}
@media all and (max-width: 800px) {
  .body > .education__blocks__tile:last-child {
    margin-bottom: 2rem;
  }
}

/*
  ==========================
  Spinner
  ==========================
*/
.spinner {
  margin: 2rem auto;
  height: 30px;
  width: 30px;
  -webkit-animation: spinner-rotate 0.8s infinite linear;
  animation: spinner-rotate 0.8s infinite linear;
  border: 0.6rem solid #e0e0e0;
  border-right-color: transparent;
  border-radius: 50%;
}

@-webkit-keyframes spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*
   ==========================
   container
   ==========================
 */
.wrapper,
.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1200px;
}
@media all and (min-width: 800px) {
  .wrapper,
.container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media all and (min-width: 960px) {
  .wrapper,
.container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media all and (min-width: 1220px) {
  .wrapper,
.container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.wrapper.container__wide, .wrapper.wrapper__wide,
.container.container__wide,
.container.wrapper__wide {
  max-width: 1326px;
}

.center {
  margin-left: 0;
  margin-right: 0;
}

.left {
  float: left;
}

img.left {
  margin: 0 0.5554rem 0.5554rem;
}

.right {
  float: right;
}

img.right {
  margin: 0 0 0.5554rem 0.5554rem;
}

.cf::after {
  content: "";
  display: table;
  clear: both;
}

.show-on-focus {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: 0;
  clip: rect(1px, 1px, 1px, 1px);
}
.show-on-focus:focus {
  z-index: 2000;
  width: auto;
  height: auto;
  clip: auto;
  background-color: #1470E1;
  color: #fff;
}

.nonvisual-indicator,
.visuallyhidden,
.visually-hidden,
.access,
.hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  display: block !important;
}

.mt_1 {
  margin-top: 0.2777rem;
}

.mt_2 {
  margin-top: 0.5554rem;
}

.mt_3 {
  margin-top: 0.8331rem;
}

.mt_4 {
  margin-top: 1.1108rem;
}

.mt_5 {
  margin-top: 1.3885rem;
}

.mb_1 {
  margin-bottom: 0.2777rem;
}

.mb_2 {
  margin-bottom: 0.5554rem;
}

.mb_3 {
  margin-bottom: 0.8331rem;
}

.mb_4 {
  margin-bottom: 1.1108rem;
}

.mb_5 {
  margin-bottom: 1.3885rem;
}

@media print {
  body {
    --header-height: 0 imp !important;
  }

  .no-print {
    display: none !important;
  }

  * {
    -webkit-print-color-adjust: exact !important;
    color-adjust: exact !important;
  }

  #BetterNavigator,
.navbar-header {
    display: none !important;
  }

  body, html {
    overflow: visible !important;
    height: auto;
    max-height: none;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#print-logo {
  display: none;
  max-width: 300px;
}
#print-logo img {
  max-width: 300px;
}

body {
  padding-top: 60px;
}
@media all and (min-width: 1220px) {
  body {
    padding-top: 160px;
  }
}
@media all and (min-width: 1340px) {
  body {
    padding-top: 180px;
  }
}

.header__primary {
  background: #272839;
  display: flex;
  justify-content: space-between;
  height: 80px;
}
@media all and (max-width: 1220px) {
  .header__primary {
    height: 60px;
  }
}

.header__secondary {
  background: #2e2f43;
}
@media all and (max-width: 1220px) {
  .header__secondary {
    height: calc(100vh - 60px);
    position: fixed;
    left: 0;
    top: 60px;
    transform: translateX(100vw);
    width: 100vw;
    transition: all 500ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    background: #fff;
  }
}
@media all and (min-width: 1340px) {
  .header__secondary {
    height: 100px;
  }
}
.header__secondary ol {
  margin: 0;
  padding: 0;
}
.header__secondary li {
  list-style: none;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
}
@media all and (max-width: 1220px) {
  .header__secondary li {
    position: relative;
  }
}

@media all and (max-width: 1220px) {
  .header__section {
    border-bottom: 2px solid #EDEDE2;
  }
}
.header__section .header__section_tab {
  display: flex;
  width: 100%;
  padding-right: 50px;
  position: relative;
  cursor: pointer;
}
.header__section .header__section_tab:hover, .header__section .header__section_tab:focus {
  text-decoration: none;
}
.header__section .header__section_tab .definition {
  transition: all 0.2s ease;
}
@media all and (max-width: 1220px) {
  .header__section .header__section_tab {
    flex-direction: row;
    padding: 18px 60px 17px 15px;
    color: #121212;
    align-items: center;
    font-size: 15px;
    line-height: 25px;
    position: relative;
  }
  .header__section .header__section_tab em {
    font-weight: 600;
    border-right: 2px solid #EDEDE2;
    width: 120px;
    margin-right: 10px;
    text-transform: uppercase;
    letter-spacing: -0.7px;
  }
  .header__section .header__section_tab .definition {
    color: #121212;
    padding-top: 0;
    font-size: 15px;
  }
}
@media all and (min-width: 1220px) {
  .header__section .header__section_tab {
    flex-direction: column;
    justify-content: center;
    border-top: 5px solid transparent;
    padding: 15px 30px 15px 10px;
    margin-right: 5px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    height: 80px;
    position: relative;
    transition: all 0.2s ease-out;
  }
}
@media all and (min-width: 1220px) and (min-width: 1340px) {
  .header__section .header__section_tab {
    height: 100px;
    border-top: 10px solid transparent;
    padding: 15px 40px 15px 1.111rem;
  }
}
@media all and (min-width: 1220px) {
  .header__section .header__section_tab:hover, .header__section .header__section_tab:focus {
    background: rgba(255, 255, 255, 0.2);
  }
  .header__section .header__section_tab:hover .definition, .header__section .header__section_tab:focus .definition {
    color: #fff;
  }
}
@media all and (min-width: 1220px) {
  .header__section .header__section_tab a.active,
.header__section .header__section_tab a.section {
    background: #fff;
    color: #012939;
    text-decoration: none;
  }
  .header__section .header__section_tab a.active .definition,
.header__section .header__section_tab a.section .definition {
    color: #012939;
  }
  .header__section .header__section_tab a.active:hover, .header__section .header__section_tab a.active:focus,
.header__section .header__section_tab a.section:hover,
.header__section .header__section_tab a.section:focus {
    background: #fff;
  }
}
@media all and (min-width: 1220px) {
  .header__section .header__section_tab:after {
    content: "";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -7px;
    font-size: 14px;
    color: #0066ff;
    vertical-align: middle;
    transition: all 0.3s linear;
  }
}
@media all and (min-width: 1220px) and (min-width: 1340px) {
  .header__section .header__section_tab:after {
    right: 10px;
  }
}
.header__section .header__section_tab em {
  font-style: normal;
  text-overflow: ellipsis;
  white-space: pre;
  overflow: hidden;
}
.header__section .header__section_tab span {
  text-transform: none;
  display: block;
  padding-top: 5px;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: pre;
  overflow: hidden;
}
.header__section.header__section_open .header__section_tab {
  background: #fff;
  color: #012939;
}
.header__section.header__section_open .header__section_tab .definition {
  color: #012939;
}
.header__section.header__section_open .header__section_tab:after {
  transform: rotate(180deg);
}
.header__section.header__section-yellow.header__section_open > a,
.header__section.header__section-yellow a.active,
.header__section.header__section-yellow a.section,
.header__section.header__section-yellow a:hover,
.header__section.header__section-yellow a:focus {
  border-top-color: #FFD444;
}
.header__section.header__section-yellow span {
  color: #FFD444;
}
.header__section.header__section-yellow .header__mega:after {
  background-color: #FFD444;
}
.header__section.header__section-yellow .header__subsection > a,
.header__section.header__section-yellow .header__section_tab em {
  border-color: #FFD444;
}
.header__section.header__section-blue.header__section_open > a,
.header__section.header__section-blue a.active,
.header__section.header__section-blue a.section,
.header__section.header__section-blue a:hover,
.header__section.header__section-blue a:focus {
  border-top-color: #1470E1;
}
.header__section.header__section-blue span {
  color: #1470E1;
}
.header__section.header__section-blue .header__subsection > a,
.header__section.header__section-blue .header__section_tab em {
  border-color: #1470E1;
}
.header__section.header__section-blue .header__mega:after {
  background-color: #1470E1;
}
.header__section.header__section-bright-blue.header__section_open > a,
.header__section.header__section-bright-blue a.active,
.header__section.header__section-bright-blue a.section,
.header__section.header__section-bright-blue a:hover,
.header__section.header__section-bright-blue a:focus {
  border-top-color: #0066ff;
}
.header__section.header__section-bright-blue span {
  color: #66a3ff;
}
.header__section.header__section-bright-blue .header__subsection > a,
.header__section.header__section-bright-blue .header__section_tab em {
  border-color: #0066ff;
}
.header__section.header__section-bright-blue .header__mega:after {
  background-color: #0066ff;
}
.header__section.header__section-red.header__section_open > a,
.header__section.header__section-red a.active,
.header__section.header__section-red a.section,
.header__section.header__section-red a:hover,
.header__section.header__section-red a:focus {
  border-top-color: #E4243B;
}
.header__section.header__section-red span {
  color: #ea5164;
}
.header__section.header__section-red .header__subsection > a,
.header__section.header__section-red .header__section_tab em {
  border-color: #E4243B;
}
.header__section.header__section-red .header__mega:after {
  background-color: #E4243B;
}
.header__section.header__section-teal.header__section_open > a,
.header__section.header__section-teal a.active,
.header__section.header__section-teal a.section,
.header__section.header__section-teal a:hover,
.header__section.header__section-teal a:focus {
  border-top-color: #13ACBD;
}
.header__section.header__section-teal span {
  color: #13ACBD;
}
.header__section.header__section-teal .header__subsection > a,
.header__section.header__section-teal .header__section_tab em {
  border-color: #13ACBD;
}
.header__section.header__section-teal .header__mega:after {
  background-color: #13ACBD;
}
.header__section.header__section-green.header__section_open > a,
.header__section.header__section-green a.active,
.header__section.header__section-green a.section,
.header__section.header__section-green a:hover,
.header__section.header__section-green a:focus {
  border-top-color: #58B947;
}
.header__section.header__section-green span {
  color: #58B947;
}
.header__section.header__section-green .header__subsection > a,
.header__section.header__section-green .header__section_tab em {
  border-color: #58B947;
}
.header__section.header__section-green .header__mega:after {
  background-color: #58B947;
}

@media all and (max-width: 1220px) {
  .header__links {
    display: none;
  }
}

.header__actions {
  display: flex;
  align-items: center;
}
@media all and (min-width: 1220px) {
  .header__actions {
    padding-right: 80px;
  }
}
.header__actions a {
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
  line-height: 1;
  vertical-align: middle;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease-out;
  margin-left: 20px;
}
.header__actions a:hover, .header__actions a:focus {
  opacity: 0.7;
  text-decoration: none;
}
.header__actions a:after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  color: #0066ff;
  vertical-align: middle;
}
.header__actions .header__search_toggle {
  color: #fff;
  background: none;
  font-size: 18px;
  width: 60px;
  height: 60px;
  line-height: 1;
  border: none;
}

.header__search {
  margin-left: 20px;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.header__search fieldset {
  padding: 0;
  border: none;
}
@media all and (max-width: 1220px) {
  .header__search {
    max-height: 0;
    overflow: hidden;
    top: 60px;
    position: fixed;
    left: 0;
    width: 100vw;
    background: #fff;
    padding: 0;
    margin: 0;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .header__search #page-head-search-term {
    width: 100%;
  }
  .header__search form {
    position: relative;
  }
  .header__search form input.text {
    background: #EDEDE2;
  }
  .header__search form input.text:hover, .header__search form input.text:focus {
    background: #EDEDE2;
  }
}
.header__search input.text {
  width: 356px;
  padding: 10px 80px 10px 8px;
  background-color: #ccc;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
  transition: all 0.3s ease-out;
  -webkit-appearance: none;
}
.header__search input.text:hover, .header__search input.text:focus {
  background-color: #fff;
}
.header__search button {
  position: absolute;
  top: 50%;
  right: 4px;
  margin-top: -13px;
  width: 70px;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 27px;
}

.header__mega .header__mega_close {
  position: absolute;
  top: -35px;
  right: -50px;
  width: 32px;
  height: 32px;
}
@media all and (max-width: 1220px) {
  .header__mega .header__mega_close {
    display: none;
  }
}
.header__mega .header__mega_close:after, .header__mega .header__mega_close:before {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background: #a8a8a8;
  position: absolute;
  transform-origin: 50%;
  top: 50%;
  left: 0;
  margin: 0;
  transition: all 0.14s ease-out;
}
.header__mega .header__mega_close:hover:before, .header__mega .header__mega_close:hover:after, .header__mega .header__mega_close:focus:before, .header__mega .header__mega_close:focus:after {
  background: #1473E6;
}

.mega__open .header__mega .header__mega_close:before {
  transform: rotate(45deg);
}
.mega__open .header__mega .header__mega_close:after {
  transform: rotate(135deg);
}

.header__menu_toggle {
  display: block;
  background: none;
  position: relative;
}
@media all and (min-width: 1220px) {
  .header__menu_toggle {
    display: none !important;
  }
}
.header__menu_toggle:hover, .header__menu_toggle:focus {
  background: none;
  border: none;
}

.header__brand {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header__brand svg {
  max-height: 70px;
  display: block;
}
@media all and (max-width: 1220px) {
  .header__brand svg {
    max-height: 50px;
  }
}
@media all and (max-width: 800px) {
  .header__brand svg {
    max-width: 170px;
  }
}
@media all and (max-width: 360px) {
  .header__brand svg {
    margin-left: 15px;
  }
}
.header__brand .home {
  display: flex;
  align-items: center;
}
.header__brand .home:before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background: url(../images/MOE_icon_logo_white.svg) no-repeat;
  background-size: 80px 80px;
  margin-right: 20px;
}
@media all and (max-width: 1220px) {
  .header__brand .home:before {
    height: 60px;
    width: 60px;
    background-size: 60px 60px;
  }
}
@media all and (max-width: 800px) {
  .header__brand .home:before {
    margin-right: 15px;
  }
}
@media all and (max-width: 360px) {
  .header__brand .home:before {
    display: none;
  }
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
  padding: 0;
}
@media all and (max-width: 1220px) {
  .header__wrapper {
    display: block;
    height: calc(100vh - 60px);
    overflow-y: scroll;
    overflow-x: hidden;
    justify-content: flex-start;
  }
}
@media all and (min-width: 1220px) {
  .header__wrapper {
    padding: 0 80px 0 80px;
  }
}

@media all and (max-width: 1220px) {
  .header__menu {
    width: 100%;
  }
}
.header__menu > ol {
  display: flex;
}
@media all and (max-width: 1220px) {
  .header__menu > ol {
    flex-direction: column;
  }
}

.header__level_toggle {
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 60px;
  height: 60px;
  font-size: 1rem;
  line-height: 60px;
  border-radius: 0;
  padding: 0;
  font-weight: normal;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 2;
}
.header__level_toggle:after {
  content: "";
  transform: rotate(90deg);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #0066ff;
  display: inline-block;
  transform-origin: center center;
  transition: all 0.3s ease;
}
.header__level_toggle:hover, .header__level_toggle:focus {
  opacity: 0.7;
  background: none;
  border: none;
}
@media all and (min-width: 1220px) {
  .header__level_toggle {
    display: none !important;
  }
}

.header__subsection .header__level_toggle {
  height: 50px;
  line-height: 50px;
}

@media all and (min-width: 1220px) {
  .header__secondary .header__children {
    margin-top: 15px;
  }
}
@media all and (max-width: 1220px) {
  .header__children {
    display: none;
  }

  .header__externals,
.header__menu,
.header__mobile_links {
    border-top: 2px solid #EDEDE2;
  }

  .header__secondary .header__children {
    padding-top: 5px;
  }

  .header__section_opened > .header__section_tab {
    border-bottom: 1px solid #EDEDE2;
  }
  .header__section_opened > .header__level_toggle {
    color: #121212;
    opacity: 1;
  }
  .header__section_opened > .header__level_toggle:after {
    transform: rotate(270deg);
  }
  .header__section_opened > .header__level_toggle:before, .header__section_opened > .header__level_toggle:after {
    color: #121212;
    opacity: 1;
  }
  .header__section_opened > .header__mega {
    display: block;
  }
  .header__section_opened > .header__children {
    display: block;
  }
}
.header__mega {
  background: #fff;
  width: 100vw;
  transition: max-height 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}
@media all and (max-width: 1220px) {
  .header__mega {
    display: none;
  }
  .header__mega .header__mega_inner {
    background-color: #fafafa;
  }
}
@media all and (min-width: 1220px) {
  .header__mega {
    position: absolute;
    max-height: 0;
    overflow: hidden;
    left: 0;
  }
  .header__mega .header__mega_inner {
    padding: 50px 80px;
    position: relative;
  }
  .header__mega ol {
    opacity: 0;
    transition: all 0.3s ease-out;
  }
}
.header__mega .header__megalist {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.header__mega .header__megalist li {
  margin-bottom: 5px;
}
@media all and (max-width: 1220px) {
  .header__mega .header__megalist {
    flex-direction: column;
    padding-left: 30px;
    padding-right: 0;
    padding-bottom: 15px;
  }
  .header__mega .header__megalist li {
    margin-bottom: 0;
  }
  .header__mega .header__megalist li li {
    margin-top: 15px;
    padding-right: 60px;
  }
  .header__mega .header__megalist li li a:hover, .header__mega .header__megalist li li a:focus {
    text-decoration: underline;
  }
}
@media all and (min-width: 1220px) {
  .header__mega .header__megalist > li {
    flex-basis: 50%;
    padding-bottom: 30px;
  }
  .header__mega .header__megalist > li:nth-child(odd) {
    padding-right: 20px;
  }
  .header__mega .header__megalist > li:nth-child(even) {
    padding-left: 20px;
  }
}
@media all and (min-width: 1340px) {
  .header__mega .header__megalist > li {
    flex-basis: 25%;
    padding-left: 30px;
    padding-right: 30px;
  }
  .header__mega .header__megalist > li:nth-child(odd) {
    padding-right: 30px;
  }
  .header__mega .header__megalist > li:nth-child(even) {
    padding-left: 30px;
  }
  .header__mega .header__megalist > li:nth-child(4n+1) {
    padding-left: 0;
  }
  .header__mega .header__megalist > li:nth-child(4n+0) {
    padding-right: 0;
  }
}
.header__mega a {
  color: #343434;
  font-size: 14px;
  display: block;
  width: 100%;
  transition: all 0.2s ease-out;
  line-height: 20px;
  margin-bottom: 10px;
}
@media all and (max-width: 1220px) {
  .header__mega a {
    font-size: 12px;
  }
}
.header__mega .header__subsection > a {
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  border-bottom: 2px solid;
  padding-bottom: 5px;
  letter-spacing: -0.3px;
}
@media all and (max-width: 1220px) {
  .header__mega .header__subsection > a {
    border-bottom-width: 1px;
    font-size: 13px;
    line-height: 20px;
    padding: 15px 45px 14px 0;
    letter-spacing: -0.1px;
    margin: 0;
  }
}
.header__mega .header__subsection > a span {
  text-overflow: ellipsis;
  color: #343434;
  overflow: hidden;
}
.header__mega .header__subsection > a:hover, .header__mega .header__subsection > a:focus {
  text-decoration: none;
  opacity: 0.7;
}

.header__externals {
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease-out;
}
@media all and (max-width: 1220px) {
  .header__externals {
    flex-direction: column;
    margin: 65px 0;
    width: 100%;
    align-items: justify;
  }
}
.header__externals ol {
  display: flex;
  align-items: center;
}
@media all and (max-width: 1220px) {
  .header__externals ol {
    width: 100%;
    display: block;
  }
}
.header__externals li .icon,
.header__externals li .placeholder {
  height: 32px;
  width: 32px;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -16px;
}
@media all and (max-width: 1220px) {
  .header__externals li .icon,
.header__externals li .placeholder {
    left: 15px;
  }
}
.header__externals li .placeholder {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}
@media all and (max-width: 1220px) {
  .header__externals li {
    padding: 0;
    width: 100%;
  }
  .header__externals li .placeholder {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  .header__externals li a:after {
    right: 24px;
  }
}
.header__externals li a {
  color: #fff;
  height: 50px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 25px 10px 40px;
  margin-left: 15px;
  font-size: 15px;
  line-height: 15px;
  display: flex;
  position: relative;
  cursor: pointer;
  align-items: center;
  transition: all 0.3s ease-out;
}
.header__externals li a:hover, .header__externals li a:focus {
  text-decoration: none;
  opacity: 0.7;
}
.header__externals li a:after {
  content: "";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  color: #0066ff;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -7px;
  vertical-align: middle;
}
@media all and (min-width: 1220px) {
  .header__externals li a {
    max-width: 145px;
  }
}
@media all and (min-width: 1340px) {
  .header__externals li a {
    margin-left: 20px;
  }
}
@media all and (max-width: 1220px) {
  .header__externals li a {
    color: #121212;
    margin-left: 0;
    font-size: 13px;
    border-bottom: 2px solid #EDEDE2;
    padding-left: 55px;
    height: 60px;
  }
}
.header__externals .header__external_link a:after {
  content: "";
}
@media all and (max-width: 1220px) {
  .header__externals .header__external a:after {
    width: 60px;
    text-align: center;
  }
}

.header__section_open .header__mega {
  max-height: calc(100vh - 160px);
}
@media all and (min-width: 1340px) {
  .header__section_open .header__mega {
    max-height: calc(100vh - 180px);
  }
}
.header__section_open .header__mega ol {
  opacity: 1;
}

/* when the menu is open, lock the page */
@media all and (min-width: 1220px) {
  .mega__open .header__mega {
    overflow-y: auto;
  }
}
.mega__open #page-wrapper:after {
  opacity: 0.9;
  transition-delay: 0s;
  pointer-events: initial;
}
@media all and (max-width: 1220px) {
  .mega__open {
    overflow: hidden;
    height: 100vh;
  }
  .mega__open .header__secondary {
    transform: translateX(0);
  }
}

.search__open .header__search_toggle {
  display: none;
}
.search__open .header__search {
  padding: 10px 20px;
  max-height: 60px;
}
.search__open #page-wrapper:after {
  opacity: 0.9;
  pointer-events: initial;
}

#page-wrapper:after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 98;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
  transition-delay: 600ms;
}

/* when the user has scrolled > 80px */
@media all and (min-width: 1220px) {
  .header__locked .header {
    transform: translateY(-80px);
  }
  .header__locked .header__secondary {
    height: 90px;
  }
  .header__locked .header__section .header__section_tab {
    height: 90px;
  }
  .header__locked .header__search {
    transform: translateY(85px);
  }
  .header__locked .header__search input.text {
    width: 240px;
  }
  .header__locked .header__externals {
    opacity: 0;
    pointer-events: none;
  }
  .header__locked .header__section_open .header__mega {
    max-height: calc(100vh - 90px);
  }
}
@media all and (min-width: 1460px) {
  .header__locked .header__search input.text {
    width: 356px;
  }
}

.header__search_toggle {
  cursor: pointer;
}
.header__search_toggle:hover, .header__search_toggle:focus {
  opacity: 0.7;
}
.header__search_toggle .fa-search:before {
  content: "";
}
@media all and (min-width: 1220px) {
  .header__search_toggle {
    display: none !important;
  }
}

.hamburger {
  padding: 15px 14px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  border-radius: 0;
  height: 100%;
  overflow: visible;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 1;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

.hamburger-box {
  width: 22px;
  height: 100%;
  display: block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 22px;
  height: 4px;
  background-color: #fff;
  border-radius: 3px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active {
  background: #fff;
}
.hamburger--squeeze.is-active .hamburger-inner,
.hamburger--squeeze.is-active .hamburger-inner::before,
.hamburger--squeeze.is-active .hamburger-inner::after {
  background-color: #0066ff;
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media all and (max-width: 1220px) {
  #BetterNavigator {
    display: none;
  }
}

.header__mobile_links {
  margin-bottom: 40px;
}
@media all and (min-width: 1220px) {
  .header__mobile_links {
    display: none;
  }
}
.header__mobile_links a {
  border-bottom: 2px solid #EDEDE2;
  color: #121212;
  font-weight: 700;
  font-size: 13px;
  display: block;
  width: 100%;
  line-height: 15px;
  position: relative;
  padding: 21px 65px 21px 15px;
}
.header__mobile_links a:hover, .header__mobile_links a:focus {
  text-decoration: none;
  opacity: 0.7;
}
.header__mobile_links a:after {
  content: "";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  color: #0066ff;
  position: absolute;
  right: 0;
  top: 50%;
  width: 60px;
  text-align: center;
  margin-top: -7px;
  vertical-align: middle;
}

.header__subsection .header__child .header__level_toggle {
  height: 20px;
  line-height: 20px;
}

.header__subchildren {
  display: none;
  opacity: 0.76;
}

.header__section_opened + .header__subchildren {
  display: block;
  padding-left: 15px;
}

@media all and (min-width: 1220px) {
  .header__subchildren {
    display: none !important;
  }
}
.breadcrumbs {
  padding: 15px 0 9px 0;
  font-size: 0;
  font-weight: 500;
  line-height: 1;
  color: #757575;
  border-bottom: 1px solid #EDEDE2;
  position: relative;
  z-index: 2;
}
.breadcrumbs a {
  transition: all 0.3s ease-out;
  color: #757575;
  text-decoration: none;
  font-weight: 500;
}
.breadcrumbs a:hover, .breadcrumbs a:focus {
  color: #757575;
  opacity: 0.8;
}
.breadcrumbs .breadcrumb__link {
  font-size: 0;
}
.breadcrumbs .breadcrumb__link-text {
  font-size: 12px;
  font-weight: 500;
  line-height: 2;
}
.breadcrumbs .breadcrumb__link-ellipses {
  font-size: 12px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 2px;
  display: none;
}
.breadcrumbs .breadcrumb__crumb--collapse .breadcrumb__link-text {
  display: none;
}
.breadcrumbs .breadcrumb__crumb--collapse .breadcrumb__link-ellipses {
  display: inline-block;
}
.breadcrumbs__home {
  display: block;
  height: 17px;
  width: 17px;
  background: url(../images/icon_home-grey.svg) no-repeat center;
  background-size: 17px 17px;
  position: absolute;
  left: 0;
  top: 1px;
}
.breadcrumbs__seperate {
  padding: 0 10px;
  font-size: 17px;
  line-height: 1;
  color: #EDEDE2;
}
.breadcrumbs__links {
  padding-left: 20px;
  position: relative;
  min-height: 25px;
}
.breadcrumbs__links span {
  line-height: 1;
}
.breadcrumbs__links > span:last-child .breadcrumbs__seperate {
  display: none;
}
.breadcrumbs__links .breadcrumbs__back {
  display: none;
  font-size: 12px;
  font-weight: 500;
  line-height: 2;
}
@media all and (max-width: 800px) {
  .breadcrumbs__links > span:not(.breadcrumbs__back) {
    display: none;
  }
  .breadcrumbs__links .breadcrumbs__back {
    display: block;
  }
  .breadcrumbs__links .breadcrumbs__back .breadcrumbs__seperate {
    display: inline-block;
  }
}
.breadcrumbs .inner {
  display: flex;
  justify-content: space-between;
}
.breadcrumbs__utilities {
  list-style-type: none;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  margin: 0;
  padding-left: 20px;
}
@media all and (max-width: 800px) {
  .breadcrumbs__utilities {
    display: none;
  }
}
.breadcrumbs__utilities a {
  display: flex;
  justify-content: center;
  font-size: 12px;
  line-height: 1.5;
}
.breadcrumbs__utilities > li {
  display: inline-block;
}
.breadcrumbs__utilities > li + li {
  margin-left: 20px;
}
.breadcrumbs__utilities > li > a:before {
  display: inline-block;
  margin-right: 6px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 17px;
}
.breadcrumbs__utilities > li.share > a:before {
  background: url(../images/icon_share_grey.svg) no-repeat center center;
  width: 17px;
  height: 17px;
  background-size: 17px 17px;
  display: block;
  content: "";
}
.breadcrumbs__utilities > li.print > a:before {
  content: "";
  line-height: 1;
}
.breadcrumbs__utilities > li.feedback > a:before {
  content: "";
  line-height: 1;
}
.breadcrumbs__utilities li.share {
  position: relative;
}
.breadcrumbs__utilities li.share a:hover:before, .breadcrumbs__utilities li.share a:focus:before {
  color: #fff;
}
.breadcrumbs__utilities li.share > ul {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: -60px;
  margin-top: 5px;
  padding: 10px;
  background-color: #FFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  transition: all 0.3s;
  border: 1px solid #EDEDE2;
}
.breadcrumbs__utilities li.share > ul:before {
  content: "";
  position: absolute;
  top: -7px;
  left: 58px;
  border-bottom: solid 6px #EDEDE2;
  border-left: solid 6px transparent;
  border-right: solid 6px transparent;
}
.breadcrumbs__utilities li.share > ul li {
  display: inline-block;
}
.breadcrumbs__utilities li.share.active > ul {
  opacity: 1;
  visibility: visible;
  width: 230px;
}

.scheme__yellow .breadcrumbs__seperate {
  color: #FFD444;
}
.scheme__blue .breadcrumbs__seperate {
  color: #1470E1;
}
.scheme__green .breadcrumbs__seperate {
  color: #58B947;
}
.scheme__bright-blue .breadcrumbs__seperate {
  color: #0066ff;
}
.scheme__teal .breadcrumbs__seperate {
  color: #13ACBD;
}
.scheme__red .breadcrumbs__seperate {
  color: #E4243B;
}

main form.ais-SearchBox-form {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  padding-top: 1rem;
}

.ais-Pagination-list {
  display: flex;
  justify-content: center;
}

.ais-Pagination-list li {
  list-style: none;
  margin: 0;
}

.ais-Pagination-list li a:after {
  display: none;
}

.ais-SearchBox {
  position: relative;
}

.ais-SearchBox-reset {
  display: none;
}

.ais-SearchBox .ais-SearchBox-submit {
  background: none;
  position: absolute;
  top: 50%;
  transform: translateY(-8px);
  height: 16px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ais-SearchBox .ais-SearchBox-submit:hover,
.ais-SearchBox .ais-SearchBox-submit:focus {
  opacity: 0.7;
}

.ais-SearchBox-loadingIndicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 60px;
}

.ais-SearchBox .ais-SearchBox-submit svg {
  width: 16px;
  height: 16px;
}

.ais-Hits-item {
  padding: 0;
  list-style: none;
  margin: 0;
}

.ais-Hits-list {
  margin: 0;
  padding: 0;
}

main .hit-name a:after,
main .hit-link a:after {
  display: none;
}

.search-results-meta {
  display: flex;
  justify-content: space-between;
}

/* 5px gap, verticial alignment */
/* stylelint-disable-next-line unit-blacklist */
/*
  ==========================
  footer
  ==========================
*/
html {
  background-color: #2C2C2C;
  /* scrolling past should be the same color */
}

#footer {
  background-color: #2C2C2C;
  font-size: 0.9rem;
  line-height: 1.5625;
  letter-spacing: -0.016rem;
}
#footer p {
  font-size: 0.8333rem;
  line-height: 1.3333;
}
#footer a {
  text-decoration: none;
  transition: all 0.2s ease-out;
}
#footer a:hover, #footer a:focus {
  text-decoration: underline;
}
#footer li {
  font-size: 0.9rem;
}
#footer .footer__upper {
  margin-top: 0.2777rem;
  padding: 1.1108rem 0 1.1108rem 0;
  background-color: #edede2;
  color: #333333;
}
#footer .footer__upper .footer__upper .inner > div {
  float: left;
  width: 24%;
}
#footer .footer__upper h3 {
  font-size: 1rem;
  line-height: 1.6666;
  letter-spacing: -0.038rem;
  margin-bottom: 0.5554rem;
}
#footer .footer__lower {
  padding: 2.777rem 0;
  background-color: #2C2C2C;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.5625;
  letter-spacing: -0.016rem;
}
#footer .footer__bottom {
  background-color: #2C2C2C;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.5625;
  letter-spacing: -0.016rem;
}
@media all and (max-width: 800px) {
  #footer .statement {
    margin: 2.2216rem 0 4.4432rem;
    text-align: center;
    font-size: 0.8333rem;
    line-height: 1.3333;
  }
}
#footer .link-button {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0.4998444444rem 34px 0.4998444444rem 10px;
  border: solid 1px #ccc;
  border-radius: 0.5rem;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.2;
  color: #0066ff;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s;
}
#footer .link-button:after {
  display: none;
}
#footer .link-button:hover, #footer .link-button:focus {
  background-color: #0066ff;
  color: #fff;
}
#footer .social-links a {
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #fff;
  line-height: 38px;
  color: #666666;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}
#footer .social-links a span {
  display: none;
}
#footer .social-links a:before {
  content: "";
  display: inline;
  font-size: 24px;
  line-height: 1.66;
  font-family: "Font Awesome 5 Brands";
  font-weight: 900;
}
#footer .social-links a:hover,
#footer .social-links a:focus {
  color: #fff;
  text-decoration: none;
}
#footer .social-links a.fb:hover,
#footer .social-links a.fb:focus,
#footer .social-links a.facebook:hover,
#footer .social-links a.facebook:focus {
  background-color: #3b5998 !important;
}
#footer .social-links a.twtr:hover,
#footer .social-links a.twtr:focus,
#footer .social-links a.twitter:hover,
#footer .social-links a.twitter:focus {
  background-color: #32a7d3 !important;
}
#footer .social-links a.rss:hover,
#footer .social-links a.rss:focus {
  background-color: #f88b02 !important;
}
#footer .social-links a.lkin:hover,
#footer .social-links a.lkin:focus {
  background-color: #0078b1 !important;
}
#footer .social-links a.ggplus:hover,
#footer .social-links a.ggplus:focus {
  background-color: #dc3e2e !important;
}
#footer .social-links a.pint:hover,
#footer .social-links a.pint:focus {
  background-color: #cb2027 !important;
}
#footer .social-links a.email:hover,
#footer .social-links a.email:focus {
  background-color: #bbca0c !important;
}
#footer .social-links a.vmo:hover,
#footer .social-links a.vmo:focus {
  background-color: #17aee1 !important;
}
#footer .social-links a.ytb:hover,
#footer .social-links a.ytb:focus,
#footer .social-links a.youtube:hover,
#footer .social-links a.youtube:focus {
  background-color: #cc181e !important;
}
#footer .social-links a.fb:before,
#footer .social-links a.facebook:before {
  content: "";
}
#footer .social-links a.twtr:before,
#footer .social-links a.twitter:before {
  content: "";
}
#footer .social-links a.rss:before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
#footer .social-links a.lkin:before {
  content: "";
}
#footer .social-links a.pint:before {
  content: "";
}
#footer .social-links a.email:before {
  content: "";
}
#footer .social-links a.vmo:before {
  content: "";
}
#footer .social-links a.ytb:before,
#footer .social-links a.youtube:before {
  content: "";
}

#footer #footer-social-links {
  float: left;
  width: 24%;
  margin-right: 1.333%;
}
@media all and (max-width: 800px) {
  #footer #footer-social-links {
    float: none;
    width: auto;
    margin-right: 0;
    padding-bottom: 2rem;
  }
}

#footer #footer-news-links {
  width: 74.66%;
  float: left;
}
@media all and (max-width: 800px) {
  #footer #footer-news-links {
    width: 100%;
    float: none;
  }
}

#footer .footer__upper #footer .footer__upper p + p {
  margin-top: 0.2777rem;
}

#footer-news-links ul {
  list-style-type: none;
  width: 100%;
  margin: 0;
  padding: 0;
  -moz-column-count: 3;
       column-count: 3;
  perspective: 1;
}
@media all and (max-width: 800px) {
  #footer-news-links ul {
    -moz-column-count: 1;
         column-count: 1;
  }
}

#footer-news-links ul li {
  margin-bottom: 0.2777rem;
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  display: inline-block;
  width: 100%;
}

#footer .footer__lower .inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footer .footer__lower nav {
  width: 100%;
}

#footer .footer__lower nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#footer .footer__lower nav ul.alt {
  margin-top: 0.5554rem;
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 800px) {
  #footer .footer__lower nav ul.alt {
    flex-direction: column;
    align-items: center;
  }
}

#footer .footer__lower nav ul li {
  display: inline-block;
}
@media all and (max-width: 800px) {
  #footer .footer__lower nav ul li {
    display: block;
    margin-bottom: 1rem;
  }
}

#footer .footer__lower nav ul li + li:before {
  content: "  ";
  margin: 0 0.5554rem;
  opacity: 0.2;
}
@media all and (max-width: 800px) {
  #footer .footer__lower nav ul li + li:before {
    display: none;
  }
}

#footer .footer__lower nav a {
  color: #fff;
  font-weight: bold;
}

#footer .footer__lower nav .social-links a {
  color: #2C2C2C;
  text-decoration: none;
}
#footer .footer__lower nav .social-links a:hover, #footer .footer__lower nav .social-links a:focus {
  color: #fff;
}

#footer .footer__lower .ministry-links {
  display: flex;
  flex-direction: row;
  align-content: center;
  text-align: right;
  white-space: nowrap;
  justify-content: flex-end;
}

#footer .footer__lower .ministry-links > * {
  display: block;
  align-self: center;
  justify-content: flex-end;
}

#footer .ministry-links > * + * {
  margin-left: 30px;
}

#moe-footer-link,
#moe-footer-link a {
  width: 192px;
  height: 62px;
}
#moe-footer-link img,
#moe-footer-link a img {
  max-width: 100%;
  max-height: 100%;
}

#moe-footer-link img {
  transition: 0.2s ease-out;
  display: block;
}

#moe-footer-link a:hover img {
  opacity: 0.8;
}

#nz-govt-footer-link,
#nz-govt-footer-link a {
  width: 220px;
}
#nz-govt-footer-link img,
#nz-govt-footer-link a img {
  max-width: 100%;
  transition: 0.2s ease-out;
  display: block;
}

#nz-govt-footer-link a:hover img {
  opacity: 0.8;
}

.copyright-line {
  padding-top: 2.2216rem;
  padding-bottom: 2.2216rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media all and (max-width: 800px) {
  .copyright-line {
    flex-direction: column;
    align-items: center;
  }
}
.copyright-line a {
  color: inherit;
}
.copyright-line p {
  margin: 0;
  font-size: 0.8333rem;
  line-height: 1.3333;
}

.footer-cta {
  padding: 2.2216rem 0;
}
.footer-cta .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (max-width: 800px) {
  .footer-cta .wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.footer-cta p {
  font-size: 1.25rem;
  letter-spacing: -0.044rem;
  line-height: 1.3333;
  font-weight: bold;
  margin: 0 0 0.5554rem;
  background-size: auto 52px;
}
@media all and (min-width: 960px) {
  .footer-cta p {
    margin: 0;
    font-size: 1.563rem;
    letter-spacing: -0.044rem;
    line-height: 1.25;
  }
}
.footer-cta a {
  background: #1470E1;
  text-transform: uppercase;
  border: 2px solid #1470E1;
  color: #FFF;
  padding: 0.9996888889rem 20px;
  text-align: center;
  font-weight: bold;
  border-radius: 2px;
  text-decoration: none;
  font-size: 15px;
  margin-left: 30px;
  line-height: 1;
  z-index: 1;
  overflow: hidden;
  white-space: pre;
  position: relative;
  display: inline-block;
  transition: all 250ms ease;
}
@media all and (max-width: 800px) {
  .footer-cta a {
    padding-top: 0.4442888889rem;
    margin: 0;
    padding-bottom: 0.4442888889rem;
    letter-spacing: -0.9px;
    font-weight: 600;
  }
}
.footer-cta a.external--link {
  padding-right: 35px;
}
.footer-cta a.external--link:after {
  content: "";
}
.footer-cta a.external--link:before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  position: absolute;
  top: 50%;
  color: #fff;
  right: 20px;
  transform: translateY(-50%);
}
.footer-cta a:hover, .footer-cta a:focus {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  color: #FFF;
  background: #0D5CBA;
  border-color: #0D5CBA;
  text-decoration: none;
}
.footer-cta a:active {
  border-color: #0D5CBA;
  color: rgba(255, 255, 255, 0.7);
}

@media print {
  #footer .footer__bottom {
    background-color: #fff;
    color: #2C2C2C;
  }
}
/* Required
   ========================================================================== */
/* Core
   ========================================================================== */
#collapsible-container .collapsible-item-header {
  font-size: 18px;
  font-weight: bold;
  background-color: #f6f7f2;
  border-top: solid 3px #e1e2d3;
  border-bottom: solid 1px #e1e2d3;
  display: inline-block;
  width: 100%;
  padding: 13px 10px;
  margin-top: 25px;
  margin-top: 1.3888888889rem;
  transition: all 0.2s linear;
}
#collapsible-container .collapsible-item-header:hover {
  color: #0066ff;
  cursor: pointer;
}
#collapsible-container .collapsible-item-header:focus {
  background-color: #e1e2d3;
  color: #333333;
}
#collapsible-container .collapsible-item-header:before {
  margin: 0px 5px !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #666666;
}
#collapsible-container .panel-expand:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #666666;
}

@media print {
  #collapsible-container h2 {
    font-size: 32px !important;
  }
  #collapsible-container .ui-accordion-header-icon {
    display: none !important;
  }
  #collapsible-container .ui-accordion-header {
    font-size: 32px !important;
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin-top: 25px !important;
  }
  #collapsible-container .document-header {
    font-size: 32px !important;
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin-top: 25px !important;
  }
  #collapsible-container .document-header:before {
    display: none;
  }
  #collapsible-container .document-summary {
    display: block !important;
  }
}
/* Vendor
   ========================================================================== */
.fa {
  display: inline-block;
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #ffffff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper-square:before,
.fa-pied-piper:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

/* sticky footer */
/* ------------- */
html {
  min-height: 100%;
  overflow: visible;
}

body {
  height: auto;
  min-height: 100vh;
  overflow-x: hidden;
}

#page-wrapper {
  display: table;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 300px);
  transition: opacity 0.34s ease;
}

#page-wrapper-inner,
#page-foot {
  display: table-row;
  height: 1px;
  width: 100%;
}

#page-wrapper-inner {
  height: auto;
}

/* page boundary */
/* ------------- */
.wrapper {
  margin: 0 auto;
  padding: 0 20px;
  min-width: 320px;
  max-width: 1160px;
}

/* link tabs */
/* --------- */
#link-tabs {
  float: right;
  list-style-type: none;
  margin: 0;
  padding: 30px 0 0 0;
}

#link-tabs > li {
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  transition: all 0.3s;
}

#link-tabs > li:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background-color: transparent;
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s;
}

#link-tabs > li:hover:after {
  z-index: 12;
  visibility: visible;
  opacity: 1;
}

#link-tabs > li + li {
  margin-left: 10px;
}

#link-tabs > li > .inner > a {
  position: relative;
  display: block;
  height: 73px;
  padding: 16px 12px 0;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  color: #151515;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s;
}

#link-tabs > li > .inner > a:hover,
#link-tabs > li > .inner > a:focus {
  z-index: 10;
}

#link-tabs > li.turquoise:hover:after,
#link-tabs > li.turquoise > .inner,
#link-tabs > li.turquoise > .inner > a {
  background-color: #77bdcf;
}

#link-tabs > li.sand:hover:after,
#link-tabs > li.sand > .inner,
#link-tabs > li.sand > .inner > a {
  background-color: #edede2;
}

#link-tabs > li.grey:hover:after,
#link-tabs > li.grey > .inner,
#link-tabs > li.grey > .inner > a {
  background-color: #d0d0d0;
}

#link-tabs > li.teal:hover:after,
#link-tabs > li.teal > .inner,
#link-tabs > li.teal > .inner > a {
  background-color: #00acbd;
}

/*
  ==========================
  page section title
  ==========================
*/
#section-title {
  display: none;
  position: absolute;
  overflow: hidden;
}

/* general social links styling */
/* ---------------------------- */
.social-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.social-links a {
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
  line-height: 38px;
  color: #666666;
  text-align: center;
  margin-right: 5px;
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a span {
  display: none;
}

.social-links a:before {
  content: "";
  display: inline;
  font-size: 24px;
  line-height: 1.66;
  font-family: "Font Awesome 5 Brands";
  font-weight: 900;
}

.social-links a:hover,
.social-links a:focus,
.social-links a.document-accordion {
  color: #fff;
  text-decoration: none;
}

.social-links a.fb:hover,
.social-links a.fb:focus {
  background-color: #3b5998 !important;
}

.social-links a.twtr:hover,
.social-links a.twtr:focus {
  background-color: #32a7d3 !important;
}

.social-links a.rss:hover,
.social-links a.rss:focus {
  background-color: #f88b02 !important;
}

.social-links a.lkin:hover,
.social-links a.lkin:focus {
  background-color: #0078b1 !important;
}

.social-links a.ggplus:hover,
.social-links a.ggplus:focus {
  background-color: #dc3e2e !important;
}

.social-links a.pint:hover,
.social-links a.pint:focus {
  background-color: #cb2027 !important;
}

.social-links a.link:hover,
.social-links a.link:focus,
.social-links a.done {
  background-color: #0066ff !important;
}

.social-links a.email:hover,
.social-links a.email:focus {
  background-color: #bbca0c !important;
}

.social-links a.vmo:hover,
.social-links a.vmo:focus {
  background-color: #17aee1 !important;
}

.social-links a.ytb:hover,
.social-links a.ytb:focus {
  background-color: #cc181e !important;
}

.social-links a.insta:hover,
.social-links a.insta:focus {
  background-color: #5751db !important;
}

.social-links a.fb:before {
  content: "";
}

.social-links a.twtr:before {
  content: "";
}

.social-links a.rss:before {
  content: "";
}

.social-links a.lkin:before {
  content: "";
}

.social-links a.ggplus:before {
  content: "";
}

.social-links a.pint:before {
  content: "";
}

.social-links a.link:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
}

.social-links a.done:before {
  content: "";
}

.social-links a.email:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
}

.social-links a.vmo:before {
  content: "";
}

.social-links a.ytb:before {
  content: "";
}

.social-links a.insta:before {
  content: "";
}

/*
  ==========================
  main body
  ==========================
*/
#main-page {
  min-height: 200px;
  padding-top: 32px;
  padding-bottom: 60px;
  position: relative;
}

#main-page.full-width #secondary-nav,
#main-page.full-width main + aside {
  display: none;
}

.nonvisual-indicator {
  display: none;
}

/*
  ==========================
  secondary nav
  ==========================
*/
#secondary-nav {
  display: block;
  float: right;
  width: 28.12%;
  margin-bottom: 50px;
}

#secondary-nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#secondary-nav ul li {
  list-style-type: none;
}

#secondary-nav ul li + li {
  border-top: solid 1px #e1e2d3;
}

#secondary-nav ul li a {
  display: block;
  padding: 10px 10px 10px 30px;
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #666666;
  transition: all 0.2s;
}

#secondary-nav ul li a:hover,
#secondary-nav ul li a:focus {
  background-color: #e1e2d3;
  color: #333333;
}

#secondary-nav ul li a.active {
  color: #0060F0;
}

#secondary-nav > ul ul li {
  border-top: solid 1px #e1e2d3;
}

/* tier 2 */
/* ------ */
#secondary-nav > ul > li > a {
  font-weight: 500;
  letter-spacing: -0.7px;
}

/* tier 3 */
/* ------ */
#secondary-nav > ul > li > ul {
  padding-left: 40px;
}

#secondary-nav > ul > li > ul > li > a {
  margin-left: -30px;
  font-size: 14px;
}

/* tier 4 */
/* ------ */
#secondary-nav > ul > li > ul > li > ul > li > a {
  margin-left: 3px;
  padding-left: 10px;
  font-size: 13px;
}

/* tier 5 */
/* ------ */
#secondary-nav > ul > li > ul > li > ul > li > ul > li a {
  margin-left: -30px;
  padding-left: 50px;
  font-size: 11px;
}

/*
  ==========================
  main content
  ==========================
*/
#main-content {
  float: left;
  width: 66.07%;
}

/*
  ==========================
  main content aside
  ==========================
*/
#main-page > aside {
  display: block;
  float: right;
  clear: right;
  width: 28.12%;
  font-size: 1rem;
}

/*
  ==========================
  common box wrapper
  ==========================
*/
.box-wrapper {
  background-color: #f6f7f2;
  border-top: solid 3px #e1e2d3;
  border-bottom: solid 1px #e1e2d3;
}

.box-wrapper .inner {
  padding: 0 30px;
}

.box-wrapper.red {
  border-top-color: #E4243B;
}

.box-wrapper.yellow {
  border-top-color: #feb61e;
}

.box-wrapper.green {
  border-top-color: #bbca0c;
}

.box-wrapper.dark-green {
  border-top-color: #4a7729;
}

.box-wrapper.blue {
  border-top-color: #6cace4;
}

.box-wrapper.navy {
  border-top-color: #003865;
}

.box-wrapper.teal {
  border-top-color: #13ACBD;
}

.box-wrapper.bright-blue {
  border-top-color: #0066ff;
}

/*
  ==========================
  common widgets
  ==========================
*/
#main-page > aside > * + * {
  margin-top: 20px;
}

#main-page > aside .box-wrapper .inner {
  padding-top: 20px;
  padding-bottom: 20px;
}

#main-page > aside .box-wrapper h2 {
  margin-bottom: 16px;
  margin-top: 0;
  font-weight: 700;
  font-size: 15px;
  color: #666666;
  text-transform: uppercase;
}

#main-page > aside .box-wrapper p {
  margin-top: 6px;
  margin-bottom: 0;
}

#main-page > aside .box-wrapper .inner * + * {
  margin-top: 6px;
}

/* link list */
/* --------- */
#main-page > aside .box-wrapper .link-button-list {
  list-style-type: none;
  background-color: #fff;
  border: solid 1px #ccc;
  border-radius: 0.5rem;
}

#main-page > aside .box-wrapper .link-button-list.open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

#main-page > aside .box-wrapper .link-button-list > li {
  position: relative;
  color: #666666;
}

#main-page > aside .box-wrapper .link-button-list li span,
#main-page > aside .box-wrapper .link-button-list li a {
  position: relative;
  display: block;
  padding: 8px 34px 8px 10px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
}

#main-page > aside .box-wrapper .link-button-list li span:after,
#main-page > aside .box-wrapper .link-button-list li a:after {
  position: absolute;
  top: 9px;
  right: 10px;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

#main-page > aside .box-wrapper .link-button-list li span:after {
  content: "";
}

#main-page > aside .box-wrapper .link-button-list > li > span:hover,
#main-page > aside .box-wrapper .link-button-list > li > span:focus,
#main-page > aside .box-wrapper .link-button-list.open > li > span {
  color: #0066ff;
}

#main-page > aside .box-wrapper .link-button-list.open li span:after {
  content: "";
}

#main-page > aside .box-wrapper .link-button-list ul {
  display: block;
  margin: 0;
  position: absolute;
  z-index: 10;
  top: 100%;
  left: -1px;
  right: -1px;
  background-color: #fff;
  border: solid 1px #ccc;
  overflow: hidden;
  list-style-type: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.no-js #main-page > aside .box-wrapper .link-button-list ul {
  position: static;
  border: none;
  visibility: visible;
  opacity: 1;
}

#main-page > aside .box-wrapper .link-button-list.open ul {
  opacity: 1;
  visibility: visible;
}

#main-page > aside .box-wrapper .link-button-list ul li {
  margin: 0;
}

#main-page > aside .box-wrapper .link-button-list ul li + li {
  border-top: solid 1px #ccc;
}

#main-page > aside .box-wrapper .link-button-list ul li a {
  color: #666666;
  transition: all 0.3s;
}

#main-page > aside .box-wrapper .link-button-list ul li a:hover,
#main-page > aside .box-wrapper .link-button-list ul li a:focus {
  background-color: #0066ff;
  color: #fff;
}

/*
  ===============================================================================
  TYPOGRAPHY
  ===============================================================================
*/
body,
select,
input,
textarea {
  color: #555555;
  line-height: 1.5;
}

main {
  word-wrap: break-word;
}

.fa {
  font-family: "Font Awesome 5";
}

/*
  ==========================
  headings / titles
  ==========================
*/
h1#page-title {
  margin-bottom: 1.111rem;
  font-weight: 800;
  font-size: 2.444rem;
  letter-spacing: -2.25px;
  line-height: 1.13636;
  color: #252738;
}

/* heading */
/* ------- */
h2 {
  font-size: 1.555rem;
  line-height: 1.25;
  letter-spacing: -1.4px;
  font-weight: 800;
  color: #2E3042;
  clear: both;
}

/* sub-heading */
/* ----------- */
h3 {
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.333;
  letter-spacing: -1.4px;
  color: #2E3042;
  clear: both;
}

/* minor heading */
/* ------------- */
h4 {
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.388;
  letter-spacing: -0.1px;
  color: #2E3042;
}

/* minor heading 2 */
/* --------------- */
h5 {
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.388;
  letter-spacing: -0.1px;
  color: #2E3042;
}

/* minor heading 3 */
/* --------------- */
h6 {
  font-size: 1rem;
  line-height: 1.388;
  font-weight: normal;
}

/* header spacing */
/* -------------- */
main h1 + *,
main h2 + *,
main h3 + *,
main h4 + *,
main h5 + *,
main h6 + * {
  margin-top: 0.3333rem;
}

main * + h2 {
  margin-top: 1.6667rem;
  margin-bottom: 0.5555rem;
}

main * + h3,
main * + h4,
main * + h5,
main * + h6 {
  margin-top: 1.5555rem;
}

main h1 + h2,
main h1 + h3,
main h1 + h4,
main h1 + h5,
main h1 + h6,
main h2 + h3,
main h2 + h4,
main h2 + h5,
main h2 + h6,
main h3 + h4,
main h3 + h5,
main h3 + h6,
main h4 + h5,
main h4 + h6,
main h5 + h6 {
  margin-top: 0.333rem !important;
}

main hr + h2,
main hr + h3,
main hr + h4,
main hr + h5,
main hr + h6 {
  margin-top: 1rem !important;
}

/*
  ==========================
  paragraphs
  ==========================
*/
main .intro {
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -1px;
  line-height: 1.33333;
  margin-bottom: 0.833rem;
  color: #555555;
}

p,
main p + p,
main * + p {
  font-size: 1rem;
  margin-top: 0.8333rem;
  letter-spacing: -0.8px;
  line-height: 1.666;
  font-weight: 400;
}

main li {
  font-size: 1rem;
  letter-spacing: -0.8px;
  line-height: 1.666;
  font-weight: 400;
  margin-bottom: 0.555rem;
}

main li:last-child {
  margin-bottom: 0.8333rem;
}

/* page updated and feedback */
/* ------------------------- */
main p.updated-feedback {
  margin-top: 2.222rem;
  border-top: solid 3px #e1e2d3;
  padding-top: 0.667rem;
  clear: both;
  font-size: 0.7777rem;
  line-height: 0.833rem;
}

main p.updated-feedback span {
  display: inline-block;
}

main p.updated-feedback span + span {
  margin-left: 0.222rem;
}

main p.updated-feedback span + span:before {
  content: "|";
  display: inline-block;
  margin-right: 0.222rem;
  opacity: 0.2;
}

/*
  ==========================
  links
  ==========================
*/
a {
  color: #0066ff;
  text-decoration: none;
}

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

main a.external:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  font-size: 75%;
  margin-left: 5px;
  position: relative;
  top: -1px;
}

main figure > a.external:after,
main figure > a.external:after,
main a.image_exteranl_link:after {
  content: none;
}

a.no-underline {
  text-decoration: none;
}

a > .fileExt {
  color: #666666;
  display: inline-block;
  margin-left: 5px;
}

a > .fileExt:hover {
  cursor: default;
}

/* button links */
/* ------------ */
a.link-button {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0.444rem 1.888rem 0.444rem 0.555rem;
  border: solid 1px #ccc;
  border-radius: 0.2777rem;
  background-color: #fff;
  font-weight: 500;
  letter-spacing: -0.7px;
  font-size: 0.8333rem;
  line-height: 1.2;
  color: #0066ff;
  text-decoration: none;
  transition: all 0.3s;
}

a.link-button:after {
  content: "";
  position: absolute;
  top: 9px;
  right: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

a.link-button:hover,
a.link-button:focus {
  background-color: #0066ff;
  color: #fff;
}

main .link-button[href^="http://"]:after,
main .link-button[href^="https://"]:after {
  content: "";
  position: absolute;
  top: 9px;
  right: 10px;
}

/*
  ==========================
  main content imagery
  ==========================
*/
main figure {
  display: block;
  float: left;
  width: 20.55rem;
  overflow: hidden;
  margin: 0.777rem 0.833rem 0.333rem 0;
}

main figure img {
  display: block;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

main figure figcaption {
  display: block;
  margin-top: 2px;
  padding: 10px 12px;
  background-color: #f6f7f2;
  border-top: solid 3px #e1e2d3;
  border-bottom: solid 1px #e1e2d3;
  font-weight: 500;
  color: #333333;
  font-size: 15px;
  line-height: 1.34;
}

main h2 + figure,
main h3 + figure,
main h4 + figure,
main h5 + figure {
  margin-top: 14px !important;
}

/* full width image */
/* ---------------- */
main figure.full-width {
  float: none;
  width: 100%;
  margin: 0;
}

main figure.full-width img {
  width: 100%;
}

main * + figure.full-width {
  margin-top: 14px;
}

/*
  ==========================
  content lists
  ==========================
*/
main ul {
  margin: 0 0 0 30px;
  list-style-type: disc;
  /* fix for bad markup */
}
main ul > ul {
  margin: 0;
}
main ul > ul > ul {
  margin: 0;
}

main ol {
  margin: 0 0 0 30px;
  /* fix for bad markup */
}
main ol > ol {
  margin: 0;
}
main ol > ol > ol {
  margin: 0;
}

main ol ol {
  margin: 0 0 0 0.8333rem;
}

main ol li + li,
main ul li + li {
  margin-top: 0.225rem;
}

main * + ul,
main * + ol {
  margin-top: 0.555rem;
}

/*
  ==========================
  forms
  ==========================
*/
main form {
  background-color: #f6f7f2;
  border-top: solid 3px #e1e2d3;
  border-bottom: solid 1px #e1e2d3;
  padding: 1.22rem 1.111rem 1.055rem;
  font-size: 0.833rem;
}

main * + form {
  margin-top: 30px;
}

/* general form inner styles */
/* ------------------------- */
main form input,
main form select,
main form textarea {
  display: block;
  width: 100%;
  padding: 7px 10px;
  border: solid 1px #ccc;
  background-color: #fff;
  font-size: 15px;
  border-radius: 5px;
}

main form input:focus,
main form select:focus,
main form textarea:focus {
  border-color: #999999;
}

main form * + .field {
  margin-top: 14px !important;
}

.Actions {
  padding-top: 26px;
}

.Actions input + input {
  margin-left: 10px;
}

#ForgotPassword {
  font-size: 12px;
}

/* form field labels */
/* ----------------- */
main form .field > label,
main form .field fieldset legend {
  display: block;
  font-weight: 500;
  padding-bottom: 0.277rem;
}

main form .req-indicator,
main form .required,
main form .validation,
main form .error {
  color: #990000;
}

main .right-title {
  padding: 0.277rem 0;
  font-size: 0.611rem;
}

main form label.right {
  display: block;
  width: auto;
  margin-top: 0 !important;
  padding-top: 0;
  font-size: 94%;
  line-height: 1.2;
  color: #666666;
}

main form .field.requiredField > label.left:after,
main form .field.checkbox.requiredField > label.right:after {
  content: "*";
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.3em;
  color: #990000;
}

/* check boxes and radio buttons */
/* ----------------------------- */
main form ul.optionset {
  display: block;
  list-style-type: none;
  margin: 0;
  overflow: hidden;
}

main form .optionset label,
main form .checkbox label {
  display: inline-block;
  color: #333333;
}

main form .checkbox label {
  display: inline;
  width: auto;
  padding: 0;
  vertical-align: middle;
}

main form .optionset input,
main form .checkbox input {
  display: inline;
  padding: 0;
  width: auto;
  border: none;
  box-shadow: none;
  vertical-align: middle;
}

/* errors */
/* ------ */
.error {
  color: #990000 !important;
}

main form .field.text.error input,
main form .field.file.error input,
main form .field.textarea.error textarea,
main form .field.dropdown.error select {
  border-color: #990000;
}

main form .field.checkbox.error label.right {
  color: #990000 !important;
}

main form .field.checkboxset.error label.left,
main form .field.optionset.error label.left {
  color: #990000 !important;
}

main form .message {
  display: none;
  margin-top: 12px;
}

main form .message.active {
  display: block;
}

/* buttons */
/* ------- */
button,
.button,
.button:visited,
.Actions input {
  display: inline-block;
  width: auto;
  padding: 0 10px;
  border: 0;
  border-radius: 5px;
  background-color: #0066ff;
  font-weight: 700;
  text-align: center;
  font-size: 16px;
  line-height: 34px;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.Actions input {
  height: 34px;
}

button:hover,
button:focus,
.button:hover,
.button:focus,
.Actions input:hover,
.Actions input:focus {
  background-color: #27283a;
  color: #fff;
}

button.inactive,
button[inactive],
.button.inactive,
button.inactive:hover,
button.inactive:focus,
button[inactive]:hover,
button[inactive]:focus,
.button.inactive:hover,
.button.inactive:focus,
.Actions input.inactive,
.Actions input.inactive:hover,
.Actions input.inactive:focus {
  background-color: #aaaaaa;
  cursor: default;
}

.Actions input[type=reset] {
  background-color: #888888;
}

.Actions input[type=reset]:hover,
.Actions input[type=reset]:focus {
  background-color: #000000;
}

/*
  ==========================
  tables
  ==========================
*/
main table {
  width: 100%;
  border-collapse: separate;
  font-size: 15px;
  color: #666666;
  line-height: 1.3;
}

main table thead th {
  border-bottom: solid 3px #fff;
  color: #252738;
}

main table thead th {
  padding: 10px 16px;
  background-color: #b5d5f1;
  font-weight: 700;
  text-align: left;
  vertical-align: bottom;
  text-transform: uppercase;
}

main table td {
  padding: 8px 15px;
  border-left: solid 1px #ccc;
  vertical-align: top;
}
main table td p {
  font-size: 0.833rem;
  margin: 0.2rem 0;
}
main table td li {
  font-size: 0.833rem;
}
main table td li:last-child {
  margin-bottom: 0;
}

main table tbody tr:first-child td {
  border-top: solid 1px #ccc;
}

main table tbody tr:last-child td {
  border-bottom: solid 1px #ccc;
}

main table tr th:first-child,
main table tr td:first-child {
  border-left: none;
}

main table tbody tr:nth-child(2n) {
  background-color: #f6f7f2;
}

main * + table,
main * + .table-wrapper {
  margin-top: 1.111rem;
  margin-bottom: 1.111rem;
}

.table-wrapper {
  overflow: hidden;
}

/* full width tables */
/* ----------------- */
#main-page.full-width main table {
  width: 1120px;
}

#main-page.full-width #main-content {
  width: 100%;
}
#main-page.full-width #main-content p,
#main-page.full-width #main-content h1,
#main-page.full-width #main-content li {
  max-width: 672px;
}

/*
  ==========================
  bookmarks
  ==========================
*/
main ul.bookmarks {
  list-style-type: none;
  margin: 0;
  padding: 12px 20px;
  background-color: #f6f7f2;
  border-top: solid 3px #e1e2d3;
  border-bottom: solid 1px #e1e2d3;
}

main ul.bookmarks li {
  position: relative;
  margin: 0;
  padding: 0 0 0 24px;
}

main ul.bookmarks li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #666666;
}

main ul.bookmarks li + li {
  margin-top: 2px;
}

main ul.bookmarks li a:after {
  content: none !important;
}

main * + ul.bookmarks {
  margin-top: 24px;
}

h1#page-title + ul.bookmarks {
  margin-top: 1.6667rem !important;
}

/*
  ==========================
  document list (single or multiple)
  ==========================
*/
ul.document-list {
  list-style-type: none;
  margin-left: 0;
  padding: 0;
}

ul.document-list li {
  position: relative;
  padding-left: 22px;
}

ul.document-list li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #666666;
}

/*
  ==========================
  related info
  ==========================
*/
main * + .related-info {
  margin-top: 30px;
}

main .related-info + * {
  margin-top: 30px;
}

main .related-info .inner {
  padding-top: 16px;
  padding-bottom: 16px;
}
main .related-info .inner p {
  font-size: 0.9rem;
  line-height: 1.5625;
  letter-spacing: -0.016rem;
}

main .related-info .inner p + p {
  margin-top: 6px;
}

/*
  ==========================
  article lists (with tags)
  ==========================
*/
/* tag list filter */
/* --------------- */
.tag-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-weight: 700;
  font-size: 15px;
  color: #999999;
  text-transform: uppercase;
}

.tag-list li {
  float: left;
  margin: 0;
  padding: 0;
}

.tag-list li:after {
  content: "|";
  display: inline-block;
  margin: 0 8px;
}

.tag-list li:last-child:after {
  content: none;
}

.tag-list a {
  color: #666666;
  text-decoration: none;
  transition: all 0.3s;
}

.tag-list a:hover,
.tag-list a.active {
  color: #0066ff;
}

.tag-list a:focus,
.tag-list a:active {
  background: #0066ff;
  color: #fff;
}

/* article styling */
/* --------------- */
.ais-Pagination.ais-Pagination--noRefinement {
  display: none;
}

.ais-Pagination-item--lastPage,
.ais-Pagination-item--disabled {
  display: none;
}

main * + .article-list {
  margin-top: 20px;
}

.article-list article {
  padding: 18px 10px;
  border-bottom: solid 1px #ccc;
  font-size: 0.8333rem;
}
.article-list article .hit-link {
  font-size: 0.666rem;
}
.article-list article .description p {
  font-size: 0.8333rem;
}

.article-list article:first-child {
  border-top: solid 1px #ccc;
}

.article-list article:hover {
  background-color: #f6f7f2;
}

.article-list article h2 {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.7px;
}

.article-list article time {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: #133366;
}

.article-list article * + time {
  margin-top: 4px;
}

.article-list article .highlight {
  font-weight: 700;
}

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

/* clears the 'X' from Internet Explorer */
input[type=search]::-ms-clear,
input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the 'X' from Chrome */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

/*
  ==========================
  pagination
  ==========================
*/
.pagination {
  margin-top: 20px;
  text-align: center;
}

.pagination span,
.pagination a {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin: 3px;
  background-color: #f6f7f2;
  border: solid 1px #e1e2d3;
  border-radius: 5px;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 2;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}

.pagination span.inactive {
  color: #999999;
}

.pagination a.active {
  color: #0066ff;
}

.pagination a:hover,
.pagination a:focus {
  color: #fff;
  background-color: #0066ff;
}

/*
  ==========================
  sitemap listing style
  ==========================
*/
.sitemap ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/*
  ==========================
  media - such as youTube, etc
  ==========================
*/
main .media {
  max-width: 100%;
  max-height: 100%;
}

main * + .media {
  margin-top: 16px;
}

main .media iframe {
  max-width: 100% !important;
  max-height: 100% !important;
  width: 100% !important;
}

/*
  ==========================
  misc styles
  ==========================
*/
/* horizontal rule */
/* --------------- */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 20px 0 18px 0;
  padding: 0;
}

/* font styles */
/* ----------- */
b,
strong,
.bold {
  font-weight: 700;
}

/* custom text-selection colors */
/* ---------------------------- */
::-moz-selection {
  background: #0066ff;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #0066ff;
  color: #fff;
  text-shadow: none;
}

/* custom webkit tap highlight color */
/* ---------------------------------- */
a:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* other */
/* ----- */
ins {
  background-color: #fcd700;
  color: #000000;
  text-decoration: none;
}

mark {
  background-color: #fcd700;
  color: #000000;
  font-style: italic;
  font-weight: bold;
}

.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

/*
  ===============================================================================
  PAGE TYPE OVERRIDES
  ===============================================================================
*/
/*
  ==========================
  home page
  ==========================
*/
/* main landing page list */
/* ---------------------- */
#top-nav-pages {
  display: none;
}

/* figures / images */
/* ---------------- */
.home-page figure {
  float: none;
  width: auto;
  margin: 0;
}

/* home alert area */
/* --------------- */
#alert {
  background: url(../images/alert-bg.png) 0 0 repeat #bd3933;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}

#alert > .inner {
  padding-top: 24px;
  padding-bottom: 30px;
}

#alert .wrapper {
  position: relative;
  transition: all 0.3s;
}

#alert .wrapper > div {
  float: left;
}

#alert .wrapper .content {
  width: 65%;
  padding-right: 20px;
}

#alert .wrapper .contact-info {
  width: 35%;
  padding-left: 20px;
  font-weight: 400;
  font-size: 15px;
}

#alert h2,
#alert h3,
#alert a {
  color: #fff;
}

#alert .wrapper .content a,
#alert .wrapper .contact-info a {
  text-decoration: underline;
}

#alert .wrapper .content a:hover,
#alert .wrapper .content a:focus,
#alert .wrapper .contact-info a:hover,
#alert .wrapper .contact-info a:focus {
  text-decoration: none;
}

#alert h3 {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}

#alert .wrapper .contact-info {
  padding-top: 8px;
}

#alert .wrapper .contact-info ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

#alert .wrapper .contact-info ul li {
  display: table;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

#alert .wrapper .contact-info ul li > * {
  display: table-cell;
  padding: 4px 0;
}

#alert .wrapper .contact-info ul li span:first-child {
  width: 32%;
  padding-right: 10px;
  padding-right: 10px;
}

/* full width variation of banner */
#alert .wrapper.no-extra-info-column .contact-info {
  display: none;
}

#alert .wrapper.no-extra-info-column .content {
  width: auto;
  padding-right: 0;
}

/* open / close link */
#alert .wrapper .open-close {
  position: absolute;
  top: -14px;
  right: 20px;
  font-weight: 700;
  font-size: 14px;
  line-height: 0.8;
  text-decoration: none;
  text-transform: uppercase;
}

#alert .wrapper .open-close .closed {
  display: none;
}

#alert .wrapper .open-close:after {
  content: "";
  display: inline-block;
  margin-left: 3px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
}

/* open / close state */
#alert.closed > .inner {
  padding-top: 8px;
  padding-bottom: 12px;
}

#alert.closed .content *,
#alert.closed .contact-info {
  display: none;
}

#alert.closed .content h2 {
  display: block;
  font-size: 22px;
  text-transform: uppercase;
}

#alert.closed .wrapper .open-close {
  top: 2px;
}

#alert.closed .wrapper .open-close .closed {
  display: inline;
}

#alert.closed .wrapper .open-close .open {
  display: none;
}

#alert.closed .wrapper .open-close:after {
  content: "";
}

/* page layout */
/* ----------- */
.home-page #main-page {
  padding-top: 0;
}

.home-page #main-page.wrapper {
  max-width: none !important;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

.home-page #main-page main {
  float: none;
  width: 100%;
}

/* home page title */
/* --------------- */
.home-page h1#page-title {
  display: none;
}

.home-page main h1#page-title + * {
  margin-top: 0 !important;
}

/* home page upper */
/* --------------- */
.home-page .page-upper {
  padding-top: 32px;
}

.home-page .page-upper > .outer {
  margin-left: -5px;
  margin-right: -5px;
}

.home-page .page-upper > .outer > .inner {
  display: table;
  border-collapse: separate;
  table-layout: fixed;
  width: 100%;
}

.home-page .page-upper > .outer > .inner > div {
  display: table-cell;
  width: 25%;
  background-color: #edede2;
  border-left: solid 5px #ffffff;
  border-right: solid 5px #ffffff;
  vertical-align: top;
}

/* banner image slider */
/* ------------------- */
.home-page .page-upper #home-banner-slider {
  position: relative;
  width: 50%;
  height: 440px;
  background-color: transparent;
  max-width: 565px;
}

#home-banner-slider .img-wrapper {
  float: left;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.rsWebkit3d .rsSlide {
  transform: translateZ(0);
}

.rsWebkit3d .rsSlide,
.rsWebkit3d .rsContainer,
.rsWebkit3d .rsThumbs,
.rsWebkit3d .rsPreloader,
.rsWebkit3d img,
.rsWebkit3d .rsOverflow,
.rsWebkit3d .rsBtnCenterer,
.rsWebkit3d .rsAbsoluteEl,
.rsWebkit3d .rsABlock,
.rsWebkit3d .rsLink {
  -webkit-backface-visibility: hidden;
}

.rsFade.rsWebkit3d .rsSlide,
.rsFade.rsWebkit3d img,
.rsFade.rsWebkit3d .rsContainer {
  -webkit-transform: none;
}

.rsOverflow {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  float: left;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.rsVisibleNearbyWrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  left: 0;
  top: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.rsVisibleNearbyWrap .rsOverflow {
  position: absolute;
  left: 0;
  top: 0;
}

.rsContainer {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.rsSlide {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.royalSlider.rsAutoHeight,
.rsAutoHeight .rsSlide {
  height: auto;
}

.rsContent {
  width: 100%;
  height: 100%;
  position: relative;
}

.rsPreloader {
  position: absolute;
  z-index: 0;
}

img.rsImg {
  max-width: none;
}

.rsBullets,
.rsNav {
  float: left;
  position: relative;
  z-index: 20;
  display: inline-block;
  margin-top: -36px;
  margin-left: 20px;
  height: 0;
  vertical-align: bottom;
}

.rsBullet {
  display: block;
  float: left;
  margin-right: 6px;
  width: 16px;
  height: 16px;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s;
}

.rsBullet.rsNavSelected {
  background-color: #a8ad00;
}

#home-banner-slider .img-wrapper img {
  display: block;
  margin: 0;
  padding: 0;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

#home-banner-slider .img-wrapper .overlay {
  position: absolute;
  z-index: 12;
  width: 190px;
  padding: 10px 18px;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
}

#home-banner-slider .img-wrapper .overlay.top-left {
  top: 0;
  left: 0;
  border-bottom: solid 8px #a8ad00;
}

#home-banner-slider .img-wrapper .overlay.bottom-right {
  bottom: 0;
  right: 0;
  border-top: solid 8px #a8ad00;
}

#home-banner-slider .img-wrapper .overlay time {
  display: block;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.2;
}

#home-banner-slider .img-wrapper .overlay h3 {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

#home-banner-slider .img-wrapper .overlay * + h3,
#home-banner-slider .img-wrapper .overlay h3 + * {
  margin-top: 0 !important;
  margin-bottom: 0;
}

#home-banner-slider .img-wrapper .overlay .more a {
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}

#home-banner-slider .img-wrapper .overlay .more a:before {
  content: "";
  display: inline-block;
  margin-right: 4px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* no js fallback */
.no-js img.rsImg {
  max-width: 100%;
}

.no-js #home-banner-slider .img-wrapper {
  position: relative;
  display: none;
}

.no-js #home-banner-slider .img-wrapper:first-child {
  display: block;
}

/* news and vacancies */
/* ------------------ */
/* tabs */
#home-news-vacancies > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: table;
  width: 100%;
  border-collapse: collapse;
  border-left: solid 12px #ffffff;
  border-right: solid 12px #ffffff;
  background-color: #ffffff;
  overflow: hidden;
}

#home-news-vacancies .inner a {
  color: #0060F0;
}

.no-js #home-news-vacancies > ul {
  display: none;
}

#home-news-vacancies > ul li {
  display: table-cell;
  padding: 0 6px;
  background-color: #ffffff;
}

#home-news-vacancies > ul li a {
  position: relative;
  z-index: 1;
  display: block;
  background-color: #6cace4;
  width: 100%;
  padding: 11px 0;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: #373434;
}

#home-news-vacancies > ul li a:focus,
#home-news-vacancies > ul li a:active {
  outline: none !important;
}

#home-news-vacancies > ul li a:before,
#home-news-vacancies > ul li a:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: -2px;
  display: block;
  width: 10px;
  background-color: #6cace4;
  transform-origin: top center;
}

#home-news-vacancies > ul li a:before {
  left: -5px;
  border-top-left-radius: 5px;
  box-shadow: -3px 3px 2px -1px rgba(0, 0, 0, 0.3);
  transform: rotate(4deg);
}

#home-news-vacancies > ul li a:after {
  right: -5px;
  border-top-right-radius: 5px;
  box-shadow: 3px 3px 2px -1px rgba(0, 0, 0, 0.3);
  transform: rotate(-4deg);
}

#home-news-vacancies > ul li.ui-tabs-active a {
  z-index: 2;
  background-color: #edede2;
}

#home-news-vacancies > ul li.ui-tabs-active a:before,
#home-news-vacancies > ul li.ui-tabs-active a:after {
  z-index: 2;
  background-color: #edede2;
}

#home-news-vacancies > * {
  font-size: 15px;
  letter-spacing: 0;
}

/* news */
@media (max-width: 767px) {
  #home-news {
    max-height: 450px;
  }
}
#home-news .inner {
  padding-top: 0.666rem;
}

#home-news article {
  padding: 0 1.111rem;
}

#home-news article + article {
  margin-top: 0.666rem;
}

#home-news article h2 {
  font-weight: 700;
  font-size: 0.8333rem;
  letter-spacing: -0.2px;
}

#home-news article time {
  display: block;
  margin-top: 0 !important;
  font-weight: 400;
  font-size: 13px;
  color: #333333;
}

#home-news .more {
  margin-top: 10px;
  padding: 10px 20px;
  background: url(../images/horizontal-dot-dash.png) 0 0 repeat-x transparent;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}

#home-news .more a:before {
  content: "";
  display: inline-block;
  margin-right: 4px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* vacancies */
@media (max-width: 767px) {
  #home-vacancies {
    max-height: 450px;
  }
}
#home-vacancies .inner {
  padding: 0.666rem 1.111rem;
}
#home-vacancies .inner p {
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0;
}

/* dashboard list */
/* -------------- */
.home-page .page-upper #dashboard-list {
  padding: 1rem 1.111rem;
}

.home-page .page-upper #dashboard-list h2 {
  margin-bottom: 0.7777em;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -1.2px;
  margin-top: 0;
  color: #333333;
  text-transform: uppercase;
}

.home-page .page-upper #dashboard-list ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* home page lower */
/* --------------- */
.home-page .page-lower {
  margin-top: 30px;
}

.home-page .page-lower > .inner {
  margin-left: -10px;
  margin-right: -10px;
}

.home-tile-row {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}

.home-tile-row + .home-tile-row {
  margin-top: 20px;
}

.home-tile-row > * {
  display: table-cell;
  border-left: solid 10px #ffffff;
  border-right: solid 10px #ffffff;
  vertical-align: top;
  background-color: #edede2;
}

.home-tile-row > *.empty {
  background-color: transparent !important;
}

.home-tile a {
  display: block;
  text-decoration: none;
}

.home-tile a:after {
  content: none;
  display: none;
}

.home-tile a:hover .content,
.home-tile a:focus .content,
.home-tile a:hover h2,
.home-tile a:focus h2 {
  color: #0059e5;
}

.home-tile .image-holder {
  height: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: cover;
  border-bottom: solid 8px #27283a;
}

.home-tile.red .image-holder {
  border-color: #bd3933;
}

.home-tile.yellow .image-holder {
  border-color: #feb61e;
}

.home-tile.green .image-holder {
  border-color: #bbca0c;
}

.home-tile.dark-green .image-holder {
  border-color: #4a7729;
}

.home-tile.blue .image-holder {
  border-color: #6cace4;
}

.home-tile.navy .image-holder {
  border-color: #003865;
}

.home-tile.teal .image-holder {
  border-color: #00acbd;
}

.home-tile .content {
  padding: 0.8333rem 0.8333rem 1.111rem 0.8333rem;
  font-size: 0.8333rem;
  line-height: 1.333;
  color: #333333;
}

.home-tile h2 {
  font-weight: 800;
  letter-spacing: -1.4px;
  font-size: 1.2222rem;
  margin: 0 0 0.555rem 0;
}

.home-tile img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-tile .content p {
  margin: 0;
  letter-spacing: -0.3px;
  font-size: 0.8333rem;
}

/*
  ==========================
  landing page
  ==========================
*/
.landing nav#secondary-nav {
  float: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.landing #main-page main {
  float: none;
  width: 100%;
}

/* figures / images */
/* ---------------- */
.landing figure {
  float: none;
  width: auto;
  margin: 0;
}

/* upper nav list */
/* -------------- */
.landing nav#secondary-nav ul,
.landing nav#secondary-nav ul li,
.landing nav#secondary-nav ul a {
  margin: 0;
  padding: 0;
  border: none;
}

.landing nav#secondary-nav > ul {
  padding: 20px 15px;
}

.landing nav#secondary-nav ul a {
  display: inline-block;
  background: none;
  font-weight: 500;
  color: #0066ff;
}

.landing nav#secondary-nav > ul > li {
  display: block;
  float: left;
  width: 25%;
  padding: 0 15px;
}

.landing nav#secondary-nav > ul > li:nth-child(4n+1) {
  clear: left;
}

.landing nav#secondary-nav > ul > li:nth-child(n+5) {
  margin-top: 20px;
}

.landing nav#secondary-nav > ul > li > a {
  font-weight: 700;
  font-size: 1.111rem;
  color: #666666;
  text-transform: none;
}

.landing nav#secondary-nav > ul > li a:hover,
.landing nav#secondary-nav > ul > li a:focus {
  text-decoration: underline;
}

.landing nav#secondary-nav > ul > li > ul,
.landing nav#secondary-nav > ul > li > ul a {
  line-height: 1.2;
}

.landing nav#secondary-nav > ul > li > ul li {
  padding-top: 6px;
}

/* landing news and articles */
/* ------------------------- */
#landing-news-articles {
  margin-top: 30px;
  margin-left: -10px;
  margin-right: -10px;
}

#landing-news-articles .news-list a {
  color: #0060F0;
}

#landing-news-articles > .inner {
  display: table;
  border-collapse: separate;
  table-layout: fixed;
}

#landing-news-articles > .inner > * {
  display: table-cell;
  width: 33.33333%;
  border-left: solid 10px #fff;
  border-right: solid 10px #fff;
  vertical-align: top;
}

#landing-news-articles .more {
  margin-top: 10px;
  padding: 10px 20px;
  background: url(../images/horizontal-dot-dash.png) 0 0 repeat-x transparent;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}

#landing-news-articles .more a:before {
  content: "";
  display: inline-block;
  margin-right: 4px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* landing news list */
#landing-news-articles .news-list h2 {
  padding: 0.555rem 1.111rem 0.6111rem 1.111rem;
  background: url(../images/horizontal-dot-dash.png) 0 100% repeat-x transparent;
  font-weight: 800;
  font-size: 24px;
}

#landing-news-articles .news-list article {
  padding: 0.444rem 1.111rem;
}

#landing-news-articles .news-list h3 {
  font-weight: 500;
  font-size: 0.777rem;
  letter-spacing: -0.7px;
}

#landing-news-articles .news-list time {
  display: block;
  margin-top: 0 !important;
  font-weight: 400;
  font-size: 0.722rem;
  color: #333333;
  letter-spacing: -0.2px;
}

/* landing articles */
#landing-news-articles .landing-article {
  background-color: #151515;
  font-weight: 400;
  color: #fff;
}

#landing-news-articles .landing-article img {
  display: block;
  width: 100%;
  border-bottom: solid 10px #a8ad00;
  overflow: hidden;
}

#landing-news-articles .landing-article .content {
  padding: 20px;
}

#landing-news-articles .landing-article time {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

#landing-news-articles .landing-article h2 {
  margin-top: 0 !important;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

#landing-news-articles .landing-article .more {
  background: none;
  padding: 0;
  font-weight: 400;
  font-size: 15px;
}

#landing-news-articles .landing-article .more a {
  color: #fff;
}

/* landing feature items */
/* --------------------- */
#landing-features {
  margin-top: 30px;
  margin-left: -10px;
  margin-right: -10px;
}

#landing-features .feature-item {
  float: left;
  width: 33.333333%;
  padding: 0 10px;
}

#landing-features .feature-item h2 {
  font-weight: 800;
  font-size: 1.3888rem;
}

#landing-features .feature-item .more {
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
}

#landing-features .feature-item .more a:before {
  content: "";
  display: inline-block;
  margin-right: 4px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/*
  ==========================
  news article page
  ==========================
*/
time.date-published {
  display: block;
  margin: 0.555rem 0;
  font-weight: 800;
  letter-spacing: -0.7px;
  font-size: 1.111rem;
  color: #252738;
}

/*
  ==========================
  search page
  ==========================
*/
#search-form {
  padding: 30px;
}

#search-form > * {
  display: inline-block;
  vertical-align: middle;
}

#search-form > input {
  width: 68%;
}

.search-summary {
  font-size: 1rem;
}

/*
  ==========================
  sitemap
  ==========================
*/
#sitemap {
  list-style-type: none;
  margin: 0;
  padding: 0;
  -moz-columns: 4;
       columns: 4;
  -moz-column-gap: 30px;
       column-gap: 30px;
}

#sitemap ul {
  list-style-type: none;
}

main #sitemap > li {
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
  font-weight: 400;
  font-size: 16px;
}
main #sitemap > li a {
  font-weight: 400;
  font-size: 16px;
}

main #sitemap > li > ul {
  margin-left: 0 !important;
}
main #sitemap > li > ul a {
  font-weight: 500;
  font-size: 12px;
}

main #sitemap > li > ul ul {
  margin-top: 4px;
}

/*
  ==========================
  Video accordion
  ==========================
*/
#video-element,
.video-element {
  margin-top: 1.111rem;
}
#video-element .media + br,
.video-element .media + br {
  display: none;
}
#video-element iframe,
.video-element iframe {
  display: block;
  width: 100% !important;
  top: 0;
  left: 0;
  position: absolute;
  height: 100% !important;
}
#video-element > div,
.video-element > div {
  max-width: 100%;
  margin: 0 auto 5px;
}
#video-element > div:first-child,
.video-element > div:first-child {
  position: relative;
}
#video-element > div:first-child:after,
.video-element > div:first-child:after {
  content: "";
  display: block;
  padding-top: 56.5%;
}

#video-element h2,
.video-element h2 {
  margin: 0 !important;
}

#video-element .transcript-header,
.video-element .transcript-header {
  font-size: 0.8333rem;
  color: #666;
  letter-spacing: -0.5px;
  font-weight: 600;
  background-color: #f6f7f2;
  border-top: solid 3px #e1e2d3;
  border-bottom: solid 1px #e1e2d3;
  display: inline-block;
  width: 100%;
  padding: 12px 20px 9px;
  margin: 0;
  transition: all 0.2s linear;
}

#video-element .transcript-header:hover,
.video-element .transcript-header:hover {
  color: #0066ff;
  cursor: pointer;
}

#video-element .transcript-header:focus,
.video-element .transcript-header:focus {
  background-color: #e1e2d3;
  color: #333333;
}

#video-element .transcript-header:before,
.video-element .transcript-header:before {
  margin: 0px 5px !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #666666;
}

#video-element .panel-expand:before,
.video-element .panel-expand:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #666666;
}

#video-element .transcript-content,
.video-element .transcript-content {
  padding-top: 12px;
}

.document-overlay {
  position: absolute;
  top: 0;
  bottom: 10px;
  right: 0;
  left: 0;
  background-color: #f6f7f2;
  display: none;
}

.document-overlay img {
  display: block;
  margin: 0 auto;
  position: relative;
  top: 100px;
}

ul.document-tabs li a {
  color: #131313;
}

ul.document-tabs li a:hover {
  text-decoration: none;
}

ul.content-menu ul.content-dropdown {
  display: none;
}

.complex-document fieldset {
  margin: 0;
  border: none;
}
.complex-document #search-results .description br {
  display: none;
}

.complex-document .document h2 {
  margin-top: 0 !important;
}

/*
  ==========================
  complex documents pages
  ==========================
*/
.inner-wrapper {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inner-wrapper label {
  display: none;
}

section.document {
  margin-top: 40px;
  min-height: 450px;
}

section.document h2 {
  margin-bottom: 16px;
}

div.document-main {
  max-width: 720px;
  margin-bottom: 50px;
  float: left;
}

aside.document-aside {
  width: 310px;
  margin-top: 6px;
  margin-bottom: 50px;
  padding-top: 15px;
  border-top: 3px solid #e1e2d3;
  float: right;
}

aside.document-aside a:active,
aside.document-aside a:focus {
  color: #0066ff;
}

section.document-aside-section {
  font-size: 15px;
  margin-bottom: 15px;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #e1e2d3;
}

section.document-aside-section:last-child {
  border-bottom: none;
}

section.document-aside-section .document-aside-title {
  margin-bottom: 0.666rem;
  font-weight: 700;
  font-size: 0.8333rem;
  text-transform: uppercase;
  color: #666666;
}

section.document-aside-section > ul {
  margin-left: 0;
  list-style: none;
}

section.document-aside-section ul li {
  font-size: 0.8333rem;
}

section.document-aside-section ul.bulleted {
  margin-left: 18px;
  list-style: disc;
  color: #0066ff;
}

.document-aside-section .complex-doc-widget-content p {
  font-size: 0.8333rem;
}

p.more-info {
  background-color: #d3e6f7;
  width: 56.4%;
  padding: 8px 8px 8px 10px;
  border: solid 1px #b5d5f1;
  border-radius: 5px;
  font-size: 22px;
  transition: all 0.3s;
}

p.more-info:hover {
  background-color: #fff;
}

p.more-info a {
  position: relative;
  display: inline-block;
}

p.more-info a:after {
  content: "";
  position: absolute;
  top: 3px;
  right: -20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

p.more-info a:active:after,
p.more-info a:focus:after {
  color: #0066ff;
}

form.document-search-form {
  position: relative;
  margin-top: 50px;
  padding: 0;
}
form.document-search-form fieldset {
  margin: 0;
  border: none;
  padding: 0;
}
form.document-search-form .inner-wrapper {
  align-items: flex-end;
}

main form.document-search-form label {
  display: inline-block;
  margin-bottom: 0.555rem;
  font-weight: 700;
  font-size: 0.8333rem;
  padding: 0;
  color: #333333;
}

form.document-search-form input {
  display: inline-block;
  background: #fff url(../images/search-loupe.png) no-repeat 8px;
  width: 90%;
  padding-left: 40px;
  vertical-align: middle;
  transition: all 0.3s;
  padding: 8px 10px 8px 40px;
}

form.document-search-form button[type=submit] {
  padding: 3px 12px;
  margin-left: 5px;
  vertical-align: middle;
}

form.document-search-form .field,
form.document-search-form .Actions {
  padding: 0;
}

form.document-search-form input[type=submit] {
  background-color: #0066ff;
  border: 0 none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 0.888rem;
  line-height: 1.888rem;
  padding: 0 10px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  width: auto;
  background-image: none;
  font-weight: 800;
  margin-left: 20px;
}

form.document-search-form fieldset {
  display: inline-block;
  width: 90%;
}

form.document-search-form div,
form.document-search-form div input {
  width: 100%;
}

div.document-aid {
  display: table;
  background-color: #f6f7f2;
  width: 100%;
  border-top: 1px solid #e1e2d3;
}

div.document-aid > ul {
  display: table-cell;
  margin-top: 10px;
  margin-left: 0;
  padding: 10px 0;
  list-style: none;
  text-align: center;
  vertical-align: top;
  border-right: 1px solid #e1e2d3;
}

div.document-aid ul.bidirectional-navigation {
  text-align: right;
}

div.document-aid ul.content-menu {
  display: table-cell;
  width: 176px;
}

div.document-aid ul.download-or-print {
  width: 400px;
  border-right: 0;
}

div.document-aid ul li {
  margin-top: 0;
  margin-bottom: 0;
}

div.document-aid ul li a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8333rem;
  color: #333333;
  transition: all 0.3s;
}

div.document-aid ul li a:focus:hover,
div.document-aid ul li a:active:hover {
  color: #fff;
}

ul.document-tabs li a:active,
ul.document-tabs li a:focus,
ul.document-accordion ul a:active,
ul.document-accordion ul a:focus,
div.document-aid ul li a:active,
div.document-aid ul li a:focus {
  background: #0066ff;
  color: #ffffff;
  text-decoration: none;
}

ul.content-menu a:before,
ul.content-menu a:after,
ul.bidirectional-navigation a:before,
ul.bidirectional-navigation a:after,
ul.download-or-print a:before,
ul.download-or-print a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  font-size: 1.3em;
}

a.content-toggle:before {
  content: "";
  margin-right: 10px;
}

ul.bidirectional-navigation li:first-child a:before {
  content: "";
  margin-right: 10px;
}

ul.bidirectional-navigation li:first-child + li a:after {
  content: "";
  margin-left: 10px;
}

ul.download-or-print li a:before {
  content: "";
  margin-right: 10px;
}

div.document-aid ul li a:hover {
  color: #0066ff;
}

ul.content-menu ul.content-dropdown {
  position: absolute;
  min-width: 260px;
  background-color: #fff;
  box-shadow: 0 5px 13px rgba(56, 46, 46, 0.6);
  border: 5px solid #9b9b8c;
  border-radius: 5px;
  text-align: left;
  z-index: 13;
}

ul.content-dropdown.closed {
  display: none;
}

ul.content-dropdown li {
  list-style-type: none;
  border-top: 1px solid #e1e2d3;
  padding: 2px 10px;
}

ul.content-dropdown li:not(:first-child):before {
  padding-right: 5px;
}

ul.content-dropdown li:first-child {
  border: 0;
}

ul.content-dropdown li:last-child {
  padding: 10px;
  text-align: right;
}

ul.content-dropdown li:last-child:before {
  content: "";
}

ul.content-dropdown li:last-child a {
  color: #0066ff;
}

ul.content-dropdown li:last-child a:hover {
  color: #333333;
}

ul.content-dropdown li:last-child a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  margin-left: 5px;
  vertical-align: middle;
  font-size: 13px;
}

ul.content-menu ul.content-dropdown li a {
  font-size: 0.8333rem;
}

ul.bidirectional-navigation li {
  display: inline-block;
  margin-top: 0;
  margin-right: 20px;
}

/* ===== document-toc page ===== */
ol.document-toc,
ol.document-toc ol {
  display: table;
  border-collapse: collapse;
  margin-left: 0;
  list-style: none;
  width: 100%;
}

ol.document-toc li {
  display: table-row;
}

ol.document-toc li > * {
  display: table-cell;
  padding: 4px 0;
  vertical-align: top;
}

ol.document-toc li .ref {
  text-align: right;
  padding-right: 12px;
  white-space: nowrap;
}

ol.document-toc > li a {
  text-decoration: underline;
}

ol.document-toc li ol a {
  text-decoration: none;
  color: #666666;
}

/* ===== document-wide-standard page ===== */
.color-blue {
  color: #0066ff;
}

.document-main-wider {
  /*width: 943px; width: 94.3rem;*/
  width: 100%;
  margin-bottom: 50px;
}

.h-wrapper {
  margin-top: 40px;
}

.document-main-wider figure,
figcaption {
  width: 370px;
  margin-top: 34px;
  margin: 10px 35px 10px 0;
  float: left;
}

div.document-main-wider figure.figure-wider {
  width: 943px;
  margin: 0;
}

/* ===== document-wide-bookmarks page ===== */
h3.h3-counter {
  margin-bottom: 15px;
  color: #133366;
}

ol.lower-alpha {
  margin-left: 26px;
  list-style: lower-alpha;
}

ol.lower-alpha > li {
  font-weight: 700;
  color: #133366;
}

ol.lower-alpha > li p {
  margin-bottom: 10px;
  color: #666666;
}

ol.lower-roman > * {
  color: #666666;
}

ol.lower-roman {
  margin-top: 0.555rem;
}

ol.lower-roman {
  padding-left: 26px;
  list-style: lower-roman;
}

ol.lower-roman li ul > li {
  margin-left: -3px;
}

ul.ul-dash {
  list-style: none;
}

ul.ul-dash li:before {
  display: inline-block;
  content: "-";
  width: 26px;
  margin-left: -20px;
}

/* ===== document-wide-misc page ===== */
section.document table tr th:first-child {
  width: 10%;
}

ul.document-inner-footnotes,
.complex-document .document-accordion ul.document-inner-footnotes {
  margin: 40px 0 0 0;
  padding: 12px 0 0 20px;
  border-top: solid 3px #b5d5f1;
  list-style-type: decimal;
  font-weight: 800;
  font-style: italic;
  font-size: 0.8333rem;
  color: #131313;
  clear: both;
  background: transparent;
}

ul.document-accordion ul.document-inner-footnotes a {
  font-weight: bold;
  font-style: italic;
}

.complex-document .document-accordion ul.document-inner-footnotes li {
  list-style-type: decimal;
}

div.document-uxcontrols-wrapper {
  margin-top: 20px;
}

div.document-uxcontrols-wrapper h4 {
  background-color: #d3e6f7;
  width: 100%;
  padding: 1.111rem;
  font-weight: bold;
  font-size: 1rem;
}

div.tabs-holder ul.document-accordion > li > * {
  padding: 0;
}

div.tabs-holder ul.document-accordion > li > a {
  display: none;
}

div.tabs-holder ul.document-accordion > li > a:after {
  display: none;
}

ul.document-tabs {
  display: table;
  width: 100%;
  margin-top: 3px !important;
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-transform: uppercase;
  font-size: 15px;
}

ul.document-tabs li {
  display: table-cell;
  background-color: #b5d5f1;
  padding: 0 25px;
  vertical-align: middle;
  border-left: 3px solid #fff;
  color: #131313;
  cursor: pointer;
  transition: all 0.3s;
  width: 16.66666%;
  height: 60px;
  padding: 0 25px;
}

ul.document-tabs li a {
  color: #151515;
}

ul.document-tabs li a:hover {
  text-decoration: none;
}

ul.document-tabs li:first-child {
  border-left: none;
}

ul.document-tabs li.active,
ul.document-tabs li:hover {
  background-color: #6cace4;
  color: #fff;
}

div.tabs-holder ul.document-accordion li > ul > li {
  display: none;
  background-color: #f6f7f2;
  margin-top: 0;
  padding: 20px;
  border-bottom: 1px solid #ccc;
}

div.tabs-holder ul.document-accordion li > ul > li.active {
  display: block;
}

/* ===== document-wide-accordions page ===== */
article.document-service-curriculum {
  margin: 20px 0 0 0;
}

h4.document-service-curriculum-heading {
  display: block;
  float: left;
}

.push-right {
  margin-left: 50px;
}

/* ============ accordion ============= */
ul.document-accordion {
  margin-top: 3px !important;
}

ul.document-accordion,
ul.document-accordion ul {
  margin: 0;
  padding: 0;
}

ul.document-accordion > li {
  background-color: #6cace4;
}

ul.document-accordion > li > * {
  padding: 15px 20px;
}

ul.document-accordion > li ul {
  background-color: #f6f7f2;
}

ul.document-accordion ul a {
  text-transform: none;
  font-size: 1rem;
  color: #0066ff;
}

ul.document-accordion ul a:hover {
  text-decoration: underline;
  color: #0066ff;
  background: none;
}

ul.document-accordion > li > a {
  display: inline-block;
  width: 100%;
  padding: 15px 20px 12px;
  line-height: initial;
}

ul.document-accordion > li > a:after {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-size: 20px;
  vertical-align: middle;
  float: right;
}

ul.document-accordion > li > a:hover,
ul.document-accordion > li > a:active,
ul.document-accordion > li > a.selected:focus,
ul.document-accordion > li > a.selected:active,
ul.document-accordion > li > a:focus,
ul.document-accordion > li > a:active:after,
ul.document-accordion > li > a:focus:after,
ul.document-accordion ul li p a:focus,
ul.document-accordion ul li p a:active {
  color: #fff;
}

ul.document-accordion > li > a.selected:focus,
ul.document-accordion > li > a.selected:active,
ul.document-accordion ul li p a:focus,
ul.document-accordion ul li p a:active {
  background-color: #0066ff;
}

ul.document-accordion > li > a.selected:after {
  content: "";
}

ul.document-accordion > li,
ul.document-accordion > li ul > li {
  list-style: none;
}

ul.document-accordion > li {
  background-color: #6cace4;
}

ul.document-accordion > li > * {
  padding: 15px 20px;
}

ul.document-accordion li ul li ul,
div.tabs-holder ul.document-accordion li ul li ul {
  display: block !important;
  margin: 10px 20px;
}

ul.document-accordion li ul li ul li,
div.tabs-holder ul.document-accordion li ul li ul li {
  display: list-item;
  list-style: inherit;
  border: none;
}

ul.document-accordion li ul li ul li a,
div.tabs-holder ul.document-accordion li ul li ul li a {
  text-transform: none;
}

div.tabs-holder ul.document-accordion li ul li ul li {
  padding: 0;
}

ul.document-accordion > li.selected a {
  color: #fff;
}

ul.document-accordion a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.833rem;
  text-transform: uppercase;
  color: #151515;
  transition: all 0.3s;
}

/* ============ accordion end ============= */
div.document-uxcontrols-wrapper.section-accordion + div.document-uxcontrols-wrapper.section-accordion {
  margin-top: 3px;
}

/* ===== document-wide-blockquote page ===== */
div.col3-wrapper,
div.col2-wrapper {
  display: table;
  margin: 0 -20px;
}

div.col3-wrapper > div,
div.col2-wrapper > div {
  display: table-cell;
  padding: 10px 20px 0px 20px;
}

div.col3-wrapper > div {
  width: 33.3333333333%;
}

div.col2-wrapper > div {
  width: 50%;
}

.complex-document blockquote {
  background-color: #f6f7f2;
  margin: 40px 0 50px 0;
  padding: 25px 30px;
  border-top: solid 3px #e1e2d3;
  border-bottom: solid 1px #e1e2d3;
}

.complex-document blockquote p {
  margin-bottom: 0;
  font-size: 20px;
  color: #133367;
}

.complex-document blockquote cite a {
  font-style: normal;
  font-size: 25px;
  color: #666666;
}

/*----*/
.SubLandingPage {
  padding-top: 0.694rem;
}

.sub-pages {
  padding-bottom: 1rem;
  float: left;
  width: 100%;
}

@media (min-width: 320px) {
  .sub-pages-column {
    width: 100%;
  }
}
@media (min-width: 598px) {
  .sub-pages-column {
    width: 49.1525423729%;
    float: left;
  }
}
@media (min-width: 1120px) {
  .sub-pages-column {
    width: 25%;
    display: block;
    float: left;
  }
}
.sub-pages-item {
  padding: 5px 0;
  margin-right: 20px;
}

.sub-pages-item h4 {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
  line-height: 0;
}

.sub-pages-item h4 a {
  color: #0057d5;
  font-size: 15px;
  line-height: 15px;
  font-weight: 700;
  text-decoration: none;
}

.sub-pages-item h4 a::after {
  content: "";
}

.sub-pages-children {
  margin-bottom: 0.625rem;
}

@media (min-width: 320px) {
  .sub-pages-children {
    display: block;
  }
}
@media (min-width: 598px) {
  .sub-pages-children {
    display: block;
    line-height: 15px;
  }
}
.sub-pages-children a {
  color: #0057d5;
  font-size: 12px;
  text-decoration: none;
}

.sub-pages-children a:hover {
  text-decoration: underline;
}

.sub-pages-children a:after {
  content: ",";
  color: #0057d5;
  font-weight: 400;
}

@media (min-width: 320px) {
  .news-items,
.sub-landing-intro-holder {
    width: 100%;
    padding-bottom: 20px;
  }
}
@media (min-width: 1120px) {
  .news-items,
.sub-landing-intro-holder {
    width: 100%;
    padding-bottom: 30px;
    float: left;
    padding-right: 20px;
  }

  .sub-landing-intro-holder.short {
    width: 49.1525423729%;
  }

  .news-items.short {
    width: 49.1525423729%;
    padding-left: 10px;
  }
}
.news-item {
  margin-top: 0.3125rem;
  background-color: #edede2;
  margin-bottom: 100px;
}

@media (min-width: 598px) {
  .news-item {
    margin-bottom: 50px;
  }
}
@media (min-width: 320px) {
  .news-item {
    margin-bottom: 50px;
  }
}
.news-item a:hover {
  text-decoration: none;
}

.news-item-image-holder {
  display: inline-block;
  width: 23.7288135593%;
  padding-right: 0;
  vertical-align: top;
  height: 100px;
  overflow: hidden;
}

@media (min-width: 320px) {
  .news-item-image-holder {
    width: 30%;
  }
}
@media (min-width: 598px) {
  .news-item-image-holder {
    width: 23%;
  }
}
.news-item-image-holder img {
  width: 100%;
  height: auto;
  min-height: 100%;
}

.news-item-content-holder {
  display: inline-block;
  width: 66.1016949153%;
  padding-left: 0.625rem;
  padding-top: 10px;
}

.news-item-content-holder h6 {
  color: #666;
  font-weight: 400;
  text-transform: uppercase;
}

.news-item-content-holder .content {
  width: 100%;
  color: #666;
}

.news-item-content-holder .content p {
  margin: 0;
  font-size: 12px;
  line-height: 1.06;
}

.border-top.red {
  border-top: 3px solid #bd3933;
}

.border-top.yellow {
  border-top: 3px solid #feb61e;
}

.border-top.green {
  border-top: 3px solid #bbca0c;
}

.border-top.dark-green {
  border-top: 3px solid #a8ad00;
}

.border-top.blue {
  border-top: 3px solid #6cace4;
}

.border-top.navy {
  border-top: 3px solid #003865;
}

.border-top.teal {
  border-top: 3px solid #00acbd;
}

@media (min-width: 320px) {
  .tile-content-holder.border-top.red,
.tile-content-holder.border-top.yellow,
.tile-content-holder.border-top.green,
.tile-content-holder.border-top.dark-green,
.tile-content-holder.border-top.blue,
.tile-content-holder.border-top.navy {
    border-top: 0;
  }
}
@media (min-width: 598px) {
  .tile-content-holder.border-top.red {
    border-top: 3px solid #bd3933;
  }

  .tile-content-holder.border-top.yellow {
    border-top: 3px solid #feb61e;
  }

  .tile-content-holder.border-top.green {
    border-top: 3px solid #bbca0c;
  }

  .tile-content-holder.border-top.dark-green {
    border-top: 3px solid #a8ad00;
  }

  .tile-content-holder.border-top.blue {
    border-top: 3px solid #6cace4;
  }

  .tile-content-holder.border-top.navy {
    border-top: 3px solid #003865;
  }
}
@media (min-width: 598px) {
  .component-wrapper.tiles {
    justify-content: space-between;
    display: inline-table;
  }
}
@media (min-width: 1120px) {
  .component-wrapper.tiles {
    justify-content: flex-start;
    float: left;
    margin-top: 30px;
    width: 100%;
  }
}
.tile {
  height: inherit;
}

@media (min-width: 320px) {
  .tile {
    width: 100%;
    background-color: #edede2;
    height: 110px;
    margin-bottom: 10px;
    overflow: hidden;
  }
}
@media (min-width: 598px) {
  .tile {
    width: 46.1525423729%;
    margin-bottom: 0.667rem;
    height: 360px;
    float: left;
    margin-right: 15px;
  }
}
@media (min-width: 1120px) {
  .tile {
    width: 23.7288135593%;
    margin-right: 5.625px;
    margin-bottom: 11.25px;
    margin-left: 5.625px;
    background-color: #edede2;
    height: 360px;
  }
}
@media (min-width: 1200px) {
  .tile {
    width: 23.7288135593%;
    margin-right: 6.25px;
    margin-bottom: 11.25px;
    margin-left: 5.625px;
    background-color: #edede2;
    height: 360px;
    float: left;
  }
}
.tile:first-child,
.tile:nth-child(4n+5) {
  margin-left: 0;
}

.tile:nth-child(4n+4) {
  margin-right: 0;
}

.tile a {
  display: block;
  height: inherit;
}

.tile a:hover {
  text-decoration: none;
}

.tile:hover .content p,
.tile:hover h3 {
  color: #0057d5;
}

.object-fit_fill {
  -o-object-fit: fill;
     object-fit: fill;
}

.object-fit_contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.object-fit_cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.object-fit_none {
  -o-object-fit: none;
     object-fit: none;
}

.object-fit_scale-down {
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.tile-image-holder {
  overflow: hidden;
  width: inherit;
  max-height: 180px;
  text-align: center;
}

@media (min-width: 320px) {
  .tile-image-holder {
    display: inline;
    width: 36.4406779661%;
    height: inherit;
  }
}
@media (min-width: 598px) {
  .tile-image-holder {
    overflow: hidden;
    width: 100%;
    height: 180px;
    display: block;
  }
}
@media (min-width: 1120px) {
  .tile-image-holder {
    width: 100%;
    height: 180px;
    display: block;
    overflow: hidden;
  }
}
.tile-image-holder img {
  display: inline-block;
  min-height: 100%;
  margin-right: auto;
  margin-left: auto;
}

.tile-image-holder img[class] {
  width: inherit;
}

.tile-content-holder {
  min-height: 6.4235rem;
  margin-top: -6.25px;
  background-color: #edede2;
}

@media (min-width: 320px) {
  .tile-content-holder {
    display: inline-block;
    width: 57.6271186441%;
    vertical-align: top;
    padding: 6.25px;
    margin-top: 0;
  }

  .tile-content-holder h3 {
    color: #666;
    font-style: italic;
    font-weight: bold;
  }

  .tile-content-holder .content {
    display: none;
  }

  .tile-content-holder .content p {
    color: #333;
    font-size: 15px;
    line-height: 1.5;
  }
}
@media (min-width: 598px) {
  .tile-content-holder {
    width: 100%;
  }

  .tile-content-holder .content {
    display: block;
  }
}
@media (min-width: 1120px) {
  .tile-content-holder {
    width: 100%;
  }
}
.element-id {
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
  line-height: 38px;
  color: #666666;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}
.element-id:hover {
  cursor: pointer;
}

#collapsible-container .collapsible-item-header {
  font-weight: 500;
  letter-spacing: -0.1px;
  padding-left: 40px;
  position: relative;
  margin-bottom: 0;
}
#collapsible-container .collapsible-item-header:before {
  position: absolute;
  left: 10px;
}
#collapsible-container .collapsible-item-header:hover:before, #collapsible-container .collapsible-item-header:focus:before, #collapsible-container .collapsible-item-header.panel-expand:before {
  color: #0066ff;
}

#footer .link-button {
  font-size: 15px;
  overflow: visible;
  white-space: inherit;
}

@media screen and (max-width: 1020px) {
  /*
    ==========================
    general page structure
    ==========================
  */
  .wrapper {
    padding-left: 1.111rem;
    padding-right: 1.111rem;
  }

  .spinner {
    margin: 1.111rem auto;
    height: 30px;
    width: 30px;
    -webkit-animation: spinner-rotate 0.8s infinite linear;
    animation: spinner-rotate 0.8s infinite linear;
    border: 0.6rem solid #e0e0e0;
    border-right-color: transparent;
    border-radius: 50%;
  }

  @-webkit-keyframes spinner-rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes spinner-rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  /* link tabs */
  /* --------- */
  #link-tabs {
    display: none;
  }

  /*
    ==========================
    page section title
    ==========================
  */
  #section-title {
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2.222rem;
    background-color: #27283A;
    white-space: nowrap;
  }

  #section-title h2 {
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    line-height: 2.2222;
    text-transform: uppercase;
  }

  #section-title h2 span {
    display: inline-block;
    margin-left: 0.555rem;
    font-weight: 400;
    font-size: 0.777rem;
    line-height: 2.6667;
    text-transform: none;
  }

  /* colours */
  /* ------- */
  #section-title.red {
    background-color: #BD3933;
  }

  #section-title.yellow {
    background-color: #FEB61E;
    color: #141414;
  }

  #section-title.green {
    background-color: #BBCA0C;
    color: #141414;
  }

  #section-title.dark-green {
    background-color: #4a7729;
    color: #141414;
  }

  #section-title.blue {
    background-color: #6CACE4;
    color: #141414;
  }

  #section-title.navy {
    background-color: #003865;
  }

  #section-title.teal {
    background-color: #00ACBD;
  }

  /*
    ==========================
    secondary nav
    ==========================
  */
  #secondary-nav {
    display: none;
  }

  /*
    ==========================
    main content
    ==========================
  */
  #main-content {
    float: none;
    width: 100%;
  }

  /*
    ==========================
    main content aside
    ==========================
  */
  #main-page > aside {
    float: none;
    width: auto;
    margin-top: 50px;
    margin-right: -8px;
    margin-left: -8px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
  }

  #main-page > aside > * {
    display: block;
    width: auto;
    margin-top: 1.111rem;
    margin-left: 8px;
    margin-right: 8px;
    order: 0;
    flex: 0 1 calc(50% - 16px);
    align-self: auto;
  }

  /*
    ==========================
    footer
    ==========================
  */
  /* upper area */
  /* ---------- */
  #page-foot .upper {
    padding-bottom: 10px;
  }

  #page-foot .upper .inner > div,
#page-foot #footer-news-links {
    float: none;
    width: auto;
    margin-left: 0;
    padding-bottom: 1.111rem;
  }

  #page-foot .upper h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  #footer-news-links ul {
    -moz-column-count: 2;
    -ms-column-count: 2;
    column-count: 2;
  }

  /*
    ===============================================================================
    TYPOGRAPHY
    ===============================================================================
  */
  /*
    ==========================
    main content imagery
    ==========================
  */
  main figure {
    width: 280px;
  }

  /* full width tables */
  /* ----------------- */
  #main-page.full-width main table {
    width: auto;
    width: 100%;
  }

  /*
    ===============================================================================
    PAGE TYPE OVERRIDES
    ===============================================================================
  */
  /*
    ==========================
    home page
    ==========================
  */
  /* home alert area */
  /* --------------- */
  #alert .inner {
    padding-top: 2rem;
  }

  #alert .wrapper > div {
    float: none;
  }

  #alert .wrapper .content {
    width: 100%;
    padding-right: 0;
  }

  #alert .wrapper .contact-info {
    width: 100%;
    padding-left: 0;
    padding-top: 0;
    margin-top: 1.111rem;
  }

  #alert .wrapper .contact-info ul li span {
    width: 20%;
  }

  /* open / close link */
  #alert .wrapper .open-close {
    top: -1rem;
  }

  /* open / close state */
  #alert.closed .inner {
    padding: 1rem 0 1.111rem 0;
  }

  #alert.closed .content h2 {
    padding-right: 80px;
  }

  /* page layout */
  /* ----------- */
  .home-page #main-page.wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* home page upper */
  /* --------------- */
  .home-page .page-upper {
    padding-top: 1.555rem;
  }

  .home-page .page-upper > .outer {
    margin-left: 0;
    margin-right: 0;
  }

  .home-page .page-upper > .outer > .inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
    width: auto;
  }

  .home-page .page-upper > .outer > .inner > div {
    display: block;
    border: none;
    order: 0;
    flex: 1 1 auto;
    align-self: auto;
  }

  /* banner image slider */
  /* ------------------- */
  .home-page .page-upper #home-banner-slider {
    height: 440px;
    border: none;
    flex: 1 1 100%;
  }

  /* news and dashboard */
  /* ------------------ */
  #home-news-vacancies,
#dashboard-list {
    margin-top: 1.111rem;
  }

  #home-news-vacancies {
    margin-right: 10px;
  }

  #dashboard-list {
    margin-left: 10px;
  }

  /* home page lower */
  /* --------------- */
  .home-page .page-lower {
    margin-top: 1.111rem;
  }

  .home-tile-row {
    display: block;
  }
  .home-tile-row + .home-tile-row {
    margin-top: 0;
  }

  .home-tile-row > * {
    width: auto;
    margin: 0 0 5px 0;
  }

  .home-tile-row > *.empty {
    display: none;
  }

  .home-tile {
    position: relative;
    display: block;
    width: 100%;
  }

  .home-tile .image-holder {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 131px;
    height: auto;
    border-bottom: none;
    border-right-style: solid;
    border-right-width: 5px;
  }

  .home-tile .content {
    min-height: 100px;
    padding: 15px 15px 1.111rem 145px;
  }

  .home-tile .content > *:not(h2) {
    position: absolute;
    left: -99999em;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }

  .home-tile h2 {
    font-size: 1.111rem;
  }

  /*
    ==========================
    landing page
    ==========================
  */
  .landing nav#secondary-nav {
    display: block;
  }

  /* upper nav list */
  /* -------------- */
  .landing nav#secondary-nav ul,
.landing nav#secondary-nav ul li,
.landing nav#secondary-nav ul a {
    margin: 0;
    padding: 0;
    border: none;
  }

  .landing nav#secondary-nav > ul {
    padding: 1.111rem 1rem;
  }

  .landing nav#secondary-nav > ul > li {
    width: 50%;
    padding: 0 1.5rem;
  }

  .landing nav#secondary-nav > ul > li:nth-child(2n+1) {
    clear: left;
  }

  .landing nav#secondary-nav > ul > li:nth-child(n+3) {
    margin-top: 1.111rem;
  }

  /* landing news and articles */
  /* ------------------------- */
  #landing-news-articles {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  #landing-news-articles > .inner {
    display: block;
    width: 100%;
  }

  #landing-news-articles > .inner > * {
    display: block;
    width: 100%;
    border: none;
  }

  /* landing articles */
  #landing-news-articles .landing-article {
    float: left;
    width: 47%;
    border-top: solid 30px #ffffff;
  }

  #landing-news-articles .landing-article:nth-child(2n+1) {
    float: right;
  }

  #landing-news-articles .landing-article figure {
    height: 210px;
  }

  /* landing feature items */
  /* --------------------- */
  #landing-features {
    margin-left: 0;
    margin-right: 0;
  }

  #landing-features .feature-item {
    float: none;
    width: 100%;
    padding: 0;
  }

  #landing-features .feature-item + .feature-item {
    margin-top: 1.2rem;
  }

  /*
    ==========================
    complex documents pages
    ==========================
  */
  p.more-info {
    width: 100%;
  }

  form.document-search-form input {
    background: #ffffff;
    padding-left: 10px;
  }

  form.document-search-form button[type=submit] > span, form.document-search-form input[type=submit] > span {
    display: none;
  }

  form.document-search-form button[type=submit]:after, form.document-search-form input[type=submit]:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "";
    font-size: 23px;
  }

  div.document-aid ul.download-or-print {
    width: 150px;
    border-right: 0;
  }

  ul.download-or-print li a > span {
    display: none;
  }

  ul.download-or-print li a:after {
    font-family: "Font Awesome 5 Free";
    content: "";
  }

  div.document-aid ul.bidirectional-navigation {
    text-align: center;
  }

  div.document-aid ul.bidirectional-navigation li:last-child {
    margin-right: 0;
  }

  div.document-main {
    margin-bottom: 0;
  }

  .document-main img {
    display: block;
    max-width: 100%;
    height: auto;
  }

  aside.document-aside {
    width: 100%;
    margin-bottom: 0;
    float: left;
  }

  div.document-main-wider {
    width: 100%;
  }

  div.document-main-wider figure, figcaption {
    width: 280px;
  }

  div.document-main-wider figure.figure-wider {
    width: 100%;
  }

  section.document {
    margin-top: 20px;
  }

  section.document table tr th:first-child {
    width: 15%;
  }

  iv.col3-wrapper,
div.col2-wrapper,
div.col3-wrapper > div,
div.col2-wrapper > div {
    display: block;
  }

  div.col3-wrapper > div {
    width: 100%;
    padding: 10px 20px;
  }

  div.col2-wrapper > div {
    display: block;
    width: 50%;
    float: left;
  }

  .complex-document blockquote {
    margin: 15px 0 25px 0;
  }

  /* ============ tabs and accordion ============= */
  ul.document-tabs {
    display: none;
  }

  div.tabs-holder,
div.tabs-holder ul.document-accordion li > ul > li {
    display: block;
  }

  div.tabs-holder ul.document-accordion > li > a {
    display: inline-block;
    width: 100%;
    padding: 15px 20px 12px;
    line-height: initial;
  }
}
@media screen and (max-width: 598px) {
  /*
    ==========================
    general page structure
    ==========================
  */
  .wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  /*
    ==========================
    main body
    ==========================
  */
  #main-page {
    padding-top: 1.111rem;
    padding-bottom: 1.8rem;
  }

  /*
    ==========================
    main content aside
    ==========================
  */
  #main-page > aside {
    margin-right: 0;
    margin-left: 0;
    display: block;
  }

  #main-page > aside > * {
    margin-left: 0;
    margin-right: 0;
    flex: 0 0 auto;
  }

  /*
    ==========================
    footer
    ==========================
  */
  /* upper area */
  /* ---------- */
  #footer-news-links ul {
    -moz-column-count: 1;
    -ms-column-count: 1;
    column-count: 1;
  }

  /*
    ==========================
    common widgets
    ==========================
  */
  #main-page > aside .box-wrapper .inner {
    padding: 16px;
  }

  #main-page > aside .box-wrapper h2 {
    float: none;
    width: 100%;
  }

  #main-page > aside .box-wrapper .content {
    float: none;
    width: 100%;
  }

  /*
  ===============================================================================
  TYPOGRAPHY
  ===============================================================================
  */
  /*
    ==========================
    default text
    ==========================
  */
  main {
    font-size: 15px;
  }

  /*
    ==========================
    headings / titles
    ==========================
  */
  h1#page-title {
    font-size: 1.666rem;
  }

  /* heading */
  /* ------- */
  h2 {
    font-size: 1.25rem;
  }

  /* sub-heading */
  /* ----------- */
  h3 {
    font-size: 1.111rem;
  }

  /* minor heading */
  /* ------------- */
  h4 {
    font-size: 1rem;
  }

  /* minor heading 2 */
  /* --------------- */
  h5 {
    font-size: 0.8rem;
  }

  /* minor heading 3 */
  /* --------------- */
  h6 {
    font-size: 1.75rem;
  }

  /*
  ==========================
  paragraphs
  ==========================
  */
  main .intro {
    font-size: 1.111rem;
    line-height: 1.3;
  }

  /* page updated and feedback */
  /* ------------------------- */
  main p.updated-feedback span {
    display: block;
  }

  main p.updated-feedback span + span {
    margin-left: 0;
  }

  main p.updated-feedback span + span:before {
    content: none;
  }

  /*
  ==========================
  main content imagery
  ==========================
  */
  main figure {
    float: none;
    width: 100%;
  }

  main figure img {
    display: block;
  }

  main figure figcaption {
    padding: 10px 7px;
    font-size: 0.777rem;
  }

  /*
  ==========================
  forms
  ==========================
  */
  main form .field,
main form .Actions {
    padding-left: 0;
    padding-right: 0;
  }

  /*
  ==========================
  tables
  ==========================
  */
  main table {
    width: auto;
    min-width: 100%;
    position: relative;
    font-size: 13px;
    line-height: 1.2;
  }

  main table th {
    padding: 4px;
    font-size: 13px;
    line-height: 1.2;
  }

  main table td {
    padding: 4px;
  }

  main table td img {
    display: none;
    max-width: 100px;
    margin: 0 8px 5px 0;
  }

  main .table-wrapper {
    overflow-y: hidden;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }

  /*
    ===============================================================================
    PAGE TYPE OVERRIDES
    ===============================================================================
  */
  /*
    ==========================
    home page
    ==========================
  */
  /* home alert area */
  /* --------------- */
  #alert .inner {
    padding-top: 40px;
  }

  #alert .wrapper .contact-info ul li span {
    width: 38%;
  }

  /* open / close link */
  #alert .wrapper .open-close {
    top: -26px;
  }

  /* open / close state */
  #alert.closed .inner {
    padding: 12px 0 12px 0;
  }

  #alert.closed .content h2 {
    padding-right: 70px;
    font-size: 1rem;
  }

  /* layout */
  /* ------ */
  .home-page .page-upper > .outer > .inner {
    display: block;
    width: auto;
    height: auto;
  }

  .home-page .page-upper > .outer > .inner > div {
    display: block;
    border: none;
    width: auto;
  }

  /* news and dashboard */
  /* ------------------ */
  #home-news-vacancies {
    margin-right: 0;
    overflow: hidden;
  }

  #dashboard-list {
    margin-left: 0;
  }

  /* banner image slider */
  /* ------------------- */
  .home-page .page-upper #home-banner-slider {
    height: 260px;
    width: 100%;
  }

  #home-banner-slider .img-wrapper {
    width: auto;
  }

  .rsBullets,
.rsNav {
    display: none;
  }

  #home-banner-slider .img-wrapper .overlay {
    width: 100%;
    padding: 5px 8px;
    left: 0;
    right: 0;
  }

  #home-banner-slider .img-wrapper .overlay.top-left {
    border-bottom: solid 5px #a8ad00;
  }

  #home-banner-slider .img-wrapper .overlay.bottom-right {
    border-top: solid 5px #a8ad00;
  }

  #home-banner-slider .img-wrapper .overlay time {
    margin-bottom: 1px;
    font-size: 12px;
  }

  #home-banner-slider .img-wrapper .overlay h3 {
    font-weight: 600;
    letter-spacing: 0;
    font-size: 14px;
  }

  #home-banner-slider .img-wrapper .overlay .more a {
    font-size: 12px;
  }

  /* dashboard list */
  /* -------------- */
  .home-page .page-upper #dashboard-list ul {
    -moz-columns: 1;
         columns: 1;
  }

  /* home page lower */
  /* --------------- */
  .home-page .page-lower {
    margin-top: 1.111rem;
  }

  .home-page .page-lower > .inner {
    margin-left: 0;
    margin-right: 0;
  }

  .home-tile-row {
    display: block;
  }

  .home-tile-row > * {
    width: auto;
    margin: 0 0 5px 0;
  }

  .home-tile-row > *.empty {
    display: none;
  }

  .home-tile {
    position: relative;
  }

  .home-tile .image-holder {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 131px;
    height: auto;
    border-bottom: none;
    border-right-style: solid;
    border-right-width: 5px;
  }

  .home-tile .content {
    min-height: 100px;
    padding: 15px 15px 1.111rem 145px;
  }

  .home-tile .content > *:not(h2) {
    position: absolute;
    left: -99999em;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }

  .home-tile h2 {
    font-size: 1.111rem;
  }

  /*
    ==========================
    landing page
    ==========================
  */
  .landing nav#secondary-nav {
    display: none;
  }

  /* upper nav list */
  /* -------------- */
  .landing nav#secondary-nav ul,
.landing nav#secondary-nav ul li,
.landing nav#secondary-nav ul a {
    margin: 0;
    padding: 0;
    border: none;
  }

  .landing nav#secondary-nav > ul {
    padding: 1.111rem 15px;
  }

  .landing nav#secondary-nav > ul > li {
    display: block;
    float: none;
    width: 100%;
    padding: 0;
  }

  .landing nav#secondary-nav > ul > li + li {
    margin-top: 1.111rem;
  }

  /* landing news and articles */
  /* ------------------------- */
  #landing-news-articles {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  #landing-news-articles > .inner {
    display: block;
    width: 100%;
  }

  #landing-news-articles > .inner > * {
    display: block;
    width: 100%;
    border: none;
  }

  /* landing articles */
  #landing-news-articles .landing-article {
    float: none;
    width: 100%;
    border-top: none;
    margin-top: 30px;
  }

  #landing-news-articles .landing-article:nth-child(2n+1) {
    float: none;
  }

  /* landing feature items */
  /* --------------------- */
  #landing-features {
    margin-left: 0;
    margin-right: 0;
  }

  #landing-features .feature-item {
    float: none;
    width: 100%;
    padding: 0;
  }

  #landing-features .feature-item + .feature-item {
    margin-top: 24px;
  }

  /*
    ==========================
    search page
    ==========================
  */
  #search-form {
    padding: 1rem;
    text-align: right;
  }

  #search-form > input {
    display: block;
    width: 100%;
  }

  #search-form > * + * {
    margin-top: 10px;
  }

  .search-summary {
    font-size: 1.111rem;
  }

  /*
    ==========================
    sitemap
    ==========================
  */
  #sitemap {
    -moz-columns: 1;
    columns: 1;
  }

  /*
    ==========================
    complex documents pages
    ==========================
  */
  .document-overlay img {
    top: 50px;
    width: 100px;
  }

  p.more-info {
    font-size: 15px;
  }

  p.more-info a:after {
    top: 1px;
  }

  form.document-search-form {
    margin-top: 30px;
  }

  form.document-search-form input {
    width: 100%;
    padding: 9px;
  }

  form.document-search-form button[type=submit]:after,
form.document-search-form input[type=submit]:after {
    font-size: 20px;
  }

  form.document-search-form fieldset {
    width: calc(100% - 50px);
  }

  div.document-aid * span {
    display: none;
  }

  ul.content-menu ul.content-dropdown {
    margin-left: 0;
    width: 320px;
  }

  ul.content-dropdown li:last-child a span {
    display: inline-block;
    font-size: 20px;
  }

  ul.content-dropdown li:last-child a:after {
    font-size: 25px;
  }

  form.document-search-form label {
    font-size: 20px;
  }

  div.document-aid ul.content-menu {
    width: 25%;
  }

  div.document-aid ul.bidirectional-navigation {
    width: 45%;
  }

  div.document-aid ul.download-or-print {
    width: 30%;
  }

  ul.bidirectional-navigation li {
    margin: 0;
    padding: 0 15px;
  }

  ul.bidirectional-navigation li:first-child {
    border-right: 1px solid #e1e2d3;
  }

  div.h-wrapper {
    margin-top: 20px;
  }

  section.document {
    margin-top: 10px;
  }

  div.tabs-holder ul.document-accordion > li > ul > li h3 {
    margin-top: 0 !important;
  }

  section.document table tr th:first-child {
    width: 20%;
  }

  .box-wrapper .inner {
    padding: 15px 10px 15px 15px;
  }

  div.document-main-wider figure,
figcaption {
    width: 100%;
  }

  .document-main img {
    display: block;
    max-width: 100%;
    height: auto;
  }

  aside.document-aside {
    margin-bottom: 0;
  }

  ol.document-toc > li:first-child a {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .push-right {
    margin-left: 36px;
  }

  div.document-aid ul.content-menu {
    display: none;
  }

  div.document-aid > ul.content-menu {
    display: table-cell;
  }

  div.col3-wrapper > div,
div.col2-wrapper > div {
    width: 100%;
    padding: 0 20px;
  }

  div.document-uxcontrols-wrapper h4 {
    padding: 15px 20px;
  }

  .complex-document blockquote {
    margin: 30px 0;
    padding: 20px 25px;
  }

  .complex-document blockquote p {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .complex-document blockquote cite a {
    font-size: 18px;
  }

  ol.lower-roman {
    padding-left: 19px;
  }
}
.ss-htmleditorfield-file.embed {
  max-width: 100%;
}
.ss-htmleditorfield-file.embed iframe {
  max-width: 100%;
  display: block;
}

#footer .sheilded-logo {
  width: 38px;
  height: 38px;
  cursor: pointer;
}

.leftAlone {
  max-width: 100%;
}
.leftAlone iframe {
  max-width: 100%;
}
