@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, .social-links a, .modalbox a, .corngrows-social .mncorn-social a {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/*********************
METRICS
*********************/
/*********************
COLORS
*********************/
/*********************
TYPOGRAPHY
*********************/
/*********************
TRANSITIONS
*********************/
/*********************
TYPOGRAPHY
*********************/
/*	@font-face {
    	font-family: 'Font Name';
    	src: url('assets/fonts/font-name.eot');
    	src: url('assets/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('assets/fonts/font-name.woff') format('woff'),
             url('assets/fonts/font-name.ttf') format('truetype'),
             url('assets/fonts/font-name.svg#font-name') format('svg');
    	font-weight: normal;
    	font-style: normal;
	}
*/
span.amp {
  font-family: Baskerville, "Goudy Old Style", Palatino, "Book Antiqua", serif !important;
  font-style: italic;
}

/*********************
CSS3 GRADIENTS.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
MCGA MIXINS
*********************/
/* Corn Grows Variables and Mixins */
/**/
/**
 * Foundation for Sites by ZURB
 * Version 6.2.1
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
.spin-out-ccw.mui-leave, .spin-in-ccw.mui-enter, .spin-out.mui-leave, .spin-in.mui-enter, .scale-out-down.mui-leave, .scale-out-up.mui-leave, .scale-in-down.mui-enter, .scale-in-up.mui-enter, .hinge-out-from-middle-y.mui-leave, .hinge-out-from-middle-x.mui-leave, .hinge-out-from-left.mui-leave, .hinge-out-from-bottom.mui-leave, .hinge-out-from-right.mui-leave, .hinge-out-from-top.mui-leave, .hinge-in-from-middle-y.mui-enter, .hinge-in-from-middle-x.mui-enter, .hinge-in-from-left.mui-enter, .hinge-in-from-bottom.mui-enter, .hinge-in-from-right.mui-enter, .hinge-in-from-top.mui-enter, .fade-out.mui-leave, .fade-in.mui-enter, .slide-out-left.mui-leave, .slide-out-up.mui-leave, .slide-out-right.mui-leave, .slide-out-down.mui-leave, .slide-in-right.mui-enter, .slide-in-up.mui-enter, .slide-in-left.mui-enter, .slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
}

.slide-in-down.mui-enter {
  transform: translateY(-100%);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

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

.slide-in-left.mui-enter {
  transform: translateX(-100%);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

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

.slide-in-up.mui-enter {
  transform: translateY(100%);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

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

.slide-in-right.mui-enter {
  transform: translateX(100%);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

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

.slide-out-down.mui-leave {
  transform: translateY(0);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

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

.slide-out-right.mui-leave {
  transform: translateX(0);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

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

.slide-out-up.mui-leave {
  transform: translateY(0);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

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

.slide-out-left.mui-leave {
  transform: translateX(0);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

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

.fade-in.mui-enter {
  opacity: 0;
  transition-property: opacity;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.scale-in-up.mui-enter {
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0;
}

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

.scale-in-down.mui-enter {
  transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0;
}

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

.scale-out-up.mui-leave {
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

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

.scale-out-down.mui-leave {
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

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

.spin-in.mui-enter {
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

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

.spin-out.mui-leave {
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

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

.spin-in-ccw.mui-enter {
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

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

.spin-out-ccw.mui-leave {
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.shake {
  -webkit-animation-name: shake-7;
          animation-name: shake-7;
}
@-webkit-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%);
  }
}
@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 {
  -webkit-animation-name: spin-cw-1turn;
          animation-name: spin-cw-1turn;
}
@-webkit-keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn);
  }
  100% {
    transform: rotate(0);
  }
}

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

.wiggle {
  -webkit-animation-name: wiggle-7deg;
          animation-name: wiggle-7deg;
}
@-webkit-keyframes wiggle-7deg {
  40%, 50%, 60% {
    transform: rotate(7deg);
  }
  35%, 45%, 55%, 65% {
    transform: rotate(-7deg);
  }
  0%, 30%, 70%, 100% {
    transform: rotate(0);
  }
}
@keyframes wiggle-7deg {
  40%, 50%, 60% {
    transform: rotate(7deg);
  }
  35%, 45%, 55%, 65% {
    transform: rotate(-7deg);
  }
  0%, 30%, 70%, 100% {
    transform: rotate(0);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

td,
th {
  padding: 0;
}

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

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

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

body {
  padding: 0;
  margin: 0;
  font-family: Tahoma, Verdana, Segoe, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

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

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

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

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

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

.small-1 {
  width: 8.3333333333%;
}

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

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

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

.small-2 {
  width: 16.6666666667%;
}

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

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

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

.small-3 {
  width: 25%;
}

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

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

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

.small-4 {
  width: 33.3333333333%;
}

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

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

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

.small-5 {
  width: 41.6666666667%;
}

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

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

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

.small-6 {
  width: 50%;
}

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

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

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

.small-7 {
  width: 58.3333333333%;
}

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

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

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

.small-8 {
  width: 66.6666666667%;
}

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

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

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

.small-9 {
  width: 75%;
}

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

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

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

.small-10 {
  width: 83.3333333333%;
}

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

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

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

.small-11 {
  width: 91.6666666667%;
}

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

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

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

.small-12 {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium-2 {
    width: 16.6666666667%;
  }

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

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

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

  .medium-3 {
    width: 25%;
  }

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

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

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

  .medium-4 {
    width: 33.3333333333%;
  }

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

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

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

  .medium-5 {
    width: 41.6666666667%;
  }

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

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

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

  .medium-6 {
    width: 50%;
  }

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

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

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

  .medium-7 {
    width: 58.3333333333%;
  }

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

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

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

  .medium-8 {
    width: 66.6666666667%;
  }

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

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

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

  .medium-9 {
    width: 75%;
  }

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

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

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

  .medium-10 {
    width: 83.3333333333%;
  }

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

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

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

  .medium-11 {
    width: 91.6666666667%;
  }

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

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

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

  .medium-12 {
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .large-2 {
    width: 16.6666666667%;
  }

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

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

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

  .large-3 {
    width: 25%;
  }

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

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

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

  .large-4 {
    width: 33.3333333333%;
  }

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

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

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

  .large-5 {
    width: 41.6666666667%;
  }

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

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

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

  .large-6 {
    width: 50%;
  }

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

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

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

  .large-7 {
    width: 58.3333333333%;
  }

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

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

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

  .large-8 {
    width: 66.6666666667%;
  }

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

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

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

  .large-9 {
    width: 75%;
  }

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

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

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

  .large-10 {
    width: 83.3333333333%;
  }

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

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

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

  .large-11 {
    width: 91.6666666667%;
  }

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

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

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

  .large-12 {
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Tahoma, Verdana, Segoe, sans-serif;
  font-weight: normal;
  font-style: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  color: #cacaca;
  line-height: 0;
}

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1.1875rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1.0625rem;
}

h6 {
  font-size: 1rem;
}

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

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 1.9375rem;
  }

  h4 {
    font-size: 1.5625rem;
  }

  h5 {
    font-size: 1.25rem;
  }

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

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

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

li {
  font-size: inherit;
}

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

ol {
  margin-left: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  thead {
    display: table-header-group;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  color: #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-button, .input-group-field, .input-group-label {
  margin: 0;
  display: table-cell;
  vertical-align: middle;
}

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

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

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

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

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

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

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

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

.is-invalid-input:not(:focus) {
  background-color: rgba(236, 88, 64, 0.1);
  border-color: #ec5840;
}

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

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

.button {
  display: inline-block;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  vertical-align: middle;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.85em 1em;
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  background-color: #0081c6;
  color: #fefefe;
}
[data-whatinput=mouse] .button {
  outline: 0;
}
.button:hover, .button:focus {
  background-color: #006ea8;
  color: #fefefe;
}
.button.tiny {
  font-size: 0.6rem;
}
.button.small {
  font-size: 0.75rem;
}
.button.large {
  font-size: 1.25rem;
}
.button.expanded {
  display: block;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.button.primary {
  background-color: #0081c6;
  color: #fefefe;
}
.button.primary:hover, .button.primary:focus {
  background-color: #00679e;
  color: #fefefe;
}
.button.secondary {
  background-color: #afbb23;
  color: #fefefe;
}
.button.secondary:hover, .button.secondary:focus {
  background-color: #8c961c;
  color: #fefefe;
}
.button.success {
  background-color: #3adb76;
  color: #fefefe;
}
.button.success:hover, .button.success:focus {
  background-color: #22bb5b;
  color: #fefefe;
}
.button.warning {
  background-color: #ffae00;
  color: #fefefe;
}
.button.warning:hover, .button.warning:focus {
  background-color: #cc8b00;
  color: #fefefe;
}
.button.alert {
  background-color: #ec5840;
  color: #fefefe;
}
.button.alert:hover, .button.alert:focus {
  background-color: #da3116;
  color: #fefefe;
}
.button.hollow {
  border: 1px solid #0081c6;
  color: #0081c6;
}
.button.hollow, .button.hollow:hover, .button.hollow:focus {
  background-color: transparent;
}
.button.hollow:hover, .button.hollow:focus {
  border-color: #004163;
  color: #004163;
}
.button.hollow.primary {
  border: 1px solid #0081c6;
  color: #0081c6;
}
.button.hollow.primary:hover, .button.hollow.primary:focus {
  border-color: #004163;
  color: #004163;
}
.button.hollow.secondary {
  border: 1px solid #afbb23;
  color: #afbb23;
}
.button.hollow.secondary:hover, .button.hollow.secondary:focus {
  border-color: #585e12;
  color: #585e12;
}
.button.hollow.success {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.hollow.success:hover, .button.hollow.success:focus {
  border-color: #157539;
  color: #157539;
}
.button.hollow.warning {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.hollow.warning:hover, .button.hollow.warning:focus {
  border-color: #805700;
  color: #805700;
}
.button.hollow.alert {
  border: 1px solid #ec5840;
  color: #ec5840;
}
.button.hollow.alert:hover, .button.hollow.alert:focus {
  border-color: #881f0e;
  color: #881f0e;
}
.button.disabled, .button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.dropdown::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4em;
  border-color: #fefefe transparent transparent;
  border-top-style: solid;
  border-bottom-width: 0;
  position: relative;
  top: 0.4em;
  float: right;
  margin-left: 1em;
  display: inline-block;
}
.button.arrow-only::after {
  margin-left: 0;
  float: none;
  top: -0.1em;
}

.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 65.25em), 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;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto;
}

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

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

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

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

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

.clearfix::before, #main.corntopics--stream .type-publication::before,
#main.corntopics--stream .type-page::before, .clearfix::after, #main.corntopics--stream .type-publication::after,
#main.corntopics--stream .type-page::after {
  content: " ";
  display: table;
}
.clearfix::after, #main.corntopics--stream .type-publication::after,
#main.corntopics--stream .type-page::after {
  clear: both;
}

.accordion {
  list-style-type: none;
  background: #fefefe;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  border-radius: 0;
  margin-left: 0;
}

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

.accordion-content {
  padding: 1rem;
  display: none;
  border-bottom: 1px solid #e6e6e6;
  background-color: #fefefe;
}

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

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

.badge {
  display: inline-block;
  padding: 0.3em;
  min-width: 2.1em;
  font-size: 0.6rem;
  text-align: center;
  border-radius: 50%;
  background: #0081c6;
  color: #fefefe;
}
.badge.secondary {
  background: #afbb23;
  color: #fefefe;
}
.badge.success {
  background: #3adb76;
  color: #fefefe;
}
.badge.warning {
  background: #ffae00;
  color: #fefefe;
}
.badge.alert {
  background: #ec5840;
  color: #fefefe;
}

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

.button-group {
  margin-bottom: 1rem;
  font-size: 0;
}
.button-group::before, .button-group::after {
  content: " ";
  display: table;
}
.button-group::after {
  clear: both;
}
.button-group .button {
  margin: 0;
  font-size: 0.9rem;
}
.button-group .button:not(:last-child) {
  margin-right: 1px;
}
.button-group.tiny .button {
  font-size: 0.6rem;
}
.button-group.small .button {
  font-size: 0.75rem;
}
.button-group.large .button {
  font-size: 1.25rem;
}
.button-group.expanded {
  margin-right: -1px;
}
.button-group.expanded::before, .button-group.expanded::after {
  display: none;
}
.button-group.expanded .button:first-child:nth-last-child(2), .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button {
  display: inline-block;
  width: calc(50% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button {
  display: inline-block;
  width: calc(33.3333333333% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(4), .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button {
  display: inline-block;
  width: calc(25% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(5), .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button {
  display: inline-block;
  width: calc(20% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(6), .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button {
  display: inline-block;
  width: calc(16.6666666667% - 1px);
  margin-right: 1px;
}
.button-group.primary .button {
  background-color: #0081c6;
  color: #fefefe;
}
.button-group.primary .button:hover, .button-group.primary .button:focus {
  background-color: #00679e;
  color: #fefefe;
}
.button-group.secondary .button {
  background-color: #afbb23;
  color: #fefefe;
}
.button-group.secondary .button:hover, .button-group.secondary .button:focus {
  background-color: #8c961c;
  color: #fefefe;
}
.button-group.success .button {
  background-color: #3adb76;
  color: #fefefe;
}
.button-group.success .button:hover, .button-group.success .button:focus {
  background-color: #22bb5b;
  color: #fefefe;
}
.button-group.warning .button {
  background-color: #ffae00;
  color: #fefefe;
}
.button-group.warning .button:hover, .button-group.warning .button:focus {
  background-color: #cc8b00;
  color: #fefefe;
}
.button-group.alert .button {
  background-color: #ec5840;
  color: #fefefe;
}
.button-group.alert .button:hover, .button-group.alert .button:focus {
  background-color: #da3116;
  color: #fefefe;
}
.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
  width: 100%;
  border-right: 1px solid transparent;
}
.button-group.stacked .button:not(:last-child), .button-group.stacked-for-small .button:not(:last-child), .button-group.stacked-for-medium .button:not(:last-child) {
  border-bottom: 1px solid #ffffff;
}
@media screen and (min-width: 45.625em) {
  .button-group.stacked-for-small .button {
    width: auto;
  }
  .button-group.stacked-for-small .button:not(:last-child) {
    margin-right: 1px;
  }
}
@media screen and (min-width: 65.3125em) {
  .button-group.stacked-for-medium .button {
    width: auto;
  }
  .button-group.stacked-for-medium .button:not(:last-child) {
    margin-right: 1px;
  }
}
@media screen and (max-width: 45.5625em) {
  .button-group.stacked-for-small.expanded {
    display: block;
  }
  .button-group.stacked-for-small.expanded .button {
    display: block;
    margin-right: 0;
  }
}

.callout {
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(10, 10, 10, 0.25);
  border-radius: 0;
  position: relative;
  color: #0a0a0a;
  background-color: white;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.primary {
  background-color: #d0efff;
}
.callout.secondary {
  background-color: #f6f8db;
}
.callout.success {
  background-color: #e1faea;
}
.callout.warning {
  background-color: #fff3d9;
}
.callout.alert {
  background-color: #fce6e2;
}
.callout.small {
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.callout.large {
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
}

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

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

.is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  height: 100%;
  width: 100%;
  background: #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%);
}

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

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

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

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

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

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

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  left: auto;
  right: 0;
  top: 100%;
}
.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 0;
  top: 100%;
}
[data-whatinput=mouse] .dropdown.menu a {
  outline: 0;
}
.no-js .dropdown.menu ul {
  display: none;
}
.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0;
}
.dropdown.menu.vertical > li.opens-left .is-dropdown-submenu {
  left: auto;
  right: 100%;
}
.dropdown.menu.vertical > li.opens-right .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
@media screen and (min-width: 45.625em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%;
  }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%;
  }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-left .is-dropdown-submenu {
    left: auto;
    right: 100%;
  }
  .dropdown.menu.medium-vertical > li.opens-right .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
}
@media screen and (min-width: 65.3125em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%;
  }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%;
  }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.large-vertical > li.opens-left .is-dropdown-submenu {
    left: auto;
    right: 100%;
  }
  .dropdown.menu.large-vertical > li.opens-right .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
}
.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  left: auto;
  right: 0;
}

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

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

.is-dropdown-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  z-index: 1;
  background: #fefefe;
  border: 1px solid #cacaca;
}
.is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px;
}
.is-dropdown-submenu > li {
  width: 100%;
}
.is-dropdown-submenu:not(.js-dropdown-nohover) > .is-dropdown-submenu-parent:hover > .is-dropdown-submenu, .is-dropdown-submenu.js-dropdown-active {
  display: block;
}

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

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  border-radius: 0;
  background: #0081c6;
  color: #fefefe;
}
.label.secondary {
  background: #afbb23;
  color: #fefefe;
}
.label.success {
  background: #3adb76;
  color: #fefefe;
}
.label.warning {
  background: #ffae00;
  color: #fefefe;
}
.label.alert {
  background: #ec5840;
  color: #fefefe;
}

.media-object {
  margin-bottom: 1rem;
  display: block;
}
.media-object img {
  max-width: none;
}
@media screen and (max-width: 45.5625em) {
  .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.middle {
  vertical-align: middle;
}
.media-object-section.bottom {
  vertical-align: bottom;
}

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

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

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

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

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

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

html,
body {
  height: 100%;
}

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

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

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

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

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

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

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

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

  .position-right.reveal-for-large {
    right: 0;
    z-index: auto;
    position: fixed;
  }
  .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 100%;
  }
}
.orbit {
  position: relative;
}

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

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

.orbit-figure {
  margin: 0;
}

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

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

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

.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: 0.75rem;
  height: 0.75rem;
  margin: 0.1rem;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}
.orbit-bullets button:hover {
  background-color: #fff;
}
.orbit-bullets button.is-active {
  background-color: #fff;
}

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

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

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

.progress {
  background-color: #cacaca;
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 0;
}
.progress.primary .progress-meter {
  background-color: #0081c6;
}
.progress.secondary .progress-meter {
  background-color: #afbb23;
}
.progress.success .progress-meter {
  background-color: #3adb76;
}
.progress.warning .progress-meter {
  background-color: #ffae00;
}
.progress.alert .progress-meter {
  background-color: #ec5840;
}

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

.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;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  touch-action: none;
}

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

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

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

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

.sticky-container {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tabs.primary {
  background: #0081c6;
}
.tabs.primary > li > a {
  color: #fefefe;
}
.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
  background: #008bd6;
}

.tabs-title {
  float: left;
}
.tabs-title > a {
  display: block;
  padding: 0.7rem 0.8rem 0.7rem 2.2rem;
  line-height: 1;
  font-size: 1rem;
}
.tabs-title > a:hover {
  background: #0081c6;
}
.tabs-title > a:focus, .tabs-title > a[aria-selected=true] {
  background: #999d38;
}

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

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

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

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

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

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

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

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

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

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

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

.top-bar {
  padding: 0.5rem;
}
.top-bar::before, .top-bar::after {
  content: " ";
  display: table;
}
.top-bar::after {
  clear: both;
}
.top-bar,
.top-bar ul {
  background-color: #e6e6e6;
}
.top-bar input {
  max-width: 200px;
  margin-right: 1rem;
}
.top-bar .input-group-field {
  width: 100%;
  margin-right: 0;
}
.top-bar input.button {
  width: auto;
}
.top-bar .top-bar-left,
.top-bar .top-bar-right {
  width: 100%;
}
@media screen and (min-width: 45.625em) {
  .top-bar .top-bar-left,
.top-bar .top-bar-right {
    width: auto;
  }
}
@media screen and (max-width: 65.25em) {
  .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 {
  float: left;
  margin-right: 1rem;
}

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

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

/* Magnific Popup CSS */
.white-popup-block {
  position: relative;
  max-width: 650px;
  padding: 20px 30px;
  margin: 40px auto;
  background-color: #fff;
}

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after, .mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    transform-origin: 0;
  }

  .mfp-arrow-right {
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

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

Stylesheet: Main Stylesheet

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

/*********************
NAVIGATION STYLES
*********************/
.top-bar .title-area {
  z-index: 1;
}

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

/*********************
POSTS & CONTENT STYLES
*********************/
#content #inner-content {
  padding: 0.3rem 0;
}
@media screen and (min-width: 45.625em) {
  #content #inner-content {
    padding: 1rem 0rem;
  }
}

.static-part-header {
  font-family: Tahoma, Verdana, Segoe, sans-serif;
  font-weight: normal;
  font-style: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.55rem;
  padding: 25px 0 0 0;
  line-height: 1.2;
}

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

.byline {
  color: #999;
}
.entry-content img {
  max-width: 100%;
  height: auto;
}
.entry-content .alignleft, .entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
.entry-content .alignright, .entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
.entry-content .aligncenter, .entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}
.entry-content video, .entry-content object {
  max-width: 100%;
  height: auto;
}
.entry-content pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px;
}

.wp-caption {
  max-width: 100%;
  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;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  vertical-align: middle;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.85em 1em;
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  background-color: #0081c6;
  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: #006ea8;
  color: #fefefe;
}

/*********************
IMAGE GALLERY STYLES
*********************/
/*********************
PAGE NAVI STYLES
*********************/
.page-navigation,
.pods-pagination-advanced {
  margin-top: 1rem;
  clear: both;
  text-align: center;
}

/*********************
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
*********************/
.sidebar .widget ~ .widget {
  margin-top: 2rem;
}

.widget ul {
  margin: 0;
}
.widget ul li {
  list-style: none;
}
.widget .widgettitle {
  font-family: Tahoma, Verdana, Segoe, sans-serif;
  font-size: 1.55rem;
  padding: 0 1.5625rem 1.5625rem 2.3125rem;
  color: color--mcga-darkgray;
  line-height: 1.2;
  margin-bottom: 0;
}
.widget .tagcloud {
  margin-top: -0.3rem;
}
.widget .tagcloud > a {
  display: inline-block;
  padding: 0.2rem;
  line-height: 1;
  border-radius: 0.2rem 0.3rem;
}
.widget .tagcloud > a:hover {
  color: #fff;
  background-color: #999d38;
}
.widget .tagcloud > a:not(:last-child)::after {
  display: inline-block;
  content: ",";
}

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  margin-top: 1em;
}

.fixed-footer footer.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

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

/*********************
MCGA STYLES
*********************/
.site-header, .menu-header {
  border-bottom: 2px solid #999d38;
  background-color: #fff;
  position: relative;
}
.site-header .homelink, .menu-header .homelink {
  display: inline-block;
  padding-left: 7%;
}
@media screen and (min-width: 45.625em) {
  .site-header .homelink, .menu-header .homelink {
    padding-left: 0.9375rem;
  }
}

.top-nav--wrapper {
  font-size: 0.833rem;
  border-bottom: 3px solid #d6d995;
  background-color: #999d38;
}
@media screen and (max-width: 65.25em) {
  .top-nav--wrapper {
    display: none !important;
  }
}
.top-nav--wrapper ul {
  float: right;
}
.top-nav--wrapper a {
  color: #fff;
}
.top-nav--wrapper a:hover {
  text-decoration: underline;
}
.top-nav--wrapper .active > a {
  color: #fff;
  background-color: transparent;
  font-weight: bold;
  text-decoration: none;
  cursor: default;
}
.top-nav--wrapper li:last-child a {
  padding-right: 0.2rem;
}

.off-canvas-toggle,
.secondary-menu-toggle {
  background-color: #999d38;
  color: #fff;
  display: block;
  padding: 1.7rem 0;
}
.off-canvas-toggle img,
.secondary-menu-toggle img {
  max-width: 1.6rem;
}

.off-canvas-toggle img {
  width: 1.1rem;
}

.site-logo {
  margin-top: 0.5625rem;
  margin-bottom: 0.8125rem;
}
@media screen and (min-width: 45.625em) {
  .site-logo {
    margin-left: 0;
  }
}

.search-form {
  position: relative;
}
.search-form input[type=text],
.search-form input[type=search] {
  border: 0 none;
  box-shadow: 0 0 0.25rem 0.0625rem #cecece inset;
  margin-bottom: 0;
  height: 2.375rem;
  line-height: 2.375rem;
  padding: 0 2.4rem 0 0.8rem;
  width: 100%;
  border-radius: 1.1875rem;
  color: #4d4d4f;
  font-size: 0.875rem;
}
.search-form input[type=text]::-webkit-input-placeholder,
.search-form input[type=search]::-webkit-input-placeholder {
  color: #888a8c;
}
.search-form input[type=text]:-moz-placeholder,
.search-form input[type=search]:-moz-placeholder {
  color: #888a8c;
}
.search-form input[type=text]::-moz-placeholder,
.search-form input[type=search]::-moz-placeholder {
  color: #888a8c;
}
.search-form input[type=text]:-ms-input-placeholder,
.search-form input[type=search]:-ms-input-placeholder {
  color: #888a8c;
}
@media screen and (min-width: 45.625em) {
  .search-form input[type=text],
.search-form input[type=search] {
    font-size: 1.08125rem;
  }
}
.search-form button {
  border-radius: 50%;
  background-color: #afb1b4;
  height: 2.175rem;
  width: 2.175rem;
  position: absolute;
  top: 0.09rem;
  right: 0.1rem;
  padding: 0.3rem 0.4rem;
  margin-bottom: 0;
  transition: background-color 0.2s ease;
  background-image: url("../images/icon_search.svg");
  background-position: center center;
  background-size: 1.25rem auto;
  background-repeat: no-repeat;
}
.search-form button:hover {
  transition: background-color 0.2s ease;
}
.search-form button span {
  display: none;
}
.search-form button:hover {
  background-color: #95979b;
}
.search-form button:active {
  background-color: #95979b;
  top: 1px;
}
.site-header .search-form {
  margin-top: 1.2rem;
}
@media screen and (min-width: 45.625em) {
  .site-header .search-form {
    margin-left: 0.5rem;
    margin-right: 1rem;
  }
}
.site-header .search-form input[type=text],
.site-header .search-form input[type=search] {
  border: 0 none;
}

.site-footer, .menu-footer {
  font-size: 0.75rem;
  line-height: 1.44;
  background-color: #4d4d4f;
  color: #b5b5b5;
}
@media screen and (min-width: 65.3125em) {
  .site-footer, .menu-footer {
    padding-top: 1rem;
    border-top: 2px solid #313132;
  }
}
.site-footer a, .menu-footer a {
  color: #fff;
}
.site-footer .widgettitle, .menu-footer .widgettitle {
  color: #fff;
  line-height: 1;
  font-size: 1.22875rem;
  margin-bottom: 1rem;
  padding: 0;
}
.site-footer .widget, .menu-footer .widget {
  margin-bottom: 1rem;
}
.site-footer address, .menu-footer address {
  color: #fff;
  font-style: normal;
}

.menu-footer {
  padding-top: 1rem;
  border-top: 2px solid #313132;
}

#inner-footer .mini-about {
  font-size: 0.75rem;
  line-height: 1.083125rem;
}
#inner-footer .mini-about p {
  font-size: 0.75rem;
  line-height: 1.083125rem;
}
#inner-footer ul li {
  line-height: 1;
  padding: 0;
  height: 1.416875rem;
}
#inner-footer ul li a {
  padding: 0;
}
#inner-footer ul .active a {
  font-weight: bold;
  cursor: default;
  background-color: transparent;
}
#inner-footer .blog-posts ul li {
  height: auto;
  margin-bottom: 0.6em;
}
#inner-footer .blog-posts ul li a {
  text-decoration: underline;
  line-height: 1.1;
}
#inner-footer address {
  line-height: 1.104375rem;
  margin-top: -0.2rem;
}
#inner-footer .social-links, #inner-footer .modalbox, #inner-footer .corngrows-social .mncorn-social, .corngrows-social #inner-footer .mncorn-social {
  padding-top: 0.6rem;
}

.bottom-footer-links ul li:last-child a {
  padding-right: 3rem;
}
.bottom-footer-links .active > a {
  background-color: transparent;
  text-decoration: none;
  font-weight: bold;
  cursor: default;
}
.bottom-footer-links .active > a:hover {
  text-shadow: none;
  text-decoration: none;
}

.social-links, .modalbox, .corngrows-social .mncorn-social {
  padding-top: 1rem;
}
.social-links li, .modalbox li, .corngrows-social .mncorn-social li {
  display: inline-block;
}
.social-links li:not(:first-child), .modalbox li:not(:first-child), .corngrows-social .mncorn-social li:not(:first-child) {
  margin-left: 0.4rem;
}
.social-links a, .modalbox a, .corngrows-social .mncorn-social a {
  color: #4d4d4f;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 0.8125rem;
  display: block;
  transition: all 0.2s ease;
}
.social-links a:active, .modalbox a:active, .corngrows-social .mncorn-social a:active {
  position: relative;
  top: 1px;
}
.social-links a[href*="facebook.com"], .modalbox a[href*="facebook.com"], .corngrows-social .mncorn-social a[href*="facebook.com"] {
  background: #999d38 url("../images/social/facebook.svg") center center no-repeat;
}
.social-links a[href*="twitter.com"], .modalbox a[href*="twitter.com"], .corngrows-social .mncorn-social a[href*="twitter.com"] {
  background: #999d38 url("../images/social/twitter.svg") center center no-repeat;
}
.social-links a[href*="pinterest.com"], .modalbox a[href*="pinterest.com"], .corngrows-social .mncorn-social a[href*="pinterest.com"] {
  background: #999d38 url("../images/social/pinterest.svg") center center no-repeat;
}
.social-links a[href*="instagram.com"], .modalbox a[href*="instagram.com"], .corngrows-social .mncorn-social a[href*="instagram.com"] {
  background: #999d38 url("../images/social/instagram.svg") center center no-repeat;
}
.social-links a[href*="youtube.com"], .modalbox a[href*="youtube.com"], .corngrows-social .mncorn-social a[href*="youtube.com"] {
  background: #999d38 url("../images/social/youtube.svg") center center no-repeat;
}
.social-links a:hover, .modalbox a:hover, .corngrows-social .mncorn-social a:hover {
  position: relative;
  top: -0.1rem;
  box-shadow: 0 0.2rem 0.35rem 0.1rem rgba(0, 0, 0, 0.3);
}

.copyright-notice {
  background-color: #090909;
  border-top: 2px solid #999d38;
  color: #fff;
  overflow: hidden;
  line-height: 2rem;
}
@media screen and (min-width: 45.625em) {
  .copyright-notice {
    line-height: 3.375rem;
  }
}
.copyright-notice a {
  color: #fff;
  text-decoration: underline;
}
.copyright-notice a:hover {
  text-shadow: 0 0 0.2rem rgba(255, 255, 255, 0.7);
}
.copyright-notice .menu {
  text-align: center;
}
.copyright-notice .menu li {
  display: inline-block;
}
@media screen and (min-width: 45.625em) {
  .copyright-notice .menu {
    text-align: right;
    padding-top: 0.625rem;
  }
}

.main-nav {
  padding-left: 1rem;
}
.main-nav > .menu > li > a {
  color: #4d4d4f;
  font-size: 1.1rem;
  line-height: 4.8125rem;
  height: 4.8125rem;
  padding: 0 0.7rem;
  margin: 0 0.5rem;
  transition: background-color 0.2s ease;
}
.main-nav > .menu > li > a:hover {
  transition: background-color 0.2s ease;
}
.main-nav > .menu > li > a:hover {
  background-color: #dbe09b;
}
.main-nav > .menu > li:hover > a {
  background-color: #dbe09b;
}
.main-nav > .menu > li.current-menu-item:not(.highlight) > a, .main-nav > .menu > li.current_page_ancestor:not(.highlight) > a {
  background-color: transparent;
  color: #999d38;
  font-weight: bold;
}
.main-nav > .menu .highlight > a,
.main-nav > .menu > li > a.highlight {
  background-color: #0081c6;
  color: #fff;
  height: 2.375rem;
  line-height: 2.375rem;
  width: 6.0625rem;
  text-align: center;
  border-radius: 1.1875rem;
}
.main-nav > .menu .highlight > a:hover, .main-nav > .menu .highlight > a:focus,
.main-nav > .menu > li > a.highlight:hover,
.main-nav > .menu > li > a.highlight:focus {
  background-color: #999d38;
  color: #fff;
}
.main-nav > .menu .is-dropdown-submenu-parent {
  position: static;
}
.main-nav > .menu .is-dropdown-submenu {
  margin-left: 0;
  border: 0 none;
  list-style-type: none;
  width: 100%;
  text-align: center;
  overflow: hidden;
  background-color: transparent;
  top: 7.125rem !important;
  padding-top: 0.1875rem;
  left: 0;
  height: 3.25rem;
  outline: 1px solid rgba(0, 0, 0, 0);
}
.main-nav > .menu .is-dropdown-submenu::before {
  position: absolute;
  top: 0.1875rem;
  bottom: 0;
  right: 0;
  left: 0;
  display: block;
  content: "";
  background-color: rgba(233, 237, 240, 0.9);
  border-bottom: 2px solid #999d38;
  height: 2.4rem;
  z-index: -1;
}
.main-nav > .menu .is-dropdown-submenu li {
  display: inline-block;
  width: auto;
  line-height: 2.1875rem;
  position: relative;
  z-index: 3;
  padding: 0;
}
.main-nav > .menu .is-dropdown-submenu li:not(:first-child) {
  margin-left: -4px;
}
.main-nav > .menu .is-dropdown-submenu li a {
  padding: 0 0.5rem;
  line-height: 2.2rem;
  height: 2.3rem;
  color: #4d4d4f;
  transition: all 0.2s ease;
}
@media screen and (min-width: 45.625em) {
  .main-nav > .menu .is-dropdown-submenu li a {
    padding: 0 1rem;
  }
}
.main-nav > .menu .is-dropdown-submenu li.current-menu-item > a:hover,
.main-nav > .menu .is-dropdown-submenu li a:hover {
  background-color: #999d38;
  color: #fff;
}
.main-nav > .menu .is-dropdown-submenu li.current-menu-item > a {
  background-color: transparent;
  color: #999d38;
  font-weight: 600;
}

.orbit-bullets {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}

.orbit .row.column, .orbit .row.columns {
  padding: 0;
}
.orbit ul.orbit-container {
  height: auto !important;
}
.orbit li.orbit-slide {
  max-height: none !important;
}
.orbit .slide-description {
  background-color: #000;
  padding: 1.75rem 3.75rem 3rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 45.625em) {
  .orbit .slide-description {
    padding: 2rem 3rem;
  }
}
@media screen and (min-width: 65.3125em) {
  .orbit .slide-description {
    font-size: 1.083125rem;
    position: absolute;
    top: 3rem;
    right: 4rem;
    background-color: rgba(0, 0, 0, 0.67);
    padding: 2.875rem 3.125rem 3.125rem 3.375rem;
    width: 21.875rem;
  }
}
.orbit .slide-title {
  font-size: 1.75rem;
  font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  margin-bottom: 0.8rem;
  line-height: 1;
  position: relative;
}
@media screen and (min-width: 45.625em) {
  .orbit .slide-title {
    font-size: 1.875rem;
  }
  .orbit .slide-title::before {
    content: "";
    display: block;
    position: absolute;
    left: -2rem;
    top: 0.6rem;
    width: 1.25rem;
    height: 1.25rem;
    background: repeating-linear-gradient(45deg, transparent, transparent 2px, #fff 2px, transparent 4px);
  }
}
@media screen and (min-width: 65.3125em) {
  .orbit .slide-title {
    line-height: 1.2;
    font-size: 2.105rem;
    margin-bottom: 1.5rem;
  }
}
.orbit a.readmore {
  background-color: #0081c6;
  color: #fff;
  transition: background-color 0.2s ease;
  text-transform: uppercase;
  border-radius: 1.4rem;
  display: inline-block;
  margin-top: 0;
  padding: 0.6em 1.4em;
  font-size: 1rem;
}
.orbit a.readmore:hover, .orbit a.readmore:focus {
  background-color: #999d38;
  color: #fff;
}
.orbit a.readmore:hover {
  transition: background-color 0.2s ease;
}
@media screen and (min-width: 45.625em) {
  .orbit a.readmore {
    font-size: 1rem;
  }
}
@media screen and (min-width: 65.3125em) {
  .orbit a.readmore {
    font-size: 1.125rem;
    margin-top: 0.8rem;
  }
}
.orbit .orbit-previous, .orbit .orbit-next {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.orbit .orbit-previous:hover, .orbit .orbit-next:hover {
  opacity: 1;
}

.home-featured {
  position: relative;
  display: block;
  min-height: 5.03958125rem;
  transition: background-color 0.2s ease;
}
.home-featured:hover {
  transition: background-color 0.2s ease;
}
.home-featured img {
  width: 100%;
  cursor: pointer;
}
@media screen and (max-width: 45.5625em) {
  .home-featured img {
    display: none !important;
  }
}
.home-featured .featured-caption {
  display: block;
  padding: 1.2rem 1.2rem;
  cursor: pointer;
  font-size: 0.9rem;
}
@media screen and (min-width: 45.625em) {
  .home-featured .featured-caption {
    width: 100%;
    padding: 1.5625rem 1.875rem;
    background-color: rgba(0, 0, 0, 0.85);
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.home-featured .featured-title {
  color: inherit;
  font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  font-size: 1.2rem;
  margin-bottom: 0;
  line-height: 1.1;
  cursor: pointer;
}
@media screen and (min-width: 45.625em) {
  .home-featured .featured-title {
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    width: 45%;
    margin-left: 5%;
  }
  .home-featured .featured-title::before {
    content: "";
    display: block;
    position: absolute;
    left: -2rem;
    top: 0.3rem;
    width: 1.25rem;
    height: 1.25rem;
    background: repeating-linear-gradient(45deg, transparent, transparent 2px, #fff 2px, transparent 4px);
  }
}
@media screen and (min-width: 65.3125em) {
  .home-featured .featured-title {
    font-size: 2.105rem;
  }
  .home-featured .featured-title::before {
    top: 0.6rem;
  }
}
.home-featured .featured-seemore {
  display: inline-block;
  cursor: pointer;
  width: 42%;
  vertical-align: text-bottom;
  color: #0081c6;
  font-size: inherit;
  text-decoration: underline;
}
@media screen and (max-width: 45.5625em) {
  .home-featured .featured-seemore {
    display: none !important;
  }
}
@media screen and (min-width: 65.3125em) {
  .home-featured .featured-seemore {
    width: 38%;
  }
}

@media screen and (max-width: 45.5625em) {
  .home .tiles-wrapper > .column:nth-child(odd) .home-featured, .home .tiles-wrapper > .columns:nth-child(odd) .home-featured {
    background-color: #262626;
    color: #fff;
  }
  .home .tiles-wrapper > .column:nth-child(odd) .home-featured:active, .home .tiles-wrapper > .columns:nth-child(odd) .home-featured:active, .home .tiles-wrapper > .column:nth-child(odd) .home-featured:hover, .home .tiles-wrapper > .columns:nth-child(odd) .home-featured:hover {
    background-color: #999d38;
    color: #fff;
  }
}

@media screen and (max-width: 45.5625em) {
  .mobile-bg-lightgray {
    background-color: #7f7f7f;
    color: #fff;
  }
}

@media screen and (max-width: 45.5625em) {
  .mobile-bg-darkgray {
    background-color: #262626;
    color: #fff;
  }
}

@media screen and (max-width: 45.5625em) {
  .mobile-bg-green {
    background-color: #999d38;
    color: #414042;
  }
}

@media screen and (max-width: 45.5625em) {
  .mobile-bg-white {
    background-color: #fff;
    color: #616264;
  }
}

.mobile-bg-lightgray:active, .mobile-bg-lightgray:hover,
.mobile-bg-darkgray:active,
.mobile-bg-darkgray:hover {
  background-color: #999d38;
  color: #fff;
}

body.home {
  background-color: #e0e1e2;
}
body.home .off-canvas-content {
  background-color: #e0e1e2;
}
@media screen and (min-width: 45.625em) {
  body.home #content {
    padding-top: 0.5rem;
  }
}
body.home #content hr {
  margin: 0.25rem 0;
  border-bottom-color: #808080;
}
body.home #content #inner-content {
  padding-bottom: 0;
}
body.home .site-footer {
  margin-top: 0;
}

.tiles-wrapper > .column, .tiles-wrapper > .columns {
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 45.5625em) {
  .tiles-wrapper > .column, .tiles-wrapper > .columns {
    margin-bottom: 0.2rem;
    padding-right: 0;
    padding-left: 0;
  }
}

.mcga-decor,
.icon-calendar {
  display: inline-block;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
}

.mcga-decor {
  background-image: url("../images/mcga_decor.png");
  height: 1rem;
  width: 1rem;
}
@media screen and (min-width: 45.625em) {
  .mcga-decor {
    height: 1.625rem;
    width: 1.625rem;
  }
}

.icon-calendar {
  background-image: url("../images/icon_calendar.png");
  height: 1rem;
  width: 1.125rem;
}
@media screen and (min-width: 45.625em) {
  .icon-calendar {
    height: 1.875rem;
    width: 1.75rem;
  }
}

.home-section--title-wrapper {
  display: block;
  padding: 1.625rem 0.8125rem;
}
@media screen and (min-width: 45.625em) {
  .home-section--title-wrapper {
    background-color: #FFF;
    padding: 1.375rem 0.8125rem 0.8125rem;
  }
}
.home-section--title-wrapper .home-section--title {
  display: inline-block;
  font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  color: #414042;
  margin-bottom: 0;
  margin-left: 0.2rem;
  font-size: 1.05rem;
}
@media screen and (min-width: 45.625em) {
  .home-section--title-wrapper .home-section--title {
    color: #616264;
    margin-left: 0.8125rem;
    margin-right: 1rem;
    font-size: 1.48rem;
  }
}
@media screen and (min-width: 65.3125em) {
  .home-section--title-wrapper .home-section--title {
    font-size: 2.105rem;
  }
}
.home-section--title-wrapper .home-section--title + .link {
  text-decoration: underline;
}
@media screen and (max-width: 45.5625em) {
  .home-section--title-wrapper .home-section--title + .link {
    display: none !important;
  }
}

.blog-links-showcase {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #ecefcc;
}
@media screen and (max-width: 45.5625em) {
  .blog-links-showcase {
    display: none !important;
  }
}
.blog-links-showcase li {
  list-style-type: none;
  background-color: #999d38;
  padding: 0.25rem;
  padding-left: 2.6875rem;
  position: relative;
}
.blog-links-showcase li a {
  display: block;
  position: relative;
}
.blog-links-showcase li:nth-child(even) {
  background-color: #ecefcc;
}
.blog-links-showcase li:nth-child(even) .post-title::before {
  content: "";
  display: block;
  position: absolute;
  left: -2rem;
  top: 0.6rem;
  width: 1.25rem;
  height: 1.25rem;
  background: repeating-linear-gradient(45deg, transparent, transparent 2px, #000 2px, transparent 4px);
}
.blog-links-showcase .post-title {
  display: block;
  position: relative;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
  min-height: 5.625rem;
}
.blog-links-showcase .post-title span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
}
.blog-links-showcase .post-title .post {
  line-height: 1.2;
  padding: 0.3rem 1.125rem;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
  transition: background-color 0.2s ease;
}
.blog-links-showcase .post-title .imagebg {
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
@media screen and (min-width: 65.3125em) {
  .blog-links-showcase .post-title {
    font-size: 1.083125rem;
  }
  .blog-links-showcase .post-title .post {
    line-height: 1.6;
    padding: 0.9rem 1.375rem;
  }
}
.blog-links-showcase .post-title::after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.blog-links-showcase .post-title::before {
  content: "";
  display: block;
  position: absolute;
  left: -2rem;
  top: 0.6rem;
  width: 1.25rem;
  height: 1.25rem;
  background: repeating-linear-gradient(45deg, transparent, transparent 2px, #fff 2px, transparent 4px);
}
.blog-links-showcase a:hover .post-title .post {
  background-color: rgba(0, 0, 0, 0.3);
}

.upcoming-events {
  margin: 0;
  padding: 0 0.3125rem;
  background-color: #FFF;
}
@media screen and (max-width: 45.5625em) {
  .upcoming-events {
    display: none !important;
  }
}
.upcoming-events li {
  border-bottom: 1px solid #bcbec0;
  font-size: 0.9375rem;
  padding: 0.9375rem 1.375rem 0.9375rem 2rem;
  list-style-type: none;
  position: relative;
}
.upcoming-events li:first-child {
  border-top: 1px solid #bcbec0;
}
.upcoming-events li::before {
  display: inline-block;
  content: "•";
  color: #616264;
  font-size: 1rem;
  vertical-align: text-top;
  line-height: 1.4;
  position: absolute;
  top: 1.3rem;
  left: 1.2rem;
}
.upcoming-events li a {
  font-weight: bold;
  text-decoration: underline;
  display: inline-block;
  max-width: 64.5%;
}
.upcoming-events li .date {
  float: right;
  color: #000;
  max-width: 35%;
}
@media screen and (min-width: 65.3125em) {
  .upcoming-events li {
    font-size: 1.083125rem;
    padding: 1.1875rem 1.6875rem 1.1875rem 2.3rem;
  }
}

.cta-form {
  background-color: #afbb23;
  color: #fff;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  margin-top: 0.8rem;
}
@media screen and (max-width: 45.5625em) {
  .cta-form {
    display: none !important;
  }
}
@media screen and (min-width: 65.3125em) {
  .cta-form {
    padding-top: 1.375rem;
    padding-bottom: 1.375rem;
  }
}

.cta-form--title {
  font-size: 1.625rem;
  font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  line-height: 1;
  margin-bottom: 0.3rem;
}
@media screen and (min-width: 65.3125em) {
  .cta-form--title {
    margin-bottom: 0.5rem;
    font-size: 2.105rem;
  }
}

.cta-form--description {
  font-size: 0.9375rem;
  color: #fff;
  margin-bottom: 0.6rem;
  padding: 0 0.8rem;
}
@media screen and (min-width: 65.3125em) {
  .cta-form--description {
    font-size: 1.083125rem;
    margin-bottom: 0.8rem;
  }
}

.cta-form--field[type=text] {
  width: 80%;
  border: 0 none;
  box-shadow: 0 0 0.25rem 0.0625rem #cecece inset;
  margin-bottom: 0;
  height: 2.375rem;
  line-height: 2.375rem;
  padding: 0 2.4rem 0 0.8rem;
  width: 100%;
  border-radius: 1.1875rem;
  color: #4d4d4f;
  font-size: 0.875rem;
}
.cta-form--field[type=text]::-webkit-input-placeholder {
  color: #888a8c;
}
.cta-form--field[type=text]:-moz-placeholder {
  color: #888a8c;
}
.cta-form--field[type=text]::-moz-placeholder {
  color: #888a8c;
}
.cta-form--field[type=text]:-ms-input-placeholder {
  color: #888a8c;
}
@media screen and (min-width: 45.625em) {
  .cta-form--field[type=text] {
    font-size: 1.08125rem;
  }
}

.menu-header .search-form {
  margin-top: 1.7rem;
}
.menu-header .search-field {
  border: 1px solid #ccc;
}

.menu-footer {
  padding-top: 0.2rem;
  padding-bottom: 0.8rem;
}
.menu-footer .contact-info {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.3;
}
.menu-footer .contact-info a {
  color: inherit;
}
.menu-footer .social-links li, .menu-footer .modalbox li, .menu-footer .corngrows-social .mncorn-social li, .corngrows-social .menu-footer .mncorn-social li {
  margin: 0 0.8rem;
  padding-bottom: 0.4rem;
}
@media screen and (min-width: 45.625em) {
  .menu-footer .social-links li, .menu-footer .modalbox li, .menu-footer .corngrows-social .mncorn-social li, .corngrows-social .menu-footer .mncorn-social li {
    padding-bottom: 0;
  }
  .menu-footer .social-links li:first-child, .menu-footer .modalbox li:first-child, .menu-footer .corngrows-social .mncorn-social li:first-child, .corngrows-social .menu-footer .mncorn-social li:first-child {
    margin-right: 0;
    margin-left: 0;
  }
  .menu-footer .social-links li:not(:first-child), .menu-footer .modalbox li:not(:first-child), .menu-footer .corngrows-social .mncorn-social li:not(:first-child), .corngrows-social .menu-footer .mncorn-social li:not(:first-child) {
    margin-left: 1.6rem;
    margin-right: 0;
  }
}
.menu-footer .social-links a, .menu-footer .modalbox a, .menu-footer .corngrows-social .mncorn-social a, .corngrows-social .menu-footer .mncorn-social a {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 1.2rem;
  background-size: 65%;
}

.off-canvas.position-right {
  height: 100%;
}
.off-canvas .is-accordion-submenu-parent a::after {
  display: none;
}
.off-canvas .is-accordion-submenu {
  padding-left: 1rem;
  margin-left: 0;
  background-color: #999d38;
  list-style-type: none;
}
.off-canvas .menu {
  text-align: center;
}
.off-canvas .menu a {
  background-color: #fff;
  display: block;
  height: 2.8rem;
  line-height: 2.8rem;
  color: #4d4d4f;
  font-size: 1.25rem;
  padding: 0;
  border-bottom: 1px solid #93a2a2;
}
.off-canvas .menu a:active {
  outine: 1px dotted #999d38;
}
.off-canvas .menu .current-menu-item,
.off-canvas .menu .is-accordion-submenu-parent[aria-expanded=true] > a {
  background-color: #999d38;
  color: #fff;
}
.off-canvas .menu .highlight a,
.off-canvas .menu a.highlight {
  background-color: #0081c6;
  color: #fff;
}
.off-canvas .menu.secondary a {
  background-color: #e1e5ac;
}
.off-canvas .toggler-wrapper {
  padding-right: 0;
}

.fixed-nav-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.fixed-nav {
  width: 100%;
  background-color: rgba(233, 237, 240, 0.9);
  border-bottom: 2px solid #999d38;
}
.fixed-nav.is-anchored {
  display: none;
}
.fixed-nav.is-stuck:not(.is-at-top, .is-docked) {
  visibility: hidden;
  height: 1px;
  overflow: hidden;
}
.fixed-nav .homelink {
  outline: 0 none;
}
.fixed-nav .homelink img {
  max-height: 2.575rem;
  margin-bottom: 0;
  margin-top: 0.3rem;
}
.fixed-nav .secondary-menu-toggle {
  padding: 0;
  line-height: 3.375rem;
  height: 3.375rem;
}
.fixed-nav .secondary-menu-toggle img {
  max-height: 1.134375rem;
}
.fixed-nav .search-form {
  margin-top: 0.5rem;
}
.fixed-nav div > .menu > li > a {
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1.1rem;
  line-height: 3.375rem;
  color: #4d4d4f;
}
@media screen and (min-width: 65.3125em) {
  .fixed-nav div > .menu > li > a {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }
}
.fixed-nav div > .menu > li > a:hover {
  background-color: #dbe09b;
}
.fixed-nav div > .menu > li:hover > a {
  background-color: #dbe09b;
}
.fixed-nav div > .menu > li.current-menu-item:not(.highlight) > a, .fixed-nav div > .menu > li.current_page_ancestor:not(.highlight) > a {
  background-color: transparent;
  color: #999d38;
  font-weight: bold;
}
.fixed-nav div > .menu .highlight > a,
.fixed-nav div > .menu > li > a.highlight {
  background-color: #0081c6;
  color: #fff;
}
.fixed-nav div > .menu .is-dropdown-submenu-parent {
  position: static;
}
.fixed-nav div > .menu .is-dropdown-submenu {
  margin-left: 0;
  border: 0 none;
  list-style-type: none;
  width: 100%;
  text-align: center;
  overflow: hidden;
  background-color: transparent;
  top: 7.125rem !important;
  padding-top: 0.1875rem;
  left: 0;
  height: 3.25rem;
  outline: 1px solid rgba(0, 0, 0, 0);
}
.fixed-nav div > .menu .is-dropdown-submenu::before {
  position: absolute;
  top: 0.1875rem;
  bottom: 0;
  right: 0;
  left: 0;
  display: block;
  content: "";
  background-color: rgba(233, 237, 240, 0.9);
  border-bottom: 2px solid #999d38;
  height: 2.4rem;
  z-index: -1;
}
.fixed-nav div > .menu .is-dropdown-submenu li {
  display: inline-block;
  width: auto;
  line-height: 2.1875rem;
  position: relative;
  z-index: 3;
  padding: 0;
}
.fixed-nav div > .menu .is-dropdown-submenu li:not(:first-child) {
  margin-left: -4px;
}
.fixed-nav div > .menu .is-dropdown-submenu li a {
  padding: 0 0.5rem;
  line-height: 2.2rem;
  height: 2.3rem;
  color: #4d4d4f;
  transition: all 0.2s ease;
}
@media screen and (min-width: 45.625em) {
  .fixed-nav div > .menu .is-dropdown-submenu li a {
    padding: 0 1rem;
  }
}
.fixed-nav div > .menu .is-dropdown-submenu li.current-menu-item > a:hover,
.fixed-nav div > .menu .is-dropdown-submenu li a:hover {
  background-color: #999d38;
  color: #fff;
}
.fixed-nav div > .menu .is-dropdown-submenu li.current-menu-item > a {
  background-color: transparent;
  color: #999d38;
  font-weight: 600;
}
.fixed-nav div > .menu .is-dropdown-submenu {
  position: fixed !important;
  top: 3.3125rem !important;
}
.fixed-nav .secondary-menu-toggle-wrapper .secondary-menu-wrapper {
  display: none;
  border-bottom: 3px solid #d6d995;
  background-color: #999d38;
  position: absolute;
  top: auto;
  left: 0;
  width: 100%;
  text-align: right;
}
.fixed-nav .secondary-menu-toggle-wrapper .secondary-menu-wrapper ul {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 0.4rem;
}
.fixed-nav .secondary-menu-toggle-wrapper .secondary-menu-wrapper li {
  display: inline-block;
}
.fixed-nav .secondary-menu-toggle-wrapper .secondary-menu-wrapper a {
  line-height: 2rem;
  padding-right: 0.8rem;
  padding-left: 0.8rem;
  font-size: 1rem;
  color: #fff;
}
.fixed-nav .secondary-menu-toggle-wrapper .secondary-menu-wrapper a:hover {
  text-decoration: underline;
  background-color: transparent;
}
.fixed-nav .secondary-menu-toggle-wrapper .secondary-menu-wrapper li.current-menu-item > a,
.fixed-nav .secondary-menu-toggle-wrapper .secondary-menu-wrapper li.current_page_ancestor > a {
  color: #fff;
  font-weight: bold;
}
.fixed-nav .secondary-menu-toggle-wrapper:hover .secondary-menu-wrapper {
  display: block;
}

.page-banner {
  position: relative;
  min-height: 7rem;
  border-bottom: 0.3125rem solid #999d38;
  background-size: cover;
  background-position: center center;
  margin-bottom: 2rem;
  clear: both;
}
@media screen and (min-width: 45.625em) {
  .page-banner {
    height: 11.25rem;
    max-height: none;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 65.3125em) {
  .page-banner {
    height: 14.75rem;
  }
}
.page-banner .title-wrapper {
  position: relative;
  background-color: rgba(0, 0, 0, 0.65);
  text-align: left;
  min-height: 7rem;
}
@media screen and (min-width: 45.625em) {
  .page-banner .title-wrapper {
    min-height: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    max-width: 75rem;
    margin: 0 auto;
    position: relative;
    padding-left: 0.9rem;
    bottom: auto;
    top: 11.25rem;
    right: auto;
    background-color: transparent;
  }
}
@media screen and (min-width: 65.3125em) {
  .page-banner .title-wrapper {
    top: 14.75rem;
  }
}
.page-banner .page-title {
  display: inline-block;
  margin: 0;
  color: #fff;
  padding: 1.125rem 1.625rem;
  overflow: hidden;
  font-size: 3.125rem;
  font-weight: normal;
  line-height: 1;
}
@media screen and (min-width: 45.625em) {
  .page-banner .page-title {
    margin-top: -43px;
    display: inline-block;
    background-color: #4d4d4f;
    font-size: 2.083125rem;
    padding: 0.6em 1.1em;
    border: 2px solid #999d38;
    border-radius: 2.6875rem;
  }
}
.page-banner.new {
  height: auto;
  margin-bottom: 0;
  border-width: 20px;
}
.page-banner.new .row {
  position: relative;
  height: 20rem;
}
.page-banner.new h1 {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  padding-right: 40px;
  padding-left: 40px;
  background-color: #000;
  transform: translateY(-50%);
  font-size: 50px;
  font-weight: 700;
  color: #fff;
}

.widget ul.categories,
.widget ul.subnav {
  padding: 0;
  margin: 0;
  border-top: 1px solid #bcbebf;
  line-height: 1.3;
}
.widget ul.categories li,
.widget ul.subnav li {
  border-bottom: 1px solid #bcbebf;
}
.widget ul.categories a,
.widget ul.subnav a {
  display: block;
  padding: 1.6875rem 2.3125rem;
  color: #0081c6;
  text-decoration: underline;
}
.widget ul.categories a,
.widget ul.subnav a {
  transition: background-color 0.2s ease;
  background: transparent;
}
.widget ul.categories a:hover,
.widget ul.subnav a:hover {
  transition: background-color 0.2s ease;
}
.widget ul.categories li.active, .widget ul.categories li.current-menu-item, .widget ul.categories li.selected,
.widget ul.subnav li.active,
.widget ul.subnav li.current-menu-item,
.widget ul.subnav li.selected {
  font-weight: bold;
  background-color: #e2e2e2;
}
.widget ul.categories li.active a, .widget ul.categories li.current-menu-item a, .widget ul.categories li.selected a,
.widget ul.subnav li.active a,
.widget ul.subnav li.current-menu-item a,
.widget ul.subnav li.selected a {
  text-decoration: none;
  color: #000;
}
.widget ul.categories li.active a:hover, .widget ul.categories li.current-menu-item a:hover, .widget ul.categories li.selected a:hover,
.widget ul.subnav li.active a:hover,
.widget ul.subnav li.current-menu-item a:hover,
.widget ul.subnav li.selected a:hover {
  text-decoration: none;
  cursor: default;
}
.widget ul.categories li:not(.selected, .current-menu-item) a:hover,
.widget ul.subnav li:not(.selected, .current-menu-item) a:hover {
  background-color: #efefef;
}
.widget ul.events {
  border-top: 1px solid #bcbebf;
}
.widget ul.events li {
  border-bottom: 1px solid #bcbebf;
  padding: 1.2rem 2.3125rem;
  line-height: 1;
}
.widget ul.events .event-date {
  font-size: 1.083125rem;
  color: #010101;
  padding-top: 0.3rem;
}
.widget ul.events a {
  font-weight: bold;
  line-height: 1.1;
  text-decoration: underline;
}
.widget .widget-title {
  font-size: 1.55rem;
  padding: 0 1.5625rem 1.5625rem 2.3125rem;
  color: color--mcga-darkgray;
  line-height: 1.2;
}

.widget_nav_menu .menu {
  padding: 0;
  margin: 0;
  border-top: 1px solid #bcbebf;
  line-height: 1.3;
}
.widget_nav_menu .menu > li {
  display: list-item;
}
.widget_nav_menu .menu li {
  border-bottom: 1px solid #bcbebf;
}
.widget_nav_menu .menu a {
  display: block;
  padding: 1.6875rem 2.3125rem;
  color: #0081c6;
  text-decoration: underline;
}
.widget_nav_menu .menu a {
  transition: background-color 0.2s ease;
  background: transparent;
}
.widget_nav_menu .menu a:hover {
  transition: background-color 0.2s ease;
}
.widget_nav_menu .menu li.active, .widget_nav_menu .menu li.current-menu-item, .widget_nav_menu .menu li.selected {
  font-weight: bold;
  background-color: #e2e2e2;
}
.widget_nav_menu .menu li.active a, .widget_nav_menu .menu li.current-menu-item a, .widget_nav_menu .menu li.selected a {
  text-decoration: none;
  color: #000;
}
.widget_nav_menu .menu li.active a:hover, .widget_nav_menu .menu li.current-menu-item a:hover, .widget_nav_menu .menu li.selected a:hover {
  text-decoration: none;
  cursor: default;
}
.widget_nav_menu .menu li:not(.selected, .current-menu-item) a:hover {
  background-color: #efefef;
}

.blog-posts-list article,
[role=main].research--page article,
[role=main].event--page article {
  padding: 1.6rem 0;
  border-bottom: 3px solid #999d38;
}
.single .blog-posts-list article, .blog-posts-list article.not-found,
.single [role=main].research--page article,
[role=main].research--page article.not-found,
.single [role=main].event--page article,
[role=main].event--page article.not-found {
  padding-bottom: 0;
  border-bottom: 0;
}
.blog-posts-list .page-title.show-for-sr + article,
.blog-posts-list article:first-child,
[role=main].research--page .page-title.show-for-sr + article,
[role=main].research--page article:first-child,
[role=main].event--page .page-title.show-for-sr + article,
[role=main].event--page article:first-child {
  padding-top: 0;
}
.blog-posts-list h2,
[role=main].research--page h2,
[role=main].event--page h2 {
  font-size: 1.333125rem;
  line-height: 1.958125rem;
  font-weight: normal;
  line-height: 1.2;
}
.blog-posts-list h2 a:not(.button),
[role=main].research--page h2 a:not(.button),
[role=main].event--page h2 a:not(.button) {
  text-decoration: none;
}
.blog-posts-list h2 a:not(.button):hover,
[role=main].research--page h2 a:not(.button):hover,
[role=main].event--page h2 a:not(.button):hover {
  text-decoration: underline;
}
.blog-posts-list .excerpt, .blog-posts-list .post-content,
[role=main].research--page .excerpt,
[role=main].research--page .post-content,
[role=main].event--page .excerpt,
[role=main].event--page .post-content {
  color: #616264;
  font-size: 1rem;
  margin-bottom: 2rem;
}
.blog-posts-list .excerpt-read-more,
[role=main].research--page .excerpt-read-more,
[role=main].event--page .excerpt-read-more {
  display: block;
  margin-top: 0.5rem;
  text-decoration: underline;
  font-size: 92%;
}

.blog-posts-list .post-author, .blog-posts-list .post-categories, .blog-posts-list .post-tags {
  margin-bottom: 0.2rem;
}

.article-meta {
  font-size: 0.75rem;
}
.article-meta div {
  margin-bottom: 0.5rem;
}
.article-meta div:last-child {
  margin-bottom: 0;
}
.article-meta a {
  text-decoration: underline;
}
.article-meta .post-categories ul,
.article-meta .post-tags ul {
  margin: 0;
  padding: 0;
  display: inline-block;
  list-style-type: none;
}
.article-meta .post-categories ul li,
.article-meta .post-tags ul li {
  display: inline-block;
}
.article-meta .tags-title,
.article-meta .categories-title {
  font-weight: bold;
}

.archive .featured-image,
.page-template-home .featured-image {
  width: 100%;
}
@media screen and (min-width: 45.625em) {
  .archive .featured-image,
.page-template-home .featured-image {
    float: left;
    max-width: 30%;
    max-height: auto;
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    margin-bottom: 0.3rem;
  }
}

[role=main].research--page article h2,
[role=main].event--page article h2 {
  margin-bottom: 0;
}
[role=main].research--page article h2 a:not(.button),
[role=main].event--page article h2 a:not(.button) {
  font-weight: normal;
  font-size: 1.333125rem;
}

.research--publication-year,
.research--author-data {
  color: #4d4d4f;
}

.research--author-data {
  margin-bottom: 1rem;
}
.research--author-data .separator {
  display: inline-block;
  margin: 0 0.3rem;
}

.research-content {
  margin-bottom: 1rem;
}
.research-content a.read-more {
  font-weight: normal;
  margin-top: 0.5rem;
  display: inline-block;
}
.research-content .button.small {
  text-transform: none;
  font-size: 0.8rem;
  padding: 0.5em 1rem;
}
.research-content .button.small:first-child {
  margin-right: 2rem;
}
@media screen and (min-width: 45.625em) {
  .research-content .button.small {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }
}

[role=main] a:not(.button, .publication--title) {
  text-decoration: underline;
  font-weight: bold;
}
[role=main] .button {
  text-transform: uppercase;
  border-radius: 1.6rem;
}
[role=main] .button:not(.secondary):hover {
  background-color: #999d38;
}
[role=main] .button:active {
  position: relative;
  top: 1px;
}
[role=main] textarea {
  resize: none;
}
[role=main] h2 {
  font-size: 1rem;
  font-weight: bold;
  color: #4d4d4f;
}
[role=main] h3, [role=main] h4 {
  font-size: 1rem;
  font-weight: bold;
  color: #616264;
}
[role=main] h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e0e1e2;
}
[role=main] blockquote {
  border-left: 0 none;
  color: #4d4d4f;
  font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  font-style: italic;
  line-height: 2rem;
  padding: 0;
  font-size: 1.166875rem;
  text-align: center;
}
[role=main] blockquote p {
  color: #4d4d4f;
  font-size: 1.166875rem;
}
[role=main] .foreword {
  font-size: 1.375rem;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  color: #4d4d4f;
  text-align: center;
}
@media screen and (min-width: 45.625em) {
  [role=main] .foreword {
    font-size: 1.625rem;
    line-height: 1.25;
  }
}
[role=main] .foreword h2 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.single .featured-image {
  margin-bottom: 2rem;
}
.single .entry-title {
  font-size: 2rem;
  font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  color: #4d4d4f;
}
.single .article-footer {
  padding: 0.6rem 0 0.5rem;
  font-size: 86%;
}
.single .post-author, .single .post-categories, .single .post-tags {
  margin-bottom: 0.3rem;
}

.main-content .sidebar {
  padding-top: 1.1rem;
}
.main-content .sidebar .widget + .widget {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #999d38;
}
.main-content .sidebar .widget .widgettitle {
  font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  font-size: 1.5rem;
  color: #4d4d4f;
}

.comments-area {
  margin-top: 2rem;
}

@media screen and (min-width: 45.625em) {
  .page-template-corn-topics .page-banner .title-wrapper,
.page-template-page-cornfacts .page-banner .title-wrapper,
.page-template-page-fullwidth .page-banner .title-wrapper,
.page-template-publications .page-banner .title-wrapper {
    text-align: center;
  }
}

.corn-topics--foreword {
  font-size: 1.375rem;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  color: #4d4d4f;
  text-align: center;
}
@media screen and (min-width: 45.625em) {
  .corn-topics--foreword {
    font-size: 1.625rem;
    line-height: 1.25;
  }
}

.corn-topics--list .corn-box {
  display: block;
  margin-bottom: 2rem;
  text-align: center;
  border: 1px solid #e7e7e8;
  position: relative;
  text-decoration: none !important;
  padding-top: 1.2rem;
  padding-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.corn-topics--list .corn-box .background {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
  opacity: 0.2;
  transition: all 0.2s ease;
}
.corn-topics--list .corn-box .box-content {
  position: relative;
  z-index: 2;
}
.corn-topics--list .corn-box:hover .background {
  opacity: 0.25;
  -webkit-filter: sepia(25%) brightness(95%) saturate(180%);
          filter: sepia(25%) brightness(95%) saturate(180%);
}
.corn-topics--list h2.title {
  font-size: 1.6rem;
  color: #4d4d4f;
  text-decoration: none;
  margin-bottom: 0;
  line-height: 1.1;
  min-height: 2rem;
}
@media screen and (min-width: 45.625em) {
  .corn-topics--list h2.title {
    font-size: 1.725rem;
    height: 4.1rem;
  }
}
.corn-topics--list .description {
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.4;
  color: #4d4d4f;
  display: block;
  margin-bottom: 1rem;
  padding: 0 0.7rem;
}
.corn-topics--list .description p {
  line-height: inherit;
}
@media screen and (min-width: 45.625em) {
  .corn-topics--list .description {
    font-size: 1.2rem;
    height: 10rem;
    overflow: hidden;
  }
}
.corn-topics--list .readmore {
  display: inline-block;
  background-color: #0081c6;
  color: #fff;
  transition: background-color 0.2s ease;
  text-transform: uppercase;
  border-radius: 1.4rem;
  display: inline-block;
  margin-top: 0;
  padding: 0.6em 1.4em;
  font-size: 1rem;
  text-transform: none;
  border-radius: 1.6rem;
  border: 1px solid #0081c6;
  padding: 0.4em 1.4em;
}
.corn-topics--list .readmore:active {
  position: relative;
  top: 1px;
}
.corn-topics--list .readmore:hover, .corn-topics--list .readmore:focus {
  background-color: #999d38;
  color: #fff;
}
.corn-topics--list .readmore:hover {
  transition: background-color 0.2s ease;
}
@media screen and (min-width: 45.625em) {
  .corn-topics--list .readmore {
    font-size: 1rem;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-topics--list .readmore {
    font-size: 1.125rem;
    margin-top: 0.8rem;
  }
}
@media screen and (min-width: 45.625em) {
  .corn-topics--list .readmore {
    font-size: 1.25rem;
  }
}
.corn-topics--list .readmore:hover {
  background-color: #FFF;
  color: #0081c6;
}

@media screen and (min-width: 45.625em) {
  .page main,
.single main {
    padding-top: 0.5rem;
  }
}
@media screen and (min-width: 65.3125em) {
  .page main,
.single main {
    min-height: 20rem;
  }
}

main .page-title,
main .entry-title {
  font-size: 2rem;
  font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  color: #4d4d4f;
}
main .page-title {
  line-height: 1.1;
}

.publication--item,
.form--item,
.partnership--item {
  border-bottom: 2px solid #999d38;
  padding-bottom: 2.1rem;
  padding-top: 1.9rem;
}
.publication--item:first-child,
.form--item:first-child,
.partnership--item:first-child {
  padding-top: 0;
}

.publication--picture {
  box-shadow: 0.4rem 0.4rem 0.5rem rgba(50, 50, 50, 0.2);
}

.publication--picture,
.form--picture,
.partner--logo {
  max-width: 80%;
}
@media screen and (min-width: 65.3125em) {
  .publication--picture,
.form--picture,
.partner--logo {
    max-width: 50%;
  }
}
@media screen and (min-width: 65.3125em) {
  .publication--picture,
.form--picture,
.partner--logo {
    max-width: 50%;
  }
}

.form--picture {
  opacity: 0.7;
}

.publication--title,
.form--title,
.partner--name {
  font-size: 1.333125rem;
  line-height: 1.956875rem;
  display: inline-block;
}
.publication--title + .publication--description,
.publication--title + .partner--description,
.publication--title + .form--description,
.form--title + .publication--description,
.form--title + .partner--description,
.form--title + .form--description,
.partner--name + .publication--description,
.partner--name + .partner--description,
.partner--name + .form--description {
  margin-top: 1.9375rem;
}

.publication--title,
.form--title {
  text-decoration: underline;
}

.partner--name {
  font-weight: bold;
  color: #616264;
}

div.publication--title {
  color: #4d4d4f;
}

.publication--date {
  font-size: 0.75rem;
  line-height: 1;
  color: #4d4d4f;
  margin-bottom: 1.1875rem;
}

.publication--description,
.form--description {
  color: #616264;
}
@media screen and (min-width: 45.625em) {
  .publication--description,
.form--description {
    margin-right: 1.5rem;
  }
}
@media screen and (min-width: 65.3125em) {
  .publication--description,
.form--description {
    margin-right: 3rem;
  }
}

#contact-fixed-sidebar {
  padding-top: 2.5rem;
  margin-bottom: 1rem;
}
#contact-fixed-sidebar .widget_text {
  border-top: 0;
  text-align: center;
  font-size: 1rem;
  color: #4d4d4f;
  margin-bottom: 0;
}
@media screen and (min-width: 45.625em) {
  #contact-fixed-sidebar .widget_text {
    padding: 0 1.2rem;
  }
}
@media screen and (min-width: 65.3125em) {
  #contact-fixed-sidebar .widget_text {
    padding: 0 2.2rem;
  }
}
#contact-fixed-sidebar .widget_text .widgettitle {
  font-family: Tahoma, Verdana, Segoe, sans-serif;
  padding: 0;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  padding-bottom: 0;
}

.contact--item {
  margin-bottom: 2rem;
  color: #4d4d4f;
}
.contact--item:last-child:not(:first-child) {
  float: left;
}
@media screen and (min-width: 45.625em) {
  .contact--item {
    margin-bottom: 0.9rem;
    margin-top: 1.1rem;
  }
}
@media screen and (min-width: 45.625em) and (max-width: 65.25em) {
  .contact--item:nth-child(2n+3) {
    clear: left;
  }
}
@media screen and (min-width: 65.3125em) {
  .contact--item:nth-child(3n+4) {
    clear: left;
  }
}

.contact--picture {
  margin-bottom: 0.8rem;
  text-align: center;
}

.contact--details {
  padding: 0 1rem;
}
@media screen and (min-width: 45.625em) {
  .contact--details {
    padding: 0 2rem;
  }
}

.contact--name {
  font-weight: bold;
}

.contact--position,
.contact--role,
.contact--info,
.contact--counties_served,
.contact--phones {
  font-size: 86%;
}

.contact--info {
  padding-top: 0.4rem;
}

.contact--phones .phone {
  display: block;
}
.contact--phones abbr[title] {
  border-bottom: 0 none;
  text-decoration: none;
  font-weight: bold;
  color: #616264;
  cursor: default;
}

.contact--email .bit,
.event--contact .bit {
  unicode-bidi: bidi-override;
  direction: rtl;
}
.contact--email .ebg13,
.event--contact .ebg13 {
  display: none;
}

.pods-pagination-advanced {
  margin-top: 2rem;
  margin-bottom: 1rem;
  display: block;
  text-align: center;
}
.pods-pagination-advanced .pods-pagination-number {
  display: inline-block;
  margin: 0 0.2rem;
}
.pods-pagination-advanced .pods-pagination-current {
  font-weight: bold;
  color: #4d4d4f;
}

@media screen and (min-width: 45.625em) {
  #sidebar-subnav-research .subnav li:first-child {
    margin-bottom: 4rem;
  }
  #sidebar-subnav-research .subnav li:first-child + li {
    border-top: 1px solid #bcbebf;
  }
}

.contacts--nav-toggle {
  text-align: left;
}

.tax-member_type_category .page-banner {
  margin-bottom: 0;
}
@media screen and (min-width: 45.625em) {
  .tax-member_type_category .page-banner {
    margin-bottom: 2rem;
  }
}
.tax-member_type_category #content #inner-content {
  padding-top: 0;
}
@media screen and (min-width: 45.625em) {
  .tax-member_type_category #content #inner-content {
    padding-top: 0.3rem;
  }
}

.dropdown-pane {
  padding: 0;
}

.event--page[role] .event-image.event-image {
  padding-right: 1rem;
  padding-bottom: 0.5rem;
  padding-top: 0.3rem;
}
.event--page[role] .hide-for-medium > h2 {
  margin-bottom: 0.6rem;
}
.event--page[role] .event-content {
  margin-bottom: 2rem;
}
@media screen and (min-width: 45.625em) {
  .event--page[role] .event-content {
    display: inline;
    float: none !important;
  }
}
.event--page[role] .event-content .post-content,
.event--page[role] .event-content .post-excerpt {
  margin-bottom: 0;
}
.event--page[role] .event-content .post-content p:last-child,
.event--page[role] .event-content .post-excerpt p:last-child {
  margin-bottom: 0.2rem;
}
.event--page[role] .event-content .event--contact a[href],
.event--page[role] .event-content .event--website a[href] {
  font-weight: normal;
}
.event--page[role] .event-content .excerpt-read-more {
  display: inline-block;
  margin-left: 0.3rem;
}

.event-header .event--timely {
  margin-top: 0.3rem;
}
.event-header .event--location {
  margin-bottom: 0.3rem;
}
.event-header .event--timely,
.event-header .event--location {
  color: #4d4d4f;
  line-height: 1.3;
  font-weight: bold;
}
.event-header .date + .time::before {
  display: inline-block;
  content: "•";
  font-size: 0.7rem;
  vertical-align: text-top;
  line-height: 1.7;
  margin: 0 0.4rem 0 0.1rem;
}

.post-type-archive-event article.event {
  padding: 1.6rem 0;
  border-bottom: 3px solid #999d38;
}

.corn-topic--badge {
  display: inline-block;
  color: #fff;
  background-color: #999d38;
  padding: 0.4375rem 0.6rem 0.4375rem 2.2rem;
  margin-bottom: 1.6rem;
}
.corn-topic--badge span {
  position: relative;
  font-weight: bold;
}
.corn-topic--badge span::before {
  content: "";
  display: block;
  position: absolute;
  left: -1.6rem;
  top: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: repeating-linear-gradient(45deg, transparent, transparent 2px, #fff 2px, transparent 4px);
}

.corn-topic--badge-wrapper {
  clear: both;
}

#sidebar-corn-topics {
  padding-top: 0;
}
@media screen and (min-width: 45.625em) {
  #sidebar-corn-topics {
    margin-top: -0.1rem;
  }
}
#sidebar-corn-topics .widget-corntopic .widget-title {
  color: #999d38;
  font-size: 1.6875rem;
  padding-bottom: 0.6rem;
  margin-bottom: 0;
}
#sidebar-corn-topics .widget-corntopic .content {
  color: #4d4d4f;
  padding: 0 1.5625rem 0 2.3125rem;
}
#sidebar-corn-topics .widget-corntopic p {
  margin-bottom: 0;
}
#sidebar-corn-topics .widget-corntopic + .widget {
  border-top: 0 none;
  margin-top: 0.4rem;
}

#main.corntopics--stream article {
  padding: 1.6rem 0;
  border-bottom: 3px solid #999d38;
}
#main.corntopics--stream article:first-child {
  padding-top: 0;
}
#main.corntopics--stream header h2 {
  font-size: 1.333125rem;
  line-height: 1.958125rem;
  font-weight: normal;
  line-height: 1.2;
}
#main.corntopics--stream header h2 a:not(.button) {
  text-decoration: none;
}
#main.corntopics--stream header h2 a:not(.button):hover {
  text-decoration: underline;
}
#main.corntopics--stream header h2 a {
  font-weight: normal;
}
#main.corntopics--stream .type-post .excerpt-read-more {
  display: block;
  clear: both;
  margin-top: 1rem;
  font-weight: normal;
}
#main.corntopics--stream .type-post .featured-image {
  float: left;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
#main.corntopics--stream .type-publication .featured-image,
#main.corntopics--stream .type-page .featured-image {
  float: left;
  margin-right: 1rem;
}

.search-keywords {
  display: inline-block;
  background-color: #ecefcc;
  padding: 0 0.3rem;
}

#content-not-found {
  min-height: 20rem;
}

.accordion-title {
  font-size: 1rem;
}

.tabs {
  border-bottom: 2px solid #999d38;
}

.tabs-title a {
  background-color: #e0e1e2;
  text-decoration: none !important;
  color: #616264;
  transition: all 0.2s ease;
}
.tabs-title a span {
  position: relative;
  font-weight: bold;
}
.tabs-title a span::before {
  content: "";
  display: block;
  position: absolute;
  left: -1.6rem;
  top: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: repeating-linear-gradient(45deg, transparent, transparent 2px, #616264 2px, transparent 4px);
}
.tabs-title a[aria-selected=true], .tabs-title a:hover {
  color: #fff;
}
.tabs-title a[aria-selected=true] span::before, .tabs-title a:hover span::before {
  content: "";
  display: block;
  position: absolute;
  left: -1.6rem;
  top: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: repeating-linear-gradient(45deg, transparent, transparent 2px, #fff 2px, transparent 4px);
}
.tabs-title.is-active a {
  cursor: default;
}

.tab--placeholder {
  min-height: 4rem;
  background: transparent url("../images/loading.svg") center center no-repeat;
}
@media screen and (min-width: 45.625em) {
  .tab--placeholder {
    margin-top: 2rem;
    min-height: 10rem;
  }
}

.search-results .type-contact .contact--name {
  font-size: 1.333125rem;
  line-height: 1.958125rem;
  font-weight: normal;
  line-height: 1.2;
  color: #616264;
  margin-top: 1rem;
}
.search-results .type-contact .contact--name a:not(.button) {
  text-decoration: none;
}
.search-results .type-contact .contact--name a:not(.button):hover {
  text-decoration: underline;
}

.gfield_repeater_item {
  background: #f0f0f0;
  padding: 20px;
}

.gfield_repeater_item:nth-child(odd) {
  background: #fafafa;
}

.gform_wrapper .gfield_repeater_cell label {
  color: #0a0a0a;
}

.add_repeater_item_plus:after {
  content: "Add Sponsor Item";
  margin-left: 5px;
}

.remove_repeater_item_minus:after {
  content: "Remove Sponsor Item";
  margin-left: 5px;
}

.gfield_repeater_buttons .add_repeater_item_plus,
.gfield_repeater_buttons .remove_repeater_item_minus {
  width: auto;
  height: auto;
  background: #dcdcdc;
  font-size: 14px;
  padding: 5px;
  border-radius: 20px;
}

.gform_confirmation_wrapper a {
  color: white;
}

/* New home styles */
iframe {
  max-width: 100%;
}

h1 {
  line-height: 2em;
  font-weight: 700;
}

h2 {
  font-size: 33px;
}

h3 {
  font-size: 28px;
  font-weight: 700;
}

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

.h-1x {
  height: 285px;
}
.h-1x.h-sm {
  height: 200px;
}

.h-2x {
  height: 570px;
}
.h-2x.h-sm {
  height: 400px;
}

.padded {
  padding: 3rem;
}

.bg-white {
  background-color: #fff;
}
.bg-white h2,
.bg-white h3,
.bg-white h4,
.bg-white p {
  color: #000;
}

.bg-gray {
  background-color: #b6b6b6;
}
.bg-gray * {
  color: #fff;
}

.bg-blue {
  background-color: #0081c6;
}
.bg-blue * {
  color: #fff;
}

.bg-green {
  background-color: #999d38;
}
.bg-green * {
  color: #fff;
}

.bg-cover {
  background-color: #eee;
  background-position: 50% 0;
  background-size: cover;
}

.v-mid {
  vertical-align: middle;
}

.fixed-nav {
  display: none;
}

.text-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0081c6;
  border-radius: 10px;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
}
.text-btn:hover {
  background-color: #006093;
  color: #fff;
}

.home-column {
  display: table;
  table-layout: fixed;
  width: 100%;
  box-sizing: border-box;
}
.home-column * {
  box-sizing: border-box;
}
.home-column > .half {
  position: relative;
  display: table-cell;
  width: 50%;
}
.home-column.offset > .half {
  width: 45%;
}
.home-column.offset > .half + .half {
  width: 55%;
}

#home-intro .intro h1 {
  margin-bottom: 35px;
}
#home-intro .intro h1 span {
  display: table;
  padding: 5px 20px;
  margin-bottom: 15px;
  background-color: rgba(0, 0, 0, 0.8);
  line-height: 1.3;
  color: #fff;
}
#home-intro .podcast img {
  display: block;
  max-width: 150px;
  margin-right: auto;
  margin-left: auto;
}
#home-intro .podcast h3 {
  display: block;
  width: 200px;
  max-width: 100%;
  margin: 0 auto;
}

#home-blog h3 {
  font-size: 19px;
}
#home-blog p {
  font-size: 14px;
  line-height: 1.1;
}
#home-blog .text-btn {
  font-size: 13px;
}
#home-blog .blog h2 {
  display: block;
  width: 250px;
  max-width: 100%;
  padding-top: 30px;
  margin: 0 auto;
  border-top: 3px solid #fff;
  line-height: 1.2;
}
#home-blog .bg-cover:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -15px;
  border-width: 15px;
  border-style: solid;
  border-color: transparent;
  border-left-color: #fff;
}
#home-blog .arrows-container {
  position: absolute;
  --swiper-navigation-size: auto;
  right: 15px;
  bottom: 15px;
  z-index: 99;
}
#home-blog .arrows-container span {
  display: block;
  padding-bottom: 5px;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
#home-blog .arrows-container .arrows {
  overflow: hidden;
}
#home-blog .arrows-container .arrows div {
  position: static;
  width: 40px;
  height: 40px;
  background-color: #bbb;
  float: left;
}
#home-blog .arrows-container .arrows div:after {
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  color: #fff;
}

#home-subscribe .half {
  padding-right: 15px;
}
#home-subscribe .half + .half {
  padding-left: 15px;
}

#home-calendar p {
  font-size: 14px;
  line-height: 1.1;
}
#home-calendar .text-btn {
  font-size: 13px;
}
#home-calendar .upcoming {
  display: table;
  width: 100%;
  table-layout: fixed;
}
#home-calendar .upcoming > div {
  display: table-cell;
  width: auto;
  padding-right: 29px;
  padding-left: 20px;
}
#home-calendar .upcoming > div + div {
  position: relative;
  width: 350px;
  padding: 15px 30px;
  background-color: #0081c6;
}
#home-calendar .upcoming > div + div:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -15px;
  border-width: 15px;
  border-style: solid;
  border-color: transparent;
  border-left-color: #b6b6b6;
}
#home-calendar .upcoming:not(.event) h4 {
  display: block;
  width: 100px;
  margin-right: auto;
  margin-left: auto;
}
#home-calendar .upcoming:not(.event) small {
  display: block;
  width: 125px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.3;
}
#home-calendar .upcoming:not(.event) small a {
  color: #0081c6;
}
#home-calendar .upcoming.event {
  display: none;
}
#home-calendar .upcoming.event > div + div {
  padding: 3rem;
  background-color: #fff;
}
#home-calendar .upcoming.event > div + div:before {
  display: none;
}
#home-calendar .upcoming.event span {
  display: block;
  width: 120px;
  margin-right: auto;
  margin-left: auto;
  font-size: 80px;
  text-align: center;
}
#home-calendar .upcoming.event small {
  display: block;
  width: 120px;
  margin-right: auto;
  margin-left: auto;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
}
#home-calendar .upcoming.event.current {
  display: table;
}
#home-calendar .no-events {
  display: none;
  text-align: center;
}
#home-calendar thead,
#home-calendar tbody,
#home-calendar tfoot {
  border: none;
}
#home-calendar th {
  padding: 5px;
  background-color: #0081c6;
  text-align: center;
  color: #999d38;
}
#home-calendar td {
  padding: 5px;
  background-color: #0081c6;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
#home-calendar .yui3-calendar-header-label {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
#home-calendar .yui3-calendarnav-prevmonth {
  position: absolute;
  top: 0;
  right: 40px;
}
#home-calendar .yui3-calendarnav-prevmonth:before {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  color: #b6b6b6;
}
#home-calendar .yui3-calendarnav-nextmonth {
  position: absolute;
  top: 0;
  right: 15px;
}
#home-calendar .yui3-calendarnav-nextmonth:before {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  color: #b6b6b6;
}
#home-calendar .yui3-calendar-day-selected {
  background-color: #999d38;
}

#home-connect {
  text-align: center;
}
#home-connect h2 {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 0;
  margin-left: 15px;
}
#home-connect .social {
  display: inline-block;
}
#home-connect .social a {
  margin-right: 15px;
  margin-left: 15px;
  font-size: 40px;
  color: #fff;
}

#home-misc .video span {
  display: block;
  width: 380px;
  max-width: 100%;
  padding: 15px;
  margin-right: auto;
  margin-left: auto;
  background-color: #0081c6;
  border-radius: 10px;
  opacity: 0.75;
  font-size: 20px;
  text-align: center;
  color: #fff;
}
#home-misc .video:hover span {
  opacity: 1;
}
#home-misc .corn-facts:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -15px;
  border-width: 15px;
  border-style: solid;
  border-color: transparent;
  border-right-color: #b6b6b6;
}
#home-misc .corn-facts img {
  display: block;
  width: 160px;
  margin-right: auto;
  margin-left: auto;
}
#home-misc .corn-facts h4 {
  width: 160px;
  max-width: 100%;
  margin: 0 auto;
  color: #fff;
}
#home-misc .green-2 {
  overflow: hidden;
}
#home-misc .green-2 .text {
  width: calc(100% - 160px);
  padding-right: 12px;
  float: left;
}

@media (min-width: 1200px) {
  #home-calendar .upcoming:not(.event) h4 {
    width: 130px;
    font-size: 32px;
  }
}
@media (max-width: 1199px) {
  .home-column.offset > .half {
    width: 50%;
  }
  .home-column.offset > .half + .half {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .home-column.offset:not(#home-calendar):not(#home-misc) {
    display: block;
  }
  .home-column.offset:not(#home-calendar):not(#home-misc) > .half {
    display: block;
    width: 100%;
    height: auto;
  }
  .home-column.offset:not(#home-calendar):not(#home-misc) > .half + .half {
    width: 100%;
  }

  #home-calendar > .half {
    width: 500px;
  }
  #home-calendar > .half + .half {
    width: auto;
  }
  #home-calendar .upcoming:not(.event) small {
    width: 110px;
  }

  #home-misc > .half {
    width: auto;
  }
  #home-misc > .half + .half {
    width: 500px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  #home-subscribe .half {
    display: block;
    width: 100%;
    padding-right: 0;
  }
  #home-subscribe .half + .half {
    width: 100%;
    padding-left: 0;
  }

  #home-calendar > .half {
    display: block;
    width: 100%;
  }
  #home-calendar > .half + .half {
    display: none;
  }

  #home-misc > .half {
    display: block;
    width: 100%;
  }
  #home-misc > .half + .half {
    width: 100%;
  }
  #home-misc .video span {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 575px) {
  .h-1x,
.h-2x {
    height: auto !important;
  }

  .home-column > .half {
    display: block;
    width: 100%;
    height: auto;
  }

  #home-blog .blog h2 i {
    display: none;
  }

  #home-calendar .upcoming > div {
    display: block;
    width: 100% !important;
    height: auto;
    padding: 3rem;
  }
  #home-calendar .upcoming > div + div:before {
    display: none;
  }
  #home-calendar .upcoming:not(.event) h4 {
    width: 150px;
    font-size: 28px;
  }
  #home-calendar .upcoming:not(.event) small {
    width: 150px;
  }

  #home-misc .video span {
    position: static;
    transform: none;
  }
  #home-misc .corn-facts {
    padding: 3rem;
  }
  #home-misc .corn-facts:after {
    top: auto;
    right: 50%;
    bottom: 0;
    margin-right: -15px;
    border-right-color: transparent;
    border-bottom-color: #b6b6b6;
  }
  #home-misc .corn-facts h4 {
    font-weight: 700;
  }
  #home-misc .green-2 .text {
    width: 100%;
    padding: 0;
  }
}
.research-column {
  display: table;
  table-layout: fixed;
  width: 100%;
  box-sizing: border-box;
}
.research-column * {
  box-sizing: border-box;
}
.research-column > div {
  position: relative;
  display: table-cell;
  width: 72.5%;
  vertical-align: top;
}
.research-column > div.side {
  width: 27.5%;
}
.research-column > div.side p {
  font-size: 90%;
}

#research-intro .main {
  padding: 30px 3em;
  background-color: #fff;
}
#research-intro .side {
  padding: 50px 30px;
  border: 20px solid #0081c6;
}

#tabs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
#tabs li {
  display: block;
  flex-grow: 1;
  white-space: nowrap;
}
#tabs li a {
  display: block;
  padding: 15px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  color: #000;
}
#tabs li.active {
  background-color: #999d38;
}
#tabs li.active a {
  color: #fff;
}

.tab-content {
  height: 550px;
  border: 10px solid #999d38;
  overflow: scroll;
}
.tab-content .overflow {
  padding: 30px;
}

#research-tabs .project {
  display: table;
  width: 100%;
  padding-bottom: 30px;
}
#research-tabs .project > div {
  display: table-cell;
  vertical-align: top;
}
#research-tabs .project > div.img {
  width: 100px;
}
#research-tabs .project > div + div {
  width: auto;
  padding-left: 30px;
}
#research-tabs .img {
  height: 306px;
}
#research-tabs .podcast {
  display: block;
  height: 306px;
}
#research-tabs .podcast img {
  display: block;
  max-width: 150px;
  margin-right: auto;
  margin-left: auto;
}
#research-tabs .podcast h3 {
  display: block;
  width: 200px;
  max-width: 100%;
  margin: 0 auto;
}

#research-video .video span {
  display: block;
  width: 380px;
  max-width: 100%;
  padding: 15px;
  margin-right: auto;
  margin-left: auto;
  background-color: #0081c6;
  border-radius: 10px;
  opacity: 0.75;
  font-size: 20px;
  text-align: center;
  color: #fff;
}
#research-video .video:hover span {
  opacity: 1;
}

#research-content {
  overflow: hidden;
}
#research-content .main {
  width: 72.5%;
  padding: 30px 3em;
  background-color: #fff;
  float: left;
}
#research-content .side {
  width: 27.5%;
  float: left;
}
#research-content .side .top {
  padding: 50px 30px;
  border: 20px solid #0081c6;
}
#research-content .side .related {
  padding: 30px;
  background-color: #B6B6B6;
}
#research-content .side .related h4 {
  text-transform: uppercase;
  color: #fff;
}
#research-content .side .related a {
  display: block;
  margin-bottom: 10px;
  text-decoration: underline;
  color: #fff;
}

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

Stylesheet: Retina Screens & Devices Stylesheet

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

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

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

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

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

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

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

  */
}
/******************************************************************

Stylesheet: Print Stylesheet

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

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

  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }

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

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

  thead {
    display: table-header-group;
  }

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

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

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

  h2,
h3 {
    page-break-after: avoid;
  }

  .sidebar,
.page-navigation,
.wp-prev-next,
.respond-form,
nav {
    display: none;
  }
}
/* Corn Grows Social Module */
.corngrows-social {
  padding: 4rem 0;
  background: #999d38;
}
.corngrows-social h2 {
  font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  color: #fefefe;
  text-align: center;
}
.corngrows-social .mncorn-social {
  text-align: center;
}
.corngrows-social .mncorn-social img {
  width: 3.142rem;
  height: 3.142rem;
  margin-right: 1rem;
}
.corngrows-social .mncorn-social img:hover {
  position: relative;
  top: -0.1rem;
  box-shadow: 0 0.2rem 0.35rem 0.1rem rgba(0, 0, 0, 0.1);
  border-radius: 0.3rem;
}
.corngrows-social .mncorn-social li {
  margin-right: 1.5rem;
}
.corngrows-social .mncorn-social a {
  width: 3.071rem;
  height: 3.071rem;
  border-radius: 0.2rem;
}
.corngrows-social .mncorn-social a[href*="facebook.com"] {
  background: url("../images/social/facebook-mncorn.svg") center center no-repeat;
  background-size: cover;
}
.corngrows-social .mncorn-social a[href*="twitter.com"] {
  background: url("../images/social/twitter-mncorn.svg") center center no-repeat;
  background-size: cover;
}
.corngrows-social .mncorn-social a[href*="instagram.com"] {
  background: url("../images/social/instagram-mncorn.svg") center center no-repeat;
  background-size: cover;
}

/* Cron Grows Hero Area */
.corngrows-hero .columns {
  padding: 0;
}
.corngrows-hero .orbit-wrapper {
  padding: 4rem 0;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  margin: 0;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 45.625em) {
  .corngrows-hero .orbit-wrapper {
    text-align: center;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media screen and (min-width: 65.3125em) {
  .corngrows-hero .orbit-wrapper {
    text-align: left;
    padding-bottom: 14rem;
  }
}
.corngrows-hero .video-thumbnail-wrapper {
  min-height: 10rem;
}
.corngrows-hero .orbit-caption {
  position: relative;
  background: none;
  color: white;
}
@media screen and (min-width: 45.625em) {
  .corngrows-hero .orbit-caption {
    font-size: 1.6em;
  }
}
.corngrows-hero .orbit-caption p {
  color: white;
  font-size: 1.6em;
}
@media screen and (min-width: 65.3125em) {
  .corngrows-hero .orbit-caption {
    background: transparent;
    padding: 10% 10% 5%;
  }
}
.corngrows-hero .orbit-bullets {
  position: relative;
}
@media screen and (min-width: 45.625em) {
  .corngrows-hero .orbit-bullets {
    width: 100%;
  }
}
@media screen and (min-width: 65.3125em) {
  .corngrows-hero .orbit-bullets {
    width: 46%;
  }
}

/* Modal Box */
/* Video Modal - Theater Mode
-------------------------------------------------------------------------------*/
.video-modal,
.video-modal .overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 300;
}

.video-modal {
  pointer-events: none;
  overflow: visible;
  opacity: 0;
  transform: translate(500%, 0%);
  transition: transform 0s linear 0s;
  /* using flexbox for vertical centering */
  /* Flexbox display */
  display: flex;
  /* Horizontal alignment */
  justify-content: center;
  /* Vertical alignment */
  align-items: center;
  transform-style: preserve-3d;
  opacity: 0;
  transition: opacity 0.2s ease-out 0.05s;
}
@media screen and (max-width: 45.5625em) {
  .video-modal {
    overflow-y: scroll;
    align-items: flex-start;
    padding-top: 2.2rem;
  }
  .video-modal .close-video-modal {
    width: 25px;
    height: 25px;
    top: -26px;
  }
  .video-modal .modalbox {
    padding-top: 0.6rem;
  }
  .video-modal .excerpt-holder {
    font-size: 1rem;
    line-height: 1.4;
  }
}
.video-modal .video-sizer.is-visible {
  display: block;
  max-height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.video-modal .overlay {
  z-index: 0;
  background: black;
}

.video-modal-content {
  position: relative;
  z-index: 1;
  height: 67%;
  width: calc(100% - 200px);
  max-width: 1000px;
  max-height: 100%;
  overflow: visible;
  text-align: center;
}

/* Mobile Layout Tweaks */
@media (max-width: 640px) {
  .video-modal-content {
    width: calc(100% - 16px);
  }
}
/* close button */
.close-video-modal {
  position: absolute;
  right: 0;
  top: -40px;
  width: 27px;
  height: 27px;
  background: url("../images/close-modalbox.svg") center center no-repeat;
  background-size: cover;
}

/* using a 16:9 image to resize the video frame */
.video-sizer {
  display: none;
}

/* set the iframe element to stretch to fit its parent element */
iframe#youtube {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: transparent;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

/* show the modal */
/* add class to the body */
.show-video-modal .video-modal {
  opacity: 1;
  transform: translate(0%, 0%);
  -webkit-transform: translate(0%, 0%);
  pointer-events: auto;
}

.show-video-modal .video-modal .overlay {
  opacity: 0.93;
}

.show-video-modal .video-modal-content {
  transform: translate(0%, 0%);
  -webkit-transform: translate(0%, 0%);
}

.modalbox {
  text-align: left;
}
.modalbox ul.mncorn-social {
  float: right;
  /*&:before {
    content: "Share this:";
    color: white;
    margin-top: 2px;
    display: block;
    float: left;
    margin-right: 1rem;
  }*/
}
@media screen and (max-width: 74.9375em) {
  .modalbox ul.mncorn-social {
    float: left;
    margin-left: 0;
  }
}
.modalbox li {
  margin-right: 7px;
}
.modalbox a {
  width: 27px;
  height: 27px;
  border-radius: 0.2rem;
}
.modalbox a[href*="facebook.com"] {
  background: url("../images/social/facebook-mncorn.svg") center center no-repeat;
  background-size: cover;
}
.modalbox a[href*="twitter.com"] {
  background: url("../images/social/twitter-mncorn-modalbox.svg") center center no-repeat;
  background-size: cover;
}
.modalbox a[href*="instagram.com"] {
  background: url("../images/social/instagram-mncorn.svg") center center no-repeat;
  background-size: cover;
}
.modalbox p {
  color: white;
}

.corngrows-map {
  padding: 4rem 0;
  color: #4d4d4f;
}
.corngrows-map .map-wrap, .corngrows-map .county-map {
  position: relative;
}
.corngrows-map .county-map {
  padding-top: 1rem;
}
.corngrows-map .map-wrap {
  position: relative;
  width: 302px;
  height: 393px;
}
.corngrows-map .map-overlay,
.corngrows-map .map-background {
  position: absolute;
  top: 0;
  left: 2px;
  width: 300px;
  height: 393px;
}
.corngrows-map .map-overlay {
  z-index: 100;
}
.corngrows-map .map-overlay > svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 393px;
  opacity: 1;
}
.corngrows-map .map-overlay > svg path {
  fill: transparent;
  stroke: #000000;
  stroke-width: 2;
  opacity: 0;
}
.corngrows-map .map-overlay > svg path:hover {
  opacity: 1;
}
.corngrows-map .data-box {
  position: absolute;
  width: 400px;
  border-radius: 12px;
  right: 0;
  margin-top: 4px;
  background: #4d4d4f;
  border: 1px solid #737b17;
  color: white;
  padding: 15px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .corngrows-map .data-box {
    position: static;
  }
}
.corngrows-map .data-box .info {
  font-size: 13px;
  font-style: italic;
  padding-top: 8px;
}
.corngrows-map .data-box h3 {
  margin: 0;
  margin-bottom: 10px;
  font-size: 16px;
  white-space: nowrap;
  color: #fff !important;
}
.corngrows-map .data-box span.label,
.corngrows-map .data-box span.val {
  font-size: 15px;
  line-height: 18px;
  display: inline-block;
}
.corngrows-map .data-box span.label {
  width: 200px;
  background-color: transparent !important;
}

.page-template-corngrows.no-js .orbit:not([data-orbit=""]) .orbit-slide:not(:first-child),
.page-template-corngrows .orbit:not([data-orbit=""]) .orbit-slide:not(:first-child) {
  display: none;
}

.modalbox a.modal-cta {
  background-color: #0081c6;
  color: #fff;
  transition: background-color 0.2s ease;
  text-transform: uppercase;
  border-radius: 1.4rem;
  display: inline-block;
  margin-top: 0;
  padding: 0.6em 1.4em;
  font-size: 1rem;
  width: auto;
  height: auto;
  text-indent: 0;
}
.modalbox a.modal-cta:hover, .modalbox a.modal-cta:focus {
  background-color: #999d38;
  color: #fff;
}
.modalbox a.modal-cta:hover {
  transition: background-color 0.2s ease;
}
@media screen and (min-width: 45.625em) {
  .modalbox a.modal-cta {
    font-size: 1rem;
  }
}
@media screen and (min-width: 65.3125em) {
  .modalbox a.modal-cta {
    font-size: 1.125rem;
    margin-top: 0.8rem;
  }
}
@media screen and (min-width: 65.3125em) {
  .modalbox a.modal-cta {
    margin-top: 0;
  }
}
.modalbox a.modal-cta:hover {
  top: 0;
}
.modalbox a.modal-cta:active {
  position: relative;
  top: 1px;
}

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

section.corngrows-tabs {
  background-color: #f5f4f4;
  min-height: 14rem;
}
section.corngrows-tabs .padded-container {
  position: relative;
}

ul.mncg-tabs {
  list-style: none;
}
ul.mncg-tabs > li {
  transition: all 0.2s ease;
  cursor: pointer;
  padding: 1.5rem 1.75rem 1.375rem;
  background-color: #0081c6;
  color: #fff;
  overflow: hidden;
  position: relative;
}
ul.mncg-tabs > li:hover {
  background-color: rgba(175, 177, 180, 0.8);
  color: #4d4d4f;
}
ul.mncg-tabs > li.active {
  background-color: #f5f4f4;
  color: #4d4d4f;
  display: block;
  cursor: default;
}
ul.mncg-tabs .title {
  font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}
ul.mncg-tabs .title + .excerpt {
  margin-top: 0.5em;
}
ul.mncg-tabs .excerpt {
  font-family: Tahoma, Verdana, Segoe, sans-serif;
  font-size: 1rem;
}

.mncg-tab_content {
  padding: 1.25rem;
  display: none;
}
.mncg-tab_content .content-title {
  font-family: Tahoma, Verdana, Segoe, sans-serif;
  font-size: 1.375rem;
  font-weight: bold;
  color: #4d4d4f;
  margin-bottom: 1em;
}

.mncg-tab_accordion_heading {
  display: none;
}

@media screen and (max-width: 45.5625em) {
  .mncg-tabs {
    display: none;
  }

  .mncg-tab_accordion_heading {
    background-color: #0081c6;
    color: #fff;
    margin: 0;
    padding: 10px 20px;
    display: block;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.3rem;
    line-height: 1;
    position: relative;
  }
  .mncg-tab_accordion_heading::after {
    content: "+";
    position: absolute;
    right: 1.1rem;
    font-weight: bold;
    font-family: Tahoma, Verdana, Segoe, sans-serif;
    font-size: 1rem;
  }

  .d_active {
    background-color: #f5f4f4;
    border-bottom: 1px solid #afb1b4;
    color: #4d4d4f;
  }
  .d_active::after {
    content: "-";
    font-size: 1.1rem;
    right: 1.25rem;
  }
}
a.mngc-card:not(.selected):not(.active) {
  cursor: pointer;
}

.mngc-card {
  transition: all 0.2s ease;
  display: block;
  background-color: #fff;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.25);
  margin-bottom: 2rem;
}
.mngc-card img {
  height: 14rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #4d4d4f;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 14rem;
}
.mngc-card.infographic-thumb img {
  height: 10rem;
}
.mngc-card .caption {
  font-family: Tahoma, Verdana, Segoe, sans-serif;
  color: #4d4d4f;
  padding: 1.4rem 1.25rem 1.375rem 1.25rem;
  display: block;
}
.mngc-card .title {
  font-size: 1.125rem;
  font-weight: bold;
  max-height: 2.8em;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mngc-card .excerpt {
  font-size: 1rem;
  color: #666666;
}
.mngc-card:hover {
  box-shadow: 1px 5px 4px rgba(0, 0, 0, 0.25);
  transform: translate(0, -2px);
  outline: none;
}
.mngc-card:active {
  outline: 1px dashed rgba(175, 177, 180, 0.5);
}

.video-thumbnail-wrapper {
  position: relative;
}
.video-thumbnail-wrapper::before {
  content: "";
  display: block;
  background: transparent url("../images/icon_caret-right.svg") 60% center no-repeat;
  background-size: 40%;
  border: 5px solid white;
  border-radius: 3rem;
  width: 5rem;
  height: 5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.7;
}

@media screen and (min-width: 45.625em) {
  .corngrows-hero .orbit-wrapper {
    padding-bottom: 11.25rem;
  }

  ul.mncg-tabs {
    display: flex;
    align-items: stretch;
    position: absolute;
    top: 0;
    left: 0.9375rem;
    right: 0.9375rem;
    transform: translate(0, -100%);
  }

  .mncg-tab_content {
    padding: 2.8125rem 0 3.4375rem 0;
  }
}
/* Tabbed Content Carousel */
/*!*
* Slick Custom Theme
*/
/* Arrows */
.slick-prev:before,
.slick-next:before {
  color: black !important;
  content: "";
}

.slick-arrow {
  width: 55px;
  height: 55px;
  z-index: 5;
  border-top: 3px solid #06d1a4;
  border-right: 3px solid #06d1a4;
  transition: opacity 0.3s ease-out;
}

.slick-arrow:hover {
  opacity: 0.5;
}

.slick-prev {
  left: 0%;
  transform: rotate(225deg);
}

.slick-next {
  right: 0%;
  transform: rotate(45deg);
}

/**!
* Caption Styles
*/
.caption-item {
  right: 0;
  margin: 0px;
  padding: 0px;
}

.caption-link {
  display: block;
  position: relative;
  margin: 0 auto;
  max-width: 400px;
}

.caption-link .caption-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all ease 0.5s;
}

.caption-layer.green {
  background: rgba(173, 219, 50, 0.5);
}

.caption-layer.light-green {
  background: rgba(6, 209, 164, 0.7);
}

.caption-layer.blue {
  background: rgba(152, 231, 254, 0.5);
}

.caption-link .caption-layer:hover,
.caption-layer.video-icon {
  opacity: 1;
}

.caption-link .caption-layer .caption-content {
  position: absolute;
  top: 35%;
  width: 100%;
  text-align: center;
  font-size: 50px;
  color: #fff;
}

.caption-link .caption-layer .caption-content p {
  display: none;
}

/* Corn Facts Page */
@media screen and (min-width: 65.3125em) {
  .page-template-page-cornfacts {
    overflow-x: hidden;
  }
}
@media screen and (min-width: 65.3125em) {
  .page-template-page-cornfacts .off-canvas-wrapper,
.page-template-page-cornfacts .off-canvas-wrapper-inner {
    overflow: visible;
  }
}
@media screen and (min-width: 65.3125em) {
  .page-template-page-cornfacts .off-canvas {
    display: none;
  }
}
.page-template-page-cornfacts .tooltip {
  background-color: #0282C6;
  font-size: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
  padding: 10px;
  max-width: 300px !important;
}
@media (max-width: 480px) {
  .page-template-page-cornfacts .tooltip {
    max-width: 250px !important;
  }
}
.page-template-page-cornfacts .tooltip::before {
  border-color: transparent transparent #0282C6;
}
.page-template-page-cornfacts .tooltip.top::before {
  border-color: #0282C6 transparent transparent;
}

.admin-bar .corn-facts .corn-facts-nav-links {
  top: 32px;
}

.corn-facts .page-banner {
  color: white;
  height: auto;
  border-bottom: 0;
  margin-bottom: 0;
}
.corn-facts .page-banner .title-wrapper {
  min-height: initial;
  top: 0;
}
.corn-facts .page-banner .page-title {
  display: block;
  text-align: center;
  font-size: 2rem;
}
@media screen and (min-width: 45.625em) {
  .corn-facts .page-banner .page-title {
    margin-top: 120px;
    display: inline-block;
    font-size: 2.625rem;
  }
}
.corn-facts .page-banner p {
  max-width: 50rem;
  margin: 0 auto;
  padding: 60px 20px;
  color: white;
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (min-width: 45.625em) {
  .corn-facts .page-banner p {
    padding: 40px 40px 120px;
    font-size: 1.5rem;
  }
}
.corn-facts .corn-facts-nav-links {
  display: none;
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .corn-facts-nav-links {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    display: flex;
    width: 100%;
    z-index: 99;
    background: #999D38;
    color: white;
  }
  .corn-facts .corn-facts-nav-links .inner-wrapper {
    max-width: 1300px;
    display: flex;
    margin: 0 auto;
  }
  .corn-facts .corn-facts-nav-links .nav-link-wrapper {
    display: flex;
    overflow: hidden;
    align-items: center;
    border-right: 1px solid #8A8E30;
  }
  .corn-facts .corn-facts-nav-links .nav-link-wrapper:last-child {
    border-right: 0;
  }
  .corn-facts .corn-facts-nav-links .nav-link-wrapper:hover {
    background: #209de0;
    border-color: #209de0;
  }
  .corn-facts .corn-facts-nav-links a {
    color: white;
    font-size: 0.8125rem;
    padding: 10px 10px;
    overflow: visible;
    position: relative;
  }
}
@media screen and (min-width: 65.3125em) and (min-width: 45.625em) {
  .corn-facts .corn-facts-nav-links a {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 65.3125em) and (min-width: 65.3125em) {
  .corn-facts .corn-facts-nav-links a {
    color: white;
    font-size: 1.125rem;
    padding: 20px;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .corn-facts-nav-links a:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    height: 200%;
    width: 100%;
    top: -50%;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .corn-facts-nav-links a.active:before {
    background: #0282C6;
  }
}
.corn-facts main {
  padding-top: 0;
}
.corn-facts main section {
  margin: 60px 0;
}
@media screen and (min-width: 65.3125em) {
  .corn-facts main section {
    margin: 120px 0 90px;
  }
}
.corn-facts main .column:last-child, .corn-facts main .columns:last-child {
  margin-bottom: 0;
}
.corn-facts h1, .corn-facts h2, .corn-facts h3, .corn-facts h4, .corn-facts h5, .corn-facts h6, .corn-facts li, .corn-facts cite, .corn-facts p {
  color: #4D4D4F;
  font-weight: normal;
}
.corn-facts h2 {
  font-size: 2rem;
  margin-bottom: 0;
}
@media screen and (min-width: 45.625em) {
  .corn-facts h2 {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts h2 {
    font-size: 3rem;
    margin-bottom: 80px;
  }
}
.corn-facts h3 {
  font-size: 1.625rem;
  margin-bottom: 20px;
}
@media screen and (min-width: 65.3125em) {
  .corn-facts h3 {
    font-size: 2rem;
  }
}
.corn-facts p {
  font-size: 1rem;
  margin-bottom: 0;
  font-size: 1.125rem;
}
@media screen and (min-width: 65.3125em) {
  .corn-facts p {
    font-size: 1.3125rem;
  }
}
.corn-facts [data-tooltip] {
  border-bottom: 3px dashed #0282C6;
}
.corn-facts [data-tooltip]:focus {
  outline: none;
}
.corn-facts .column, .corn-facts .columns {
  margin-bottom: 30px;
  padding: 0 20px;
}
.corn-facts .text-white h1, .corn-facts .text-white h2, .corn-facts .text-white h3, .corn-facts .text-white h4, .corn-facts .text-white h5, .corn-facts .text-white h6, .corn-facts .text-white p, .corn-facts .text-white li {
  color: white;
}
.corn-facts .know-your-corn {
  background-position: center 75% !important;
  padding: 60px 0 120px;
  margin: 0 0 30px;
}
@media screen and (min-width: 45.625em) {
  .corn-facts .know-your-corn {
    padding-bottom: 140px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .know-your-corn {
    padding-bottom: 180px;
    padding-top: 100px;
    margin-bottom: 60px;
  }
}
.corn-facts .know-your-corn h2 {
  margin-bottom: 30px;
}
@media screen and (min-width: 45.625em) {
  .corn-facts .know-your-corn h2 {
    margin-bottom: 60px;
  }
}
.corn-facts .corn-production-mn img {
  max-width: 192px;
  margin-bottom: 20px;
}
.corn-facts .corn-production-mn h3 {
  margin-bottom: 10px;
  line-height: 1.1;
}
.corn-facts .corn-production-mn .column:nth-child(2), .corn-facts .corn-production-mn .columns:nth-child(2) {
  margin-bottom: 0;
}
@media screen and (min-width: 45.625em) {
  .corn-facts .corn-production-mn .column:nth-child(2), .corn-facts .corn-production-mn .columns:nth-child(2) {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 45.625em) {
  .corn-facts .dyk-box {
    padding: 0 20px;
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.corn-facts .dyk-box .row {
  position: relative;
}
@media screen and (min-width: 45.625em) {
  .corn-facts .dyk-box .row {
    border-radius: 25px;
  }
}
.corn-facts .dyk-box .row:before {
  background: rgba(0, 0, 0, 0.25);
  height: 100%;
  width: 100%;
  position: absolute;
}
@media screen and (min-width: 45.625em) {
  .corn-facts .dyk-box .row:before {
    display: none;
  }
}
.corn-facts .dyk-box .column, .corn-facts .dyk-box .columns {
  padding: 40px 20px;
  position: relative;
}
@media screen and (min-width: 45.625em) {
  .corn-facts .dyk-box .column, .corn-facts .dyk-box .columns {
    padding: 40px 40px;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .dyk-box .column, .corn-facts .dyk-box .columns {
    padding: 40px 80px;
  }
}
.corn-facts .dyk-box h2 {
  font-size: 2.625rem;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (min-width: 45.625em) {
  .corn-facts .dyk-box h2 {
    font-size: 4.5rem;
    margin-bottom: 5px;
  }
}
.corn-facts .dyk-box h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
@media screen and (min-width: 45.625em) {
  .corn-facts .dyk-box h3 {
    font-size: 2rem;
  }
}
.corn-facts .dyk-box cite {
  color: white;
}
.corn-facts .dyk-badge {
  background: #0282C6;
  margin-bottom: 20px;
  border-radius: 25px;
  font-size: 1rem;
  padding: 10px 20px;
  color: white;
  display: inline-block;
}
@media screen and (min-width: 45.625em) {
  .corn-facts .dyk-badge {
    font-size: 1.3125rem;
    margin-bottom: 40px;
  }
}
.corn-facts .top-five-markets-for-minnesota-grown-corn .world-map-row {
  background: #E5F6FF;
  margin-bottom: 20px;
  margin-top: 20px;
}
@media screen and (min-width: 45.625em) {
  .corn-facts .top-five-markets-for-minnesota-grown-corn .world-map-row {
    max-width: none;
  }
}
.corn-facts .top-five-markets-for-minnesota-grown-corn .top-five-map {
  padding: 0;
}
@media screen and (min-width: 45.625em) {
  .corn-facts .top-five-markets-for-minnesota-grown-corn .top-five-map {
    max-width: 75rem;
    margin: 0 auto;
    float: none;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .top-five-markets-for-minnesota-grown-corn h2 {
    margin-bottom: 20px;
  }
}
.corn-facts .national-corn-production h2 {
  margin-bottom: 30px;
}
.corn-facts .national-corn-production .national-corn-production-stats {
  position: relative;
}
.corn-facts .national-corn-production .national-corn-production-stats div {
  margin-bottom: 30px;
}
@media screen and (min-width: 45.625em) {
  .corn-facts .national-corn-production .national-corn-production-stats div {
    width: 100px;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .national-corn-production .national-corn-production-stats div {
    width: 200px;
  }
}
.corn-facts .national-corn-production .national-corn-production-stats div, .corn-facts .national-corn-production .national-corn-production-stats cite {
  text-align: center;
}
@media screen and (min-width: 45.625em) {
  .corn-facts .national-corn-production .national-corn-production-stats div, .corn-facts .national-corn-production .national-corn-production-stats cite {
    text-align: left;
    position: absolute;
    top: 0;
  }
}
.corn-facts .national-corn-production .national-corn-production-stats div h3, .corn-facts .national-corn-production .national-corn-production-stats cite h3 {
  margin-bottom: 0px;
  font-size: 2rem;
  color: #0282C6;
}
@media (min-width: 900px) {
  .corn-facts .national-corn-production .national-corn-production-stats div h3, .corn-facts .national-corn-production .national-corn-production-stats cite h3 {
    font-size: 3.75rem;
  }
}
@media screen and (min-width: 45.625em) {
  .corn-facts .national-corn-production .national-corn-production-stats div h3, .corn-facts .national-corn-production .national-corn-production-stats div p, .corn-facts .national-corn-production .national-corn-production-stats cite h3, .corn-facts .national-corn-production .national-corn-production-stats cite p {
    color: white;
    line-height: 1.2;
  }
}
.corn-facts .national-corn-production .national-corn-production-stats .top-bar-producing-states p {
  margin-bottom: 20px;
  font-size: 0.875rem;
}
@media (min-width: 900px) {
  .corn-facts .national-corn-production .national-corn-production-stats .top-bar-producing-states p {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .national-corn-production .national-corn-production-stats .top-bar-producing-states p {
    font-size: 1.3125rem;
  }
}
@media screen and (min-width: 45.625em) {
  .corn-facts .national-corn-production .national-corn-production-stats .top-bar-producing-states {
    width: 260px;
    left: 10%;
    margin-bottom: 10px;
    top: 14%;
  }
}
@media (min-width: 900px) {
  .corn-facts .national-corn-production .national-corn-production-stats .top-bar-producing-states {
    font-size: 1.125rem;
    margin-bottom: 20px;
    width: 300px;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .national-corn-production .national-corn-production-stats .top-bar-producing-states {
    width: 400px;
    font-size: 1.3125rem;
    left: 11%;
    top: 16%;
  }
}
@media screen and (min-width: 45.625em) {
  .corn-facts .national-corn-production .national-corn-production-stats .national-acres-planted {
    top: 34%;
    width: 150px;
    left: 8%;
  }
}
@media (min-width: 900px) {
  .corn-facts .national-corn-production .national-corn-production-stats .national-acres-planted {
    left: 13%;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .national-corn-production .national-corn-production-stats .national-acres-planted {
    top: 37%;
    left: 15%;
  }
}
@media screen and (min-width: 45.625em) {
  .corn-facts .national-corn-production .national-corn-production-stats .national-total-production {
    top: 45%;
    width: 150px;
    left: 24%;
  }
}
@media (min-width: 900px) {
  .corn-facts .national-corn-production .national-corn-production-stats .national-total-production {
    left: 30%;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .national-corn-production .national-corn-production-stats .national-total-production {
    width: 170px;
  }
}
@media screen and (min-width: 45.625em) {
  .corn-facts .national-corn-production .national-corn-production-stats .national-average-yield {
    top: 53%;
    left: 45%;
    width: 150px;
  }
}
@media (min-width: 900px) {
  .corn-facts .national-corn-production .national-corn-production-stats .national-average-yield {
    left: 48%;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .national-corn-production .national-corn-production-stats .national-average-yield {
    top: 55%;
    left: 49%;
    width: 200px;
  }
}
@media screen and (min-width: 45.625em) {
  .corn-facts .national-corn-production .national-corn-production-stats .national-acres-harvested {
    right: 14%;
    top: 40%;
  }
}
@media (min-width: 900px) {
  .corn-facts .national-corn-production .national-corn-production-stats .national-acres-harvested {
    right: 16%;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .national-corn-production .national-corn-production-stats .national-acres-harvested {
    width: 200px;
    top: 44%;
    right: 9%;
  }
}
@media screen and (min-width: 45.625em) {
  .corn-facts .national-corn-production .national-corn-production-stats cite {
    color: white;
    right: 25%;
    top: 68%;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .national-corn-production .national-corn-production-stats cite {
    font-size: 0.875rem;
    right: 27%;
  }
}
.corn-facts cite {
  font-size: 0.6875rem;
  font-style: normal;
}
.corn-facts cite:before {
  display: none;
}
.corn-facts .components-of-dent-corn .row {
  text-align: center;
}
@media screen and (min-width: 45.625em) {
  .corn-facts .components-of-dent-corn .row {
    max-width: 100%;
    background: #fff4a5;
    text-align: left;
  }
}
@media screen and (min-width: 45.625em) {
  .corn-facts .components-of-dent-corn .row .column, .corn-facts .components-of-dent-corn .row .columns {
    padding: 0;
    position: relative;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .components-of-dent-corn .row .column, .corn-facts .components-of-dent-corn .row .columns {
    max-width: 1400px;
    float: none;
    margin: 0 auto;
  }
}
@media screen and (min-width: 45.625em) {
  .corn-facts .components-of-dent-corn .row .column > *, .corn-facts .components-of-dent-corn .row .columns > * {
    position: absolute;
    z-index: 1;
  }
}
.corn-facts .components-of-dent-corn .row .column p, .corn-facts .components-of-dent-corn .row .columns p {
  font-size: 1rem;
}
@media screen and (min-width: 45.625em) {
  .corn-facts .components-of-dent-corn .row .column p, .corn-facts .components-of-dent-corn .row .columns p {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .components-of-dent-corn .row .column p, .corn-facts .components-of-dent-corn .row .columns p {
    font-size: 1.125rem;
  }
}
.corn-facts .components-of-dent-corn .row .column div, .corn-facts .components-of-dent-corn .row .columns div {
  margin-bottom: 30px;
}
@media screen and (min-width: 45.625em) {
  .corn-facts .components-of-dent-corn .row .column div, .corn-facts .components-of-dent-corn .row .columns div {
    background: #fff;
    border-radius: 25px;
    text-align: left;
    width: 320px;
    padding: 20px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .components-of-dent-corn .row .column div, .corn-facts .components-of-dent-corn .row .columns div {
    width: 350px;
  }
}
@media (min-width: 1200px) {
  .corn-facts .components-of-dent-corn .row .column div, .corn-facts .components-of-dent-corn .row .columns div {
    width: 400px;
  }
}
@media (min-width: 900px) {
  .corn-facts .components-of-dent-corn .row .column div.bottom-right-triangle:after, .corn-facts .components-of-dent-corn .row .columns div.bottom-right-triangle:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 0;
    height: 0;
    border: 50px solid transparent;
    border-top-color: white;
    border-bottom: 0;
    border-right: 0;
    margin-bottom: -50px;
  }
}
@media (min-width: 900px) {
  .corn-facts .components-of-dent-corn .row .column div.bottom-left-triangle:after, .corn-facts .components-of-dent-corn .row .columns div.bottom-left-triangle:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 0;
    height: 0;
    border: 50px solid transparent;
    border-top-color: white;
    border-bottom: 0;
    border-left: 0;
    margin-bottom: -50px;
  }
}
@media (min-width: 900px) {
  .corn-facts .components-of-dent-corn .row .column div.top-right-triangle:after, .corn-facts .components-of-dent-corn .row .columns div.top-right-triangle:after {
    content: "";
    position: absolute;
    top: 0;
    right: 10%;
    width: 0;
    height: 0;
    border: 50px solid transparent;
    border-bottom-color: white;
    border-top: 0;
    border-right: 0;
    margin-top: -50px;
  }
}
@media (min-width: 900px) {
  .corn-facts .components-of-dent-corn .row .column div.top-left-triangle:after, .corn-facts .components-of-dent-corn .row .columns div.top-left-triangle:after {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    width: 0;
    height: 0;
    border: 50px solid transparent;
    border-bottom-color: white;
    border-top: 0;
    border-left: 0;
    margin-top: -50px;
  }
}
@media screen and (min-width: 45.625em) {
  .corn-facts .components-of-dent-corn .row .column img, .corn-facts .components-of-dent-corn .row .columns img {
    position: static;
    max-width: 100%;
  }
}
.corn-facts .components-of-dent-corn .row h2 {
  margin-bottom: 30px;
}
@media screen and (min-width: 45.625em) {
  .corn-facts .components-of-dent-corn .row h2 {
    padding: 0 20px;
    top: 60px;
    width: 100%;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .components-of-dent-corn .row h2 {
    top: 80px;
  }
}
.corn-facts .components-of-dent-corn .row h3 {
  margin-bottom: 0;
  color: #0282C6;
}
@media screen and (min-width: 45.625em) {
  .corn-facts .components-of-dent-corn .row h3 {
    font-size: 1.3125rem;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .components-of-dent-corn .row h3 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 45.625em) {
  .corn-facts .components-of-dent-corn .row .corn-oil {
    top: 28%;
    left: 5%;
  }
}
@media (min-width: 900px) {
  .corn-facts .components-of-dent-corn .row .corn-oil {
    top: 25%;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .components-of-dent-corn .row .corn-oil {
    top: 27%;
    left: 11%;
  }
}
@media (min-width: 1300px) {
  .corn-facts .components-of-dent-corn .row .corn-oil {
    left: 15%;
  }
}
@media screen and (min-width: 45.625em) {
  .corn-facts .components-of-dent-corn .row .corn-starch {
    right: 5%;
    top: 28%;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .components-of-dent-corn .row .corn-starch {
    right: 10%;
  }
}
@media (min-width: 1200px) {
  .corn-facts .components-of-dent-corn .row .corn-starch {
    right: 14%;
    top: 30%;
  }
}
@media (min-width: 1300px) {
  .corn-facts .components-of-dent-corn .row .corn-starch {
    right: 17%;
  }
}
@media screen and (min-width: 45.625em) {
  .corn-facts .components-of-dent-corn .row .protein-fiber {
    bottom: 5%;
    left: 5%;
  }
}
@media (min-width: 900px) {
  .corn-facts .components-of-dent-corn .row .protein-fiber {
    bottom: 2%;
    left: 9%;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .components-of-dent-corn .row .protein-fiber {
    bottom: 0%;
    left: 14%;
  }
}
@media (min-width: 1200px) {
  .corn-facts .components-of-dent-corn .row .protein-fiber {
    bottom: 7%;
  }
}
@media (min-width: 1300px) {
  .corn-facts .components-of-dent-corn .row .protein-fiber {
    bottom: 10%;
    left: 18%;
  }
}
@media screen and (min-width: 45.625em) {
  .corn-facts .components-of-dent-corn .row .moisture {
    right: 5%;
    bottom: 5%;
  }
}
@media (min-width: 900px) {
  .corn-facts .components-of-dent-corn .row .moisture {
    right: 10%;
    bottom: 0;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .components-of-dent-corn .row .moisture {
    right: 15%;
    bottom: -2%;
  }
}
@media (min-width: 1200px) {
  .corn-facts .components-of-dent-corn .row .moisture {
    right: 10%;
    bottom: 2%;
  }
}
@media (min-width: 1300px) {
  .corn-facts .components-of-dent-corn .row .moisture {
    right: 15%;
    bottom: 5%;
  }
}
.corn-facts .minnesota-corn-exports h2 {
  margin-bottom: 40px;
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .minnesota-corn-exports h2 {
    margin-bottom: 80px;
  }
}
.corn-facts .minnesota-corn-exports h3 {
  font-size: 1.3125rem;
}
@media screen and (min-width: 45.625em) {
  .corn-facts .minnesota-corn-exports h3 {
    font-size: 1.5rem;
  }
}
.corn-facts .minnesota-corn-exports img {
  height: 96px;
  margin-bottom: 20px;
}
.corn-facts .top-uses-for-corn-in-the-united-states h2 {
  margin-bottom: 0;
}
.corn-facts .top-uses-for-corn-in-the-united-states h3 {
  margin-bottom: 10px;
}
.corn-facts .top-uses-for-corn-in-the-united-states cite {
  margin-bottom: 30px;
}
@media screen and (min-width: 45.625em) {
  .corn-facts .top-uses-for-corn-in-the-united-states cite {
    margin-bottom: 40px;
  }
}
.corn-facts .top-uses-for-corn-in-the-united-states img {
  height: 206px;
  max-width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 45.625em) {
  .corn-facts .top-uses-for-corn-in-the-united-states img {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .top-uses-for-corn-in-the-united-states p {
    font-size: 1.125rem;
  }
}
.corn-facts .top-uses-for-corn-in-the-united-states .row {
  margin-bottom: 60px;
}
.corn-facts .top-uses-for-corn-in-the-united-states .row:first-child {
  margin-bottom: 0;
}
.corn-facts .top-uses-for-corn-in-the-united-states .row:first-child .column:last-child, .corn-facts .top-uses-for-corn-in-the-united-states .row:first-child .columns:last-child {
  margin-bottom: 0;
}
.corn-facts .top-uses-for-corn-in-the-united-states .column, .corn-facts .top-uses-for-corn-in-the-united-states .columns, .corn-facts .top-uses-for-corn-in-the-united-states .column:last-child {
  margin-bottom: 30px;
}
@media screen and (min-width: 45.625em) {
  .corn-facts .top-uses-for-corn-in-the-united-states .column, .corn-facts .top-uses-for-corn-in-the-united-states .columns, .corn-facts .top-uses-for-corn-in-the-united-states .column:last-child {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 65.3125em) {
  .corn-facts .top-uses-for-corn-in-the-united-states .column, .corn-facts .top-uses-for-corn-in-the-united-states .columns, .corn-facts .top-uses-for-corn-in-the-united-states .column:last-child {
    margin-bottom: 60px;
  }
}
.corn-facts .cta-form--title {
  margin-bottom: 20px;
  font-weight: bold;
}
.corn-facts .cta-form {
  padding: 40px 0;
}
.corn-facts .cta-form *:not(.row) {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 45.5625em) {
  .corn-facts .cta-form {
    display: block !important;
  }
}

/* Events Calendar Overrides */
@-webkit-keyframes a {
  50% {
    background-color: #989d38;
  }
}
@keyframes a {
  50% {
    background-color: #989d38;
  }
}
.tribe-common .tribe-common-c-btn,
.tribe-common a.tribe-common-c-btn {
  background: #989d38;
}
.tribe-common .tribe-common-c-btn:focus,
.tribe-common .tribe-common-c-btn:hover,
.tribe-common a.tribe-common-c-btn:focus,
.tribe-common a.tribe-common-c-btn:hover {
  background: #0181c6;
}
.tribe-common .tribe-common-h8,
.tribe-common .tribe-common-b3 {
  font-size: 14px;
}
.tribe-common .tribe-common-h7 {
  font-size: 16px;
}
.tribe-common .tribe-common--breakpoint-medium .tribe-common-b2 {
  font-size: 16px;
}
.tribe-common input {
  box-shadow: none;
}

.single-tribe_events .tribe-events-single-event-title {
  color: #989d38;
  line-height: 1.3;
}
@media (min-width: 991px) {
  .single-tribe_events .tribe-events-single-event-title {
    font-size: 36px;
  }
}

.tribe-events .tribe-events-calendar-month__day--current .tribe-events-calendar-month__day-date,
.tribe-events .tribe-events-calendar-month__day--current .tribe-events-calendar-month__day-date-link,
.tribe-events .tribe-events-calendar-list__event-title,
.tribe-events .tooltipster-base .excerpt-read-more,
.tribe-events .tribe-events-calendar-list__event-title a,
.tribe-events .tribe-common .tribe-common-b2--bold,
.tribe-events .tribe-events-single-event-title {
  color: #989d38;
}
.tribe-events .tribe-events-c-ical__link:active,
.tribe-events .tribe-events-c-ical__link:focus,
.tribe-events .tribe-events-c-ical__link:hover,
.tribe-events .datepicker .day.active,
.tribe-events .datepicker .day.active.focused,
.tribe-events .datepicker .day.active:focus,
.tribe-events .datepicker .day.active:hover,
.tribe-events .datepicker .month.active,
.tribe-events .datepicker .month.active.focused,
.tribe-events .datepicker .month.active:focus,
.tribe-events .datepicker .month.active:hover,
.tribe-events .datepicker .year.active,
.tribe-events .datepicker .year.active.focused,
.tribe-events .datepicker .year.active:focus,
.tribe-events .datepicker .year.active:hover {
  background: #0181c6;
}
.tribe-events .tribe-events-calendar-list .excerpt-read-more {
  color: #0181c6;
}
.tribe-events .tribe-events-calendar-month__calendar-event-tooltip-title {
  margin-bottom: 10px;
}
.tribe-events .tribe-events-calendar-month__calendar-event-datetime {
  font-size: 13px;
}
.tribe-events thead, .tribe-events tfoot, .tribe-events tbody tr:nth-child(even) {
  background: none;
}
.tribe-events .page-banner .page-title {
  margin-top: -43px;
  display: inline-block;
  background-color: #4d4d4f;
  font-size: 1.75rem;
  padding: 0.6em 1.1em;
  border: 2px solid #999d38;
  border-radius: 2.6875rem;
}
.tribe-events .tribe-events-c-ical__link {
  border-color: #0181c6;
  color: #0181c6;
}
.tribe-events .tribe-events-calendar-month__calendar-event-tooltip-datetime {
  font-size: 14px;
}

.tribe-events-calendar-list .excerpt-read-more {
  display: block;
  padding-top: 1rem;
  font-weight: bold;
}

.single-tribe_events #tribe-events-pg-template,
.single-tribe_events .tribe-events-pg-template {
  padding: 3rem 20px 40px;
}

.tribe-events-page-template .page-banner .page-title {
  display: inline-block;
  text-align: center;
  font-size: 2rem;
}
.tribe-events-page-template .events-banner {
  display: none;
}
.tribe-events-page-template .tribe-events-view .events-banner {
  display: block;
  height: auto;
  text-align: center;
  min-height: auto;
  margin-bottom: 3rem;
}

.tooltipster-base .excerpt-read-more {
  display: block;
  margin-top: 10px;
}

.tribe-events-calendar-list__event-row {
  position: relative;
}

.tribe-events-calendar-list [class*=tribe_events_cat-]:before {
  content: "";
  position: absolute;
  height: auto;
  left: 3.5%;
  top: 0;
  width: 50px;
  height: 50px;
}
@media (max-width: 1199px) {
  .tribe-events-calendar-list [class*=tribe_events_cat-]:before {
    left: 3%;
  }
}
@media (max-width: 991px) {
  .tribe-events-calendar-list [class*=tribe_events_cat-]:before {
    left: 21px;
  }
}
@media (max-width: 767px) {
  .tribe-events-calendar-list [class*=tribe_events_cat-]:before {
    left: 17px;
    width: 40px;
    height: 40px;
  }
}

.tribe-events .tribe-events-calendar-list__event-date-tag-datetime {
  margin-top: 60px;
}

.tribe-events .tribe-events-header__top-bar {
  flex: none;
}

@media (max-width: 767px) {
  .tribe-events .tribe-events-calendar-list__event-date-tag {
    width: 74px;
  }
}
/* Event Category Icons */
.cat_county-events:before {
  background: url(https://www.mncorn.org/wp-content/uploads/2020/03/county-events-icon.png) center/cover no-repeat;
}

.cat_educational-learning-opportunities:before {
  background: url(https://www.mncorn.org/wp-content/uploads/2020/03/education-events-icon.png) center/cover no-repeat;
}

.cat_fuel-promotion-events:before {
  background: url(https://www.mncorn.org/wp-content/uploads/2020/03/fuel-events-icon.png) center/cover no-repeat;
}

.cat_general-ag-events:before {
  background: url(https://www.mncorn.org/wp-content/uploads/2020/03/ag-events-icon.png) center/cover no-repeat;
}

.cat_general-public-events:before {
  background: url(https://www.mncorn.org/wp-content/uploads/2020/03/public-events-icon.png) center/cover no-repeat;
}

.cat_mcga-events:before {
  background: url(https://www.mncorn.org/wp-content/uploads/2020/03/mcga-events-icon.png) center/cover no-repeat;
}

#tribe-events-list-widget-2 {
  border: 0;
  padding: 0;
  margin-bottom: 0;
}
#tribe-events-list-widget-2 li::before, #tribe-events-list-widget-2::before {
  display: none;
}
#tribe-events-list-widget-2 .tribe-list-widget {
  margin-bottom: 0;
}
#tribe-events-list-widget-2 .widgettitle {
  display: none;
}
#tribe-events-list-widget-2 ol {
  list-style: none;
}
#tribe-events-list-widget-2 .tribe-event-title {
  font-size: 18px;
  width: 64.5%;
  display: inline-block;
  padding-left: 20px;
}
#tribe-events-list-widget-2 .tribe-event-title a {
  max-width: 100%;
}
#tribe-events-list-widget-2 .tribe-events-list-widget-events {
  padding: 20px 0;
  margin-bottom: 0;
}
#tribe-events-list-widget-2 .tribe-events-widget-link {
  padding: 20px;
}
#tribe-events-list-widget-2 .tribe-event-duration {
  width: 35%;
  display: inline-block;
  float: right;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev:before,
.slick-next:before {
  color: black !important;
  content: "";
}

.slick-arrow {
  width: 55px;
  height: 55px;
  z-index: 5;
  border-top: 6px solid #cccaca;
  border-right: 6px solid #cccaca;
  transition: opacity 0.3s ease-out;
}

.slick-arrow:hover {
  opacity: 0.5;
}

.slick-prev {
  left: -5%;
  transform: rotate(225deg);
}
@media screen and (min-width: 75em) {
  .slick-prev {
    left: -10%;
  }
}

.slick-next {
  right: -5%;
  transform: rotate(45deg);
}
@media screen and (min-width: 75em) {
  .slick-next {
    right: -10%;
  }
}

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 55px;
  width: 55px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  margin-bottom: 1rem;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 60px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}
