/******************************************************************
	
Stylesheet: Main Stylesheet

Here's where the magic happens. Here is where you import
all of your Sass files so they can compile into one
CSS file. 

******************************************************************/
/******************************************************************

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features:
Mixins & Constants.

******************************************************************/
/*********************
TOOLS
*********************/
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/*********************
COLORS
*********************/
/*********************
TYPOGRAPHY
*********************/
span.amp {
  font-family: Baskerville, 'Goudy Old Style', Palatino, 'Book Antiqua', serif !important;
  font-style: italic;
}

/*********************
TRUNCATE TEXT
*********************/
/*********************
CSS3 GRADIENTS
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/* *****************
Convert PX units to REMs and add px fallback of property.
Ex: @include rem(line-height, 25px);
*******************/
/* *****************
DROPSHADOWS
*******************/
/********************* 
SPRITESHEETS
*********************/
/*********************
BOX SIZING / BORDER RADIUS
*********************/
/*********************
LONG TEXT SHADOW
*********************/
/*********************
ROUNDED BOX
*********************/
/*********************
KEYFRAMES
*********************/
/*********************
TRANSFORM
*********************/
/**
 * Foundation for Sites by ZURB
 * Version 6.2.0
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
.slide-in-down.mui-enter,
.slide-in-left.mui-enter,
.slide-in-up.mui-enter,
.slide-in-right.mui-enter,
.slide-out-down.mui-leave,
.slide-out-right.mui-leave,
.slide-out-up.mui-leave,
.slide-out-left.mui-leave,
.fade-in.mui-enter,
.fade-out.mui-leave,
.hinge-in-from-top.mui-enter,
.hinge-in-from-right.mui-enter,
.hinge-in-from-bottom.mui-enter,
.hinge-in-from-left.mui-enter,
.hinge-in-from-middle-x.mui-enter,
.hinge-in-from-middle-y.mui-enter,
.hinge-out-from-top.mui-leave,
.hinge-out-from-right.mui-leave,
.hinge-out-from-bottom.mui-leave,
.hinge-out-from-left.mui-leave,
.hinge-out-from-middle-x.mui-leave,
.hinge-out-from-middle-y.mui-leave,
.scale-in-up.mui-enter,
.scale-in-down.mui-enter,
.scale-out-up.mui-leave,
.scale-out-down.mui-leave,
.spin-in.mui-enter,
.spin-out.mui-leave,
.spin-in-ccw.mui-enter,
.spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
}

.slide-in-down.mui-enter {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  opacity: 0;
  transition-property: opacity;
}

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

.fade-out.mui-leave {
  opacity: 1;
  transition-property: opacity;
}

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

.hinge-in-from-top.mui-enter {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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: spin-cw-1turn;
}

@keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn);
  }

  100% {
    transform: rotate(0);
  }
}

.spin-ccw {
  animation-name: spin-cw-1turn;
}

@keyframes spin-cw-1turn {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(1turn);
  }
}

.wiggle {
  animation-name: wiggle-7deg;
}

@keyframes wiggle-7deg {

  40%,
  50%,
  60% {
    transform: rotate(7deg);
  }

  35%,
  45%,
  55%,
  65% {
    transform: rotate(-7deg);
  }

  0%,
  30%,
  70%,
  100% {
    transform: rotate(0);
  }
}

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

/**
   * 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=75em&xlarge=90em";
}

html {
  font-size: 10px;
  box-sizing: border-box;
}

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

body {
  padding: 0;
  margin: 0;
  font-family: "adobe-garamond-pro", Georgia, Times, Times New Roman, serif;
  font-weight: normal;
  line-height: 1.5;
  color: #000000;
  background: #fefefe;
  -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;
}

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

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

.row {
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
}

.row::before,
.row::after {
  content: ' ';
  display: table;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-order: 1;
  order: 1;
}

.row::after {
  clear: both;
}

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

.row .row {
  margin-left: -1rem;
  margin-right: -1rem;
}

@media screen and (min-width: 48em) {
  .row .row {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}

.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: 1rem;
  padding-right: 1rem;
}

@media screen and (min-width: 48em) {

  .column,
  .columns {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

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

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

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

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

.small-2 {
  width: 16.66667%;
}

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

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

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

.small-3 {
  width: 25%;
}

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

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

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

.small-4 {
  width: 33.33333%;
}

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

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

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

.small-5 {
  width: 41.66667%;
}

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

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

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

.small-6 {
  width: 50%;
}

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

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

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

.small-7 {
  width: 58.33333%;
}

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

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

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

.small-8 {
  width: 66.66667%;
}

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

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

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

.small-9 {
  width: 75%;
}

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

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

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

.small-10 {
  width: 83.33333%;
}

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

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

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

.small-11 {
  width: 91.66667%;
}

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

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

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

.small-12 {
  width: 100%;
}

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

.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.33333%;
  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.66667%;
  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.28571%;
  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 {
  margin-left: 0;
  margin-right: 0;
}

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

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

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

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

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

  .medium-2 {
    width: 16.66667%;
  }

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

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

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

  .medium-3 {
    width: 25%;
  }

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

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

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

  .medium-4 {
    width: 33.33333%;
  }

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

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

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

  .medium-5 {
    width: 41.66667%;
  }

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

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

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

  .medium-6 {
    width: 50%;
  }

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

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

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

  .medium-7 {
    width: 58.33333%;
  }

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

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

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

  .medium-8 {
    width: 66.66667%;
  }

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

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

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

  .medium-9 {
    width: 75%;
  }

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

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

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

  .medium-10 {
    width: 83.33333%;
  }

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

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

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

  .medium-11 {
    width: 91.66667%;
  }

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

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

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

  .medium-12 {
    width: 100%;
  }

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

  .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.33333%;
    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.66667%;
    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.28571%;
    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 {
    margin-left: 0;
    margin-right: 0;
  }

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

  .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: 75em) {
  .large-1 {
    width: 8.33333%;
  }

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

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

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

  .large-2 {
    width: 16.66667%;
  }

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

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

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

  .large-3 {
    width: 25%;
  }

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

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

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

  .large-4 {
    width: 33.33333%;
  }

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

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

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

  .large-5 {
    width: 41.66667%;
  }

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

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

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

  .large-6 {
    width: 50%;
  }

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

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

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

  .large-7 {
    width: 58.33333%;
  }

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

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

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

  .large-8 {
    width: 66.66667%;
  }

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

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

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

  .large-9 {
    width: 75%;
  }

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

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

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

  .large-10 {
    width: 83.33333%;
  }

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

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

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

  .large-11 {
    width: 91.66667%;
  }

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

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

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

  .large-12 {
    width: 100%;
  }

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

  .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.33333%;
    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.66667%;
    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.28571%;
    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 {
    margin-left: 0;
    margin-right: 0;
  }

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

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

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: "adobe-garamond-pro", Georgia, Times, Times New Roman, serif;
  font-weight: normal;
  font-style: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
  margin-top: 0;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  color: #8E9192;
  line-height: 0;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.6rem;
}

h5 {
  font-size: 1.6rem;
}

h6 {
  font-size: 1.4rem;
}

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

  h2 {
    font-size: 2.8rem;
  }

  h3 {
    font-size: 2.4rem;
  }

  h4 {
    font-size: 2rem;
  }

  h5 {
    font-size: 2rem;
  }

  h6 {
    font-size: 2rem;
  }
}

a {
  color: #2199e8;
  text-decoration: underline;
  line-height: inherit;
  cursor: pointer;
}

a:hover,
a:focus {
  color: #1585cf;
}

a img {
  border: 0;
}

hr {
  max-width: 120rem;
  height: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 1px solid #8E9192;
  border-left: 0;
  margin: 2rem 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,
ol ul,
ul ol,
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;
  border-left: 1px solid #8E9192;
}

blockquote,
blockquote p {
  line-height: 1.6;
  color: #000000;
}

cite {
  display: block;
  font-size: 1.3rem;
  color: #5D6768;
}

cite:before {
  content: '\2014 \0020';
}

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

code {
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #000000;
  background-color: #CED0D0;
  border: 1px solid #8E9192;
  padding: 0.2rem 0.5rem 0.1rem;
}

kbd {
  padding: 0.2rem 0.4rem 0;
  margin: 0;
  background-color: #CED0D0;
  color: #000000;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
}

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

.lead {
  font-size: 12.5px;
  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: 75em) {
  .large-text-left {
    text-align: left;
  }

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

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

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

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

@media print {
  * {
    background: transparent !important;
    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 #5D6768;
    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: 0;
  padding: 0.85em 1em;
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  background-color: #29C3EC;
  color: #fefefe;
}

[data-whatinput='mouse'] .button {
  outline: 0;
}

.button:hover,
.button:focus {
  background-color: #12a5cc;
  color: #fefefe;
}

.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: #2199e8;
  color: #fefefe;
}

.button.primary:hover,
.button.primary:focus {
  background-color: #147cc0;
  color: #fefefe;
}

.button.secondary {
  background-color: #777;
  color: #fefefe;
}

.button.secondary:hover,
.button.secondary:focus {
  background-color: #5f5f5f;
  color: #fefefe;
}

.button.success {
  background-color: #3adb76;
  color: #fefefe;
}

.button.success:hover,
.button.success:focus {
  background-color: #22bb5b;
  color: #fefefe;
}

.button.warning {
  background-color: #ffae00;
  color: #fefefe;
}

.button.warning:hover,
.button.warning:focus {
  background-color: #cc8b00;
  color: #fefefe;
}

.button.alert {
  background-color: #ec5840;
  color: #fefefe;
}

.button.alert:hover,
.button.alert:focus {
  background-color: #da3116;
  color: #fefefe;
}

.button.hollow {
  border: 1px solid #2199e8;
  color: #2199e8;
}

.button.hollow,
.button.hollow:hover,
.button.hollow:focus {
  background-color: transparent;
}

.button.hollow:hover,
.button.hollow:focus {
  border-color: #0c4d78;
  color: #0c4d78;
}

.button.hollow.primary {
  border: 1px solid #2199e8;
  color: #2199e8;
}

.button.hollow.primary:hover,
.button.hollow.primary:focus {
  border-color: #0c4d78;
  color: #0c4d78;
}

.button.hollow.secondary {
  border: 1px solid #777;
  color: #777;
}

.button.hollow.secondary:hover,
.button.hollow.secondary:focus {
  border-color: #3c3c3c;
  color: #3c3c3c;
}

.button.hollow.success {
  border: 1px solid #3adb76;
  color: #3adb76;
}

.button.hollow.success:hover,
.button.hollow.success:focus {
  border-color: #157539;
  color: #157539;
}

.button.hollow.warning {
  border: 1px solid #ffae00;
  color: #ffae00;
}

.button.hollow.warning:hover,
.button.hollow.warning:focus {
  border-color: #805700;
  color: #805700;
}

.button.hollow.alert {
  border: 1px solid #ec5840;
  color: #ec5840;
}

.button.hollow.alert:hover,
.button.hollow.alert:focus {
  border-color: #881f0e;
  color: #881f0e;
}

.button.disabled,
.button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}

.button.dropdown::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4em;
  border-color: #fefefe 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;
}

.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: 74.9375em) {
  .hide-for-medium-only {
    display: none !important;
  }
}

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

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

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

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

@media screen and (max-width: 74.9375em),
screen and (min-width: 90em) {
  .show-for-large-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;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-order: 1;
  order: 1;
}

.clearfix::after {
  clear: both;
}

.button-group {
  margin-bottom: 1rem;
  font-size: 0;
}

.button-group::before,
.button-group::after {
  content: ' ';
  display: table;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-order: 1;
  order: 1;
}

.button-group::after {
  clear: both;
}

.button-group .button {
  margin: 0;
  font-size: 0.9rem;
  float: left;
}

.button-group .button:not(:last-child) {
  border-right: 1px solid #fefefe;
}

.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(3),
.button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3)~.button {
  display: inline-block;
  width: calc(33.33333% - 1px);
  margin-right: 1px;
}

.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(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(6),
.button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6)~.button {
  display: inline-block;
  width: calc(16.66667% - 1px);
  margin-right: 1px;
}

.button-group.primary .button {
  background-color: #2199e8;
  color: #fefefe;
}

.button-group.primary .button:hover,
.button-group.primary .button:focus {
  background-color: #147cc0;
  color: #fefefe;
}

.button-group.secondary .button {
  background-color: #777;
  color: #fefefe;
}

.button-group.secondary .button:hover,
.button-group.secondary .button:focus {
  background-color: #5f5f5f;
  color: #fefefe;
}

.button-group.success .button {
  background-color: #3adb76;
  color: #fefefe;
}

.button-group.success .button:hover,
.button-group.success .button:focus {
  background-color: #22bb5b;
  color: #fefefe;
}

.button-group.warning .button {
  background-color: #ffae00;
  color: #fefefe;
}

.button-group.warning .button:hover,
.button-group.warning .button:focus {
  background-color: #cc8b00;
  color: #fefefe;
}

.button-group.alert .button {
  background-color: #ec5840;
  color: #fefefe;
}

.button-group.alert .button:hover,
.button-group.alert .button:focus {
  background-color: #da3116;
  color: #fefefe;
}

.button-group.stacked .button,
.button-group.stacked-for-small .button,
.button-group.stacked-for-medium .button {
  width: 100%;
}

.button-group.stacked .button:not(:last-child),
.button-group.stacked-for-small .button:not(:last-child),
.button-group.stacked-for-medium .button:not(:last-child) {
  margin-right: 0;
}

@media screen and (min-width: 48em) {
  .button-group.stacked-for-small .button {
    width: auto;
  }

  .button-group.stacked-for-small .button:not(:last-child) {
    margin-right: 1px;
  }
}

@media screen and (min-width: 75em) {
  .button-group.stacked-for-medium .button {
    width: auto;
  }

  .button-group.stacked-for-medium .button:not(:last-child) {
    margin-right: 1px;
  }
}

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

.dropdown-pane {
  background-color: #fefefe;
  border: 1px solid #8E9192;
  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: #2199e8 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 #2199e8 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 #2199e8;
  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: #2199e8 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 #2199e8 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 #2199e8;
    border-left-style: solid;
    border-right-width: 0;
  }
}

@media screen and (min-width: 75em) {
  .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: #2199e8 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 #2199e8 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 #2199e8;
    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%;
}

.is-dropdown-submenu-parent.opens-left .is-dropdown-submenu {
  left: auto;
  right: 0;
  top: 100%;
}

.is-dropdown-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  z-index: 1;
  background: #fefefe;
  border: 1px solid #8E9192;
}

.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 #2199e8 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 #2199e8;
  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:not(.js-dropdown-nohover)>.is-dropdown-submenu-parent:hover>.is-dropdown-submenu,
.is-dropdown-submenu.js-dropdown-active {
  display: block;
}

.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: #2199e8;
  color: #fefefe;
}

.label.secondary {
  background: #777;
  color: #fefefe;
}

.label.success {
  background: #3adb76;
  color: #fefefe;
}

.label.warning {
  background: #ffae00;
  color: #fefefe;
}

.label.alert {
  background: #ec5840;
  color: #fefefe;
}

.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 {
  vertical-align: middle;
}

.menu>li>a i+span,
.menu>li>a img+span {
  vertical-align: middle;
}

.menu>li>a img,
.menu>li>a i {
  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: 75em) {
  .menu.large-horizontal>li {
    display: table-cell;
  }

  .menu.large-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;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-order: 1;
  order: 1;
}

.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 {
  display: block;
  margin: 0 auto 0.25rem;
}

.menu.nested {
  margin-left: 1rem;
}

.menu .active>a {
  color: #fefefe;
  background: #2199e8;
}

.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: #fefefe;
  top: 0;
  left: 0;
  box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe;
}

.menu-icon:hover::after {
  background: #8E9192;
  box-shadow: 0 7px 0 #8E9192, 0 14px 0 #8E9192;
}

.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: #000000;
  top: 0;
  left: 0;
  box-shadow: 0 7px 0 #000000, 0 14px 0 #000000;
}

.menu-icon.dark:hover::after {
  background: #5D6768;
  box-shadow: 0 7px 0 #5D6768, 0 14px 0 #5D6768;
}

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;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-order: 1;
  order: 1;
}

.off-canvas-wrapper-inner::after {
  clear: both;
}

.off-canvas-content,
.off-canvas-content {
  min-height: 100%;
  background: #fefefe;
  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(254, 254, 254, 0.25);
  cursor: pointer;
  transition: background 0.5s ease;
}

.off-canvas {
  position: absolute;
  background: #CED0D0;
  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: 75em) {
  .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;
  }
}

table {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0;
}

table thead,
table tbody,
table tfoot {
  border: none;
  background-color: #fefefe;
}

table caption {
  font-weight: bold;
  padding: 0.8rem 1rem 0.8rem;
}

table thead,
table tfoot {
  background: #000000;
  color: #fefefe;
}

table thead tr,
table tfoot tr {
  background: transparent;
}

table thead th,
table thead td,
table tfoot th,
table tfoot td {
  padding: 0.8rem 1rem 0.8rem;
  font-weight: bold;
  text-align: left;
}

table tbody tr:nth-child(even) {
  background-color: #fefefe;
}

table tbody th,
table tbody td {
  padding: 0.8rem 1rem 0.8rem;
}

@media screen and (max-width: 74.9375em) {
  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: #f9f9f9;
}

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

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

.table-scroll table {
  width: auto;
}

.title-bar {
  background: #000000;
  color: #fefefe;
  padding: 0.5rem;
}

.title-bar::before,
.title-bar::after {
  content: ' ';
  display: table;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-order: 1;
  order: 1;
}

.title-bar::after {
  clear: both;
}

.title-bar .menu-icon {
  margin-left: 0.25rem;
  margin-right: 0.5rem;
}

.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: #000000;
  top: 0;
  left: 0;
  box-shadow: 0 7px 0 #000000, 0 14px 0 #000000;
}

.menu-icon.dark:hover::after {
  background: #5D6768;
  box-shadow: 0 7px 0 #5D6768, 0 14px 0 #5D6768;
}

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

.tooltip {
  background-color: #29C3EC;
  color: #fefefe;
  font-size: 1.5rem;
  padding: 1.2rem 1.5rem;
  position: absolute;
  z-index: 10;
  line-height: 1.25;
  text-align: center;
  top: calc(100% + 0.6495rem);
  width: 25rem !important;
  border-radius: 0;
  font-family: "promixa";
  font-weight: "400";
  font-style: "r";
}

.tooltip::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  border-color: transparent transparent #29C3EC;
  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: #29C3EC 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 #29C3EC;
  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 #29C3EC 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;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-order: 1;
  order: 1;
}

.top-bar::after {
  clear: both;
}

.top-bar,
.top-bar ul {
  background-color: #CED0D0;
}

.top-bar input {
  width: 200px;
  margin-right: 1rem;
}

.top-bar .input-group-field {
  width: 100%;
  margin-right: 0;
}

.top-bar input.button {
  width: auto;
}

@media screen and (max-width: 47.9375em) {

  .stacked-for-small .top-bar-left,
  .stacked-for-small .top-bar-right {
    width: 100%;
  }
}

@media screen and (max-width: 74.9375em) {

  .stacked-for-medium .top-bar-left,
  .stacked-for-medium .top-bar-right {
    width: 100%;
  }
}

@media screen and (max-width: 89.9375em) {

  .stacked-for-large .top-bar-left,
  .stacked-for-large .top-bar-right {
    width: 100%;
  }
}

.top-bar-left,
.top-bar-right {
  width: 100%;
}

@media screen and (min-width: 48em) {

  .top-bar-left,
  .top-bar-right {
    width: auto;
  }
}

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

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

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

/************************************************

Stylesheet: Main Stylesheet

*************************************************/
/*********************
GENERAL STYLES
*********************/
body {
  background-color: #2d3232;
}

/*********************
LINK STYLES
*********************/
a,
a:visited {
  color: #083266;
  font-family: "adobe-garamond-pro", Georgia, Times, Times New Roman, serif;
  /* font-weight: 700; */
  font-style: normal;
  box-sizing: border-box;
}

a:hover,
a:focus,
a:visited:hover,
a:visited:focus {
  color: #29C3EC;
  /* border-color: #29C3EC; */
  /* border-bottom: 1px solid #29C3EC; */
}

a:link,
a:visited:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

.has-tip {
  font-weight: 400;
  color: #083266;
  border-bottom: 1px dotted #083266;
}

.has-tip:before {
  content: " ";
  width: 26px;
  width: 2.6rem;
  height: 26px;
  height: 2.6rem;
  display: inline-block;
  vertical-align: middle;
  float: right;
  margin-left: 5px;
  background-image: url(../images/spritesheet.svg);
  background-position: -100px -447px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.has-tip:hover {
  color: #083266;
  border-bottom: 1px dotted #29C3EC;
}

/*********************
TOOLTIP STYLES
*********************/
.tooltip {
  box-shadow: 3px 3px 8px 2px rgba(0, 0, 0, 0.25);
  font-family: "proxima-nova-alt", Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.tooltip.cat-1 {
  background-color: #97c848 !important;
}

.tooltip.cat-1::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  border-color: transparent transparent #97c848;
  border-bottom-style: solid;
  border-top-width: 0;
}

.tooltip.cat-2 {
  background-color: #5abc8a !important;
}

.tooltip.cat-2::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  border-color: transparent transparent #5abc8a;
  border-bottom-style: solid;
  border-top-width: 0;
}

.tooltip.cat-3 {
  background-color: #47956d !important;
}

.tooltip.cat-3::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  border-color: transparent transparent #47956d;
  border-bottom-style: solid;
  border-top-width: 0;
}

.tooltip.cat-4 {
  background-color: #f7b43c !important;
}

.tooltip.cat-4::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  border-color: transparent transparent #f7b43c;
  border-bottom-style: solid;
  border-top-width: 0;
}

.tooltip.cat-5 {
  background-color: #f18920 !important;
}

.tooltip.cat-5::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  border-color: transparent transparent #f18920;
  border-bottom-style: solid;
  border-top-width: 0;
}

.tooltip.cat-6 {
  background-color: #f16417 !important;
}

.tooltip.cat-6::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  border-color: transparent transparent #f16417;
  border-bottom-style: solid;
  border-top-width: 0;
}

.tooltip.cat-7 {
  background-color: #e1472e !important;
}

.tooltip.cat-7::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  border-color: transparent transparent #e1472e;
  border-bottom-style: solid;
  border-top-width: 0;
}

/*********************
ARROW STYLES
*********************/
.arrow {
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 14px;
}

.arrow.left {
  background-image: url(../images/spritesheet.svg);
  background-position: -50px 0;
  background-size: 150px 500px;
  background-repeat: no-repeat;
  margin: 0 5px 3px 0;
}

.arrow.right {
  background-image: url(../images/spritesheet.svg);
  background-position: -50px -100px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
  margin: 0 0 3px 5px;
}

.arrow.up {
  background-image: url(../images/spritesheet.svg);
  background-position: -50px -200px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
  width: 16px;
  height: 10px;
  margin: 0 0 0 3px;
}

.arrow.down {
  background-image: url(../images/spritesheet.svg);
  background-position: -50px -300px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
  width: 16px;
  height: 10px;
  margin: 0 0 0 3px;
}

.arrow.down.open {
  background-image: url(../images/spritesheet.svg);
  background-position: -50px -200px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
  width: 16px;
  height: 10px;
  margin: 0 0 0 3px;
}

/*********************
H1, H2, H3, H4, H5, P, UL/OL & IMG STYLES
*********************/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  font-family: "proxima-nova-alt", Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-top: 25px;
  margin-top: 2.5rem;
  margin-bottom: 18px;
  margin-bottom: 1.8rem;
  line-height: 1.3;
  color: #083266;
}

h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a {
  text-decoration: none;
}

p {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 15px;
  margin-bottom: 1.5rem;
}

p a:hover,
p a:focus {
  /* margin-bottom: -1px; */
}

blockquote {
  border-left: 0;
  margin: 0;
}

blockquote p {
  font-size: 18px;
  font-size: 1.8rem;
  padding-left: 50px;
  padding-left: 5rem;
  line-height: 1.5;
}

ul,
ol {
  margin-left: 40px;
  margin-left: 4rem;
  margin-bottom: 15px;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 47.9375em) {

  ul,
  ol {
    margin-left: 20px;
  }
}

ul>li,
ol>li {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 10px;
  margin-bottom: 1rem;
}

ul>li a:hover,
ul>li a:focus,
ol>li a:hover,
ol>li a:focus {
  margin-bottom: -1px;
}

ul>li ul,
ul>li ol,
ol>li ul,
ol>li ol {
  margin-top: 10px;
  margin-top: 1rem;
  margin-left: 40px;
  margin-left: 4rem;
}

@media screen and (max-width: 47.9375em) {

  ul>li ul,
  ul>li ol,
  ol>li ul,
  ol>li ol {
    margin-left: 20px;
  }
}

ul>li ul li,
ul>li ol li,
ol>li ul li,
ol>li ol li {
  margin-bottom: 7px;
  margin-bottom: 0.7rem;
}

.table {
  display: table;
  height: 100%;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
}

/*********************
HEADER STYLES
*********************/
.header ul.off-canvas-list li {
  list-style: none;
}

/*********************
NAVIGATION STYLES
*********************/
.top-bar {
  padding: 20px 0;
  padding: 2rem 0;
}

@media screen and (max-width: 47.9375em) {
  .top-bar {
    padding: 15px 0;
  }
}

.top-bar .title-area {
  z-index: 1;
}

.top-bar .header-logo {
  margin-right: 60px;
  margin-right: 6rem;
  width: 197px;
  width: 19.7rem;
  height: 84px;
  height: 8.4rem;
  background: url(../images/iisd-logo-header.svg) center left no-repeat;
  background-size: cover;
  display: inline-block;
}

@media screen and (max-width: 74.9375em) {
  .top-bar .header-logo {
    margin-right: 31px;
    width: 187px;
    height: 79px;
  }
}

@media screen and (max-width: 47.9375em) {
  .top-bar .header-logo {
    margin-right: 15px;
    width: 125px;
    height: 53px;
  }
}

.top-bar .header-unep-logo {
  width: 70px;
  width: 7rem;
  height: 84px;
  height: 8.4rem;
  background: url(../images/unep-logo-header.svg) center left no-repeat;
  background-size: cover;
  display: inline-block;
}

@media screen and (max-width: 74.9375em) {
  .top-bar .header-unep-logo {
    width: 66px;
    height: 79px;
  }
}

@media screen and (max-width: 47.9375em) {
  .top-bar .header-unep-logo {
    width: 44px;
    height: 53px;
  }
}

.top-bar .header-logo:hover,
.top-bar .header-logo:focus,
.top-bar .header-unep-logo:hover,
.top-bar .header-unep-logo:focus {
  text-decoration: none;
  border: none;
}

.off-canvas-list ul {
  margin-left: 0;
}

.off-canvas-list ul li a {
  border-bottom: 0px;
}

.off-canvas-list ul .dropdown {
  margin-left: 20px;
}

/*********************
POSTS & CONTENT STYLES
*********************/
.page-title .vcard {
  border: 0px;
  padding: 0px;
}

.entry-content img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.entry-content .alignleft,
.entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}

.entry-content .alignright,
.entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}

.entry-content .aligncenter,
.entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}

.entry-content video,
.entry-content object {
  max-width: 100%;
  height: auto;
}

.entry-content pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
  width: 100%;
}

.wp-caption p.wp-caption-text {
  font-size: 14px;
  font-size: 1.4rem;
  background-color: #F0F0F0;
  padding: 10px 0;
  padding: 1rem 0;
  text-align: center;
  margin-bottom: 30px;
  margin-bottom: 3rem;
}

.post-password-form input[type="submit"] {
  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: 0;
  padding: 0.85em 1em;
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  background-color: #29C3EC;
  color: #fefefe;
}

[data-whatinput='mouse'] .post-password-form input[type="submit"] {
  outline: 0;
}

.post-password-form input[type="submit"]:hover,
.post-password-form input[type="submit"]:focus {
  background-color: #12a5cc;
  color: #fefefe;
}

/*********************
TABLE STYLES
*********************/
table thead th {
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 74.9375em) {
  table thead th {
    border-right: 0;
  }
}

table tbody tr td:first-child {
  padding-left: 0;
  font-family: "proxima-nova-alt", Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 600;
  font-style: normal;
}

table th,
table td {
  font-size: 18px;
  font-size: 1.8rem;
  text-align: left;
}

@media screen and (max-width: 74.9375em) {

  table th,
  table td {
    border-right: 0;
  }
}

table tr td:last-child {
  border-right: 0;
}

table tr:last-child {
  border-bottom: 0;
}

@media screen and (max-width: 74.9375em) {
  table tr td:first-child {
    font-family: "open";
    font-weight: "400";
    font-style: "b";
  }
}

/*********************
PAGE NAVI STYLES
*********************/
.page-navigation {
  margin-top: 1rem;
}

/*********************
SIDEBARS & ASIDES
*********************/
@media screen and (max-width: 47.9375em) {
  .sidebar {
    display: none;
  }
}

.sidebar h3 {
  font-size: 30px;
  font-size: 3rem;
  margin-bottom: 15px;
}

.sidebar li {
  display: block;
  margin-bottom: 0;
}

.sidebar li a {
  font-family: "proxima-nova-alt", Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 600;
  font-style: normal;
  padding: 8px 30px 8px 0;
  padding: 0.8rem 3rem 0.8rem 0;
  font-size: 18px;
  font-size: 1.8rem;
  color: #083266;
  display: block;
  text-decoration: none;
  border: none;
  margin-bottom: 0;
  line-height: 1.3;
}

.sidebar li a:hover,
.sidebar li a:focus {
  margin-bottom: 0;
  text-decoration: underline;
  color: #29C3EC;
}

.sidebar li.current_page_item a {
  text-decoration: underline;
  color: #29C3EC;
}

.sidebar li.current_page_item .children a {
  color: #083266;
  background-color: transparent;
}

.sidebar ul.page-list {
  margin-left: 0;
  margin-bottom: 0;
}

.sidebar ul.page-list a {
  position: relative;
}

.sidebar ul.page-list a.has-number {
  padding-left: 35px;
  padding-left: 3.5rem;
}

.sidebar ul.page-list a .menu-number {
  color: #fefefe;
  background-color: #29C3EC;
  display: inline-block;
  width: 26px;
  width: 2.6rem;
  height: 26px;
  height: 2.6rem;
  border-radius: 15px;
  line-height: 26px;
  vertical-align: middle;
  text-align: center;
  position: absolute;
  top: 6px;
  left: 0;
}


.sidebar ul.page-list a .arrow {
  position: absolute;
  top: 0px;
  top: 0;
  right: 0;
  display: block;
  width: 30px;
  width: 3rem;
  height: 40px;
  height: 4rem;
}

.sidebar ul.page-list a .arrow.down {
  background-image: url(../images/spritesheet.svg);
  background-position: -95px -285px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.sidebar ul.page-list a .arrow.down.open {
  background-image: url(../images/spritesheet.svg);
  background-position: -45px -185px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.sidebar ul.page-list ul.children {
  background-color: #F0F0F0;
  display: none;
  margin-top: 10px;
  margin-top: 1rem;
  margin-bottom: 12px;
  margin-bottom: 1.2rem;
  margin-left: 35px;
  margin-left: 3.5rem;
  padding-bottom: 8px;
  padding-bottom: 0.8rem;
  padding-top: 8px;
  padding-top: 0.8rem;
  border-top: 2px solid #29C3EC;
  border-bottom: 2px solid #8E9192;
}

.sidebar ul.page-list ul.children a {
  font-size: 16px;
  font-size: 1.6rem;
  padding-right: 35px;
  padding-right: 3.5rem;
  padding-top: 4px;
  padding-top: 0.4rem;
  padding-bottom: 4px;
  padding-bottom: 0.4rem;
  padding-left: 12px;
  padding-left: 1.2rem;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}

.sidebar ul.page-list ul.children a .menu-number {
  color: #29C3EC;
  background-color: transparent;
  display: inline-block;
  width: auto;
  height: inherit;
  border-radius: 0;
  line-height: 1;
  position: relative;
  vertical-align: baseline;
  top: 0;
  left: 0;
  margin-right: 5px;
  margin-right: 0.5rem;
}

.sidebar ul.page-list ul.children a .arrow.down {
  background-image: url(../images/spritesheet.svg);
  background-position: -95px -290px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.sidebar ul.page-list ul.children a .arrow.down.open {
  background-image: url(../images/spritesheet.svg);
  background-position: -45px -190px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.sidebar ul.page-list ul.children a:hover {
  color: #fefefe;
  background-color: #083266;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}

.sidebar ul.page-list ul.children a:hover .menu-number {
  text-decoration: none;
  border: none;
  color: #fefefe;
}

.sidebar ul.page-list ul.children a:hover .arrow.down {
  background-image: url(../images/spritesheet.svg);
  background-position: 5px -290px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.sidebar ul.page-list ul.children a:hover .arrow.down.open {
  background-image: url(../images/spritesheet.svg);
  background-position: 5px -190px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.sidebar ul.page-list ul.children .children {
  border: none;
  margin: 0 0 5px;
  padding: 0;
}

.sidebar ul.page-list ul.children .children a {
  font-size: 15px;
  font-size: 1.5rem;
  padding: 4px 12px 3px 35px;
  padding: 0.4rem 1.2rem 0.3rem 3.5rem;
}

.sidebar ul.page-list ul.children .children a:hover {
  color: #fefefe;
  background-color: #083266;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}

.sidebar ul.page-list ul.children .children a:hover .menu-number {
  text-decoration: none;
  border: none;
  color: #fefefe;
}

.sidebar ul.page-list ul.children .children a:hover .arrow.down {
  background-image: url(../images/spritesheet.svg);
  background-position: 5px -290px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.sidebar ul.page-list ul.children .children a:hover .arrow.down.open {
  background-image: url(../images/spritesheet.svg);
  background-position: 5px -190px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.sidebar ul.page-list ul.children .children .children a {
  padding: 4px 12px 3px 60px;
  padding: 0.4rem 1.2rem 0.3rem 6rem;
}

.sidebar ul.page-list ul.children .children .children a:hover {
  color: #fefefe;
  background-color: #083266;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}

.sidebar ul.page-list ul.children .children .children a:hover .menu-number {
  text-decoration: none;
  border: none;
  color: #fefefe;
}

.sidebar ul.page-list ul.children .children .children a:hover .arrow.down {
  background-image: url(../images/spritesheet.svg);
  background-position: 5px -290px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.sidebar ul.page-list ul.children .children .children a:hover .arrow.down.open {
  background-image: url(../images/spritesheet.svg);
  background-position: 5px -190px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.sidebar ul.page-list ul.children li.current_page_item a {
  color: #fefefe;
  background-color: #083266;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}

.sidebar ul.page-list ul.children li.current_page_item a .menu-number {
  text-decoration: none;
  border: none;
  color: #fefefe;
}

.sidebar ul.page-list ul.children li.current_page_item a .arrow.down {
  background-image: url(../images/spritesheet.svg);
  background-position: 5px -290px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.sidebar ul.page-list ul.children li.current_page_item a .arrow.down.open {
  background-image: url(../images/spritesheet.svg);
  background-position: 5px -190px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.sidebar ul.page-list ul.children li.current_page_item>ul.children a {
  color: #083266;
  background-color: transparent;
}

.sidebar ul.page-list ul.children li.current_page_item>ul.children a .menu-number {
  color: #29C3EC;
}

.sidebar ul.page-list ul.children li.current_page_item>ul.children a:hover {
  color: #fefefe;
  background-color: #083266;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}

.sidebar ul.page-list ul.children li.current_page_item>ul.children a:hover .arrow.down {
  background-image: url(../images/spritesheet.svg);
  background-position: 5px -290px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.sidebar ul.page-list ul.children li.current_page_item>ul.children a:hover .arrow.down.open {
  background-image: url(../images/spritesheet.svg);
  background-position: 5px -190px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.sidebar ul.page-list ul.children li.current_page_item>ul.children a:hover .menu-number {
  text-decoration: none;
  border: none;
  color: #fefefe;
}

.sidebar ul.page-list ul.children li.current_page_item>ul.children li.current_page_item a {
  color: #29C3EC;
  background-color: #083266;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}

.sidebar ul.page-list ul.children li.current_page_item>ul.children li.current_page_item a .arrow.down {
  background-image: url(../images/spritesheet.svg);
  background-position: 5px -290px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.sidebar ul.page-list ul.children li.current_page_item>ul.children li.current_page_item a .arrow.down.open {
  background-image: url(../images/spritesheet.svg);
  background-position: 5px -190px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.sidebar ul.page-list li.current_page_item .menu-number {
  color: #fefefe;
  background-color: #29C3EC;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}

.sidebar ul.page-list li.current_page_item .arrow.down {
  background-image: url(../images/spritesheet.svg);
  background-position: -95px -285px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.sidebar ul.page-list li.current_page_item .arrow.down.open {
  background-image: url(../images/spritesheet.svg);
  background-position: -45px -185px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.sidebar ul.page-list li.current_page_item>ul.children {
  display: block;
}

.sidebar ul.page-list li.current_page_item>ul.children a .arrow.down {
  background-image: url(../images/spritesheet.svg);
  background-position: -95px -290px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.sidebar ul.page-list li.current_page_item>ul.children a .arrow.down.open {
  background-image: url(../images/spritesheet.svg);
  background-position: -45px -190px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.sidebar ul.page-list li.current_page_item>ul.children a:hover {
  color: #fefefe;
  background-color: #083266;
}

.sidebar ul.page-list li.current_page_item>ul.children a:hover .arrow.down {
  background-image: url(../images/spritesheet.svg);
  background-position: 5px -290px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.sidebar ul.page-list li.current_page_item>ul.children a:hover .arrow.down.open {
  background-image: url(../images/spritesheet.svg);
  background-position: 5px -190px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.sidebar ul.page-list li.current_page_ancestor.page_item_has_children>ul.children,
.sidebar ul.page-list li.current_page_parent.page_item_has_children>ul.children {
  display: block;
}

/*********************
DEFAULT PAGE STYLES
*********************/
/*---------------------- */
.menu {
  background-color: transparent;
}

.menu .active>a {
  background-color: #97C848;
  border-left: 1px solid rgba(254, 254, 254, 0.25);
  border-right: 1px solid rgba(254, 254, 254, 0.25);
}

.top-bar {
  background-color: transparent;
  position: relative;
  z-index: 10;
}

.top-bar ul {
  background-color: transparent;
}

.top-bar .row:last-child {
  display: none;
}

.top-bar-right {
  background-color: rgba(254, 254, 254, 0.75);
  padding: 15px 0 15px 30px;
  padding: 1.5rem 0 1.5rem 3rem;
  position: relative;
  display: none;
  /*---------------------- */
  /*---------------------- */
  /*---------------------- */
}

@media screen and (max-width: 47.9375em) {
  .top-bar-right {
    display: none;
  }
}

.top-bar-right:before {
  display: block;
  content: " ";
  background: url(../images/navigation-wedge.png) center left no-repeat;
  background-size: cover;
  position: absolute;
  width: 40px;
  width: 4rem;
  height: 100%;
  top: 0;
  left: -40px;
  left: -4rem;
}

.top-bar-right:after {
  display: block;
  content: " ";
  position: absolute;
  background-color: rgba(254, 254, 254, 0.75);
  width: 3000px;
  width: 300rem;
  height: 100%;
  top: 0;
  right: -3000px;
  right: -300rem;
}

@media screen and (max-width: 47.9375em) {
  .top-bar-right:after {
    display: none;
  }
}

.top-bar-right ul {
  display: inline-block;
  vertical-align: middle;
  margin-right: 30px;
  margin-right: 3rem;
  padding-right: 15px;
  padding-right: 1.5rem;
  border-right: 1px solid grey;
  position: relative;
}

.top-bar-right ul a {
  font-family: "open";
  font-weight: "400";
  font-style: "b";
  font-size: 16px;
  font-size: 1.6rem;
  padding: 10px 15px;
  padding: 1rem 1.5rem;
  border: none;
  text-decoration: none;
  color: #083266;
  letter-spacing: -0.05rem;
  line-height: 1;
  text-transform: uppercase;
  border-left: 1px solid rgba(254, 254, 254, 0);
  border-right: 1px solid rgba(254, 254, 254, 0);
}

.top-bar-right ul a:hover,
.top-bar-right ul a:focus,
.top-bar-right ul a:active {
  background-color: #97C848;
  color: #fefefe;
  border-left: 1px solid rgba(254, 254, 254, 0.25);
  border-right: 1px solid rgba(254, 254, 254, 0.25);
}

/*---------------------- */
.button.mobile-menu {
  position: absolute;
  right: 15px;
  top: 20px;
  width: 50px;
  height: 50px;
  background-color: #083266;
}

.button.mobile-menu .icon-mobile-menu {
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(../images/spritesheet.svg);
  background-position: 0 -450px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.vertical.menu a {
  font-family: "proxima-nova-alt", Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 600;
  font-style: normal;
}

@media screen and (max-width: 47.9375em) {
  .vertical.menu a {
    padding: 20px;
    background-color: #2d3232;
    color: #fefefe;
    /* test */
    border-left: none;
    border-bottom: 1px solid #454c4d;
    margin-bottom: 0;
  }

  .vertical.menu a:hover {
    border-bottom: 1px solid #454c4d;
    background-color: #454c4d;
    margin-bottom: 0;
  }

  .vertical.menu .active>a {
    background-color: #12a8d0;
    border-left: none;
  }

  .vertical.menu .active>a:hover {
    border-bottom: 1px solid #454c4d;
  }

  .vertical.menu li {
    padding: 0;
    margin: 0;
  }

  .vertical.menu li .submenu a {
    font-size: 15px;
    padding: 15px 20px 15px 35px;
    background-color: #212425;
  }

  .vertical.menu li .submenu .submenu a {
    font-size: 14px;
    padding: 15px 20px 15px 50px;
    background-color: #151717;
  }

  .vertical.menu li .submenu .submenu .submenu a {
    font-size: 14px;
    padding: 15px 20px 15px 65px;
    background-color: #090a0a;
  }
}

.button.close-mobile-menu {
  width: 100%;
  height: 35px;
  margin-bottom: 0;
  background-color: #2d3232;
  text-align: right;
}

.button.close-mobile-menu .icon-close-button {
  display: inline-block;
  vertical-align: middle;
  width: 17px;
  height: 15px;
  background-image: url(../images/spritesheet.svg);
  background-position: -50px -450px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
  margin-top: -2px;
  margin-right: 0px;
}

/*---------------------- */
.article-masthead {
  height: 570px;
  height: 57rem;
  background: url(../images/masthead-bg.jpg) top center no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  overflow: hidden;
}

@media screen and (min-width: 48em) and (max-width: 74.9375em) {
  .article-masthead {
    height: 500px;
  }
}

@media screen and (max-width: 47.9375em) {
  .article-masthead {
    height: 400px;
  }
}

.article-masthead .site-title-container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 47.9375em) {
  .article-masthead .site-title-container {
    padding: 0 10px;
  }
}

.article-masthead .site-title-container .site-title {
  width: 800px;
  width: 80rem;
  margin: 0 auto 15px;
  font-size: 55px;
  font-size: 5.5rem;
  line-height: 1.1;
  color: #fefefe;
}

@media screen and (max-width: 74.9375em) {
  .article-masthead .site-title-container .site-title {
    font-size: 40px;
    font-size: 4rem;
    width: 90%;
  }
}

@media screen and (max-width: 47.9375em) {
  .article-masthead .site-title-container .site-title {
    font-size: 28px;
    width: 100%;
  }
}

.article-masthead .site-title-container .site-tagline {
  font-size: 36px;
  font-size: 3.6rem;
  color: #fefefe;
  border-top: 1px solid #fefefe;
  padding-top: 25px;
  font-family: "adobe-garamond-pro", Georgia, Times, Times New Roman, serif;
  font-weight: 400;
  font-style: normal;
  width: 33%;
  display: block;
  margin: 0 auto;
  line-height: 1.2;
}

@media screen and (max-width: 74.9375em) {
  .article-masthead .site-title-container .site-tagline {
    padding-top: 20px;
    width: 60%;
  }
}

@media screen and (max-width: 47.9375em) {
  .article-masthead .site-title-container .site-tagline {
    font-size: 22px;
    padding: 20px 10px 0;
    width: 100%;
  }
}

.article-masthead:before {
  position: absolute;
  content: " ";
  background-color: rgb(8, 50, 102, 0.5);
  display: block;
  height: 100%;
  width: 100%;
}

/*---------------------- */
.section-break {
  position: relative;
  display: block;
  height: 55px;
  height: 5.5rem;
  width: 100%;
  margin-top: -50px;
  margin-top: -5rem;
  background: url(../images/section-break.png) bottom center no-repeat;
  background-size: cover;
  z-index: 10;
}

/*---------------------- */
body.page {
  /*---------------------- */
}

body.page article.hentry {
  margin-top: 55px;
  margin-top: 5.5rem;
  padding-left: 35px;
  padding-left: 3.5rem;
  padding-bottom: 45px;
  padding-bottom: 4.5rem;
  position: relative;
}

@media screen and (max-width: 47.9375em) {
  body.page article.hentry {
    padding-left: 1rem;
    padding-bottom: 0;
    margin-top: 0;
  }
}

body.page article .button-box {
  width: 100%;
  text-align: right;
  display: block;
  margin-top: -5px;
  margin-top: -0.5rem;
}

@media screen and (max-width: 47.9375em) {
  body.page article .button-box {
    margin-top: 0;
    margin-bottom: 10px;
  }
}

body.page article .button {
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "proxima-nova-alt", Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  color: #fefefe;
  font-weight: bold;
  border: none;
  text-decoration: none;
  margin: 0;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  padding: 1rem;
}

body.page article .button .arrow.right {
  background-image: url(../images/spritesheet.svg);
  background-position: 0px -150px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
  height: 10px;
  width: 8px;
  margin: 0 0 0 5px;
}

/*********************
COLLAPSABLE CONTENT STYLES
*********************/
.collapsible-content {
  background-color: #F0F0F0;
  margin: 25px 0 30px;
  margin: 2.5rem 0 3rem;
}

.collapsible-content:last-child {
  margin-bottom: 0;
}

.collapsible-content .collapse-toggle {
  border-top: 2px solid #000000;
  border-bottom: 2px solid #8E9192;
  padding: 25px 65px 25px 15px;
  padding: 2.5rem 6.5rem 2.5rem 1.5rem;
  display: block;
  position: relative;
}

@media screen and (max-width: 47.9375em) {
  .collapsible-content .collapse-toggle {
    padding-right: 15px;
  }
}

.collapsible-content .collapse-toggle h2 {
  margin-top: 0;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  font-size: 22px;
  font-size: 2.2rem;
}

.collapsible-content .collapse-toggle h2 strong {
  font-family: "proxima-nova-alt", Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-right: 7px;
  margin-right: 0.7rem;
}

@media screen and (max-width: 47.9375em) {
  .collapsible-content .collapse-toggle h2 {
    margin-right: 20px;
    font-size: 20px;
  }
}

.collapsible-content .collapse-toggle .left-toggle {
  height: 100%;
  display: block;
  width: 65px;
  width: 6.5rem;
  position: absolute;
  top: 0;
  right: 0;
}

.collapsible-content .collapse-toggle .left-toggle .collapsible-arrow {
  display: table;
  height: 100%;
  width: 100%;
}

.collapsible-content .collapse-toggle .left-toggle .collapsible-arrow:after {
  content: " ";
  display: table-cell;
  vertical-align: middle;
  background: url(../images/collapse-arrow-down.svg) center center no-repeat;
  width: 65px;
  width: 6.5rem;
  height: 65px;
  height: 6.5rem;
}

.collapsible-content .collapse-toggle .left-toggle .collapsible-arrow.open:after {
  background: url(../images/collapse-arrow-up.svg) center center no-repeat;
}

@media screen and (max-width: 47.9375em) {
  .collapsible-content .collapse-toggle .left-toggle .collapsible-arrow {
    height: 25%;
    position: absolute;
    bottom: 0;
  }
}

.collapsible-content .collapsed-content {
  display: none;
  padding: 0 15px 25px;
  padding: 0 1.5rem 2.5rem;
  margin-top: -10px;
  margin-top: -1rem;
  position: relative;
  z-index: 2;
  background-color: #F0F0F0;
}

.collapsible-content .collapsed-content.open {
  display: block;
  border-bottom: 2px solid #8E9192;
}

.collapsible-content .collapsed-content .examples-box {
  border-top: 1px solid #8E9192;
  background-color: #fefefe;
  padding: 25px 15px;
  padding: 2.5rem 1.5rem;
  margin: 20px 0 20px;
  margin: 2rem 0 2rem;
  position: relative;
}

.collapsible-content .collapsed-content .examples-box:last-child {
  margin-bottom: 0;
}

.collapsible-content .collapsed-content .examples-box .icon-container {
  display: inline-block;
  float: left;
}

@media screen and (max-width: 47.9375em) {
  .collapsible-content .collapsed-content .examples-box .icon-container {
    float: none;
    display: block;
  }
}

.collapsible-content .collapsed-content .examples-box h3 {
  display: block;
  color: #fefefe;
  margin-top: 0;
  font-family: "proxima-nova-alt", Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  color: #083266;
  font-size: 18px;
  font-size: 1.8rem;
}

.collapsible-content .collapsed-content .examples-box .icon {
  width: 25px;
  height: 33px;
  margin-left: 0;
  margin-right: 0;
}

.collapsible-content .collapsed-content .examples-box .icon.pdf-icon {
  background-image: url(../images/spritesheet.svg);
  background-position: -50px -50px;
  background-size: 150px 500px;
  background-repeat: no-repeat;
}

.collapsible-content .collapsed-content .examples-box .content-container {
  margin-left: 50px;
  margin-left: 5rem;
}

@media screen and (max-width: 47.9375em) {
  .collapsible-content .collapsed-content .examples-box .content-container {
    margin-left: 0;
    margin-top: 10px;
  }
}

.collapsible-content .collapsed-content .examples-box .content-container p {
  color: #fefefe;
}

.collapsible-content .collapsed-content .examples-box .content-container a {
  font-family: "open";
  font-weight: "400";
  font-style: "sb";
  color: #fefefe;
  border-color: #fefefe;
  word-wrap: break-word;
}

/*********************
FOOTER CONTROLS
*********************/
.footnotes {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0 0 20px;
  padding: 0 0 2rem;
  margin-top: 40px;
  margin-top: 4rem;
  border-bottom: 1px solid #CED0D0;
}

.footnotes p {
  display: inline-block;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3;
  width: 95%;
  padding-left: 5px;
}

.footnotes .number-title {
  vertical-align: top;
  display: inline-block;
  width: 2%;
}

.footnotes li {
  line-height: 1 !important;
}

.footnotes li:last-child,
.footnotes li p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 47.9375em) {
  .footnotes {
    padding-bottom: 70px;
  }

  .footnotes p {
    padding-left: 10px;
  }
}

/*********************
FOOTER CONTROLS
*********************/
.prev-link,
.next-link,
.scroll-to-top {
  display: inline-block;
  vertical-align: middle;
  color: #fefefe;
  margin-top: 0;
  font-family: "proxima-nova-alt", Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  color: #083266;
  font-size: 18px;
  font-size: 1.8rem;
  position: absolute;
  bottom: 0;
  text-decoration: none;
}

.prev-link:hover,
.prev-link:focus,
.next-link:hover,
.next-link:focus,
.scroll-to-top:hover,
.scroll-to-top:focus {
  border: none;
  color: #29C3EC;
}

.prev-link:visited,
.next-link:visited,
.scroll-to-top:visited {
  color: #083266;
}

.prev-link:visited:hover,
.next-link:visited:hover,
.scroll-to-top:visited:hover {
  color: #29C3EC;
}

@media screen and (max-width: 47.9375em) {

  .prev-link,
  .next-link,
  .scroll-to-top {
    bottom: 60px;
  }
}

.prev-link {
  left: 35px;
  left: 3.5rem;
}


@media screen and (max-width: 47.9375em) {
  .prev-link {
    left: 10px;
  }
}

.next-link {
  right: 15px;
  right: 1.5rem;
}

@media screen and (max-width: 47.9375em) {
  .next-link {
    right: 10px;
  }
}

.scroll-to-top {
  left: 50%;
  margin-left: -20px;
  margin-left: -2rem;
  bottom: 5px;
  bottom: 0.5rem;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 47.9375em) {
  .scroll-to-top {
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: 60px;
    display: block;
    position: inherit;
    width: 100%;
    padding: 10px 0;
    background-color: #000000;
    color: #fefefe;
    margin-bottom: 15px;
  }

  .scroll-to-top .arrow.up {
    background-image: url(../images/spritesheet.svg);
    background-position: 0 -200px;
    background-size: 150px 500px;
    background-repeat: no-repeat;
  }
}

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  margin-top: 15px;
  margin-top: 1.5rem;
  color: #fefefe;
  background-color: #083266;
  padding: 25px 0;
  padding: 2.5rem 0;
}

@media screen and (max-width: 47.9375em) {
  .footer {
    margin-top: 0;
    text-align: center;
  }
}

.footer ul {
  display: block;
  margin: 0;
}

.footer li {
  display: block;
  padding-left: 0;
}

.footer a {
  display: inline-block;
  border: none;
  text-decoration: none;
}

@media screen and (max-width: 47.9375em) {
  .footer a {
    float: none;
  }
}

.footer .footer-logo {
  margin-right: 60px;
  margin-right: 6rem;
  width: 197px;
  width: 19.7rem;
  height: 84px;
  height: 8.4rem;
  background: url(../images/iisd-logo-footer.svg) center left no-repeat;
  background-size: cover;
}

@media screen and (max-width: 74.9375em) {
  .footer .footer-logo {
    margin-right: 31px;
    width: 187px;
    height: 79px;
  }
}

@media screen and (max-width: 47.9375em) {
  .footer .footer-logo {
    margin-right: 20px;
    width: 174px;
    height: 73px;
  }
}

.footer .footer-unep-logo {
  width: 70px;
  width: 7rem;
  height: 84px;
  height: 8.4rem;
  background: url(../images/unep-logo-footer.svg) center left no-repeat;
  background-size: cover;
}

@media screen and (max-width: 74.9375em) {
  .footer .footer-unep-logo {
    width: 66px;
    height: 79px;
  }
}

@media screen and (max-width: 47.9375em) {
  .footer .footer-unep-logo {
    width: 60px;
    height: 73px;
  }
}

.footer p {
  font-family: "proxima-nova-alt", Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 0;
}

.footer p strong {
  padding-bottom: 5px;
  padding-bottom: 0.5rem;
  display: inline-block;
}

@media screen and (max-width: 47.9375em) {
  .footer p {
    margin-top: 30px;
    font-size: 15px;
    text-align: center;
  }
}

.footer a {
  color: #fefefe;
  border: none;
  text-decoration: none;
  font-family: "open";
  font-weight: "400";
  font-style: "b";
  text-transform: uppercase;
}

.footer a:hover,
.footer a:focus {
  color: #97C848;
}

.footer .active>a {
  background-color: transparent;
  color: #97C848;
}

.footer .copyright {
  margin-bottom: 0;
  display: inline-block;
  margin-top: 15px;
  margin-top: 1.5rem;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "open";
  font-weight: "400";
  font-style: "b";
}

.footer h5 {
  color: #fefefe;
  margin-top: 0;
  margin-bottom: 8px;
  margin-bottom: 0.8rem;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "open";
  font-weight: "400";
  font-style: "b";
}

/*********************
PLUGIN STYLES
*********************/
.gform_body ul {
  list-style: none outside none;
  margin: 0;
}

/******************************************************************

Stylesheet: Retina Screens & Devices Stylesheet

When handling retina screens you need to make adjustments, especially
if you're not using font icons. Here you can add them in one neat
place.

******************************************************************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
  /* 

EXAMPLE 
Let's say you have an image and you need to make sure it looks ok
on retina screens. Let's say we have an icon which dimension are
24px x 24px. In your regular stylesheets, it would look something
like this:

.icon {
	width: 24px;
	height: 24px;
	background: url(img/test.png) no-repeat;
}

For retina screens, we have to make some adjustments, so that image
doesn't look blurry. So, taking into account the image above and the
dimensions, this is what we would put in our retina stylesheet:

.icon {
	background: url(img/test@2x.png) no-repeat;
	background-size: 24px 24px;
}

So, you would create the same icon, but at double the resolution, meaning 
it would be 48px x 48px. You'd name it the same, but with a @2x at the end
(this is pretty standard practice). Set the background image so it matches
the original dimensions and you are good to go. 

*/
}

/******************************************************************

Stylesheet: Print Stylesheet

This is the print stylesheet. There's probably not a lot
of reasons to edit this stylesheet. 

Remember to add things that won't make sense to print at 
the bottom. Things like nav, ads, and forms shouldbe set 
to display none.
******************************************************************/
@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    -webkit-filter: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  a,
  a:visited {
    color: #444 !important;
    text-decoration: underline;
  }

  a:after,
  a:visited:after {
    content: " (" attr(href) ")";
  }

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

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

  pre,
  blockquote {
    border: 1px solid #999;
    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;
  }

  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}

#top-footer {
  border-bottom: 1px solid #ced0d0;
  margin-bottom: 20px;

}

/* Apply basic CSS styles to the menu */
ul.horizontal-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

ul.horizontal-menu li {
  float: left;
}

ul.horizontal-menu li a {
  display: block;
  color: white;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  text-transform: none;
  font-family: proxima-nova-alt, Arial, Helvetica Neue, Helvetica, sans-serif;
}

/* Change the link color when the mouse hovers over it */
ul.horizontal-menu li a:hover {
  color: #29C3EC;
  cursor: pointer;
}