@charset "UTF-8";
/* *********** fonts *********** */
/* *********** colors ************************ name reference ( http://chir.ag/projects/name-that-color/ ) ******************************* */
/* WHITE */
/*  *********** BLACK *********** */
/* *********** Primary Color *********** */
/* *********** secondary Color *********** */
/* *********** Accent Colors *********** */
/*
@include keyframes(slide-down) {
  0% { opacity: 1; }
  90% { opacity: 0; }
}

.element {
  width: 100px;
  height: 100px;
  background: black;
  @include animation('slide-down 5s 3');
}
*/
/*
.faded-text {
  @include opacity(0.8);
}
*/
/*
@include border-radius(5px);
@include border-top-radius(10px);
@include border-right-radius(8px);
@include border-bottom-radius(10px);
@include border-left-radius (6px);
*/
/*
@include placeholder {
    font-style:italic;
    color: white;
    font-weight:100;
}
*/
/**
 * Foundation for Sites by ZURB
 * Version 6.2.3
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-down.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-left.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-up.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-right.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-down.mui-leave.mui-leave-active {
  transform: translateY(100%);
}

.slide-out-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-right.mui-leave.mui-leave-active {
  transform: translateX(100%);
}

.slide-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-up.mui-leave.mui-leave-active {
  transform: translateY(-100%);
}

.slide-out-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-left.mui-leave.mui-leave-active {
  transform: translateX(-100%);
}

.fade-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 0;
  transition-property: opacity;
}

.fade-in.mui-enter.mui-enter-active {
  opacity: 1;
}

.fade-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 1;
  transition-property: opacity;
}

.fade-out.mui-leave.mui-leave-active {
  opacity: 0;
}

.hinge-in-from-top.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-top.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-right.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-bottom.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(90deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(90deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-left.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-x.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-y.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-out-from-top.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-top.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-right.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.hinge-out-from-bottom.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-left.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.hinge-out-from-middle-x.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-middle-y.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.scale-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-up.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-down.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-up.mui-leave.mui-leave-active {
  transform: scale(1.5);
  opacity: 0;
}

.scale-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-down.mui-leave.mui-leave-active {
  transform: scale(0.5);
  opacity: 0;
}

.spin-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out.mui-leave.mui-leave-active {
  transform: rotate(0.75turn);
  opacity: 0;
}

.spin-in-ccw.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in-ccw.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out-ccw.mui-leave.mui-leave-active {
  transform: rotate(-0.75turn);
  opacity: 0;
}

.slow {
  transition-duration: 750ms !important;
}

.fast {
  transition-duration: 250ms !important;
}

.linear {
  transition-timing-function: linear !important;
}

.ease {
  transition-timing-function: ease !important;
}

.ease-in {
  transition-timing-function: ease-in !important;
}

.ease-out {
  transition-timing-function: ease-out !important;
}

.ease-in-out {
  transition-timing-function: ease-in-out !important;
}

.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  transition-delay: 300ms !important;
}

.long-delay {
  transition-delay: 700ms !important;
}

.shake {
  animation-name: shake-7;
}
@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%);
  }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%);
  }
}

.spin-cw {
  animation-name: shake-7;
}
@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%);
  }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%);
  }
}

.spin-ccw {
  animation-name: spin-cw-1turn;
}
@keyframes spin-cw-1turn {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}

.wiggle {
  animation-name: shake-7;
}
@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%);
  }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%);
  }
}

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
  animation-duration: 500ms;
}

.infinite {
  animation-iteration-count: infinite;
}

.slow {
  animation-duration: 750ms !important;
}

.fast {
  animation-duration: 250ms !important;
}

.linear {
  animation-timing-function: linear !important;
}

.ease {
  animation-timing-function: ease !important;
}

.ease-in {
  animation-timing-function: ease-in !important;
}

.ease-out {
  animation-timing-function: ease-out !important;
}

.ease-in-out {
  animation-timing-function: ease-in-out !important;
}

.bounce-in {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  animation-delay: 300ms !important;
}

.long-delay {
  animation-delay: 700ms !important;
}

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: not-allowed;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 * [NOTE] We don't enable this ruleset in Foundation, because we want the <fieldset> element to have plain styling.
 */
/* fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
} */
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.foundation-mq {
  font-family: "small=0em&medium=48em&large=56.25em&xlarge=100em&xxlarge=125em";
}

html {
  font-size: 100%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  padding: 0;
  margin: 0;
  font-family: "proxima-nova", "helvetica", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #333232;
  background: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
  display: inline-block;
  vertical-align: middle;
}

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0;
}

select {
  width: 100%;
  border-radius: 0;
}

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  line-height: 1;
}
[data-whatinput=mouse] button {
  outline: 0;
}

.is-visible {
  display: block !important;
}

.is-hidden {
  display: none !important;
}

.row {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}
.row::before, .row::after {
  content: " ";
  display: table;
}
.row::after {
  clear: both;
}
.row.collapse > .column, .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0;
}
.row .row {
  max-width: none;
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}
@media screen and (min-width: 48em) {
  .row .row {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }
}
.row .row.collapse {
  margin-left: 0;
  margin-right: 0;
}
.row.expanded {
  max-width: none;
}
.row.expanded .row {
  margin-left: auto;
  margin-right: auto;
}

.column, .columns {
  width: 100%;
  float: left;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media screen and (min-width: 48em) {
  .column, .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
  float: right;
}
.column.end:last-child:last-child, .end.columns:last-child:last-child {
  float: left;
}

.column.row.row, .row.row.columns {
  float: none;
}
.row .column.row.row, .row .row.row.columns {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}

.small-1 {
  width: 8.3333333333%;
}

.small-push-1 {
  position: relative;
  left: 8.3333333333%;
}

.small-pull-1 {
  position: relative;
  left: -8.3333333333%;
}

.small-offset-0 {
  margin-left: 0%;
}

.small-2 {
  width: 16.6666666667%;
}

.small-push-2 {
  position: relative;
  left: 16.6666666667%;
}

.small-pull-2 {
  position: relative;
  left: -16.6666666667%;
}

.small-offset-1 {
  margin-left: 8.3333333333%;
}

.small-3 {
  width: 25%;
}

.small-push-3 {
  position: relative;
  left: 25%;
}

.small-pull-3 {
  position: relative;
  left: -25%;
}

.small-offset-2 {
  margin-left: 16.6666666667%;
}

.small-4 {
  width: 33.3333333333%;
}

.small-push-4 {
  position: relative;
  left: 33.3333333333%;
}

.small-pull-4 {
  position: relative;
  left: -33.3333333333%;
}

.small-offset-3 {
  margin-left: 25%;
}

.small-5 {
  width: 41.6666666667%;
}

.small-push-5 {
  position: relative;
  left: 41.6666666667%;
}

.small-pull-5 {
  position: relative;
  left: -41.6666666667%;
}

.small-offset-4 {
  margin-left: 33.3333333333%;
}

.small-6 {
  width: 50%;
}

.small-push-6 {
  position: relative;
  left: 50%;
}

.small-pull-6 {
  position: relative;
  left: -50%;
}

.small-offset-5 {
  margin-left: 41.6666666667%;
}

.small-7 {
  width: 58.3333333333%;
}

.small-push-7 {
  position: relative;
  left: 58.3333333333%;
}

.small-pull-7 {
  position: relative;
  left: -58.3333333333%;
}

.small-offset-6 {
  margin-left: 50%;
}

.small-8 {
  width: 66.6666666667%;
}

.small-push-8 {
  position: relative;
  left: 66.6666666667%;
}

.small-pull-8 {
  position: relative;
  left: -66.6666666667%;
}

.small-offset-7 {
  margin-left: 58.3333333333%;
}

.small-9 {
  width: 75%;
}

.small-push-9 {
  position: relative;
  left: 75%;
}

.small-pull-9 {
  position: relative;
  left: -75%;
}

.small-offset-8 {
  margin-left: 66.6666666667%;
}

.small-10 {
  width: 83.3333333333%;
}

.small-push-10 {
  position: relative;
  left: 83.3333333333%;
}

.small-pull-10 {
  position: relative;
  left: -83.3333333333%;
}

.small-offset-9 {
  margin-left: 75%;
}

.small-11 {
  width: 91.6666666667%;
}

.small-push-11 {
  position: relative;
  left: 91.6666666667%;
}

.small-pull-11 {
  position: relative;
  left: -91.6666666667%;
}

.small-offset-10 {
  margin-left: 83.3333333333%;
}

.small-12 {
  width: 100%;
}

.small-offset-11 {
  margin-left: 91.6666666667%;
}

.small-up-1 > .column, .small-up-1 > .columns {
  width: 100%;
  float: left;
}
.small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) {
  clear: both;
}
.small-up-1 > .column:last-child, .small-up-1 > .columns:last-child {
  float: left;
}

.small-up-2 > .column, .small-up-2 > .columns {
  width: 50%;
  float: left;
}
.small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) {
  clear: both;
}
.small-up-2 > .column:last-child, .small-up-2 > .columns:last-child {
  float: left;
}

.small-up-3 > .column, .small-up-3 > .columns {
  width: 33.3333333333%;
  float: left;
}
.small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) {
  clear: both;
}
.small-up-3 > .column:last-child, .small-up-3 > .columns:last-child {
  float: left;
}

.small-up-4 > .column, .small-up-4 > .columns {
  width: 25%;
  float: left;
}
.small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) {
  clear: both;
}
.small-up-4 > .column:last-child, .small-up-4 > .columns:last-child {
  float: left;
}

.small-up-5 > .column, .small-up-5 > .columns {
  width: 20%;
  float: left;
}
.small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) {
  clear: both;
}
.small-up-5 > .column:last-child, .small-up-5 > .columns:last-child {
  float: left;
}

.small-up-6 > .column, .small-up-6 > .columns {
  width: 16.6666666667%;
  float: left;
}
.small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) {
  clear: both;
}
.small-up-6 > .column:last-child, .small-up-6 > .columns:last-child {
  float: left;
}

.small-up-7 > .column, .small-up-7 > .columns {
  width: 14.2857142857%;
  float: left;
}
.small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) {
  clear: both;
}
.small-up-7 > .column:last-child, .small-up-7 > .columns:last-child {
  float: left;
}

.small-up-8 > .column, .small-up-8 > .columns {
  width: 12.5%;
  float: left;
}
.small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) {
  clear: both;
}
.small-up-8 > .column:last-child, .small-up-8 > .columns:last-child {
  float: left;
}

.small-collapse > .column, .small-collapse > .columns {
  padding-left: 0;
  padding-right: 0;
}
.small-collapse .row, .expanded.row .small-collapse.row {
  margin-left: 0;
  margin-right: 0;
}

.small-uncollapse > .column, .small-uncollapse > .columns {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.small-centered {
  float: none;
  margin-left: auto;
  margin-right: auto;
}

.small-uncentered,
.small-push-0,
.small-pull-0 {
  position: static;
  margin-left: 0;
  margin-right: 0;
  float: left;
}

@media screen and (min-width: 48em) {
  .medium-1 {
    width: 8.3333333333%;
  }

  .medium-push-1 {
    position: relative;
    left: 8.3333333333%;
  }

  .medium-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }

  .medium-offset-0 {
    margin-left: 0%;
  }

  .medium-2 {
    width: 16.6666666667%;
  }

  .medium-push-2 {
    position: relative;
    left: 16.6666666667%;
  }

  .medium-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }

  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }

  .medium-3 {
    width: 25%;
  }

  .medium-push-3 {
    position: relative;
    left: 25%;
  }

  .medium-pull-3 {
    position: relative;
    left: -25%;
  }

  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }

  .medium-4 {
    width: 33.3333333333%;
  }

  .medium-push-4 {
    position: relative;
    left: 33.3333333333%;
  }

  .medium-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }

  .medium-offset-3 {
    margin-left: 25%;
  }

  .medium-5 {
    width: 41.6666666667%;
  }

  .medium-push-5 {
    position: relative;
    left: 41.6666666667%;
  }

  .medium-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }

  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }

  .medium-6 {
    width: 50%;
  }

  .medium-push-6 {
    position: relative;
    left: 50%;
  }

  .medium-pull-6 {
    position: relative;
    left: -50%;
  }

  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }

  .medium-7 {
    width: 58.3333333333%;
  }

  .medium-push-7 {
    position: relative;
    left: 58.3333333333%;
  }

  .medium-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }

  .medium-offset-6 {
    margin-left: 50%;
  }

  .medium-8 {
    width: 66.6666666667%;
  }

  .medium-push-8 {
    position: relative;
    left: 66.6666666667%;
  }

  .medium-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }

  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }

  .medium-9 {
    width: 75%;
  }

  .medium-push-9 {
    position: relative;
    left: 75%;
  }

  .medium-pull-9 {
    position: relative;
    left: -75%;
  }

  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }

  .medium-10 {
    width: 83.3333333333%;
  }

  .medium-push-10 {
    position: relative;
    left: 83.3333333333%;
  }

  .medium-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }

  .medium-offset-9 {
    margin-left: 75%;
  }

  .medium-11 {
    width: 91.6666666667%;
  }

  .medium-push-11 {
    position: relative;
    left: 91.6666666667%;
  }

  .medium-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }

  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }

  .medium-12 {
    width: 100%;
  }

  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }

  .medium-up-1 > .column, .medium-up-1 > .columns {
    width: 100%;
    float: left;
  }
  .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
    float: left;
  }

  .medium-up-2 > .column, .medium-up-2 > .columns {
    width: 50%;
    float: left;
  }
  .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
    float: left;
  }

  .medium-up-3 > .column, .medium-up-3 > .columns {
    width: 33.3333333333%;
    float: left;
  }
  .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
    float: left;
  }

  .medium-up-4 > .column, .medium-up-4 > .columns {
    width: 25%;
    float: left;
  }
  .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
    float: left;
  }

  .medium-up-5 > .column, .medium-up-5 > .columns {
    width: 20%;
    float: left;
  }
  .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
    float: left;
  }

  .medium-up-6 > .column, .medium-up-6 > .columns {
    width: 16.6666666667%;
    float: left;
  }
  .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
    float: left;
  }

  .medium-up-7 > .column, .medium-up-7 > .columns {
    width: 14.2857142857%;
    float: left;
  }
  .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
    float: left;
  }

  .medium-up-8 > .column, .medium-up-8 > .columns {
    width: 12.5%;
    float: left;
  }
  .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
    float: left;
  }

  .medium-collapse > .column, .medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .medium-collapse .row, .expanded.row .medium-collapse.row {
    margin-left: 0;
    margin-right: 0;
  }

  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }

  .medium-centered {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }

  .medium-uncentered,
.medium-push-0,
.medium-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left;
  }
}
@media screen and (min-width: 56.25em) {
  .large-1 {
    width: 8.3333333333%;
  }

  .large-push-1 {
    position: relative;
    left: 8.3333333333%;
  }

  .large-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }

  .large-offset-0 {
    margin-left: 0%;
  }

  .large-2 {
    width: 16.6666666667%;
  }

  .large-push-2 {
    position: relative;
    left: 16.6666666667%;
  }

  .large-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }

  .large-offset-1 {
    margin-left: 8.3333333333%;
  }

  .large-3 {
    width: 25%;
  }

  .large-push-3 {
    position: relative;
    left: 25%;
  }

  .large-pull-3 {
    position: relative;
    left: -25%;
  }

  .large-offset-2 {
    margin-left: 16.6666666667%;
  }

  .large-4 {
    width: 33.3333333333%;
  }

  .large-push-4 {
    position: relative;
    left: 33.3333333333%;
  }

  .large-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }

  .large-offset-3 {
    margin-left: 25%;
  }

  .large-5 {
    width: 41.6666666667%;
  }

  .large-push-5 {
    position: relative;
    left: 41.6666666667%;
  }

  .large-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }

  .large-offset-4 {
    margin-left: 33.3333333333%;
  }

  .large-6 {
    width: 50%;
  }

  .large-push-6 {
    position: relative;
    left: 50%;
  }

  .large-pull-6 {
    position: relative;
    left: -50%;
  }

  .large-offset-5 {
    margin-left: 41.6666666667%;
  }

  .large-7 {
    width: 58.3333333333%;
  }

  .large-push-7 {
    position: relative;
    left: 58.3333333333%;
  }

  .large-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }

  .large-offset-6 {
    margin-left: 50%;
  }

  .large-8 {
    width: 66.6666666667%;
  }

  .large-push-8 {
    position: relative;
    left: 66.6666666667%;
  }

  .large-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }

  .large-offset-7 {
    margin-left: 58.3333333333%;
  }

  .large-9 {
    width: 75%;
  }

  .large-push-9 {
    position: relative;
    left: 75%;
  }

  .large-pull-9 {
    position: relative;
    left: -75%;
  }

  .large-offset-8 {
    margin-left: 66.6666666667%;
  }

  .large-10 {
    width: 83.3333333333%;
  }

  .large-push-10 {
    position: relative;
    left: 83.3333333333%;
  }

  .large-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }

  .large-offset-9 {
    margin-left: 75%;
  }

  .large-11 {
    width: 91.6666666667%;
  }

  .large-push-11 {
    position: relative;
    left: 91.6666666667%;
  }

  .large-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }

  .large-offset-10 {
    margin-left: 83.3333333333%;
  }

  .large-12 {
    width: 100%;
  }

  .large-offset-11 {
    margin-left: 91.6666666667%;
  }

  .large-up-1 > .column, .large-up-1 > .columns {
    width: 100%;
    float: left;
  }
  .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
    float: left;
  }

  .large-up-2 > .column, .large-up-2 > .columns {
    width: 50%;
    float: left;
  }
  .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
    float: left;
  }

  .large-up-3 > .column, .large-up-3 > .columns {
    width: 33.3333333333%;
    float: left;
  }
  .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
    float: left;
  }

  .large-up-4 > .column, .large-up-4 > .columns {
    width: 25%;
    float: left;
  }
  .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
    float: left;
  }

  .large-up-5 > .column, .large-up-5 > .columns {
    width: 20%;
    float: left;
  }
  .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
    float: left;
  }

  .large-up-6 > .column, .large-up-6 > .columns {
    width: 16.6666666667%;
    float: left;
  }
  .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
    float: left;
  }

  .large-up-7 > .column, .large-up-7 > .columns {
    width: 14.2857142857%;
    float: left;
  }
  .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
    float: left;
  }

  .large-up-8 > .column, .large-up-8 > .columns {
    width: 12.5%;
    float: left;
  }
  .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
    float: left;
  }

  .large-collapse > .column, .large-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .large-collapse .row, .expanded.row .large-collapse.row {
    margin-left: 0;
    margin-right: 0;
  }

  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }

  .large-centered {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }

  .large-uncentered,
.large-push-0,
.large-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left;
  }
}
@media screen and (min-width: 100em) {
  .xlarge-1 {
    width: 8.3333333333%;
  }

  .xlarge-push-1 {
    position: relative;
    left: 8.3333333333%;
  }

  .xlarge-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }

  .xlarge-offset-0 {
    margin-left: 0%;
  }

  .xlarge-2 {
    width: 16.6666666667%;
  }

  .xlarge-push-2 {
    position: relative;
    left: 16.6666666667%;
  }

  .xlarge-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }

  .xlarge-offset-1 {
    margin-left: 8.3333333333%;
  }

  .xlarge-3 {
    width: 25%;
  }

  .xlarge-push-3 {
    position: relative;
    left: 25%;
  }

  .xlarge-pull-3 {
    position: relative;
    left: -25%;
  }

  .xlarge-offset-2 {
    margin-left: 16.6666666667%;
  }

  .xlarge-4 {
    width: 33.3333333333%;
  }

  .xlarge-push-4 {
    position: relative;
    left: 33.3333333333%;
  }

  .xlarge-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }

  .xlarge-offset-3 {
    margin-left: 25%;
  }

  .xlarge-5 {
    width: 41.6666666667%;
  }

  .xlarge-push-5 {
    position: relative;
    left: 41.6666666667%;
  }

  .xlarge-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }

  .xlarge-offset-4 {
    margin-left: 33.3333333333%;
  }

  .xlarge-6 {
    width: 50%;
  }

  .xlarge-push-6 {
    position: relative;
    left: 50%;
  }

  .xlarge-pull-6 {
    position: relative;
    left: -50%;
  }

  .xlarge-offset-5 {
    margin-left: 41.6666666667%;
  }

  .xlarge-7 {
    width: 58.3333333333%;
  }

  .xlarge-push-7 {
    position: relative;
    left: 58.3333333333%;
  }

  .xlarge-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }

  .xlarge-offset-6 {
    margin-left: 50%;
  }

  .xlarge-8 {
    width: 66.6666666667%;
  }

  .xlarge-push-8 {
    position: relative;
    left: 66.6666666667%;
  }

  .xlarge-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }

  .xlarge-offset-7 {
    margin-left: 58.3333333333%;
  }

  .xlarge-9 {
    width: 75%;
  }

  .xlarge-push-9 {
    position: relative;
    left: 75%;
  }

  .xlarge-pull-9 {
    position: relative;
    left: -75%;
  }

  .xlarge-offset-8 {
    margin-left: 66.6666666667%;
  }

  .xlarge-10 {
    width: 83.3333333333%;
  }

  .xlarge-push-10 {
    position: relative;
    left: 83.3333333333%;
  }

  .xlarge-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }

  .xlarge-offset-9 {
    margin-left: 75%;
  }

  .xlarge-11 {
    width: 91.6666666667%;
  }

  .xlarge-push-11 {
    position: relative;
    left: 91.6666666667%;
  }

  .xlarge-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }

  .xlarge-offset-10 {
    margin-left: 83.3333333333%;
  }

  .xlarge-12 {
    width: 100%;
  }

  .xlarge-offset-11 {
    margin-left: 91.6666666667%;
  }

  .xlarge-up-1 > .column, .xlarge-up-1 > .columns {
    width: 100%;
    float: left;
  }
  .xlarge-up-1 > .column:nth-of-type(1n), .xlarge-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-1 > .column:nth-of-type(1n+1), .xlarge-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .xlarge-up-1 > .column:last-child, .xlarge-up-1 > .columns:last-child {
    float: left;
  }

  .xlarge-up-2 > .column, .xlarge-up-2 > .columns {
    width: 50%;
    float: left;
  }
  .xlarge-up-2 > .column:nth-of-type(1n), .xlarge-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-2 > .column:nth-of-type(2n+1), .xlarge-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .xlarge-up-2 > .column:last-child, .xlarge-up-2 > .columns:last-child {
    float: left;
  }

  .xlarge-up-3 > .column, .xlarge-up-3 > .columns {
    width: 33.3333333333%;
    float: left;
  }
  .xlarge-up-3 > .column:nth-of-type(1n), .xlarge-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-3 > .column:nth-of-type(3n+1), .xlarge-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .xlarge-up-3 > .column:last-child, .xlarge-up-3 > .columns:last-child {
    float: left;
  }

  .xlarge-up-4 > .column, .xlarge-up-4 > .columns {
    width: 25%;
    float: left;
  }
  .xlarge-up-4 > .column:nth-of-type(1n), .xlarge-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-4 > .column:nth-of-type(4n+1), .xlarge-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .xlarge-up-4 > .column:last-child, .xlarge-up-4 > .columns:last-child {
    float: left;
  }

  .xlarge-up-5 > .column, .xlarge-up-5 > .columns {
    width: 20%;
    float: left;
  }
  .xlarge-up-5 > .column:nth-of-type(1n), .xlarge-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-5 > .column:nth-of-type(5n+1), .xlarge-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .xlarge-up-5 > .column:last-child, .xlarge-up-5 > .columns:last-child {
    float: left;
  }

  .xlarge-up-6 > .column, .xlarge-up-6 > .columns {
    width: 16.6666666667%;
    float: left;
  }
  .xlarge-up-6 > .column:nth-of-type(1n), .xlarge-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-6 > .column:nth-of-type(6n+1), .xlarge-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .xlarge-up-6 > .column:last-child, .xlarge-up-6 > .columns:last-child {
    float: left;
  }

  .xlarge-up-7 > .column, .xlarge-up-7 > .columns {
    width: 14.2857142857%;
    float: left;
  }
  .xlarge-up-7 > .column:nth-of-type(1n), .xlarge-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-7 > .column:nth-of-type(7n+1), .xlarge-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .xlarge-up-7 > .column:last-child, .xlarge-up-7 > .columns:last-child {
    float: left;
  }

  .xlarge-up-8 > .column, .xlarge-up-8 > .columns {
    width: 12.5%;
    float: left;
  }
  .xlarge-up-8 > .column:nth-of-type(1n), .xlarge-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-8 > .column:nth-of-type(8n+1), .xlarge-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .xlarge-up-8 > .column:last-child, .xlarge-up-8 > .columns:last-child {
    float: left;
  }

  .xlarge-collapse > .column, .xlarge-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .xlarge-collapse .row, .expanded.row .xlarge-collapse.row {
    margin-left: 0;
    margin-right: 0;
  }

  .xlarge-uncollapse > .column, .xlarge-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }

  .xlarge-centered {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }

  .xlarge-uncentered,
.xlarge-push-0,
.xlarge-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left;
  }
}
@media screen and (min-width: 125em) {
  .xxlarge-1 {
    width: 8.3333333333%;
  }

  .xxlarge-push-1 {
    position: relative;
    left: 8.3333333333%;
  }

  .xxlarge-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }

  .xxlarge-offset-0 {
    margin-left: 0%;
  }

  .xxlarge-2 {
    width: 16.6666666667%;
  }

  .xxlarge-push-2 {
    position: relative;
    left: 16.6666666667%;
  }

  .xxlarge-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }

  .xxlarge-offset-1 {
    margin-left: 8.3333333333%;
  }

  .xxlarge-3 {
    width: 25%;
  }

  .xxlarge-push-3 {
    position: relative;
    left: 25%;
  }

  .xxlarge-pull-3 {
    position: relative;
    left: -25%;
  }

  .xxlarge-offset-2 {
    margin-left: 16.6666666667%;
  }

  .xxlarge-4 {
    width: 33.3333333333%;
  }

  .xxlarge-push-4 {
    position: relative;
    left: 33.3333333333%;
  }

  .xxlarge-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }

  .xxlarge-offset-3 {
    margin-left: 25%;
  }

  .xxlarge-5 {
    width: 41.6666666667%;
  }

  .xxlarge-push-5 {
    position: relative;
    left: 41.6666666667%;
  }

  .xxlarge-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }

  .xxlarge-offset-4 {
    margin-left: 33.3333333333%;
  }

  .xxlarge-6 {
    width: 50%;
  }

  .xxlarge-push-6 {
    position: relative;
    left: 50%;
  }

  .xxlarge-pull-6 {
    position: relative;
    left: -50%;
  }

  .xxlarge-offset-5 {
    margin-left: 41.6666666667%;
  }

  .xxlarge-7 {
    width: 58.3333333333%;
  }

  .xxlarge-push-7 {
    position: relative;
    left: 58.3333333333%;
  }

  .xxlarge-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }

  .xxlarge-offset-6 {
    margin-left: 50%;
  }

  .xxlarge-8 {
    width: 66.6666666667%;
  }

  .xxlarge-push-8 {
    position: relative;
    left: 66.6666666667%;
  }

  .xxlarge-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }

  .xxlarge-offset-7 {
    margin-left: 58.3333333333%;
  }

  .xxlarge-9 {
    width: 75%;
  }

  .xxlarge-push-9 {
    position: relative;
    left: 75%;
  }

  .xxlarge-pull-9 {
    position: relative;
    left: -75%;
  }

  .xxlarge-offset-8 {
    margin-left: 66.6666666667%;
  }

  .xxlarge-10 {
    width: 83.3333333333%;
  }

  .xxlarge-push-10 {
    position: relative;
    left: 83.3333333333%;
  }

  .xxlarge-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }

  .xxlarge-offset-9 {
    margin-left: 75%;
  }

  .xxlarge-11 {
    width: 91.6666666667%;
  }

  .xxlarge-push-11 {
    position: relative;
    left: 91.6666666667%;
  }

  .xxlarge-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }

  .xxlarge-offset-10 {
    margin-left: 83.3333333333%;
  }

  .xxlarge-12 {
    width: 100%;
  }

  .xxlarge-offset-11 {
    margin-left: 91.6666666667%;
  }

  .xxlarge-up-1 > .column, .xxlarge-up-1 > .columns {
    width: 100%;
    float: left;
  }
  .xxlarge-up-1 > .column:nth-of-type(1n), .xxlarge-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-1 > .column:nth-of-type(1n+1), .xxlarge-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .xxlarge-up-1 > .column:last-child, .xxlarge-up-1 > .columns:last-child {
    float: left;
  }

  .xxlarge-up-2 > .column, .xxlarge-up-2 > .columns {
    width: 50%;
    float: left;
  }
  .xxlarge-up-2 > .column:nth-of-type(1n), .xxlarge-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-2 > .column:nth-of-type(2n+1), .xxlarge-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .xxlarge-up-2 > .column:last-child, .xxlarge-up-2 > .columns:last-child {
    float: left;
  }

  .xxlarge-up-3 > .column, .xxlarge-up-3 > .columns {
    width: 33.3333333333%;
    float: left;
  }
  .xxlarge-up-3 > .column:nth-of-type(1n), .xxlarge-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-3 > .column:nth-of-type(3n+1), .xxlarge-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .xxlarge-up-3 > .column:last-child, .xxlarge-up-3 > .columns:last-child {
    float: left;
  }

  .xxlarge-up-4 > .column, .xxlarge-up-4 > .columns {
    width: 25%;
    float: left;
  }
  .xxlarge-up-4 > .column:nth-of-type(1n), .xxlarge-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-4 > .column:nth-of-type(4n+1), .xxlarge-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .xxlarge-up-4 > .column:last-child, .xxlarge-up-4 > .columns:last-child {
    float: left;
  }

  .xxlarge-up-5 > .column, .xxlarge-up-5 > .columns {
    width: 20%;
    float: left;
  }
  .xxlarge-up-5 > .column:nth-of-type(1n), .xxlarge-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-5 > .column:nth-of-type(5n+1), .xxlarge-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .xxlarge-up-5 > .column:last-child, .xxlarge-up-5 > .columns:last-child {
    float: left;
  }

  .xxlarge-up-6 > .column, .xxlarge-up-6 > .columns {
    width: 16.6666666667%;
    float: left;
  }
  .xxlarge-up-6 > .column:nth-of-type(1n), .xxlarge-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-6 > .column:nth-of-type(6n+1), .xxlarge-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .xxlarge-up-6 > .column:last-child, .xxlarge-up-6 > .columns:last-child {
    float: left;
  }

  .xxlarge-up-7 > .column, .xxlarge-up-7 > .columns {
    width: 14.2857142857%;
    float: left;
  }
  .xxlarge-up-7 > .column:nth-of-type(1n), .xxlarge-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-7 > .column:nth-of-type(7n+1), .xxlarge-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .xxlarge-up-7 > .column:last-child, .xxlarge-up-7 > .columns:last-child {
    float: left;
  }

  .xxlarge-up-8 > .column, .xxlarge-up-8 > .columns {
    width: 12.5%;
    float: left;
  }
  .xxlarge-up-8 > .column:nth-of-type(1n), .xxlarge-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-8 > .column:nth-of-type(8n+1), .xxlarge-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .xxlarge-up-8 > .column:last-child, .xxlarge-up-8 > .columns:last-child {
    float: left;
  }

  .xxlarge-collapse > .column, .xxlarge-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .xxlarge-collapse .row, .expanded.row .xxlarge-collapse.row {
    margin-left: 0;
    margin-right: 0;
  }

  .xxlarge-uncollapse > .column, .xxlarge-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }

  .xxlarge-centered {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }

  .xxlarge-uncentered,
.xxlarge-push-0,
.xxlarge-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left;
  }
}
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

p {
  font-size: inherit;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-rendering: optimizeLegibility;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: bold;
  line-height: inherit;
}

small {
  font-size: 80%;
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Life Savers", cursive, serif;
  font-weight: 600;
  font-style: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  color: #cacaca;
  line-height: 0;
}

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1.1875rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1.0625rem;
}

h6 {
  font-size: 1rem;
}

@media screen and (min-width: 48em) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 1.9375rem;
  }

  h4 {
    font-size: 1.5625rem;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1rem;
  }
}
a {
  color: #ffd400;
  text-decoration: none;
  line-height: inherit;
  cursor: pointer;
}
a:hover, a:focus {
  color: #b39400;
}
a img {
  border: 0;
}

hr {
  max-width: 75rem;
  height: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0;
  margin: 1.25rem auto;
  clear: both;
}

ul,
ol,
dl {
  line-height: 1.6;
  margin-bottom: 1rem;
  list-style-position: outside;
}

li {
  font-size: inherit;
}

ul {
  list-style-type: disc;
  margin-left: 1.25rem;
}

ol {
  margin-left: 1.25rem;
}

ul ul, ul ol, ol ul, ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}

dl {
  margin-bottom: 1rem;
}
dl dt {
  margin-bottom: 0.3rem;
  font-weight: bold;
}

blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #cacaca;
}
blockquote, blockquote p {
  line-height: 1.6;
  color: #8a8a8a;
}

cite {
  display: block;
  font-size: 0.8125rem;
  color: #8a8a8a;
}
cite:before {
  content: "— ";
}

abbr {
  color: #333232;
  cursor: help;
  border-bottom: 1px dotted black;
}

code {
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: black;
  background-color: #e6e6e6;
  border: 1px solid #cacaca;
  padding: 0.125rem 0.3125rem 0.0625rem;
}

kbd {
  padding: 0.125rem 0.25rem 0;
  margin: 0;
  background-color: #e6e6e6;
  color: black;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
}

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #806a00;
}

.lead {
  font-size: 125%;
  line-height: 1.6;
}

.stat {
  font-size: 2.5rem;
  line-height: 1;
}
p + .stat {
  margin-top: -1rem;
}

.no-bullet {
  margin-left: 0;
  list-style: none;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

@media screen and (min-width: 48em) {
  .medium-text-left {
    text-align: left;
  }

  .medium-text-right {
    text-align: right;
  }

  .medium-text-center {
    text-align: center;
  }

  .medium-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 56.25em) {
  .large-text-left {
    text-align: left;
  }

  .large-text-right {
    text-align: right;
  }

  .large-text-center {
    text-align: center;
  }

  .large-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 100em) {
  .xlarge-text-left {
    text-align: left;
  }

  .xlarge-text-right {
    text-align: right;
  }

  .xlarge-text-center {
    text-align: center;
  }

  .xlarge-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 125em) {
  .xxlarge-text-left {
    text-align: left;
  }

  .xxlarge-text-right {
    text-align: right;
  }

  .xxlarge-text-center {
    text-align: center;
  }

  .xxlarge-text-justify {
    text-align: justify;
  }
}
.show-for-print {
  display: none !important;
}

@media print {
  * {
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  .show-for-print {
    display: block !important;
  }

  .hide-for-print {
    display: none !important;
  }

  table.show-for-print {
    display: table !important;
  }

  thead.show-for-print {
    display: table-header-group !important;
  }

  tbody.show-for-print {
    display: table-row-group !important;
  }

  tr.show-for-print {
    display: table-row !important;
  }

  td.show-for-print {
    display: table-cell !important;
  }

  th.show-for-print {
    display: table-cell !important;
  }

  a,
a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  .ir a:after,
a[href^="javascript:"]:after,
a[href^="#"]:after {
    content: "";
  }

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

  pre,
blockquote {
    border: 1px solid #8a8a8a;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }
}
.button {
  display: inline-block;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  vertical-align: middle;
  border: 1px solid transparent;
  border-radius: 50px;
  padding: 0.85em 1em;
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  background-color: #ffd400;
  color: white;
}
[data-whatinput=mouse] .button {
  outline: 0;
}
.button:hover, .button:focus {
  background-color: #b39400;
  color: white;
}
.button.tiny {
  font-size: 0.6rem;
}
.button.small {
  font-size: 0.75rem;
}
.button.large {
  font-size: 1.25rem;
}
.button.expanded {
  display: block;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.button.primary {
  background-color: #ffd400;
  color: white;
}
.button.primary:hover, .button.primary:focus {
  background-color: #ccaa00;
  color: white;
}
.button.secondary {
  background-color: #333232;
  color: white;
}
.button.secondary:hover, .button.secondary:focus {
  background-color: #292828;
  color: white;
}
.button.success {
  background-color: #49A970;
  color: white;
}
.button.success:hover, .button.success:focus {
  background-color: #3a875a;
  color: white;
}
.button.warning {
  background-color: #E5591E;
  color: white;
}
.button.warning:hover, .button.warning:focus {
  background-color: #ba4615;
  color: white;
}
.button.alert {
  background-color: #DE352C;
  color: white;
}
.button.alert:hover, .button.alert:focus {
  background-color: #b8251d;
  color: white;
}
.button.hollow {
  border: 1px solid #ffd400;
  color: #ffd400;
}
.button.hollow, .button.hollow:hover, .button.hollow:focus {
  background-color: transparent;
}
.button.hollow:hover, .button.hollow:focus {
  border-color: #806a00;
  color: #806a00;
}
.button.hollow.primary {
  border: 1px solid #ffd400;
  color: #ffd400;
}
.button.hollow.primary:hover, .button.hollow.primary:focus {
  border-color: #806a00;
  color: #806a00;
}
.button.hollow.secondary {
  border: 1px solid #333232;
  color: #333232;
}
.button.hollow.secondary:hover, .button.hollow.secondary:focus {
  border-color: #1a1919;
  color: #1a1919;
}
.button.hollow.success {
  border: 1px solid #49A970;
  color: #49A970;
}
.button.hollow.success:hover, .button.hollow.success:focus {
  border-color: #255538;
  color: #255538;
}
.button.hollow.warning {
  border: 1px solid #E5591E;
  color: #E5591E;
}
.button.hollow.warning:hover, .button.hollow.warning:focus {
  border-color: #742c0d;
  color: #742c0d;
}
.button.hollow.alert {
  border: 1px solid #DE352C;
  color: #DE352C;
}
.button.hollow.alert:hover, .button.hollow.alert:focus {
  border-color: #731712;
  color: #731712;
}
.button.disabled, .button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  background-color: #ffd400;
  color: white;
}
.button.dropdown::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4em;
  border-color: white transparent transparent;
  border-top-style: solid;
  border-bottom-width: 0;
  position: relative;
  top: 0.4em;
  float: right;
  margin-left: 1em;
  display: inline-block;
}
.button.arrow-only::after {
  margin-left: 0;
  float: none;
  top: -0.1em;
}

[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  margin: 0 0 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: black;
  background-color: white;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
}
[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=url]:focus, [type=color]:focus,
textarea:focus {
  border: 1px solid #8a8a8a;
  background-color: white;
  outline: none;
  box-shadow: 0 0 5px #cacaca;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

textarea {
  max-width: 100%;
}
textarea[rows] {
  height: auto;
}

input::placeholder,
textarea::placeholder {
  color: #cacaca;
}
input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  cursor: not-allowed;
}

[type=submit],
[type=button] {
  border-radius: 50px;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  box-sizing: border-box;
}

[type=file],
[type=checkbox],
[type=radio] {
  margin: 0 0 1rem;
}

[type=checkbox] + label,
[type=radio] + label {
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
  vertical-align: baseline;
}
[type=checkbox] + label[for],
[type=radio] + label[for] {
  cursor: pointer;
}

label > [type=checkbox],
label > [type=radio] {
  margin-right: 0.5rem;
}

[type=file] {
  width: 100%;
}

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  color: black;
}
label.middle {
  margin: 0 0 1rem;
  padding: 0.5625rem 0;
}

.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: black;
}

.input-group {
  display: table;
  width: 100%;
  margin-bottom: 1rem;
}
.input-group > :first-child {
  border-radius: 0 0 0 0;
}
.input-group > :last-child > * {
  border-radius: 0 0 0 0;
}

.input-group-button, .input-group-field, .input-group-label {
  margin: 0;
  white-space: nowrap;
  display: table-cell;
  vertical-align: middle;
}

.input-group-label {
  text-align: center;
  padding: 0 1rem;
  background: #e6e6e6;
  color: black;
  border: 1px solid #cacaca;
  white-space: nowrap;
  width: 1%;
  height: 100%;
}
.input-group-label:first-child {
  border-right: 0;
}
.input-group-label:last-child {
  border-left: 0;
}

.input-group-field {
  border-radius: 0;
  height: 2.5rem;
}

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  height: 100%;
  width: 1%;
}
.input-group-button a,
.input-group-button input,
.input-group-button button {
  margin: 0;
}

.input-group .input-group-button {
  display: table-cell;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

legend {
  margin-bottom: 0.5rem;
  max-width: 100%;
}

.fieldset {
  border: 1px solid #cacaca;
  padding: 1.25rem;
  margin: 1.125rem 0;
}
.fieldset legend {
  background: white;
  padding: 0 0.1875rem;
  margin: 0;
  margin-left: -0.1875rem;
}

select {
  height: 2.4375rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-family: inherit;
  line-height: normal;
  color: black;
  background-color: white;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28138, 138, 138%29'></polygon></svg>");
  background-size: 9px 6px;
  background-position: right -1rem center;
  background-origin: content-box;
  background-repeat: no-repeat;
  padding-right: 1.5rem;
}
@media screen and (min-width: 0\0) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}
select:disabled {
  background-color: #e6e6e6;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}

.is-invalid-input:not(:focus) {
  background-color: rgba(222, 53, 44, 0.1);
  border-color: #DE352C;
}

.is-invalid-label {
  color: #DE352C;
}

.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #DE352C;
}
.form-error.is-visible {
  display: block;
}

input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
  margin-top: 0.45rem;
  margin-bottom: 0.45rem;
  border: 0;
  line-height: 1;
}
input[type=range]:focus {
  outline: 0;
}
input[type=range][disabled] {
  opacity: 0.25;
}
input[type=range]::-webkit-slider-runnable-track {
  height: 0.5rem;
  background: #e6e6e6;
}
input[type=range]::-webkit-slider-handle {
  -webkit-appearance: none;
  background: #ffd400;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: -0.45rem;
}
input[type=range]::-moz-range-track {
  -moz-appearance: none;
  height: 0.5rem;
  background: #e6e6e6;
}
input[type=range]::-moz-range-thumb {
  -moz-appearance: none;
  background: #ffd400;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: -0.45rem;
}
input[type=range]::-ms-track {
  height: 0.5rem;
  background: #e6e6e6;
  color: transparent;
  border: 0;
  overflow: visible;
  border-top: 0.45rem solid white;
  border-bottom: 0.45rem solid white;
}
input[type=range]::-ms-thumb {
  background: #ffd400;
  width: 1.4rem;
  height: 1.4rem;
  border: 0;
}
input[type=range]::-ms-fill-lower {
  background: #cacaca;
}
input[type=range]::-ms-fill-upper {
  background: #e6e6e6;
}
output {
  line-height: 1.4rem;
  vertical-align: middle;
  margin-left: 0.5em;
}

.accordion {
  list-style-type: none;
  background: white;
  margin-left: 0;
}

.accordion-item:first-child > :first-child {
  border-radius: 0 0 0 0;
}
.accordion-item:last-child > :last-child {
  border-radius: 0 0 0 0;
}

.accordion-title {
  display: block;
  padding: 1.25rem 1rem;
  line-height: 1;
  font-size: 0.75rem;
  color: #ffd400;
  position: relative;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
}
:last-child:not(.is-active) > .accordion-title {
  border-radius: 0 0 0 0;
  border-bottom: 1px solid #e6e6e6;
}
.accordion-title:hover, .accordion-title:focus {
  background-color: #e6e6e6;
}
.accordion-title::before {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  margin-top: -0.5rem;
}
.is-active > .accordion-title::before {
  content: "–";
}

.accordion-content {
  padding: 1rem;
  display: none;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  background-color: white;
  color: #333232;
}
:last-child > .accordion-content:last-child {
  border-bottom: 1px solid #e6e6e6;
}

.is-accordion-submenu-parent > a {
  position: relative;
}
.is-accordion-submenu-parent > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  border-color: #ffd400 transparent transparent;
  border-top-style: solid;
  border-bottom-width: 0;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  right: 1rem;
}

.is-accordion-submenu-parent[aria-expanded=true] > a::after {
  transform-origin: 50% 50%;
  transform: scaleY(-1);
}

.badge {
  display: inline-block;
  padding: 0.3em;
  min-width: 2.1em;
  font-size: 0.6rem;
  text-align: center;
  border-radius: 50%;
  background: #ffd400;
  color: white;
}
.badge.secondary {
  background: #333232;
  color: white;
}
.badge.success {
  background: #49A970;
  color: white;
}
.badge.warning {
  background: #E5591E;
  color: white;
}
.badge.alert {
  background: #DE352C;
  color: white;
}

.breadcrumbs {
  list-style: none;
  margin: 0 0 1rem 0;
}
.breadcrumbs::before, .breadcrumbs::after {
  content: " ";
  display: table;
}
.breadcrumbs::after {
  clear: both;
}
.breadcrumbs li {
  float: left;
  color: black;
  font-size: 0.6875rem;
  cursor: default;
  text-transform: uppercase;
}
.breadcrumbs li:not(:last-child)::after {
  color: #cacaca;
  content: "/";
  margin: 0 0.75rem;
  position: relative;
  top: 1px;
  opacity: 1;
}
.breadcrumbs a {
  color: #ffd400;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs .disabled {
  color: #cacaca;
  cursor: not-allowed;
}

.button-group {
  margin-bottom: 1rem;
  font-size: 0;
}
.button-group::before, .button-group::after {
  content: " ";
  display: table;
}
.button-group::after {
  clear: both;
}
.button-group .button {
  margin: 0;
  margin-right: 1px;
  margin-bottom: 1px;
  font-size: 0.9rem;
}
.button-group .button:last-child {
  margin-right: 0;
}
.button-group.tiny .button {
  font-size: 0.6rem;
}
.button-group.small .button {
  font-size: 0.75rem;
}
.button-group.large .button {
  font-size: 1.25rem;
}
.button-group.expanded {
  margin-right: -1px;
}
.button-group.expanded::before, .button-group.expanded::after {
  display: none;
}
.button-group.expanded .button:first-child:nth-last-child(2), .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button {
  display: inline-block;
  width: calc(50% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(2):last-child, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child {
  margin-right: -6px;
}
.button-group.expanded .button:first-child:nth-last-child(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button {
  display: inline-block;
  width: calc(33.3333333333% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(3):last-child, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child {
  margin-right: -6px;
}
.button-group.expanded .button:first-child:nth-last-child(4), .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button {
  display: inline-block;
  width: calc(25% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(4):last-child, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child {
  margin-right: -6px;
}
.button-group.expanded .button:first-child:nth-last-child(5), .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button {
  display: inline-block;
  width: calc(20% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(5):last-child, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child {
  margin-right: -6px;
}
.button-group.expanded .button:first-child:nth-last-child(6), .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button {
  display: inline-block;
  width: calc(16.6666666667% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(6):last-child, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child {
  margin-right: -6px;
}
.button-group.primary .button {
  background-color: #ffd400;
  color: white;
}
.button-group.primary .button:hover, .button-group.primary .button:focus {
  background-color: #ccaa00;
  color: white;
}
.button-group.secondary .button {
  background-color: #333232;
  color: white;
}
.button-group.secondary .button:hover, .button-group.secondary .button:focus {
  background-color: #292828;
  color: white;
}
.button-group.success .button {
  background-color: #49A970;
  color: white;
}
.button-group.success .button:hover, .button-group.success .button:focus {
  background-color: #3a875a;
  color: white;
}
.button-group.warning .button {
  background-color: #E5591E;
  color: white;
}
.button-group.warning .button:hover, .button-group.warning .button:focus {
  background-color: #ba4615;
  color: white;
}
.button-group.alert .button {
  background-color: #DE352C;
  color: white;
}
.button-group.alert .button:hover, .button-group.alert .button:focus {
  background-color: #b8251d;
  color: white;
}
.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
  width: 100%;
}
.button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 48em) {
  .button-group.stacked-for-small .button {
    width: auto;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 56.25em) {
  .button-group.stacked-for-medium .button {
    width: auto;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 47.9375em) {
  .button-group.stacked-for-small.expanded {
    display: block;
  }
  .button-group.stacked-for-small.expanded .button {
    display: block;
    margin-right: 0;
  }
}

.callout {
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 0;
  position: relative;
  color: #333232;
  background-color: white;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.primary {
  background-color: #fff9d9;
}
.callout.secondary {
  background-color: #e1e0e0;
}
.callout.success {
  background-color: #e3f3e9;
}
.callout.warning {
  background-color: #fbe6dd;
}
.callout.alert {
  background-color: #fae1df;
}
.callout.small {
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.callout.large {
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
}

.close-button {
  position: absolute;
  color: #8a8a8a;
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
  cursor: pointer;
}
[data-whatinput=mouse] .close-button {
  outline: 0;
}
.close-button:hover, .close-button:focus {
  color: black;
}

.menu {
  margin: 0;
  list-style-type: none;
}
.menu > li {
  display: table-cell;
  vertical-align: middle;
}
[data-whatinput=mouse] .menu > li {
  outline: 0;
}
.menu > li > a {
  display: block;
  padding: 0.7rem 1rem;
  line-height: 1;
}
.menu input,
.menu a,
.menu button {
  margin-bottom: 0;
}
.menu > li > a img,
.menu > li > a i,
.menu > li > a svg {
  vertical-align: middle;
}
.menu > li > a img + span,
.menu > li > a i + span,
.menu > li > a svg + span {
  vertical-align: middle;
}
.menu > li > a img,
.menu > li > a i,
.menu > li > a svg {
  margin-right: 0.25rem;
  display: inline-block;
}
.menu > li {
  display: table-cell;
}
.menu.vertical > li {
  display: block;
}
@media screen and (min-width: 48em) {
  .menu.medium-horizontal > li {
    display: table-cell;
  }
  .menu.medium-vertical > li {
    display: block;
  }
}
@media screen and (min-width: 56.25em) {
  .menu.large-horizontal > li {
    display: table-cell;
  }
  .menu.large-vertical > li {
    display: block;
  }
}
@media screen and (min-width: 100em) {
  .menu.xlarge-horizontal > li {
    display: table-cell;
  }
  .menu.xlarge-vertical > li {
    display: block;
  }
}
@media screen and (min-width: 125em) {
  .menu.xxlarge-horizontal > li {
    display: table-cell;
  }
  .menu.xxlarge-vertical > li {
    display: block;
  }
}
.menu.simple li {
  line-height: 1;
  display: inline-block;
  margin-right: 1rem;
}
.menu.simple a {
  padding: 0;
}
.menu.align-right::before, .menu.align-right::after {
  content: " ";
  display: table;
}
.menu.align-right::after {
  clear: both;
}
.menu.align-right > li {
  float: right;
}
.menu.expanded {
  width: 100%;
  display: table;
  table-layout: fixed;
}
.menu.expanded > li:first-child:last-child {
  width: 100%;
}
.menu.icon-top > li > a {
  text-align: center;
}
.menu.icon-top > li > a img,
.menu.icon-top > li > a i,
.menu.icon-top > li > a svg {
  display: block;
  margin: 0 auto 0.25rem;
}
.menu.nested {
  margin-left: 1rem;
}
.menu .active > a {
  color: white;
  background: #ffd400;
}

.menu-text {
  font-weight: bold;
  color: inherit;
  line-height: 1;
  padding-top: 0;
  padding-bottom: 0;
  padding: 0.7rem 1rem;
}

.menu-centered {
  text-align: center;
}
.menu-centered > .menu {
  display: inline-block;
}

.no-js [data-responsive-menu] ul {
  display: none;
}

.menu-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  width: 20px;
  height: 16px;
}
.menu-icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  top: 0;
  left: 0;
  box-shadow: 0 7px 0 white, 0 14px 0 white;
}
.menu-icon:hover::after {
  background: #cacaca;
  box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca;
}

.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  width: 20px;
  height: 16px;
}
.menu-icon.dark::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: black;
  top: 0;
  left: 0;
  box-shadow: 0 7px 0 black, 0 14px 0 black;
}
.menu-icon.dark:hover::after {
  background: #8a8a8a;
  box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a;
}

.is-drilldown {
  position: relative;
  overflow: hidden;
}
.is-drilldown li {
  display: block !important;
}

.is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  height: 100%;
  width: 100%;
  background: white;
  transition: transform 0.15s linear;
}
.is-drilldown-submenu.is-active {
  z-index: 1;
  display: block;
  transform: translateX(-100%);
}
.is-drilldown-submenu.is-closing {
  transform: translateX(100%);
}

.is-drilldown-submenu-parent > a {
  position: relative;
}
.is-drilldown-submenu-parent > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  border-color: transparent transparent transparent #ffd400;
  border-left-style: solid;
  border-right-width: 0;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 1rem;
}

.js-drilldown-back > a::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  border-color: transparent #ffd400 transparent transparent;
  border-right-style: solid;
  border-left-width: 0;
  border-left-width: 0;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
}

.dropdown-pane {
  background-color: white;
  border: 1px solid #cacaca;
  border-radius: 0;
  display: block;
  font-size: 1rem;
  padding: 1rem;
  position: absolute;
  visibility: hidden;
  width: 300px;
  z-index: 10;
}
.dropdown-pane.is-open {
  visibility: visible;
}

.dropdown-pane.tiny {
  width: 100px;
}

.dropdown-pane.small {
  width: 200px;
}

.dropdown-pane.large {
  width: 400px;
}

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  left: auto;
  right: 0;
  top: 100%;
}
.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 0;
  top: 100%;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a {
  padding-right: 1.5rem;
  position: relative;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: #ffd400 transparent transparent;
  border-top-style: solid;
  border-bottom-width: 0;
  right: 5px;
  margin-top: -2px;
}
[data-whatinput=mouse] .dropdown.menu a {
  outline: 0;
}
.no-js .dropdown.menu ul {
  display: none;
}
.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0;
}
.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  left: auto;
  right: 100%;
}
.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
.dropdown.menu.vertical > li > a::after {
  right: 14px;
  margin-top: -3px;
}
.dropdown.menu.vertical > li.opens-left > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent #ffd400 transparent transparent;
  border-right-style: solid;
  border-left-width: 0;
}
.dropdown.menu.vertical > li.opens-right > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent transparent transparent #ffd400;
  border-left-style: solid;
  border-right-width: 0;
}
@media screen and (min-width: 48em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%;
  }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    padding-right: 1.5rem;
    position: relative;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #ffd400 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px;
  }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 100%;
  }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.medium-vertical > li > a::after {
    right: 14px;
    margin-top: -3px;
  }
  .dropdown.menu.medium-vertical > li.opens-left > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #ffd400 transparent transparent;
    border-right-style: solid;
    border-left-width: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-right > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #ffd400;
    border-left-style: solid;
    border-right-width: 0;
  }
}
@media screen and (min-width: 56.25em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%;
  }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    padding-right: 1.5rem;
    position: relative;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #ffd400 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px;
  }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 100%;
  }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px;
    margin-top: -3px;
  }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #ffd400 transparent transparent;
    border-right-style: solid;
    border-left-width: 0;
  }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #ffd400;
    border-left-style: solid;
    border-right-width: 0;
  }
}
@media screen and (min-width: 100em) {
  .dropdown.menu.xlarge-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%;
  }
  .dropdown.menu.xlarge-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%;
  }
  .dropdown.menu.xlarge-horizontal > li.is-dropdown-submenu-parent > a {
    padding-right: 1.5rem;
    position: relative;
  }
  .dropdown.menu.xlarge-horizontal > li.is-dropdown-submenu-parent > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #ffd400 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px;
  }
  .dropdown.menu.xlarge-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.xlarge-vertical > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 100%;
  }
  .dropdown.menu.xlarge-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.xlarge-vertical > li > a::after {
    right: 14px;
    margin-top: -3px;
  }
  .dropdown.menu.xlarge-vertical > li.opens-left > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #ffd400 transparent transparent;
    border-right-style: solid;
    border-left-width: 0;
  }
  .dropdown.menu.xlarge-vertical > li.opens-right > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #ffd400;
    border-left-style: solid;
    border-right-width: 0;
  }
}
@media screen and (min-width: 125em) {
  .dropdown.menu.xxlarge-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%;
  }
  .dropdown.menu.xxlarge-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%;
  }
  .dropdown.menu.xxlarge-horizontal > li.is-dropdown-submenu-parent > a {
    padding-right: 1.5rem;
    position: relative;
  }
  .dropdown.menu.xxlarge-horizontal > li.is-dropdown-submenu-parent > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #ffd400 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px;
  }
  .dropdown.menu.xxlarge-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 100%;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.xxlarge-vertical > li > a::after {
    right: 14px;
    margin-top: -3px;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-left > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #ffd400 transparent transparent;
    border-right-style: solid;
    border-left-width: 0;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-right > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #ffd400;
    border-left-style: solid;
    border-right-width: 0;
  }
}
.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  left: auto;
  right: 0;
}

.is-dropdown-menu.vertical {
  width: 100px;
}
.is-dropdown-menu.vertical.align-right {
  float: right;
}

.is-dropdown-submenu-parent {
  position: relative;
}
.is-dropdown-submenu-parent a::after {
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -2px;
}
.is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
  top: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
  left: auto;
  right: 100%;
}
.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}

.is-dropdown-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  z-index: 1;
  background: white;
  border: 1px solid #cacaca;
}
.is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
  right: 14px;
  margin-top: -3px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent #ffd400 transparent transparent;
  border-right-style: solid;
  border-left-width: 0;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent transparent transparent #ffd400;
  border-left-style: solid;
  border-right-width: 0;
}
.is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px;
}
.is-dropdown-submenu > li {
  width: 100%;
}
.is-dropdown-submenu.js-dropdown-active {
  display: block;
}

.flex-video {
  position: relative;
  height: 0;
  padding-bottom: 75%;
  margin-bottom: 1rem;
  overflow: hidden;
}
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.flex-video.widescreen {
  padding-bottom: 56.25%;
}
.flex-video.vimeo {
  padding-top: 0;
}

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  border-radius: 0;
  background: #ffd400;
  color: white;
}
.label.secondary {
  background: #333232;
  color: white;
}
.label.success {
  background: #49A970;
  color: white;
}
.label.warning {
  background: #E5591E;
  color: white;
}
.label.alert {
  background: #DE352C;
  color: white;
}

.media-object {
  margin-bottom: 1rem;
  display: block;
}
.media-object img {
  max-width: none;
}
@media screen and (max-width: 47.9375em) {
  .media-object.stack-for-small .media-object-section {
    padding: 0;
    padding-bottom: 1rem;
    display: block;
  }
  .media-object.stack-for-small .media-object-section img {
    width: 100%;
  }
}

.media-object-section {
  display: table-cell;
  vertical-align: top;
}
.media-object-section:first-child {
  padding-right: 1rem;
}
.media-object-section:last-child:not(:nth-child(2)) {
  padding-left: 1rem;
}
.media-object-section > :last-child {
  margin-bottom: 0;
}
.media-object-section.middle {
  vertical-align: middle;
}
.media-object-section.bottom {
  vertical-align: bottom;
}

html,
body {
  height: 100%;
}

.off-canvas-wrapper {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  backface-visibility: hidden;
  -webkit-overflow-scrolling: auto;
}

.off-canvas-wrapper-inner {
  position: relative;
  width: 100%;
  transition: transform 0.5s ease;
}
.off-canvas-wrapper-inner::before, .off-canvas-wrapper-inner::after {
  content: " ";
  display: table;
}
.off-canvas-wrapper-inner::after {
  clear: both;
}

.off-canvas-content,
.off-canvas-content {
  min-height: 100%;
  background: white;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  z-index: 1;
  padding-bottom: 0.1px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.js-off-canvas-exit {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.5s ease;
}

.off-canvas {
  position: absolute;
  background: #e6e6e6;
  z-index: -1;
  max-height: 100%;
  overflow-y: auto;
  transform: translateX(0);
}
[data-whatinput=mouse] .off-canvas {
  outline: 0;
}
.off-canvas.position-left {
  left: -250px;
  top: 0;
  width: 250px;
}
.is-open-left {
  transform: translateX(250px);
}

.off-canvas.position-right {
  right: -250px;
  top: 0;
  width: 250px;
}
.is-open-right {
  transform: translateX(-250px);
}

@media screen and (min-width: 48em) {
  .position-left.reveal-for-medium {
    left: 0;
    z-index: auto;
    position: fixed;
  }
  .position-left.reveal-for-medium ~ .off-canvas-content {
    margin-left: 250px;
  }

  .position-right.reveal-for-medium {
    right: 0;
    z-index: auto;
    position: fixed;
  }
  .position-right.reveal-for-medium ~ .off-canvas-content {
    margin-right: 250px;
  }
}
@media screen and (min-width: 56.25em) {
  .position-left.reveal-for-large {
    left: 0;
    z-index: auto;
    position: fixed;
  }
  .position-left.reveal-for-large ~ .off-canvas-content {
    margin-left: 250px;
  }

  .position-right.reveal-for-large {
    right: 0;
    z-index: auto;
    position: fixed;
  }
  .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 250px;
  }
}
@media screen and (min-width: 100em) {
  .position-left.reveal-for-xlarge {
    left: 0;
    z-index: auto;
    position: fixed;
  }
  .position-left.reveal-for-xlarge ~ .off-canvas-content {
    margin-left: 250px;
  }

  .position-right.reveal-for-xlarge {
    right: 0;
    z-index: auto;
    position: fixed;
  }
  .position-right.reveal-for-xlarge ~ .off-canvas-content {
    margin-right: 250px;
  }
}
@media screen and (min-width: 125em) {
  .position-left.reveal-for-xxlarge {
    left: 0;
    z-index: auto;
    position: fixed;
  }
  .position-left.reveal-for-xxlarge ~ .off-canvas-content {
    margin-left: 250px;
  }

  .position-right.reveal-for-xxlarge {
    right: 0;
    z-index: auto;
    position: fixed;
  }
  .position-right.reveal-for-xxlarge ~ .off-canvas-content {
    margin-right: 250px;
  }
}
.orbit {
  position: relative;
}

.orbit-container {
  position: relative;
  margin: 0;
  overflow: hidden;
  list-style: none;
}

.orbit-slide {
  width: 100%;
  max-height: 100%;
}
.orbit-slide.no-motionui.is-active {
  top: 0;
  left: 0;
}

.orbit-figure {
  margin: 0;
}

.orbit-image {
  margin: 0;
  width: 100%;
  max-width: 100%;
}

.orbit-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  margin-bottom: 0;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
}

.orbit-next, .orbit-previous {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 1rem;
  color: white;
}
[data-whatinput=mouse] .orbit-next, [data-whatinput=mouse] .orbit-previous {
  outline: 0;
}
.orbit-next:hover, .orbit-previous:hover, .orbit-next:active, .orbit-previous:active, .orbit-next:focus, .orbit-previous:focus {
  background-color: rgba(0, 0, 0, 0.5);
}

.orbit-previous {
  left: 0;
}

.orbit-next {
  left: auto;
  right: 0;
}

.orbit-bullets {
  position: relative;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  text-align: center;
}
[data-whatinput=mouse] .orbit-bullets {
  outline: 0;
}
.orbit-bullets button {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.1rem;
  background-color: #cacaca;
  border-radius: 50%;
}
.orbit-bullets button:hover {
  background-color: #8a8a8a;
}
.orbit-bullets button.is-active {
  background-color: #8a8a8a;
}

.pagination {
  margin-left: 0;
  margin-bottom: 1rem;
}
.pagination::before, .pagination::after {
  content: " ";
  display: table;
}
.pagination::after {
  clear: both;
}
.pagination li {
  font-size: 0.875rem;
  margin-right: 0.0625rem;
  border-radius: 0;
  display: none;
}
.pagination li:last-child, .pagination li:first-child {
  display: inline-block;
}
@media screen and (min-width: 48em) {
  .pagination li {
    display: inline-block;
  }
}
.pagination a,
.pagination button {
  color: black;
  display: block;
  padding: 0.1875rem 0.625rem;
  border-radius: 0;
}
.pagination a:hover,
.pagination button:hover {
  background: #e6e6e6;
}
.pagination .current {
  padding: 0.1875rem 0.625rem;
  background: #ffd400;
  color: white;
  cursor: default;
}
.pagination .disabled {
  padding: 0.1875rem 0.625rem;
  color: #cacaca;
  cursor: not-allowed;
}
.pagination .disabled:hover {
  background: transparent;
}
.pagination .ellipsis::after {
  content: "…";
  padding: 0.1875rem 0.625rem;
  color: black;
}

.pagination-previous a::before,
.pagination-previous.disabled::before {
  content: "«";
  display: inline-block;
  margin-right: 0.5rem;
}

.pagination-next a::after,
.pagination-next.disabled::after {
  content: "»";
  display: inline-block;
  margin-left: 0.5rem;
}

.progress {
  background-color: #cacaca;
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 0;
}
.progress.primary .progress-meter {
  background-color: #ffd400;
}
.progress.secondary .progress-meter {
  background-color: #333232;
}
.progress.success .progress-meter {
  background-color: #49A970;
}
.progress.warning .progress-meter {
  background-color: #E5591E;
}
.progress.alert .progress-meter {
  background-color: #DE352C;
}

.progress-meter {
  position: relative;
  display: block;
  width: 0%;
  height: 100%;
  background-color: #ffd400;
}

.progress-meter-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  margin: 0;
  font-size: 0.75rem;
  font-weight: bold;
  color: white;
  white-space: nowrap;
}

progress {
  -webkit-appearance: none;
  -moz-appearance: none;
  display: block;
  width: 100%;
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 0;
  background: #cacaca;
  border: 0;
}
progress::-webkit-progress-bar {
  background: #cacaca;
  border-radius: 0;
}
progress::-webkit-progress-value {
  background: #ffd400;
  border-radius: 0;
}
progress::-moz-progress-bar {
  background: #ffd400;
  border-radius: 0;
}
progress.primary {
  color: #ffd400;
}
progress.primary::-webkit-progress-value {
  background: #ffd400;
}
progress.primary::-moz-progress-bar {
  background: #ffd400;
}
progress.secondary {
  color: #333232;
}
progress.secondary::-webkit-progress-value {
  background: #333232;
}
progress.secondary::-moz-progress-bar {
  background: #333232;
}
progress.success {
  color: #49A970;
}
progress.success::-webkit-progress-value {
  background: #49A970;
}
progress.success::-moz-progress-bar {
  background: #49A970;
}
progress.warning {
  color: #E5591E;
}
progress.warning::-webkit-progress-value {
  background: #E5591E;
}
progress.warning::-moz-progress-bar {
  background: #E5591E;
}
progress.alert {
  color: #DE352C;
}
progress.alert::-webkit-progress-value {
  background: #DE352C;
}
progress.alert::-moz-progress-bar {
  background: #DE352C;
}

meter {
  -webkit-appearance: none;
  -moz-appearance: none;
  display: block;
  width: 100%;
  height: 1rem;
  margin-bottom: 1rem;
  background: #cacaca;
  border: 0;
}
meter::-webkit-meter-bar {
  background: #cacaca;
}
meter::-webkit-meter-optimum-value {
  background: #49A970;
}
meter::-webkit-meter-suboptimum-value {
  background: #E5591E;
}
meter::-webkit-meter-even-less-good-value {
  background: #DE352C;
}
meter::-moz-meter-bar {
  background: #ffd400;
}
meter:-moz-meter-optimum::-moz-meter-bar {
  background: #49A970;
}
meter:-moz-meter-sub-optimum::-moz-meter-bar {
  background: #E5591E;
}
meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
  background: #DE352C;
}

.slider {
  position: relative;
  height: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: #e6e6e6;
  cursor: pointer;
  user-select: none;
  touch-action: none;
}

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: 0.5rem;
  background-color: #cacaca;
  transition: all 0.2s ease-in-out;
}
.slider-fill.is-dragging {
  transition: all 0s linear;
}

.slider-handle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  background-color: #ffd400;
  transition: all 0.2s ease-in-out;
  touch-action: manipulation;
  border-radius: 0;
}
[data-whatinput=mouse] .slider-handle {
  outline: 0;
}
.slider-handle:hover {
  background-color: #d9b400;
}
.slider-handle.is-dragging {
  transition: all 0s linear;
}

.slider.disabled,
.slider[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}

.slider.vertical {
  display: inline-block;
  width: 0.5rem;
  height: 12.5rem;
  margin: 0 1.25rem;
  transform: scale(1, -1);
}
.slider.vertical .slider-fill {
  top: 0;
  width: 0.5rem;
  max-height: 100%;
}
.slider.vertical .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.4rem;
  height: 1.4rem;
  transform: translateX(-50%);
}

.sticky-container {
  position: relative;
}

.sticky {
  position: absolute;
  z-index: 0;
  transform: translate3d(0, 0, 0);
}

.sticky.is-stuck {
  position: fixed;
  z-index: 5;
}
.sticky.is-stuck.is-at-top {
  top: 0;
}
.sticky.is-stuck.is-at-bottom {
  bottom: 0;
}

.sticky.is-anchored {
  position: absolute;
  left: auto;
  right: auto;
}
.sticky.is-anchored.is-at-bottom {
  bottom: 0;
}

body.is-reveal-open {
  overflow: hidden;
}

html.is-reveal-open,
html.is-reveal-open body {
  height: 100%;
  overflow: hidden;
  user-select: none;
}

.reveal-overlay {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1005;
  background-color: rgba(0, 0, 0, 0.45);
  overflow-y: scroll;
}

.reveal {
  display: none;
  z-index: 1006;
  padding: 1rem;
  border: 1px solid #cacaca;
  background-color: white;
  border-radius: 0;
  position: relative;
  top: 100px;
  margin-left: auto;
  margin-right: auto;
  overflow-y: auto;
}
[data-whatinput=mouse] .reveal {
  outline: 0;
}
@media screen and (min-width: 48em) {
  .reveal {
    min-height: 0;
  }
}
.reveal .column,
.reveal .columns {
  min-width: 0;
}
.reveal > :last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 48em) {
  .reveal {
    width: 600px;
    max-width: 75rem;
  }
}
@media screen and (min-width: 48em) {
  .reveal .reveal {
    left: auto;
    right: auto;
    margin: 0 auto;
  }
}
.reveal.collapse {
  padding: 0;
}
@media screen and (min-width: 48em) {
  .reveal.tiny {
    width: 30%;
    max-width: 75rem;
  }
}
@media screen and (min-width: 48em) {
  .reveal.small {
    width: 50%;
    max-width: 75rem;
  }
}
@media screen and (min-width: 48em) {
  .reveal.large {
    width: 90%;
    max-width: 75rem;
  }
}
.reveal.full {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100vh;
  min-height: 100vh;
  max-width: none;
  margin-left: 0;
  border: 0;
  border-radius: 0;
}
@media screen and (max-width: 47.9375em) {
  .reveal {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
    min-height: 100vh;
    max-width: none;
    margin-left: 0;
    border: 0;
    border-radius: 0;
  }
}
.reveal.without-overlay {
  position: fixed;
}

.switch {
  margin-bottom: 1rem;
  outline: 0;
  position: relative;
  user-select: none;
  color: white;
  font-weight: bold;
  font-size: 0.875rem;
}

.switch-input {
  opacity: 0;
  position: absolute;
}

.switch-paddle {
  background: #cacaca;
  cursor: pointer;
  display: block;
  position: relative;
  width: 4rem;
  height: 2rem;
  transition: all 0.25s ease-out;
  border-radius: 0;
  color: inherit;
  font-weight: inherit;
}
input + .switch-paddle {
  margin: 0;
}
.switch-paddle::after {
  background: white;
  content: "";
  display: block;
  position: absolute;
  height: 1.5rem;
  left: 0.25rem;
  top: 0.25rem;
  width: 1.5rem;
  transition: all 0.25s ease-out;
  transform: translate3d(0, 0, 0);
  border-radius: 0;
}
input:checked ~ .switch-paddle {
  background: #ffd400;
}
input:checked ~ .switch-paddle::after {
  left: 2.25rem;
}
[data-whatinput=mouse] input:focus ~ .switch-paddle {
  outline: 0;
}

.switch-inactive, .switch-active {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.switch-active {
  left: 8%;
  display: none;
}
input:checked + label > .switch-active {
  display: block;
}

.switch-inactive {
  right: 15%;
}
input:checked + label > .switch-inactive {
  display: none;
}

.switch.tiny .switch-paddle {
  width: 3rem;
  height: 1.5rem;
  font-size: 0.625rem;
}
.switch.tiny .switch-paddle::after {
  width: 1rem;
  height: 1rem;
}
.switch.tiny input:checked ~ .switch-paddle::after {
  left: 1.75rem;
}

.switch.small .switch-paddle {
  width: 3.5rem;
  height: 1.75rem;
  font-size: 0.75rem;
}
.switch.small .switch-paddle::after {
  width: 1.25rem;
  height: 1.25rem;
}
.switch.small input:checked ~ .switch-paddle::after {
  left: 2rem;
}

.switch.large .switch-paddle {
  width: 5rem;
  height: 2.5rem;
  font-size: 1rem;
}
.switch.large .switch-paddle::after {
  width: 2rem;
  height: 2rem;
}
.switch.large input:checked ~ .switch-paddle::after {
  left: 2.75rem;
}

table {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0;
}
thead,
tbody,
tfoot {
  border: 1px solid #f2f2f2;
  background-color: white;
}

caption {
  font-weight: bold;
  padding: 0.5rem 0.625rem 0.625rem;
}

thead,
tfoot {
  background: #f9f9f9;
  color: #333232;
}
thead tr,
tfoot tr {
  background: transparent;
}
thead th,
thead td,
tfoot th,
tfoot td {
  padding: 0.5rem 0.625rem 0.625rem;
  font-weight: bold;
  text-align: left;
}

tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}
tbody th,
tbody td {
  padding: 0.5rem 0.625rem 0.625rem;
}

@media screen and (max-width: 56.1875em) {
  table.stack thead {
    display: none;
  }
  table.stack tfoot {
    display: none;
  }
  table.stack tr,
table.stack th,
table.stack td {
    display: block;
  }
  table.stack td {
    border-top: 0;
  }
}

table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
}

table.hover tr:hover {
  background-color: #fafafa;
}
table.hover tr:nth-of-type(even):hover {
  background-color: #ededed;
}

.table-scroll {
  overflow-x: auto;
}
.table-scroll table {
  width: auto;
}

.tabs {
  margin: 0;
  list-style-type: none;
  background: white;
  border: 1px solid #e6e6e6;
}
.tabs::before, .tabs::after {
  content: " ";
  display: table;
}
.tabs::after {
  clear: both;
}

.tabs.vertical > li {
  width: auto;
  float: none;
  display: block;
}

.tabs.simple > li > a {
  padding: 0;
}
.tabs.simple > li > a:hover {
  background: transparent;
}

.tabs.primary {
  background: #ffd400;
}
.tabs.primary > li > a {
  color: white;
}
.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
  background: #f2c900;
}

.tabs-title {
  float: left;
}
.tabs-title > a {
  display: block;
  padding: 1.25rem 1.5rem;
  line-height: 1;
  font-size: 0.75rem;
}
.tabs-title > a:hover {
  background: white;
}
.tabs-title > a:focus, .tabs-title > a[aria-selected=true] {
  background: #e6e6e6;
}

.tabs-content {
  background: white;
  transition: all 0.5s ease;
  border: 1px solid #e6e6e6;
  border-top: 0;
}

.tabs-content.vertical {
  border: 1px solid #e6e6e6;
  border-left: 0;
}

.tabs-panel {
  display: none;
  padding: 1rem;
}
.tabs-panel.is-active {
  display: block;
}

.thumbnail {
  border: solid 4px white;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  display: inline-block;
  line-height: 0;
  max-width: 100%;
  transition: box-shadow 200ms ease-out;
  border-radius: 0;
  margin-bottom: 1rem;
}
.thumbnail:hover, .thumbnail:focus {
  box-shadow: 0 0 6px 1px rgba(255, 212, 0, 0.5);
}

.title-bar {
  background: black;
  color: white;
  padding: 0.5rem;
}
.title-bar::before, .title-bar::after {
  content: " ";
  display: table;
}
.title-bar::after {
  clear: both;
}
.title-bar .menu-icon {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.title-bar-left {
  float: left;
}

.title-bar-right {
  float: right;
  text-align: right;
}

.title-bar-title {
  font-weight: bold;
  vertical-align: middle;
  display: inline-block;
}

.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  width: 20px;
  height: 16px;
}
.menu-icon.dark::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: black;
  top: 0;
  left: 0;
  box-shadow: 0 7px 0 black, 0 14px 0 black;
}
.menu-icon.dark:hover::after {
  background: #8a8a8a;
  box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a;
}

.has-tip {
  border-bottom: dotted 1px #8a8a8a;
  font-weight: bold;
  position: relative;
  display: inline-block;
  cursor: help;
}

.tooltip {
  background-color: black;
  color: white;
  font-size: 80%;
  padding: 0.75rem;
  position: absolute;
  z-index: 10;
  top: calc(100% + 0.6495rem);
  max-width: 10rem !important;
  border-radius: 0;
}
.tooltip::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  border-color: transparent transparent black;
  border-bottom-style: solid;
  border-top-width: 0;
  bottom: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.top::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  border-color: black transparent transparent;
  border-top-style: solid;
  border-bottom-width: 0;
  top: 100%;
  bottom: auto;
}
.tooltip.left::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  border-color: transparent transparent transparent black;
  border-left-style: solid;
  border-right-width: 0;
  bottom: auto;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.right::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  border-color: transparent black transparent transparent;
  border-right-style: solid;
  border-left-width: 0;
  bottom: auto;
  left: auto;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.top-bar {
  padding: 0.5rem;
}
.top-bar::before, .top-bar::after {
  content: " ";
  display: table;
}
.top-bar::after {
  clear: both;
}
.top-bar,
.top-bar ul {
  background-color: #e6e6e6;
}
.top-bar input {
  max-width: 200px;
  margin-right: 1rem;
}
.top-bar .input-group-field {
  width: 100%;
  margin-right: 0;
}
.top-bar input.button {
  width: auto;
}
.top-bar .top-bar-left,
.top-bar .top-bar-right {
  width: 100%;
}
@media screen and (min-width: 100em) {
  .top-bar .top-bar-left,
.top-bar .top-bar-right {
    width: auto;
  }
}
@media screen and (max-width: 56.1875em) {
  .top-bar.stacked-for-medium .top-bar-left,
.top-bar.stacked-for-medium .top-bar-right {
    width: 100%;
  }
}
@media screen and (max-width: 99.9375em) {
  .top-bar.stacked-for-large .top-bar-left,
.top-bar.stacked-for-large .top-bar-right {
    width: 100%;
  }
}
@media screen and (max-width: 124.9375em) {
  .top-bar.stacked-for-xlarge .top-bar-left,
.top-bar.stacked-for-xlarge .top-bar-right {
    width: 100%;
  }
}
.top-bar.stacked-for-xxlarge .top-bar-left,
.top-bar.stacked-for-xxlarge .top-bar-right {
  width: 100%;
}

.top-bar-title {
  float: left;
  margin-right: 1rem;
}

.top-bar-left {
  float: left;
}

.top-bar-right {
  float: right;
}

.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

@media screen and (max-width: 47.9375em) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0em), screen and (min-width: 48em) {
  .show-for-small-only {
    display: none !important;
  }
}

@media screen and (min-width: 48em) {
  .hide-for-medium {
    display: none !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .show-for-medium {
    display: none !important;
  }
}

@media screen and (min-width: 48em) and (max-width: 56.1875em) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 47.9375em), screen and (min-width: 56.25em) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media screen and (min-width: 56.25em) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 56.1875em) {
  .show-for-large {
    display: none !important;
  }
}

@media screen and (min-width: 56.25em) and (max-width: 99.9375em) {
  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 56.1875em), screen and (min-width: 100em) {
  .show-for-large-only {
    display: none !important;
  }
}

@media screen and (min-width: 100em) {
  .hide-for-xlarge {
    display: none !important;
  }
}

@media screen and (max-width: 99.9375em) {
  .show-for-xlarge {
    display: none !important;
  }
}

@media screen and (min-width: 100em) and (max-width: 124.9375em) {
  .hide-for-xlarge-only {
    display: none !important;
  }
}

@media screen and (max-width: 99.9375em), screen and (min-width: 125em) {
  .show-for-xlarge-only {
    display: none !important;
  }
}

@media screen and (min-width: 125em) {
  .hide-for-xxlarge {
    display: none !important;
  }
}

@media screen and (max-width: 124.9375em) {
  .show-for-xxlarge {
    display: none !important;
  }
}

@media screen and (min-width: 125em) {
  .hide-for-xxlarge-only {
    display: none !important;
  }
}

@media screen and (max-width: 124.9375em) {
  .show-for-xxlarge-only {
    display: none !important;
  }
}

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto;
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
.hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
.hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
.show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
.show-for-portrait {
    display: block !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.clearfix::before, .clearfix::after {
  content: " ";
  display: table;
}
.clearfix::after {
  clear: both;
}

.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-down.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-left.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-up.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-right.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-down.mui-leave.mui-leave-active {
  transform: translateY(100%);
}

.slide-out-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-right.mui-leave.mui-leave-active {
  transform: translateX(100%);
}

.slide-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-up.mui-leave.mui-leave-active {
  transform: translateY(-100%);
}

.slide-out-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-left.mui-leave.mui-leave-active {
  transform: translateX(-100%);
}

.fade-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 0;
  transition-property: opacity;
}

.fade-in.mui-enter.mui-enter-active {
  opacity: 1;
}

.fade-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 1;
  transition-property: opacity;
}

.fade-out.mui-leave.mui-leave-active {
  opacity: 0;
}

.hinge-in-from-top.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-top.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-right.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-bottom.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(90deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(90deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-left.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-x.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-y.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-out-from-top.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-top.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-right.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.hinge-out-from-bottom.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-left.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.hinge-out-from-middle-x.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-middle-y.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.scale-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-up.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-down.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-up.mui-leave.mui-leave-active {
  transform: scale(1.5);
  opacity: 0;
}

.scale-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-down.mui-leave.mui-leave-active {
  transform: scale(0.5);
  opacity: 0;
}

.spin-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out.mui-leave.mui-leave-active {
  transform: rotate(0.75turn);
  opacity: 0;
}

.spin-in-ccw.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in-ccw.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out-ccw.mui-leave.mui-leave-active {
  transform: rotate(-0.75turn);
  opacity: 0;
}

.slow {
  transition-duration: 750ms !important;
}

.fast {
  transition-duration: 250ms !important;
}

.linear {
  transition-timing-function: linear !important;
}

.ease {
  transition-timing-function: ease !important;
}

.ease-in {
  transition-timing-function: ease-in !important;
}

.ease-out {
  transition-timing-function: ease-out !important;
}

.ease-in-out {
  transition-timing-function: ease-in-out !important;
}

.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  transition-delay: 300ms !important;
}

.long-delay {
  transition-delay: 700ms !important;
}

.shake {
  animation-name: shake-7;
}
@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%);
  }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%);
  }
}

.spin-cw {
  animation-name: shake-7;
}
@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%);
  }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%);
  }
}

.spin-ccw {
  animation-name: spin-cw-1turn;
}
@keyframes spin-cw-1turn {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}

.wiggle {
  animation-name: shake-7;
}
@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%);
  }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%);
  }
}

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
  animation-duration: 500ms;
}

.infinite {
  animation-iteration-count: infinite;
}

.slow {
  animation-duration: 750ms !important;
}

.fast {
  animation-duration: 250ms !important;
}

.linear {
  animation-timing-function: linear !important;
}

.ease {
  animation-timing-function: ease !important;
}

.ease-in {
  animation-timing-function: ease-in !important;
}

.ease-out {
  animation-timing-function: ease-out !important;
}

.ease-in-out {
  animation-timing-function: ease-in-out !important;
}

.bounce-in {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  animation-delay: 300ms !important;
}

.long-delay {
  animation-delay: 700ms !important;
}

.grow img {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.grow:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
}

.blur {
  filter: blur(5px);
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: url(#blur);
  filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius="5");
}

.clear {
  display: table;
  width: 100%;
  clear: both;
}

.no-pad-sides {
  padding-left: 0;
  padding-right: 0;
}

.table-wrap {
  display: table;
  width: 100%;
}

img.bw {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale");
}

a {
  -webkit-transition: all 350ms ease-in-out;
  -moz-transition: all 350ms ease-in-out;
  -ms-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}
a:hover img.bw, a:focus img.bw {
  -webkit-filter: none;
  filter: none;
  filter: none;
  filter: none;
}

.gradient-bar {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffd400+0,ffffff+100 */
  background: #ffd400;
  /* Old browsers */
  background: -moz-linear-gradient(left, #ffd400 0%, white 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #ffd400 0%, white 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #ffd400 0%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffd400", endColorstr="#ffffff",GradientType=1 );
  /* IE6-9 */
  display: block;
  height: 5px;
  width: 100%;
}

.green-txt {
  color: #49A970 !important;
}

/* white transparent bgs */
.white-100 {
  background: white;
  /* The Fallback */
  background: white;
}

.white-85 {
  background: white;
  /* The Fallback */
  background: rgba(255, 255, 255, 0.85);
}

.white-80 {
  background: white;
  /* The Fallback */
  background: rgba(255, 255, 255, 0.8);
}

.white-75 {
  background: white;
  /* The Fallback */
  background: rgba(255, 255, 255, 0.75);
}

.white-50 {
  background: white;
  /* The Fallback */
  background: rgba(255, 255, 255, 0.5);
}

.white-25 {
  background: white;
  /* The Fallback */
  background: rgba(255, 255, 255, 0.25);
}

@media screen and (max-width: 47.9375em) {
  .no-pad-small {
    padding-left: 0;
    padding-right: 0;
  }

  .text-center-small {
    text-align: center !important;
  }
}
.wf-loading {
  /* styles to use when web fonts are loading */
}
.wf-loading .nav-wrap .top-bar .top-bar-section .left {
  -webkit-transition: opacity 500ms ease;
  -moz-transition: opacity 500ms ease;
  -ms-transition: opacity 500ms ease;
  -o-transition: opacity 500ms ease;
  transition: opacity 500ms ease;
  opacity: 0;
}

.wf-active {
  /* styles to use when web fonts are active */
}
.wf-active .nav-wrap .top-bar .top-bar-section .left {
  opacity: 1;
}

.wf-inactive {
  /* styles to use when web fonts are inactive */
}

/* wrappers */
.contain {
  max-width: 1800px;
  margin: 0 auto;
  display: block;
  width: 100%;
}
.contain .top-bar-wrapper .sticky {
  max-width: 1800px !important;
  margin: 0 auto;
  display: block;
  left: auto;
}

.default {
  background: white;
}
.default .main {
  padding: 0;
  background: white;
}
.default .main .body {
  padding: 50px 50px 60px;
}
@media screen and (max-width: 47.9375em) {
  .default .main .body {
    padding: 40px 30px 50px;
  }
}
.default .main .body.secondary-font h1, .default .main .body.secondary-font h2, .default .main .body.secondary-font h3, .default .main .body.secondary-font h4, .default .main .body.secondary-font h5, .default .main .body.secondary-font h6 {
  font-family: "proxima-nova", "helvetica", sans-serif;
}
.default .main .body.secondary-font h3 {
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 0;
}
.default .main .body header.header {
  padding: 0 0 30px;
}
.default .main .body header.header h1 {
  margin: 0;
}
.default .main .body header.header .subheader {
  display: block;
  margin: 0;
  color: inherit;
  opacity: 0.5;
  font-weight: inherit;
  font-size: 75%;
}
.default .main p {
  font-family: "proxima-nova", "helvetica", sans-serif;
  font-size: 1.125rem;
}
.default.full-width .main {
  padding: 0;
}
.default.form-pg .main {
  padding: 0;
}
.default.listing-page .Navigation {
  margin: 0;
}
.default.listing-page .Navigation:first-child {
  padding: 50px 30px 60px;
}
.default.listing-page .Navigation .Navigation-item {
  display: table;
  width: 100%;
}
.default.listing-page .Navigation .Navigation-item a {
  padding: 0 0 2rem;
  display: table;
  width: 100%;
  color: #333232;
  margin: 0 0 2rem;
  border-bottom: 2px solid #EBEBEB;
}
.default.listing-page .Navigation .Navigation-item a .header {
  font-family: "Life Savers", cursive, serif;
  font-size: 1.75rem;
}
.default.listing-page .Navigation .Navigation-item a .summary {
  font-size: 1rem;
  font-family: "proxima-nova", "helvetica", sans-serif;
}
.default.listing-page .Navigation .Navigation-item:last-child a {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}
.default.blog .main {
  padding: 50px 0px 60px 50px;
}
@media screen and (max-width: 47.9375em) {
  .default.blog .main {
    padding: 40px 30px 50px;
  }
  .default.blog .main .sidenav-wrap {
    margin-top: 0;
  }
}
.default.blog .main .featured {
  margin-bottom: 2rem;
}

.slick-slider .slick-arrow {
  position: absolute;
  top: 50%;
  margin-top: -1.5625rem;
  width: 3.125rem;
  text-align: center;
  color: white;
  font-size: 2.75rem;
  line-height: 3.125rem;
  background: #DE352C;
  z-index: 1;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
  -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
  -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  height: 3.125rem;
  cursor: pointer;
  opacity: 0;
  display: block;
  -webkit-transition: opacity 500ms ease-in-out;
  -moz-transition: opacity 500ms ease-in-out;
  -ms-transition: opacity 500ms ease-in-out;
  -o-transition: opacity 500ms ease-in-out;
  transition: opacity 500ms ease-in-out;
}
.slick-slider .slick-arrow.prev {
  left: 0.3125rem;
}
.slick-slider .slick-arrow.next {
  right: 0.3125rem;
}
.slick-slider .slick-arrow.slick-disabled {
  display: none !important;
}
.slick-slider:hover, .slick-slider:focus {
  cursor: pointer;
}
.slick-slider:hover .slick-arrow, .slick-slider:focus .slick-arrow {
  opacity: 1;
}
a {
  color: #3AA2CB;
}
a:hover, a:focus {
  color: #277492;
}

/* IMAGES LOADED */
.blazy {
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  max-width: 100%;
  width: 100%;
  height: auto;
  -webkit-transition: opacity 800ms;
  -moz-transition: opacity 800ms;
  -ms-transition: opacity 800ms;
  -o-transition: opacity 800ms;
  transition: opacity 800ms;
}
.blazy.b-loaded {
  visibility: visible;
}
.blazy.b-loaded.loaded {
  opacity: 1;
}

.default img {
  opacity: 0;
  -webkit-transition: opacity 800ms;
  -moz-transition: opacity 800ms;
  -ms-transition: opacity 800ms;
  -o-transition: opacity 800ms;
  transition: opacity 800ms;
}
.default img.loaded {
  opacity: 1;
}

@media screen and (max-width: 56.1875em) {
  .no-js .top-bar-wrapper {
    display: none;
  }
  .no-js .top-bar-wrapper.small-nav {
    display: block;
  }
}
@media screen and (min-width: 56.25em) {
  .no-js .top-bar-wrapper {
    display: block;
  }
  .no-js .top-bar-wrapper.small-nav {
    display: none;
  }
}

@media screen and (max-width: 56.1875em) {
  .top-bar-wrapper {
    display: none;
  }
  .top-bar-wrapper.small-nav {
    display: block;
  }
}
@media screen and (min-width: 56.25em) {
  .top-bar-wrapper {
    display: block;
  }
  .top-bar-wrapper.small-nav {
    display: none;
  }
}
@media screen and (max-width: 47.9375em) {
  .top-bar-wrapper {
    height: 80px !important;
  }
}
@media screen and (max-width: 47.9375em) {
  .top-bar-wrapper .logo-img {
    display: table;
    width: 100%;
    text-align: center;
    padding: 2px 1rem 5px;
    position: fixed;
    top: 50px;
    background: white;
    clear: both;
  }
}
@media screen and (max-width: 47.9375em) {
  .top-bar-wrapper .logo-img img {
    max-width: 250px;
  }
}
.top-bar-wrapper .logo span {
  position: absolute;
  left: -700px;
  opacity: 0;
}
.top-bar-wrapper .sticky {
  width: 100%;
}
@media screen and (max-width: 47.9375em) {
  .top-bar-wrapper .sticky {
    position: fixed;
    z-index: 99999999;
  }
}
.top-bar-wrapper .top-bar {
  display: table;
  width: 100%;
  background: url(/assets/images/chalkboard_bg.jpg) #272727 repeat 0 0;
  padding: 0;
}
.top-bar-wrapper .top-bar #search-icon-large {
  color: white;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  transition: all 350ms ease;
}
@media screen and (max-width: 56.1875em) {
  .top-bar-wrapper .top-bar #search-icon-large {
    display: block;
    padding: 0.375rem 0.625rem 0.3125rem;
  }
}
@media screen and (min-width: 56.25em) {
  .top-bar-wrapper .top-bar #search-icon-large {
    background: black;
    padding: 0.625rem 0.8125rem;
    border-radius: 50%;
    margin-right: 1rem;
    display: inline-table;
  }
}
.top-bar-wrapper .top-bar #search-icon-large i {
  color: white;
  font-size: 1.875rem;
  margin: 0;
  line-height: 1;
  position: relative;
  -webkit-transition: color 350ms ease;
  -moz-transition: color 350ms ease;
  -ms-transition: color 350ms ease;
  -o-transition: color 350ms ease;
  transition: color 350ms ease;
}
@media screen and (max-width: 56.1875em) {
  .top-bar-wrapper .top-bar #search-icon-large:hover, .top-bar-wrapper .top-bar #search-icon-large:focus {
    color: #ffd400;
  }
}
@media screen and (min-width: 56.25em) {
  .top-bar-wrapper .top-bar #search-icon-large:hover, .top-bar-wrapper .top-bar #search-icon-large:focus {
    color: #ffd400;
    background: black;
  }
}
@media screen and (max-width: 56.1875em) {
  .top-bar-wrapper .top-bar #search-icon-large:hover i, .top-bar-wrapper .top-bar #search-icon-large:focus i {
    color: #ffd400;
  }
}
@media screen and (min-width: 56.25em) {
  .top-bar-wrapper .top-bar #search-icon-large:hover i, .top-bar-wrapper .top-bar #search-icon-large:focus i {
    color: #ffd400;
  }
}
@media screen and (max-width: 56.1875em) {
  .top-bar-wrapper .top-bar .right-off-canvas-toggle-wrap .right-off-canvas-toggle {
    padding: 25px 0 25px 15px;
    display: table-cell;
    vertical-align: middle;
  }
}
.top-bar-wrapper .top-bar .top-bar-right, .top-bar-wrapper .top-bar .top-bar-left {
  width: auto;
  display: table-cell;
  vertical-align: middle;
  float: none;
}
.top-bar-wrapper .top-bar ul {
  background: none;
}
.top-bar-wrapper .top-bar ul li a {
  color: white;
  font-weight: 600;
  font-family: "Life Savers", cursive, serif;
  border-right: 1px solid black;
  font-size: 1.25rem;
}
@media screen and (min-width: 56.25em) {
  .top-bar-wrapper .top-bar ul li a {
    padding: 1.5rem 0.75rem 1.3125rem;
  }
}
@media screen and (max-width: 56.1875em) {
  .top-bar-wrapper .top-bar ul li a {
    font-size: 14px;
    text-transform: uppercase;
    font-family: "proxima-nova", "helvetica", sans-serif;
  }
}
.top-bar-wrapper .top-bar ul li a:hover, .top-bar-wrapper .top-bar ul li a:focus {
  color: #ffd400;
}
@media screen and (min-width: 56.25em) {
  .top-bar-wrapper .top-bar ul li a:hover, .top-bar-wrapper .top-bar ul li a:focus {
    background: black;
  }
}
.top-bar-wrapper .top-bar ul li.logo-icon a {
  padding: 1rem;
}
@media screen and (max-width: 56.1875em) {
  .top-bar-wrapper .top-bar ul li.logo-icon a {
    padding: 8px 12px 9px;
    display: table;
  }
}
.top-bar-wrapper .top-bar ul li.logo-icon a .img-wrap {
  height: 33px;
  width: 27px;
  background: url(/assets/images/logo.png) center top no-repeat transparent;
  display: block;
  overflow: hidden;
  -webkit-transition: background 350ms ease;
  -moz-transition: background 350ms ease;
  -ms-transition: background 350ms ease;
  -o-transition: background 350ms ease;
  transition: background 350ms ease;
}
.top-bar-wrapper .top-bar ul li.logo-icon a .img-wrap img {
  opacity: 0 !important;
  visibility: hidden;
}
.top-bar-wrapper .top-bar ul li.logo-icon a:hover .img-wrap, .top-bar-wrapper .top-bar ul li.logo-icon a:focus .img-wrap {
  background: url(/assets/images/logo_active.png) center bottom no-repeat transparent;
}
.top-bar-wrapper .top-bar ul li.secondary a {
  font-family: "proxima-nova", "helvetica", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 1.6875rem 0.75rem 1.5rem;
}
.top-bar-wrapper .top-bar ul li.active a {
  background: none;
  color: #ffd400;
}
.top-bar-wrapper .top-bar ul li.active .is-dropdown-submenu li a {
  color: white;
}
.top-bar-wrapper .top-bar ul li.active .is-dropdown-submenu li.active a {
  color: #ffd400;
}
.top-bar-wrapper .top-bar ul li.search {
  display: table;
}
@media screen and (min-width: 56.25em) {
  .top-bar-wrapper .top-bar ul li.search {
    width: 100%;
    height: 100%;
  }
}
.top-bar-wrapper .top-bar ul li.search .search-wrap {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  width: 100%;
}
.top-bar-wrapper .top-bar ul li .is-dropdown-submenu {
  border: none;
}
.top-bar-wrapper .top-bar ul li .is-dropdown-submenu li a {
  font-weight: 600;
  font-family: "proxima-nova", "helvetica", sans-serif;
  padding: 8px 20px;
  text-align: left;
  border: none;
  text-transform: capitalize;
  background: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  line-height: normal;
}
.top-bar-wrapper .top-bar ul li .is-dropdown-submenu li a:hover, .top-bar-wrapper .top-bar ul li .is-dropdown-submenu li a:focus {
  background: #ffd400;
  color: black;
}
@media screen and (max-width: 56.1875em) {
  .top-bar-wrapper .top-bar .top-bar-right .menu {
    float: right;
    display: block;
    width: auto;
  }
}
@media screen and (max-width: 56.1875em) {
  .top-bar-wrapper .top-bar .top-bar-right .menu li {
    display: inline-table;
    line-height: normal;
  }
}
.top-bar-wrapper .top-bar .top-bar-left .menu {
  float: none;
}
.top-bar-wrapper .top-bar .dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  content: none;
  display: none;
}
.top-bar-wrapper .top-bar .dropdown.menu > li.is-dropdown-submenu-parent > a {
  padding-right: 1rem;
}
.top-bar-wrapper .secondary-nav-bar {
  display: table;
  width: 100%;
  background: white;
}
@media screen and (max-width: 47.9375em) {
  .top-bar-wrapper .secondary-nav-bar {
    display: none;
  }
}
.top-bar-wrapper .secondary-nav-bar .secondary-nav ul {
  display: table;
  height: auto;
  width: 100%;
  float: none;
  clear: both;
}
.top-bar-wrapper .secondary-nav-bar .secondary-nav ul li {
  background: transparent;
  float: none;
  display: table-cell;
  vertical-align: middle;
}
.top-bar-wrapper .secondary-nav-bar .secondary-nav ul li.donate {
  width: 100px;
}
.top-bar-wrapper .secondary-nav-bar .secondary-nav ul li.donate .button {
  padding: 0.4375rem 1.125rem;
  border: 2px solid #49A970;
  font-family: "proxima-nova", "helvetica", sans-serif;
  text-transform: none;
  font-weight: 600;
  font-size: 1.125rem;
  margin: 0.625rem 0.9375rem;
  color: white;
  background: #49A970;
}
.top-bar-wrapper .secondary-nav-bar .secondary-nav ul li.donate .button:hover, .top-bar-wrapper .secondary-nav-bar .secondary-nav ul li.donate .button:focus {
  color: black;
  background: white;
  border: 2px solid black;
}
.top-bar-wrapper .secondary-nav-bar .secondary-nav ul li.has-dropdown > a {
  padding-right: 1.25rem !important;
}
.top-bar-wrapper .secondary-nav-bar .secondary-nav ul li.has-dropdown > a::after {
  content: none !important;
}
.top-bar-wrapper .secondary-nav-bar .secondary-nav ul li.has-dropdown > a i {
  font-size: 0.875rem;
  color: white;
}
.top-bar-wrapper .secondary-nav-bar .secondary-nav ul li.has-dropdown.not-click a {
  cursor: pointer !important;
}
.top-bar-wrapper .secondary-nav-bar .secondary-nav ul li.has-dropdown.not-click .dropdown {
  top: 2.5rem;
}
.top-bar-wrapper .secondary-nav-bar .secondary-nav ul li.has-dropdown.not-click .dropdown .title.back {
  display: none;
}
.top-bar-wrapper .secondary-nav-bar .secondary-nav ul li.has-dropdown.not-click .dropdown li {
  width: 100%;
}
.top-bar-wrapper .secondary-nav-bar .secondary-nav ul li.has-dropdown.not-click .dropdown li a {
  width: 100%;
  display: block;
  height: auto;
  padding: 10px 20px;
}
.top-bar-wrapper .secondary-nav-bar .secondary-nav ul li.has-dropdown.not-click .dropdown li:last-child a {
  border-right: none;
}
.top-bar-wrapper .secondary-nav-bar .secondary-nav ul li a {
  color: black;
  font-weight: normal;
  font-size: 1rem;
  padding: 0 1.25rem;
  height: auto;
  display: table;
  line-height: normal;
}
.top-bar-wrapper .secondary-nav-bar .secondary-nav ul li a::after {
  content: none;
}
.top-bar-wrapper .secondary-nav-bar .secondary-nav .dropdown li a {
  padding: 0 1.25rem;
  color: #333232;
  border: none;
}
.top-bar-wrapper .secondary-nav-bar .secondary-nav .dropdown li:not(.has-form):not(.active):hover > a:not(.button) {
  color: white;
  background: none;
}

/* -----------------------------------------------------------------------------

  HAMBURGER ICONS COMPONENT

----------------------------------------------------------------------------- */
/**
 * Toggle Switch Globals
 *
 * All switches should take on the class `c-hamburger` as well as their
 * variant that will give them unique properties. This class is an overview
 * class that acts as a reset for all versions of the icon.
 */
.animated-menu {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 60px !important;
  height: 30px !important;
  font-size: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  transition: all 500ms ease;
}
.animated-menu:hover {
  cursor: pointer;
}
.animated-menu:hover span {
  background: #ffd400;
}
.animated-menu:hover span::before, .animated-menu:hover span::after {
  background: #ffd400;
}

.animated-menu:focus {
  outline: none;
}

.animated-menu span {
  display: table;
  position: absolute;
  top: 50%;
  left: auto !important;
  right: auto !important;
  height: 2px;
  background: white;
  width: 30px;
  border-radius: 0px;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  transition: all 350ms ease;
}

.animated-menu span::before,
.animated-menu span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  content: "";
  border-radius: 0px;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  transition: all 350ms ease;
}

.animated-menu span::before {
  top: -10px;
}

.animated-menu span::after {
  bottom: -10px;
}

/**
 * Hamburger to "x" (htx). Takes on a hamburger shape, bars slide
 * down to center and transform into an "x".
 */
.animated-menu.menu-to-close {
  background: transparent;
}

/* active state, i.e. menu open */
.animated-menu.menu-to-close.is-active {
  background: transparent;
}

.animated-menu.menu-to-close.is-active span {
  background: transparent;
  transition-duration: 250ms, 250ms;
  transition-delay: 0s, 0s;
}

.animated-menu.menu-to-close.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}

.animated-menu.menu-to-close.is-active span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.animated-menu.menu-to-close.is-active span::before,
.animated-menu.menu-to-close.is-active span::after {
  transition-delay: 0s, 500ms;
}

#search .gsc-control-cse {
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  height: auto;
  position: relative;
}
#search .gsc-control-cse .gsc-orderby-label, #search .gsc-control-cse .gsc-result-info {
  color: white;
  font-weight: bold;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.35);
}
#search .gsc-control-cse .gsc-selected-option-container {
  min-width: 5rem;
  background: white;
}
#search .gsc-control-cse .gsc-control-wrapper-cse {
  max-width: 31.25rem;
  margin: 0 auto;
  width: 100%;
}
#search .gsc-control-cse .gsc-control-wrapper-cse table {
  border: none;
  border-collapse: collapse;
  background: none;
  margin-bottom: 0;
}
#search .gsc-control-cse .gsc-control-wrapper-cse table.gsc-search-box {
  background: none;
  margin: 0;
  height: 2.75rem;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  display: block;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-search-box {
  background: none;
  margin-bottom: 0;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-search-box .gsc-input {
  padding: 0;
  margin: 0;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-search-box .gsc-input .gsc-input-box {
  height: 2.75rem;
  background: none;
  border: none;
  box-shadow: none !important;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-search-box .gsc-input .gsc-input-box .gsib_a {
  padding: 0;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-search-box .gsc-input .gsc-input-box .gsib_a input {
  box-shadow: none !important;
  width: 100% !important;
  padding: 0px 15px !important;
  border: none !important;
  margin: 0px !important;
  height: 44px !important;
  outline: none !important;
  background-position: 15px 50% !important;
  border-radius: 0;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-search-box .gsc-input .gsc-input-box .gsib_b {
  display: table-cell;
  vertical-align: middle;
  background: white;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-search-box .gsc-input .gsc-input-box .gsib_b .gsst_a {
  padding: 0;
  display: table;
  text-align: center;
  width: 100%;
  height: auto;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-search-box .gsc-input .gsc-input-box .gsib_b .gsst_a .gscb_a {
  color: #333232;
  display: table-cell;
  vertical-align: middle;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-search-box .gsc-search-button {
  padding: 0;
  margin-bottom: -4px !important;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-search-box .gsc-search-button input.gsc-search-button {
  background-color: #ffd400;
  background-image: none;
  filter: none;
  color: white;
  width: 74px;
  height: 44px;
  padding: 15px 30px;
  margin: 0;
  border: none;
  border-radius: 0 4px 4px 0;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-search-box .gsc-search-button input.gsc-search-button:hover, #search .gsc-control-cse .gsc-control-wrapper-cse .gsc-search-box .gsc-search-button input.gsc-search-button:focus {
  outline: none !important;
  background: #0c0c0c;
}
#search .gsc-control-cse .gsc-control-wrapper-cse gsc-above-wrapper-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-wrapper {
  position: relative;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results {
  padding-bottom: 0;
  max-width: 31.25rem;
  margin-left: auto;
  margin-right: auto;
  display: table;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results td.gsc-branding-text, #search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results td.gcsc-branding-text {
  color: white;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result {
  background: white;
  border: none !important;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 0.625rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-spelling, #search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title, #search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title * {
  font-family: "proxima-nova", "helvetica", sans-serif;
  text-transform: capitalize;
  line-height: normal;
  color: #0c0c0c;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-spelling strong, #search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-spelling b, #search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title strong, #search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title b, #search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title * strong, #search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title * b {
  -webkit-transition: all 350ms ease-in-out;
  -moz-transition: all 350ms ease-in-out;
  -ms-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-spelling:hover, #search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-spelling:focus, #search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title:hover, #search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title:focus, #search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title *:hover, #search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title *:focus {
  color: #ffd400;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-spelling:hover b, #search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-spelling:focus b, #search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title:hover b, #search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title:focus b, #search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title *:hover b, #search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title *:focus b {
  color: #ffd400;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-visibleUrl, #search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-visibleUrl {
  color: #ffd400;
  font-family: "proxima-nova", "helvetica", sans-serif;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-visibleUrl b, #search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-visibleUrl b {
  color: #ffd400;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gsc-table-result .gs-image-box.gs-web-image-box.gs-web-image-box-portrait {
  border-radius: 4px;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gsc-table-result .gs-web-image-box-portrait img.gs-image, #search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gsc-table-result .gs-web-image-box-landscape img.gs-image {
  opacity: 1 !important;
  border: none;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gsc-table-result .gs-snippet {
  font-family: "proxima-nova", "helvetica", sans-serif;
  color: #333232;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .grc-cursor {
  display: table;
  width: 100%;
  margin-top: 1.5625rem;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-cursor-page {
  border-color: #333232;
  background-color: #333232;
  color: white;
  padding: 5px 0;
  border-radius: 4px;
  font-weight: bold;
  border: 1px solid;
  display: table;
  float: left;
  height: auto;
  width: 8.5%;
  text-align: center;
  width: 9.5%;
  text-align: center;
  margin-right: 0.25%;
  margin-left: 0.25%;
  margin-bottom: 0.3125rem;
  opacity: 0.65;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  transition: all 350ms ease;
}
#search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-cursor-page:hover, #search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-cursor-page:focus, #search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-cursor-page.gsc-cursor-current-page {
  border-color: #333232;
  background-color: white;
  color: #333232;
  opacity: 1;
}

/* nav search */
#search-box {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999999999999;
  -webkit-backface-visibility: hidden;
  background: rgba(51, 50, 50, 0.9);
  padding: 0.9375rem;
  overflow-y: scroll !important;
  padding-bottom: 4.375rem;
}
#search-box thead, #search-box tbody, #search-box tfoot {
  background: none;
  border: none;
}
#search-box .inner-search {
  max-width: 63.75rem;
  display: table;
  margin: 0 auto;
  width: 100%;
}
#search-box .inner-search #search-close {
  display: table;
  width: 100%;
  height: auto;
  margin-bottom: 0.9375rem;
}
#search-box .inner-search #search-close a {
  float: right;
  width: auto;
  height: 3.125rem;
  display: table;
  color: white;
  padding-left: 0.9375rem;
}
#search-box .inner-search #search-close a span {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  font-family: "Life Savers", cursive, serif;
  text-transform: uppercase;
  padding-right: 0.5rem;
  padding-top: 0.375rem;
  -webkit-transition: all 350ms ease-in-out;
  -moz-transition: all 350ms ease-in-out;
  -ms-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}
#search-box .inner-search #search-close a i {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 1.875rem;
  color: white;
  -webkit-transition: all 350ms ease-in-out;
  -moz-transition: all 350ms ease-in-out;
  -ms-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}
#search-box .inner-search #search-close a:hover i, #search-box .inner-search #search-close a:focus i {
  color: #0c0c0c;
}
#search-box .inner-search .gsc-control-cse {
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  height: auto;
  position: relative;
}
#search-box .inner-search .gsc-control-cse .gsc-orderby-label, #search-box .inner-search .gsc-control-cse .gsc-result-info {
  color: white;
  font-weight: bold;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.35);
}
#search-box .inner-search .gsc-control-cse .gsc-selected-option-container {
  min-width: 5rem;
  background: white;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse {
  max-width: 31.25rem;
  margin: 0 auto;
  width: 100%;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse table {
  border: none;
  border-collapse: collapse;
  background: none;
  margin-bottom: 0;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse table.gsc-search-box {
  background: none;
  margin: 0;
  height: 2.75rem;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  display: block;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-search-box {
  background: none;
  margin-bottom: 0;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-search-box .gsc-input {
  padding: 0;
  margin: 0;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-search-box .gsc-input .gsc-input-box {
  height: 2.75rem;
  background: none;
  border: none;
  box-shadow: none !important;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-search-box .gsc-input .gsc-input-box .gsib_a {
  padding: 0;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-search-box .gsc-input .gsc-input-box .gsib_a input {
  box-shadow: none !important;
  width: 100% !important;
  padding: 0px 15px !important;
  border: none !important;
  margin: 0px !important;
  height: 44px !important;
  outline: none !important;
  background-position: 15px 50% !important;
  border-radius: 0;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-search-box .gsc-input .gsc-input-box .gsib_b {
  display: table-cell;
  vertical-align: middle;
  background: white;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-search-box .gsc-input .gsc-input-box .gsib_b .gsst_a {
  padding: 0;
  display: table;
  text-align: center;
  width: 100%;
  height: auto;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-search-box .gsc-input .gsc-input-box .gsib_b .gsst_a .gscb_a {
  color: #333232;
  display: table-cell;
  vertical-align: middle;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-search-box .gsc-search-button input.gsc-search-button {
  background-color: #ffd400;
  background-image: none;
  filter: none;
  color: white;
  width: 74px;
  height: 44px;
  padding: 15px 30px;
  margin: 0;
  border: none;
  border-radius: 0 4px 4px 0;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-search-box .gsc-search-button input.gsc-search-button:hover, #search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-search-box .gsc-search-button input.gsc-search-button:focus {
  outline: none !important;
  background: #0c0c0c;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse gsc-above-wrapper-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-wrapper {
  position: relative;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results {
  padding-bottom: 0;
  max-width: 31.25rem;
  margin-left: auto;
  margin-right: auto;
  display: table;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results td.gsc-branding-text, #search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results td.gcsc-branding-text {
  color: white;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result {
  background: white;
  border: none !important;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 0.625rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-spelling, #search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title, #search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title * {
  font-family: "proxima-nova", "helvetica", sans-serif;
  text-transform: capitalize;
  color: #0c0c0c;
  line-height: normal;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-spelling strong, #search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-spelling b, #search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title strong, #search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title b, #search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title * strong, #search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title * b {
  -webkit-transition: all 350ms ease-in-out;
  -moz-transition: all 350ms ease-in-out;
  -ms-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-spelling:hover, #search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-spelling:focus, #search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title:hover, #search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title:focus, #search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title *:hover, #search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title *:focus {
  color: #ffd400;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-spelling:hover b, #search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-spelling:focus b, #search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title:hover b, #search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title:focus b, #search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title *:hover b, #search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-title *:focus b {
  color: #ffd400;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-visibleUrl, #search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-visibleUrl {
  color: #ffd400;
  font-family: "proxima-nova", "helvetica", sans-serif;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-visibleUrl b, #search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gs-visibleUrl b {
  color: #ffd400;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gsc-table-result .gs-image-box.gs-web-image-box.gs-web-image-box-portrait {
  border-radius: 4px;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gsc-table-result .gs-web-image-box-portrait img.gs-image, #search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gsc-table-result .gs-web-image-box-landscape img.gs-image {
  opacity: 1 !important;
  border: none;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-webResult.gsc-result .gsc-table-result .gs-snippet {
  font-family: "Life Savers", cursive, serif;
  color: #333232;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .grc-cursor {
  display: table;
  width: 100%;
  margin-top: 1.5625rem;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-cursor-page {
  border-color: #333232;
  background-color: #333232;
  color: white;
  padding: 5px 0;
  border-radius: 4px;
  font-weight: bold;
  border: 1px solid;
  display: table;
  float: left;
  height: auto;
  width: 8.5%;
  text-align: center;
  width: 9.5%;
  text-align: center;
  margin-right: 0.25%;
  margin-left: 0.25%;
  margin-bottom: 0.3125rem;
  opacity: 0.65;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  transition: all 350ms ease;
}
#search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-cursor-page:hover, #search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-cursor-page:focus, #search-box .inner-search .gsc-control-cse .gsc-control-wrapper-cse .gsc-results .gsc-cursor-page.gsc-cursor-current-page {
  border-color: #333232;
  background-color: white;
  color: #333232;
  opacity: 1;
}

button.gsc-search-button {
  margin: 0;
  border: 0;
  border-radius: 0 5px 5px 0;
  padding: 0 12px;
  height: 44px;
  width: 50px;
}

td.gsc-search-button {
  padding: 0;
}

.sidebar {
  padding: 1.875rem 3.125rem 0 1.875rem;
}
@media screen and (max-width: 47.9375em) {
  .sidebar {
    padding: 0 40px 50px 40px;
  }
}
.sidebar .sticky {
  position: relative;
  top: 0;
}

#sidebar-wrapper {
  position: relative;
}

.sidenav-wrap {
  margin-top: 25px;
}
.sidenav-wrap .side-nav {
  list-style: none;
  margin: 0;
}
.sidenav-wrap .side-nav li a {
  padding: 10px 1rem;
  display: block;
  color: #3AA2CB;
  background: white;
  font-weight: 600;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  text-transform: capitalize;
}
.sidenav-wrap .side-nav li a:hover, .sidenav-wrap .side-nav li a:focus {
  color: white;
  background: #3AA2CB;
}

@media screen and (min-width: 48em) and (max-width: 56.1875em) {
  .sticky.is-stuck.is-at-top {
    left: auto !important;
  }
}
@media screen and (max-width: 47.9375em) {
  .sticky.is-stuck.is-at-top {
    left: auto !important;
  }
}

.off-canvas-wrapper {
  z-index: 1;
}
.off-canvas-wrapper #navigation {
  z-index: 9997;
}
.off-canvas-wrapper .js-off-canvas-exit {
  transform: translateX(0px);
  -webkit-transition: opacity 500ms ease;
  -moz-transition: opacity 500ms ease;
  -ms-transition: opacity 500ms ease;
  -o-transition: opacity 500ms ease;
  transition: opacity 500ms ease;
  background: rgba(113, 113, 108, 0.3);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateX(100%);
  display: block !important;
  opacity: 0;
  z-index: 9998;
}
.off-canvas-wrapper .off-canvas {
  height: 100%;
  -webkit-transition: transform 500ms ease;
  -moz-transition: transform 500ms ease;
  -ms-transition: transform 500ms ease;
  -o-transition: transform 500ms ease;
  transition: transform 500ms ease;
  z-index: 9999;
  background: url(/assets/images/chalkboard_bg.jpg) repeat #333232 0 0;
}
.off-canvas-wrapper .off-canvas .right-off-canvas-toggle-wrap {
  right: 0;
  display: block;
  width: 60px;
  position: fixed;
  top: 0;
}
.off-canvas-wrapper .off-canvas .right-off-canvas-toggle-wrap .right-off-canvas-toggle {
  margin-top: 5px;
  padding: 20px 15px;
  display: table;
  padding-left: 20px;
}
.off-canvas-wrapper .off-canvas-content {
  position: relative;
  overflow: hidden;
  background: url(/assets/images/chalkboard_bg.jpg) repeat #333232 0 0;
}
.off-canvas-wrapper .is-open-right {
  transform: translateX(0px);
}
.off-canvas-wrapper .is-open-right .off-canvas.position-right {
  transform: translateX(-250px);
  z-index: 999999;
}
.off-canvas-wrapper .is-open-right .js-off-canvas-exit {
  transform: translateX(0px) !important;
  opacity: 1;
}
.off-canvas-wrapper .left-off-canvas-menu, .off-canvas-wrapper .right-off-canvas-menu {
  /*
  	.logo{
  	max-width: 100%;
  	margin: 1rem auto;
  	text-align: center;
  	font-size: 7rem;
  	line-height: 0;	
  		a{
  		text-align: center;
  		display: table;
  		margin: 0 auto;
  		height: auto;
  		overflow: hidden;
  		line-height: 0;
  		color: rgba($secondary-color,.65);
  		opacity: .85;	
  			&:hover, &:focus{	
  			opacity: 1;
  			}
  		}
  	}
  */
}
.off-canvas-wrapper .left-off-canvas-menu ul.canvas-nav-wrap, .off-canvas-wrapper .right-off-canvas-menu ul.canvas-nav-wrap {
  list-style: none;
  margin: 1rem 0;
  margin-top: 50px;
}
.off-canvas-wrapper .left-off-canvas-menu ul.canvas-nav-wrap li a, .off-canvas-wrapper .right-off-canvas-menu ul.canvas-nav-wrap li a {
  width: 100%;
  display: block;
  font-family: "proxima-nova", "helvetica", sans-serif;
  color: #E9EAE4;
  padding: 0.625rem 1.25rem;
  padding-right: 3.125rem;
  font-weight: 600;
  margin-bottom: 0;
  line-height: normal;
  position: relative;
  font-size: 1.125rem;
  text-transform: none;
  background: transparent;
  padding-left: 40px;
}
.off-canvas-wrapper .left-off-canvas-menu ul.canvas-nav-wrap li a:hover, .off-canvas-wrapper .left-off-canvas-menu ul.canvas-nav-wrap li a:focus, .off-canvas-wrapper .right-off-canvas-menu ul.canvas-nav-wrap li a:hover, .off-canvas-wrapper .right-off-canvas-menu ul.canvas-nav-wrap li a:focus {
  color: #ffd400;
}
.off-canvas-wrapper .left-off-canvas-menu ul.canvas-nav-wrap li.active a, .off-canvas-wrapper .right-off-canvas-menu ul.canvas-nav-wrap li.active a {
  color: #ffd400;
  background: url(/assets/images/logo_active.png) 10px center no-repeat transparent;
  background-size: 20px;
}
.off-canvas-wrapper .left-off-canvas-menu ul.canvas-nav-wrap li.active ul.dropdown, .off-canvas-wrapper .right-off-canvas-menu ul.canvas-nav-wrap li.active ul.dropdown {
  display: block;
}
.off-canvas-wrapper .left-off-canvas-menu ul.canvas-nav-wrap li:last-of-type a, .off-canvas-wrapper .right-off-canvas-menu ul.canvas-nav-wrap li:last-of-type a {
  border-bottom: none;
}
.off-canvas-wrapper .left-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown .toggle-wrap, .off-canvas-wrapper .right-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown .toggle-wrap {
  position: relative;
}
.off-canvas-wrapper .left-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown .toggle-wrap .toggle, .off-canvas-wrapper .right-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown .toggle-wrap .toggle {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0.8125rem;
  z-index: 10;
  display: block;
  cursor: pointer;
  color: #ffd400;
}
.off-canvas-wrapper .left-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown .toggle-wrap .toggle:hover, .off-canvas-wrapper .left-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown .toggle-wrap .toggle:focus, .off-canvas-wrapper .right-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown .toggle-wrap .toggle:hover, .off-canvas-wrapper .right-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown .toggle-wrap .toggle:focus {
  color: #333232;
}
.off-canvas-wrapper .left-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown .toggle-wrap .toggle i, .off-canvas-wrapper .right-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown .toggle-wrap .toggle i {
  display: none;
  font-size: 1.25rem;
  color: #ffd400;
  border-radius: 50%;
  height: 1rem;
  width: 1.0625rem;
  line-height: 1rem;
}
.off-canvas-wrapper .left-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown .toggle-wrap .toggle i.active, .off-canvas-wrapper .right-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown .toggle-wrap .toggle i.active {
  display: block;
}
.off-canvas-wrapper .left-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown .toggle-wrap .toggle i:hover, .off-canvas-wrapper .left-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown .toggle-wrap .toggle i:focus, .off-canvas-wrapper .right-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown .toggle-wrap .toggle i:hover, .off-canvas-wrapper .right-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown .toggle-wrap .toggle i:focus {
  color: #333232;
}
.off-canvas-wrapper .left-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown ul, .off-canvas-wrapper .right-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown ul {
  display: none;
  list-style: none;
  margin: 0;
  background: black;
  /* The Fallback */
  background: rgba(0, 0, 0, 0.065);
}
.off-canvas-wrapper .left-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown ul li a, .off-canvas-wrapper .right-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown ul li a {
  border-left: none;
  outline: none;
  text-indent: 10px;
  padding-right: 1.25rem;
  font-family: "Life Savers", cursive, serif;
  text-transform: capitalize;
  font-weight: normal;
  font-size: 0.875rem;
  color: #E9EAE4;
  margin-bottom: 0;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.off-canvas-wrapper .left-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown ul li a:hover, .off-canvas-wrapper .left-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown ul li a:focus, .off-canvas-wrapper .right-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown ul li a:hover, .off-canvas-wrapper .right-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown ul li a:focus {
  color: #ffd400;
}
.off-canvas-wrapper .left-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown ul li a:hover::after, .off-canvas-wrapper .left-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown ul li a:focus::after, .off-canvas-wrapper .right-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown ul li a:hover::after, .off-canvas-wrapper .right-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown ul li a:focus::after {
  content: "";
  font-family: fontawesome;
  position: absolute;
  right: 1.125rem;
  top: 50%;
  font-size: 1.25rem;
  width: auto;
  margin-top: -0.625rem;
}
.off-canvas-wrapper .left-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown ul li.active a::after, .off-canvas-wrapper .right-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown ul li.active a::after {
  content: "";
  font-family: fontawesome;
  position: absolute;
  right: 1.125rem;
  top: 50%;
  font-size: 1.25rem;
  width: auto;
  margin-top: -0.625rem;
}
.off-canvas-wrapper .left-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown ul li:last-of-type a, .off-canvas-wrapper .right-off-canvas-menu ul.canvas-nav-wrap li.has-dropdown ul li:last-of-type a {
  border-bottom: none;
}
.off-canvas-wrapper .left-off-canvas-menu .social, .off-canvas-wrapper .right-off-canvas-menu .social {
  display: table;
  margin-left: 2.5rem;
}
.off-canvas-wrapper .left-off-canvas-menu .social h6, .off-canvas-wrapper .right-off-canvas-menu .social h6 {
  margin-top: 1.5rem;
}
.off-canvas-wrapper .left-off-canvas-menu .social ul, .off-canvas-wrapper .right-off-canvas-menu .social ul {
  margin: 0;
  text-align: center;
}
.off-canvas-wrapper .left-off-canvas-menu .social ul li, .off-canvas-wrapper .right-off-canvas-menu .social ul li {
  list-style: none;
  display: block;
  float: left;
}
.off-canvas-wrapper .left-off-canvas-menu .social ul li a, .off-canvas-wrapper .right-off-canvas-menu .social ul li a {
  margin: 0 5px;
  font-size: 1.85rem;
  display: block;
  color: #E9EAE4;
  opacity: 0.6;
  -webkit-transition: all 350ms ease-in-out;
  -moz-transition: all 350ms ease-in-out;
  -ms-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}
.off-canvas-wrapper .left-off-canvas-menu .social ul li a:hover, .off-canvas-wrapper .left-off-canvas-menu .social ul li a:focus, .off-canvas-wrapper .right-off-canvas-menu .social ul li a:hover, .off-canvas-wrapper .right-off-canvas-menu .social ul li a:focus {
  color: #ffd400;
  opacity: 1;
}
.off-canvas-wrapper .left-off-canvas-menu .legal, .off-canvas-wrapper .right-off-canvas-menu .legal {
  display: block;
  clear: both;
  margin-left: 40px;
  margin-top: 20px;
  padding: 20px 20px 20px 0;
  border-top: 3px solid #333232;
}
.off-canvas-wrapper .left-off-canvas-menu .legal p, .off-canvas-wrapper .right-off-canvas-menu .legal p {
  font-family: "proxima-nova", "helvetica", sans-serif;
  font-size: 0.875rem;
  color: #71716c;
  font-weight: normal;
  font-style: italic;
  text-align: left;
}
.off-canvas-wrapper .left-off-canvas-menu .legal p a, .off-canvas-wrapper .right-off-canvas-menu .legal p a {
  color: #71716c;
}
.off-canvas-wrapper .left-off-canvas-menu .legal p a:hover, .off-canvas-wrapper .left-off-canvas-menu .legal p a:focus, .off-canvas-wrapper .right-off-canvas-menu .legal p a:hover, .off-canvas-wrapper .right-off-canvas-menu .legal p a:focus {
  text-decoration: underline;
}
.off-canvas-wrapper .left-off-canvas-menu .legal p a.credits, .off-canvas-wrapper .right-off-canvas-menu .legal p a.credits {
  color: #71716c;
  font-size: 0.875rem;
}
.off-canvas-wrapper .left-off-canvas-menu .legal p a.credits span, .off-canvas-wrapper .right-off-canvas-menu .legal p a.credits span {
  color: #3AA2CB;
  display: block;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  opacity: 0.6;
}
.off-canvas-wrapper .left-off-canvas-menu .legal p a.credits:hover, .off-canvas-wrapper .left-off-canvas-menu .legal p a.credits:focus, .off-canvas-wrapper .right-off-canvas-menu .legal p a.credits:hover, .off-canvas-wrapper .right-off-canvas-menu .legal p a.credits:focus {
  color: #71716c;
  text-decoration: none;
}
.off-canvas-wrapper .left-off-canvas-menu .legal p a.credits:hover span, .off-canvas-wrapper .left-off-canvas-menu .legal p a.credits:focus span, .off-canvas-wrapper .right-off-canvas-menu .legal p a.credits:hover span, .off-canvas-wrapper .right-off-canvas-menu .legal p a.credits:focus span {
  color: #3AA2CB;
  text-decoration: underline;
}

.hero-wrap {
  position: relative;
  display: table;
  width: 100%;
  margin: 0 auto;
  background: #ffd400;
  /* hero image */
}
.hero-wrap .hidden-img {
  position: absolute;
  width: 100%;
  height: auto;
}
.hero-wrap .hero-image {
  position: relative;
  z-index: 0;
  display: table;
  background: #E9EAE4 no-repeat center top;
  background-size: cover;
  text-align: center;
  margin-top: 0;
  height: auto;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}
.hero-wrap .hero-image.no-img {
  background: url(/assets/images/bricks_bg.jpg) repeat 0 0 #E9EAE4;
  background-size: 618px;
  position: relative;
}
.hero-wrap .hero-text {
  position: relative;
  z-index: 1;
  background: none;
  text-align: center;
  margin: 0;
  padding: 0;
  display: inline-table;
  width: 100%;
  vertical-align: middle;
  height: 100%;
  padding: 2rem;
}
.hero-wrap .hero-text h1, .hero-wrap .hero-text h2, .hero-wrap .hero-text h3, .hero-wrap .hero-text h4, .hero-wrap .hero-text h5, .hero-wrap .hero-text h6 {
  max-width: 1200px;
  font-family: "proxima-nova", "helvetica", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: black;
  display: table-cell;
  vertical-align: middle;
  height: auto;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 47.9375em) {
  .hero-wrap .hero-text h1, .hero-wrap .hero-text h2, .hero-wrap .hero-text h3, .hero-wrap .hero-text h4, .hero-wrap .hero-text h5, .hero-wrap .hero-text h6 {
    font-size: 1.5rem;
  }
}
.hero-wrap .hero-text h1 .subheader, .hero-wrap .hero-text h2 .subheader, .hero-wrap .hero-text h3 .subheader, .hero-wrap .hero-text h4 .subheader, .hero-wrap .hero-text h5 .subheader, .hero-wrap .hero-text h6 .subheader {
  display: block;
  color: #333232;
  margin-top: 1.25rem;
  margin-bottom: 0;
}
@media screen and (max-width: 47.9375em) {
  .hero-wrap .hero-text h1 .subheader, .hero-wrap .hero-text h2 .subheader, .hero-wrap .hero-text h3 .subheader, .hero-wrap .hero-text h4 .subheader, .hero-wrap .hero-text h5 .subheader, .hero-wrap .hero-text h6 .subheader {
    font-size: 65%;
  }
}
.hero-wrap .hero-text .button {
  background: none;
  border: 2px solid white;
  margin: 0 auto;
  font-weight: normal;
  display: table;
}
@media screen and (max-width: 47.9375em) {
  .hero-wrap .hero-text .button {
    display: none;
  }
}
.hero-wrap .hero-text .button:hover, .hero-wrap .hero-text .button:focus {
  background: white;
  color: #ffd400;
  text-shadow: 0px 3px 0px rgba(0, 0, 0, 0);
}
.hero-wrap .hero-text.has-img {
  background: rgba(0, 0, 0, 0.5);
}
.hero-wrap .hero-text.has-img h1, .hero-wrap .hero-text.has-img h2, .hero-wrap .hero-text.has-img h3, .hero-wrap .hero-text.has-img h4, .hero-wrap .hero-text.has-img h5, .hero-wrap .hero-text.has-img h6 {
  color: white;
  opacity: 0.85;
}
.hero-wrap .hero-text.has-img .subheader {
  color: white;
  opacity: 0.85;
}

.content-blocks .block-wrapper {
  background: #333232;
}
.content-blocks .block-wrapper .content-block {
  background-color: #333232;
}
.content-blocks .block-wrapper .content-block .text-with-image .text-wrapper, .content-blocks .block-wrapper .content-block .text-with-video .text-wrapper {
  background-image: url(/assets/images/sun_bg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 520px;
}
.content-blocks .block-wrapper:nth-child(1), .content-blocks .block-wrapper:nth-child(6), .content-blocks .block-wrapper:nth-child(11) {
  background-color: #71379A;
}
.content-blocks .block-wrapper:nth-child(1) .content-block, .content-blocks .block-wrapper:nth-child(6) .content-block, .content-blocks .block-wrapper:nth-child(11) .content-block {
  background-color: #71379A;
}
.content-blocks .block-wrapper:nth-child(2), .content-blocks .block-wrapper:nth-child(7), .content-blocks .block-wrapper:nth-child(12) {
  background-color: #DE352C;
}
.content-blocks .block-wrapper:nth-child(2) .content-block, .content-blocks .block-wrapper:nth-child(7) .content-block, .content-blocks .block-wrapper:nth-child(12) .content-block {
  background-color: #DE352C;
}
.content-blocks .block-wrapper:nth-child(3), .content-blocks .block-wrapper:nth-child(8), .content-blocks .block-wrapper:nth-child(13) {
  background-color: #3AA2CB;
}
.content-blocks .block-wrapper:nth-child(3) .content-block, .content-blocks .block-wrapper:nth-child(8) .content-block, .content-blocks .block-wrapper:nth-child(13) .content-block {
  background-color: #3AA2CB;
}
.content-blocks .block-wrapper:nth-child(4), .content-blocks .block-wrapper:nth-child(9), .content-blocks .block-wrapper:nth-child(14) {
  background-color: #E5591E;
}
.content-blocks .block-wrapper:nth-child(4) .content-block, .content-blocks .block-wrapper:nth-child(9) .content-block, .content-blocks .block-wrapper:nth-child(14) .content-block {
  background-color: #E5591E;
}
.content-blocks .block-wrapper:nth-child(5), .content-blocks .block-wrapper:nth-child(10), .content-blocks .block-wrapper:nth-child(15) {
  background-color: #49A970;
}
.content-blocks .block-wrapper:nth-child(5) .content-block, .content-blocks .block-wrapper:nth-child(10) .content-block, .content-blocks .block-wrapper:nth-child(15) .content-block {
  background-color: #49A970;
}
.content-blocks .block-wrapper.purple {
  background-color: #71379A !important;
}
.content-blocks .block-wrapper.purple .content-block {
  background-color: #71379A !important;
}
.content-blocks .block-wrapper.purple .content-block .text-with-image .text-wrapper, .content-blocks .block-wrapper.purple .content-block .text-with-video .text-wrapper {
  background-position: 58% 40px;
}
.content-blocks .block-wrapper.red {
  background-color: #DE352C !important;
}
.content-blocks .block-wrapper.red .content-block {
  background-color: #DE352C !important;
}
.content-blocks .block-wrapper.red .content-block .text-with-image .text-wrapper, .content-blocks .block-wrapper.red .content-block .text-with-video .text-wrapper {
  background-position: 58% 40px;
}
.content-blocks .block-wrapper.blue {
  background-color: #3AA2CB !important;
}
.content-blocks .block-wrapper.blue .content-block {
  background-color: #3AA2CB !important;
}
.content-blocks .block-wrapper.blue .content-block .text-with-image .text-wrapper, .content-blocks .block-wrapper.blue .content-block .text-with-video .text-wrapper {
  background-position: 58% 40px;
}
.content-blocks .block-wrapper.orange {
  background-color: #E5591E !important;
}
.content-blocks .block-wrapper.orange .content-block {
  background-color: #E5591E !important;
}
.content-blocks .block-wrapper.orange .content-block .text-with-image .text-wrapper, .content-blocks .block-wrapper.orange .content-block .text-with-video .text-wrapper {
  background-position: 58% 40px;
}
.content-blocks .block-wrapper.green {
  background-color: #49A970 !important;
}
.content-blocks .block-wrapper.green .content-block {
  background-color: #49A970 !important;
}
.content-blocks .block-wrapper.green .content-block .text-with-image .text-wrapper, .content-blocks .block-wrapper.green .content-block .text-with-video .text-wrapper {
  background-position: 58% 40px;
}
.content-blocks .cards-bg-img {
  background: url(/assets/images/Background_Programs_Program-Pods-Background_1600x1160.jpg) no-repeat white center center;
  background-size: cover;
}
.content-blocks .cards-bg-img:before, .content-blocks .cards-bg-img:after {
  content: " ";
  background: #ffd400;
  /* Old browsers */
  background: -moz-linear-gradient(left, #ffd400 0%, white 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #ffd400 0%, white 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #ffd400 0%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffd400", endColorstr="#ffffff",GradientType=1 );
  /* IE6-9 */
  display: block;
  height: 5px;
  width: 100%;
}
.content-blocks .cards-bg-img .content-block {
  background: rgba(0, 0, 0, 0.5);
}
.content-blocks .cards-bg-img .card-header {
  color: white;
}

.content-block {
  display: block;
  clear: both;
}
.content-block.list-pod .text-only {
  padding: 20px 0px;
  border-bottom: 5px solid #f3f3f3;
  margin: 0 50px;
}
.content-block.floated-img {
  clear: none !important;
}
.content-block.float-left, .content-block.float-right {
  clear: none !important;
  max-width: 50%;
}
@media screen and (max-width: 47.9375em) {
  .content-block.float-left, .content-block.float-right {
    max-width: 100%;
    clear: both !important;
    float: none !important;
  }
}
.content-block.float-left .image, .content-block.float-right .image {
  margin: 2rem;
}
.content-block .form {
  margin: 0 auto;
  display: table;
  padding: 0 2rem 3rem;
}
.content-block .flex-video {
  margin-bottom: 0;
  box-shadow: none;
}
.content-block:last-child .download {
  border-bottom: none;
}
.content-block .download {
  padding: 2rem;
  border-bottom: 5px solid #f1f1f1;
  margin: 0rem 1rem;
}
.content-block .text a {
  overflow-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
}
.content-block .text.text-center ul {
  list-style-position: inside;
}
.content-block .text p {
  line-height: 1.4;
}
.content-block .text p:last-of-type {
  margin-bottom: 0;
}
.content-block .text-only {
  padding: 60px 50px;
}
@media screen and (max-width: 47.9375em) {
  .content-block .text-only {
    padding: 30px;
  }
}
.content-block .text-only.big-text {
  padding: 60px 50px;
}
.content-block .text-only.big-text h2, .content-block .text-only.big-text h3, .content-block .text-only.big-text h4, .content-block .text-only.big-text h5, .content-block .text-only.big-text h6 {
  color: #49A970;
  font-size: 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .content-block .text-only.big-text h2, .content-block .text-only.big-text h3, .content-block .text-only.big-text h4, .content-block .text-only.big-text h5, .content-block .text-only.big-text h6 {
    font-size: 1.75rem;
  }
}
.content-block .text-only.big-text p {
  font-size: 2.0625rem;
  color: #333232;
  font-weight: 300;
}
@media screen and (max-width: 47.9375em) {
  .content-block .text-only.big-text p {
    font-size: 1.125rem;
  }
}
.content-block .video .play-vid {
  display: table;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.content-block .video .play-vid:after {
  content: "";
  font-family: fontawesome;
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 5rem;
  line-height: normal;
  margin-top: -2.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
}
.content-block .video .play-vid img {
  width: 100%;
  height: auto;
  max-width: 100%;
  margin-top: -9%;
  margin-bottom: -9.5%;
  display: block;
  position: relative;
}
.content-block .video .vid-info {
  display: table-cell;
  vertical-align: middle;
  padding: 0 0 0 1.875rem;
}
@media screen and (max-width: 47.9375em) {
  .content-block .video .vid-info {
    padding: 0 0 0 0.625rem;
  }
}
.content-block .video .vid-info .vid-info-inner-wrap {
  display: block;
  clear: both;
}
.content-block .video .vid-info h3 {
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
  color: black;
}
@media screen and (max-width: 47.9375em) {
  .content-block .video .vid-info h3 {
    font-size: 1rem;
    line-height: normal;
  }
}
.content-block .video .vid-info span {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 24px;
  margin-top: 5px;
}
@media screen and (max-width: 47.9375em) {
  .content-block .video .vid-info span {
    font-size: 0.75rem;
    line-height: 0.875rem;
  }
}
.content-block .video .vid-info span i {
  font-size: 27px;
  line-height: 24px;
  position: relative;
  top: 4px;
  padding-right: 3px;
}
@media screen and (max-width: 47.9375em) {
  .content-block .video .vid-info span i {
    font-size: 1.25rem;
    line-height: 1.125rem;
    top: 2px;
  }
}
.content-block .video .vid-info span:hover, .content-block .video .vid-info span:focus {
  color: #ffd400;
}
.content-block .video .expand-vid .flex-video {
  height: 0;
  margin-bottom: 0.3125rem;
  overflow: hidden;
  padding-bottom: 56.5%;
  padding-top: 0;
  position: relative;
}
.content-block .video .expand-vid .video-wrap {
  display: none;
}
.content-block .video .expand-vid .close-vid {
  position: absolute;
  right: 0;
  text-align: center;
  display: table;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(0, 0, 0, 0.5);
  top: 0.0625rem;
}
.content-block .video .expand-vid .close-vid i {
  display: table-cell;
  vertical-align: middle;
  color: #F5F5F5;
  font-size: 1.5rem;
  -webkit-transition: color 500ms ease;
  -moz-transition: color 500ms ease;
  -ms-transition: color 500ms ease;
  -o-transition: color 500ms ease;
  transition: color 500ms ease;
}
.content-block .video .expand-vid .close-vid:hover i, .content-block .video .expand-vid .close-vid:focus i {
  color: #ffd400;
}
.content-block .text-with-image, .content-block .text-with-video {
  margin: 0;
}
@media screen and (max-width: 56.1875em) {
  .content-block .text-with-image, .content-block .text-with-video {
    display: block;
  }
}
.content-block .text-with-image.last, .content-block .text-with-video.last {
  border-bottom: none;
}
.content-block .text-with-image .img-left, .content-block .text-with-image .img-right, .content-block .text-with-video .img-left, .content-block .text-with-video .img-right {
  display: table;
  width: 100%;
}
@media screen and (max-width: 56.1875em) {
  .content-block .text-with-image .img-left, .content-block .text-with-image .img-right, .content-block .text-with-video .img-left, .content-block .text-with-video .img-right {
    display: block;
  }
}
.content-block .text-with-image .img-left .text-wrapper, .content-block .text-with-video .img-left .text-wrapper {
  padding: 3.4375rem;
}
@media screen and (max-width: 47.9375em) {
  .content-block .text-with-image .img-left .text-wrapper, .content-block .text-with-video .img-left .text-wrapper {
    display: block;
    width: 100% !important;
    padding: 1.875rem 1.25rem;
  }
}
.content-block .text-with-image .img-right .text-wrapper, .content-block .text-with-video .img-right .text-wrapper {
  padding: 3.4375rem;
}
@media screen and (max-width: 47.9375em) {
  .content-block .text-with-image .img-right .text-wrapper, .content-block .text-with-video .img-right .text-wrapper {
    display: block;
    width: 100% !important;
    padding: 1.875rem 1.25rem;
  }
}
.content-block .text-with-image .image-wrapper, .content-block .text-with-image .text-wrapper, .content-block .text-with-video .image-wrapper, .content-block .text-with-video .text-wrapper {
  display: table-cell;
  vertical-align: middle;
}
@media screen and (max-width: 47.9375em) {
  .content-block .text-with-image .image-wrapper, .content-block .text-with-image .text-wrapper, .content-block .text-with-video .image-wrapper, .content-block .text-with-video .text-wrapper {
    display: block;
    width: 100%;
  }
}
.content-block .text-with-image .image-wrapper, .content-block .text-with-video .image-wrapper {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 47.9375em) {
  .content-block .text-with-image .image-wrapper, .content-block .text-with-video .image-wrapper {
    width: 100% !important;
    background: none !important;
    text-align: center;
    display: block;
    vertical-align: top;
    padding: 0;
  }
}
.content-block .text-with-image .image-wrapper .image, .content-block .text-with-video .image-wrapper .image {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 47.9375em) {
  .content-block .text-with-image .image-wrapper .image, .content-block .text-with-video .image-wrapper .image {
    visibility: visible;
    opacity: 1;
  }
}
.content-block .text-with-image .text-wrapper, .content-block .text-with-video .text-wrapper {
  color: white;
}
.content-block .text-with-image .text-wrapper .header-text h2, .content-block .text-with-image .text-wrapper .header-text h3, .content-block .text-with-image .text-wrapper .header-text h4, .content-block .text-with-image .text-wrapper .header-text h5, .content-block .text-with-image .text-wrapper .header-text h6, .content-block .text-with-image .text-wrapper .header-text p, .content-block .text-with-video .text-wrapper .header-text h2, .content-block .text-with-video .text-wrapper .header-text h3, .content-block .text-with-video .text-wrapper .header-text h4, .content-block .text-with-video .text-wrapper .header-text h5, .content-block .text-with-video .text-wrapper .header-text h6, .content-block .text-with-video .text-wrapper .header-text p {
  font-size: 2.25rem;
  text-transform: none;
  font-family: "Life Savers", cursive, serif;
  line-height: 1.2;
  margin-bottom: 0;
}
@media screen and (max-width: 47.9375em) {
  .content-block .text-with-image .text-wrapper .header-text h2, .content-block .text-with-image .text-wrapper .header-text h3, .content-block .text-with-image .text-wrapper .header-text h4, .content-block .text-with-image .text-wrapper .header-text h5, .content-block .text-with-image .text-wrapper .header-text h6, .content-block .text-with-image .text-wrapper .header-text p, .content-block .text-with-video .text-wrapper .header-text h2, .content-block .text-with-video .text-wrapper .header-text h3, .content-block .text-with-video .text-wrapper .header-text h4, .content-block .text-with-video .text-wrapper .header-text h5, .content-block .text-with-video .text-wrapper .header-text h6, .content-block .text-with-video .text-wrapper .header-text p {
    font-size: 1.5rem;
  }
}
.content-block .text-with-image .text-wrapper .text, .content-block .text-with-video .text-wrapper .text {
  margin-top: 1.25rem;
}
.content-block .text-with-image .text-wrapper .text p, .content-block .text-with-video .text-wrapper .text p {
  font-size: 1.25rem;
}
@media screen and (max-width: 47.9375em) {
  .content-block .text-with-image .text-wrapper .text p, .content-block .text-with-video .text-wrapper .text p {
    font-size: 1rem;
  }
}
.content-block .text-with-image .text-wrapper .text .button, .content-block .text-with-video .text-wrapper .text .button {
  padding: 0.625rem 2.1875rem;
  font-size: 1rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 47.9375em) {
  .content-block .text-with-image .text-wrapper .text .button, .content-block .text-with-video .text-wrapper .text .button {
    font-size: 0.875rem;
  }
}
.content-block .text-with-image .fourth .image-wrapper, .content-block .text-with-video .fourth .image-wrapper {
  width: 25%;
}
.content-block .text-with-image .fourth .text-wrapper, .content-block .text-with-video .fourth .text-wrapper {
  width: 75%;
}
.content-block .text-with-image .third .image-wrapper, .content-block .text-with-video .third .image-wrapper {
  width: 33.3333333333%;
}
.content-block .text-with-image .third .text-wrapper, .content-block .text-with-video .third .text-wrapper {
  width: 66.6666666667%;
}
.content-block .text-with-image .half .image-wrapper, .content-block .text-with-video .half .image-wrapper {
  width: 50%;
}
.content-block .text-with-image .half .text-wrapper, .content-block .text-with-video .half .text-wrapper {
  width: 50%;
}
.content-block .text-with-video {
  background: url(/assets/images/chalk_bg_2.jpg) repeat 0 0 #333232 !important;
}
.content-block .text-with-video .vid-center {
  padding: 35px 20px;
}
.content-block .text-with-video .vid-center .video {
  display: block;
  width: 100%;
  margin: 0 auto;
  max-width: 1170px;
  padding: 35px 0;
}
@media screen and (max-width: 47.9375em) {
  .content-block .text-with-video .vid-center .video {
    padding: 35px 0 10px;
  }
}
.content-block .text-with-video .vid-center .video .flex-video {
  box-shadow: 0px 2px 24px rgba(0, 0, 0, 0.65);
}
.content-block .text-with-video .vid-center .text-wrapper {
  padding: 30px 0;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  display: table;
  width: 100%;
}
@media screen and (max-width: 47.9375em) {
  .content-block .text-with-video .vid-center .text-wrapper {
    padding: 0;
  }
}
.content-block .text-with-video .vid-center .text-wrapper .header-text h2, .content-block .text-with-video .vid-center .text-wrapper .header-text h3, .content-block .text-with-video .vid-center .text-wrapper .header-text h4, .content-block .text-with-video .vid-center .text-wrapper .header-text h5, .content-block .text-with-video .vid-center .text-wrapper .header-text h6, .content-block .text-with-video .vid-center .text-wrapper .header-text p {
  font-size: 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .content-block .text-with-video .vid-center .text-wrapper .header-text h2, .content-block .text-with-video .vid-center .text-wrapper .header-text h3, .content-block .text-with-video .vid-center .text-wrapper .header-text h4, .content-block .text-with-video .vid-center .text-wrapper .header-text h5, .content-block .text-with-video .vid-center .text-wrapper .header-text h6, .content-block .text-with-video .vid-center .text-wrapper .header-text p {
    font-size: 1.75rem;
  }
}
.content-block .text-with-video .vid-center .text-wrapper .text p {
  margin: 0;
  line-height: 1.3;
  font-size: 2.0625rem;
}
@media screen and (max-width: 47.9375em) {
  .content-block .text-with-video .vid-center .text-wrapper .text p {
    font-size: 1.25rem;
  }
}
.content-block .slider-nav {
  display: table;
  margin: 0;
  width: 100%;
  background: none;
}
@media screen and (max-width: 47.9375em) {
  .content-block .slider-nav {
    display: none;
  }
}
.content-block .slider-nav ul {
  display: table;
  margin: 0 auto;
}
.content-block .slider-nav ul li {
  list-style: none;
  padding-left: 0 !important;
  text-transform: uppercase;
  display: inline-block;
  float: none;
  font-family: "proxima-nova", "helvetica", sans-serif;
  font-weight: bold;
  text-transform: capitalize;
  font-size: 1.5625rem;
  letter-spacing: -0.5px;
}
@media screen and (max-width: 47.9375em) {
  .content-block .slider-nav ul li {
    font-size: 1rem;
  }
}
.content-block .slider-nav ul li a {
  border-top: 7px solid #3AA2CB;
  padding: 0.5rem 1rem 1.875rem;
  color: #3AA2CB;
  display: block;
  opacity: 0.4;
  margin: 0 3px;
}
.content-block .slider-nav ul li a:hover, .content-block .slider-nav ul li a:focus, .content-block .slider-nav ul li a.active {
  color: #49A970;
  border-top: 7px solid #49A970;
  opacity: 1;
}
.content-block .slider-nav ul li::before {
  content: none;
  display: none;
}
.content-block .slider-wrap {
  display: table;
  width: 100%;
  clear: both;
  table-layout: fixed;
  margin-bottom: 0px;
}
.content-block .slider {
  position: relative;
  margin-bottom: 0;
  margin: 0;
  table-layout: fixed;
  display: table;
  width: 100%;
  background: url(/assets/images/bricks_bg.jpg) repeat 0 0 #E9EAE4;
  background-size: 618px;
}
.content-block .slider:hover {
  cursor: move;
}
@media screen and (max-width: 47.9375em) {
  .content-block .slider {
    margin: 0;
    width: 100%;
  }
}
.content-block .slider.slick-dotted {
  margin-bottom: 2.3125rem;
}
.content-block .slider.slick-dotted .slide .text-wrapper .inner-txt-wrap .text p {
  font-size: 2.25rem;
  margin-top: 0;
}
@media screen and (max-width: 47.9375em) {
  .content-block .slider.slick-dotted .slide .text-wrapper .inner-txt-wrap .text p {
    font-size: 1rem;
  }
}
.content-block .slider .slick-arrow {
  position: absolute;
  top: 50%;
  margin-top: -1.5625rem;
  width: 3.125rem;
  text-align: center;
  color: white;
  font-size: 2.75rem;
  line-height: 3.125rem;
  background: #DE352C;
  z-index: 1;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
  -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
  -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  height: 3.125rem;
  cursor: pointer;
  opacity: 0;
  display: block;
  -webkit-transition: opacity 500ms ease-in-out;
  -moz-transition: opacity 500ms ease-in-out;
  -ms-transition: opacity 500ms ease-in-out;
  -o-transition: opacity 500ms ease-in-out;
  transition: opacity 500ms ease-in-out;
}
.content-block .slider .slick-arrow.prev {
  left: 0.3125rem;
}
.content-block .slider .slick-arrow.next {
  right: 0.3125rem;
}
.content-block .slider .slick-arrow.slick-disabled {
  display: none !important;
}
.content-block .slider:hover, .content-block .slider:focus {
  cursor: pointer;
}
.content-block .slider:hover .slick-arrow, .content-block .slider:focus .slick-arrow {
  opacity: 1;
}
.content-block .slider .slick-slide {
  opacity: 1;
  outline: none !important;
}
.content-block .slider .slick-slide.slick-current {
  opacity: 1;
}
.content-block .slider .slick-slide img {
  width: 100%;
  height: auto;
}
.content-block .slider .slide {
  display: table;
  width: 100%;
  padding: 0;
  position: relative;
  outline: none !important;
}
.content-block .slider .slide.purple .text-wrapper {
  background-color: #71379A !important;
}
.content-block .slider .slide.red .text-wrapper {
  background-color: #DE352C !important;
}
.content-block .slider .slide.blue .text-wrapper {
  background-color: #3AA2CB !important;
}
.content-block .slider .slide.orange .text-wrapper {
  background-color: #E5591E !important;
}
.content-block .slider .slide.green .text-wrapper {
  background-color: #49A970 !important;
}
.content-block .slider .slide.feature-wrap img {
  width: 100%;
  height: auto;
}
.content-block .slider .slide.hasImage .text-wrapper, .content-block .slider .slide.hasVideo .text-wrapper {
  position: relative;
  bottom: 0;
  width: 50%;
  padding: 10px 5px;
  left: 0;
  display: table-cell;
  vertical-align: middle;
  background-image: url(/assets/images/sun_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 375px;
  left: -50%;
}
@media screen and (max-width: 47.9375em) {
  .content-block .slider .slide.hasImage .text-wrapper, .content-block .slider .slide.hasVideo .text-wrapper {
    left: auto;
    width: 100%;
    display: block;
    text-align: center;
    padding: 0;
  }
}
.content-block .slider .slide.hasImage.position-left .image-wrapper, .content-block .slider .slide.hasVideo.position-left .image-wrapper {
  right: 0;
}
.content-block .slider .slide.hasImage.position-left .text-wrapper, .content-block .slider .slide.hasVideo.position-left .text-wrapper {
  left: 0;
}
.content-block .slider .slide .image-wrapper {
  width: 50%;
  display: table-cell;
  vertical-align: middle;
  background-size: cover;
  background-position: center center;
  background-color: transparent;
  position: relative;
  right: -50%;
}
@media screen and (max-width: 47.9375em) {
  .content-block .slider .slide .image-wrapper {
    width: 100%;
    display: block;
    background-size: contain;
    right: auto;
  }
}
.content-block .slider .slide .image-wrapper img {
  opacity: 0;
  visibility: hidden;
}
.content-block .slider .slide span.info {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  padding: 20px 20px;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.content-block .slider .slide span.info:hover, .content-block .slider .slide span.info:focus {
  color: #ffd400;
}
.content-block .slider .slide span.info i {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.content-block .slider .slide span.info::after {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  content: "";
  position: absolute;
  left: 20px;
  z-index: 0;
  font-family: fontawesome;
  opacity: 0;
}
.content-block .slider .slide span.info.open i {
  opacity: 0;
}
.content-block .slider .slide span.info.open::after {
  content: "";
  font-family: fontawesome;
  position: absolute;
  left: 20px;
  z-index: 0;
  opacity: 1;
}
.content-block .slider .slide span.info.open::after:hover, .content-block .slider .slide span.info.open::after:focus {
  color: #ffd400;
}
.content-block .slider .slide .text-wrapper {
  overflow: hidden;
  /* this fixes the overflow:hidden in Chrome */
  -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
  background: #49A970;
}
.content-block .slider .slide .text-wrapper .inner-txt-wrap {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
  top: 0;
}
.content-block .slider .slide .text-wrapper.show-info .inner-txt-wrap {
  top: 0;
}
.content-block .slider .slide .text-wrapper .inner-txt-wrap {
  display: block;
  width: 100%;
  padding: 2.8125rem;
}
@media screen and (max-width: 47.9375em) {
  .content-block .slider .slide .text-wrapper .inner-txt-wrap {
    padding: 1.875rem 1.25rem;
  }
}
.content-block .slider .slide .text-wrapper .inner-txt-wrap .headline h3 {
  font-size: 2.25rem;
  line-height: 1.4;
  font-family: "Life Savers", cursive, serif;
  text-transform: capitalize;
  color: #ffd400;
  margin: 0;
  font-weight: bold;
}
@media screen and (max-width: 47.9375em) {
  .content-block .slider .slide .text-wrapper .inner-txt-wrap .headline h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
  }
}
.content-block .slider .slide .text-wrapper .inner-txt-wrap .button-wrapper {
  display: block;
  margin-top: 1.25rem;
}
.content-block .slider .slide .text-wrapper .inner-txt-wrap .button-wrapper h5 {
  font-family: "proxima-nova", "helvetica", sans-serif;
  font-size: 1rem;
  padding: 8px 40px;
  margin-bottom: 0;
}
@media screen and (max-width: 47.9375em) {
  .content-block .slider .slide .text-wrapper .inner-txt-wrap .button-wrapper h5 {
    font-size: 0.875rem;
  }
}
.content-block .slider .slide .text-wrapper .inner-txt-wrap .text p {
  font-weight: normal;
  font-size: 1.25rem;
  line-height: 1.4;
  font-family: "proxima-nova", "helvetica", sans-serif;
  text-transform: none;
  color: white;
  margin: 0;
  margin-top: 0.9375rem;
}
.content-block .slider .slick-dots {
  bottom: -37px;
  padding: 5px;
  background: url(/assets/images/bricks_bg.jpg) repeat 0 0 #E9EAE4;
  background-size: 618px;
}
.content-block .slider .slick-dots li {
  margin: 0;
  top: -3px;
}
.content-block .slider .slick-dots li button:before {
  color: white;
  font-size: 0.625rem;
  opacity: 1;
}
.content-block .slider .slick-dots li.slick-active button:before {
  color: #DE352C;
}
.content-block .r-tabs-wrapper {
  display: table;
  width: 100%;
  clear: both;
  float: none;
  margin-top: 2rem;
}
.content-block .r-tabs-wrapper .r-tabs ul.tabs {
  margin: 0;
  padding: 0;
  float: left;
  list-style: none;
  height: auto;
  width: 100%;
}
.content-block .r-tabs-wrapper .r-tabs ul.tabs li {
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  float: left;
  margin: 0;
  cursor: pointer;
  padding: 0 20px;
  height: auto;
  line-height: 2rem;
  background-color: white;
  color: #003432;
  overflow: hidden;
  position: relative;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}
.content-block .r-tabs-wrapper .r-tabs ul.tabs li:hover {
  background-color: white;
  border-top: 2px solid #ffd400;
  color: #ffd400;
}
.content-block .r-tabs-wrapper .r-tabs ul.tabs li.active {
  background-color: white;
  color: #ffd400;
  border-top: 2px solid #ffd400;
  border-bottom: 2px solid white;
  display: block;
}
.content-block .r-tabs-wrapper .r-tabs .tab_container {
  clear: both;
  float: left;
  width: 100%;
  background: #fff;
  overflow: auto;
  display: block;
  width: 100%;
}
.content-block .r-tabs-wrapper .r-tabs .tab_content {
  padding: 1rem;
  display: none;
  background-color: white;
}
.content-block .r-tabs-wrapper .r-tabs .tab_content .map-outter-wrap {
  margin-top: 0;
}
.content-block .r-tabs-wrapper .r-tabs .tab_drawer_heading {
  display: none;
}
@media screen and (max-width: 47.9375em) {
  .content-block .r-tabs-wrapper .r-tabs .r-tabs-wrapper {
    display: block;
    margin-bottom: 1rem;
  }
  .content-block .r-tabs-wrapper .r-tabs .tabs {
    display: none;
  }
  .content-block .r-tabs-wrapper .r-tabs .tab_drawer_heading {
    background-color: white;
    color: #ffd400;
    margin: 0;
    padding: 10px 20px;
    display: block;
    cursor: pointer;
    border-bottom: 2px solid white;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 1.25rem;
    -webkit-transition: background 350ms ease;
    -moz-transition: background 350ms ease;
    -ms-transition: background 350ms ease;
    -o-transition: background 350ms ease;
    transition: background 350ms ease;
  }
  .content-block .r-tabs-wrapper .r-tabs .tab_drawer_heading:hover, .content-block .r-tabs-wrapper .r-tabs .tab_drawer_heading:focus {
    background-color: #ffd400;
    color: white;
  }
  .content-block .r-tabs-wrapper .r-tabs .tab_drawer_heading:after {
    content: "";
    font-family: fontawesome;
    float: right;
    position: relative;
    top: 6px;
    font-size: 0.8125rem;
  }
  .content-block .r-tabs-wrapper .r-tabs .tab_drawer_heading.d_active:after {
    content: "";
  }
  .content-block .r-tabs-wrapper .r-tabs .d_active {
    background-color: #ffd400;
    color: white;
  }
}
.content-block .blockquote {
  padding: 0 1.25rem;
}
.content-block .blockquote header {
  display: table;
  width: 100%;
  text-align: center;
  background: url(assets/images/dot-bg.png) white repeat-x center center;
}
.content-block .blockquote header h4 {
  font-family: "Life Savers", cursive, serif;
  color: #333232;
  font-size: 1.125rem;
  line-height: 1.4;
  margin: 0 auto;
  display: table;
  vertical-align: middle;
  padding: 0 1.25rem;
  background: white;
}
.content-block .blockquote blockquote {
  margin: 0;
  padding: 0;
  line-height: normal;
  border: none;
  position: relative;
  margin-bottom: 30px;
}
.content-block .blockquote .quote::before {
  content: '"';
  font-family: "proxima-nova", "helvetica", sans-serif;
  font-size: 2.5rem;
  color: #ffd400;
  position: absolute;
  font-weight: normal;
  font-style: italic;
  left: -20px;
  top: -10px;
}
.content-block .blockquote .quote p {
  font-family: "Life Savers", cursive, serif;
  font-size: 1.25rem;
  color: #888;
  line-height: 1.4;
}
.content-block .blockquote .quote p:last-child::after {
  content: '"';
  font-family: "proxima-nova", "helvetica", sans-serif;
  font-size: 1.25rem;
  color: #ffd400;
  font-weight: normal;
  font-style: italic;
}
.content-block .blockquote footer cite {
  font-family: "Life Savers", cursive, serif;
  text-align: right;
  font-size: 0.9375rem;
  font-style: normal;
}
.content-block .blockquote footer cite::before {
  color: #ffd400;
  opacity: 1;
}
.content-block .blockquote footer cite span {
  display: block;
}
.content-block .blockquote footer cite span:first-child {
  display: inline;
  color: #ffd400;
}
.content-block .cta {
  color: white;
  font-family: "Life Savers", cursive, serif;
}
.content-block .cta h1, .content-block .cta h2, .content-block .cta h3, .content-block .cta h4, .content-block .cta h5, .content-block .cta h6, .content-block .cta ul, .content-block .cta li, .content-block .cta ol {
  color: white;
  font-family: "Life Savers", cursive, serif;
  font-weight: bold;
}
.content-block .cta h1, .content-block .cta h2, .content-block .cta h3, .content-block .cta h4, .content-block .cta h5, .content-block .cta h6 {
  font-size: 1.5rem;
  line-height: normal;
}
.content-block .cta ol {
  counter-reset: my-counter;
  margin-left: 0;
}
.content-block .cta ol li {
  padding-left: 1.25rem;
  font-weight: bold;
  position: relative;
  list-style: none;
  font-size: 0.9375rem;
}
.content-block .cta ol li::before {
  content: counter(my-counter, decimal) ".";
  font-family: "Life Savers", cursive, serif;
  counter-increment: my-counter;
  padding-right: 0;
  position: absolute;
  left: 0;
}
.content-block .cta.no-img {
  background: #ffd400;
  padding: 1.25rem 1.875rem;
}
.content-block .cta.bottom-cta {
  background: none;
  text-align: center;
  position: relative;
  bottom: 0;
  width: 100%;
  height: 16.625rem;
  display: table;
  z-index: 2;
}
@media screen and (max-width: 47.9375em) {
  .content-block .cta.bottom-cta {
    position: relative;
    bottom: auto;
  }
}
.content-block .cta.bottom-cta .cta-text-wrap {
  display: table-cell;
  vertical-align: middle;
}
.content-block .cta.bottom-cta h1, .content-block .cta.bottom-cta h2, .content-block .cta.bottom-cta h3, .content-block .cta.bottom-cta h4, .content-block .cta.bottom-cta h5, .content-block .cta.bottom-cta h6 {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 3rem;
  line-height: 2.25rem;
  color: white;
}
.content-block .cta.bottom-cta .button, .content-block .cta.bottom-cta h1, .content-block .cta.bottom-cta h2, .content-block .cta.bottom-cta h3, .content-block .cta.bottom-cta h4, .content-block .cta.bottom-cta h5, .content-block .cta.bottom-cta h6 {
  display: block;
}
.content-block .cta.bottom-cta .button.primary {
  background: none;
  margin-bottom: 0;
  border-color: white;
  color: white;
  border-radius: 50px;
  display: table;
  margin: 20px auto 0;
  font-size: 1rem;
}
.content-block .cta.bottom-cta .button.primary:hover, .content-block .cta.bottom-cta .button.primary:focus {
  background: white;
  color: #ffd400;
}
@media screen and (max-width: 47.9375em) {
  .content-block .cta.bottom-cta .button.primary {
    margin-left: 0;
    display: table;
    width: auto;
    margin: 10px auto;
  }
}
.content-block .cards {
  max-width: 75rem;
  margin: 0 auto;
  display: table;
  width: 100%;
  padding: 60px 30px;
}
@media screen and (max-width: 47.9375em) {
  .content-block .cards {
    padding: 30px 0;
  }
}
.content-block .cards .card-header h2 {
  width: auto;
  display: inline-block;
  padding: 0 26px;
  font-family: "Life Savers", cursive, serif;
  font-size: 2.25rem;
  font-weight: 300;
  color: #ffd400;
  line-height: 1.1;
  margin: 2.5rem 0;
}
@media screen and (max-width: 47.9375em) {
  .content-block .cards .card-header h2 {
    background: #333232;
    font-family: "proxima-nova", "helvetica", sans-serif;
    color: white;
    text-transform: uppercase;
    padding: 0 15px;
    margin: 10px 0;
    font-size: 1rem;
    line-height: 1.4;
  }
}
.content-block .cards .card {
  display: inline-table;
  vertical-align: top;
  margin: 1.25rem 0;
  padding: 0 0.9375rem;
}
@media screen and (max-width: 47.9375em) {
  .content-block .cards .card {
    margin: 10px 0;
    width: 100% !important;
  }
}
.content-block .cards .card a {
  display: table;
  background: white;
  position: relative;
  width: 100%;
  top: 0;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0);
}
.content-block .cards .card a:hover, .content-block .cards .card a:focus {
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.85);
  top: -3px;
}
@media screen and (max-width: 47.9375em) {
  .content-block .cards .card a:hover, .content-block .cards .card a:focus {
    background: white;
  }
}
.content-block .cards .card a:hover .headline h3, .content-block .cards .card a:focus .headline h3 {
  color: #333232;
}
@media screen and (max-width: 47.9375em) {
  .content-block .cards .card a:hover .headline h3, .content-block .cards .card a:focus .headline h3 {
    color: #333232;
  }
}
.content-block .cards .card .heightfix {
  display: table;
  background: white;
}
.content-block .cards .card .image {
  display: block;
  margin-bottom: 0;
  vertical-align: middle;
  min-width: 120px;
  overflow: hidden;
  /* this fixes the overflow:hidden in Chrome */
  -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
}
@media screen and (max-width: 47.9375em) {
  .content-block .cards .card .image {
    display: table-cell;
  }
}
@media screen and (max-width: 47.9375em) {
  .content-block .cards .card .image img {
    border-radius: 0;
    margin-bottom: 0;
  }
}
.content-block .cards .card .text-wrapper {
  background: white;
  display: table;
}
@media screen and (max-width: 47.9375em) {
  .content-block .cards .card .text-wrapper {
    display: table-cell;
    vertical-align: middle;
    width: 75%;
  }
}
.content-block .cards .card .text-wrapper a:hover, .content-block .cards .card .text-wrapper a:focus {
  top: 0;
  box-shadow: none;
}
.content-block .cards .card .headline {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffd400+0,ffffff+100 */
  background: #ffd400;
  /* Old browsers */
  background: -moz-linear-gradient(left, #ffd400 0%, white 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #ffd400 0%, white 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #ffd400 0%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffd400", endColorstr="#ffffff",GradientType=1 );
  /* IE6-9 */
  display: table;
  width: 100%;
  text-align: center;
  padding: 10px 15px;
}
@media screen and (max-width: 47.9375em) {
  .content-block .cards .card .headline {
    background: none;
    padding: 15px 15px 15px 0px;
  }
}
.content-block .cards .card .headline h3 {
  color: #333232;
  text-align: center;
  font-family: "Life Savers", cursive, serif;
  font-size: 1.8125rem;
  line-height: normal;
  font-weight: bold;
  margin: 0;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media screen and (min-width: 48em) and (max-width: 56.1875em) {
  .content-block .cards .card .headline h3 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .content-block .cards .card .headline h3 {
    margin: 0;
    text-align: left;
    padding-left: 20px;
    position: relative;
    padding-right: 25px;
    font-size: 1rem;
  }
}
.content-block .cards .card .headline h3::after {
  content: none;
  display: none;
  font-family: fontawesome;
  padding-left: 1rem;
}
@media screen and (max-width: 47.9375em) {
  .content-block .cards .card .headline h3::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -12px;
  }
}
.content-block .cards .card .text {
  padding: 25px 20px;
  display: table;
}
@media screen and (max-width: 47.9375em) {
  .content-block .cards .card .text {
    display: none;
  }
}
.content-block .cards .card .text p {
  color: #4d4b4b;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.4;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 48em) and (max-width: 56.1875em) {
  .content-block .cards .card .text p {
    font-size: 0.9375rem;
  }
}
.content-block .cards .card .button {
  margin: 0 auto 30px;
  display: table;
  padding: 10px 30px;
  font-size: 20px;
}
@media screen and (min-width: 48em) and (max-width: 56.1875em) {
  .content-block .cards .card .button {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .content-block .cards .card .button {
    display: none;
  }
}
.content-block .cards .card.three {
  width: 33%;
}
.content-block .cards .card.two {
  width: 50%;
}
.content-block .cards .card.two a {
  padding: 0;
}
@media screen and (max-width: 47.9375em) {
  .content-block .cards .card.two a {
    padding: 0.125rem 1.25rem 0.125rem 0.125rem;
  }
}
.content-block .cards .card.two .image {
  border-radius: 0;
  vertical-align: bottom;
}
@media screen and (max-width: 47.9375em) {
  .content-block .cards .card.two .image {
    vertical-align: middle;
    width: 25%;
  }
}
.content-block .cards .card.two .image.show-for-small-only {
  display: none !important;
}
@media screen and (max-width: 47.9375em) {
  .content-block .cards .card.two .image.show-for-small-only {
    display: table-cell !important;
  }
}
@media screen and (max-width: 47.9375em) {
  .content-block .cards .card.two .image.hide-for-small-only {
    display: none !important;
  }
}
.content-block .cards .card.two .text-wrapper {
  vertical-align: top;
  padding-right: 1.25rem;
}
@media screen and (max-width: 47.9375em) {
  .content-block .cards .card.two .text-wrapper {
    vertical-align: middle;
    padding-right: 0;
  }
}
.content-block .cards .card.two .text-wrapper .text p, .content-block .cards .card.two .text-wrapper .headline h3 {
  text-align: left;
}
@media screen and (min-width: 48em) {
  .content-block .cards .card.one {
    width: 100%;
  }
  .content-block .cards .card.one a {
    padding: 0;
    padding-left: 30px;
  }
  .content-block .cards .card.one a .image {
    width: 250px;
    border-radius: 0;
    margin: 0;
  }
  .content-block .cards .card.one a .text-wrapper {
    display: table-cell;
    vertical-align: middle;
    padding: 0 30px;
  }
  .content-block .cards .card.one a .text-wrapper .text p, .content-block .cards .card.one a .text-wrapper .headline h3 {
    text-align: left;
  }
}
.content-block .panel-block .highlightPanel {
  display: table;
  width: 100%;
  text-align: center;
  padding: 1.875rem;
  margin-bottom: 0;
}
@media screen and (min-width: 48em) {
  .content-block .panel-block .highlightPanel {
    padding: 3.4375rem 1.875rem;
  }
}
.content-block .panel-block .highlightPanel .text-wrap h4 {
  font-weight: 300;
  font-family: "Life Savers", cursive, serif;
  font-size: 2.25rem;
  line-height: 1.2;
  margin: 0;
  color: #4d4b4b;
}
.content-block .panel-block .highlightPanel .text-wrap .inline-list {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 1.875rem 0 0;
}
.content-block .panel-block .highlightPanel .text-wrap .inline-list > li {
  float: none;
  display: inline-table;
  vertical-align: middle;
  list-style: none;
  margin: 0.3125rem 0.15625rem;
  border: 1px solid;
  text-transform: uppercase;
  color: white;
  padding-left: 0;
  font-weight: bold;
  font-family: "Life Savers", cursive, serif;
  font-size: 1.5rem;
  line-height: 1.4;
  width: 33.33333333%;
}
.content-block .panel-block .highlightPanel .text-wrap .inline-list > li::before {
  content: none;
}
.content-block .panel-block .highlightPanel .text-wrap .inline-list > li img {
  display: table;
  width: 100%;
  height: auto;
  max-width: 7.5rem;
  margin: 0 auto;
}
.content-block .panel-block .highlightPanel .text-wrap .inline-list > li span {
  text-align: left;
  display: table;
  color: white;
  font-weight: 600;
  font-family: "Life Savers", cursive, serif;
  font-size: 1.5rem;
  line-height: 1.4;
  padding: 20px;
  margin: 0 auto;
}
.content-block .panel-block.single .highlightPanel {
  padding: 40px 1rem;
}
.content-block .panel-block.single .highlightPanel .text-wrap h4 {
  color: #DE352C;
  font-weight: bold;
  font-size: 2.875rem;
}
.content-block .panel-block.single .highlightPanel .text-wrap .inline-list {
  padding: 0;
}
.content-block .panel-block.single .highlightPanel .text-wrap .inline-list li {
  float: none;
  display: table;
  margin: 0;
  border: none;
  text-transform: none;
  color: #333232;
  padding-left: 0;
  font-weight: 600;
  font-family: "proxima-nova", "helvetica", sans-serif;
  font-size: 1.75rem;
  line-height: 1.4;
  width: 100%;
  text-align: center;
}
.content-block .panel-block.single .highlightPanel .text-wrap .inline-list li span {
  color: #333232;
  font-family: "proxima-nova", "helvetica", sans-serif;
  text-align: center;
  font-size: 1.75rem;
  line-height: 1.4;
  padding-bottom: 0;
  padding-top: 5px;
}
@media screen and (min-width: 48em) {
  .content-block .panel-block.single.hasbutton .highlightPanel {
    padding: 5.625rem 1.875rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .content-block .panel-block.single.hasbutton .highlightPanel {
    text-align: left;
    padding: 1.875rem 1.25rem;
    background-size: contain;
    background-position: bottom center;
    background-color: #F3F3F3;
  }
}
.content-block .panel-block.single.hasbutton .highlightPanel .text-wrap h4 {
  color: #333232;
  font-family: "proxima-nova", "helvetica", sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .content-block .panel-block.single.hasbutton .highlightPanel .text-wrap h4 {
    text-align: left;
    font-size: 1.5rem;
  }
}
.content-block .panel-block.single.hasbutton .highlightPanel .text-wrap .inline-list {
  max-width: 1035px;
  padding: 1.5rem 0 2.25rem;
}
@media screen and (max-width: 47.9375em) {
  .content-block .panel-block.single.hasbutton .highlightPanel .text-wrap .inline-list {
    text-align: left;
    padding: 0.625rem 0 0.9375rem;
  }
}
.content-block .panel-block.single.hasbutton .highlightPanel .text-wrap .inline-list li span {
  font-weight: 300;
}
@media screen and (max-width: 47.9375em) {
  .content-block .panel-block.single.hasbutton .highlightPanel .text-wrap .inline-list li span {
    font-size: 1rem;
    text-align: left;
    padding: 0;
  }
}
.content-block .panel-block.single.hasbutton .highlightPanel .text-wrap .button {
  font-size: 1rem;
  padding: 8px 25px;
}
@media screen and (max-width: 47.9375em) {
  .content-block .panel-block.single.hasbutton .highlightPanel .text-wrap .button {
    font-size: 0.875rem;
  }
}
.content-block.questions .panel-block.single {
  background-position: center 85% !important;
}
.content-block.questions .panel-block.single .highlightPanel .text-wrap h4 {
  background: url(/assets/images/questions.png) no-repeat left center transparent;
  display: table;
  margin: 0 auto;
  padding-left: 60px;
}
@media screen and (max-width: 47.9375em) {
  .content-block.questions .panel-block.single .highlightPanel .text-wrap h4 {
    padding-left: 40px;
    font-size: 30px;
    background-size: 30px;
  }
}
@media screen and (max-width: 47.9375em) {
  .content-block.questions .panel-block.single .highlightPanel .text-wrap .inline-list li span {
    font-size: 20px;
    padding-top: 10px;
  }
}
.content-block.two-col-header {
  padding: 3.4375rem 0 2.5rem;
}
.content-block.two-col-header .text {
  padding: 0;
}
.content-block.two-col-header .text h2, .content-block.two-col-header .text h3, .content-block.two-col-header .text h4, .content-block.two-col-header .text h5 {
  font-weight: 300;
  font-family: "Life Savers", cursive, serif;
  font-size: 2.25rem;
  line-height: 1.2;
  padding-bottom: 0;
  margin: 0;
  color: #4d4b4b;
}
.content-block.two-col-header .text h2 small, .content-block.two-col-header .text h3 small, .content-block.two-col-header .text h4 small, .content-block.two-col-header .text h5 small {
  color: #ffd400;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.3;
  display: block;
  margin-top: 5px;
}
.content-block.two-col {
  width: 50%;
  display: inline-table;
  vertical-align: middle;
}
.content-block.two-col .text-only, .content-block.two-col .text {
  padding: 0 1rem;
  margin: 0;
}
.content-block.two-col .text-only ul, .content-block.two-col .text ul {
  margin-bottom: 0;
}
.content-block.two-col .text-only ul li, .content-block.two-col .text ul li {
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.5;
  font-family: "proxima-nova", "helvetica", sans-serif;
  margin-bottom: 20px;
  padding-left: 20px;
}
.content-block.two-col .text-only ul li::before, .content-block.two-col .text ul li::before {
  color: #ffd400;
  font-size: 10px;
  left: 0;
  position: absolute;
  top: 6px;
}
.content-block.two-col .text-only ul li b, .content-block.two-col .text-only ul li strong, .content-block.two-col .text ul li b, .content-block.two-col .text ul li strong {
  color: #136331;
  font-weight: bold;
}
.content-block.icons .panel-block {
  background: url(/assets/images/Background_How-We-Help_Ways-to-Help-Background-Pattern_367x214.png) repeat #3AA2CB 0 0 !important;
  background-size: 220px;
  text-align: center;
  height: auto;
  padding-bottom: 60px;
}
@media screen and (max-width: 47.9375em) {
  .content-block.icons .panel-block {
    padding-bottom: 30px;
  }
}
.content-block.icons .panel-block .highlightPanel {
  padding: 0;
}
.content-block.icons .panel-block .highlightPanel .text-wrap h4 {
  color: white;
  margin: 0;
  padding: 50px 1rem 40px;
  font-size: 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .content-block.icons .panel-block .highlightPanel .text-wrap h4 {
    padding: 30px 1rem 0;
    font-size: 28px;
  }
}
.content-block.icons .panel-block .highlightPanel .text-wrap .inline-list {
  display: table;
  height: 100%;
  width: 100%;
  background: url(/assets/images/Content_How-We-Help_Divider_15x200-01.png) no-repeat center center transparent;
  max-width: 70%;
}
@media screen and (max-width: 47.9375em) {
  .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list {
    max-width: 100%;
    background: none;
  }
}
.content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-1, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-2, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-3, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-4 {
  display: inline-table;
  vertical-align: middle;
  text-align: center;
  background: url(/assets/images/transparent.png) transparent center center no-repeat;
  -webkit-transition: background 350ms ease;
  -moz-transition: background 350ms ease;
  -ms-transition: background 350ms ease;
  -o-transition: background 350ms ease;
  transition: background 350ms ease;
  width: 49%;
  background-size: 0;
  margin: 0;
  border: none;
}
@media screen and (min-width: 56.25em) {
  .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-1, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-2, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-3, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-4 {
    width: 25%;
  }
}
.content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-1 a, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-2 a, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-3 a, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-4 a {
  padding: 30px 0 35px;
}
@media screen and (max-width: 47.9375em) {
  .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-1 a, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-2 a, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-3 a, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-4 a {
    padding: 20px 30px;
  }
}
.content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-1 img, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-2 img, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-3 img, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-4 img {
  max-width: 220px;
  padding: 20px;
}
.content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-1 h5, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-2 h5, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-3 h5, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-4 h5 {
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  font-family: "proxima-nova", "helvetica", sans-serif;
}
@media screen and (max-width: 47.9375em) {
  .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-1 h5, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-2 h5, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-3 h5, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-4 h5 {
    font-size: 14px;
  }
}
.content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-1:hover, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-1:focus, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-2:hover, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-2:focus, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-3:hover, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-3:focus, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-4:hover, .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-4:focus {
  background: url(/assets/images/icon-hover.png) transparent center center no-repeat;
  background-size: contain;
}

.sidebar .content-block .text-only {
  padding: 30px;
}

/* buttons */
.button {
  background: none;
  padding: 0.75rem 2.25rem;
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: 600;
  font-family: "proxima-nova", "helvetica", sans-serif;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  margin: 0;
}
.button:hover, .button:focus, .button.selected {
  outline: none;
  text-decoration: none;
}
@media screen and (max-width: 47.9375em) {
  .button {
    font-size: 0.875rem;
  }
}
.button.default {
  background: #3AA2CB;
  /* Old browsers */
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  line-height: normal;
  font-size: 0.8125rem;
  border: 2px solid #3AA2CB;
}
.button.default:hover, .button.default:focus {
  background: white;
  color: #3AA2CB;
  text-decoration: none;
}
.button.default.invert {
  border: 2px solid #3AA2CB;
  background: transparent;
  color: #3AA2CB;
  font-weight: 600;
}
.button.default.invert:hover, .button.default.invert:focus {
  border: 2px solid #3AA2CB;
  background: #3AA2CB;
  color: white;
}
.button.primary {
  background: #ffd400;
  /* Old browsers */
  color: #806a00;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  line-height: normal;
  font-size: 0.8125rem;
  border: 2px solid #ffd400;
}
.button.primary:hover, .button.primary:focus {
  background: #ffd400;
  border: 2px solid #ffd400;
  color: #333232;
  text-decoration: none;
}
.button.primary.invert {
  border: 2px solid #ffd400;
  background: transparent;
  color: #ffd400;
  font-weight: 600;
}
.button.primary.invert:hover, .button.primary.invert:focus {
  border: 2px solid #ffd400;
  background: #ffd400;
  color: #333232;
}
.button.secondary {
  background: black;
  /* Old browsers */
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  line-height: normal;
  font-size: 0.8125rem;
  border: 2px solid black;
}
.button.secondary:hover, .button.secondary:focus {
  background: #49A970;
  color: white;
  text-decoration: none;
}
.button.secondary.invert {
  border: 2px solid black;
  background: transparent;
  color: black;
  font-weight: 600;
}
.button.secondary.invert:hover, .button.secondary.invert:focus {
  border: 2px solid #49A970;
  background: #49A970;
  color: white;
}
.button.radius {
  border-radius: 50px;
}
.button.arrow {
  padding-right: 3.125rem;
}
.button.arrow:after {
  content: "";
  font-family: fontawesome;
  display: block;
  position: absolute;
  right: 0.9375rem;
  top: 50%;
  margin-top: -0.875rem;
  font-size: 1.5rem;
  line-height: normal;
  -webkit-transition: right 500ms ease;
  -moz-transition: right 500ms ease;
  -ms-transition: right 500ms ease;
  -o-transition: right 500ms ease;
  transition: right 500ms ease;
}
.button.arrow:hover:after, .button.arrow:focus:after {
  right: 0.625rem;
}
.button .postfix {
  line-height: normal;
}

div.button.arrow:after {
  margin-top: -0.75rem;
}

/* btn groups */
.button-group {
  margin-left: -0.9375rem;
  margin-right: -1.25rem;
  margin-bottom: 0;
}
@media screen and (min-width: 48em) {
  .button-group {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.button-group li .button {
  font-size: 0.625rem;
  padding: 0.625rem;
}
@media screen and (min-width: 48em) {
  .button-group li .button {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
}

.panel-cta-wrapper {
  background: url(/assets/images/Background_How-We-Help_Donation-Background_1600x680.jpg) no-repeat white left center;
  background-size: cover;
  height: 650px;
  background-position: 25% center;
}
@media screen and (max-width: 47.9375em) {
  .panel-cta-wrapper {
    background-position: 30% center;
    height: auto;
  }
}
.panel-cta-wrapper .text-wrapper {
  padding-left: 100px;
  display: table;
  height: 100%;
  padding-right: 1rem;
}
@media screen and (max-width: 47.9375em) {
  .panel-cta-wrapper .text-wrapper {
    background: rgba(255, 255, 255, 0.61);
    width: 100%;
    padding: 2rem 35%;
    padding-right: 1rem;
  }
}
.panel-cta-wrapper .text-wrapper h3 {
  font-family: "proxima-nova", "helvetica", sans-serif;
  font-weight: 900;
  color: #4d4b4b;
  line-height: 1.2;
  font-size: 36px;
  margin-bottom: 25px;
}
@media screen and (max-width: 47.9375em) {
  .panel-cta-wrapper .text-wrapper h3 {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
.panel-cta-wrapper .text-wrapper h3 small {
  font-size: 65%;
  display: block;
  font-weight: 600;
  color: #4d4b4b;
  line-height: 1.4;
}
.panel-cta-wrapper .text-wrapper .button {
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
  margin-top: 10px;
}
.panel-cta-wrapper.icons {
  background: url(/assets/images/Background_How-We-Help_Ways-to-Help-Background-Pattern_367x214.png) repeat #3AA2CB 0 0;
  background-size: 220px;
  text-align: center;
  height: auto;
  padding-bottom: 60px;
}
@media screen and (max-width: 47.9375em) {
  .panel-cta-wrapper.icons {
    padding-bottom: 30px;
  }
}
.panel-cta-wrapper.icons h3 {
  color: white;
  margin: 0;
  padding: 50px 1rem 40px;
  font-size: 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .panel-cta-wrapper.icons h3 {
    padding: 30px 1rem 0;
    font-size: 28px;
  }
}
.panel-cta-wrapper.icons .icon-list {
  display: table;
  height: 100%;
  width: 100%;
  background: url(/assets/images/Content_How-We-Help_Divider_15x200-01.png) no-repeat center center transparent;
}
@media screen and (max-width: 47.9375em) {
  .panel-cta-wrapper.icons .icon-list .small-12 {
    padding: 0;
  }
}
.panel-cta-wrapper.icons .icon-list .icon-wrapper {
  display: inline-table;
  vertical-align: middle;
  text-align: center;
  background: url(/assets/images/transparent.png) transparent center center no-repeat;
  -webkit-transition: background 350ms ease;
  -moz-transition: background 350ms ease;
  -ms-transition: background 350ms ease;
  -o-transition: background 350ms ease;
  transition: background 350ms ease;
  width: 49%;
  padding: 30px 0 35px;
  background-size: 0;
}
@media screen and (max-width: 47.9375em) {
  .panel-cta-wrapper.icons .icon-list .icon-wrapper {
    padding: 20px 30px;
  }
}
.panel-cta-wrapper.icons .icon-list .icon-wrapper h5 {
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  font-family: "proxima-nova", "helvetica", sans-serif;
}
@media screen and (max-width: 47.9375em) {
  .panel-cta-wrapper.icons .icon-list .icon-wrapper h5 {
    font-size: 14px;
  }
}
.panel-cta-wrapper.icons .icon-list .icon-wrapper:hover, .panel-cta-wrapper.icons .icon-list .icon-wrapper:focus {
  background: url(/assets/images/icon-hover.png) transparent center center no-repeat;
  background-size: contain;
}

#footer {
  background: #333232;
}
#footer .content-block {
  padding-bottom: 0;
}
#footer .bottom-bar {
  text-align: center;
  padding-bottom: 1.25rem;
  background-size: 1600px;
}
@media screen and (min-width: 56.25em) {
  #footer .bottom-bar {
    padding: 0;
    padding-bottom: 1.875rem;
    background: none;
  }
}
#footer .bottom-bar a {
  font-family: "proxima-nova", "helvetica", sans-serif;
  color: white;
  display: inline-block;
  opacity: 0.8;
}
#footer .bottom-bar a:hover, #footer .bottom-bar a:focus {
  opacity: 1;
}
#footer .bottom-bar .legal-wrap {
  height: auto;
  padding: 1rem;
  display: table;
  width: 100%;
  padding-bottom: 60px;
}
@media screen and (min-width: 56.25em) {
  #footer .bottom-bar .legal-wrap {
    padding-top: 40px;
  }
}
#footer .bottom-bar .legal-wrap .row {
  display: table-cell !important;
  vertical-align: middle;
}
#footer .bottom-bar .legal-wrap .affiliate {
  max-width: 150px;
  margin: 20px auto 20px;
  opacity: 0.65;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  width: 100%;
  height: auto;
}
#footer .bottom-bar .legal-wrap .affiliate img {
  max-width: 150px;
}
#footer .bottom-bar .legal {
  text-align: center;
  float: none;
  display: block;
  width: 100%;
  margin: 1rem auto;
}
@media screen and (max-width: 56.1875em) {
  #footer .bottom-bar .legal {
    float: none;
    display: table;
  }
}
#footer .bottom-bar .legal p {
  color: #808079;
  font-family: "proxima-nova", "helvetica", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.125rem;
  text-transform: capitalize;
  margin: 0;
  padding: 5px 1rem;
}
@media screen and (max-width: 56.1875em) {
  #footer .bottom-bar .legal .phone {
    display: block;
  }
}
#footer .bottom-bar #credits {
  text-align: center;
  padding: 0;
  margin: 0 auto 1rem;
  display: table;
}
#footer .bottom-bar #credits a {
  color: #808079;
  font-family: "proxima-nova", "helvetica", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.125rem;
  font-style: normal;
}
#footer .bottom-bar #credits a span {
  color: white;
  opacity: 0.8;
}
#footer .bottom-bar #credits a:hover span, #footer .bottom-bar #credits a:focus span {
  text-decoration: underline;
  opacity: 1;
}
#footer .bottom-bar .footer-nav-wrap {
  background: none;
  display: block;
}
@media screen and (min-width: 56.25em) {
  #footer .bottom-bar .footer-nav-wrap {
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  }
}
@media screen and (min-width: 56.25em) {
  #footer .bottom-bar .footer-nav-wrap .row:first-of-type {
    display: table;
    width: 100%;
  }
  #footer .bottom-bar .footer-nav-wrap .row:first-of-type .footer-nav {
    display: table-cell;
    float: none;
    vertical-align: middle;
    width: 50%;
  }
  #footer .bottom-bar .footer-nav-wrap .row:first-of-type .social-wrap {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    float: none;
  }
  #footer .bottom-bar .footer-nav-wrap .row:first-of-type .social-wrap ul {
    list-style: none;
    margin: 0;
    padding: 0;
    float: right;
  }
}
#footer .bottom-bar .footer-nav {
  display: block;
  float: left;
}
@media screen and (max-width: 56.1875em) {
  #footer .bottom-bar .footer-nav {
    float: none;
    display: table;
    margin: 0 auto;
    background: #333232;
    width: 100%;
  }
}
#footer .bottom-bar .footer-nav .menu {
  margin: 0 auto;
}
@media screen and (max-width: 56.1875em) {
  #footer .bottom-bar .footer-nav .menu {
    display: table;
    padding: 0 1rem;
  }
}
#footer .bottom-bar .footer-nav .menu li {
  margin: 0;
}
@media screen and (max-width: 56.1875em) {
  #footer .bottom-bar .footer-nav .menu li {
    margin: 0;
    display: inline-block;
    vertical-align: middle;
  }
}
#footer .bottom-bar .footer-nav .menu li a {
  font-size: 0.8125rem;
  line-height: 1.125rem;
  font-weight: 600;
  color: #808079;
  font-family: "proxima-nova", "helvetica", sans-serif;
  text-transform: none;
  outline: none !important;
  display: table;
  padding: 1rem;
}
@media screen and (max-width: 56.1875em) {
  #footer .bottom-bar .footer-nav .menu li a {
    border: none;
    border-radius: 3px;
    background: black;
    /* The Fallback */
    background: rgba(0, 0, 0, 0.3);
    margin: 2px;
    padding: 5px 10px;
  }
}
#footer .bottom-bar .footer-nav .menu li a:hover, #footer .bottom-bar .footer-nav .menu li a:focus {
  color: white;
}
@media screen and (max-width: 56.1875em) {
  #footer .bottom-bar .footer-nav .menu li a:hover, #footer .bottom-bar .footer-nav .menu li a:focus {
    background: black;
    /* The Fallback */
    background: rgba(0, 0, 0, 0.4);
  }
}
#footer .bottom-bar .footer-nav .menu li.active a {
  color: white;
  opacity: 1;
  background: transparent;
}
@media screen and (max-width: 56.1875em) {
  #footer .bottom-bar .footer-nav .menu li:last-child a {
    border: none;
  }
}
#footer .bottom-bar .social-wrap {
  float: right;
  display: table;
}
@media screen and (max-width: 56.1875em) {
  #footer .bottom-bar .social-wrap {
    float: none;
    display: table;
    margin: 0 auto;
  }
}
#footer .bottom-bar .social-wrap ul {
  list-style: none;
  margin: 0;
  padding: 0 1rem;
}
#footer .bottom-bar .social-wrap ul li {
  display: inline-block;
}
#footer .bottom-bar .social-wrap ul li a {
  display: block;
  text-align: center;
  width: auto;
  color: #c0c0c0;
  padding: 1rem;
}
@media screen and (max-width: 56.1875em) {
  #footer .bottom-bar .social-wrap ul li a {
    border: none;
  }
}
#footer .bottom-bar .social-wrap ul li a i {
  font-size: 1.5rem;
}
#footer .bottom-bar .social-wrap ul li a:hover, #footer .bottom-bar .social-wrap ul li a:focus {
  background: transparent;
  color: white;
}
@media screen and (max-width: 56.1875em) {
  #footer .bottom-bar .social-wrap ul li a:hover, #footer .bottom-bar .social-wrap ul li a:focus {
    background: transparent;
    color: white;
  }
}
@media screen and (max-width: 56.1875em) {
  #footer .bottom-bar .social-wrap ul li:last-child a {
    border: none;
  }
}

#infinite-wrap .infinite-container {
  opacity: 0;
  -webkit-transition: opacity 500ms ease;
  -moz-transition: opacity 500ms ease;
  -ms-transition: opacity 500ms ease;
  -o-transition: opacity 500ms ease;
  transition: opacity 500ms ease;
}
#infinite-wrap .infinite-container.loaded {
  opacity: 1;
}
#infinite-wrap .infinite-container ~ .infinite-container .infinite-item {
  margin: 1.5rem 0 0;
  border-top: 3px solid #EFECE8;
}

.infinite-item {
  padding: 0 0 0;
  margin-top: 0;
}
.infinite-item ~ .infinite-item {
  margin: 1.5rem 0 0;
  border-top: 3px solid #EFECE8;
  padding: 1.5rem 0 0;
}
.infinite-item:last-child {
  margin-bottom: 30px;
}
.infinite-item strong, .infinite-item b {
  font-weight: 600;
}
.infinite-item h2 {
  margin: 0 !important;
}
.infinite-item h2 a {
  color: #4d4b4b;
}

header .postdate {
  color: #4d4b4b;
  border: 1px solid rgba(239, 236, 232, 0.65);
  margin: 1rem 0;
  padding: 0.3125rem 0;
  border-left: 0;
  border-right: 0;
}
header .postdate .right {
  float: right;
}
header .postdate .right a {
  color: #3AA2CB;
}

.feature-wrap {
  display: block;
  margin-bottom: 1rem;
  text-align: center;
  width: 100%;
}
.feature-wrap .featured {
  width: 100%;
  height: auto;
  max-width: 37.5rem;
  margin: 0 auto;
  display: block;
}

.more-link {
  width: 100%;
  margin-top: 1rem;
}
.more-link:hover, .more-link:focus {
  color: #ffd400;
}

.read-more {
  color: #3AA2CB !important;
  font-weight: 600;
  font-family: "proxima-nova", "helvetica", sans-serif;
  text-transform: uppercase;
  font-size: 0.8125rem;
  padding-left: 0.625rem;
}
.read-more:hover, .read-more:focus {
  text-decoration: underline;
  color: #277492 !important;
}

#disqus_thread {
  display: table;
  width: 100%;
  clear: both;
}

.feed {
  background: url(/assets/images/bricks_bg.jpg) repeat 0 0 #E9EAE4;
  background-size: 618px;
}
.feed .slick-dots {
  bottom: 23px;
}
.feed .slick-dots li {
  margin: 0;
}
.feed .slick-dots li button:before {
  color: white;
  font-size: 0.625rem;
  opacity: 1;
}
.feed .slick-dots li.slick-active button:before {
  color: #DE352C;
}
.feed header {
  text-align: center;
  padding: 40px 20px 25px;
}
@media screen and (max-width: 47.9375em) {
  .feed header {
    padding: 30px 20px 20px;
  }
}
.feed header h3 {
  margin: 0;
  font-size: 2.25rem;
}
@media screen and (max-width: 47.9375em) {
  .feed header h3 {
    font-size: 1.5rem;
  }
}
.feed .post-slider {
  padding-bottom: 40px;
  margin-bottom: 0 !important;
}
.feed .post-slider .post {
  background: white;
  position: relative;
  display: table;
  margin: 10px 5% 25px;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0);
  outline: none !important;
  overflow: hidden;
  width: 90%;
}
.feed .post-slider .post .feature-wrap {
  margin: 0;
}
.feed .post-slider .post .postcats {
  display: block;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffd400+0,ffffff+100 */
  background: #ffd400;
  /* Old browsers */
  background: -moz-linear-gradient(left, #ffd400 0%, white 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #ffd400 0%, white 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #ffd400 0%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffd400", endColorstr="#ffffff",GradientType=1 );
  /* IE6-9 */
  color: #333232;
  text-transform: uppercase;
  padding: 5px 1rem;
  font-size: 0.8125rem;
  line-height: 1.2;
}
.feed .post-slider .post .posttitle {
  display: block;
  color: #333232;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 1.125rem;
  line-height: 1.3;
  padding: 1rem;
  padding-bottom: 45px;
}
.feed .post-slider .post .postdate {
  display: block;
  text-align: right;
  margin-left: 7%;
  border-top: 1px solid #EBEBEB;
  color: #999999;
  padding: 5px;
  font-size: 0.8125rem;
  line-height: normal;
  font-style: italic;
  position: absolute;
  width: 93%;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: white;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  transition: all 350ms ease;
}
.feed .post-slider .post .arrow {
  background: #71379A;
  display: block;
  z-index: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  text-align: center;
  padding: 1px 0;
  color: white;
  font-style: normal;
  font-size: 1rem;
}
.feed .post-slider .post:hover, .feed .post-slider .post:focus {
  cursor: pointer;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.85);
}
.feed .post-slider .post:hover .posttitle, .feed .post-slider .post:focus .posttitle {
  color: #3AA2CB;
}
.feed .post-slider .post:hover .postdate, .feed .post-slider .post:focus .postdate {
  right: 40px;
}

.newsletter {
  padding: 0 1rem 60px;
}
.newsletter .form-wrapper {
  background: rgba(0, 0, 0, 0.25);
}
.newsletter .form-wrapper .form-inner-wrapper {
  display: table;
  margin: 0 auto;
  padding: 1rem;
}
.newsletter .form-wrapper .form-inner-wrapper h4 {
  font-family: "proxima-nova", "helvetica", sans-serif;
  color: white;
  display: table-cell;
  vertical-align: middle;
}
@media screen and (max-width: 47.9375em) {
  .newsletter .form-wrapper .form-inner-wrapper h4 {
    display: block;
    text-align: center;
  }
}
.newsletter .form-wrapper .form-inner-wrapper .form {
  display: table-cell;
  vertical-align: middle;
  padding-left: 15px;
}
@media screen and (max-width: 47.9375em) {
  .newsletter .form-wrapper .form-inner-wrapper .form {
    display: table;
    margin: 0 auto;
    min-width: 0;
    padding-left: 0;
  }
}
.newsletter .form-wrapper .form-inner-wrapper .form .BBFormContainer {
  padding: 0;
  min-width: 350px;
}
@media screen and (max-width: 47.9375em) {
  .newsletter .form-wrapper .form-inner-wrapper .form .BBFormContainer {
    min-width: 0;
  }
}
.newsletter .form-wrapper .form-inner-wrapper .form .BBFormContainer .BBFormTextbox {
  margin: 0;
}
@media screen and (max-width: 47.9375em) {
  .newsletter .form-wrapper .form-inner-wrapper .form .BBFormContainer .BBFormTextbox {
    max-width: 150px;
  }
}
.newsletter .form-wrapper .form-inner-wrapper .form .BBFormContainer .BBFormSubmitbutton {
  padding: 10px 20px 8px;
  border-radius: 0 3px 3px 0px;
  box-shadow: none;
  outline: none !important;
}
.newsletter .form-wrapper .form-inner-wrapper .form .BBFormSection {
  margin: 0;
}
.newsletter .form-wrapper .form-inner-wrapper .form .BBFormSection fieldset legend {
  display: none;
}
.newsletter .form-wrapper .form-inner-wrapper .form .BBFormContainer .BBFormFieldContainer {
  margin: 0;
}
.newsletter .form-wrapper .form-inner-wrapper .form .BBFormButtonRow {
  margin: 0;
}
.newsletter .form-wrapper .form-inner-wrapper .form .BBFormContainer .BBFormSection fieldset > div {
  float: left;
}

@media screen and (max-width: 47.9375em) {
  #homepage .content-block .slider.slick-dotted .slide .text-wrapper .inner-txt-wrap .text p {
    font-size: 1.25rem;
  }
}

#facility .default.full-width .main {
  padding-top: 40px;
}
@media screen and (max-width: 47.9375em) {
  #facility .default.full-width .main {
    padding-top: 0;
  }
}
#facility .default.full-width .main .highlightPanel .button {
  margin-top: 1rem;
}
@media screen and (max-width: 47.9375em) {
  #facility .default.full-width .main .highlightPanel {
    text-align: center;
  }
}
@media screen and (max-width: 47.9375em) {
  #facility .content-block .panel-block.single.hasbutton .highlightPanel .text-wrap h4 {
    text-align: center;
  }
}

#affiliations .content-block .text-with-image .fourth .image-wrapper, #partnerships .content-block .text-with-image .fourth .image-wrapper {
  background: transparent !important;
  background-image: none !important;
}
#affiliations .content-block .text-with-image .fourth .image-wrapper .image, #partnerships .content-block .text-with-image .fourth .image-wrapper .image {
  opacity: 1;
  visibility: visible;
  padding: 2rem;
  padding-right: 0;
}
@media screen and (max-width: 47.9375em) {
  #affiliations .content-block .text-with-image .fourth .image-wrapper .image, #partnerships .content-block .text-with-image .fourth .image-wrapper .image {
    padding: 0;
  }
}
#affiliations .content-block .text-with-image .fourth .image-wrapper .image .blazy-wrap, #partnerships .content-block .text-with-image .fourth .image-wrapper .image .blazy-wrap {
  padding: 2rem;
  background: white;
}
#affiliations .content-block .text-with-image .fourth .image-wrapper .image .blazy-wrap img, #partnerships .content-block .text-with-image .fourth .image-wrapper .image .blazy-wrap img {
  max-width: 200px;
  margin: 0 auto;
  display: block;
}

#videos .content-block .video {
  max-width: 80%;
  margin: 3rem auto;
  width: 100%;
  height: auto;
}

#staff .content-block .cards {
  padding: 60px 0;
}

.content-block.stepped .panel-block .highlightPanel .text-wrap h4 {
  color: white;
  font-weight: bold;
}
.content-block.stepped .panel-block .highlightPanel .text-wrap .inline-list > li {
  width: 32%;
  vertical-align: top;
  border: none;
}
@media screen and (max-width: 47.9375em) {
  .content-block.stepped .panel-block .highlightPanel .text-wrap .inline-list > li {
    width: 100%;
  }
}
.content-block.stepped .panel-block .highlightPanel .text-wrap .inline-list > li span {
  text-align: center;
  text-transform: none;
  font-size: 20px;
  line-height: 1.5;
  font-family: "proxima-nova", "helvetica", sans-serif;
  font-weight: normal;
}

.donations .donate-form {
  background: rgba(255, 212, 3, 0.1);
  padding: 0;
  margin: 2rem;
  border-radius: 7px;
  box-shadow: 0 6px 5px rgba(55, 34, 70, 0.19);
  border-top: 5px solid #72379a;
}
.donations .BBFormSectionHeading label.BBFormFieldLabelEdit {
  font-size: 21px;
  font-weight: bold;
  opacity: 0.75;
}
.donations .content-block .form {
  padding: 0;
}
.donations .BBFormContainer {
  padding: 20px;
}
.donations .image {
  padding: 30px 45px;
  padding-bottom: 0;
}

.BBFormContainer .BBDFormSectionComments .BBFormFieldLabel {
  margin-left: 0 !important;
}

.BBFormContainer .BBDFormSectionComments .BBFormTextArea {
  margin-left: 0 !important;
}

@media screen and (max-width: 47.9375em) {
  #staff .content-block .cards .card .text-wrapper {
    background: white;
    display: table;
    width: 100%;
  }
  #staff .content-block .cards .card .image {
    display: block;
  }
  #staff .content-block .cards .card .headline {
    background: #ffd400;
    background: -webkit-linear-gradient(left, #ffd400 0%, white 100%);
    background: linear-gradient(to right, #ffd400 0%, white 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffd400", endColorstr="#ffffff",GradientType=1 );
    display: table;
    width: 100%;
    text-align: center;
    padding: 10px 15px;
  }
  #staff .content-block .cards .card .headline h3 {
    color: #333232;
    text-align: center;
    font-family: "Life Savers", cursive, serif;
    font-size: 1.8125rem;
    line-height: normal;
    font-weight: bold;
    margin: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  #staff .content-block .cards .card .headline h3::after {
    content: none;
    display: none;
    font-family: fontawesome;
    padding-left: 1rem;
  }
  #staff .content-block .cards .card .text {
    padding: 25px 0;
    display: block;
  }
}

#downloads .content-block .panel-block.single .highlightPanel .text-wrap h4 {
  color: white;
}

#item-donations .download {
  border: none;
  padding-top: 0;
  padding-bottom: 0;
}

#faq .content-block .text-only {
  padding: 20px 50px;
}
#faq .content-block .text-only:first-child {
  padding-top: 30px;
}

#how-you-can-help .text a {
  color: #ffd400;
}

#contact .donations .content-block .form {
  padding: 2rem 2rem 2rem;
}

#events .infinite-item h2 a:hover, #events .infinite-item h2 a:focus {
  color: #ffd400;
}
#events .infinite-item .feature-wrap img {
  width: auto;
  height: auto;
}
#events .event.donations .donate-form {
  margin: 2rem 0;
}
@media screen and (min-width: 48em) {
  #events .event .main h1 {
    font-size: 3rem;
    line-height: 1.3;
  }
}

.nav-wrap #search-box .inner-search {
  width: 100%;
}

.nav-wrap #search-box .inner-search #search-close {
  max-width: 31.25rem;
  margin: 0 auto;
  margin-bottom: 0.9375rem;
}

.Safari input, .Safari textarea, .Safari keygen, .Safari select, .Safari button, .Safari meter, .Safari progress {
  -webkit-appearance: none;
}

.Explorer.Explorer9 .js-off-canvas-exit {
  display: none !important;
}
@media screen and (min-width: 100em) {
  .Explorer.Explorer9 .hero-wrap .hero-text {
    position: absolute;
  }
}
.Explorer .off-canvas-wrapper .off-canvas .right-off-canvas-toggle-wrap .right-off-canvas-toggle {
  display: none;
}
.Explorer .off-canvas-wrapper .off-canvas.is-open .right-off-canvas-toggle-wrap .right-off-canvas-toggle {
  display: block;
}
.Explorer#career-opportunities .content-block .cards .two.card {
  width: 49%;
}
.Explorer#career-opportunities .content-block .cards .two.card .text-wrapper {
  padding-right: 0;
}
.Explorer#career-opportunities .content-block .cards .two.card .inner-txt-wrap {
  width: 100%;
  display: block;
}
.Explorer#career-opportunities .content-block .cards .two.card .headline {
  padding-right: 0;
}
.Explorer#career-opportunities .content-block .panel-block .highlightPanel .text-wrap .inline-list > li img {
  display: block;
}
@media screen and (min-width: 56.25em) {
  .Explorer#career-opportunities .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-1, .Explorer#career-opportunities .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-2, .Explorer#career-opportunities .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-3, .Explorer#career-opportunities .content-block.icons .panel-block .highlightPanel .text-wrap .inline-list .item-4 {
    width: 24%;
  }
}
.Explorer .feed .post-slider .post {
  display: block;
}

/*# sourceMappingURL=app.css.map */
