@charset "UTF-8";
/******************************************************************
	
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
*********************/
/* Lato from Google */
@font-face {
  font-family: 'Lato-Light';
  src: url("../fonts/lato/Lato-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'Lato-Regular';
  src: url("../fonts/lato/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: 'Lato-Italic';
  src: url("../fonts/lato/Lato-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic; }

@font-face {
  font-family: 'Lato-Bold';
  src: url("../fonts/lato/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: 'Lato-BoldItalic';
  src: url("../fonts/lato/Lato-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic; }

@font-face {
  font-family: 'Lato-Black';
  src: url("../fonts/lato/Lato-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal; }

/* Merriweather from Google */
@font-face {
  font-family: 'Merriweather-Regular';
  src: url("../fonts/merriweather/Merriweather-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: 'Merriweather-Italic';
  src: url("../fonts/merriweather/Merriweather-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic; }

@font-face {
  font-family: 'Merriweather-Bold';
  src: url("../fonts/merriweather/Merriweather-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: 'Merriweather-BoldItalic';
  src: url("../fonts/merriweather/Merriweather-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic; }

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

/*********************
CSS3 GRADIENTS.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/**
 * Foundation for Sites by ZURB
 * Version 6.3.1
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shake {
  animation-name: shake-7; }

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

.spin-cw {
  animation-name: 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); } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
       ========================================================================== */
/**
     * 1. Change the default font family in all browsers (opinionated).
     * 2. Correct the line height in all browsers.
     * 3. Prevent adjustments of font size after orientation changes in
     *    IE on Windows Phone and in iOS.
     */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */ }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

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

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

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

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

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

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

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

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

button,
[type="button"],
[type="reset"],
[type="submit"] {
  /**
       * Remove the inner border and padding in Firefox.
       */
  /**
       * Restore the focus styles unset by the previous rule.
       */ }
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0; }
  button:-moz-focusring,
  [type="button"]:-moz-focusring,
  [type="reset"]:-moz-focusring,
  [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.foundation-mq {
  font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em"; }

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

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

body {
  margin: 0;
  padding: 0;
  background: #fefefe;
  font-family: "Lato-Regular", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #4A4A4A;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

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

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

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

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

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

pre {
  overflow: auto; }

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

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

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

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

.column.row.row, .row.row.columns {
  float: none; }

.row .column.row.row, .row .row.row.columns {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 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 {
  float: left;
  width: 100%; }
  .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 {
  float: left;
  width: 50%; }
  .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 {
  float: left;
  width: 33.33333%; }
  .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 {
  float: left;
  width: 25%; }
  .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 {
  float: left;
  width: 20%; }
  .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 {
  float: left;
  width: 16.66667%; }
  .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 {
  float: left;
  width: 14.28571%; }
  .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 {
  float: left;
  width: 12.5%; }
  .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-right: 0;
  padding-left: 0; }

.small-collapse .row {
  margin-right: 0;
  margin-left: 0; }

.expanded.row .small-collapse.row {
  margin-right: 0;
  margin-left: 0; }

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

.small-centered {
  margin-right: auto;
  margin-left: auto; }
  .small-centered, .small-centered:last-child:not(:first-child) {
    float: none;
    clear: both; }

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

@media print, screen and (min-width: 40em) {
  .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 {
    float: left;
    width: 100%; }
    .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 {
    float: left;
    width: 50%; }
    .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 {
    float: left;
    width: 33.33333%; }
    .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 {
    float: left;
    width: 25%; }
    .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 {
    float: left;
    width: 20%; }
    .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 {
    float: left;
    width: 16.66667%; }
    .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 {
    float: left;
    width: 14.28571%; }
    .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 {
    float: left;
    width: 12.5%; }
    .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-right: 0;
    padding-left: 0; }
  .medium-collapse .row {
    margin-right: 0;
    margin-left: 0; }
  .expanded.row .medium-collapse.row {
    margin-right: 0;
    margin-left: 0; }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; }
  .medium-centered {
    margin-right: auto;
    margin-left: auto; }
    .medium-centered, .medium-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  .medium-uncentered,
  .medium-push-0,
  .medium-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0; } }

@media print, screen and (min-width: 64em) {
  .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 {
    float: left;
    width: 100%; }
    .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 {
    float: left;
    width: 50%; }
    .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 {
    float: left;
    width: 33.33333%; }
    .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 {
    float: left;
    width: 25%; }
    .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 {
    float: left;
    width: 20%; }
    .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 {
    float: left;
    width: 16.66667%; }
    .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 {
    float: left;
    width: 14.28571%; }
    .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 {
    float: left;
    width: 12.5%; }
    .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-right: 0;
    padding-left: 0; }
  .large-collapse .row {
    margin-right: 0;
    margin-left: 0; }
  .expanded.row .large-collapse.row {
    margin-right: 0;
    margin-left: 0; }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; }
  .large-centered {
    margin-right: auto;
    margin-left: auto; }
    .large-centered, .large-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  .large-uncentered,
  .large-push-0,
  .large-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0; } }

.column-block {
  margin-bottom: 1.25rem; }
  .column-block > :last-child {
    margin-bottom: 0; }
  @media print, screen and (min-width: 40em) {
    .column-block {
      margin-bottom: 1.875rem; }
      .column-block > :last-child {
        margin-bottom: 0; } }

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0; }

p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.6;
  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: "Lato-Regular", Helvetica, Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizeLegibility; }
  h1 small,
  h2 small,
  h3 small,
  h4 small,
  h5 small,
  h6 small {
    line-height: 0;
    color: #fefefe; }

h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h2 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h4 {
  font-size: 1.125rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h5 {
  font-size: 1.0625rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h6 {
  font-size: 0.875rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5rem; }

p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 0.9375rem;
  margin-bottom: 0.9375rem; }

ol {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 0.9375rem;
  margin-bottom: 0.9375rem; }

ul {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 0.9375rem;
  margin-bottom: 0.9375rem; }

@media print, screen and (min-width: 40em) {
  h1 {
    font-size: 3rem; }
  h2 {
    font-size: 2.5rem; }
  h3 {
    font-size: 1.9375rem; }
  h4 {
    font-size: 1.5625rem; }
  h5 {
    font-size: 1.25rem; }
  h6 {
    font-size: 1rem; }
  p {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem; }
  ol {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem; }
  ul {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem; } }

@media print, screen and (min-width: 64em) {
  h1 {
    font-size: 4rem; }
  h2 {
    font-size: 3rem; }
  h3 {
    font-size: 2.25rem; }
  h4 {
    font-size: 1.5625rem; }
  h5 {
    font-size: 1.25rem; }
  h6 {
    font-size: 1.125rem; }
  p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem; }
  ol {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem; }
  ul {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem; } }

@media screen and (min-width: 75em) {
  h1 {
    font-size: 4.5rem; }
  h2 {
    font-size: 3rem; }
  h3 {
    font-size: 2.25rem; }
  h4 {
    font-size: 1.5625rem; }
  h5 {
    font-size: 1.25rem; }
  h6 {
    font-size: 1.125rem; }
  p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem; }
  ol {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem; }
  ul {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem; } }

a {
  line-height: inherit;
  color: #7A972C;
  text-decoration: none;
  cursor: pointer; }
  a:hover, a:focus {
    color: #698226; }
  a img {
    border: 0; }

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

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

li {
  font-size: inherit; }

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

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.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #cacaca; }
  blockquote, blockquote p {
    line-height: 1.6;
    color: #4A4A4A; }

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

abbr {
  border-bottom: 1px dotted #0a0a0a;
  color: #4A4A4A;
  cursor: help; }

figure {
  margin: 0; }

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

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

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.2;
  color: #4A4A4A; }

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

.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 print, screen and (min-width: 40em) {
  .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 print, screen and (min-width: 64em) {
  .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;
    box-shadow: none !important;
    color: black !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 #4A4A4A;
    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; }
  .print-break-inside {
    page-break-inside: auto; } }

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

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

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #cacaca; }

input::placeholder,
textarea::placeholder {
  color: #cacaca; }

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

[type='submit'],
[type='button'] {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0; }

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

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

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

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

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

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

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

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

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

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

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

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  width: 1%;
  height: 100%; }
  .input-group-button a,
  .input-group-button input,
  .input-group-button button,
  .input-group-button label {
    height: 2.5rem;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 1rem; }

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

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

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

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

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

.is-invalid-input:not(:focus) {
  border-color: #cc4b37;
  background-color: #f9ecea; }
  .is-invalid-input:not(:focus):-ms-input-placeholder {
    color: #cc4b37; }
  .is-invalid-input:not(:focus)::placeholder {
    color: #cc4b37; }

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

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

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #B7CE63;
  color: #fefefe; }
  [data-whatinput='mouse'] .button {
    outline: 0; }
  .button:hover, .button:focus {
    background-color: #a7c340;
    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-right: 0;
    margin-left: 0; }
  .button.primary {
    background-color: #7A972C;
    color: #fefefe; }
    .button.primary:hover, .button.primary:focus {
      background-color: #627923;
      color: #fefefe; }
  .button.primaryDark {
    background-color: #2F4B26;
    color: #fefefe; }
    .button.primaryDark:hover, .button.primaryDark:focus {
      background-color: #263c1e;
      color: #fefefe; }
  .button.primaryLight {
    background-color: #B7CE63;
    color: #2F4B26; }
    .button.primaryLight:hover, .button.primaryLight:focus {
      background-color: #9eba3a;
      color: #2F4B26; }
  .button.secondary {
    background-color: #E7A400;
    color: #2F4B26; }
    .button.secondary:hover, .button.secondary:focus {
      background-color: #b98300;
      color: #2F4B26; }
  .button.secondaryDark {
    background-color: #F18805;
    color: #2F4B26; }
    .button.secondaryDark:hover, .button.secondaryDark:focus {
      background-color: #c16d04;
      color: #2F4B26; }
  .button.secondaryLight {
    background-color: #FFCC3F;
    color: #2F4B26; }
    .button.secondaryLight:hover, .button.secondaryLight:focus {
      background-color: #febb00;
      color: #2F4B26; }
  .button.tertiary {
    background-color: #7AB4B0;
    color: #2F4B26; }
    .button.tertiary:hover, .button.tertiary:focus {
      background-color: #579a96;
      color: #2F4B26; }
  .button.tertiaryDark {
    background-color: #2D607C;
    color: #fefefe; }
    .button.tertiaryDark:hover, .button.tertiaryDark:focus {
      background-color: #244d63;
      color: #fefefe; }
  .button.success {
    background-color: #3adb76;
    color: #2F4B26; }
    .button.success:hover, .button.success:focus {
      background-color: #22bb5b;
      color: #2F4B26; }
  .button.warning {
    background-color: #ffae00;
    color: #2F4B26; }
    .button.warning:hover, .button.warning:focus {
      background-color: #cc8b00;
      color: #2F4B26; }
  .button.alert {
    background-color: #cc4b37;
    color: #fefefe; }
    .button.alert:hover, .button.alert:focus {
      background-color: #a53b2a;
      color: #fefefe; }
  .button.hollow {
    border: 1px solid #7A972C;
    color: #7A972C; }
    .button.hollow, .button.hollow:hover, .button.hollow:focus {
      background-color: transparent; }
    .button.hollow:hover, .button.hollow:focus {
      border-color: #3d4c16;
      color: #3d4c16; }
    .button.hollow.primary {
      border: 1px solid #7A972C;
      color: #7A972C; }
      .button.hollow.primary:hover, .button.hollow.primary:focus {
        border-color: #3d4c16;
        color: #3d4c16; }
    .button.hollow.primaryDark {
      border: 1px solid #2F4B26;
      color: #2F4B26; }
      .button.hollow.primaryDark:hover, .button.hollow.primaryDark:focus {
        border-color: #182613;
        color: #182613; }
    .button.hollow.primaryLight {
      border: 1px solid #B7CE63;
      color: #B7CE63; }
      .button.hollow.primaryLight:hover, .button.hollow.primaryLight:focus {
        border-color: #637424;
        color: #637424; }
    .button.hollow.secondary {
      border: 1px solid #E7A400;
      color: #E7A400; }
      .button.hollow.secondary:hover, .button.hollow.secondary:focus {
        border-color: #745200;
        color: #745200; }
    .button.hollow.secondaryDark {
      border: 1px solid #F18805;
      color: #F18805; }
      .button.hollow.secondaryDark:hover, .button.hollow.secondaryDark:focus {
        border-color: #794403;
        color: #794403; }
    .button.hollow.secondaryLight {
      border: 1px solid #FFCC3F;
      color: #FFCC3F; }
      .button.hollow.secondaryLight:hover, .button.hollow.secondaryLight:focus {
        border-color: #9f7500;
        color: #9f7500; }
    .button.hollow.tertiary {
      border: 1px solid #7AB4B0;
      color: #7AB4B0; }
      .button.hollow.tertiary:hover, .button.hollow.tertiary:focus {
        border-color: #36615e;
        color: #36615e; }
    .button.hollow.tertiaryDark {
      border: 1px solid #2D607C;
      color: #2D607C; }
      .button.hollow.tertiaryDark:hover, .button.hollow.tertiaryDark:focus {
        border-color: #17303e;
        color: #17303e; }
    .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 #cc4b37;
      color: #cc4b37; }
      .button.hollow.alert:hover, .button.hollow.alert:focus {
        border-color: #67251a;
        color: #67251a; }
  .button.disabled, .button[disabled] {
    opacity: 0.25;
    cursor: not-allowed; }
    .button.disabled, .button.disabled:hover, .button.disabled:focus, .button[disabled], .button[disabled]:hover, .button[disabled]:focus {
      background-color: #7A972C;
      color: #fefefe; }
    .button.disabled.primary, .button[disabled].primary {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.primary, .button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary, .button[disabled].primary:hover, .button[disabled].primary:focus {
        background-color: #7A972C;
        color: #fefefe; }
    .button.disabled.primaryDark, .button[disabled].primaryDark {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.primaryDark, .button.disabled.primaryDark:hover, .button.disabled.primaryDark:focus, .button[disabled].primaryDark, .button[disabled].primaryDark:hover, .button[disabled].primaryDark:focus {
        background-color: #2F4B26;
        color: #fefefe; }
    .button.disabled.primaryLight, .button[disabled].primaryLight {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.primaryLight, .button.disabled.primaryLight:hover, .button.disabled.primaryLight:focus, .button[disabled].primaryLight, .button[disabled].primaryLight:hover, .button[disabled].primaryLight:focus {
        background-color: #B7CE63;
        color: #2F4B26; }
    .button.disabled.secondary, .button[disabled].secondary {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.secondary, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        background-color: #E7A400;
        color: #2F4B26; }
    .button.disabled.secondaryDark, .button[disabled].secondaryDark {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.secondaryDark, .button.disabled.secondaryDark:hover, .button.disabled.secondaryDark:focus, .button[disabled].secondaryDark, .button[disabled].secondaryDark:hover, .button[disabled].secondaryDark:focus {
        background-color: #F18805;
        color: #2F4B26; }
    .button.disabled.secondaryLight, .button[disabled].secondaryLight {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.secondaryLight, .button.disabled.secondaryLight:hover, .button.disabled.secondaryLight:focus, .button[disabled].secondaryLight, .button[disabled].secondaryLight:hover, .button[disabled].secondaryLight:focus {
        background-color: #FFCC3F;
        color: #2F4B26; }
    .button.disabled.tertiary, .button[disabled].tertiary {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.tertiary, .button.disabled.tertiary:hover, .button.disabled.tertiary:focus, .button[disabled].tertiary, .button[disabled].tertiary:hover, .button[disabled].tertiary:focus {
        background-color: #7AB4B0;
        color: #2F4B26; }
    .button.disabled.tertiaryDark, .button[disabled].tertiaryDark {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.tertiaryDark, .button.disabled.tertiaryDark:hover, .button.disabled.tertiaryDark:focus, .button[disabled].tertiaryDark, .button[disabled].tertiaryDark:hover, .button[disabled].tertiaryDark:focus {
        background-color: #2D607C;
        color: #fefefe; }
    .button.disabled.success, .button[disabled].success {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.success, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success, .button[disabled].success:hover, .button[disabled].success:focus {
        background-color: #3adb76;
        color: #2F4B26; }
    .button.disabled.warning, .button[disabled].warning {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.warning, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning, .button[disabled].warning:hover, .button[disabled].warning:focus {
        background-color: #ffae00;
        color: #2F4B26; }
    .button.disabled.alert, .button[disabled].alert {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.alert, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert, .button[disabled].alert:hover, .button[disabled].alert:focus {
        background-color: #cc4b37;
        color: #fefefe; }
  .button.dropdown::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.4em;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #fefefe transparent transparent;
    position: relative;
    top: 0.4em;
    display: inline-block;
    float: right;
    margin-left: 1em; }
  .button.dropdown.hollow::after {
    border-top-color: #B7CE63; }
  .button.dropdown.hollow.primary::after {
    border-top-color: #7A972C; }
  .button.dropdown.hollow.primaryDark::after {
    border-top-color: #2F4B26; }
  .button.dropdown.hollow.primaryLight::after {
    border-top-color: #B7CE63; }
  .button.dropdown.hollow.secondary::after {
    border-top-color: #E7A400; }
  .button.dropdown.hollow.secondaryDark::after {
    border-top-color: #F18805; }
  .button.dropdown.hollow.secondaryLight::after {
    border-top-color: #FFCC3F; }
  .button.dropdown.hollow.tertiary::after {
    border-top-color: #7AB4B0; }
  .button.dropdown.hollow.tertiaryDark::after {
    border-top-color: #2D607C; }
  .button.dropdown.hollow.success::after {
    border-top-color: #3adb76; }
  .button.dropdown.hollow.warning::after {
    border-top-color: #ffae00; }
  .button.dropdown.hollow.alert::after {
    border-top-color: #cc4b37; }
  .button.arrow-only::after {
    top: -0.1em;
    float: none;
    margin-left: 0; }

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

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

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

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

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

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

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

.badge {
  display: inline-block;
  min-width: 2.1em;
  padding: 0.3em;
  border-radius: 50%;
  font-size: 0.6rem;
  text-align: center;
  background: #7A972C;
  color: #fefefe; }
  .badge.primary {
    background: #7A972C;
    color: #0a0a0a; }
  .badge.primaryDark {
    background: #2F4B26;
    color: #fefefe; }
  .badge.primaryLight {
    background: #B7CE63;
    color: #0a0a0a; }
  .badge.secondary {
    background: #E7A400;
    color: #0a0a0a; }
  .badge.secondaryDark {
    background: #F18805;
    color: #0a0a0a; }
  .badge.secondaryLight {
    background: #FFCC3F;
    color: #0a0a0a; }
  .badge.tertiary {
    background: #7AB4B0;
    color: #0a0a0a; }
  .badge.tertiaryDark {
    background: #2D607C;
    color: #fefefe; }
  .badge.success {
    background: #3adb76;
    color: #0a0a0a; }
  .badge.warning {
    background: #ffae00;
    color: #0a0a0a; }
  .badge.alert {
    background: #cc4b37;
    color: #fefefe; }

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

.button-group {
  margin-bottom: 1rem;
  font-size: 0; }
  .button-group::before, .button-group::after {
    display: table;
    content: ' '; }
  .button-group::after {
    clear: both; }
  .button-group .button {
    margin: 0;
    margin-right: 1px;
    margin-bottom: 1px;
    font-size: 0.9rem; }
    .button-group .button:last-child {
      margin-right: 0; }
  .button-group.tiny .button {
    font-size: 0.6rem; }
  .button-group.small .button {
    font-size: 0.75rem; }
  .button-group.large .button {
    font-size: 1.25rem; }
  .button-group.expanded {
    margin-right: -1px; }
    .button-group.expanded::before, .button-group.expanded::after {
      display: none; }
    .button-group.expanded .button:first-child:last-child {
      width: 100%; }
    .button-group.expanded .button:first-child:nth-last-child(2), .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button {
      display: inline-block;
      width: calc(50% - 1px);
      margin-right: 1px; }
      .button-group.expanded .button:first-child:nth-last-child(2):last-child, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child {
        margin-right: -6px; }
    .button-group.expanded .button:first-child:nth-last-child(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button {
      display: inline-block;
      width: calc(33.33333% - 1px);
      margin-right: 1px; }
      .button-group.expanded .button:first-child:nth-last-child(3):last-child, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child {
        margin-right: -6px; }
    .button-group.expanded .button:first-child:nth-last-child(4), .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button {
      display: inline-block;
      width: calc(25% - 1px);
      margin-right: 1px; }
      .button-group.expanded .button:first-child:nth-last-child(4):last-child, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child {
        margin-right: -6px; }
    .button-group.expanded .button:first-child:nth-last-child(5), .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button {
      display: inline-block;
      width: calc(20% - 1px);
      margin-right: 1px; }
      .button-group.expanded .button:first-child:nth-last-child(5):last-child, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child {
        margin-right: -6px; }
    .button-group.expanded .button:first-child:nth-last-child(6), .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button {
      display: inline-block;
      width: calc(16.66667% - 1px);
      margin-right: 1px; }
      .button-group.expanded .button:first-child:nth-last-child(6):last-child, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child {
        margin-right: -6px; }
  .button-group.primary .button {
    background-color: #7A972C;
    color: #fefefe; }
    .button-group.primary .button:hover, .button-group.primary .button:focus {
      background-color: #627923;
      color: #fefefe; }
  .button-group.primaryDark .button {
    background-color: #2F4B26;
    color: #fefefe; }
    .button-group.primaryDark .button:hover, .button-group.primaryDark .button:focus {
      background-color: #263c1e;
      color: #fefefe; }
  .button-group.primaryLight .button {
    background-color: #B7CE63;
    color: #2F4B26; }
    .button-group.primaryLight .button:hover, .button-group.primaryLight .button:focus {
      background-color: #9eba3a;
      color: #2F4B26; }
  .button-group.secondary .button {
    background-color: #E7A400;
    color: #2F4B26; }
    .button-group.secondary .button:hover, .button-group.secondary .button:focus {
      background-color: #b98300;
      color: #2F4B26; }
  .button-group.secondaryDark .button {
    background-color: #F18805;
    color: #2F4B26; }
    .button-group.secondaryDark .button:hover, .button-group.secondaryDark .button:focus {
      background-color: #c16d04;
      color: #2F4B26; }
  .button-group.secondaryLight .button {
    background-color: #FFCC3F;
    color: #2F4B26; }
    .button-group.secondaryLight .button:hover, .button-group.secondaryLight .button:focus {
      background-color: #febb00;
      color: #2F4B26; }
  .button-group.tertiary .button {
    background-color: #7AB4B0;
    color: #2F4B26; }
    .button-group.tertiary .button:hover, .button-group.tertiary .button:focus {
      background-color: #579a96;
      color: #2F4B26; }
  .button-group.tertiaryDark .button {
    background-color: #2D607C;
    color: #fefefe; }
    .button-group.tertiaryDark .button:hover, .button-group.tertiaryDark .button:focus {
      background-color: #244d63;
      color: #fefefe; }
  .button-group.success .button {
    background-color: #3adb76;
    color: #2F4B26; }
    .button-group.success .button:hover, .button-group.success .button:focus {
      background-color: #22bb5b;
      color: #2F4B26; }
  .button-group.warning .button {
    background-color: #ffae00;
    color: #2F4B26; }
    .button-group.warning .button:hover, .button-group.warning .button:focus {
      background-color: #cc8b00;
      color: #2F4B26; }
  .button-group.alert .button {
    background-color: #cc4b37;
    color: #fefefe; }
    .button-group.alert .button:hover, .button-group.alert .button:focus {
      background-color: #a53b2a;
      color: #fefefe; }
  .button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
    width: 100%; }
    .button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
      margin-bottom: 0; }
  @media print, screen and (min-width: 40em) {
    .button-group.stacked-for-small .button {
      width: auto;
      margin-bottom: 0; } }
  @media print, screen and (min-width: 64em) {
    .button-group.stacked-for-medium .button {
      width: auto;
      margin-bottom: 0; } }
  @media screen and (max-width: 39.9375em) {
    .button-group.stacked-for-small.expanded {
      display: block; }
      .button-group.stacked-for-small.expanded .button {
        display: block;
        margin-right: 0; } }

.callout {
  position: relative;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: none;
  border-radius: 0;
  background-color: white;
  color: #4A4A4A; }
  .callout > :first-child {
    margin-top: 0; }
  .callout > :last-child {
    margin-bottom: 0; }
  .callout.primary {
    background-color: #edf4da;
    color: #4A4A4A; }
  .callout.primaryDark {
    background-color: #dcebd7;
    color: #4A4A4A; }
  .callout.primaryLight {
    background-color: #f4f8e8;
    color: #4A4A4A; }
  .callout.secondary {
    background-color: #fff3d5;
    color: #4A4A4A; }
  .callout.secondaryDark {
    background-color: #feedd8;
    color: #4A4A4A; }
  .callout.secondaryLight {
    background-color: #fff7e2;
    color: #4A4A4A; }
  .callout.tertiary {
    background-color: #ebf4f3;
    color: #4A4A4A; }
  .callout.tertiaryDark {
    background-color: #d9e9f1;
    color: #4A4A4A; }
  .callout.success {
    background-color: #e1faea;
    color: #4A4A4A; }
  .callout.warning {
    background-color: #fff3d9;
    color: #4A4A4A; }
  .callout.alert {
    background-color: #f7e4e1;
    color: #4A4A4A; }
  .callout.small {
    padding-top: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem; }
  .callout.large {
    padding-top: 3rem;
    padding-right: 3rem;
    padding-bottom: 3rem;
    padding-left: 3rem; }

.card {
  margin-bottom: 1rem;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
  background: rgba(190, 197, 173, 0.1);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 2px 2px 0 rgba(0, 0, 0, 0.24);
  overflow: hidden;
  color: #4A4A4A; }
  .card > :last-child {
    margin-bottom: 0; }

.card-divider {
  padding: 1rem;
  background: #e6e6e6; }
  .card-divider > :last-child {
    margin-bottom: 0; }

.card-section {
  padding: 1rem; }
  .card-section > :last-child {
    margin-bottom: 0; }

.close-button {
  position: absolute;
  color: #4A4A4A;
  cursor: pointer; }
  [data-whatinput='mouse'] .close-button {
    outline: 0; }
  .close-button:hover, .close-button:focus {
    color: #0a0a0a; }
  .close-button.small {
    right: 0.66rem;
    top: 0.33em;
    font-size: 1.5em;
    line-height: 1; }
  .close-button, .close-button.medium {
    right: 1rem;
    top: 0.5rem;
    font-size: 2em;
    line-height: 1; }

.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 select,
  .menu a,
  .menu button {
    margin-bottom: 0; }
  .menu > li > a img,
  .menu > li > a i,
  .menu > li > a svg {
    vertical-align: middle; }
    .menu > li > a img + span,
    .menu > li > a i + span,
    .menu > li > a svg + span {
      vertical-align: middle; }
  .menu > li > a img,
  .menu > li > a i,
  .menu > li > a svg {
    margin-right: 0.25rem;
    display: inline-block; }
  .menu > li, .menu.horizontal > li {
    display: table-cell; }
  .menu.expanded {
    display: table;
    width: 100%;
    table-layout: fixed; }
    .menu.expanded > li:first-child:last-child {
      width: 100%; }
  .menu.vertical > li {
    display: block; }
  @media print, screen and (min-width: 40em) {
    .menu.medium-horizontal > li {
      display: table-cell; }
    .menu.medium-expanded {
      display: table;
      width: 100%;
      table-layout: fixed; }
      .menu.medium-expanded > li:first-child:last-child {
        width: 100%; }
    .menu.medium-vertical > li {
      display: block; } }
  @media print, screen and (min-width: 64em) {
    .menu.large-horizontal > li {
      display: table-cell; }
    .menu.large-expanded {
      display: table;
      width: 100%;
      table-layout: fixed; }
      .menu.large-expanded > li:first-child:last-child {
        width: 100%; }
    .menu.large-vertical > li {
      display: block; } }
  .menu.simple li {
    display: inline-block;
    vertical-align: top;
    line-height: 1; }
  .menu.simple a {
    padding: 0; }
  .menu.simple li {
    margin-left: 0;
    margin-right: 1rem; }
  .menu.simple.align-right li {
    margin-right: 0;
    margin-left: 1rem; }
  .menu.align-right::before, .menu.align-right::after {
    display: table;
    content: ' '; }
  .menu.align-right::after {
    clear: both; }
  .menu.align-right > li {
    float: right; }
  .menu.icon-top > li > a {
    text-align: center; }
    .menu.icon-top > li > a img,
    .menu.icon-top > li > a i,
    .menu.icon-top > li > a svg {
      display: block;
      margin: 0 auto 0.25rem; }
  .menu.icon-top.vertical a > span {
    margin: auto; }
  .menu.nested {
    margin-left: 1rem; }
  .menu .active > a {
    background: #7A972C;
    color: #fefefe; }
  .menu.menu-bordered li {
    border: 1px solid #e6e6e6; }
    .menu.menu-bordered li:not(:first-child) {
      border-top: 0; }
  .menu.menu-hover li:hover {
    background-color: #e6e6e6; }

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

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

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

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

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

.is-drilldown {
  position: relative;
  overflow: hidden; }
  .is-drilldown li {
    display: block; }
  .is-drilldown.animate-height {
    transition: height 0.5s; }

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

.drilldown-submenu-cover-previous {
  min-height: 100%; }

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

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

.dropdown-pane {
  position: absolute;
  z-index: 10;
  display: block;
  width: 300px;
  padding: 1rem;
  visibility: hidden;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  font-size: 1rem; }
  .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 {
  top: 100%;
  right: 0;
  left: auto; }

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

.dropdown.menu > li.is-dropdown-submenu-parent > a {
  position: relative;
  padding-right: 1.5rem; }

.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #7A972C transparent transparent;
  right: 5px;
  margin-top: -3px; }

[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 {
  right: 100%;
  left: auto; }

.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%; }

.dropdown.menu.vertical > li > a::after {
  right: 14px; }

.dropdown.menu.vertical > li.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #7A972C transparent transparent; }

.dropdown.menu.vertical > li.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #7A972C; }

@media print, screen and (min-width: 40em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto; }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0; }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem; }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #7A972C transparent transparent;
    right: 5px;
    margin-top: -3px; }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto; }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; }
  .dropdown.menu.medium-vertical > li > a::after {
    right: 14px; }
  .dropdown.menu.medium-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #7A972C transparent transparent; }
  .dropdown.menu.medium-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #7A972C; } }

@media print, screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto; }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0; }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem; }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #7A972C transparent transparent;
    right: 5px;
    margin-top: -3px; }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto; }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px; }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #7A972C transparent transparent; }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #7A972C; } }

.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto; }

.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: -6px; }
  .is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
    top: 100%;
    left: auto; }
  .is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto; }
  .is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; }

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

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

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  border-radius: 0;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #7A972C;
  color: #fefefe; }
  .label.primary {
    background: #7A972C;
    color: #0a0a0a; }
  .label.primaryDark {
    background: #2F4B26;
    color: #fefefe; }
  .label.primaryLight {
    background: #B7CE63;
    color: #0a0a0a; }
  .label.secondary {
    background: #E7A400;
    color: #0a0a0a; }
  .label.secondaryDark {
    background: #F18805;
    color: #0a0a0a; }
  .label.secondaryLight {
    background: #FFCC3F;
    color: #0a0a0a; }
  .label.tertiary {
    background: #7AB4B0;
    color: #0a0a0a; }
  .label.tertiaryDark {
    background: #2D607C;
    color: #fefefe; }
  .label.success {
    background: #3adb76;
    color: #0a0a0a; }
  .label.warning {
    background: #ffae00;
    color: #0a0a0a; }
  .label.alert {
    background: #cc4b37;
    color: #fefefe; }

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

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

.is-off-canvas-open {
  overflow: hidden; }

.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: rgba(254, 254, 254, 0.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden; }
  .js-off-canvas-overlay.is-visible {
    opacity: 1;
    visibility: visible; }
  .js-off-canvas-overlay.is-closable {
    cursor: pointer; }
  .js-off-canvas-overlay.is-overlay-absolute {
    position: absolute; }
  .js-off-canvas-overlay.is-overlay-fixed {
    position: fixed; }

.off-canvas-wrapper {
  position: relative;
  overflow: hidden; }

.off-canvas {
  position: fixed;
  z-index: 1;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #e6e6e6; }
  [data-whatinput='mouse'] .off-canvas {
    outline: 0; }
  .off-canvas.is-transition-overlap {
    z-index: 10; }
    .off-canvas.is-transition-overlap.is-open {
      box-shadow: 0 0 10px rgba(10, 10, 10, 0.7); }
  .off-canvas.is-open {
    transform: translate(0, 0); }

.off-canvas-absolute {
  position: absolute;
  z-index: 1;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #e6e6e6; }
  [data-whatinput='mouse'] .off-canvas-absolute {
    outline: 0; }
  .off-canvas-absolute.is-transition-overlap {
    z-index: 10; }
    .off-canvas-absolute.is-transition-overlap.is-open {
      box-shadow: 0 0 10px rgba(10, 10, 10, 0.7); }
  .off-canvas-absolute.is-open {
    transform: translate(0, 0); }

.position-left {
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  transform: translateX(-250px);
  overflow-y: auto; }
  .position-left.is-open ~ .off-canvas-content {
    transform: translateX(250px); }
  .position-left.is-transition-push::after {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 1px;
    box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
    content: " "; }
  .position-left.is-transition-overlap.is-open ~ .off-canvas-content {
    transform: none; }

.position-right {
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  transform: translateX(250px);
  overflow-y: auto; }
  .position-right.is-open ~ .off-canvas-content {
    transform: translateX(-250px); }
  .position-right.is-transition-push::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 1px;
    box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
    content: " "; }
  .position-right.is-transition-overlap.is-open ~ .off-canvas-content {
    transform: none; }

.position-top {
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  transform: translateY(-250px);
  overflow-x: auto; }
  .position-top.is-open ~ .off-canvas-content {
    transform: translateY(250px); }
  .position-top.is-transition-push::after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
    content: " "; }
  .position-top.is-transition-overlap.is-open ~ .off-canvas-content {
    transform: none; }

.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  transform: translateY(250px);
  overflow-x: auto; }
  .position-bottom.is-open ~ .off-canvas-content {
    transform: translateY(-250px); }
  .position-bottom.is-transition-push::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 100%;
    box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
    content: " "; }
  .position-bottom.is-transition-overlap.is-open ~ .off-canvas-content {
    transform: none; }

.off-canvas-content {
  transition: transform 0.5s ease;
  backface-visibility: hidden; }

@media print, screen and (min-width: 40em) {
  .position-left.reveal-for-medium {
    transform: none;
    z-index: 1; }
    .position-left.reveal-for-medium ~ .off-canvas-content {
      margin-left: 250px; }
  .position-right.reveal-for-medium {
    transform: none;
    z-index: 1; }
    .position-right.reveal-for-medium ~ .off-canvas-content {
      margin-right: 250px; }
  .position-top.reveal-for-medium {
    transform: none;
    z-index: 1; }
    .position-top.reveal-for-medium ~ .off-canvas-content {
      margin-top: 250px; }
  .position-bottom.reveal-for-medium {
    transform: none;
    z-index: 1; }
    .position-bottom.reveal-for-medium ~ .off-canvas-content {
      margin-bottom: 250px; } }

@media print, screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    transform: none;
    z-index: 1; }
    .position-left.reveal-for-large ~ .off-canvas-content {
      margin-left: 250px; }
  .position-right.reveal-for-large {
    transform: none;
    z-index: 1; }
    .position-right.reveal-for-large ~ .off-canvas-content {
      margin-right: 250px; }
  .position-top.reveal-for-large {
    transform: none;
    z-index: 1; }
    .position-top.reveal-for-large ~ .off-canvas-content {
      margin-top: 250px; }
  .position-bottom.reveal-for-large {
    transform: none;
    z-index: 1; }
    .position-bottom.reveal-for-large ~ .off-canvas-content {
      margin-bottom: 250px; } }

.orbit {
  position: relative; }

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

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

.orbit-figure {
  margin: 0; }

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

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

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

.orbit-previous {
  left: 0; }

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

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

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

.pagination-previous a::before,
.pagination-previous.disabled::before {
  display: inline-block;
  margin-right: 0.5rem;
  content: '\00ab'; }

.pagination-next a::after,
.pagination-next.disabled::after {
  display: inline-block;
  margin-left: 0.5rem;
  content: '\00bb'; }

.progress {
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 0;
  background-color: #cacaca; }
  .progress.primary .progress-meter {
    background-color: #7A972C; }
  .progress.primaryDark .progress-meter {
    background-color: #2F4B26; }
  .progress.primaryLight .progress-meter {
    background-color: #B7CE63; }
  .progress.secondary .progress-meter {
    background-color: #E7A400; }
  .progress.secondaryDark .progress-meter {
    background-color: #F18805; }
  .progress.secondaryLight .progress-meter {
    background-color: #FFCC3F; }
  .progress.tertiary .progress-meter {
    background-color: #7AB4B0; }
  .progress.tertiaryDark .progress-meter {
    background-color: #2D607C; }
  .progress.success .progress-meter {
    background-color: #3adb76; }
  .progress.warning .progress-meter {
    background-color: #ffae00; }
  .progress.alert .progress-meter {
    background-color: #cc4b37; }

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

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

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

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

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

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

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

.sticky-container {
  position: relative; }

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

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

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

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

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

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

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

.switch {
  height: 2rem;
  position: relative;
  margin-bottom: 1rem;
  outline: 0;
  font-size: 0.875rem;
  font-weight: bold;
  color: #fefefe;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none; }

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

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

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

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

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

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

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

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

table {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0; }
  table thead,
  table tbody,
  table tfoot {
    border: 1px solid #f1f1f1;
    background-color: #fefefe; }
  table caption {
    padding: 0.5rem 0.625rem 0.625rem;
    font-weight: bold; }
  table thead {
    background: #f8f8f8;
    color: #4A4A4A; }
  table tfoot {
    background: #f1f1f1;
    color: #4A4A4A; }
  table thead tr,
  table tfoot tr {
    background: transparent; }
  table thead th,
  table thead td,
  table tfoot th,
  table tfoot td {
    padding: 0.5rem 0.625rem 0.625rem;
    font-weight: bold;
    text-align: left; }
  table tbody th,
  table tbody td {
    padding: 0.5rem 0.625rem 0.625rem; }
  table tbody tr:nth-child(even) {
    border-bottom: 0;
    background-color: #f1f1f1; }
  table.unstriped tbody {
    background-color: #fefefe; }
    table.unstriped tbody tr {
      border-bottom: 0;
      border-bottom: 1px solid #f1f1f1;
      background-color: #fefefe; }

@media screen and (max-width: 63.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 thead tr:hover {
  background-color: #f3f3f3; }

table.hover tfoot tr:hover {
  background-color: #ececec; }

table.hover tbody tr:hover {
  background-color: #f9f9f9; }

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

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

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

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

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

.tabs.primary {
  background: #7A972C; }
  .tabs.primary > li > a {
    color: #0a0a0a; }
    .tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
      background: #84a330; }

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

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

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

.tabs-panel {
  display: none;
  padding: 1rem; }
  .tabs-panel[aria-hidden="false"] {
    display: block; }

.thumbnail {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 1rem;
  border: solid 4px #fefefe;
  border-radius: 0;
  box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
  line-height: 0; }

a.thumbnail {
  transition: box-shadow 200ms ease-out; }
  a.thumbnail:hover, a.thumbnail:focus {
    box-shadow: 0 0 6px 1px rgba(122, 151, 44, 0.5); }
  a.thumbnail image {
    box-shadow: none; }

.title-bar {
  padding: 0.5rem;
  background: #0a0a0a;
  color: #fefefe; }
  .title-bar::before, .title-bar::after {
    display: table;
    content: ' '; }
  .title-bar::after {
    clear: both; }
  .title-bar .menu-icon {
    margin-left: 0.25rem;
    margin-right: 0.25rem; }

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

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

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

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

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

.top-bar {
  padding: 0; }
  .top-bar::before, .top-bar::after {
    display: table;
    content: ' '; }
  .top-bar::after {
    clear: both; }
  .top-bar,
  .top-bar ul {
    background-color: transparent; }
  .top-bar ul ul {
    background-color: #fefefe; }
  .top-bar input {
    max-width: auto;
    margin-right: 1rem; }
  .top-bar .input-group-field {
    width: 100%;
    margin-right: 0; }
  .top-bar input.button {
    width: auto; }
  .top-bar .top-bar-left,
  .top-bar .top-bar-right {
    width: 100%; }
  @media print, screen and (min-width: 40em) {
    .top-bar .top-bar-left,
    .top-bar .top-bar-right {
      width: auto; } }
  @media screen and (max-width: 63.9375em) {
    .top-bar.stacked-for-medium .top-bar-left,
    .top-bar.stacked-for-medium .top-bar-right {
      width: 100%; } }
  @media screen and (max-width: 74.9375em) {
    .top-bar.stacked-for-large .top-bar-left,
    .top-bar.stacked-for-large .top-bar-right {
      width: 100%; } }

.top-bar-title {
  display: inline-block;
  float: left;
  padding: 0.45rem 1rem 0 1rem; }
  .top-bar-title .menu-icon {
    bottom: 2px; }

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

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

.hide {
  display: none !important; }

.invisible {
  visibility: hidden; }

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 63.9375em), screen and (min-width: 75em) {
  .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;
  width: auto;
  height: 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-right: auto;
  margin-left: auto; }

.clearfix::before, .clearfix::after {
  display: table;
  content: ' '; }

.clearfix::after {
  clear: both; }

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #7A972C;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 80px; }

.hamburger--3dx .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 80px; }

.hamburger--3dy .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Arrow Right
   */
.hamburger--arrow-r[aria-expanded="true"] .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }

.hamburger--arrow-r[aria-expanded="true"] .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.15s 0.4s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 20px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.1s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.1s; }

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.15s 0.4s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 20px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.1s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(270deg);
    transition-delay: 0.1s; }

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden; }
  .hamburger--emphatic .hamburger-inner {
    transition: background-color 0.2s 0.25s ease-in; }
    .hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in; }
    .hamburger--emphatic .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in; }
  .hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -80px;
      top: -80px;
      transform: translate3d(80px, 80px, 0) rotate(45deg);
      transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -80px;
      top: -80px;
      transform: translate3d(-80px, 80px, 0) rotate(-45deg);
      transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden; }
  .hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.2s 0.25s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in; }
  .hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -80px;
      top: 80px;
      transform: translate3d(80px, -80px, 0) rotate(-45deg);
      transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -80px;
      top: 80px;
      transform: translate3d(-80px, -80px, 0) rotate(45deg);
      transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 2px; }
  .hamburger--slider .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.2s; }
  .hamburger--slider .hamburger-inner::after {
    top: 20px; }

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg); }

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 2px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.2s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 20px; }

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(90deg); }

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.15s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.32s;
  background-color: transparent; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg); }

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.32s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.1s 0.14s ease, opacity 0.1s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

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

Stylesheet: Main Stylesheet

*************************************************/
/*********************
GENERAL STYLES
*********************/
.callout-button {
  display: inline-block;
  font-family: "Lato-Light", sans-serif;
  font-weight: 300;
  font-size: 2.125rem;
  text-align: center;
  letter-spacing: 2px;
  margin: 0 auto;
  padding: 0.9375rem 1.875rem;
  float: none;
  background-color: #F5B82E;
  color: #fefefe;
  transition: color 0.35s, background 0.35s; }
  .callout-button:hover, .callout-button:focus {
    background-color: #eca70b;
    color: #fefefe; }

.button {
  font-family: "Lato-Regular", sans-serif;
  font-weight: 400; }

.screen-reader-text {
  display: none; }

.animated, #video-tutorials .video-tutorials-swiper-container .swiper-slide .content {
  transition: all .3s ease; }

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

/*********************
H1, H2, H3, H4, H5 P STYLES
*********************/
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none; }

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

#banner {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 18.75rem; }
  #banner:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 18.75rem;
    background-image: linear-gradient(to bottom left, transparent, #330F0A);
    opacity: .6;
    z-index: 10; }
  #banner .attribution {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #fefefe;
    font-size: 0.75rem;
    z-index: 20;
    opacity: 0;
    margin: 0;
    padding: 0;
    transition: opacity 0.2s ease; }
    #banner .attribution a {
      color: #fff;
      text-decoration: underline; }
      #banner .attribution a:hover {
        color: #7A972C; }
  #banner:hover .attribution {
    opacity: 0.5; }
    #banner:hover .attribution:hover {
      opacity: 1; }
  #banner #inner-banner {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0.9375rem 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.3);
    border-top: 3px solid #E7A400; }
    #banner #inner-banner h1 {
      width: 100%;
      font-family: "Lato-Black", sans-serif;
      font-weight: 900;
      line-height: 1.2;
      color: #fefefe;
      padding: 0 0.9375rem; }
      #banner #inner-banner h1 small {
        font-size: 50%;
        font-family: "Lato-Light", sans-serif;
        font-weight: 300; }

/*********************
NAVIGATION STYLES
*********************/
.top-bar {
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  height: auto;
  padding: 0;
  transition: transform 0.35s, background 0.35s, height 0.35s; }
  .top-bar .top-bar-right, .top-bar .top-bar-left {
    width: auto; }
  .top-bar .top-bar-left {
    padding: 0.5rem; }
  .top-bar .title-area {
    z-index: 100; }
  .top-bar .menu {
    background-color: transparent;
    transition: margin 0.35s; }
    .top-bar .menu > li {
      height: 82px;
      transition: height 0.35s; }
      .top-bar .menu > li:first-child {
        border-left: solid 1px #B7CE63; }
      .top-bar .menu > li:not(:last-child) {
        border-right: solid 1px #B7CE63; }
      .top-bar .menu > li:hover {
        background-color: #7A972C; }
        .top-bar .menu > li:hover a {
          color: #fefefe; }
        .top-bar .menu > li:hover .submenu a {
          color: #7A972C; }
          .top-bar .menu > li:hover .submenu a:hover {
            color: #fefefe; }
      .top-bar .menu > li > a {
        color: #7A972C; }
        .top-bar .menu > li > a:hover {
          color: #fefefe; }
          .top-bar .menu > li > a:hover::after {
            border-color: #fefefe transparent transparent !important; }
      .top-bar .menu > li.active {
        background: #7A972C;
        color: #fefefe; }
        .top-bar .menu > li.active a {
          color: #fefefe; }
          .top-bar .menu > li.active a::after {
            border-color: #fefefe transparent transparent !important; }
      .top-bar .menu > li.translate {
        text-indent: -99999px;
        background-image: url("../images/gtglobe.svg");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 40%;
        width: 82px;
        transition: width 0.35s; }
        .top-bar .menu > li.translate ul {
          text-indent: 0; }
      .top-bar .menu > li.mobile-menu:hover {
        background: transparent; }
    .top-bar .menu .submenu, .top-bar .menu li.active .submenu {
      background-color: #fefefe; }
      .top-bar .menu .submenu li, .top-bar .menu li.active .submenu li {
        height: auto;
        color: #7A972C;
        border: none; }
      .top-bar .menu .submenu a, .top-bar .menu li.active .submenu a {
        color: #7A972C; }
        .top-bar .menu .submenu a:hover, .top-bar .menu li.active .submenu a:hover {
          color: #fefefe;
          background-color: #7A972C; }
      .top-bar .menu .submenu li.active a, .top-bar .menu li.active .submenu li.active a {
        color: #fefefe; }
  .top-bar .logo img {
    height: 50px;
    width: auto;
    margin: 8px;
    transition: transform 0.35s;
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform-origin: 0 0; }
  .top-bar li.menu-item-gtranslate {
    width: 5.125rem;
    transition: width 0.35s;
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform-origin: 100% 0%; }
    .top-bar li.menu-item-gtranslate:hover {
      background: #fefefe !important; }
    .top-bar li.menu-item-gtranslate a {
      background: transparent; }
  .top-bar .search {
    position: relative;
    width: 82px;
    height: 82px;
    padding: 20px;
    background-color: #B7CE63;
    font-size: 1.5rem;
    text-align: center;
    color: #fefefe;
    transition: all 0.35s;
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform-origin: 100% 0%; }
    .top-bar .search.expanded {
      position: absolute;
      top: 0;
      right: 0;
      width: 100vw;
      height: 100vh;
      z-index: 10000; }
      .top-bar .search.expanded .search-icon {
        display: block;
        margin-bottom: 1.875rem;
        font-size: 3.375rem; }
      .top-bar .search.expanded input[type='search'] {
        height: 3.75rem; }
    .top-bar .search .close {
      position: absolute;
      top: 0;
      right: 15px;
      display: none;
      padding: 5px 10px;
      text-align: center;
      color: #fefefe;
      line-height: 1; }
    .top-bar .search .search-icon {
      color: #2F4B26; }
    .top-bar .search .search-submit {
      background-color: #2F4B26;
      margin-top: 1.25rem; }

.search-widgets {
  color: #fefefe; }

.is-stuck .top-bar {
  height: 65px;
  box-shadow: 0 2px 4px 0 rgba(47, 75, 38, 0.3); }
  @media print, screen and (min-width: 64em) {
    .is-stuck .top-bar .menu {
      margin-right: -17px; } }
  .is-stuck .top-bar .menu > li {
    height: 65px; }
    .is-stuck .top-bar .menu > li.translate {
      width: 65px; }
  .is-stuck .top-bar .menu .submenu {
    margin-right: 0; }
    .is-stuck .top-bar .menu .submenu li {
      height: auto; }
  .is-stuck .top-bar .logo img {
    transform: scale(0.75);
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform-origin: 0 0; }
  .is-stuck .top-bar .menu-item-gtranslate {
    width: 4.0625rem; }
  .is-stuck .top-bar .search {
    transform: scale(0.79);
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform-origin: 100% 0%; }
    .is-stuck .top-bar .search.expanded {
      transform: scale(1); }

.sticky {
  z-index: 100; }

.off-canvas ul {
  margin-left: 0;
  margin-bottom: 2.5rem; }
  .off-canvas ul > li > a {
    border-bottom: 0px;
    outline: none;
    box-shadow: none; }
    .off-canvas ul > li > a:hover {
      background: #7A972C;
      color: #fefefe; }
  .off-canvas ul > li.translate > a:first-child {
    background-image: url("../images/gtglobe.svg");
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: 12%;
    padding-left: 3.125rem; }
  .off-canvas ul .dropdown {
    margin-left: 20px; }
  .off-canvas ul.submenu {
    box-shadow: inset 0px 11px 8px -10px rgba(10, 10, 10, 0.25), inset 0px -11px 8px -10px rgba(10, 10, 10, 0.25);
    -moz-box-shadow: inset 0px 11px 8px -10px rgba(10, 10, 10, 0.25), inset 0px -11px 8px -10px rgba(10, 10, 10, 0.25);
    -webkit-box-shadow: inset 0px 11px 8px -10px rgba(10, 10, 10, 0.25), inset 0px -11px 8px -10px rgba(10, 10, 10, 0.25);
    -o-box-shadow: inset 0px 11px 8px -10px rgba(10, 10, 10, 0.25), inset 0px -11px 8px -10px rgba(10, 10, 10, 0.25); }

/*********************
POSTS & CONTENT STYLES
*********************/
#content #inner-content {
  padding: 1rem 0rem;
  padding-bottom: 6.25rem;
  background: #fefefe; }

#content .intro-content {
  width: 91.66667%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  padding-top: 1.875rem;
  margin-right: auto;
  margin-left: auto; }
  @media print, screen and (min-width: 40em) {
    #content .intro-content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  #content .intro-content:last-child:not(:first-child) {
    float: right; }
  @media print, screen and (min-width: 40em) {
    #content .intro-content {
      width: 83.33333%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem;
      padding-top: 3.75rem; } }
  @media print, screen and (min-width: 40em) and (min-width: 40em) {
    #content .intro-content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media print, screen and (min-width: 40em) {
      #content .intro-content:last-child:not(:first-child) {
        float: right; } }
  @media print, screen and (min-width: 64em) {
    #content .intro-content {
      width: 83.33333%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 64em) and (min-width: 40em) {
    #content .intro-content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media print, screen and (min-width: 64em) {
      #content .intro-content:last-child:not(:first-child) {
        float: right; } }
  @media screen and (min-width: 75em) {
    #content .intro-content {
      width: 91.66667%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media screen and (min-width: 75em) and (min-width: 40em) {
    #content .intro-content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media screen and (min-width: 75em) {
      #content .intro-content:last-child:not(:first-child) {
        float: right; } }
  #content .intro-content, #content .intro-content:last-child:not(:first-child) {
    float: none;
    clear: both; }
  #content .intro-content .intro {
    font-family: "Lato-Regular", sans-serif;
    color: #4A4A4A;
    line-height: 1.4; }
    #content .intro-content .intro p, #content .intro-content .intro ul, #content .intro-content .intro ol {
      font-size: 1.5rem; }
    @media print, screen and (min-width: 40em) {
      #content .intro-content .intro p, #content .intro-content .intro ul, #content .intro-content .intro ol {
        font-size: 1.125rem; } }
    @media print, screen and (min-width: 64em) {
      #content .intro-content .intro p, #content .intro-content .intro ul, #content .intro-content .intro ol {
        font-size: 1.25rem; } }
    @media screen and (min-width: 75em) {
      #content .intro-content .intro p, #content .intro-content .intro ul, #content .intro-content .intro ol {
        font-size: 1.5rem; } }
    #content .intro-content .intro .downloads-cta {
      list-style: none; }
      #content .intro-content .intro .downloads-cta .item {
        color: #7A972C;
        line-height: 1.3;
        margin-bottom: 0.9375rem; }
        #content .intro-content .intro .downloads-cta .item:before {
          font-family: "FontAwesome";
          content: "";
          margin: 0 5px 0 -15px;
          color: #7A972C; }
        #content .intro-content .intro .downloads-cta .item.PDF:before {
          content: "\f1c1"; }
        #content .intro-content .intro .downloads-cta .item.XLS:before {
          content: "\f1c3"; }
        #content .intro-content .intro .downloads-cta .item.DOC:before {
          content: "\f1c2"; }
        #content .intro-content .intro .downloads-cta .item.PPT:before {
          content: "\f1c4"; }
      #content .intro-content .intro .downloads-cta .primary-dl {
        display: inline; }
      #content .intro-content .intro .downloads-cta .lang-dl {
        display: block;
        margin-left: 1rem; }
      #content .intro-content .intro .downloads-cta .lang-dl, #content .intro-content .intro .downloads-cta .lang-dl a {
        color: #FFCC3F; }
  #content .intro-content .intro-single {
    padding-bottom: 3.75rem; }
    #content .intro-content .intro-single p, #content .intro-content .intro-single ul, #content .intro-content .intro-single ol {
      font-size: 1.75rem; }
    @media print, screen and (min-width: 40em) {
      #content .intro-content .intro-single p, #content .intro-content .intro-single ul, #content .intro-content .intro-single ol {
        font-size: 1.5rem; } }
    @media print, screen and (min-width: 64em) {
      #content .intro-content .intro-single p, #content .intro-content .intro-single ul, #content .intro-content .intro-single ol {
        font-size: 1.75rem; } }
    @media screen and (min-width: 75em) {
      #content .intro-content .intro-single p, #content .intro-content .intro-single ul, #content .intro-content .intro-single ol {
        font-size: 1.75rem; } }
  #content .intro-content .callout {
    padding-top: 0; }
    #content .intro-content .callout h1 {
      font-size: 2.25rem; }
    #content .intro-content .callout h2 {
      font-size: 3rem; }
    #content .intro-content .callout h3 {
      font-size: 2.25rem; }
    #content .intro-content .callout h4 {
      font-size: 1.5rem; }
    @media print, screen and (min-width: 40em) {
      #content .intro-content .callout h1 {
        font-size: 4.9vw; }
      #content .intro-content .callout h2 {
        font-size: 4.2vw; }
      #content .intro-content .callout h3 {
        font-size: 3.6vw; }
      #content .intro-content .callout h4 {
        font-size: 2.4vw; } }
    @media screen and (min-width: 75em) {
      #content .intro-content .callout h1 {
        font-size: 4rem; }
      #content .intro-content .callout h2 {
        font-size: 3rem; }
      #content .intro-content .callout h3 {
        font-size: 2.25rem; }
      #content .intro-content .callout h4 {
        font-size: 1.5rem; } }
    #content .intro-content .callout h1, #content .intro-content .callout h2, #content .intro-content .callout h3, #content .intro-content .callout h4 {
      font-family: "Lato-Light", sans-serif;
      font-weight: 300;
      color: #7A972C;
      line-height: 1.4; }
      #content .intro-content .callout h1 strong, #content .intro-content .callout h2 strong, #content .intro-content .callout h3 strong, #content .intro-content .callout h4 strong {
        font-family: "Lato-Black", sans-serif;
        font-weight: 900; }

#content .section-wrap {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 101vw;
  height: auto;
  overflow: visible;
  margin-top: 100px;
  background: rgba(249, 241, 219, 0.5);
  box-shadow: inset 0 6px 20px 0 rgba(47, 75, 38, 0.2), inset 0 -6px 20px 0 rgba(47, 75, 38, 0.2);
  margin: 7.5rem auto 0 auto;
  padding: 40px 0 100px 0; }
  #content .section-wrap:before, #content .section-wrap:after {
    content: "";
    position: absolute;
    width: 208px;
    height: 104px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background-size: contain; }
  #content .section-wrap:before {
    top: -81px;
    background: url("../images/section-bg-top.png") no-repeat top center; }
  #content .section-wrap:after {
    bottom: 0px;
    background: url("../images/section-bg-bottom.png") no-repeat top center; }
  #content .section-wrap .section-content {
    width: 91.66667%;
    float: left;
    padding-right: 0.625rem;
    padding-left: 0.625rem;
    margin-right: auto;
    margin-left: auto; }
    #content .section-wrap .section-content header {
      margin: 0 auto; }
      #content .section-wrap .section-content header .section-icon {
        position: absolute;
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: auto;
        z-index: 10; }
    #content .section-wrap .section-content .section-header {
      font-family: "Lato-Black", sans-serif;
      font-weight: 900;
      line-height: 1.2;
      text-align: center;
      color: #2F4B26;
      margin-top: 10px; }
      #content .section-wrap .section-content .section-header span {
        font-family: "Lato-Regular", sans-serif;
        font-weight: 400;
        font-size: 80%;
        display: block; }
    #content .section-wrap .section-content article {
      margin: 1.875rem auto 2.5rem auto; }
      #content .section-wrap .section-content article h3 {
        font-family: "Lato-Light", sans-serif;
        font-weight: 300;
        text-align: center;
        text-transform: uppercase;
        color: #7A972C;
        letter-spacing: 1px;
        margin-top: 3.125rem;
        margin-bottom: 1.875rem; }
      #content .section-wrap .section-content article p {
        margin: 0.9375rem 0; }
      #content .section-wrap .section-content article .button {
        font-size: 1.25rem; }
    @media print, screen and (min-width: 40em) {
      #content .section-wrap .section-content {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
    #content .section-wrap .section-content:last-child:not(:first-child) {
      float: right; }
    @media print, screen and (min-width: 40em) {
      #content .section-wrap .section-content {
        width: 83.33333%;
        float: left;
        padding-right: 0.625rem;
        padding-left: 0.625rem; } }
  @media print, screen and (min-width: 40em) and (min-width: 40em) {
    #content .section-wrap .section-content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
    @media print, screen and (min-width: 40em) {
        #content .section-wrap .section-content:last-child:not(:first-child) {
          float: right; } }
    @media print, screen and (min-width: 64em) {
      #content .section-wrap .section-content {
        width: 66.66667%;
        float: left;
        padding-right: 0.625rem;
        padding-left: 0.625rem; } }
  @media print, screen and (min-width: 64em) and (min-width: 40em) {
    #content .section-wrap .section-content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
    @media print, screen and (min-width: 64em) {
        #content .section-wrap .section-content:last-child:not(:first-child) {
          float: right; } }
    #content .section-wrap .section-content, #content .section-wrap .section-content:last-child:not(:first-child) {
      float: none;
      clear: both; }
    #content .section-wrap .section-content h3, #content .section-wrap .section-content h4, #content .section-wrap .section-content h5 {
      color: #7A972C; }

#content .entry-body {
  padding-bottom: 5rem;
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  margin-top: rem-cacl(30px);
  margin-bottom: rem-cacl(30px);
  margin-right: auto;
  margin-left: auto; }
  @media print, screen and (min-width: 40em) {
    #content .entry-body {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  #content .entry-body:last-child:not(:first-child) {
    float: right; }
  @media print, screen and (min-width: 40em) {
    #content .entry-body {
      width: 83.33333%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem;
      margin-top: rem-cacl(40px);
      margin-bottom: rem-cacl(40px); } }
  @media print, screen and (min-width: 40em) and (min-width: 40em) {
    #content .entry-body {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media print, screen and (min-width: 40em) {
      #content .entry-body:last-child:not(:first-child) {
        float: right; } }
  @media print, screen and (min-width: 64em) {
    #content .entry-body {
      width: 66.66667%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem;
      margin-top: rem-cacl(40px);
      margin-bottom: rem-cacl(40px); } }
  @media print, screen and (min-width: 64em) and (min-width: 40em) {
    #content .entry-body {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media print, screen and (min-width: 64em) {
      #content .entry-body:last-child:not(:first-child) {
        float: right; } }
  #content .entry-body, #content .entry-body:last-child:not(:first-child) {
    float: none;
    clear: both; }
  #content .entry-body h1, #content .entry-body h2, #content .entry-body h3, #content .entry-body h4, #content .entry-body h5 {
    color: #7A972C;
    margin-top: 3.125rem;
    margin-bottom: 1.875rem; }
  #content .entry-body h3 {
    font-family: "Lato-Light", sans-serif;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    color: #7A972C;
    letter-spacing: 1px;
    margin-top: 3.125rem;
    margin-bottom: 1.875rem; }

#content #committee-logos .section-header {
  font-family: "Lato-Light", sans-serif;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
  color: #7A972C;
  letter-spacing: 1px;
  margin-bottom: 1.875rem; }
  #content #committee-logos .section-header a {
    position: relative;
    display: inline-block;
    padding: 5px 15px 0;
    color: #7A972C;
    text-decoration: none; }
    #content #committee-logos .section-header a:hover {
      cursor: text; }

.blog #content #inner-content main article {
  margin-bottom: 3.75rem; }

.search-results main {
  padding-top: 1.875rem; }

#content .widgets-container {
  position: relative;
  overflow: visible;
  margin-left: auto;
  margin-right: auto; }
  #content .widgets-container .section-icon {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: auto;
    z-index: 10; }
  #content .widgets-container .section-header {
    font-family: "Lato-Black", sans-serif;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    color: #2F4B26;
    margin: 2.5rem 0 3.75rem 0; }
  #content .widgets-container .widget-header {
    position: absolute;
    top: -0.875rem;
    width: 100%;
    background: url("../images/green-squares.svg") no-repeat right top;
    background-size: contain;
    padding: 1.5rem 0;
    z-index: 10; }
    #content .widgets-container .widget-header h4 {
      width: 100%;
      background: rgba(255, 255, 255, 0.8);
      border-top: 1px solid #E7A400;
      border-bottom: 1px solid #E7A400;
      padding-left: 0.625rem;
      font-family: "Lato-Bold", sans-serif;
      font-weight: 700;
      font-size: 1.5rem;
      color: #2F4B26;
      letter-spacing: 0.125rem;
      text-transform: uppercase; }
  #content .widgets-container .widgets-content > .widget {
    float: left;
    width: 100%; }
    #content .widgets-container .widgets-content > .widget:nth-of-type(1n) {
      clear: none; }
    #content .widgets-container .widgets-content > .widget:nth-of-type(1n+1) {
      clear: both; }
    #content .widgets-container .widgets-content > .widget:last-child {
      float: left; }
  @media print, screen and (min-width: 64em) {
    #content .widgets-container .widgets-content > .widget {
      float: left;
      width: 33.33333%;
      padding-right: 1.875rem;
      padding-left: 1.875rem; }
      #content .widgets-container .widgets-content > .widget:nth-of-type(1n) {
        clear: none; }
      #content .widgets-container .widgets-content > .widget:nth-of-type(3n+1) {
        clear: both; }
      #content .widgets-container .widgets-content > .widget:last-child {
        float: left; } }
  #content .widgets-container .widgets-content.double {
    width: 83.33333%;
    float: left;
    padding-right: 0.625rem;
    padding-left: 0.625rem;
    margin-right: auto;
    margin-left: auto; }
    @media print, screen and (min-width: 40em) {
      #content .widgets-container .widgets-content.double {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
    #content .widgets-container .widgets-content.double:last-child:not(:first-child) {
      float: right; }
    #content .widgets-container .widgets-content.double, #content .widgets-container .widgets-content.double:last-child:not(:first-child) {
      float: none;
      clear: both; }
    #content .widgets-container .widgets-content.double > .widget {
      float: left;
      width: 100%; }
      #content .widgets-container .widgets-content.double > .widget:nth-of-type(1n) {
        clear: none; }
      #content .widgets-container .widgets-content.double > .widget:nth-of-type(1n+1) {
        clear: both; }
      #content .widgets-container .widgets-content.double > .widget:last-child {
        float: left; }
    @media print, screen and (min-width: 64em) {
      #content .widgets-container .widgets-content.double > .widget {
        float: left;
        width: 50%;
        padding-right: 3.125rem;
        padding-left: 3.125rem; }
        #content .widgets-container .widgets-content.double > .widget:nth-of-type(1n) {
          clear: none; }
        #content .widgets-container .widgets-content.double > .widget:nth-of-type(2n+1) {
          clear: both; }
        #content .widgets-container .widgets-content.double > .widget:last-child {
          float: left; } }
  #content .widgets-container .widgets-content .widget {
    position: relative;
    overflow: visible;
    margin-bottom: 2.5rem; }
    #content .widgets-container .widgets-content .widget main {
      width: 100%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; }
      @media print, screen and (min-width: 40em) {
        #content .widgets-container .widgets-content .widget main {
          padding-right: 0.9375rem;
          padding-left: 0.9375rem; } }
      #content .widgets-container .widgets-content .widget main:last-child:not(:first-child) {
        float: right; }
    #content .widgets-container .widgets-content .widget .entry-title {
      font-size: 1.75rem; }
    @media screen and (min-width: 40em) and (max-width: 63.9375em) {
      #content .widgets-container .widgets-content .widget .entry-title {
        font-size: 1rem; } }
    @media print, screen and (min-width: 64em) {
      #content .widgets-container .widgets-content .widget .entry-title {
        font-size: 1.5rem; } }
  #content .widgets-container .widgets-content .content {
    position: relative;
    background: #fefefe;
    overflow: visible;
    box-shadow: 0 2px 4px 0 rgba(47, 75, 38, 0.2);
    padding: 6.25rem 0 0 0;
    min-height: 26.25rem; }
  #content .widgets-container .widgets-content .widget-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10; }
  #content .widgets-container .widgets-content .button {
    width: 100%;
    background: #FFCC3F;
    font-size: 1.125rem;
    letter-spacing: 0.0625rem;
    margin: 0;
    text-transform: uppercase; }
    #content .widgets-container .widgets-content .button.alt {
      background: #B7CE63;
      margin-bottom: 0.625rem; }
  #content .widgets-container .widgets-content .case-studies-widget .content {
    padding: 0;
    padding-bottom: 10px; }
    #content .widgets-container .widgets-content .case-studies-widget .content main {
      padding: 0;
      overflow: hidden; }
      #content .widgets-container .widgets-content .case-studies-widget .content main .swiper-slide {
        min-height: 23.125rem;
        position: relative;
        text-align: center;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        /* Center slide text vertically */
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center; }
        #content .widgets-container .widgets-content .case-studies-widget .content main .swiper-slide:after {
          position: absolute;
          width: 100%;
          height: 100%;
          top: 0;
          left: 0;
          z-index: 10;
          content: '';
          background-image: linear-gradient(-180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0.1) 54%); }
      #content .widgets-container .widgets-content .case-studies-widget .content main .swiper-slide .slide-content {
        padding: 6.25rem 0.9375rem 0 0.9375rem;
        text-align: center;
        position: relative;
        z-index: 20; }
        #content .widgets-container .widgets-content .case-studies-widget .content main .swiper-slide .slide-content h5 a {
          font-family: "Lato-Black", sans-serif;
          font-size: 1.625rem;
          color: #fefefe;
          letter-spacing: 0;
          text-shadow: 0 0 4px rgba(47, 75, 38, 0.5); }
        #content .widgets-container .widgets-content .case-studies-widget .content main .swiper-slide .slide-content .callout-button {
          background: #FFCC3F;
          border: none;
          font-family: "Lato-Regular", sans-serif;
          font-weight: 400;
          font-size: 1.25rem;
          color: #fefefe;
          padding: 0.625rem 1.875rem; }
  #content .widgets-container .widgets-content .resources-widget ul.downloads {
    list-style: none;
    margin-bottom: 1.25rem;
    color: #7A972C; }
    #content .widgets-container .widgets-content .resources-widget ul.downloads .item {
      margin-bottom: 0.625rem; }
      #content .widgets-container .widgets-content .resources-widget ul.downloads .item h3 {
        font-family: "Lato-Bold", sans-serif;
        font-weight: 700;
        font-size: 18px;
        line-height: 1.2;
        margin: 0; }
      #content .widgets-container .widgets-content .resources-widget ul.downloads .item ul {
        list-style: none;
        padding: 0;
        margin: 0; }
        #content .widgets-container .widgets-content .resources-widget ul.downloads .item ul li {
          margin-left: 0.3125rem;
          padding: 0 0.625rem 0 0;
          display: inline-block;
          font-size: 1rem; }
          #content .widgets-container .widgets-content .resources-widget ul.downloads .item ul li:not(:last-child) {
            border-right: solid 1px #fefefe; }
          #content .widgets-container .widgets-content .resources-widget ul.downloads .item ul li.file-type {
            border-right: none;
            margin: 0;
            padding: 0; }
          #content .widgets-container .widgets-content .resources-widget ul.downloads .item ul li a {
            color: #E7A400; }
  #content .widgets-container .widgets-content .training-widget h1, #content .widgets-container .widgets-content .training-widget h2, #content .widgets-container .widgets-content .training-widget h3, #content .widgets-container .widgets-content .training-widget h4, #content .widgets-container .widgets-content .training-widget h5, #content .widgets-container .widgets-content .training-widget h6 {
    color: #7A972C; }

#content .no-section .widgets-container .section-icon {
  position: relative;
  top: 30px; }

/* Resources Page Customizations */
.page-id-15 .section-wrap a {
  color: #E7A400; }

/* Box Content Grid */
.box-grid {
  margin-bottom: 0.625rem; }
  .box-grid .row:nth-child(odd) .content-box:nth-child(1n) {
    background: #2D607C; }
  .box-grid .row:nth-child(odd) .content-box:nth-child(2n) {
    background: #7AB4B0; }
  .box-grid .row:nth-child(even) .content-box:nth-child(1n) {
    background: #B7CE63; }
  .box-grid .row:nth-child(even) .content-box:nth-child(2n) {
    background: #7A972C; }
  .box-grid .content-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 3.75rem 1.875rem;
    min-height: 300px; }
    .box-grid .content-box .title {
      text-align: center;
      transition: all 0.3s ease; }
      .box-grid .content-box .title a {
        color: #fefefe; }
    .box-grid .content-box:hover {
      cursor: pointer; }
      .box-grid .content-box:hover .title {
        transform: translateY(-10px); }

.box-content article {
  padding: 3.75rem; }

/* FLW Standard Chapter Boxes */
.page-id-5 #content .section-content {
  position: relative;
  min-height: 37.5rem;
  margin-bottom: 12.5rem; }
  .page-id-5 #content .section-content header {
    margin: 0 auto; }
    .page-id-5 #content .section-content header .section-icon {
      position: absolute;
      top: -80px;
      left: 50%;
      transform: translateX(-50%);
      width: 54px;
      height: auto;
      z-index: 10; }
  .page-id-5 #content .section-content .section-header {
    font-family: "Lato-Black", sans-serif;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    color: #2F4B26;
    margin-top: 10px; }
    .page-id-5 #content .section-content .section-header span {
      font-family: "Lato-Regular", sans-serif;
      font-weight: 400;
      font-size: 80%;
      display: block; }

.container {
  height: 100%; }

.bl-main {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden; }
  .bl-main > section {
    position: absolute;
    width: calc(50% - 5px);
    height: calc(50% - 5px); }
    .bl-main > section:first-child {
      top: 0;
      left: 0;
      background: #2D607C; }
    .bl-main > section:nth-child(2) {
      top: 0;
      right: 0;
      background: #7AB4B0; }
    .bl-main > section:nth-child(3) {
      bottom: 0;
      left: 0;
      background: #B7CE63; }
    .bl-main > section:nth-child(4) {
      bottom: 0;
      right: 0;
      background: #7A972C; }
    .bl-main > section .bl-icon-close {
      position: absolute;
      top: 20px;
      right: 20px;
      cursor: pointer;
      z-index: 100;
      opacity: 0;
      pointer-events: none; }
      .bl-main > section .bl-icon-close:before {
        content: "\f2d3"; }

.bl-box {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 1;
  /* Centering with flexbox */
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center; }
  .bl-box .part-title {
    padding: 1.25rem; }

#content .section-wrap .section-content .bl-main {
  color: #fefefe; }
  #content .section-wrap .section-content .bl-main .part-title {
    text-align: center;
    margin: 0;
    width: 100%;
    letter-spacing: 2px;
    font-family: "Lato-Black", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    color: #fefefe;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto; }
    @media screen and (max-width: 39.9375em) {
      #content .section-wrap .section-content .bl-main .part-title {
        font-size: 1rem; } }
    #content .section-wrap .section-content .bl-main .part-title span.part-number {
      display: block;
      font-family: "Lato-Regular", sans-serif;
      font-weight: 400; }
  #content .section-wrap .section-content .bl-main .part-description {
    font-size: 1.625rem;
    line-height: 1.3;
    text-align: center;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px; }
    @media screen and (max-width: 39.9375em) {
      #content .section-wrap .section-content .bl-main .part-description {
        font-size: 1rem; } }
  #content .section-wrap .section-content .bl-main p, #content .section-wrap .section-content .bl-main ul, #content .section-wrap .section-content .bl-main ol, #content .section-wrap .section-content .bl-main a {
    color: #fefefe; }
  #content .section-wrap .section-content .bl-main a:hover {
    opacity: 0.80; }

.bl-icon {
  font-family: FontAwesome;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  cursor: pointer;
  -webkit-font-smoothing: antialiased; }

.bl-content {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 60px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  padding: 0 20px;
  overflow: hidden;
  overflow-y: auto;
  color: #fefefe; }

/* Transition classes and properties */
/* Separated for a better overview and control */
.bl-main > section {
  transition: all 0.5s ease-in-out; }

.bl-main > section.bl-expand {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0; }

.bl-main > section.bl-expand-top {
  z-index: 100; }

.bl-main > section:first-child.bl-expand {
  background: #2D607C; }

.bl-main > section:nth-child(2).bl-expand {
  background: #7AB4B0; }

.bl-main > section:nth-child(3).bl-expand {
  background: #B7CE63; }

.bl-main > section:nth-child(4).bl-expand {
  background: #7A972C; }

.bl-main.bl-expand-item > section:not(.bl-expand),
.bl-main.bl-expand-item > section.bl-scale-down {
  transform: scale(0.5);
  opacity: 0; }

.bl-box {
  transition: opacity 0.2s linear 0.5s; }

section.bl-expand .bl-box {
  opacity: 0;
  transition: opacity 0s linear; }

.bl-box h3 {
  transition: all 0.2s ease-in-out; }

.no-touch section:not(.bl-expand) .bl-box:hover h3 {
  transform: translateY(-15px); }

.bl-content,
.bl-icon-close {
  transition: opacity 0.1s linear 0s; }

section.bl-expand .bl-content,
section.bl-expand .bl-icon-close {
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.3s linear 0.5s; }

/* Case Studies */
#content .section-wrap .section-content .case-study {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  margin-right: auto;
  margin-left: auto; }
  #content .section-wrap .section-content .case-study .article-header {
    position: relative;
    background-position: no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 18.75rem;
    margin-bottom: 1.25rem; }
    #content .section-wrap .section-content .case-study .article-header .title {
      position: absolute;
      bottom: 0;
      margin: 0;
      width: 100%;
      background-color: rgba(255, 255, 255, 0.8);
      padding: 20px;
      border-top: 2px solid #E7A400;
      font-weight: 700;
      line-height: 1.2; }
  @media print, screen and (min-width: 40em) {
    #content .section-wrap .section-content .case-study {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  #content .section-wrap .section-content .case-study:last-child:not(:first-child) {
    float: right; }
  @media print, screen and (min-width: 40em) {
    #content .section-wrap .section-content .case-study {
      width: 83.33333%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 40em) and (min-width: 40em) {
    #content .section-wrap .section-content .case-study {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media print, screen and (min-width: 40em) {
      #content .section-wrap .section-content .case-study:last-child:not(:first-child) {
        float: right; } }
  @media print, screen and (min-width: 64em) {
    #content .section-wrap .section-content .case-study {
      width: 83.33333%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 64em) and (min-width: 40em) {
    #content .section-wrap .section-content .case-study {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media print, screen and (min-width: 64em) {
      #content .section-wrap .section-content .case-study:last-child:not(:first-child) {
        float: right; } }
  #content .section-wrap .section-content .case-study, #content .section-wrap .section-content .case-study:last-child:not(:first-child) {
    float: none;
    clear: both; }

.tablepress thead {
  color: #fefefe; }
  .tablepress thead th {
    background-color: #7A972C;
    font-family: "Lato-Regular", Helvetica, Roboto, Arial, sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: #fefefe; }
    .tablepress thead th:not(:last-child) {
      border-right: solid 1px #fff; }
    .tablepress thead th span {
      font-weight: normal;
      font-size: 0.8125rem;
      line-height: 0.9375rem;
      font-style: italic;
      display: block; }

.tablepress tr.odd td {
  background-color: #e9f1d1; }

.tablepress tr td {
  font-family: "Lato-Regular", Helvetica, Roboto, Arial, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.25rem; }
  .tablepress tr td ul {
    font-size: 0.9375rem;
    line-height: 1.25rem; }

/* Trainings */
#video-tutorials {
  position: relative;
  padding-bottom: 3.75rem; }
  #video-tutorials .section-header {
    font-family: "Lato-Black", sans-serif;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    color: #2F4B26;
    margin-bottom: 1.875rem;
    margin-top: 0.625rem; }
    #video-tutorials .section-header span {
      font-family: "Lato-Regular", sans-serif;
      font-weight: 400;
      font-size: 80%;
      display: block; }
  #video-tutorials .video-tutorials-swiper-container {
    position: relative;
    overflow: hidden; }
    #video-tutorials .video-tutorials-swiper-container .swiper-slide {
      min-height: 200px;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover; }
      #video-tutorials .video-tutorials-swiper-container .swiper-slide .content {
        position: absolute;
        height: calc(100% - 20px);
        width: calc(100% - 30px);
        padding: 0.625rem 0.9375rem;
        opacity: 0;
        background-color: rgba(0, 0, 0, 0.8); }
        #video-tutorials .video-tutorials-swiper-container .swiper-slide .content h2 {
          font-size: 1.375rem;
          color: #fefefe; }
          #video-tutorials .video-tutorials-swiper-container .swiper-slide .content h2 a {
            color: #fefefe; }
            #video-tutorials .video-tutorials-swiper-container .swiper-slide .content h2 a:hover {
              text-decoration: underline; }
        #video-tutorials .video-tutorials-swiper-container .swiper-slide .content .description {
          color: #fefefe; }
        #video-tutorials .video-tutorials-swiper-container .swiper-slide .content .watch-now-button {
          text-align: center;
          color: #fefefe;
          font-size: 1.375rem;
          display: block; }
      #video-tutorials .video-tutorials-swiper-container .swiper-slide:hover .content {
        opacity: 1; }
      @media screen and (max-width: 39.9375em) {
        #video-tutorials .video-tutorials-swiper-container .swiper-slide .content {
          opacity: 1; } }
  #video-tutorials .swiper-button-prev, #video-tutorials .swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23C8E9A0'%2F%3E%3C%2Fsvg%3E");
    left: -40px; }
  #video-tutorials .swiper-button-next, #video-tutorials .swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23C8E9A0'%2F%3E%3C%2Fsvg%3E");
    right: -40px; }

#content .section-wrap .section-content .upcoming h4.flag {
  display: inline-block;
  text-transform: uppercase;
  background-color: #FFCC3F;
  color: #fefefe;
  padding: 0.375rem 0.625rem;
  margin-top: 0;
  margin-bottom: 0; }
  @media print, screen and (min-width: 40em) {
    #content .section-wrap .section-content .upcoming h4.flag {
      margin-left: -8.9375rem; } }

#content .section-wrap .section-content .upcoming .article-header h3 {
  text-align: left; }

#content .section-wrap .section-content .upcoming .date-time {
  display: inline-block;
  padding: 0 0.9375rem 0 0;
  color: #7A972C;
  font-size: 1.25rem;
  text-transform: uppercase; }

#content .section-wrap .section-content .upcoming .button {
  margin-bottom: 2rem; }

#content .section-wrap .section-content .upcoming hr {
  border: solid 1px #FFCC3F; }

#content .section-wrap .section-content .past-training-header {
  text-align: center; }

.isotope {
  overflow: hidden;
  padding: 10px 0; }

#filters {
  text-align: center;
  margin-bottom: 30px; }
  #filters button {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 8px; }
    #filters button:not(:first-of-type):not(:last-of-type) {
      margin-right: 0.5rem; }
  #filters [data-filter="*"] {
    background: #4A4A4A;
    display: block;
    margin: 0 auto 20px auto; }
  #filters [data-filter=".cat_01_general"] {
    background: #574022; }
  #filters [data-filter=".cat_02_why-quantify"] {
    background: #D45113; }
  #filters [data-filter=".cat_03_what-to-quantify"] {
    background: #F09D06; }
  #filters [data-filter=".cat_04_how-to-quantify"] {
    background: #E6BF02; }
  #filters [data-filter=".cat_05_report"] {
    background: #7A972C; }
  #filters [data-filter=".cat_06_sector-specific"] {
    background: #2D607C; }
  #filters [data-filter=".cat_01_on-near-farm"] {
    background: #574022; }
  #filters [data-filter=".cat_02_retail"] {
    background: #D45113; }
  #filters [data-filter=".cat_03_manufacturing"] {
    background: #F09D06; }
  #filters [data-filter=".cat_04_hospitality-foodservice"] {
    background: #E6BF02; }
  #filters [data-filter=".cat_05_household-governmental"] {
    background: #7A972C; }

#load-more {
  margin: 10px auto;
  display: block; }

.isotope .hidden {
  display: none;
  width: 0px !important;
  height: 0px !important;
  margin: 0px !important;
  padding: 0px !important; }

.trainings-container .training .card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 280px;
  background: #fefefe;
  box-shadow: 0 0 10px 0 rgba(53, 58, 128, 0.12), 0 2px 10px 0 rgba(53, 58, 128, 0.24);
  border: none;
  transition: all 1s ease; }
  .trainings-container .training .card:hover {
    transform: scale(1.05); }
  .trainings-container .training .card .cat-bars {
    padding: 0;
    background: transparent;
    height: 6px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto; }
    .trainings-container .training .card .cat-bars .cat-bar {
      display: inline-block;
      width: 100%;
      height: 100%; }
    .trainings-container .training .card .cat-bars .cat_01_general {
      background: #574022; }
    .trainings-container .training .card .cat-bars .cat_02_why-quantify {
      background: #D45113; }
    .trainings-container .training .card .cat-bars .cat_03_what-to-quantify {
      background: #F09D06; }
    .trainings-container .training .card .cat-bars .cat_04_how-to-quantify {
      background: #E6BF02; }
    .trainings-container .training .card .cat-bars .cat_05_report {
      background: #7A972C; }
    .trainings-container .training .card .cat-bars .cat_06_sector-specific {
      background: #2D607C; }
  .trainings-container .training .card h4 {
    margin: 0; }
    .trainings-container .training .card h4 a {
      color: #4A4A4A; }
      .trainings-container .training .card h4 a:hover {
        text-decoration: underline; }
  .trainings-container .training .card .buttons {
    background: transparent;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .trainings-container .training .card .buttons .button {
      margin: 0;
      font-size: 18px;
      padding: 0.625rem 1.25rem; }
  .trainings-container .training .card .read-more {
    text-align: center;
    background: #7A972C;
    box-shadow: 0 -1px 0 0 #506b08, inset 0 1px 3px 0 #506b08;
    padding: 0.625rem 1.25rem; }
    .trainings-container .training .card .read-more a {
      color: #fefefe; }

.case-studies-container .casestudy .card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 280px;
  background: #fefefe;
  box-shadow: 0 0 10px 0 rgba(53, 58, 128, 0.12), 0 2px 10px 0 rgba(53, 58, 128, 0.24);
  border: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 1s ease; }
  .case-studies-container .casestudy .card:after {
    content: '';
    background: #fefefe;
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 1s ease; }
  .case-studies-container .casestudy .card:hover {
    transform: scale(1.05); }
    .case-studies-container .casestudy .card:hover:after {
      opacity: 0.65; }
  .case-studies-container .casestudy .card .card-divider, .case-studies-container .casestudy .card .card-section {
    position: relative;
    z-index: 10; }
  .case-studies-container .casestudy .card .card-section {
    position: absolute;
    top: 10px;
    z-index: 10; }
  .case-studies-container .casestudy .card .cat-bars {
    padding: 0;
    background: transparent;
    height: 6px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto; }
    .case-studies-container .casestudy .card .cat-bars .cat-bar {
      display: inline-block;
      width: 100%;
      height: 100%; }
    .case-studies-container .casestudy .card .cat-bars .cat_01_on-near-farm {
      background: #574022; }
    .case-studies-container .casestudy .card .cat-bars .cat_02_retail {
      background: #D45113; }
    .case-studies-container .casestudy .card .cat-bars .cat_03_manufacturing {
      background: #F09D06; }
    .case-studies-container .casestudy .card .cat-bars .cat_04_hospitality-foodservice {
      background: #E6BF02; }
    .case-studies-container .casestudy .card .cat-bars .cat_05_household-governmental {
      background: #7A972C; }
  .case-studies-container .casestudy .card h4 {
    margin: 0; }
    .case-studies-container .casestudy .card h4 a {
      color: #4A4A4A;
      font-weight: 700; }
      .case-studies-container .casestudy .card h4 a:hover {
        text-decoration: underline; }
  .case-studies-container .casestudy .card .buttons {
    background: transparent;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center; }
    .case-studies-container .casestudy .card .buttons .button {
      margin: 0;
      font-size: 18px;
      padding: 0.625rem 1.25rem; }
  .case-studies-container .casestudy .card .read-more {
    text-align: center;
    background: #7A972C;
    box-shadow: 0 -1px 0 0 #506b08, inset 0 1px 3px 0 #506b08;
    padding: 0.625rem 1.25rem; }
    .case-studies-container .casestudy .card .read-more a {
      color: #fefefe; }

/* FAQ Accordion */
.faq-content {
  width: 91.66667%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  padding-top: 1.875rem;
  margin-right: auto;
  margin-left: auto; }
  @media print, screen and (min-width: 40em) {
    .faq-content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .faq-content:last-child:not(:first-child) {
    float: right; }
  .faq-content .accordion {
    margin-bottom: 1.875rem; }
  .faq-content .accordion-title {
    font-size: 1.125rem; }
    .faq-content .accordion-title:hover {
      color: #2F4B26; }
  .faq-content .is-active a.accordion-title {
    color: #2F4B26; }
  @media print, screen and (min-width: 40em) {
    .faq-content {
      width: 83.33333%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem;
      padding-top: 3.75rem; } }
  @media print, screen and (min-width: 40em) and (min-width: 40em) {
    .faq-content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media print, screen and (min-width: 40em) {
      .faq-content:last-child:not(:first-child) {
        float: right; }
      .faq-content .accordion-title {
        font-size: 1.5625rem; } }
  @media print, screen and (min-width: 64em) {
    .faq-content {
      width: 83.33333%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 64em) and (min-width: 40em) {
    .faq-content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media print, screen and (min-width: 64em) {
      .faq-content:last-child:not(:first-child) {
        float: right; } }
  @media screen and (min-width: 75em) {
    .faq-content {
      width: 91.66667%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media screen and (min-width: 75em) and (min-width: 40em) {
    .faq-content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media screen and (min-width: 75em) {
      .faq-content:last-child:not(:first-child) {
        float: right; } }
  .faq-content, .faq-content:last-child:not(:first-child) {
    float: none;
    clear: both; }

.page-title .vcard {
  border: 0px;
  padding: 0px; }

.byline {
  color: #999; }

.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .intro-content h1, .intro-content h2, .intro-content h3, .intro-content h4, .intro-content h5, .section-content h1, .section-content h2, .section-content h3, .section-content h4, .section-content h5 {
  margin-top: 3.125rem;
  margin-bottom: 1.875rem; }

.entry-content img, .intro-content img, .section-content img {
  max-width: 100%;
  height: auto; }
  .entry-content img.shadow, .intro-content img.shadow, .section-content img.shadow {
    box-shadow: 2px 2px 10px 0 rgba(47, 75, 38, 0.3); }

.entry-content .alignleft, .entry-content img.alignleft, .intro-content .alignleft, .intro-content img.alignleft, .section-content .alignleft, .section-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
  margin-bottom: 0.9375rem; }

.entry-content .alignright, .entry-content img.alignright, .intro-content .alignright, .intro-content img.alignright, .section-content .alignright, .section-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
  margin-bottom: 0.9375rem; }

.entry-content .aligncenter, .entry-content img.aligncenter, .intro-content .aligncenter, .intro-content img.aligncenter, .section-content .aligncenter, .section-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
  margin-bottom: 1.25rem; }

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

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

.entry-content .featured-image {
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 300px;
  width: 100%; }

.article-footer .tags {
  border-top: solid 1px #FFCC3F;
  margin-top: 1.875rem;
  padding-top: 0.625rem; }

.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px; }
  .wp-caption img {
    max-width: 100%;
    margin-bottom: 0;
    width: 100%; }
  .wp-caption p.wp-caption-text {
    font-size: 0.85em;
    margin: 4px 0 7px;
    text-align: center; }

.post-password-form input[type="submit"] {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #B7CE63;
  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: #a7c340;
    color: #fefefe; }

.archive-grid .featured-image {
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 6.25rem;
  width: 100%; }

/*********************
HOME PAGE STYLES
*********************/
.home #intro {
  position: relative;
  width: 100%;
  height: calc(100vh - 82px);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden; }
  @media print, screen and (min-width: 64em) {
    .home #intro {
      padding-left: 3.75rem; } }
  @media screen and (max-width: 39.9375em) {
    .home #intro .intro-content {
      width: 83.33333%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem;
      padding-top: 1.875rem;
      padding-top: 1.875rem;
      margin-right: auto;
      margin-left: auto; } }
  @media screen and (max-width: 39.9375em) and (min-width: 40em) {
    .home #intro .intro-content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media screen and (max-width: 39.9375em) {
      .home #intro .intro-content:last-child:not(:first-child) {
        float: right; }
      .home #intro .intro-content, .home #intro .intro-content:last-child:not(:first-child) {
        float: none;
        clear: both; }
      .home #intro .intro-content h1 {
        font-size: 2.25rem;
        margin-bottom: 1.875rem; }
      .home #intro .intro-content p {
        font-size: 1.125rem;
        margin-bottom: 1.25rem; } }
  @media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .home #intro .intro-content {
      padding-top: 0.9375rem;
      padding-top: 0.9375rem;
      margin-right: auto;
      margin-left: auto;
      width: 83.33333%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; }
      .home #intro .intro-content, .home #intro .intro-content:last-child:not(:first-child) {
        float: none;
        clear: both; } }
  @media screen and (min-width: 40em) and (max-width: 63.9375em) and (min-width: 40em) {
    .home #intro .intro-content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media screen and (min-width: 40em) and (max-width: 63.9375em) {
      .home #intro .intro-content:last-child:not(:first-child) {
        float: right; }
      .home #intro .intro-content h1 {
        font-size: 6.5vh;
        margin-bottom: 2.8vh; }
      .home #intro .intro-content p {
        font-size: 2.8vh;
        margin-bottom: 1.875rem; } }
  @media print, screen and (min-width: 64em) {
    .home #intro .intro-content {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 58.33333%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 64em) and (min-width: 40em) {
    .home #intro .intro-content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media print, screen and (min-width: 64em) {
      .home #intro .intro-content:last-child:not(:first-child) {
        float: right; }
      .home #intro .intro-content h1 {
        font-size: 8vh;
        margin-bottom: 1.25rem; }
      .home #intro .intro-content p {
        font-size: 1.25rem;
        margin-bottom: 1.875rem; } }
  @media screen and (min-width: 75em) {
    .home #intro .intro-content {
      width: 66.66667%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media screen and (min-width: 75em) and (min-width: 40em) {
    .home #intro .intro-content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media screen and (min-width: 75em) {
      .home #intro .intro-content:last-child:not(:first-child) {
        float: right; }
      .home #intro .intro-content h1 {
        font-size: 8vh;
        margin-bottom: 1.875rem; }
      .home #intro .intro-content p {
        font-size: 1.625rem;
        margin-bottom: 1.875rem; } }
  .home #intro .intro-content h1 {
    font-family: "Lato-Light", sans-serif;
    font-weight: 300;
    color: #fefefe;
    line-height: 1.2; }
    .home #intro .intro-content h1 strong {
      font-family: "Lato-Black", sans-serif;
      font-weight: 900; }
  .home #intro .intro-content p {
    color: #fefefe;
    font-family: "Lato-Regular", sans-serif;
    font-weight: 400;
    line-height: 1.2; }

.home #downloads-sidebar {
  background: #E7A400;
  box-shadow: 0 -5px 10px 0 rgba(0, 0, 0, 0.5);
  padding: 0 !important;
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  position: absolute;
  bottom: 0; }
  .home #downloads-sidebar .downloads-header {
    background: #7A972C;
    font-family: "Lato-Regular", sans-serif;
    font-weight: 400;
    font-size: 3vh;
    color: #fefefe;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.625rem 0.9375rem; }
    .home #downloads-sidebar .downloads-header a {
      color: #fefefe; }
  .home #downloads-sidebar ul.downloads {
    list-style: none;
    margin: 1.25rem 0;
    color: #fefefe;
    height: 0;
    overflow: hidden;
    transition: height 0.3s; }
    .home #downloads-sidebar ul.downloads .item {
      margin-bottom: 1.5vh; }
      .home #downloads-sidebar ul.downloads .item h5 {
        font-family: "Lato-Regular", sans-serif;
        font-weight: 400;
        line-height: 1.2;
        margin: 0;
        font-size: 14px;
        font-size: 2.75vh; }
        @media (max-height: 509.09091px) {
          .home #downloads-sidebar ul.downloads .item h5 {
            font-size: 14px; } }
        @media (min-height: 727.27273px) {
          .home #downloads-sidebar ul.downloads .item h5 {
            font-size: 20px; } }
      .home #downloads-sidebar ul.downloads .item a {
        color: #fefefe; }
      .home #downloads-sidebar ul.downloads .item ul {
        list-style: none;
        padding: 0;
        margin: 0; }
        .home #downloads-sidebar ul.downloads .item ul li {
          margin-left: 0.3125rem;
          padding: 0 0.625rem 0 0;
          display: inline-block;
          font-size: 12px;
          font-size: 2.5vh; }
          @media (max-height: 480px) {
            .home #downloads-sidebar ul.downloads .item ul li {
              font-size: 12px; } }
          @media (min-height: 720px) {
            .home #downloads-sidebar ul.downloads .item ul li {
              font-size: 18px; } }
          .home #downloads-sidebar ul.downloads .item ul li:not(:last-child) {
            border-right: solid 2px rgba(255, 255, 255, 0.5); }
          .home #downloads-sidebar ul.downloads .item ul li.file-type {
            border-right: none;
            margin: 0;
            padding: 0; }
    .home #downloads-sidebar ul.downloads > .item {
      float: left;
      width: 100%;
      padding-right: 0.625rem;
      padding-left: 0.625rem; }
      @media print, screen and (min-width: 40em) {
        .home #downloads-sidebar ul.downloads > .item {
          padding-right: 0.9375rem;
          padding-left: 0.9375rem; } }
      .home #downloads-sidebar ul.downloads > .item:nth-of-type(1n) {
        clear: none; }
      .home #downloads-sidebar ul.downloads > .item:nth-of-type(1n+1) {
        clear: both; }
      .home #downloads-sidebar ul.downloads > .item:last-child {
        float: left; }
    .home #downloads-sidebar ul.downloads.collapsed {
      height: 0; }
    .home #downloads-sidebar ul.downloads.expanded {
      height: auto; }
    @media print, screen and (min-width: 40em) {
      .home #downloads-sidebar ul.downloads > .item {
        float: left;
        width: 33.33333%;
        padding-right: 0.625rem;
        padding-left: 0.625rem; } }
  @media print, screen and (min-width: 40em) and (min-width: 40em) {
    .home #downloads-sidebar ul.downloads > .item {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
    @media print, screen and (min-width: 40em) {
        .home #downloads-sidebar ul.downloads > .item:nth-of-type(1n) {
          clear: none; }
        .home #downloads-sidebar ul.downloads > .item:nth-of-type(3n+1) {
          clear: both; }
        .home #downloads-sidebar ul.downloads > .item:last-child {
          float: left; } }
    @media print, screen and (min-width: 64em) {
      .home #downloads-sidebar ul.downloads {
        height: auto; }
        .home #downloads-sidebar ul.downloads > .item {
          float: left;
          width: 100%;
          padding-right: 0.625rem;
          padding-left: 0.625rem; } }
    @media print, screen and (min-width: 64em) and (min-width: 40em) {
      .home #downloads-sidebar ul.downloads > .item {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
    @media print, screen and (min-width: 64em) {
          .home #downloads-sidebar ul.downloads > .item:nth-of-type(1n) {
            clear: none; }
          .home #downloads-sidebar ul.downloads > .item:nth-of-type(1n+1) {
            clear: both; }
          .home #downloads-sidebar ul.downloads > .item:last-child {
            float: left; } }
  .home #downloads-sidebar .downloads-cta {
    display: block;
    width: 100%;
    font-size: 14px;
    font-size: 2.75vh;
    font-family: "Lato-Bold", sans-serif;
    font-weight: 400;
    background-color: #7A972C;
    color: #fefefe;
    transition: color 0.35s, background 0.35s; }
    @media (max-height: 509.09091px) {
      .home #downloads-sidebar .downloads-cta {
        font-size: 14px; } }
    @media (min-height: 727.27273px) {
      .home #downloads-sidebar .downloads-cta {
        font-size: 20px; } }
    .home #downloads-sidebar .downloads-cta:hover, .home #downloads-sidebar .downloads-cta:focus {
      background-color: #688025;
      color: #fefefe; }
  @media print, screen and (min-width: 40em) {
    .home #downloads-sidebar {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .home #downloads-sidebar:last-child:not(:first-child) {
    float: right; }
  @media print, screen and (min-width: 40em) {
    .home #downloads-sidebar {
      width: 100%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 40em) and (min-width: 40em) {
    .home #downloads-sidebar {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media print, screen and (min-width: 40em) {
      .home #downloads-sidebar:last-child:not(:first-child) {
        float: right; } }
  @media print, screen and (min-width: 64em) {
    .home #downloads-sidebar {
      width: 25%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem;
      right: 0; } }
  @media print, screen and (min-width: 64em) and (min-width: 40em) {
    .home #downloads-sidebar {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media print, screen and (min-width: 64em) {
      .home #downloads-sidebar:last-child:not(:first-child) {
        float: right; } }
  @media screen and (min-width: 75em) {
    .home #downloads-sidebar {
      width: 25%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media screen and (min-width: 75em) and (min-width: 40em) {
    .home #downloads-sidebar {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  @media screen and (min-width: 75em) {
      .home #downloads-sidebar:last-child:not(:first-child) {
        float: right; } }

.home .section-header {
  font-family: "Lato-Light", sans-serif;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
  color: #7A972C;
  letter-spacing: 1px;
  margin-bottom: 1.875rem; }
  .home .section-header a {
    position: relative;
    display: inline-block;
    padding: 5px 15px 0;
    color: #7A972C;
    text-decoration: none; }
  .home .section-header a:before {
    content: "";
    width: 0;
    opacity: 0;
    transition: width 0.5s linear, opacity 0.5s linear; }
  .home .section-header a:hover:before, .home .section-header.inview a:before {
    content: "View All ";
    width: 100%;
    opacity: 1;
    color: #7A972C; }
  .home .section-header a:after {
    position: absolute;
    left: 50%;
    content: '';
    height: 3px;
    background: #E7A400;
    transition: all 0.3s linear;
    width: 0;
    bottom: -3px; }
  .home .section-header a:hover:after, .home .section-header.inview a:after {
    width: 100%;
    left: 0px; }

.home #case-studies {
  margin-top: 50px;
  position: relative;
  max-width: 75rem;
  margin-right: auto;
  margin-left: auto; }
  .home #case-studies::before, .home #case-studies::after {
    display: table;
    content: ' '; }
  .home #case-studies::after {
    clear: both; }
  .home #case-studies .case-studies-swiper-container {
    width: 100%;
    position: relative; }
  .home #case-studies .swiper-slide {
    position: relative;
    text-align: center;
    font-size: 18px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    /* Center slide text vertically */
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center; }
    .home #case-studies .swiper-slide:after {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 10;
      content: '';
      background-image: linear-gradient(-180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0.1) 54%); }
    .home #case-studies .swiper-slide .content {
      position: relative;
      z-index: 20;
      margin-top: 30px;
      width: 100%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; }
      @media print, screen and (min-width: 40em) {
        .home #case-studies .swiper-slide .content {
          padding-right: 0.9375rem;
          padding-left: 0.9375rem; } }
      .home #case-studies .swiper-slide .content:last-child:not(:first-child) {
        float: right; }
      @media print, screen and (min-width: 40em) {
        .home #case-studies .swiper-slide .content {
          width: 66.66667%;
          float: left;
          padding-right: 0.625rem;
          padding-left: 0.625rem; } }
  @media print, screen and (min-width: 40em) and (min-width: 40em) {
    .home #case-studies .swiper-slide .content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
      @media print, screen and (min-width: 40em) {
          .home #case-studies .swiper-slide .content:last-child:not(:first-child) {
            float: right; } }
      @media print, screen and (min-width: 64em) {
        .home #case-studies .swiper-slide .content {
          width: 66.66667%;
          float: left;
          padding-right: 0.625rem;
          padding-left: 0.625rem; } }
  @media print, screen and (min-width: 64em) and (min-width: 40em) {
    .home #case-studies .swiper-slide .content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
      @media print, screen and (min-width: 64em) {
          .home #case-studies .swiper-slide .content:last-child:not(:first-child) {
            float: right; } }
      @media screen and (min-width: 75em) {
        .home #case-studies .swiper-slide .content {
          width: 66.66667%;
          float: left;
          padding-right: 0.625rem;
          padding-left: 0.625rem; } }
  @media screen and (min-width: 75em) and (min-width: 40em) {
    .home #case-studies .swiper-slide .content {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
      @media screen and (min-width: 75em) {
          .home #case-studies .swiper-slide .content:last-child:not(:first-child) {
            float: right; } }
    .home #case-studies .swiper-slide h2 {
      font-family: "Lato-Black", sans-serif;
      font-weight: 900;
      color: #fefefe;
      text-shadow: 0 0 4px rgba(47, 75, 38, 0.5);
      line-height: 1.2;
      margin-bottom: 0.625rem; }
      .home #case-studies .swiper-slide h2 a {
        color: #fefefe; }
    .home #case-studies .swiper-slide .swiper-pagination-bullet {
      background: #fefefe !important; }
    .home #case-studies .swiper-slide .swiper-pagination-bullet-active {
      background: #B7CE63 !important; }
  .home #case-studies .swiper-button-prev, .home #case-studies .swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23C8E9A0'%2F%3E%3C%2Fsvg%3E"); }
  .home #case-studies .swiper-button-next, .home #case-studies .swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23C8E9A0'%2F%3E%3C%2Fsvg%3E"); }

.home #latest-news {
  margin-top: 60px; }
  .home #latest-news .card {
    position: relative;
    height: 50vh; }
    .home #latest-news .card .featured-image {
      display: block;
      max-height: 13.75rem; }
    .home #latest-news .card .byline {
      font-family: "Lato-Regular", sans-serif;
      font-weight: 300;
      font-size: 0.875rem;
      color: #4A4A4A;
      text-transform: uppercase;
      margin-top: 0.625rem; }
    .home #latest-news .card a.category.blog {
      color: #7A972C;
      font-family: "Lato-Bold", sans-serif;
      font-weight: 400; }
    .home #latest-news .card a.category.news {
      color: #E7A400;
      font-family: "Lato-Bold", sans-serif;
      font-weight: 400; }
    .home #latest-news .card .entry-title {
      font-family: "Merriweather-Bold", serif;
      font-weight: 400;
      color: #0a0a0a;
      line-height: 1.4; }
    .home #latest-news .card .tags {
      position: absolute;
      bottom: 10px;
      color: #7A972C;
      font-size: 0.6875rem;
      text-transform: uppercase; }
    .home #latest-news .card .featured-image {
      height: 20vh; }
    .home #latest-news .card .entry-title {
      font-size: 1.75rem; }
    @media screen and (min-width: 40em) and (max-width: 63.9375em) {
      .home #latest-news .card {
        height: 34vw;
        max-height: 28.75rem; }
        .home #latest-news .card .featured-image {
          height: 15vh;
          max-height: 13.75rem; }
        .home #latest-news .card .byline {
          font-size: 0.6875rem; }
        .home #latest-news .card .entry-title {
          font-size: 1rem; } }
    @media print, screen and (min-width: 64em) {
      .home #latest-news .card {
        min-height: 25rem; }
        .home #latest-news .card .featured-image {
          height: 10vw; }
        .home #latest-news .card .entry-title {
          font-size: 1.5rem; } }

.home #why-measure {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  margin-top: 60px;
  padding: 3.75rem;
  /* Why Measure?: */ }
  .home #why-measure .row {
    display: -ms-flexbox;
    display: flex;
    /* works with row or column */
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .home #why-measure h2 {
    font-family: "Lato-Black", sans-serif;
    font-weight: 900;
    font-size: 82px;
    font-size: 14vh;
    color: #fefefe;
    text-align: center;
    margin-bottom: 0; }
    @media (max-height: 485.71429px) {
      .home #why-measure h2 {
        font-size: 68px; } }
    @media (min-height: 1000px) {
      .home #why-measure h2 {
        font-size: 140px; } }
    @media screen and (max-width: 39.9375em) {
      .home #why-measure h2 {
        font-size: 4.5rem; } }
  .home #why-measure p {
    font-family: "Lato-Bold", sans-serif;
    font-weight: 900;
    font-size: 30px;
    font-size: 5vh;
    line-height: 1.2;
    color: #fefefe;
    text-align: center;
    width: 83.33333%;
    float: left;
    padding-right: 0.625rem;
    padding-left: 0.625rem; }
    @media (max-height: 400px) {
      .home #why-measure p {
        font-size: 20px; } }
    @media (min-height: 680px) {
      .home #why-measure p {
        font-size: 34px; } }
    @media print, screen and (min-width: 40em) {
      .home #why-measure p {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
    .home #why-measure p:last-child:not(:first-child) {
      float: right; }
    @media screen and (max-width: 39.9375em) {
      .home #why-measure p {
        font-size: 1.5rem;
        width: 100%;
        float: left;
        padding-right: 0.625rem;
        padding-left: 0.625rem; } }
  @media screen and (max-width: 39.9375em) and (min-width: 40em) {
    .home #why-measure p {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
    @media screen and (max-width: 39.9375em) {
        .home #why-measure p:last-child:not(:first-child) {
          float: right; } }
  .home #why-measure .button {
    font-size: 24px;
    font-size: 4vh; }
    @media (max-height: 450px) {
      .home #why-measure .button {
        font-size: 18px; } }
    @media (min-height: 600px) {
      .home #why-measure .button {
        font-size: 24px; } }
    @media screen and (max-width: 39.9375em) {
      .home #why-measure .button {
        font-size: 1.25rem; } }

#committee-logos {
  margin-top: 3.75rem;
  margin-bottom: 6.25rem;
  width: 100%; }
  #committee-logos .logo-container {
    max-width: 75rem;
    margin-right: auto;
    margin-left: auto; }
    #committee-logos .logo-container::before, #committee-logos .logo-container::after {
      display: table;
      content: ' '; }
    #committee-logos .logo-container::after {
      clear: both; }
    #committee-logos .logo-container > .logo {
      float: left;
      width: 50%;
      padding-right: 0.625rem;
      padding-left: 0.625rem; }
      @media print, screen and (min-width: 40em) {
        #committee-logos .logo-container > .logo {
          padding-right: 0.9375rem;
          padding-left: 0.9375rem; } }
      #committee-logos .logo-container > .logo:nth-of-type(1n) {
        clear: none; }
      #committee-logos .logo-container > .logo:nth-of-type(2n+1) {
        clear: both; }
      #committee-logos .logo-container > .logo:last-child {
        float: left; }
    @media print, screen and (min-width: 40em) {
      #committee-logos .logo-container > .logo {
        float: left;
        width: 33.33333%;
        padding-right: 0.625rem;
        padding-left: 0.625rem; } }
  @media print, screen and (min-width: 40em) and (min-width: 40em) {
    #committee-logos .logo-container > .logo {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
    @media print, screen and (min-width: 40em) {
        #committee-logos .logo-container > .logo:nth-of-type(1n) {
          clear: none; }
        #committee-logos .logo-container > .logo:nth-of-type(3n+1) {
          clear: both; }
        #committee-logos .logo-container > .logo:last-child {
          float: left; } }
    @media print, screen and (min-width: 64em) {
      #committee-logos .logo-container > .logo {
        float: left;
        width: 25%;
        padding-right: 0.625rem;
        padding-left: 0.625rem; } }
  @media print, screen and (min-width: 64em) and (min-width: 40em) {
    #committee-logos .logo-container > .logo {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
    @media print, screen and (min-width: 64em) {
        #committee-logos .logo-container > .logo:nth-of-type(1n) {
          clear: none; }
        #committee-logos .logo-container > .logo:nth-of-type(4n+1) {
          clear: both; }
        #committee-logos .logo-container > .logo:last-child {
          float: left; } }
    #committee-logos .logo-container .logo {
      text-align: center; }
      @media screen and (max-width: 39.9375em) {
        #committee-logos .logo-container .logo:nth-child(2n+1):last-child {
          margin-left: 25%; } }
      @media screen and (min-width: 40em) and (max-width: 63.9375em) {
        #committee-logos .logo-container .logo:nth-child(3n+1):last-child {
          margin-left: 33.33333%; }
        #committee-logos .logo-container .logo:nth-child(3n+1):nth-last-child(2) {
          margin-left: 16.66667%; } }
      @media print, screen and (min-width: 64em) {
        #committee-logos .logo-container .logo:nth-child(4n+1):last-child {
          margin-left: 37.5%; }
        #committee-logos .logo-container .logo:nth-child(4n+1):nth-last-child(2) {
          margin-left: 25%; }
        #committee-logos .logo-container .logo:nth-child(4n+1):nth-last-child(3) {
          margin-left: 12.5%; } }

#signup {
  position: relative;
  background: #C8E9A0;
  padding: 1.875rem 0; }
  #signup h3 {
    font-family: "Lato-Regular", sans-serif;
    font-weight: 400;
    font-size: 3rem;
    text-align: center;
    text-transform: uppercase;
    color: #2F4B26;
    letter-spacing: 1; }
  #signup p {
    /* Sign up to stay upda: */
    font-family: "Merriweather-Regular", serif;
    font-weight: 400;
    font-size: 1.5rem;
    text-align: center;
    color: #2F4B26;
    letter-spacing: 1; }
  #signup #signup-form ol {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 1rem; }
  #signup #signup-form input {
    margin-bottom: 0; }
  #signup #signup-form button {
    background-color: #2F4B26;
    color: #fefefe;
    transition: color 0.35s, background 0.35s; }
    #signup #signup-form button:hover, #signup #signup-form button:focus {
      background-color: #284020;
      color: #fefefe; }
  #signup #signup-form input.error, #signup #signup-form select.error {
    border-color: rgba(237, 28, 36, 0.5);
    box-shadow: inset 0 1px 2px rgba(237, 28, 36, 0.1); }
    #signup #signup-form input.error:focus, #signup #signup-form select.error:focus {
      border-color: #ed1c24;
      box-shadow: 0 0 5px rgba(237, 28, 36, 0.5); }
  #signup #signup-form label.error {
    color: #cc4b37; }
  #signup #signup-form label.required {
    font-weight: bold; }

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

/*********************
COMMENT STYLES
*********************/
#comments .commentlist {
  margin-left: 0px; }

#respond ul {
  margin-left: 0px; }

.commentlist li {
  position: relative;
  clear: both;
  overflow: hidden;
  list-style-type: none;
  margin-bottom: 1.5em;
  padding: 0.7335em 10px; }
  .commentlist li:last-child {
    margin-bottom: 0; }
  .commentlist li ul.children {
    margin: 0; }

.commentlist li[class*=depth-] {
  margin-top: 1.1em; }

.commentlist li.depth-1 {
  margin-left: 0;
  margin-top: 0; }

.commentlist li:not(.depth-1) {
  margin-left: 10px;
  margin-top: 0;
  padding-bottom: 0; }

.commentlist .vcard {
  margin-left: 50px; }
  .commentlist .vcard cite.fn {
    font-weight: 700;
    font-style: normal; }
  .commentlist .vcard time {
    float: right; }
    .commentlist .vcard time a {
      color: #999;
      text-decoration: none; }
      .commentlist .vcard time a:hover {
        text-decoration: underline; }
  .commentlist .vcard img.avatar {
    position: absolute;
    left: 10px;
    padding: 2px;
    border: 1px solid #cecece;
    background: #fff; }

.commentlist .comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em; }

.commentlist .comment-reply-link {
  float: right; }

/*********************
COMMENT FORM STYLES
*********************/
.respond-form {
  margin: 1.5em 10px;
  padding-bottom: 2.2em; }
  .respond-form form {
    margin: 0.75em 0; }
    .respond-form form li {
      list-style-type: none;
      clear: both;
      margin-bottom: 0.7335em; }
      .respond-form form li label,
      .respond-form form li small {
        display: none; }
    .respond-form form input[type=text],
    .respond-form form input[type=email],
    .respond-form form input[type=url],
    .respond-form form textarea {
      padding: 3px 6px;
      background: #efefef;
      border: 2px solid #cecece;
      line-height: 1.5em; }
      .respond-form form input[type=text]:focus,
      .respond-form form input[type=email]:focus,
      .respond-form form input[type=url]:focus,
      .respond-form form textarea:focus {
        background: #fff; }
      .respond-form form input[type=text]:invalid,
      .respond-form form input[type=email]:invalid,
      .respond-form form input[type=url]:invalid,
      .respond-form form textarea:invalid {
        outline: none;
        border-color: #fbc2c4;
        background-color: #f6e7eb;
        -ms-box-shadow: none;
        box-shadow: none; }
    .respond-form form input[type=text],
    .respond-form form input[type=email],
    .respond-form form input[type=url] {
      max-width: 400px;
      min-width: 250px; }
    .respond-form form textarea {
      resize: none;
      width: 97.3%;
      height: 150px; }

#comment-form-title {
  margin: 0 0 1.1em; }

#allowed_tags {
  margin: 1.5em 10px 0.7335em 0; }

.nocomments {
  margin: 0 20px 1.1em; }

/*********************
SIDEBARS & ASIDES
*********************/
.widget ul {
  margin: 0; }
  .widget ul li {
    list-style: none;
    line-height: 1.4;
    margin-bottom: 0.625rem; }

#sidebar1 .widget {
  margin-bottom: 1.875rem; }

/*********************
FOOTER STYLES
*********************/
.footer #inner-footer {
  clear: both;
  background: url("../images/footer-bg.jpg") no-repeat center center;
  background-size: cover;
  padding: 3.75rem; }
  .footer #inner-footer > .card-wrap {
    float: left;
    width: 33.33333%;
    padding-right: 0.625rem;
    padding-left: 0.625rem; }
    @media print, screen and (min-width: 40em) {
      .footer #inner-footer > .card-wrap {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
    .footer #inner-footer > .card-wrap:nth-of-type(1n) {
      clear: none; }
    .footer #inner-footer > .card-wrap:nth-of-type(3n+1) {
      clear: both; }
    .footer #inner-footer > .card-wrap:last-child {
      float: left; }
  .footer #inner-footer h4 {
    font-family: "Lato-Bold", sans-serif;
    font-size: 1.875rem;
    color: #fefefe; }
  .footer #inner-footer p {
    font-family: "Merriweather-Regular", serif;
    font-size: 1rem;
    line-height: 1.4;
    color: #fefefe; }
  .footer #inner-footer a {
    color: #fefefe; }

.footer .copyright {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Lato-Regular", sans-serif;
  font-size: 0.875rem;
  color: #0a0a0a;
  text-align: center;
  margin-top: 0.625rem;
  margin-bottom: 0.625rem; }
  .footer .copyright #menu-footer {
    font-size: 0.875rem;
    line-height: 1;
    padding: 0;
    margin: 0; }
    .footer .copyright #menu-footer li.active {
      font-weight: bold; }
      .footer .copyright #menu-footer li.active a {
        background: none;
        color: #7A972C; }
    .footer .copyright #menu-footer li a {
      padding-top: 0.125rem;
      padding-bottom: 0.125rem; }

/*********************
FOUNDATION STYLES
*********************/
.error {
  color: #cc4b37 !important; }

.two-col {
  column-count: 2;
  column-gap: 60px; }
  @media screen and (max-width: 39.9375em) {
    .two-col {
      column-count: 1; } }

.sticky.is-stuck {
  position: fixed;
  top: 0;
  z-index: 1000; }

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

.reveal.full {
  padding-top: 3.125rem; }

.gglobe {
  margin: 0 auto; }

.gsatelites {
  position: relative;
  top: 130px;
  left: 80px; }

.off-canvas .menu .gglobe {
  margin: 5rem auto; }

.off-canvas .menu .gsatelites {
  top: 80px;
  left: 106px; }

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

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