<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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 &amp; Constants Stylesheet

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

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

/*********************
COLORS
*********************/
/*********************
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); */
/*********************
CUSTOM MIXINS
*********************/
/**** 

ASPECT RATIO 

Control a container's aspect ratio with this awesome mixin
Example usage, all you need to do is apply the class below to a div

.sixteen-nine { 
  @include aspect-ratio(16, 9);
  .content {
  	background-position:center center;
  	background-repeat:no-repeat;
  	background-size:cover;
  	margin-bottom:10px;
  }
}

****/
/**** 

GALLERY COLS

Formatting WordPress inherit gallery columns to work with Foundation 6 

****/
/**** 

TRANSITION 

Use to apply element transitions

Easing curves: ease, linear, ease-in, ease-out, ease-in-out

****/
/**** 

OPACITY 

Use to apply element opacity

****/
/**** 

TRANSFORMS 

Use to apply specific transforms based on your needs

****/
/**** 

BOX SHADOW 

Use to apply element shadows

****/
/**** 

HERO VIDEO 

Use to apply element shadows

****/
/**
 * Foundation for Sites by ZURB
 * Version 6.2.1
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
.slide-in-down.mui-enter, .slide-in-left.mui-enter, .slide-in-up.mui-enter, .slide-in-right.mui-enter, .slide-out-down.mui-leave, .slide-out-right.mui-leave, .slide-out-up.mui-leave, .slide-out-left.mui-leave, .fade-in.mui-enter, .fade-out.mui-leave, .hinge-in-from-top.mui-enter, .hinge-in-from-right.mui-enter, .hinge-in-from-bottom.mui-enter, .hinge-in-from-left.mui-enter, .hinge-in-from-middle-x.mui-enter, .hinge-in-from-middle-y.mui-enter, .hinge-out-from-top.mui-leave, .hinge-out-from-right.mui-leave, .hinge-out-from-bottom.mui-leave, .hinge-out-from-left.mui-leave, .hinge-out-from-middle-x.mui-leave, .hinge-out-from-middle-y.mui-leave, .scale-in-up.mui-enter, .scale-in-down.mui-enter, .scale-out-up.mui-leave, .scale-out-down.mui-leave, .spin-in.mui-enter, .spin-out.mui-leave, .spin-in-ccw.mui-enter, .spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
   * Address `[hidden]` styling not present in IE 8/9/10.
   * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox &lt; 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 &lt;fieldset&gt; 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&amp;narrow=20em&amp;medium=40em&amp;medium_to_large=48em&amp;large=64em&amp;xlarge=75em&amp;xxlarge=90em&amp;hdlarge=120em&amp;hdxlarge=160em&amp;hdfourk=256em&amp;hdfivek=320em"; }

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

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

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

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

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

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

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

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  line-height: 1; }
  [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 &gt; .column, .row.collapse &gt; .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: 40em) {
      .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: 40em) {
    .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.33333%; }

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

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

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

.small-2 {
  width: 16.66667%; }

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

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

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

.small-3 {
  width: 25%; }

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

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

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

.small-4 {
  width: 33.33333%; }

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

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

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

.small-5 {
  width: 41.66667%; }

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

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

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

.small-6 {
  width: 50%; }

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

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

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

.small-7 {
  width: 58.33333%; }

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

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

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

.small-8 {
  width: 66.66667%; }

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

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

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

.small-9 {
  width: 75%; }

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

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

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

.small-10 {
  width: 83.33333%; }

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

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

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

.small-11 {
  width: 91.66667%; }

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

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

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

.small-12 {
  width: 100%; }

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

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

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

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

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

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

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

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

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

.small-collapse &gt; .column, .small-collapse &gt; .columns {
  padding-left: 0;
  padding-right: 0; }

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

.small-uncollapse &gt; .column, .small-uncollapse &gt; .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: 40em) {
  .medium-1 {
    width: 8.33333%; }
  .medium-push-1 {
    position: relative;
    left: 8.33333%; }
  .medium-pull-1 {
    position: relative;
    left: -8.33333%; }
  .medium-offset-0 {
    margin-left: 0%; }
  .medium-2 {
    width: 16.66667%; }
  .medium-push-2 {
    position: relative;
    left: 16.66667%; }
  .medium-pull-2 {
    position: relative;
    left: -16.66667%; }
  .medium-offset-1 {
    margin-left: 8.33333%; }
  .medium-3 {
    width: 25%; }
  .medium-push-3 {
    position: relative;
    left: 25%; }
  .medium-pull-3 {
    position: relative;
    left: -25%; }
  .medium-offset-2 {
    margin-left: 16.66667%; }
  .medium-4 {
    width: 33.33333%; }
  .medium-push-4 {
    position: relative;
    left: 33.33333%; }
  .medium-pull-4 {
    position: relative;
    left: -33.33333%; }
  .medium-offset-3 {
    margin-left: 25%; }
  .medium-5 {
    width: 41.66667%; }
  .medium-push-5 {
    position: relative;
    left: 41.66667%; }
  .medium-pull-5 {
    position: relative;
    left: -41.66667%; }
  .medium-offset-4 {
    margin-left: 33.33333%; }
  .medium-6 {
    width: 50%; }
  .medium-push-6 {
    position: relative;
    left: 50%; }
  .medium-pull-6 {
    position: relative;
    left: -50%; }
  .medium-offset-5 {
    margin-left: 41.66667%; }
  .medium-7 {
    width: 58.33333%; }
  .medium-push-7 {
    position: relative;
    left: 58.33333%; }
  .medium-pull-7 {
    position: relative;
    left: -58.33333%; }
  .medium-offset-6 {
    margin-left: 50%; }
  .medium-8 {
    width: 66.66667%; }
  .medium-push-8 {
    position: relative;
    left: 66.66667%; }
  .medium-pull-8 {
    position: relative;
    left: -66.66667%; }
  .medium-offset-7 {
    margin-left: 58.33333%; }
  .medium-9 {
    width: 75%; }
  .medium-push-9 {
    position: relative;
    left: 75%; }
  .medium-pull-9 {
    position: relative;
    left: -75%; }
  .medium-offset-8 {
    margin-left: 66.66667%; }
  .medium-10 {
    width: 83.33333%; }
  .medium-push-10 {
    position: relative;
    left: 83.33333%; }
  .medium-pull-10 {
    position: relative;
    left: -83.33333%; }
  .medium-offset-9 {
    margin-left: 75%; }
  .medium-11 {
    width: 91.66667%; }
  .medium-push-11 {
    position: relative;
    left: 91.66667%; }
  .medium-pull-11 {
    position: relative;
    left: -91.66667%; }
  .medium-offset-10 {
    margin-left: 83.33333%; }
  .medium-12 {
    width: 100%; }
  .medium-offset-11 {
    margin-left: 91.66667%; }
  .medium-up-1 &gt; .column, .medium-up-1 &gt; .columns {
    width: 100%;
    float: left; }
    .medium-up-1 &gt; .column:nth-of-type(1n), .medium-up-1 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-1 &gt; .column:nth-of-type(1n+1), .medium-up-1 &gt; .columns:nth-of-type(1n+1) {
      clear: both; }
    .medium-up-1 &gt; .column:last-child, .medium-up-1 &gt; .columns:last-child {
      float: left; }
  .medium-up-2 &gt; .column, .medium-up-2 &gt; .columns {
    width: 50%;
    float: left; }
    .medium-up-2 &gt; .column:nth-of-type(1n), .medium-up-2 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-2 &gt; .column:nth-of-type(2n+1), .medium-up-2 &gt; .columns:nth-of-type(2n+1) {
      clear: both; }
    .medium-up-2 &gt; .column:last-child, .medium-up-2 &gt; .columns:last-child {
      float: left; }
  .medium-up-3 &gt; .column, .medium-up-3 &gt; .columns {
    width: 33.33333%;
    float: left; }
    .medium-up-3 &gt; .column:nth-of-type(1n), .medium-up-3 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-3 &gt; .column:nth-of-type(3n+1), .medium-up-3 &gt; .columns:nth-of-type(3n+1) {
      clear: both; }
    .medium-up-3 &gt; .column:last-child, .medium-up-3 &gt; .columns:last-child {
      float: left; }
  .medium-up-4 &gt; .column, .medium-up-4 &gt; .columns {
    width: 25%;
    float: left; }
    .medium-up-4 &gt; .column:nth-of-type(1n), .medium-up-4 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-4 &gt; .column:nth-of-type(4n+1), .medium-up-4 &gt; .columns:nth-of-type(4n+1) {
      clear: both; }
    .medium-up-4 &gt; .column:last-child, .medium-up-4 &gt; .columns:last-child {
      float: left; }
  .medium-up-5 &gt; .column, .medium-up-5 &gt; .columns {
    width: 20%;
    float: left; }
    .medium-up-5 &gt; .column:nth-of-type(1n), .medium-up-5 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-5 &gt; .column:nth-of-type(5n+1), .medium-up-5 &gt; .columns:nth-of-type(5n+1) {
      clear: both; }
    .medium-up-5 &gt; .column:last-child, .medium-up-5 &gt; .columns:last-child {
      float: left; }
  .medium-up-6 &gt; .column, .medium-up-6 &gt; .columns {
    width: 16.66667%;
    float: left; }
    .medium-up-6 &gt; .column:nth-of-type(1n), .medium-up-6 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-6 &gt; .column:nth-of-type(6n+1), .medium-up-6 &gt; .columns:nth-of-type(6n+1) {
      clear: both; }
    .medium-up-6 &gt; .column:last-child, .medium-up-6 &gt; .columns:last-child {
      float: left; }
  .medium-up-7 &gt; .column, .medium-up-7 &gt; .columns {
    width: 14.28571%;
    float: left; }
    .medium-up-7 &gt; .column:nth-of-type(1n), .medium-up-7 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-7 &gt; .column:nth-of-type(7n+1), .medium-up-7 &gt; .columns:nth-of-type(7n+1) {
      clear: both; }
    .medium-up-7 &gt; .column:last-child, .medium-up-7 &gt; .columns:last-child {
      float: left; }
  .medium-up-8 &gt; .column, .medium-up-8 &gt; .columns {
    width: 12.5%;
    float: left; }
    .medium-up-8 &gt; .column:nth-of-type(1n), .medium-up-8 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-8 &gt; .column:nth-of-type(8n+1), .medium-up-8 &gt; .columns:nth-of-type(8n+1) {
      clear: both; }
    .medium-up-8 &gt; .column:last-child, .medium-up-8 &gt; .columns:last-child {
      float: left; }
  .medium-collapse &gt; .column, .medium-collapse &gt; .columns {
    padding-left: 0;
    padding-right: 0; }
  .medium-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .medium-uncollapse &gt; .column, .medium-uncollapse &gt; .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: 48em) {
  .medium_to_large-1 {
    width: 8.33333%; }
  .medium_to_large-push-1 {
    position: relative;
    left: 8.33333%; }
  .medium_to_large-pull-1 {
    position: relative;
    left: -8.33333%; }
  .medium_to_large-offset-0 {
    margin-left: 0%; }
  .medium_to_large-2 {
    width: 16.66667%; }
  .medium_to_large-push-2 {
    position: relative;
    left: 16.66667%; }
  .medium_to_large-pull-2 {
    position: relative;
    left: -16.66667%; }
  .medium_to_large-offset-1 {
    margin-left: 8.33333%; }
  .medium_to_large-3 {
    width: 25%; }
  .medium_to_large-push-3 {
    position: relative;
    left: 25%; }
  .medium_to_large-pull-3 {
    position: relative;
    left: -25%; }
  .medium_to_large-offset-2 {
    margin-left: 16.66667%; }
  .medium_to_large-4 {
    width: 33.33333%; }
  .medium_to_large-push-4 {
    position: relative;
    left: 33.33333%; }
  .medium_to_large-pull-4 {
    position: relative;
    left: -33.33333%; }
  .medium_to_large-offset-3 {
    margin-left: 25%; }
  .medium_to_large-5 {
    width: 41.66667%; }
  .medium_to_large-push-5 {
    position: relative;
    left: 41.66667%; }
  .medium_to_large-pull-5 {
    position: relative;
    left: -41.66667%; }
  .medium_to_large-offset-4 {
    margin-left: 33.33333%; }
  .medium_to_large-6 {
    width: 50%; }
  .medium_to_large-push-6 {
    position: relative;
    left: 50%; }
  .medium_to_large-pull-6 {
    position: relative;
    left: -50%; }
  .medium_to_large-offset-5 {
    margin-left: 41.66667%; }
  .medium_to_large-7 {
    width: 58.33333%; }
  .medium_to_large-push-7 {
    position: relative;
    left: 58.33333%; }
  .medium_to_large-pull-7 {
    position: relative;
    left: -58.33333%; }
  .medium_to_large-offset-6 {
    margin-left: 50%; }
  .medium_to_large-8 {
    width: 66.66667%; }
  .medium_to_large-push-8 {
    position: relative;
    left: 66.66667%; }
  .medium_to_large-pull-8 {
    position: relative;
    left: -66.66667%; }
  .medium_to_large-offset-7 {
    margin-left: 58.33333%; }
  .medium_to_large-9 {
    width: 75%; }
  .medium_to_large-push-9 {
    position: relative;
    left: 75%; }
  .medium_to_large-pull-9 {
    position: relative;
    left: -75%; }
  .medium_to_large-offset-8 {
    margin-left: 66.66667%; }
  .medium_to_large-10 {
    width: 83.33333%; }
  .medium_to_large-push-10 {
    position: relative;
    left: 83.33333%; }
  .medium_to_large-pull-10 {
    position: relative;
    left: -83.33333%; }
  .medium_to_large-offset-9 {
    margin-left: 75%; }
  .medium_to_large-11 {
    width: 91.66667%; }
  .medium_to_large-push-11 {
    position: relative;
    left: 91.66667%; }
  .medium_to_large-pull-11 {
    position: relative;
    left: -91.66667%; }
  .medium_to_large-offset-10 {
    margin-left: 83.33333%; }
  .medium_to_large-12 {
    width: 100%; }
  .medium_to_large-offset-11 {
    margin-left: 91.66667%; }
  .medium_to_large-up-1 &gt; .column, .medium_to_large-up-1 &gt; .columns {
    width: 100%;
    float: left; }
    .medium_to_large-up-1 &gt; .column:nth-of-type(1n), .medium_to_large-up-1 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .medium_to_large-up-1 &gt; .column:nth-of-type(1n+1), .medium_to_large-up-1 &gt; .columns:nth-of-type(1n+1) {
      clear: both; }
    .medium_to_large-up-1 &gt; .column:last-child, .medium_to_large-up-1 &gt; .columns:last-child {
      float: left; }
  .medium_to_large-up-2 &gt; .column, .medium_to_large-up-2 &gt; .columns {
    width: 50%;
    float: left; }
    .medium_to_large-up-2 &gt; .column:nth-of-type(1n), .medium_to_large-up-2 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .medium_to_large-up-2 &gt; .column:nth-of-type(2n+1), .medium_to_large-up-2 &gt; .columns:nth-of-type(2n+1) {
      clear: both; }
    .medium_to_large-up-2 &gt; .column:last-child, .medium_to_large-up-2 &gt; .columns:last-child {
      float: left; }
  .medium_to_large-up-3 &gt; .column, .medium_to_large-up-3 &gt; .columns {
    width: 33.33333%;
    float: left; }
    .medium_to_large-up-3 &gt; .column:nth-of-type(1n), .medium_to_large-up-3 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .medium_to_large-up-3 &gt; .column:nth-of-type(3n+1), .medium_to_large-up-3 &gt; .columns:nth-of-type(3n+1) {
      clear: both; }
    .medium_to_large-up-3 &gt; .column:last-child, .medium_to_large-up-3 &gt; .columns:last-child {
      float: left; }
  .medium_to_large-up-4 &gt; .column, .medium_to_large-up-4 &gt; .columns {
    width: 25%;
    float: left; }
    .medium_to_large-up-4 &gt; .column:nth-of-type(1n), .medium_to_large-up-4 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .medium_to_large-up-4 &gt; .column:nth-of-type(4n+1), .medium_to_large-up-4 &gt; .columns:nth-of-type(4n+1) {
      clear: both; }
    .medium_to_large-up-4 &gt; .column:last-child, .medium_to_large-up-4 &gt; .columns:last-child {
      float: left; }
  .medium_to_large-up-5 &gt; .column, .medium_to_large-up-5 &gt; .columns {
    width: 20%;
    float: left; }
    .medium_to_large-up-5 &gt; .column:nth-of-type(1n), .medium_to_large-up-5 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .medium_to_large-up-5 &gt; .column:nth-of-type(5n+1), .medium_to_large-up-5 &gt; .columns:nth-of-type(5n+1) {
      clear: both; }
    .medium_to_large-up-5 &gt; .column:last-child, .medium_to_large-up-5 &gt; .columns:last-child {
      float: left; }
  .medium_to_large-up-6 &gt; .column, .medium_to_large-up-6 &gt; .columns {
    width: 16.66667%;
    float: left; }
    .medium_to_large-up-6 &gt; .column:nth-of-type(1n), .medium_to_large-up-6 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .medium_to_large-up-6 &gt; .column:nth-of-type(6n+1), .medium_to_large-up-6 &gt; .columns:nth-of-type(6n+1) {
      clear: both; }
    .medium_to_large-up-6 &gt; .column:last-child, .medium_to_large-up-6 &gt; .columns:last-child {
      float: left; }
  .medium_to_large-up-7 &gt; .column, .medium_to_large-up-7 &gt; .columns {
    width: 14.28571%;
    float: left; }
    .medium_to_large-up-7 &gt; .column:nth-of-type(1n), .medium_to_large-up-7 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .medium_to_large-up-7 &gt; .column:nth-of-type(7n+1), .medium_to_large-up-7 &gt; .columns:nth-of-type(7n+1) {
      clear: both; }
    .medium_to_large-up-7 &gt; .column:last-child, .medium_to_large-up-7 &gt; .columns:last-child {
      float: left; }
  .medium_to_large-up-8 &gt; .column, .medium_to_large-up-8 &gt; .columns {
    width: 12.5%;
    float: left; }
    .medium_to_large-up-8 &gt; .column:nth-of-type(1n), .medium_to_large-up-8 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .medium_to_large-up-8 &gt; .column:nth-of-type(8n+1), .medium_to_large-up-8 &gt; .columns:nth-of-type(8n+1) {
      clear: both; }
    .medium_to_large-up-8 &gt; .column:last-child, .medium_to_large-up-8 &gt; .columns:last-child {
      float: left; }
  .medium_to_large-collapse &gt; .column, .medium_to_large-collapse &gt; .columns {
    padding-left: 0;
    padding-right: 0; }
  .medium_to_large-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .medium_to_large-uncollapse &gt; .column, .medium_to_large-uncollapse &gt; .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .medium_to_large-centered {
    float: none;
    margin-left: auto;
    margin-right: auto; }
  .medium_to_large-uncentered,
  .medium_to_large-push-0,
  .medium_to_large-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

@media screen and (min-width: 64em) {
  .large-1 {
    width: 8.33333%; }
  .large-push-1 {
    position: relative;
    left: 8.33333%; }
  .large-pull-1 {
    position: relative;
    left: -8.33333%; }
  .large-offset-0 {
    margin-left: 0%; }
  .large-2 {
    width: 16.66667%; }
  .large-push-2 {
    position: relative;
    left: 16.66667%; }
  .large-pull-2 {
    position: relative;
    left: -16.66667%; }
  .large-offset-1 {
    margin-left: 8.33333%; }
  .large-3 {
    width: 25%; }
  .large-push-3 {
    position: relative;
    left: 25%; }
  .large-pull-3 {
    position: relative;
    left: -25%; }
  .large-offset-2 {
    margin-left: 16.66667%; }
  .large-4 {
    width: 33.33333%; }
  .large-push-4 {
    position: relative;
    left: 33.33333%; }
  .large-pull-4 {
    position: relative;
    left: -33.33333%; }
  .large-offset-3 {
    margin-left: 25%; }
  .large-5 {
    width: 41.66667%; }
  .large-push-5 {
    position: relative;
    left: 41.66667%; }
  .large-pull-5 {
    position: relative;
    left: -41.66667%; }
  .large-offset-4 {
    margin-left: 33.33333%; }
  .large-6 {
    width: 50%; }
  .large-push-6 {
    position: relative;
    left: 50%; }
  .large-pull-6 {
    position: relative;
    left: -50%; }
  .large-offset-5 {
    margin-left: 41.66667%; }
  .large-7 {
    width: 58.33333%; }
  .large-push-7 {
    position: relative;
    left: 58.33333%; }
  .large-pull-7 {
    position: relative;
    left: -58.33333%; }
  .large-offset-6 {
    margin-left: 50%; }
  .large-8 {
    width: 66.66667%; }
  .large-push-8 {
    position: relative;
    left: 66.66667%; }
  .large-pull-8 {
    position: relative;
    left: -66.66667%; }
  .large-offset-7 {
    margin-left: 58.33333%; }
  .large-9 {
    width: 75%; }
  .large-push-9 {
    position: relative;
    left: 75%; }
  .large-pull-9 {
    position: relative;
    left: -75%; }
  .large-offset-8 {
    margin-left: 66.66667%; }
  .large-10 {
    width: 83.33333%; }
  .large-push-10 {
    position: relative;
    left: 83.33333%; }
  .large-pull-10 {
    position: relative;
    left: -83.33333%; }
  .large-offset-9 {
    margin-left: 75%; }
  .large-11 {
    width: 91.66667%; }
  .large-push-11 {
    position: relative;
    left: 91.66667%; }
  .large-pull-11 {
    position: relative;
    left: -91.66667%; }
  .large-offset-10 {
    margin-left: 83.33333%; }
  .large-12 {
    width: 100%; }
  .large-offset-11 {
    margin-left: 91.66667%; }
  .large-up-1 &gt; .column, .large-up-1 &gt; .columns {
    width: 100%;
    float: left; }
    .large-up-1 &gt; .column:nth-of-type(1n), .large-up-1 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-1 &gt; .column:nth-of-type(1n+1), .large-up-1 &gt; .columns:nth-of-type(1n+1) {
      clear: both; }
    .large-up-1 &gt; .column:last-child, .large-up-1 &gt; .columns:last-child {
      float: left; }
  .large-up-2 &gt; .column, .large-up-2 &gt; .columns {
    width: 50%;
    float: left; }
    .large-up-2 &gt; .column:nth-of-type(1n), .large-up-2 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-2 &gt; .column:nth-of-type(2n+1), .large-up-2 &gt; .columns:nth-of-type(2n+1) {
      clear: both; }
    .large-up-2 &gt; .column:last-child, .large-up-2 &gt; .columns:last-child {
      float: left; }
  .large-up-3 &gt; .column, .large-up-3 &gt; .columns {
    width: 33.33333%;
    float: left; }
    .large-up-3 &gt; .column:nth-of-type(1n), .large-up-3 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-3 &gt; .column:nth-of-type(3n+1), .large-up-3 &gt; .columns:nth-of-type(3n+1) {
      clear: both; }
    .large-up-3 &gt; .column:last-child, .large-up-3 &gt; .columns:last-child {
      float: left; }
  .large-up-4 &gt; .column, .large-up-4 &gt; .columns {
    width: 25%;
    float: left; }
    .large-up-4 &gt; .column:nth-of-type(1n), .large-up-4 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-4 &gt; .column:nth-of-type(4n+1), .large-up-4 &gt; .columns:nth-of-type(4n+1) {
      clear: both; }
    .large-up-4 &gt; .column:last-child, .large-up-4 &gt; .columns:last-child {
      float: left; }
  .large-up-5 &gt; .column, .large-up-5 &gt; .columns {
    width: 20%;
    float: left; }
    .large-up-5 &gt; .column:nth-of-type(1n), .large-up-5 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-5 &gt; .column:nth-of-type(5n+1), .large-up-5 &gt; .columns:nth-of-type(5n+1) {
      clear: both; }
    .large-up-5 &gt; .column:last-child, .large-up-5 &gt; .columns:last-child {
      float: left; }
  .large-up-6 &gt; .column, .large-up-6 &gt; .columns {
    width: 16.66667%;
    float: left; }
    .large-up-6 &gt; .column:nth-of-type(1n), .large-up-6 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-6 &gt; .column:nth-of-type(6n+1), .large-up-6 &gt; .columns:nth-of-type(6n+1) {
      clear: both; }
    .large-up-6 &gt; .column:last-child, .large-up-6 &gt; .columns:last-child {
      float: left; }
  .large-up-7 &gt; .column, .large-up-7 &gt; .columns {
    width: 14.28571%;
    float: left; }
    .large-up-7 &gt; .column:nth-of-type(1n), .large-up-7 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-7 &gt; .column:nth-of-type(7n+1), .large-up-7 &gt; .columns:nth-of-type(7n+1) {
      clear: both; }
    .large-up-7 &gt; .column:last-child, .large-up-7 &gt; .columns:last-child {
      float: left; }
  .large-up-8 &gt; .column, .large-up-8 &gt; .columns {
    width: 12.5%;
    float: left; }
    .large-up-8 &gt; .column:nth-of-type(1n), .large-up-8 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-8 &gt; .column:nth-of-type(8n+1), .large-up-8 &gt; .columns:nth-of-type(8n+1) {
      clear: both; }
    .large-up-8 &gt; .column:last-child, .large-up-8 &gt; .columns:last-child {
      float: left; }
  .large-collapse &gt; .column, .large-collapse &gt; .columns {
    padding-left: 0;
    padding-right: 0; }
  .large-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .large-uncollapse &gt; .column, .large-uncollapse &gt; .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .large-centered {
    float: none;
    margin-left: auto;
    margin-right: auto; }
  .large-uncentered,
  .large-push-0,
  .large-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

@media screen and (min-width: 75em) {
  .xlarge-1 {
    width: 8.33333%; }
  .xlarge-push-1 {
    position: relative;
    left: 8.33333%; }
  .xlarge-pull-1 {
    position: relative;
    left: -8.33333%; }
  .xlarge-offset-0 {
    margin-left: 0%; }
  .xlarge-2 {
    width: 16.66667%; }
  .xlarge-push-2 {
    position: relative;
    left: 16.66667%; }
  .xlarge-pull-2 {
    position: relative;
    left: -16.66667%; }
  .xlarge-offset-1 {
    margin-left: 8.33333%; }
  .xlarge-3 {
    width: 25%; }
  .xlarge-push-3 {
    position: relative;
    left: 25%; }
  .xlarge-pull-3 {
    position: relative;
    left: -25%; }
  .xlarge-offset-2 {
    margin-left: 16.66667%; }
  .xlarge-4 {
    width: 33.33333%; }
  .xlarge-push-4 {
    position: relative;
    left: 33.33333%; }
  .xlarge-pull-4 {
    position: relative;
    left: -33.33333%; }
  .xlarge-offset-3 {
    margin-left: 25%; }
  .xlarge-5 {
    width: 41.66667%; }
  .xlarge-push-5 {
    position: relative;
    left: 41.66667%; }
  .xlarge-pull-5 {
    position: relative;
    left: -41.66667%; }
  .xlarge-offset-4 {
    margin-left: 33.33333%; }
  .xlarge-6 {
    width: 50%; }
  .xlarge-push-6 {
    position: relative;
    left: 50%; }
  .xlarge-pull-6 {
    position: relative;
    left: -50%; }
  .xlarge-offset-5 {
    margin-left: 41.66667%; }
  .xlarge-7 {
    width: 58.33333%; }
  .xlarge-push-7 {
    position: relative;
    left: 58.33333%; }
  .xlarge-pull-7 {
    position: relative;
    left: -58.33333%; }
  .xlarge-offset-6 {
    margin-left: 50%; }
  .xlarge-8 {
    width: 66.66667%; }
  .xlarge-push-8 {
    position: relative;
    left: 66.66667%; }
  .xlarge-pull-8 {
    position: relative;
    left: -66.66667%; }
  .xlarge-offset-7 {
    margin-left: 58.33333%; }
  .xlarge-9 {
    width: 75%; }
  .xlarge-push-9 {
    position: relative;
    left: 75%; }
  .xlarge-pull-9 {
    position: relative;
    left: -75%; }
  .xlarge-offset-8 {
    margin-left: 66.66667%; }
  .xlarge-10 {
    width: 83.33333%; }
  .xlarge-push-10 {
    position: relative;
    left: 83.33333%; }
  .xlarge-pull-10 {
    position: relative;
    left: -83.33333%; }
  .xlarge-offset-9 {
    margin-left: 75%; }
  .xlarge-11 {
    width: 91.66667%; }
  .xlarge-push-11 {
    position: relative;
    left: 91.66667%; }
  .xlarge-pull-11 {
    position: relative;
    left: -91.66667%; }
  .xlarge-offset-10 {
    margin-left: 83.33333%; }
  .xlarge-12 {
    width: 100%; }
  .xlarge-offset-11 {
    margin-left: 91.66667%; }
  .xlarge-up-1 &gt; .column, .xlarge-up-1 &gt; .columns {
    width: 100%;
    float: left; }
    .xlarge-up-1 &gt; .column:nth-of-type(1n), .xlarge-up-1 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-1 &gt; .column:nth-of-type(1n+1), .xlarge-up-1 &gt; .columns:nth-of-type(1n+1) {
      clear: both; }
    .xlarge-up-1 &gt; .column:last-child, .xlarge-up-1 &gt; .columns:last-child {
      float: left; }
  .xlarge-up-2 &gt; .column, .xlarge-up-2 &gt; .columns {
    width: 50%;
    float: left; }
    .xlarge-up-2 &gt; .column:nth-of-type(1n), .xlarge-up-2 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-2 &gt; .column:nth-of-type(2n+1), .xlarge-up-2 &gt; .columns:nth-of-type(2n+1) {
      clear: both; }
    .xlarge-up-2 &gt; .column:last-child, .xlarge-up-2 &gt; .columns:last-child {
      float: left; }
  .xlarge-up-3 &gt; .column, .xlarge-up-3 &gt; .columns {
    width: 33.33333%;
    float: left; }
    .xlarge-up-3 &gt; .column:nth-of-type(1n), .xlarge-up-3 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-3 &gt; .column:nth-of-type(3n+1), .xlarge-up-3 &gt; .columns:nth-of-type(3n+1) {
      clear: both; }
    .xlarge-up-3 &gt; .column:last-child, .xlarge-up-3 &gt; .columns:last-child {
      float: left; }
  .xlarge-up-4 &gt; .column, .xlarge-up-4 &gt; .columns {
    width: 25%;
    float: left; }
    .xlarge-up-4 &gt; .column:nth-of-type(1n), .xlarge-up-4 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-4 &gt; .column:nth-of-type(4n+1), .xlarge-up-4 &gt; .columns:nth-of-type(4n+1) {
      clear: both; }
    .xlarge-up-4 &gt; .column:last-child, .xlarge-up-4 &gt; .columns:last-child {
      float: left; }
  .xlarge-up-5 &gt; .column, .xlarge-up-5 &gt; .columns {
    width: 20%;
    float: left; }
    .xlarge-up-5 &gt; .column:nth-of-type(1n), .xlarge-up-5 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-5 &gt; .column:nth-of-type(5n+1), .xlarge-up-5 &gt; .columns:nth-of-type(5n+1) {
      clear: both; }
    .xlarge-up-5 &gt; .column:last-child, .xlarge-up-5 &gt; .columns:last-child {
      float: left; }
  .xlarge-up-6 &gt; .column, .xlarge-up-6 &gt; .columns {
    width: 16.66667%;
    float: left; }
    .xlarge-up-6 &gt; .column:nth-of-type(1n), .xlarge-up-6 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-6 &gt; .column:nth-of-type(6n+1), .xlarge-up-6 &gt; .columns:nth-of-type(6n+1) {
      clear: both; }
    .xlarge-up-6 &gt; .column:last-child, .xlarge-up-6 &gt; .columns:last-child {
      float: left; }
  .xlarge-up-7 &gt; .column, .xlarge-up-7 &gt; .columns {
    width: 14.28571%;
    float: left; }
    .xlarge-up-7 &gt; .column:nth-of-type(1n), .xlarge-up-7 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-7 &gt; .column:nth-of-type(7n+1), .xlarge-up-7 &gt; .columns:nth-of-type(7n+1) {
      clear: both; }
    .xlarge-up-7 &gt; .column:last-child, .xlarge-up-7 &gt; .columns:last-child {
      float: left; }
  .xlarge-up-8 &gt; .column, .xlarge-up-8 &gt; .columns {
    width: 12.5%;
    float: left; }
    .xlarge-up-8 &gt; .column:nth-of-type(1n), .xlarge-up-8 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-8 &gt; .column:nth-of-type(8n+1), .xlarge-up-8 &gt; .columns:nth-of-type(8n+1) {
      clear: both; }
    .xlarge-up-8 &gt; .column:last-child, .xlarge-up-8 &gt; .columns:last-child {
      float: left; }
  .xlarge-collapse &gt; .column, .xlarge-collapse &gt; .columns {
    padding-left: 0;
    padding-right: 0; }
  .xlarge-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .xlarge-uncollapse &gt; .column, .xlarge-uncollapse &gt; .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .xlarge-centered {
    float: none;
    margin-left: auto;
    margin-right: auto; }
  .xlarge-uncentered,
  .xlarge-push-0,
  .xlarge-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

@media screen and (min-width: 90em) {
  .xxlarge-1 {
    width: 8.33333%; }
  .xxlarge-push-1 {
    position: relative;
    left: 8.33333%; }
  .xxlarge-pull-1 {
    position: relative;
    left: -8.33333%; }
  .xxlarge-offset-0 {
    margin-left: 0%; }
  .xxlarge-2 {
    width: 16.66667%; }
  .xxlarge-push-2 {
    position: relative;
    left: 16.66667%; }
  .xxlarge-pull-2 {
    position: relative;
    left: -16.66667%; }
  .xxlarge-offset-1 {
    margin-left: 8.33333%; }
  .xxlarge-3 {
    width: 25%; }
  .xxlarge-push-3 {
    position: relative;
    left: 25%; }
  .xxlarge-pull-3 {
    position: relative;
    left: -25%; }
  .xxlarge-offset-2 {
    margin-left: 16.66667%; }
  .xxlarge-4 {
    width: 33.33333%; }
  .xxlarge-push-4 {
    position: relative;
    left: 33.33333%; }
  .xxlarge-pull-4 {
    position: relative;
    left: -33.33333%; }
  .xxlarge-offset-3 {
    margin-left: 25%; }
  .xxlarge-5 {
    width: 41.66667%; }
  .xxlarge-push-5 {
    position: relative;
    left: 41.66667%; }
  .xxlarge-pull-5 {
    position: relative;
    left: -41.66667%; }
  .xxlarge-offset-4 {
    margin-left: 33.33333%; }
  .xxlarge-6 {
    width: 50%; }
  .xxlarge-push-6 {
    position: relative;
    left: 50%; }
  .xxlarge-pull-6 {
    position: relative;
    left: -50%; }
  .xxlarge-offset-5 {
    margin-left: 41.66667%; }
  .xxlarge-7 {
    width: 58.33333%; }
  .xxlarge-push-7 {
    position: relative;
    left: 58.33333%; }
  .xxlarge-pull-7 {
    position: relative;
    left: -58.33333%; }
  .xxlarge-offset-6 {
    margin-left: 50%; }
  .xxlarge-8 {
    width: 66.66667%; }
  .xxlarge-push-8 {
    position: relative;
    left: 66.66667%; }
  .xxlarge-pull-8 {
    position: relative;
    left: -66.66667%; }
  .xxlarge-offset-7 {
    margin-left: 58.33333%; }
  .xxlarge-9 {
    width: 75%; }
  .xxlarge-push-9 {
    position: relative;
    left: 75%; }
  .xxlarge-pull-9 {
    position: relative;
    left: -75%; }
  .xxlarge-offset-8 {
    margin-left: 66.66667%; }
  .xxlarge-10 {
    width: 83.33333%; }
  .xxlarge-push-10 {
    position: relative;
    left: 83.33333%; }
  .xxlarge-pull-10 {
    position: relative;
    left: -83.33333%; }
  .xxlarge-offset-9 {
    margin-left: 75%; }
  .xxlarge-11 {
    width: 91.66667%; }
  .xxlarge-push-11 {
    position: relative;
    left: 91.66667%; }
  .xxlarge-pull-11 {
    position: relative;
    left: -91.66667%; }
  .xxlarge-offset-10 {
    margin-left: 83.33333%; }
  .xxlarge-12 {
    width: 100%; }
  .xxlarge-offset-11 {
    margin-left: 91.66667%; }
  .xxlarge-up-1 &gt; .column, .xxlarge-up-1 &gt; .columns {
    width: 100%;
    float: left; }
    .xxlarge-up-1 &gt; .column:nth-of-type(1n), .xxlarge-up-1 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-1 &gt; .column:nth-of-type(1n+1), .xxlarge-up-1 &gt; .columns:nth-of-type(1n+1) {
      clear: both; }
    .xxlarge-up-1 &gt; .column:last-child, .xxlarge-up-1 &gt; .columns:last-child {
      float: left; }
  .xxlarge-up-2 &gt; .column, .xxlarge-up-2 &gt; .columns {
    width: 50%;
    float: left; }
    .xxlarge-up-2 &gt; .column:nth-of-type(1n), .xxlarge-up-2 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-2 &gt; .column:nth-of-type(2n+1), .xxlarge-up-2 &gt; .columns:nth-of-type(2n+1) {
      clear: both; }
    .xxlarge-up-2 &gt; .column:last-child, .xxlarge-up-2 &gt; .columns:last-child {
      float: left; }
  .xxlarge-up-3 &gt; .column, .xxlarge-up-3 &gt; .columns {
    width: 33.33333%;
    float: left; }
    .xxlarge-up-3 &gt; .column:nth-of-type(1n), .xxlarge-up-3 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-3 &gt; .column:nth-of-type(3n+1), .xxlarge-up-3 &gt; .columns:nth-of-type(3n+1) {
      clear: both; }
    .xxlarge-up-3 &gt; .column:last-child, .xxlarge-up-3 &gt; .columns:last-child {
      float: left; }
  .xxlarge-up-4 &gt; .column, .xxlarge-up-4 &gt; .columns {
    width: 25%;
    float: left; }
    .xxlarge-up-4 &gt; .column:nth-of-type(1n), .xxlarge-up-4 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-4 &gt; .column:nth-of-type(4n+1), .xxlarge-up-4 &gt; .columns:nth-of-type(4n+1) {
      clear: both; }
    .xxlarge-up-4 &gt; .column:last-child, .xxlarge-up-4 &gt; .columns:last-child {
      float: left; }
  .xxlarge-up-5 &gt; .column, .xxlarge-up-5 &gt; .columns {
    width: 20%;
    float: left; }
    .xxlarge-up-5 &gt; .column:nth-of-type(1n), .xxlarge-up-5 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-5 &gt; .column:nth-of-type(5n+1), .xxlarge-up-5 &gt; .columns:nth-of-type(5n+1) {
      clear: both; }
    .xxlarge-up-5 &gt; .column:last-child, .xxlarge-up-5 &gt; .columns:last-child {
      float: left; }
  .xxlarge-up-6 &gt; .column, .xxlarge-up-6 &gt; .columns {
    width: 16.66667%;
    float: left; }
    .xxlarge-up-6 &gt; .column:nth-of-type(1n), .xxlarge-up-6 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-6 &gt; .column:nth-of-type(6n+1), .xxlarge-up-6 &gt; .columns:nth-of-type(6n+1) {
      clear: both; }
    .xxlarge-up-6 &gt; .column:last-child, .xxlarge-up-6 &gt; .columns:last-child {
      float: left; }
  .xxlarge-up-7 &gt; .column, .xxlarge-up-7 &gt; .columns {
    width: 14.28571%;
    float: left; }
    .xxlarge-up-7 &gt; .column:nth-of-type(1n), .xxlarge-up-7 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-7 &gt; .column:nth-of-type(7n+1), .xxlarge-up-7 &gt; .columns:nth-of-type(7n+1) {
      clear: both; }
    .xxlarge-up-7 &gt; .column:last-child, .xxlarge-up-7 &gt; .columns:last-child {
      float: left; }
  .xxlarge-up-8 &gt; .column, .xxlarge-up-8 &gt; .columns {
    width: 12.5%;
    float: left; }
    .xxlarge-up-8 &gt; .column:nth-of-type(1n), .xxlarge-up-8 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-8 &gt; .column:nth-of-type(8n+1), .xxlarge-up-8 &gt; .columns:nth-of-type(8n+1) {
      clear: both; }
    .xxlarge-up-8 &gt; .column:last-child, .xxlarge-up-8 &gt; .columns:last-child {
      float: left; }
  .xxlarge-collapse &gt; .column, .xxlarge-collapse &gt; .columns {
    padding-left: 0;
    padding-right: 0; }
  .xxlarge-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .xxlarge-uncollapse &gt; .column, .xxlarge-uncollapse &gt; .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .xxlarge-centered {
    float: none;
    margin-left: auto;
    margin-right: auto; }
  .xxlarge-uncentered,
  .xxlarge-push-0,
  .xxlarge-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

@media screen and (min-width: 120em) {
  .hdlarge-1 {
    width: 8.33333%; }
  .hdlarge-push-1 {
    position: relative;
    left: 8.33333%; }
  .hdlarge-pull-1 {
    position: relative;
    left: -8.33333%; }
  .hdlarge-offset-0 {
    margin-left: 0%; }
  .hdlarge-2 {
    width: 16.66667%; }
  .hdlarge-push-2 {
    position: relative;
    left: 16.66667%; }
  .hdlarge-pull-2 {
    position: relative;
    left: -16.66667%; }
  .hdlarge-offset-1 {
    margin-left: 8.33333%; }
  .hdlarge-3 {
    width: 25%; }
  .hdlarge-push-3 {
    position: relative;
    left: 25%; }
  .hdlarge-pull-3 {
    position: relative;
    left: -25%; }
  .hdlarge-offset-2 {
    margin-left: 16.66667%; }
  .hdlarge-4 {
    width: 33.33333%; }
  .hdlarge-push-4 {
    position: relative;
    left: 33.33333%; }
  .hdlarge-pull-4 {
    position: relative;
    left: -33.33333%; }
  .hdlarge-offset-3 {
    margin-left: 25%; }
  .hdlarge-5 {
    width: 41.66667%; }
  .hdlarge-push-5 {
    position: relative;
    left: 41.66667%; }
  .hdlarge-pull-5 {
    position: relative;
    left: -41.66667%; }
  .hdlarge-offset-4 {
    margin-left: 33.33333%; }
  .hdlarge-6 {
    width: 50%; }
  .hdlarge-push-6 {
    position: relative;
    left: 50%; }
  .hdlarge-pull-6 {
    position: relative;
    left: -50%; }
  .hdlarge-offset-5 {
    margin-left: 41.66667%; }
  .hdlarge-7 {
    width: 58.33333%; }
  .hdlarge-push-7 {
    position: relative;
    left: 58.33333%; }
  .hdlarge-pull-7 {
    position: relative;
    left: -58.33333%; }
  .hdlarge-offset-6 {
    margin-left: 50%; }
  .hdlarge-8 {
    width: 66.66667%; }
  .hdlarge-push-8 {
    position: relative;
    left: 66.66667%; }
  .hdlarge-pull-8 {
    position: relative;
    left: -66.66667%; }
  .hdlarge-offset-7 {
    margin-left: 58.33333%; }
  .hdlarge-9 {
    width: 75%; }
  .hdlarge-push-9 {
    position: relative;
    left: 75%; }
  .hdlarge-pull-9 {
    position: relative;
    left: -75%; }
  .hdlarge-offset-8 {
    margin-left: 66.66667%; }
  .hdlarge-10 {
    width: 83.33333%; }
  .hdlarge-push-10 {
    position: relative;
    left: 83.33333%; }
  .hdlarge-pull-10 {
    position: relative;
    left: -83.33333%; }
  .hdlarge-offset-9 {
    margin-left: 75%; }
  .hdlarge-11 {
    width: 91.66667%; }
  .hdlarge-push-11 {
    position: relative;
    left: 91.66667%; }
  .hdlarge-pull-11 {
    position: relative;
    left: -91.66667%; }
  .hdlarge-offset-10 {
    margin-left: 83.33333%; }
  .hdlarge-12 {
    width: 100%; }
  .hdlarge-offset-11 {
    margin-left: 91.66667%; }
  .hdlarge-up-1 &gt; .column, .hdlarge-up-1 &gt; .columns {
    width: 100%;
    float: left; }
    .hdlarge-up-1 &gt; .column:nth-of-type(1n), .hdlarge-up-1 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdlarge-up-1 &gt; .column:nth-of-type(1n+1), .hdlarge-up-1 &gt; .columns:nth-of-type(1n+1) {
      clear: both; }
    .hdlarge-up-1 &gt; .column:last-child, .hdlarge-up-1 &gt; .columns:last-child {
      float: left; }
  .hdlarge-up-2 &gt; .column, .hdlarge-up-2 &gt; .columns {
    width: 50%;
    float: left; }
    .hdlarge-up-2 &gt; .column:nth-of-type(1n), .hdlarge-up-2 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdlarge-up-2 &gt; .column:nth-of-type(2n+1), .hdlarge-up-2 &gt; .columns:nth-of-type(2n+1) {
      clear: both; }
    .hdlarge-up-2 &gt; .column:last-child, .hdlarge-up-2 &gt; .columns:last-child {
      float: left; }
  .hdlarge-up-3 &gt; .column, .hdlarge-up-3 &gt; .columns {
    width: 33.33333%;
    float: left; }
    .hdlarge-up-3 &gt; .column:nth-of-type(1n), .hdlarge-up-3 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdlarge-up-3 &gt; .column:nth-of-type(3n+1), .hdlarge-up-3 &gt; .columns:nth-of-type(3n+1) {
      clear: both; }
    .hdlarge-up-3 &gt; .column:last-child, .hdlarge-up-3 &gt; .columns:last-child {
      float: left; }
  .hdlarge-up-4 &gt; .column, .hdlarge-up-4 &gt; .columns {
    width: 25%;
    float: left; }
    .hdlarge-up-4 &gt; .column:nth-of-type(1n), .hdlarge-up-4 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdlarge-up-4 &gt; .column:nth-of-type(4n+1), .hdlarge-up-4 &gt; .columns:nth-of-type(4n+1) {
      clear: both; }
    .hdlarge-up-4 &gt; .column:last-child, .hdlarge-up-4 &gt; .columns:last-child {
      float: left; }
  .hdlarge-up-5 &gt; .column, .hdlarge-up-5 &gt; .columns {
    width: 20%;
    float: left; }
    .hdlarge-up-5 &gt; .column:nth-of-type(1n), .hdlarge-up-5 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdlarge-up-5 &gt; .column:nth-of-type(5n+1), .hdlarge-up-5 &gt; .columns:nth-of-type(5n+1) {
      clear: both; }
    .hdlarge-up-5 &gt; .column:last-child, .hdlarge-up-5 &gt; .columns:last-child {
      float: left; }
  .hdlarge-up-6 &gt; .column, .hdlarge-up-6 &gt; .columns {
    width: 16.66667%;
    float: left; }
    .hdlarge-up-6 &gt; .column:nth-of-type(1n), .hdlarge-up-6 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdlarge-up-6 &gt; .column:nth-of-type(6n+1), .hdlarge-up-6 &gt; .columns:nth-of-type(6n+1) {
      clear: both; }
    .hdlarge-up-6 &gt; .column:last-child, .hdlarge-up-6 &gt; .columns:last-child {
      float: left; }
  .hdlarge-up-7 &gt; .column, .hdlarge-up-7 &gt; .columns {
    width: 14.28571%;
    float: left; }
    .hdlarge-up-7 &gt; .column:nth-of-type(1n), .hdlarge-up-7 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdlarge-up-7 &gt; .column:nth-of-type(7n+1), .hdlarge-up-7 &gt; .columns:nth-of-type(7n+1) {
      clear: both; }
    .hdlarge-up-7 &gt; .column:last-child, .hdlarge-up-7 &gt; .columns:last-child {
      float: left; }
  .hdlarge-up-8 &gt; .column, .hdlarge-up-8 &gt; .columns {
    width: 12.5%;
    float: left; }
    .hdlarge-up-8 &gt; .column:nth-of-type(1n), .hdlarge-up-8 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdlarge-up-8 &gt; .column:nth-of-type(8n+1), .hdlarge-up-8 &gt; .columns:nth-of-type(8n+1) {
      clear: both; }
    .hdlarge-up-8 &gt; .column:last-child, .hdlarge-up-8 &gt; .columns:last-child {
      float: left; }
  .hdlarge-collapse &gt; .column, .hdlarge-collapse &gt; .columns {
    padding-left: 0;
    padding-right: 0; }
  .hdlarge-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .hdlarge-uncollapse &gt; .column, .hdlarge-uncollapse &gt; .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .hdlarge-centered {
    float: none;
    margin-left: auto;
    margin-right: auto; }
  .hdlarge-uncentered,
  .hdlarge-push-0,
  .hdlarge-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

@media screen and (min-width: 160em) {
  .hdxlarge-1 {
    width: 8.33333%; }
  .hdxlarge-push-1 {
    position: relative;
    left: 8.33333%; }
  .hdxlarge-pull-1 {
    position: relative;
    left: -8.33333%; }
  .hdxlarge-offset-0 {
    margin-left: 0%; }
  .hdxlarge-2 {
    width: 16.66667%; }
  .hdxlarge-push-2 {
    position: relative;
    left: 16.66667%; }
  .hdxlarge-pull-2 {
    position: relative;
    left: -16.66667%; }
  .hdxlarge-offset-1 {
    margin-left: 8.33333%; }
  .hdxlarge-3 {
    width: 25%; }
  .hdxlarge-push-3 {
    position: relative;
    left: 25%; }
  .hdxlarge-pull-3 {
    position: relative;
    left: -25%; }
  .hdxlarge-offset-2 {
    margin-left: 16.66667%; }
  .hdxlarge-4 {
    width: 33.33333%; }
  .hdxlarge-push-4 {
    position: relative;
    left: 33.33333%; }
  .hdxlarge-pull-4 {
    position: relative;
    left: -33.33333%; }
  .hdxlarge-offset-3 {
    margin-left: 25%; }
  .hdxlarge-5 {
    width: 41.66667%; }
  .hdxlarge-push-5 {
    position: relative;
    left: 41.66667%; }
  .hdxlarge-pull-5 {
    position: relative;
    left: -41.66667%; }
  .hdxlarge-offset-4 {
    margin-left: 33.33333%; }
  .hdxlarge-6 {
    width: 50%; }
  .hdxlarge-push-6 {
    position: relative;
    left: 50%; }
  .hdxlarge-pull-6 {
    position: relative;
    left: -50%; }
  .hdxlarge-offset-5 {
    margin-left: 41.66667%; }
  .hdxlarge-7 {
    width: 58.33333%; }
  .hdxlarge-push-7 {
    position: relative;
    left: 58.33333%; }
  .hdxlarge-pull-7 {
    position: relative;
    left: -58.33333%; }
  .hdxlarge-offset-6 {
    margin-left: 50%; }
  .hdxlarge-8 {
    width: 66.66667%; }
  .hdxlarge-push-8 {
    position: relative;
    left: 66.66667%; }
  .hdxlarge-pull-8 {
    position: relative;
    left: -66.66667%; }
  .hdxlarge-offset-7 {
    margin-left: 58.33333%; }
  .hdxlarge-9 {
    width: 75%; }
  .hdxlarge-push-9 {
    position: relative;
    left: 75%; }
  .hdxlarge-pull-9 {
    position: relative;
    left: -75%; }
  .hdxlarge-offset-8 {
    margin-left: 66.66667%; }
  .hdxlarge-10 {
    width: 83.33333%; }
  .hdxlarge-push-10 {
    position: relative;
    left: 83.33333%; }
  .hdxlarge-pull-10 {
    position: relative;
    left: -83.33333%; }
  .hdxlarge-offset-9 {
    margin-left: 75%; }
  .hdxlarge-11 {
    width: 91.66667%; }
  .hdxlarge-push-11 {
    position: relative;
    left: 91.66667%; }
  .hdxlarge-pull-11 {
    position: relative;
    left: -91.66667%; }
  .hdxlarge-offset-10 {
    margin-left: 83.33333%; }
  .hdxlarge-12 {
    width: 100%; }
  .hdxlarge-offset-11 {
    margin-left: 91.66667%; }
  .hdxlarge-up-1 &gt; .column, .hdxlarge-up-1 &gt; .columns {
    width: 100%;
    float: left; }
    .hdxlarge-up-1 &gt; .column:nth-of-type(1n), .hdxlarge-up-1 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdxlarge-up-1 &gt; .column:nth-of-type(1n+1), .hdxlarge-up-1 &gt; .columns:nth-of-type(1n+1) {
      clear: both; }
    .hdxlarge-up-1 &gt; .column:last-child, .hdxlarge-up-1 &gt; .columns:last-child {
      float: left; }
  .hdxlarge-up-2 &gt; .column, .hdxlarge-up-2 &gt; .columns {
    width: 50%;
    float: left; }
    .hdxlarge-up-2 &gt; .column:nth-of-type(1n), .hdxlarge-up-2 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdxlarge-up-2 &gt; .column:nth-of-type(2n+1), .hdxlarge-up-2 &gt; .columns:nth-of-type(2n+1) {
      clear: both; }
    .hdxlarge-up-2 &gt; .column:last-child, .hdxlarge-up-2 &gt; .columns:last-child {
      float: left; }
  .hdxlarge-up-3 &gt; .column, .hdxlarge-up-3 &gt; .columns {
    width: 33.33333%;
    float: left; }
    .hdxlarge-up-3 &gt; .column:nth-of-type(1n), .hdxlarge-up-3 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdxlarge-up-3 &gt; .column:nth-of-type(3n+1), .hdxlarge-up-3 &gt; .columns:nth-of-type(3n+1) {
      clear: both; }
    .hdxlarge-up-3 &gt; .column:last-child, .hdxlarge-up-3 &gt; .columns:last-child {
      float: left; }
  .hdxlarge-up-4 &gt; .column, .hdxlarge-up-4 &gt; .columns {
    width: 25%;
    float: left; }
    .hdxlarge-up-4 &gt; .column:nth-of-type(1n), .hdxlarge-up-4 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdxlarge-up-4 &gt; .column:nth-of-type(4n+1), .hdxlarge-up-4 &gt; .columns:nth-of-type(4n+1) {
      clear: both; }
    .hdxlarge-up-4 &gt; .column:last-child, .hdxlarge-up-4 &gt; .columns:last-child {
      float: left; }
  .hdxlarge-up-5 &gt; .column, .hdxlarge-up-5 &gt; .columns {
    width: 20%;
    float: left; }
    .hdxlarge-up-5 &gt; .column:nth-of-type(1n), .hdxlarge-up-5 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdxlarge-up-5 &gt; .column:nth-of-type(5n+1), .hdxlarge-up-5 &gt; .columns:nth-of-type(5n+1) {
      clear: both; }
    .hdxlarge-up-5 &gt; .column:last-child, .hdxlarge-up-5 &gt; .columns:last-child {
      float: left; }
  .hdxlarge-up-6 &gt; .column, .hdxlarge-up-6 &gt; .columns {
    width: 16.66667%;
    float: left; }
    .hdxlarge-up-6 &gt; .column:nth-of-type(1n), .hdxlarge-up-6 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdxlarge-up-6 &gt; .column:nth-of-type(6n+1), .hdxlarge-up-6 &gt; .columns:nth-of-type(6n+1) {
      clear: both; }
    .hdxlarge-up-6 &gt; .column:last-child, .hdxlarge-up-6 &gt; .columns:last-child {
      float: left; }
  .hdxlarge-up-7 &gt; .column, .hdxlarge-up-7 &gt; .columns {
    width: 14.28571%;
    float: left; }
    .hdxlarge-up-7 &gt; .column:nth-of-type(1n), .hdxlarge-up-7 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdxlarge-up-7 &gt; .column:nth-of-type(7n+1), .hdxlarge-up-7 &gt; .columns:nth-of-type(7n+1) {
      clear: both; }
    .hdxlarge-up-7 &gt; .column:last-child, .hdxlarge-up-7 &gt; .columns:last-child {
      float: left; }
  .hdxlarge-up-8 &gt; .column, .hdxlarge-up-8 &gt; .columns {
    width: 12.5%;
    float: left; }
    .hdxlarge-up-8 &gt; .column:nth-of-type(1n), .hdxlarge-up-8 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdxlarge-up-8 &gt; .column:nth-of-type(8n+1), .hdxlarge-up-8 &gt; .columns:nth-of-type(8n+1) {
      clear: both; }
    .hdxlarge-up-8 &gt; .column:last-child, .hdxlarge-up-8 &gt; .columns:last-child {
      float: left; }
  .hdxlarge-collapse &gt; .column, .hdxlarge-collapse &gt; .columns {
    padding-left: 0;
    padding-right: 0; }
  .hdxlarge-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .hdxlarge-uncollapse &gt; .column, .hdxlarge-uncollapse &gt; .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .hdxlarge-centered {
    float: none;
    margin-left: auto;
    margin-right: auto; }
  .hdxlarge-uncentered,
  .hdxlarge-push-0,
  .hdxlarge-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

@media screen and (min-width: 256em) {
  .hdfourk-1 {
    width: 8.33333%; }
  .hdfourk-push-1 {
    position: relative;
    left: 8.33333%; }
  .hdfourk-pull-1 {
    position: relative;
    left: -8.33333%; }
  .hdfourk-offset-0 {
    margin-left: 0%; }
  .hdfourk-2 {
    width: 16.66667%; }
  .hdfourk-push-2 {
    position: relative;
    left: 16.66667%; }
  .hdfourk-pull-2 {
    position: relative;
    left: -16.66667%; }
  .hdfourk-offset-1 {
    margin-left: 8.33333%; }
  .hdfourk-3 {
    width: 25%; }
  .hdfourk-push-3 {
    position: relative;
    left: 25%; }
  .hdfourk-pull-3 {
    position: relative;
    left: -25%; }
  .hdfourk-offset-2 {
    margin-left: 16.66667%; }
  .hdfourk-4 {
    width: 33.33333%; }
  .hdfourk-push-4 {
    position: relative;
    left: 33.33333%; }
  .hdfourk-pull-4 {
    position: relative;
    left: -33.33333%; }
  .hdfourk-offset-3 {
    margin-left: 25%; }
  .hdfourk-5 {
    width: 41.66667%; }
  .hdfourk-push-5 {
    position: relative;
    left: 41.66667%; }
  .hdfourk-pull-5 {
    position: relative;
    left: -41.66667%; }
  .hdfourk-offset-4 {
    margin-left: 33.33333%; }
  .hdfourk-6 {
    width: 50%; }
  .hdfourk-push-6 {
    position: relative;
    left: 50%; }
  .hdfourk-pull-6 {
    position: relative;
    left: -50%; }
  .hdfourk-offset-5 {
    margin-left: 41.66667%; }
  .hdfourk-7 {
    width: 58.33333%; }
  .hdfourk-push-7 {
    position: relative;
    left: 58.33333%; }
  .hdfourk-pull-7 {
    position: relative;
    left: -58.33333%; }
  .hdfourk-offset-6 {
    margin-left: 50%; }
  .hdfourk-8 {
    width: 66.66667%; }
  .hdfourk-push-8 {
    position: relative;
    left: 66.66667%; }
  .hdfourk-pull-8 {
    position: relative;
    left: -66.66667%; }
  .hdfourk-offset-7 {
    margin-left: 58.33333%; }
  .hdfourk-9 {
    width: 75%; }
  .hdfourk-push-9 {
    position: relative;
    left: 75%; }
  .hdfourk-pull-9 {
    position: relative;
    left: -75%; }
  .hdfourk-offset-8 {
    margin-left: 66.66667%; }
  .hdfourk-10 {
    width: 83.33333%; }
  .hdfourk-push-10 {
    position: relative;
    left: 83.33333%; }
  .hdfourk-pull-10 {
    position: relative;
    left: -83.33333%; }
  .hdfourk-offset-9 {
    margin-left: 75%; }
  .hdfourk-11 {
    width: 91.66667%; }
  .hdfourk-push-11 {
    position: relative;
    left: 91.66667%; }
  .hdfourk-pull-11 {
    position: relative;
    left: -91.66667%; }
  .hdfourk-offset-10 {
    margin-left: 83.33333%; }
  .hdfourk-12 {
    width: 100%; }
  .hdfourk-offset-11 {
    margin-left: 91.66667%; }
  .hdfourk-up-1 &gt; .column, .hdfourk-up-1 &gt; .columns {
    width: 100%;
    float: left; }
    .hdfourk-up-1 &gt; .column:nth-of-type(1n), .hdfourk-up-1 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdfourk-up-1 &gt; .column:nth-of-type(1n+1), .hdfourk-up-1 &gt; .columns:nth-of-type(1n+1) {
      clear: both; }
    .hdfourk-up-1 &gt; .column:last-child, .hdfourk-up-1 &gt; .columns:last-child {
      float: left; }
  .hdfourk-up-2 &gt; .column, .hdfourk-up-2 &gt; .columns {
    width: 50%;
    float: left; }
    .hdfourk-up-2 &gt; .column:nth-of-type(1n), .hdfourk-up-2 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdfourk-up-2 &gt; .column:nth-of-type(2n+1), .hdfourk-up-2 &gt; .columns:nth-of-type(2n+1) {
      clear: both; }
    .hdfourk-up-2 &gt; .column:last-child, .hdfourk-up-2 &gt; .columns:last-child {
      float: left; }
  .hdfourk-up-3 &gt; .column, .hdfourk-up-3 &gt; .columns {
    width: 33.33333%;
    float: left; }
    .hdfourk-up-3 &gt; .column:nth-of-type(1n), .hdfourk-up-3 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdfourk-up-3 &gt; .column:nth-of-type(3n+1), .hdfourk-up-3 &gt; .columns:nth-of-type(3n+1) {
      clear: both; }
    .hdfourk-up-3 &gt; .column:last-child, .hdfourk-up-3 &gt; .columns:last-child {
      float: left; }
  .hdfourk-up-4 &gt; .column, .hdfourk-up-4 &gt; .columns {
    width: 25%;
    float: left; }
    .hdfourk-up-4 &gt; .column:nth-of-type(1n), .hdfourk-up-4 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdfourk-up-4 &gt; .column:nth-of-type(4n+1), .hdfourk-up-4 &gt; .columns:nth-of-type(4n+1) {
      clear: both; }
    .hdfourk-up-4 &gt; .column:last-child, .hdfourk-up-4 &gt; .columns:last-child {
      float: left; }
  .hdfourk-up-5 &gt; .column, .hdfourk-up-5 &gt; .columns {
    width: 20%;
    float: left; }
    .hdfourk-up-5 &gt; .column:nth-of-type(1n), .hdfourk-up-5 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdfourk-up-5 &gt; .column:nth-of-type(5n+1), .hdfourk-up-5 &gt; .columns:nth-of-type(5n+1) {
      clear: both; }
    .hdfourk-up-5 &gt; .column:last-child, .hdfourk-up-5 &gt; .columns:last-child {
      float: left; }
  .hdfourk-up-6 &gt; .column, .hdfourk-up-6 &gt; .columns {
    width: 16.66667%;
    float: left; }
    .hdfourk-up-6 &gt; .column:nth-of-type(1n), .hdfourk-up-6 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdfourk-up-6 &gt; .column:nth-of-type(6n+1), .hdfourk-up-6 &gt; .columns:nth-of-type(6n+1) {
      clear: both; }
    .hdfourk-up-6 &gt; .column:last-child, .hdfourk-up-6 &gt; .columns:last-child {
      float: left; }
  .hdfourk-up-7 &gt; .column, .hdfourk-up-7 &gt; .columns {
    width: 14.28571%;
    float: left; }
    .hdfourk-up-7 &gt; .column:nth-of-type(1n), .hdfourk-up-7 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdfourk-up-7 &gt; .column:nth-of-type(7n+1), .hdfourk-up-7 &gt; .columns:nth-of-type(7n+1) {
      clear: both; }
    .hdfourk-up-7 &gt; .column:last-child, .hdfourk-up-7 &gt; .columns:last-child {
      float: left; }
  .hdfourk-up-8 &gt; .column, .hdfourk-up-8 &gt; .columns {
    width: 12.5%;
    float: left; }
    .hdfourk-up-8 &gt; .column:nth-of-type(1n), .hdfourk-up-8 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdfourk-up-8 &gt; .column:nth-of-type(8n+1), .hdfourk-up-8 &gt; .columns:nth-of-type(8n+1) {
      clear: both; }
    .hdfourk-up-8 &gt; .column:last-child, .hdfourk-up-8 &gt; .columns:last-child {
      float: left; }
  .hdfourk-collapse &gt; .column, .hdfourk-collapse &gt; .columns {
    padding-left: 0;
    padding-right: 0; }
  .hdfourk-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .hdfourk-uncollapse &gt; .column, .hdfourk-uncollapse &gt; .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .hdfourk-centered {
    float: none;
    margin-left: auto;
    margin-right: auto; }
  .hdfourk-uncentered,
  .hdfourk-push-0,
  .hdfourk-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

@media screen and (min-width: 320em) {
  .hdfivek-1 {
    width: 8.33333%; }
  .hdfivek-push-1 {
    position: relative;
    left: 8.33333%; }
  .hdfivek-pull-1 {
    position: relative;
    left: -8.33333%; }
  .hdfivek-offset-0 {
    margin-left: 0%; }
  .hdfivek-2 {
    width: 16.66667%; }
  .hdfivek-push-2 {
    position: relative;
    left: 16.66667%; }
  .hdfivek-pull-2 {
    position: relative;
    left: -16.66667%; }
  .hdfivek-offset-1 {
    margin-left: 8.33333%; }
  .hdfivek-3 {
    width: 25%; }
  .hdfivek-push-3 {
    position: relative;
    left: 25%; }
  .hdfivek-pull-3 {
    position: relative;
    left: -25%; }
  .hdfivek-offset-2 {
    margin-left: 16.66667%; }
  .hdfivek-4 {
    width: 33.33333%; }
  .hdfivek-push-4 {
    position: relative;
    left: 33.33333%; }
  .hdfivek-pull-4 {
    position: relative;
    left: -33.33333%; }
  .hdfivek-offset-3 {
    margin-left: 25%; }
  .hdfivek-5 {
    width: 41.66667%; }
  .hdfivek-push-5 {
    position: relative;
    left: 41.66667%; }
  .hdfivek-pull-5 {
    position: relative;
    left: -41.66667%; }
  .hdfivek-offset-4 {
    margin-left: 33.33333%; }
  .hdfivek-6 {
    width: 50%; }
  .hdfivek-push-6 {
    position: relative;
    left: 50%; }
  .hdfivek-pull-6 {
    position: relative;
    left: -50%; }
  .hdfivek-offset-5 {
    margin-left: 41.66667%; }
  .hdfivek-7 {
    width: 58.33333%; }
  .hdfivek-push-7 {
    position: relative;
    left: 58.33333%; }
  .hdfivek-pull-7 {
    position: relative;
    left: -58.33333%; }
  .hdfivek-offset-6 {
    margin-left: 50%; }
  .hdfivek-8 {
    width: 66.66667%; }
  .hdfivek-push-8 {
    position: relative;
    left: 66.66667%; }
  .hdfivek-pull-8 {
    position: relative;
    left: -66.66667%; }
  .hdfivek-offset-7 {
    margin-left: 58.33333%; }
  .hdfivek-9 {
    width: 75%; }
  .hdfivek-push-9 {
    position: relative;
    left: 75%; }
  .hdfivek-pull-9 {
    position: relative;
    left: -75%; }
  .hdfivek-offset-8 {
    margin-left: 66.66667%; }
  .hdfivek-10 {
    width: 83.33333%; }
  .hdfivek-push-10 {
    position: relative;
    left: 83.33333%; }
  .hdfivek-pull-10 {
    position: relative;
    left: -83.33333%; }
  .hdfivek-offset-9 {
    margin-left: 75%; }
  .hdfivek-11 {
    width: 91.66667%; }
  .hdfivek-push-11 {
    position: relative;
    left: 91.66667%; }
  .hdfivek-pull-11 {
    position: relative;
    left: -91.66667%; }
  .hdfivek-offset-10 {
    margin-left: 83.33333%; }
  .hdfivek-12 {
    width: 100%; }
  .hdfivek-offset-11 {
    margin-left: 91.66667%; }
  .hdfivek-up-1 &gt; .column, .hdfivek-up-1 &gt; .columns {
    width: 100%;
    float: left; }
    .hdfivek-up-1 &gt; .column:nth-of-type(1n), .hdfivek-up-1 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdfivek-up-1 &gt; .column:nth-of-type(1n+1), .hdfivek-up-1 &gt; .columns:nth-of-type(1n+1) {
      clear: both; }
    .hdfivek-up-1 &gt; .column:last-child, .hdfivek-up-1 &gt; .columns:last-child {
      float: left; }
  .hdfivek-up-2 &gt; .column, .hdfivek-up-2 &gt; .columns {
    width: 50%;
    float: left; }
    .hdfivek-up-2 &gt; .column:nth-of-type(1n), .hdfivek-up-2 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdfivek-up-2 &gt; .column:nth-of-type(2n+1), .hdfivek-up-2 &gt; .columns:nth-of-type(2n+1) {
      clear: both; }
    .hdfivek-up-2 &gt; .column:last-child, .hdfivek-up-2 &gt; .columns:last-child {
      float: left; }
  .hdfivek-up-3 &gt; .column, .hdfivek-up-3 &gt; .columns {
    width: 33.33333%;
    float: left; }
    .hdfivek-up-3 &gt; .column:nth-of-type(1n), .hdfivek-up-3 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdfivek-up-3 &gt; .column:nth-of-type(3n+1), .hdfivek-up-3 &gt; .columns:nth-of-type(3n+1) {
      clear: both; }
    .hdfivek-up-3 &gt; .column:last-child, .hdfivek-up-3 &gt; .columns:last-child {
      float: left; }
  .hdfivek-up-4 &gt; .column, .hdfivek-up-4 &gt; .columns {
    width: 25%;
    float: left; }
    .hdfivek-up-4 &gt; .column:nth-of-type(1n), .hdfivek-up-4 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdfivek-up-4 &gt; .column:nth-of-type(4n+1), .hdfivek-up-4 &gt; .columns:nth-of-type(4n+1) {
      clear: both; }
    .hdfivek-up-4 &gt; .column:last-child, .hdfivek-up-4 &gt; .columns:last-child {
      float: left; }
  .hdfivek-up-5 &gt; .column, .hdfivek-up-5 &gt; .columns {
    width: 20%;
    float: left; }
    .hdfivek-up-5 &gt; .column:nth-of-type(1n), .hdfivek-up-5 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdfivek-up-5 &gt; .column:nth-of-type(5n+1), .hdfivek-up-5 &gt; .columns:nth-of-type(5n+1) {
      clear: both; }
    .hdfivek-up-5 &gt; .column:last-child, .hdfivek-up-5 &gt; .columns:last-child {
      float: left; }
  .hdfivek-up-6 &gt; .column, .hdfivek-up-6 &gt; .columns {
    width: 16.66667%;
    float: left; }
    .hdfivek-up-6 &gt; .column:nth-of-type(1n), .hdfivek-up-6 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdfivek-up-6 &gt; .column:nth-of-type(6n+1), .hdfivek-up-6 &gt; .columns:nth-of-type(6n+1) {
      clear: both; }
    .hdfivek-up-6 &gt; .column:last-child, .hdfivek-up-6 &gt; .columns:last-child {
      float: left; }
  .hdfivek-up-7 &gt; .column, .hdfivek-up-7 &gt; .columns {
    width: 14.28571%;
    float: left; }
    .hdfivek-up-7 &gt; .column:nth-of-type(1n), .hdfivek-up-7 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdfivek-up-7 &gt; .column:nth-of-type(7n+1), .hdfivek-up-7 &gt; .columns:nth-of-type(7n+1) {
      clear: both; }
    .hdfivek-up-7 &gt; .column:last-child, .hdfivek-up-7 &gt; .columns:last-child {
      float: left; }
  .hdfivek-up-8 &gt; .column, .hdfivek-up-8 &gt; .columns {
    width: 12.5%;
    float: left; }
    .hdfivek-up-8 &gt; .column:nth-of-type(1n), .hdfivek-up-8 &gt; .columns:nth-of-type(1n) {
      clear: none; }
    .hdfivek-up-8 &gt; .column:nth-of-type(8n+1), .hdfivek-up-8 &gt; .columns:nth-of-type(8n+1) {
      clear: both; }
    .hdfivek-up-8 &gt; .column:last-child, .hdfivek-up-8 &gt; .columns:last-child {
      float: left; }
  .hdfivek-collapse &gt; .column, .hdfivek-collapse &gt; .columns {
    padding-left: 0;
    padding-right: 0; }
  .hdfivek-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .hdfivek-uncollapse &gt; .column, .hdfivek-uncollapse &gt; .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .hdfivek-centered {
    float: none;
    margin-left: auto;
    margin-right: auto; }
  .hdfivek-uncentered,
  .hdfivek-push-0,
  .hdfivek-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: "Helvetica Neue", Helvetica, Roboto, Arial, 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: 20em) {
  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: 40em) {
  h1 {
    font-size: 3rem; }
  h2 {
    font-size: 2.5rem; }
  h3 {
    font-size: 1.9375rem; }
  h4 {
    font-size: 1.5625rem; }
  h5 {
    font-size: 1.25rem; }
  h6 {
    font-size: 1rem; } }

@media screen and (min-width: 48em) {
  h1 {
    font-size: 3rem; }
  h2 {
    font-size: 2.5rem; }
  h3 {
    font-size: 1.9375rem; }
  h4 {
    font-size: 1.5625rem; }
  h5 {
    font-size: 1.25rem; }
  h6 {
    font-size: 1rem; } }

a {
  color: #2199e8;
  text-decoration: none;
  line-height: inherit;
  cursor: pointer; }
  a:hover, a:focus {
    color: #1585cf; }
  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, ol ul, ul ol, ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0; }

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

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

cite {
  display: block;
  font-size: 0.8125rem;
  color: #8a8a8a; }
  cite:before {
    content: '\2014 \0020'; }

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: 40em) {
  .medium-text-left {
    text-align: left; }
  .medium-text-right {
    text-align: right; }
  .medium-text-center {
    text-align: center; }
  .medium-text-justify {
    text-align: justify; } }

@media screen and (min-width: 48em) {
  .medium_to_large-text-left {
    text-align: left; }
  .medium_to_large-text-right {
    text-align: right; }
  .medium_to_large-text-center {
    text-align: center; }
  .medium_to_large-text-justify {
    text-align: justify; } }

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

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

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

@media screen and (min-width: 120em) {
  .hdlarge-text-left {
    text-align: left; }
  .hdlarge-text-right {
    text-align: right; }
  .hdlarge-text-center {
    text-align: center; }
  .hdlarge-text-justify {
    text-align: justify; } }

@media screen and (min-width: 160em) {
  .hdxlarge-text-left {
    text-align: left; }
  .hdxlarge-text-right {
    text-align: right; }
  .hdxlarge-text-center {
    text-align: center; }
  .hdxlarge-text-justify {
    text-align: justify; } }

@media screen and (min-width: 256em) {
  .hdfourk-text-left {
    text-align: left; }
  .hdfourk-text-right {
    text-align: right; }
  .hdfourk-text-center {
    text-align: center; }
  .hdfourk-text-justify {
    text-align: justify; } }

@media screen and (min-width: 320em) {
  .hdfivek-text-left {
    text-align: left; }
  .hdfivek-text-right {
    text-align: right; }
  .hdfivek-text-center {
    text-align: center; }
  .hdfivek-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::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 &gt; [type='checkbox'],
label &gt; [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 &gt; :first-child {
    border-radius: 0 0 0 0; }
  .input-group &gt; :last-child &gt; * {
    border-radius: 0 0 0 0; }

.input-group-label, .input-group-field, .input-group-button {
  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: #fefefe;
    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,&lt;svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"&gt;&lt;polygon points="0,0 32,0 16,24" style="fill: rgb%28138, 138, 138%29"&gt;&lt;/polygon&gt;&lt;/svg&gt;');
  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: #2199e8;
  color: #fefefe; }
  [data-whatinput='mouse'] .button {
    outline: 0; }
  .button:hover, .button:focus {
    background-color: #1583cc;
    color: #fefefe; }
  .button.tiny {
    font-size: 0.6rem; }
  .button.small {
    font-size: 0.75rem; }
  .button.large {
    font-size: 1.25rem; }
  .button.expanded {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0; }
  .button.primary {
    background-color: #2199e8;
    color: #fefefe; }
    .button.primary:hover, .button.primary:focus {
      background-color: #147cc0;
      color: #fefefe; }
  .button.secondary {
    background-color: #777;
    color: #fefefe; }
    .button.secondary:hover, .button.secondary:focus {
      background-color: #5f5f5f;
      color: #fefefe; }
  .button.success {
    background-color: #3adb76;
    color: #fefefe; }
    .button.success:hover, .button.success:focus {
      background-color: #22bb5b;
      color: #fefefe; }
  .button.warning {
    background-color: #ffae00;
    color: #fefefe; }
    .button.warning:hover, .button.warning:focus {
      background-color: #cc8b00;
      color: #fefefe; }
  .button.alert {
    background-color: #ec5840;
    color: #fefefe; }
    .button.alert:hover, .button.alert:focus {
      background-color: #da3116;
      color: #fefefe; }
  .button.hollow {
    border: 1px solid #2199e8;
    color: #2199e8; }
    .button.hollow, .button.hollow:hover, .button.hollow:focus {
      background-color: transparent; }
    .button.hollow:hover, .button.hollow:focus {
      border-color: #0c4d78;
      color: #0c4d78; }
    .button.hollow.primary {
      border: 1px solid #2199e8;
      color: #2199e8; }
      .button.hollow.primary:hover, .button.hollow.primary:focus {
        border-color: #0c4d78;
        color: #0c4d78; }
    .button.hollow.secondary {
      border: 1px solid #777;
      color: #777; }
      .button.hollow.secondary:hover, .button.hollow.secondary:focus {
        border-color: #3c3c3c;
        color: #3c3c3c; }
    .button.hollow.success {
      border: 1px solid #3adb76;
      color: #3adb76; }
      .button.hollow.success:hover, .button.hollow.success:focus {
        border-color: #157539;
        color: #157539; }
    .button.hollow.warning {
      border: 1px solid #ffae00;
      color: #ffae00; }
      .button.hollow.warning:hover, .button.hollow.warning:focus {
        border-color: #805700;
        color: #805700; }
    .button.hollow.alert {
      border: 1px solid #ec5840;
      color: #ec5840; }
      .button.hollow.alert:hover, .button.hollow.alert:focus {
        border-color: #881f0e;
        color: #881f0e; }
  .button.disabled, .button[disabled] {
    opacity: 0.25;
    cursor: not-allowed; }
  .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: 19.9375em) {
  .hide-for-small-only {
    display: none !important; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 120em) and (max-width: 159.9375em) {
  .hide-for-hdlarge-only {
    display: none !important; } }

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

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

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

@media screen and (min-width: 160em) and (max-width: 255.9375em) {
  .hide-for-hdxlarge-only {
    display: none !important; } }

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

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

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

@media screen and (min-width: 256em) and (max-width: 319.9375em) {
  .hide-for-hdfourk-only {
    display: none !important; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

.clearfix::after {
  clear: both; }

.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: #2199e8;
  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 &gt; .accordion-title::before {
    content: '–'; }

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

.is-accordion-submenu-parent &gt; a {
  position: relative; }
  .is-accordion-submenu-parent &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    border-color: #2199e8 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'] &gt; 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: #2199e8;
  color: #fefefe; }
  .badge.secondary {
    background: #777;
    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: #2199e8; }
    .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: 50%;
      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: 33.33333%;
      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: 25%;
      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: 20%;
      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: 16.66667%;
      margin-right: 1px; }
  .button-group.primary .button {
    background-color: #2199e8;
    color: #fefefe; }
    .button-group.primary .button:hover, .button-group.primary .button:focus {
      background-color: #147cc0;
      color: #fefefe; }
  .button-group.secondary .button {
    background-color: #777;
    color: #fefefe; }
    .button-group.secondary .button:hover, .button-group.secondary .button:focus {
      background-color: #5f5f5f;
      color: #fefefe; }
  .button-group.success .button {
    background-color: #3adb76;
    color: #fefefe; }
    .button-group.success .button:hover, .button-group.success .button:focus {
      background-color: #22bb5b;
      color: #fefefe; }
  .button-group.warning .button {
    background-color: #ffae00;
    color: #fefefe; }
    .button-group.warning .button:hover, .button-group.warning .button:focus {
      background-color: #cc8b00;
      color: #fefefe; }
  .button-group.alert .button {
    background-color: #ec5840;
    color: #fefefe; }
    .button-group.alert .button:hover, .button-group.alert .button:focus {
      background-color: #da3116;
      color: #fefefe; }
  .button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
    width: 100%;
    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 #fefefe; }
  @media screen and (min-width: 40em) {
    .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: 64em) {
    .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: 19.9375em) {
    .button-group.stacked-for-small.expanded {
      display: block; }
      .button-group.stacked-for-small.expanded .button {
        display: block;
        margin-right: 0; } }

.callout {
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(10, 10, 10, 0.25);
  border-radius: 0;
  position: relative;
  color: #0a0a0a;
  background-color: white; }
  .callout &gt; :first-child {
    margin-top: 0; }
  .callout &gt; :last-child {
    margin-bottom: 0; }
  .callout.primary {
    background-color: #def0fc; }
  .callout.secondary {
    background-color: #ebebeb; }
  .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 &gt; a {
  position: relative; }
  .is-drilldown-submenu-parent &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    border-color: transparent transparent transparent #2199e8;
    border-left-style: solid;
    border-right-width: 0;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: 1rem; }

.js-drilldown-back &gt; a::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  border-color: transparent #2199e8 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: #fefefe;
  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 &gt; li.opens-left &gt; .is-dropdown-submenu {
  left: auto;
  right: 0;
  top: 100%; }

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

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

.dropdown.menu &gt; li.is-dropdown-submenu-parent &gt; a::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: #2199e8 transparent transparent;
  border-top-style: solid;
  border-bottom-width: 0;
  right: 5px;
  margin-top: -2px; }

[data-whatinput='mouse'] .dropdown.menu a {
  outline: 0; }

.no-js .dropdown.menu ul {
  display: none; }

.dropdown.menu.vertical &gt; li .is-dropdown-submenu {
  top: 0; }

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

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

.dropdown.menu.vertical &gt; li &gt; a::after {
  right: 14px;
  margin-top: -3px; }

.dropdown.menu.vertical &gt; li.opens-left &gt; a::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent #2199e8 transparent transparent;
  border-right-style: solid;
  border-left-width: 0; }

.dropdown.menu.vertical &gt; li.opens-right &gt; a::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent transparent transparent #2199e8;
  border-left-style: solid;
  border-right-width: 0; }

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

@media screen and (min-width: 48em) {
  .dropdown.menu.medium_to_large-horizontal &gt; li.opens-left &gt; .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%; }
  .dropdown.menu.medium_to_large-horizontal &gt; li.opens-right &gt; .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%; }
  .dropdown.menu.medium_to_large-horizontal &gt; li.is-dropdown-submenu-parent &gt; a {
    padding-right: 1.5rem;
    position: relative; }
  .dropdown.menu.medium_to_large-horizontal &gt; li.is-dropdown-submenu-parent &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #2199e8 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px; }
  .dropdown.menu.medium_to_large-vertical &gt; li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.medium_to_large-vertical &gt; li.opens-left .is-dropdown-submenu {
    left: auto;
    right: 100%; }
  .dropdown.menu.medium_to_large-vertical &gt; li.opens-right .is-dropdown-submenu {
    right: auto;
    left: 100%; }
  .dropdown.menu.medium_to_large-vertical &gt; li &gt; a::after {
    right: 14px;
    margin-top: -3px; }
  .dropdown.menu.medium_to_large-vertical &gt; li.opens-left &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #2199e8 transparent transparent;
    border-right-style: solid;
    border-left-width: 0; }
  .dropdown.menu.medium_to_large-vertical &gt; li.opens-right &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #2199e8;
    border-left-style: solid;
    border-right-width: 0; } }

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

@media screen and (min-width: 75em) {
  .dropdown.menu.xlarge-horizontal &gt; li.opens-left &gt; .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%; }
  .dropdown.menu.xlarge-horizontal &gt; li.opens-right &gt; .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%; }
  .dropdown.menu.xlarge-horizontal &gt; li.is-dropdown-submenu-parent &gt; a {
    padding-right: 1.5rem;
    position: relative; }
  .dropdown.menu.xlarge-horizontal &gt; li.is-dropdown-submenu-parent &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #2199e8 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px; }
  .dropdown.menu.xlarge-vertical &gt; li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.xlarge-vertical &gt; li.opens-left .is-dropdown-submenu {
    left: auto;
    right: 100%; }
  .dropdown.menu.xlarge-vertical &gt; li.opens-right .is-dropdown-submenu {
    right: auto;
    left: 100%; }
  .dropdown.menu.xlarge-vertical &gt; li &gt; a::after {
    right: 14px;
    margin-top: -3px; }
  .dropdown.menu.xlarge-vertical &gt; li.opens-left &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #2199e8 transparent transparent;
    border-right-style: solid;
    border-left-width: 0; }
  .dropdown.menu.xlarge-vertical &gt; li.opens-right &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #2199e8;
    border-left-style: solid;
    border-right-width: 0; } }

@media screen and (min-width: 90em) {
  .dropdown.menu.xxlarge-horizontal &gt; li.opens-left &gt; .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%; }
  .dropdown.menu.xxlarge-horizontal &gt; li.opens-right &gt; .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%; }
  .dropdown.menu.xxlarge-horizontal &gt; li.is-dropdown-submenu-parent &gt; a {
    padding-right: 1.5rem;
    position: relative; }
  .dropdown.menu.xxlarge-horizontal &gt; li.is-dropdown-submenu-parent &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #2199e8 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px; }
  .dropdown.menu.xxlarge-vertical &gt; li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.xxlarge-vertical &gt; li.opens-left .is-dropdown-submenu {
    left: auto;
    right: 100%; }
  .dropdown.menu.xxlarge-vertical &gt; li.opens-right .is-dropdown-submenu {
    right: auto;
    left: 100%; }
  .dropdown.menu.xxlarge-vertical &gt; li &gt; a::after {
    right: 14px;
    margin-top: -3px; }
  .dropdown.menu.xxlarge-vertical &gt; li.opens-left &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #2199e8 transparent transparent;
    border-right-style: solid;
    border-left-width: 0; }
  .dropdown.menu.xxlarge-vertical &gt; li.opens-right &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #2199e8;
    border-left-style: solid;
    border-right-width: 0; } }

@media screen and (min-width: 120em) {
  .dropdown.menu.hdlarge-horizontal &gt; li.opens-left &gt; .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%; }
  .dropdown.menu.hdlarge-horizontal &gt; li.opens-right &gt; .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%; }
  .dropdown.menu.hdlarge-horizontal &gt; li.is-dropdown-submenu-parent &gt; a {
    padding-right: 1.5rem;
    position: relative; }
  .dropdown.menu.hdlarge-horizontal &gt; li.is-dropdown-submenu-parent &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #2199e8 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px; }
  .dropdown.menu.hdlarge-vertical &gt; li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.hdlarge-vertical &gt; li.opens-left .is-dropdown-submenu {
    left: auto;
    right: 100%; }
  .dropdown.menu.hdlarge-vertical &gt; li.opens-right .is-dropdown-submenu {
    right: auto;
    left: 100%; }
  .dropdown.menu.hdlarge-vertical &gt; li &gt; a::after {
    right: 14px;
    margin-top: -3px; }
  .dropdown.menu.hdlarge-vertical &gt; li.opens-left &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #2199e8 transparent transparent;
    border-right-style: solid;
    border-left-width: 0; }
  .dropdown.menu.hdlarge-vertical &gt; li.opens-right &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #2199e8;
    border-left-style: solid;
    border-right-width: 0; } }

@media screen and (min-width: 160em) {
  .dropdown.menu.hdxlarge-horizontal &gt; li.opens-left &gt; .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%; }
  .dropdown.menu.hdxlarge-horizontal &gt; li.opens-right &gt; .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%; }
  .dropdown.menu.hdxlarge-horizontal &gt; li.is-dropdown-submenu-parent &gt; a {
    padding-right: 1.5rem;
    position: relative; }
  .dropdown.menu.hdxlarge-horizontal &gt; li.is-dropdown-submenu-parent &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #2199e8 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px; }
  .dropdown.menu.hdxlarge-vertical &gt; li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.hdxlarge-vertical &gt; li.opens-left .is-dropdown-submenu {
    left: auto;
    right: 100%; }
  .dropdown.menu.hdxlarge-vertical &gt; li.opens-right .is-dropdown-submenu {
    right: auto;
    left: 100%; }
  .dropdown.menu.hdxlarge-vertical &gt; li &gt; a::after {
    right: 14px;
    margin-top: -3px; }
  .dropdown.menu.hdxlarge-vertical &gt; li.opens-left &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #2199e8 transparent transparent;
    border-right-style: solid;
    border-left-width: 0; }
  .dropdown.menu.hdxlarge-vertical &gt; li.opens-right &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #2199e8;
    border-left-style: solid;
    border-right-width: 0; } }

@media screen and (min-width: 256em) {
  .dropdown.menu.hdfourk-horizontal &gt; li.opens-left &gt; .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%; }
  .dropdown.menu.hdfourk-horizontal &gt; li.opens-right &gt; .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%; }
  .dropdown.menu.hdfourk-horizontal &gt; li.is-dropdown-submenu-parent &gt; a {
    padding-right: 1.5rem;
    position: relative; }
  .dropdown.menu.hdfourk-horizontal &gt; li.is-dropdown-submenu-parent &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #2199e8 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px; }
  .dropdown.menu.hdfourk-vertical &gt; li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.hdfourk-vertical &gt; li.opens-left .is-dropdown-submenu {
    left: auto;
    right: 100%; }
  .dropdown.menu.hdfourk-vertical &gt; li.opens-right .is-dropdown-submenu {
    right: auto;
    left: 100%; }
  .dropdown.menu.hdfourk-vertical &gt; li &gt; a::after {
    right: 14px;
    margin-top: -3px; }
  .dropdown.menu.hdfourk-vertical &gt; li.opens-left &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #2199e8 transparent transparent;
    border-right-style: solid;
    border-left-width: 0; }
  .dropdown.menu.hdfourk-vertical &gt; li.opens-right &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #2199e8;
    border-left-style: solid;
    border-right-width: 0; } }

@media screen and (min-width: 320em) {
  .dropdown.menu.hdfivek-horizontal &gt; li.opens-left &gt; .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%; }
  .dropdown.menu.hdfivek-horizontal &gt; li.opens-right &gt; .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%; }
  .dropdown.menu.hdfivek-horizontal &gt; li.is-dropdown-submenu-parent &gt; a {
    padding-right: 1.5rem;
    position: relative; }
  .dropdown.menu.hdfivek-horizontal &gt; li.is-dropdown-submenu-parent &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #2199e8 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px; }
  .dropdown.menu.hdfivek-vertical &gt; li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.hdfivek-vertical &gt; li.opens-left .is-dropdown-submenu {
    left: auto;
    right: 100%; }
  .dropdown.menu.hdfivek-vertical &gt; li.opens-right .is-dropdown-submenu {
    right: auto;
    left: 100%; }
  .dropdown.menu.hdfivek-vertical &gt; li &gt; a::after {
    right: 14px;
    margin-top: -3px; }
  .dropdown.menu.hdfivek-vertical &gt; li.opens-left &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #2199e8 transparent transparent;
    border-right-style: solid;
    border-left-width: 0; }
  .dropdown.menu.hdfivek-vertical &gt; li.opens-right &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #2199e8;
    border-left-style: solid;
    border-right-width: 0; } }

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

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

.is-dropdown-submenu-parent {
  position: relative; }
  .is-dropdown-submenu-parent a::after {
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -2px; }
  .is-dropdown-submenu-parent.opens-inner .is-dropdown-submenu {
    top: 100%; }
  .is-dropdown-submenu-parent.opens-left .is-dropdown-submenu {
    left: auto;
    right: 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-parent &gt; a::after {
    right: 14px;
    margin-top: -3px; }
  .is-dropdown-submenu .is-dropdown-submenu-parent.opens-left &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #2199e8 transparent transparent;
    border-right-style: solid;
    border-left-width: 0; }
  .is-dropdown-submenu .is-dropdown-submenu-parent.opens-right &gt; a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #2199e8;
    border-left-style: solid;
    border-right-width: 0; }
  .is-dropdown-submenu .is-dropdown-submenu {
    margin-top: -1px; }
  .is-dropdown-submenu &gt; li {
    width: 100%; }
  .is-dropdown-submenu:not(.js-dropdown-nohover) &gt; .is-dropdown-submenu-parent:hover &gt; .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: #2199e8;
  color: #fefefe; }
  .label.secondary {
    background: #777;
    color: #fefefe; }
  .label.success {
    background: #3adb76;
    color: #fefefe; }
  .label.warning {
    background: #ffae00;
    color: #fefefe; }
  .label.alert {
    background: #ec5840;
    color: #fefefe; }

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

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

.menu {
  margin: 0;
  list-style-type: none; }
  .menu &gt; li {
    display: table-cell;
    vertical-align: middle; }
    [data-whatinput='mouse'] .menu &gt; li {
      outline: 0; }
  .menu &gt; li &gt; a {
    display: block;
    padding: 0.7rem 1rem;
    line-height: 1; }
  .menu input,
  .menu a,
  .menu button {
    margin-bottom: 0; }
  .menu &gt; li &gt; a img,
  .menu &gt; li &gt; a i {
    vertical-align: middle; }
  .menu &gt; li &gt; a i + span,
  .menu &gt; li &gt; a img + span {
    vertical-align: middle; }
  .menu &gt; li &gt; a img,
  .menu &gt; li &gt; a i {
    margin-right: 0.25rem;
    display: inline-block; }
  .menu &gt; li {
    display: table-cell; }
  .menu.vertical &gt; li {
    display: block; }
  @media screen and (min-width: 40em) {
    .menu.medium-horizontal &gt; li {
      display: table-cell; }
    .menu.medium-vertical &gt; li {
      display: block; } }
  @media screen and (min-width: 48em) {
    .menu.medium_to_large-horizontal &gt; li {
      display: table-cell; }
    .menu.medium_to_large-vertical &gt; li {
      display: block; } }
  @media screen and (min-width: 64em) {
    .menu.large-horizontal &gt; li {
      display: table-cell; }
    .menu.large-vertical &gt; li {
      display: block; } }
  @media screen and (min-width: 75em) {
    .menu.xlarge-horizontal &gt; li {
      display: table-cell; }
    .menu.xlarge-vertical &gt; li {
      display: block; } }
  @media screen and (min-width: 90em) {
    .menu.xxlarge-horizontal &gt; li {
      display: table-cell; }
    .menu.xxlarge-vertical &gt; li {
      display: block; } }
  @media screen and (min-width: 120em) {
    .menu.hdlarge-horizontal &gt; li {
      display: table-cell; }
    .menu.hdlarge-vertical &gt; li {
      display: block; } }
  @media screen and (min-width: 160em) {
    .menu.hdxlarge-horizontal &gt; li {
      display: table-cell; }
    .menu.hdxlarge-vertical &gt; li {
      display: block; } }
  @media screen and (min-width: 256em) {
    .menu.hdfourk-horizontal &gt; li {
      display: table-cell; }
    .menu.hdfourk-vertical &gt; li {
      display: block; } }
  @media screen and (min-width: 320em) {
    .menu.hdfivek-horizontal &gt; li {
      display: table-cell; }
    .menu.hdfivek-vertical &gt; 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 &gt; li {
    float: right; }
  .menu.expanded {
    width: 100%;
    display: table;
    table-layout: fixed; }
    .menu.expanded &gt; li:first-child:last-child {
      width: 100%; }
  .menu.icon-top &gt; li &gt; a {
    text-align: center; }
    .menu.icon-top &gt; li &gt; a img,
    .menu.icon-top &gt; li &gt; a i {
      display: block;
      margin: 0 auto 0.25rem; }
  .menu.nested {
    margin-left: 1rem; }
  .menu .active &gt; a {
    color: #fefefe;
    background: #2199e8; }

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

.menu-centered {
  text-align: center; }
  .menu-centered &gt; .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;
  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: #fefefe;
  transition: transform 0.5s ease;
  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: #e6e6e6;
  z-index: -1;
  max-height: 100%;
  overflow-y: auto;
  transform: translateX(0); }
  [data-whatinput='mouse'] .off-canvas {
    outline: 0; }
  .off-canvas.position-left {
    left: -250px;
    top: 0;
    width: 250px; }
    .is-open-left {
      transform: translateX(250px); }
  .off-canvas.position-right {
    right: -250px;
    top: 0;
    width: 250px; }
    .is-open-right {
      transform: translateX(-250px); }

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

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

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

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

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

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

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

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

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

.orbit {
  position: relative; }

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

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

.orbit-figure {
  margin: 0; }

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

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

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

.orbit-previous {
  left: 0; }

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

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

.pagination {
  margin-left: 0;
  margin-bottom: 1rem; }
  .pagination::before, .pagination::after {
    content: ' ';
    display: table; }
  .pagination::after {
    clear: both; }
  .pagination li {
    font-size: 0.875rem;
    margin-right: 0.0625rem;
    border-radius: 0;
    display: none; }
    .pagination li:last-child, .pagination li:first-child {
      display: inline-block; }
    @media screen and (min-width: 40em) {
      .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: #2199e8;
    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: '\2026';
    padding: 0.1875rem 0.625rem;
    color: #0a0a0a; }

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

.pagination-next a::after,
.pagination-next.disabled::after {
  content: '\00bb';
  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: #2199e8; }
  .progress.secondary .progress-meter {
    background-color: #777; }
  .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: #2199e8; }

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

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

.slider-handle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  background-color: #2199e8;
  transition: all 0.2s ease-in-out;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  border-radius: 0; }
  [data-whatinput='mouse'] .slider-handle {
    outline: 0; }
  .slider-handle:hover {
    background-color: #1583cc; }
  .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: 40em) {
    .reveal {
      min-height: 0; } }
  .reveal .column, .reveal .columns,
  .reveal .columns {
    min-width: 0; }
  .reveal &gt; :last-child {
    margin-bottom: 0; }
  @media screen and (min-width: 40em) {
    .reveal {
      width: 600px;
      max-width: 75rem; } }
  @media screen and (min-width: 40em) {
    .reveal .reveal {
      left: auto;
      right: auto;
      margin: 0 auto; } }
  .reveal.collapse {
    padding: 0; }
  @media screen and (min-width: 40em) {
    .reveal.tiny {
      width: 30%;
      max-width: 75rem; } }
  @media screen and (min-width: 40em) {
    .reveal.small {
      width: 50%;
      max-width: 75rem; } }
  @media screen and (min-width: 40em) {
    .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: 19.9375em) {
    .reveal {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      height: 100vh;
      min-height: 100vh;
      max-width: none;
      margin-left: 0;
      border: 0;
      border-radius: 0; } }
  .reveal.without-overlay {
    position: fixed; }

.switch {
  margin-bottom: 1rem;
  outline: 0;
  position: relative;
  -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: #2199e8; }
    input:checked ~ .switch-paddle::after {
      left: 2.25rem; }
  [data-whatinput='mouse'] input:focus ~ .switch-paddle {
    outline: 0; }

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

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

.switch-inactive {
  right: 15%; }
  input:checked + label &gt; .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; }
  table thead,
  table tbody,
  table tfoot {
    border: 1px solid #f1f1f1;
    background-color: #fefefe; }
  table caption {
    font-weight: bold;
    padding: 0.5rem 0.625rem 0.625rem; }
  table thead,
  table tfoot {
    background: #f8f8f8;
    color: #0a0a0a; }
    table thead tr,
    table tfoot tr {
      background: transparent; }
    table thead th,
    table thead td,
    table tfoot th,
    table tfoot td {
      padding: 0.5rem 0.625rem 0.625rem;
      font-weight: bold;
      text-align: left; }
  table tbody tr:nth-child(even) {
    background-color: #f1f1f1; }
  table tbody th,
  table tbody td {
    padding: 0.5rem 0.625rem 0.625rem; }

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

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

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

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

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

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

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

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

.tabs.primary {
  background: #2199e8; }
  .tabs.primary &gt; li &gt; a {
    color: #fefefe; }
    .tabs.primary &gt; li &gt; a:hover, .tabs.primary &gt; li &gt; a:focus {
      background: #1893e4; }

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

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

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

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

.thumbnail {
  border: solid 4px #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(33, 153, 232, 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: 0rem; }
  .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: 40em) {
    .top-bar .top-bar-left,
    .top-bar .top-bar-right {
      width: auto; } }
  @media screen and (max-width: 47.9375em) {
    .top-bar.stacked-for-medium .top-bar-left,
    .top-bar.stacked-for-medium .top-bar-right {
      width: 100%; } }
  @media screen and (max-width: 63.9375em) {
    .top-bar.stacked-for-medium_to_large .top-bar-left,
    .top-bar.stacked-for-medium_to_large .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%; } }
  @media screen and (max-width: 89.9375em) {
    .top-bar.stacked-for-xlarge .top-bar-left,
    .top-bar.stacked-for-xlarge .top-bar-right {
      width: 100%; } }
  @media screen and (max-width: 119.9375em) {
    .top-bar.stacked-for-xxlarge .top-bar-left,
    .top-bar.stacked-for-xxlarge .top-bar-right {
      width: 100%; } }
  @media screen and (max-width: 159.9375em) {
    .top-bar.stacked-for-hdlarge .top-bar-left,
    .top-bar.stacked-for-hdlarge .top-bar-right {
      width: 100%; } }
  @media screen and (max-width: 255.9375em) {
    .top-bar.stacked-for-hdxlarge .top-bar-left,
    .top-bar.stacked-for-hdxlarge .top-bar-right {
      width: 100%; } }
  @media screen and (max-width: 319.9375em) {
    .top-bar.stacked-for-hdfourk .top-bar-left,
    .top-bar.stacked-for-hdfourk .top-bar-right {
      width: 100%; } }
  .top-bar.stacked-for-hdfivek .top-bar-left,
  .top-bar.stacked-for-hdfivek .top-bar-right {
    width: 100%; }

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

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

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

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

Stylesheet: Main Stylesheet

*************************************************/
/*********************
GENERAL STYLES
*********************/
body {
  background: #fff;
  font-family: 'Raleway', sans-serif; }

.off-canvas-wrapper {
  border: 20px solid #fff;
  background: #e1e2e5; }
  .off-canvas-wrapper .off-canvas {
    background: #e1e2e5; }
    .off-canvas-wrapper .off-canvas .menu &gt; li &gt; a {
      color: #111;
      text-transform: uppercase;
      font-weight: 600; }
    .off-canvas-wrapper .off-canvas .menu .is-accordion-submenu-parent &gt; a::after {
      border: inset 8px;
      border-color: #111 transparent transparent;
      margin-top: -7px; }
    .off-canvas-wrapper .off-canvas .menu .is-accordion-submenu-parent[aria-expanded='true'] &gt; a::after {
      transform-origin: 50% 29%; }
    .off-canvas-wrapper .off-canvas .menu .is-accordion-submenu {
      background: rgba(245, 207, 91, 0.95); }
  .off-canvas-wrapper .off-canvas-content, .off-canvas-wrapper .off-canvas-content {
    background: #fff; }

.positionrelative {
  position: relative; }

.clearboth {
  clear: both; }

.vc_row-o-equal-height.vc_row-o-content-middle .column, .vc_row-o-equal-height.vc_row-o-content-middle .columns {
  display: flex;
  -webkit-flex-wrap: wrap;
  display: -ms-flexbox; }
  .vc_row-o-equal-height.vc_row-o-content-middle .column .vc_column-inner, .vc_row-o-equal-height.vc_row-o-content-middle .columns .vc_column-inner {
    display: flex;
    -webkit-flex-wrap: wrap;
    display: -ms-flexbox;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%; }

.vc_row-o-equal-height.vc_row-o-content-middle .columns {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  display: -ms-flexbox; }

.vc_row.vc_row-flex {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  display: -ms-flexbox; }
  .vc_row.vc_row-flex &gt; .vc_column_container {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    display: -ms-flexbox; }

/*********************
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, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  font-family: 'Raleway', sans-serif; }
  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 {
  position: relative;
  z-index: 2; }
  .header ul.off-canvas-list li {
    list-style: none; }

.page-template-template-rest-website .feat_img {
  height: 532px; }
  .page-template-template-rest-website .feat_img .breadcrumbs {
    float: right;
    font-weight: 600; }
    .page-template-template-rest-website .feat_img .breadcrumbs li {
      color: #212B44;
      font-size: 15px;
      text-transform: capitalize; }
      .page-template-template-rest-website .feat_img .breadcrumbs li.item-home {
        display: none; }
      .page-template-template-rest-website .feat_img .breadcrumbs li.separator {
        display: none; }
      .page-template-template-rest-website .feat_img .breadcrumbs li:not(.last-child)::after {
        color: #212B44;
        margin: 0 0.25rem;
        top: 0px; }
    .page-template-template-rest-website .feat_img .breadcrumbs a {
      color: #212B44; }

/*********************
NAVIGATION STYLES
*********************/
.top-bar {
  background: transparent; }
  .top-bar .title-area {
    z-index: 1; }
  .top-bar ul {
    background: rgba(225, 225, 225, 0.5);
    text-align: center; }
    .top-bar ul li {
      padding: 19px;
      text-transform: uppercase;
      font-weight: 600;
      font-size: 14pt;
      display: inline-block !important;
      margin: 0 -2px;
      transition: background 0.5s linear; }
      .top-bar ul li a {
        color: #111111;
        padding: 0; }
      .top-bar ul li.active a {
        background: transparent;
        color: #111111; }
      .top-bar ul li ul {
        position: absolute;
        left: 0;
        top: 56px !important;
        z-index: 4;
        max-height: 0;
        overflow: hidden;
        -webkit-transform: perspective(400) rotate3d(1, 0, 0, -90deg);
        -webkit-transform-origin: 50% 0;
        transition: 350ms; }
      .top-bar ul li:hover ul {
        max-height: 1000px;
        -webkit-transform: perspective(400) rotate3d(0, 0, 0, 0); }
  .top-bar .top-bar-up {
    width: 100%;
    margin: 0 auto;
    text-align: center; }
    .top-bar .top-bar-up img.logo {
      padding-top: 20px;
      padding-bottom: 20px; }
  .top-bar .top-bar-middle {
    width: 100%;
    float: left;
    transition: position 500ms linear; }
    .top-bar .top-bar-middle.fixed {
      position: fixed;
      width: 100%;
      top: 0;
      left: 0; }
      .top-bar .top-bar-middle.fixed ul {
        background: rgba(225, 225, 225, 0.95);
        transition: background 500ms linear; }
  .top-bar .container-menu-mobile {
    height: 67px;
    float: right;
    width: 100%; }
    .top-bar .container-menu-mobile .top-bar-right.fixed {
      position: fixed;
      width: 100%;
      top: 0;
      left: 0; }
      .top-bar .container-menu-mobile .top-bar-right.fixed ul {
        background: rgba(225, 225, 225, 0.95);
        transition: background 500ms linear; }
    .top-bar .container-menu-mobile .menu-icon {
      height: 19px; }
      .top-bar .container-menu-mobile .menu-icon::after {
        background: #111;
        box-shadow: 0 7px 0 #111, 0 14px 0 #111; }

.dropdown.menu.medium-horizontal &gt; li.is-dropdown-submenu-parent {
  position: relative;
  /* &amp;:hover {
			.is-dropdown-submenu {
				visibility: visible; 
  				opacity: 1;
  				z-index: 1;
  				transform: translateY(0%);
  				transition-delay: 0s, 0s, 0.3s; 

			}
		}*/ }
  .dropdown.menu.medium-horizontal &gt; li.is-dropdown-submenu-parent &gt; a {
    padding-right: 0px; }
    .dropdown.menu.medium-horizontal &gt; li.is-dropdown-submenu-parent &gt; a::after {
      display: none !important; }

.dropdown.menu.medium-horizontal &gt; li.active {
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.5s linear; }

.dropdown.menu.medium-horizontal li:hover {
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.5s linear; }

.dropdown.menu.medium-horizontal .is-dropdown-submenu {
  background: rgba(245, 207, 91, 0.95);
  border: 0;
  min-width: 180px;
  display: initial;
  /* visibility: hidden; 
  		opacity: 0;
  		position: absolute;
  		top: 100%;
  		left: 0;
  		width: 100%;
  		transform: translateY(-2em);
  		z-index: -1;
  		transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;*/ }

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

.js-off-canvas-exit {
  z-index: 3;
  background: rgba(254, 254, 254, 0.6); }

.page-template.page-template-template-rest-website-w-h .top-bar ul {
  background: rgba(225, 225, 225, 0.75); }

/*********************
PAGE &amp; CONTENT STYLES
*********************/
.feat_img {
  z-index: 1 !important;
  top: -255px;
  margin-bottom: -255px;
  float: none;
  position: relative;
  height: 717px;
  margin-left: 0px !important;
  margin-right: 0px !important; }
  .feat_img .slogan-header {
    padding-top: 13rem; }
    .feat_img .slogan-header h1 {
      line-height: 51pt;
      font-size: 44pt;
      font-weight: 700;
      color: #212b44; }
    .feat_img .slogan-header p {
      margin-top: -17px;
      font-size: 27px;
      margin-bottom: 0;
      line-height: 30px; }

#content #inner-content {
  padding: 1.5rem 0rem; }

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

/*********************
HOMEPAGE ROWS STYLE WITH VISUAL COMPOSER
*********************/
.row-without-padding-side {
  max-width: 100%;
  margin-left: 0px !important;
  margin-right: 0px !important; }
  .row-without-padding-side .column, .row-without-padding-side .columns {
    padding-left: 0.9375rem;
    padding-right: 0.625rem; }
    .row-without-padding-side .column:last-child, .row-without-padding-side .columns:last-child {
      padding-right: 1rem;
      float: left; }
  .row-without-padding-side h2 {
    font-size: 20pt;
    text-transform: uppercase;
    line-height: 26pt;
    color: #fff;
    font-weight: 600;
    padding-bottom: 25%; }
  .row-without-padding-side .kirby-brown-img {
    margin-left: -20px;
    margin-top: 0px;
    position: relative;
    overflow: hidden; }
    .row-without-padding-side .kirby-brown-img .title-image-kirby {
      position: absolute;
      bottom: 8%;
      left: 0; }
    .row-without-padding-side .kirby-brown-img h3 {
      z-index: 1;
      line-height: 19pt;
      padding: 10px;
      font-weight: 700;
      text-transform: Capitalize;
      background: #488feb;
      font-size: 23pt;
      width: 207px;
      color: #fff;
      padding-left: 20px !important; }
    .row-without-padding-side .kirby-brown-img .kirby-brown-image {
      margin-left: -20px;
      margin-top: 8%;
      position: absolute;
      bottom: 0; }
  .row-without-padding-side .featured-articles {
    color: #444;
    padding: 20px 0px 0px 40px !important; }
    .row-without-padding-side .featured-articles h3 {
      font-weight: 600;
      font-size: 1.8rem;
      margin: 0;
      padding-top: 1rem;
      padding-bottom: 1.5rem;
      text-transform: uppercase;
      text-align: center; }
    .row-without-padding-side .featured-articles .vc_column-inner {
      width: 109%; }
    .row-without-padding-side .featured-articles .vc_btn3-color-orange {
      background-color: #de7825 !important; }
    .row-without-padding-side .featured-articles .vc_btn3.vc_btn3-size-lg {
      font-size: 58px;
      padding: 20px 5px;
      line-height: 62px; }
    .row-without-padding-side .featured-articles .vc_gitem-zone-a .vc_gitem-row-position-middle, .row-without-padding-side .featured-articles .vc_gitem-zone-b .vc_gitem-row-position-middle {
      top: 25px;
      transform: none; }
  .row-without-padding-side .vc_gitem-post-data-source-post_date {
    color: #de7825;
    font-size: 13pt;
    font-weight: 600; }
  .row-without-padding-side .vc_gitem-post-category-name {
    color: #de7825;
    font-size: 11pt;
    text-transform: uppercase; }
  .row-without-padding-side .vc_gitem-post-data-source-post_title {
    font-size: 13pt;
    font-weight: 600;
    text-transform: uppercase; }
  .row-without-padding-side .vc_gitem-post-data.vc_gitem-post-data-source-post_categories {
    text-align: right !important; }

.row {
  max-width: 100%; }
  .row .row {
    margin-left: -3rem !important;
    margin-right: -3rem !important; }
  .row .vc_col-has-fill &gt; .vc_column-inner {
    padding-top: 30px;
    padding-right: 13px;
    padding-left: 20px;
    position: relative;
    width: 100%; }
    .row .vc_col-has-fill &gt; .vc_column-inner:before {
      position: absolute;
      content: " ";
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: block;
      z-index: 0; }
    .row .vc_col-has-fill &gt; .vc_column-inner .wpb_wrapper {
      position: relative; }
      .row .vc_col-has-fill &gt; .vc_column-inner .wpb_wrapper .vc_btn3-container.vc_btn3-inline {
        float: right;
        text-transform: uppercase; }
        .row .vc_col-has-fill &gt; .vc_column-inner .wpb_wrapper .vc_btn3-container.vc_btn3-inline a {
          font-weight: 600;
          font-size: 16px; }
          .row .vc_col-has-fill &gt; .vc_column-inner .wpb_wrapper .vc_btn3-container.vc_btn3-inline a:after {
            content: "&gt;";
            display: inline-block;
            position: relative;
            margin-left: 5px;
            display: inline-block;
            font-weight: 600;
            font-size: 16px;
            color: #fff; }
  .row .blue.vc_col-has-fill &gt; .vc_column-inner:before {
    background-color: rgba(66, 145, 228, 0.8); }
  .row .orange.vc_col-has-fill &gt; .vc_column-inner:before {
    background-color: rgba(222, 120, 37, 0.8); }
  .row .grey.vc_col-has-fill &gt; .vc_column-inner:before {
    background-color: rgba(68, 68, 68, 0.6); }
  .row .clean-blue.column, .row .clean-blue.columns {
    text-align: center;
    color: #444;
    margin-left: -2.35rem;
    background-color: #D5E5F9;
    padding: 20px 45px 0px;
    width: 37%;
    z-index: 1; }
    .row .clean-blue.column .vc_btn3-container.vc_btn3-inline, .row .clean-blue.columns .vc_btn3-container.vc_btn3-inline {
      float: none;
      text-transform: uppercase;
      margin-bottom: 0px; }
      .row .clean-blue.column .vc_btn3-container.vc_btn3-inline a, .row .clean-blue.columns .vc_btn3-container.vc_btn3-inline a {
        font-weight: 600;
        font-size: 16px; }
    .row .clean-blue.column h3, .row .clean-blue.columns h3 {
      font-weight: 600;
      font-size: 1.8rem;
      margin: 0;
      padding-top: 1rem;
      padding-bottom: 1.5rem; }
    .row .clean-blue.column p, .row .clean-blue.columns p {
      font-size: 13pt;
      padding-bottom: 1rem; }
      .row .clean-blue.column p:last-child, .row .clean-blue.columns p:last-child {
        margin-bottom: 1rem !important; }
  .row .wpb_content_element {
    margin-bottom: 0px; }

.newsletter {
  max-width: 102.5%;
  background-color: #F4D03E; }
  .newsletter .gform_wrapper {
    max-width: 100%; }
    .newsletter .gform_wrapper ul li.gfield {
      clear: none;
      padding-left: 0.46875rem;
      padding-right: 0.46875rem;
      margin-top: 0px; }
      .newsletter .gform_wrapper ul li.gfield:first-child {
        padding-left: 0rem;
        text-align: right;
        font-weight: 600;
        color: #444; }
      .newsletter .gform_wrapper ul li.gfield:last-child {
        float: left;
        width: 37%; }
      .newsletter .gform_wrapper ul li.gfield .ginput_container {
        margin-top: 0em; }
    .newsletter .gform_wrapper form {
      text-align: center; }
    .newsletter .gform_wrapper input[type=text] {
      margin: 0 0 0rem;
      color: rgba(68, 68, 68, 0.5);
      border: 0px;
      height: 51px;
      text-transform: uppercase; }
    .newsletter .gform_wrapper .gfield_label {
      display: none !important; }
  .newsletter .gform_footer.top_label {
    display: inline;
    margin: 1em 4em 0 0; }
    .newsletter .gform_footer.top_label .button {
      font-size: 18px;
      font-weight: 600;
      background: #444444;
      text-transform: uppercase;
      margin: 0;
      height: 51px;
      line-height: 21px !important; }

/*******************
ROWS ABOUT US PAGES STYLE AND STRUCTURES
********************/
.page-template-template-rest-website {
  /******************* changed tabs who we are the are old ones
	.tabs-who-we-are {
		.vc_tta-tabs-container {
			.vc_tta-tabs-list {
				li {
					width: 49%;
					margin-right: 2%;

			    		&amp;:first-child a{
			    			background: #D87C00;
			    		}

			    		&amp;:last-child {
			    			margin-right: 0%;
			    			a {
			    			background: #F4D03E;
			    			}
			    		}	
			     	a {
			     		color: #fff;
			     		padding: 0px 20px;
			     		font-size: 45px;
			     		text-transform: uppercase;
			     		font-weight: 600;
			     		text-align: center;
			     	}
			    }
			}
		}

		.vc_tta-panels-container {
			.vc_tta-panel-body {
				padding:20px;
				.vc_row {
					margin-left: 0rem !important;
	    			margin-right: 0rem !important;
				}

				.biography {
					padding: 2rem;
					color: #fff;
					min-height: 419px;

					.wpb_wrapper {
						position:relative;
					}

					.name {
						margin-bottom: 1.5rem;
						h3 {
						font-weight: 600;
						}
					}
					.position {
						font-weight: 600;
						position: absolute;
					    right: 2rem;
					    top: 0.5rem;
					}

					&amp;.black-text {
						color: #444444;
					}
				}
			}
		}

		.orange-tab {
	    	background: #D87C00;

		}

		.yellow-tab {
	    	background: #F4D03E;
	    }

	}
**********************/ }
  .page-template-template-rest-website .column, .page-template-template-rest-website .columns {
    padding-left: 0;
    padding-right: 0; }
    .page-template-template-rest-website .column .padding-inside .wpb_content_element, .page-template-template-rest-website .columns .padding-inside .wpb_content_element {
      padding: 3rem 2rem; }
    .page-template-template-rest-website .column .padding-inside .wpb_gallery.wpb_content_element, .page-template-template-rest-website .columns .padding-inside .wpb_gallery.wpb_content_element {
      padding: 0rem; }
    .page-template-template-rest-website .column .padding-inside .boxes-with-icons.wpb_content_element, .page-template-template-rest-website .columns .padding-inside .boxes-with-icons.wpb_content_element {
      padding: 0rem; }
    .page-template-template-rest-website .column .padding-inside .footer.wpb_content_element, .page-template-template-rest-website .columns .padding-inside .footer.wpb_content_element {
      padding: 0rem; }
  .page-template-template-rest-website .columns {
    padding-left: 0;
    padding-right: 0; }
    .page-template-template-rest-website .columns .boxes-with-icons {
      text-align: left;
      margin: 0 auto !important;
      width: 70%; }
      .page-template-template-rest-website .columns .boxes-with-icons .column .wpb_content_element, .page-template-template-rest-website .columns .boxes-with-icons .columns .wpb_content_element {
        padding: 1rem 1.5rem; }
      .page-template-template-rest-website .columns .boxes-with-icons .column .vc_column-inner, .page-template-template-rest-website .columns .boxes-with-icons .columns .vc_column-inner {
        -ms-flex-pack: start;
        justify-content: flex-start; }
  .page-template-template-rest-website .light-blue {
    background: #D5E5F9; }
    .page-template-template-rest-website .light-blue a {
      color: #0a0a0a; }
  .page-template-template-rest-website .orange {
    background: #DE7825; }
  .page-template-template-rest-website .light-orange {
    background: #DA8745; }
  .page-template-template-rest-website .darker-blue {
    background: #7DB1F1; }
  .page-template-template-rest-website .vc_row {
    margin-left: 0px;
    margin-right: 0px; }
  .page-template-template-rest-website h2 {
    line-height: 35px;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px; }
  .page-template-template-rest-website .white-text {
    color: #fff; }
    .page-template-template-rest-website .white-text a {
      color: #fff; }
  .page-template-template-rest-website .black-text {
    color: #444444; }
    .page-template-template-rest-website .black-text a {
      color: #444444; }
  .page-template-template-rest-website .scroll-page {
    overflow-y: scroll;
    height: 414px;
    -ms-scrollbar-face-color: #DE7825;
    -ms-scrollbar-shadow-color: #FFFFFF;
    -ms-scrollbar-highlight-color: #FFFFFF;
    -ms-scrollbar-3dlight-color: #FFFFFF;
    -ms-scrollbar-darkshadow-color: #FFFFFF;
    -ms-scrollbar-track-color: #FFFFFF;
    -ms-scrollbar-arrow-color: #FFFFFF;
    /* Vertical Scrollbar Styles */ }
    .page-template-template-rest-website .scroll-page::-webkit-scrollbar {
      width: 20px;
      background-color: #DE7825;
      border: 1px solid #fff; }
    .page-template-template-rest-website .scroll-page::-webkit-scrollbar-thumb {
      width: 18px;
      background: #fff; }
    .page-template-template-rest-website .scroll-page::-webkit-scrollbar-track {
      -webkit-box-shadow: none;
      border: 1px solid #fff;
      background-color: #DE7825; }
    .page-template-template-rest-website .scroll-page::-webkit-scrollbar-button {
      background-color: #DE7825; }
  .page-template-template-rest-website .theme-default .nivoSlider {
    box-shadow: none; }
  .page-template-template-rest-website .nivo-controlNav {
    display: none; }
  .page-template-template-rest-website .footer .wpb_content_element {
    padding: 0rem; }
  .page-template-template-rest-website .ss-tab-content {
    display: none; }
  .page-template-template-rest-website .ss-tab-top {
    background-color: #D87C00;
    font-size: 45px;
    text-transform: uppercase;
    font-weight: 600;
    color: white; }
    .page-template-template-rest-website .ss-tab-top.active {
      color: white; }
    .page-template-template-rest-website .ss-tab-top.yellow {
      background-color: #F4D03E; }
    .page-template-template-rest-website .ss-tab-top.lighter-orange {
      background-color: #E4AB48; }
  .page-template-template-rest-website #board-directors {
    background-color: #D87C00;
    padding: 20px; }
  .page-template-template-rest-website #staff {
    background-color: #F4D03E;
    padding: 20px; }
  .page-template-template-rest-website #board-directors-tab .row, .page-template-template-rest-website #staff-tab .row {
    margin-left: 0rem !important;
    margin-right: 0rem !important; }
  .page-template-template-rest-website #board-directors .vc_row, .page-template-template-rest-website #staff .vc_row {
    margin-left: 0rem !important;
    margin-right: 0rem !important; }
  .page-template-template-rest-website #board-directors .biography, .page-template-template-rest-website #staff .biography {
    padding: 2rem;
    color: #fff;
    min-height: 419px; }
    .page-template-template-rest-website #board-directors .biography .wpb_wrapper, .page-template-template-rest-website #staff .biography .wpb_wrapper {
      position: relative; }
    .page-template-template-rest-website #board-directors .biography .name, .page-template-template-rest-website #staff .biography .name {
      margin-bottom: 1.5rem; }
      .page-template-template-rest-website #board-directors .biography .name h3, .page-template-template-rest-website #staff .biography .name h3 {
        font-weight: 600; }
    .page-template-template-rest-website #board-directors .biography .position, .page-template-template-rest-website #staff .biography .position {
      font-weight: 600;
      position: absolute;
      right: 2rem;
      top: 0.5rem; }
    .page-template-template-rest-website #board-directors .biography.black-text, .page-template-template-rest-website #staff .biography.black-text {
      color: #444444; }
  .page-template-template-rest-website .tell-us-your-story {
    padding: 20px; }
    .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 {
      max-width: 100%;
      /*.story {
			    padding-top: 1px !important;
			}*/ }
      .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 .gform_wrapper .top_label .gfield_label {
        display: none; }
      .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 .gform_wrapper .gfield_error {
        border-top: 0px !important;
        border-bottom: 0px !important; }
      .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 label {
        display: none !important; }
      .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 [type='text'], .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 [type='password'], .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 [type='date'], .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 [type='datetime'], .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 [type='datetime-local'], .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 [type='month'], .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 [type='week'], .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 [type='email'], .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 [type='number'], .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 [type='search'], .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 [type='tel'], .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 [type='time'], .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 [type='url'], .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 [type='color'], .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 textarea {
        font-style: italic;
        height: 51px !important;
        border: 0px !important;
        margin: 0px 0 !important;
        font-size: 18px;
        color: #444 !important;
        background-color: #ebebeb !important;
        box-shadow: none !important;
        padding-left: 10px; }
      .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 textarea {
        height: 128px !important; }
      .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 .ginput_container {
        margin-top: 13px; }
        .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 .ginput_container input.medium, .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 .ginput_container textarea.medium {
          width: 100% !important; }
      .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 ::-webkit-input-placeholder {
        color: #444; }
      .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 :-moz-placeholder {
        /* Firefox 18- */
        color: #444; }
      .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 ::-moz-placeholder {
        /* Firefox 19+ */
        color: #444; }
      .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 :-ms-input-placeholder {
        color: #444; }
      .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 .gform_footer {
        padding: 0em 0 0em 0;
        margin: 20px 0 0 0; }
        .page-template-template-rest-website .tell-us-your-story #gform_wrapper_3 .gform_footer .button {
          width: 100%;
          background: rgba(255, 255, 255, 0.1);
          text-transform: uppercase;
          font-size: 18px;
          font-weight: 600; }

/*******************
ROWS PRACTITIONERS AND CONSUMERS PAGES STYLE STRUCTURES
********************/
.page-template-template-rest-website-w-h .feat_img {
  height: 532px; }
  .page-template-template-rest-website-w-h .feat_img .breadcrumbs {
    float: right;
    font-weight: 600; }
    .page-template-template-rest-website-w-h .feat_img .breadcrumbs li {
      color: #fff;
      font-size: 15px;
      text-transform: capitalize; }
      .page-template-template-rest-website-w-h .feat_img .breadcrumbs li.separator {
        display: none; }
      .page-template-template-rest-website-w-h .feat_img .breadcrumbs li:not(.last-child)::after {
        color: #fff;
        margin: 0 0.25rem;
        top: 0px; }
    .page-template-template-rest-website-w-h .feat_img .breadcrumbs a {
      color: #fff; }
  .page-template-template-rest-website-w-h .feat_img .slogan-header {
    padding-top: 16rem; }
    .page-template-template-rest-website-w-h .feat_img .slogan-header h1 {
      color: #fff; }
    .page-template-template-rest-website-w-h .feat_img .slogan-header p {
      color: #fff; }

.page-template-template-rest-website-w-h .the-promise {
  padding: 0 3rem !important; }

.page-template-template-rest-website-w-h .column, .page-template-template-rest-website-w-h .columns {
  padding-left: 0;
  padding-right: 0; }
  .page-template-template-rest-website-w-h .column .padding-inside .wpb_content_element, .page-template-template-rest-website-w-h .columns .padding-inside .wpb_content_element {
    padding: 3rem 2rem; }
  .page-template-template-rest-website-w-h .column .padding-inside .wpb_gallery.wpb_content_element, .page-template-template-rest-website-w-h .columns .padding-inside .wpb_gallery.wpb_content_element {
    padding: 0rem; }
  .page-template-template-rest-website-w-h .column .padding-inside .boxes-with-icons.wpb_content_element, .page-template-template-rest-website-w-h .columns .padding-inside .boxes-with-icons.wpb_content_element {
    padding: 0rem; }
  .page-template-template-rest-website-w-h .column .padding-inside .footer.wpb_content_element, .page-template-template-rest-website-w-h .columns .padding-inside .footer.wpb_content_element {
    padding: 0rem; }

.page-template-template-rest-website-w-h .columns {
  padding-left: 0;
  padding-right: 0; }
  .page-template-template-rest-website-w-h .columns .boxes-with-icons {
    text-align: left;
    width: 70%;
    min-height: 129px;
    float: right;
    margin-left: 10px !important;
    margin-right: 10px !important;
    margin-bottom: 20px !important; }
    .page-template-template-rest-website-w-h .columns .boxes-with-icons.right {
      float: left; }
    .page-template-template-rest-website-w-h .columns .boxes-with-icons h4 {
      font-weight: 600 !important;
      font-size: 18px !important;
      margin-bottom: 0rem;
      line-height: 22px; }
    .page-template-template-rest-website-w-h .columns .boxes-with-icons p {
      font-size: 16px !important; }
    .page-template-template-rest-website-w-h .columns .boxes-with-icons.contact-info {
      width: 100%;
      float: none;
      margin: 0 auto !important;
      min-height: 115px; }
      .page-template-template-rest-website-w-h .columns .boxes-with-icons.contact-info a {
        color: #444;
        font-size: 18px; }
    .page-template-template-rest-website-w-h .columns .boxes-with-icons .column .wpb_content_element, .page-template-template-rest-website-w-h .columns .boxes-with-icons .columns .wpb_content_element {
      padding: 1rem 1.5rem; }
    .page-template-template-rest-website-w-h .columns .boxes-with-icons .column .vc_column-inner, .page-template-template-rest-website-w-h .columns .boxes-with-icons .columns .vc_column-inner {
      -ms-flex-pack: start;
      justify-content: flex-start; }

.page-template-template-rest-website-w-h .vc_btn3-style-flat {
  margin-top: 10px;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.25) !important;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 22px !important;
  width: 265px !important;
  padding: 14px 25px !important; }

.page-template-template-rest-website-w-h .dataTables_length {
  display: none; }

.page-template-template-rest-website-w-h .dataTables_paginate a {
  color: #fff !important;
  text-decoration: none; }

.page-template-template-rest-website-w-h .paginate_button.disabled {
  display: none; }

.page-template-template-rest-website-w-h div#tablepress-5_wrapper {
  /* height: 239px;
    overflow-y: scroll; Don't work */
  /* Vertical Scrollbar Styles */
  /*
		&amp;::-webkit-scrollbar {
		    width: 20px;
    		background-color: #DE7825;
    		border: 1px solid #fff;
		}

		&amp;::-webkit-scrollbar-thumb {
		    
		    width: 18px;
		    background:#fff;
		}

		&amp;::-webkit-scrollbar-track {
		    -webkit-box-shadow: none;
		    border: 1px solid #fff;
		    background-color: #DE7825;
		}

		&amp;::-webkit-scrollbar-button {
    		background-color: #DE7825;
		} */ }
  .page-template-template-rest-website-w-h div#tablepress-5_wrapper table thead {
    background: transparent !important;
    color: #fff !important;
    border: 0px !important; }
    .page-template-template-rest-website-w-h div#tablepress-5_wrapper table thead th {
      background: rgba(255, 255, 255, 0.3) !important;
      border-bottom: 1px solid #DE7825; }
  .page-template-template-rest-website-w-h div#tablepress-5_wrapper .tablepress td {
    padding: 4px !important; }
  .page-template-template-rest-website-w-h div#tablepress-5_wrapper .tablepress .even td {
    background: rgba(255, 255, 255, 0.1) !important;
    border-bottom: 1px solid #DE7825; }
  .page-template-template-rest-website-w-h div#tablepress-5_wrapper .tablepress .odd td {
    background: rgba(255, 255, 255, 0.2) !important;
    border-bottom: 1px solid #DE7825; }
  .page-template-template-rest-website-w-h div#tablepress-5_wrapper .tablepress a {
    color: #fff !important; }
    .page-template-template-rest-website-w-h div#tablepress-5_wrapper .tablepress a:after {
      color: #fff !important; }
    .page-template-template-rest-website-w-h div#tablepress-5_wrapper .tablepress a:hover:after {
      color: #fff !important; }

.page-template-template-rest-website-w-h table tbody {
  border: 0px !important;
  background-color: transparent !important; }
  .page-template-template-rest-website-w-h table tbody tr:nth-child(even) {
    background-color: inherit !important; }

.page-template-template-rest-website-w-h div#tablepress-2_wrapper {
  /*  height: 239px;
    overflow-y: scroll; Don't work well
    	 /* Vertical Scrollbar Styles 


		&amp;::-webkit-scrollbar {
		    width: 20px;
    		background-color: #C5F2FB;
    		border: 1px solid #fff;
		}

		&amp;::-webkit-scrollbar-thumb {
		    
		    width: 18px;
		    background:#444444;
		}

		&amp;::-webkit-scrollbar-track {
		    -webkit-box-shadow: none;
		    border: 1px solid #444444;
		    background-color: #C5F2FB;
		}

		&amp;::-webkit-scrollbar-button {
    		background-color: #C5F2FB;
		}*/ }
  .page-template-template-rest-website-w-h div#tablepress-2_wrapper table thead {
    background: transparent !important;
    color: #444 !important;
    border: 0px !important; }
    .page-template-template-rest-website-w-h div#tablepress-2_wrapper table thead th {
      background: rgba(68, 68, 68, 0.3) !important;
      border-bottom: 1px solid #c5f2fb; }
  .page-template-template-rest-website-w-h div#tablepress-2_wrapper .tablepress td {
    padding: 4px !important; }
  .page-template-template-rest-website-w-h div#tablepress-2_wrapper .tablepress .even td {
    background: rgba(68, 68, 68, 0.1) !important;
    border-bottom: 1px solid #c5f2fb; }
  .page-template-template-rest-website-w-h div#tablepress-2_wrapper .tablepress .odd td {
    background: rgba(68, 68, 68, 0.2) !important;
    border-bottom: 1px solid #c5f2fb; }
  .page-template-template-rest-website-w-h div#tablepress-2_wrapper .tablepress a {
    color: #444; }

.page-template-template-rest-website-w-h .tablepress {
  width: 99% !important; }

.page-template-template-rest-website-w-h .vc_row {
  margin-left: 0px !important;
  margin-right: 0px !important; }

.page-template-template-rest-website-w-h .row .vc_col-has-fill &gt; .vc_column-inner {
  padding-top: 35px;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 35px;
  display: block; }

.page-template-template-rest-website-w-h h2 {
  line-height: 35px;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 25px; }

.page-template-template-rest-website-w-h .white-text {
  color: #fff; }
  .page-template-template-rest-website-w-h .white-text a {
    color: #fff; }

.page-template-template-rest-website-w-h .black-text {
  color: #444444; }
  .page-template-template-rest-website-w-h .black-text a {
    color: #444444; }

.page-template-template-rest-website-w-h .scroll-page {
  overflow-y: scroll;
  height: 414px;
  /* Vertical Scrollbar Styles */ }
  .page-template-template-rest-website-w-h .scroll-page::-webkit-scrollbar {
    width: 20px;
    background-color: #DE7825;
    border: 1px solid #fff; }
  .page-template-template-rest-website-w-h .scroll-page::-webkit-scrollbar-thumb {
    width: 18px;
    background: #fff; }
  .page-template-template-rest-website-w-h .scroll-page::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
    border: 1px solid #fff;
    background-color: #DE7825; }
  .page-template-template-rest-website-w-h .scroll-page::-webkit-scrollbar-button {
    background-color: #DE7825; }

.page-template-template-rest-website-w-h .theme-default .nivoSlider {
  box-shadow: none; }

.page-template-template-rest-website-w-h .nivo-controlNav {
  display: none; }

.page-template-template-rest-website-w-h .footer .wpb_content_element {
  padding: 0rem; }

.page-template-template-rest-website-w-h .tabs-consumers .vc_tta-tabs-container .vc_tta-tabs-list li {
  width: 32.54%;
  margin-right: 1.19%; }
  .page-template-template-rest-website-w-h .tabs-consumers .vc_tta-tabs-container .vc_tta-tabs-list li:first-child a {
    background: #D87C00; }
  .page-template-template-rest-website-w-h .tabs-consumers .vc_tta-tabs-container .vc_tta-tabs-list li:last-child {
    margin-right: 0%; }
    .page-template-template-rest-website-w-h .tabs-consumers .vc_tta-tabs-container .vc_tta-tabs-list li:last-child a {
      background: #F4D03E; }
  .page-template-template-rest-website-w-h .tabs-consumers .vc_tta-tabs-container .vc_tta-tabs-list li a {
    color: #fff;
    padding: 0px 20px;
    font-size: 45px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center; }

.page-template-template-rest-website-w-h .tabs-consumers .vc_tta-panels-container .vc_tta-panel-body {
  padding: 20px; }
  .page-template-template-rest-website-w-h .tabs-consumers .vc_tta-panels-container .vc_tta-panel-body .vc_row {
    margin-left: 0rem !important;
    margin-right: 0rem !important; }
  .page-template-template-rest-website-w-h .tabs-consumers .vc_tta-panels-container .vc_tta-panel-body .biography {
    padding: 2rem;
    color: #fff;
    min-height: 419px; }
    .page-template-template-rest-website-w-h .tabs-consumers .vc_tta-panels-container .vc_tta-panel-body .biography .wpb_wrapper {
      position: relative; }
    .page-template-template-rest-website-w-h .tabs-consumers .vc_tta-panels-container .vc_tta-panel-body .biography .name {
      margin-bottom: 1.5rem; }
      .page-template-template-rest-website-w-h .tabs-consumers .vc_tta-panels-container .vc_tta-panel-body .biography .name h3 {
        font-weight: 600; }
    .page-template-template-rest-website-w-h .tabs-consumers .vc_tta-panels-container .vc_tta-panel-body .biography .position {
      font-weight: 600;
      position: absolute;
      right: 2rem;
      top: 0.5rem; }
    .page-template-template-rest-website-w-h .tabs-consumers .vc_tta-panels-container .vc_tta-panel-body .biography.black-text {
      color: #444444; }

.page-template-template-rest-website-w-h .tabs-consumers .orange-tab {
  background: #D87C00; }

.page-template-template-rest-website-w-h .tabs-consumers .yellow-tab {
  background: #F4D03E; }

.page-template-template-rest-website-w-h .ss-tab-content {
  display: none; }

.page-template-template-rest-website-w-h .ss-tab-top {
  background-color: #D87C00;
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 600;
  color: white; }
  .page-template-template-rest-website-w-h .ss-tab-top.active {
    color: white; }
  .page-template-template-rest-website-w-h .ss-tab-top.light-orange {
    background-color: #E09633; }
  .page-template-template-rest-website-w-h .ss-tab-top.lighter-orange {
    background-color: #E4AB48; }

.page-template-template-rest-website-w-h #events-red-flags {
  background-color: #D87C00;
  padding: 20px; }

.page-template-template-rest-website-w-h #online-red-flags {
  background-color: #E09633;
  padding: 20px; }

.page-template-template-rest-website-w-h #print-media-red-flags {
  background-color: #E4AB48;
  padding: 20px; }

.page-template-template-rest-website-w-h #Events-contents, .page-template-template-rest-website-w-h #Online-contents, .page-template-template-rest-website-w-h #Print-media-content {
  text-align: center; }
  .page-template-template-rest-website-w-h #Events-contents .images-inside-accordions, .page-template-template-rest-website-w-h #Online-contents .images-inside-accordions, .page-template-template-rest-website-w-h #Print-media-content .images-inside-accordions {
    min-height: 350px;
    padding: 20px; }
    .page-template-template-rest-website-w-h #Events-contents .images-inside-accordions h2, .page-template-template-rest-website-w-h #Online-contents .images-inside-accordions h2, .page-template-template-rest-website-w-h #Print-media-content .images-inside-accordions h2 {
      font-size: 40px;
      line-height: 45px;
      margin-bottom: 0px; }
    .page-template-template-rest-website-w-h #Events-contents .images-inside-accordions p, .page-template-template-rest-website-w-h #Online-contents .images-inside-accordions p, .page-template-template-rest-website-w-h #Print-media-content .images-inside-accordions p {
      font-size: 30px; }
  .page-template-template-rest-website-w-h #Events-contents .accordions-events .vc_tta-icon, .page-template-template-rest-website-w-h #Online-contents .accordions-events .vc_tta-icon, .page-template-template-rest-website-w-h #Print-media-content .accordions-events .vc_tta-icon {
    display: inline-block;
    opacity: 0.35;
    margin-right: -1.7rem;
    transform: rotate(-14deg); }
  .page-template-template-rest-website-w-h #Events-contents .accordions-events .vc_tta-panel-body, .page-template-template-rest-website-w-h #Online-contents .accordions-events .vc_tta-panel-body, .page-template-template-rest-website-w-h #Print-media-content .accordions-events .vc_tta-panel-body {
    background: rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    padding-bottom: 2rem; }
    .page-template-template-rest-website-w-h #Events-contents .accordions-events .vc_tta-panel-body a, .page-template-template-rest-website-w-h #Online-contents .accordions-events .vc_tta-panel-body a, .page-template-template-rest-website-w-h #Print-media-content .accordions-events .vc_tta-panel-body a {
      color: #fff;
      text-decoration: underline; }
  .page-template-template-rest-website-w-h #Events-contents .vc_tta-color-orange.vc_tta-style-flat .vc_tta-panel.vc_active .vc_tta-panel-heading, .page-template-template-rest-website-w-h #Online-contents .vc_tta-color-orange.vc_tta-style-flat .vc_tta-panel.vc_active .vc_tta-panel-heading, .page-template-template-rest-website-w-h #Print-media-content .vc_tta-color-orange.vc_tta-style-flat .vc_tta-panel.vc_active .vc_tta-panel-heading {
    background: rgba(255, 255, 255, 0.1); }
  .page-template-template-rest-website-w-h #Events-contents .vc_tta-color-orange.vc_tta-style-flat .vc_tta-panel .vc_tta-heading, .page-template-template-rest-website-w-h #Events-contents .vc_tta-color-orange.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-heading, .page-template-template-rest-website-w-h #Online-contents .vc_tta-color-orange.vc_tta-style-flat .vc_tta-panel .vc_tta-heading, .page-template-template-rest-website-w-h #Online-contents .vc_tta-color-orange.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-heading, .page-template-template-rest-website-w-h #Print-media-content .vc_tta-color-orange.vc_tta-style-flat .vc_tta-panel .vc_tta-heading, .page-template-template-rest-website-w-h #Print-media-content .vc_tta-color-orange.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-heading {
    background: rgba(255, 255, 255, 0.1); }
  .page-template-template-rest-website-w-h #Events-contents .vc_tta-color-orange.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-heading h4, .page-template-template-rest-website-w-h #Online-contents .vc_tta-color-orange.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-heading h4, .page-template-template-rest-website-w-h #Print-media-content .vc_tta-color-orange.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-heading h4 {
    font-weight: 600; }

.page-template-template-rest-website-w-h #Events-contents .vc_tta-panel-body {
  border-top: 1px solid #d87c00 !important; }

.page-template-template-rest-website-w-h #Online-contents .vc_tta-panel-body {
  border-top: 1px solid #E09633 !important; }

.page-template-template-rest-website-w-h #Print-media-content .vc_tta-panel-body {
  border-top: 1px solid #E4AB48 !important; }

/*********************
NEWS &amp; EVENTS STYLE AND STRUCTURE
*********************/
.archive .top-bar .top-bar-up img.logo, .category .top-bar .top-bar-up img.logo,
.page-template-default .top-bar .top-bar-up img.logo {
  padding-top: 0px; }

.archive #main header, .category #main header,
.page-template-default #main header {
  text-align: center; }
  .archive #main header h1, .category #main header h1,
  .page-template-default #main header h1 {
    font-size: 60px;
    font-weight: 700;
    color: #1F2B44;
    margin-bottom: 3rem;
    text-transform: capitalize; }

.archive .columns, .category .columns,
.page-template-default .columns {
  padding-left: 0rem;
  padding-right: 0rem; }

.archive .row, .category .row,
.page-template-default .row {
  margin-left: 0rem !important;
  margin-right: 0rem !important; }
  .archive .row .blog-articles, .category .row .blog-articles,
  .page-template-default .row .blog-articles {
    padding-left: 0rem;
    padding-right: 0rem; }
    .archive .row .blog-articles .vc_custom_1471609035740, .category .row .blog-articles .vc_custom_1471609035740,
    .page-template-default .row .blog-articles .vc_custom_1471609035740 {
      padding: 20px; }
    .archive .row .blog-articles .vc_gitem-post-data-source-post_date, .archive .row .blog-articles .vc_custom_heading a, .category .row .blog-articles .vc_gitem-post-data-source-post_date, .category .row .blog-articles .vc_custom_heading a,
    .page-template-default .row .blog-articles .vc_gitem-post-data-source-post_date,
    .page-template-default .row .blog-articles .vc_custom_heading a {
      color: #DE7825;
      font-size: 18px;
      font-weight: 600; }
    .archive .row .blog-articles .vc_gitem-post-data-source-post_title h4 a, .category .row .blog-articles .vc_gitem-post-data-source-post_title h4 a,
    .page-template-default .row .blog-articles .vc_gitem-post-data-source-post_title h4 a {
      color: #444444;
      font-weight: 600;
      font-size: 25px;
      color: #444444; }
    .archive .row .blog-articles .vc_grid-filter-center, .category .row .blog-articles .vc_grid-filter-center,
    .page-template-default .row .blog-articles .vc_grid-filter-center {
      text-align: left !important;
      margin-bottom: 0;
      line-height: 20px; }
    .archive .row .blog-articles .vc_gitem-post-category-name, .category .row .blog-articles .vc_gitem-post-category-name,
    .page-template-default .row .blog-articles .vc_gitem-post-category-name {
      font-size: 16px;
      color: #DE7825;
      font-weight: 600;
      text-transform: uppercase; }
    .archive .row .blog-articles .vc_btn3-container, .category .row .blog-articles .vc_btn3-container,
    .page-template-default .row .blog-articles .vc_btn3-container {
      margin-bottom: 0; }
    .archive .row .blog-articles .vc_gitem_row .vc_gitem-col, .category .row .blog-articles .vc_gitem_row .vc_gitem-col,
    .page-template-default .row .blog-articles .vc_gitem_row .vc_gitem-col {
      padding: 0px; }
    .archive .row .blog-articles .vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat, .category .row .blog-articles .vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat,
    .page-template-default .row .blog-articles .vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat {
      border: 1px solid transparent;
      background-color: #DE7825;
      line-height: 34px;
      padding: 0px 7px 7px;
      font-weight: 600;
      font-size: 50px; }
    .archive .row .blog-articles .vc_btn3.vc_btn3-color-orange:hover, .category .row .blog-articles .vc_btn3.vc_btn3-color-orange:hover,
    .page-template-default .row .blog-articles .vc_btn3.vc_btn3-color-orange:hover {
      background-color: #F7BE68; }
    .archive .row .blog-articles .vc_pageable-load-more-btn .vc_btn3-container, .category .row .blog-articles .vc_pageable-load-more-btn .vc_btn3-container,
    .page-template-default .row .blog-articles .vc_pageable-load-more-btn .vc_btn3-container {
      width: 100%; }
      .archive .row .blog-articles .vc_pageable-load-more-btn .vc_btn3-container .vc_btn3.vc_btn3-size-md.vc_btn3-icon-left:not(.vc_btn3-o-empty), .category .row .blog-articles .vc_pageable-load-more-btn .vc_btn3-container .vc_btn3.vc_btn3-size-md.vc_btn3-icon-left:not(.vc_btn3-o-empty),
      .page-template-default .row .blog-articles .vc_pageable-load-more-btn .vc_btn3-container .vc_btn3.vc_btn3-size-md.vc_btn3-icon-left:not(.vc_btn3-o-empty) {
        width: 100%;
        text-align: center; }
        .archive .row .blog-articles .vc_pageable-load-more-btn .vc_btn3-container .vc_btn3.vc_btn3-size-md.vc_btn3-icon-left:not(.vc_btn3-o-empty) .vc_btn3-icon, .category .row .blog-articles .vc_pageable-load-more-btn .vc_btn3-container .vc_btn3.vc_btn3-size-md.vc_btn3-icon-left:not(.vc_btn3-o-empty) .vc_btn3-icon,
        .page-template-default .row .blog-articles .vc_pageable-load-more-btn .vc_btn3-container .vc_btn3.vc_btn3-size-md.vc_btn3-icon-left:not(.vc_btn3-o-empty) .vc_btn3-icon {
          display: none; }
      .archive .row .blog-articles .vc_pageable-load-more-btn .vc_btn3-container .vc_btn3.vc_btn3-color-blue, .category .row .blog-articles .vc_pageable-load-more-btn .vc_btn3-container .vc_btn3.vc_btn3-color-blue,
      .page-template-default .row .blog-articles .vc_pageable-load-more-btn .vc_btn3-container .vc_btn3.vc_btn3-color-blue {
        text-transform: uppercase;
        font-size: 18px;
        background-color: #212B44;
        font-weight: 700;
        border-radius: 0px; }
  .archive .row .sidebar-blog, .category .row .sidebar-blog,
  .page-template-default .row .sidebar-blog {
    padding-right: 0rem;
    padding-left: 20px; }
    .archive .row .sidebar-blog .vc_custom_1471468271338, .category .row .sidebar-blog .vc_custom_1471468271338,
    .page-template-default .row .sidebar-blog .vc_custom_1471468271338 {
      background-color: #de7825 !important; }
    .archive .row .sidebar-blog .vc_custom_1471468276850, .category .row .sidebar-blog .vc_custom_1471468276850,
    .page-template-default .row .sidebar-blog .vc_custom_1471468276850 {
      background-color: #4291e4 !important; }
    .archive .row .sidebar-blog .inner-padding, .category .row .sidebar-blog .inner-padding,
    .page-template-default .row .sidebar-blog .inner-padding {
      padding: 25px 0px; }
    .archive .row .sidebar-blog .column, .archive .row .sidebar-blog .columns, .category .row .sidebar-blog .column, .category .row .sidebar-blog .columns,
    .page-template-default .row .sidebar-blog .column,
    .page-template-default .row .sidebar-blog .columns {
      padding-left: 0rem;
      padding-right: 0rem; }
    .archive .row .sidebar-blog h2.widgettitle, .category .row .sidebar-blog h2.widgettitle,
    .page-template-default .row .sidebar-blog h2.widgettitle {
      font-weight: 600;
      font-size: 30px;
      color: #fff;
      text-transform: uppercase;
      padding: 0 25px; }
    .archive .row .sidebar-blog .widget_categories ul li, .category .row .sidebar-blog .widget_categories ul li,
    .page-template-default .row .sidebar-blog .widget_categories ul li {
      padding: 7px 25px;
      line-height: 25px; }
      .archive .row .sidebar-blog .widget_categories ul li a, .category .row .sidebar-blog .widget_categories ul li a,
      .page-template-default .row .sidebar-blog .widget_categories ul li a {
        color: white;
        font-size: 19px; }
      .archive .row .sidebar-blog .widget_categories ul li:hover, .category .row .sidebar-blog .widget_categories ul li:hover,
      .page-template-default .row .sidebar-blog .widget_categories ul li:hover {
        background: rgba(255, 255, 255, 0.1); }
    .archive .row .sidebar-blog .tagcloud, .category .row .sidebar-blog .tagcloud,
    .page-template-default .row .sidebar-blog .tagcloud {
      padding: 0 25px; }
      .archive .row .sidebar-blog .tagcloud a, .category .row .sidebar-blog .tagcloud a,
      .page-template-default .row .sidebar-blog .tagcloud a {
        line-height: 44px !important;
        margin: 0 7px 10px 0;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        padding: 5px;
        font-size: 19px !important;
        text-transform: capitalize; }

.archive .newsletter, .category .newsletter,
.page-template-default .newsletter {
  margin-top: 17px; }

.archive header, .category header {
  text-align: center; }
  .archive header h1, .category header h1 {
    font-size: 60px;
    font-weight: 700;
    color: #1F2B44;
    margin-bottom: 3rem;
    text-transform: capitalize; }

.archive .vc_custom_1471609035740, .category .vc_custom_1471609035740 {
  background-color: rgba(206, 208, 214, 0.35) !important;
  padding: 20px; }

.archive .vc_gitem_row .vc_gitem-col, .category .vc_gitem_row .vc_gitem-col {
  padding: 0px; }

.archive .vc_btn3-container, .category .vc_btn3-container {
  margin-bottom: 0; }

.archive .vc_grid-item, .category .vc_grid-item {
  padding-bottom: 20px; }
  .archive .vc_grid-item.vc_clearfix.vc_col-sm-6, .category .vc_grid-item.vc_clearfix.vc_col-sm-6 {
    padding-left: 0px !important;
    padding-right: 20px !important; }

.archive .vc_gitem-post-data-source-post_date, .category .vc_gitem-post-data-source-post_date {
  color: #DE7825;
  font-size: 18px;
  font-weight: 600; }

.archive .vc_custom_heading a, .category .vc_custom_heading a {
  color: #DE7825;
  font-size: 18px;
  font-weight: 600; }

.archive .vc_gitem-post-data-source-post_title, .category .vc_gitem-post-data-source-post_title {
  height: 70px; }
  .archive .vc_gitem-post-data-source-post_title h4 a, .category .vc_gitem-post-data-source-post_title h4 a {
    font-weight: 600;
    font-size: 25px;
    color: #444444; }

.archive .vc_grid-filter-center, .category .vc_grid-filter-center {
  text-align: left !important;
  margin-bottom: 0;
  line-height: 20px; }

.archive .vc_gitem-post-category-name, .category .vc_gitem-post-category-name {
  font-size: 16px;
  color: #DE7825;
  font-weight: 600;
  text-transform: uppercase; }
  .archive .vc_gitem-post-category-name a, .category .vc_gitem-post-category-name a {
    color: #DE7825; }

.archive .vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat, .category .vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat {
  background-color: #DE7825;
  line-height: 34px;
  padding: 0px 7px 7px;
  font-weight: 600;
  font-size: 50px; }

.archive .sidebar-blog, .category .sidebar-blog {
  padding-right: 0rem;
  padding-left: 0rem !important; }
  .archive .sidebar-blog .widget_categories ul li, .category .sidebar-blog .widget_categories ul li {
    padding: 7px 25px;
    line-height: 25px; }
    .archive .sidebar-blog .widget_categories ul li a, .category .sidebar-blog .widget_categories ul li a {
      color: white;
      font-size: 19px; }
    .archive .sidebar-blog .widget_categories ul li:active, .archive .sidebar-blog .widget_categories ul li:hover, .archive .sidebar-blog .widget_categories ul li.current-cat, .category .sidebar-blog .widget_categories ul li:active, .category .sidebar-blog .widget_categories ul li:hover, .category .sidebar-blog .widget_categories ul li.current-cat {
      background: rgba(255, 255, 255, 0.1); }

/********************
POST STRUCTURE AND STYLES
********************/
.single-post .top-bar .top-bar-up img.logo {
  padding-top: 0px; }

.single-post h1 {
  font-size: 50px;
  text-align: center;
  margin-bottom: 40px; }

.single-post p {
  margin-top: 1.6rem; }

.single-post .byline {
  color: #1F2B44;
  min-height: 42px;
  display: block;
  position: relative;
  padding-bottom: 20px; }
  .single-post .byline .row {
    margin-left: 0rem !important;
    margin-right: 0rem !important; }
  .single-post .byline .column, .single-post .byline .columns {
    padding-left: 0rem;
    padding-right: 0rem; }
    .single-post .byline .column.author, .single-post .byline .author.columns {
      text-align: center;
      width: 23%; }
    .single-post .byline .column.the-category, .single-post .byline .the-category.columns {
      text-align: right;
      display: inline; }
  .single-post .byline a {
    color: #1F2B44; }

.single-post .wp-caption {
  background: #F0F0F0;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  color: #444444; }
  .single-post .wp-caption a {
    color: #444444; }

.single-post blockquote {
  margin: 2rem 0 2rem;
  padding: 0.5625rem 4.25rem 0 4.25rem;
  border-left: 4px solid #C5F2FB; }
  .single-post blockquote p {
    font-style: italic;
    color: #444444 !important;
    font-size: 25px;
    line-height: 32px;
    font-weight: 700;
    margin-top: 0; }

.single-post .profile-img {
  overflow: hidden;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  margin-top: -10px;
  float: left; }

.single-post .author-name {
  float: left;
  margin-left: 20px; }

.single-post .entry-content img {
  width: 100%; }

.single-post h4.related-posts {
  text-align: center;
  font-size: 35px;
  font-weight: 600;
  color: #444;
  text-transform: uppercase;
  margin-bottom: 30px; }

.single-post .vc_btn3-container {
  margin-bottom: 0; }

.single-post .vc_gitem_row .vc_gitem-col {
  padding: 10px; }

.single-post .vc_custom_1471609035740 {
  background-color: rgba(206, 208, 214, 0.35) !important; }
  .single-post .vc_custom_1471609035740 .vc_gitem-post-data-source-post_title h4 {
    height: 80px;
    line-height: 26px; }
    .single-post .vc_custom_1471609035740 .vc_gitem-post-data-source-post_title h4 a {
      font-weight: 600;
      font-size: 22px;
      color: #444444; }
  .single-post .vc_custom_1471609035740 .vc_grid-filter-center {
    text-align: left !important;
    margin-bottom: 0;
    line-height: 15px; }
  .single-post .vc_custom_1471609035740 .vc_gitem-post-category-name {
    font-size: 12px;
    color: #DE7825;
    font-weight: 600;
    text-transform: uppercase; }
    .single-post .vc_custom_1471609035740 .vc_gitem-post-category-name a {
      color: #DE7825; }
  .single-post .vc_custom_1471609035740 .vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat {
    background-color: #DE7825;
    line-height: 34px;
    padding: 0px 7px 7px;
    font-weight: 600;
    font-size: 50px; }

.single-post .newsletter {
  margin-top: 20px; }

/*********************
SEARCH PAGE 
*********************/
.search #content {
  padding-top: 80px; }
  .search #content #main {
    padding-left: 1.5rem;
    padding-right: 1.5rem; }
    .search #content #main header h1 {
      padding-bottom: 1.5rem;
      margin-bottom: 2.5rem;
      border-bottom: 1px solid #e3e3e3; }
    .search #content #main article {
      padding-bottom: 1.5rem;
      margin-bottom: 1.5rem;
      border-bottom: 1px solid #e3e3e3; }
      .search #content #main article header h2 {
        margin: 0px; }
        .search #content #main article header h2 a {
          transition: all 350ms ease !important;
          color: #b2b2b2; }
      .search #content #main article section {
        margin: 0px; }
        .search #content #main article section a {
          transition: all 350ms ease !important;
          color: #b2b2b2; }
        .search #content #main article section p {
          transition: all 350ms ease !important;
          color: #b2b2b2;
          margin: 0px; }
      .search #content #main article p {
        margin: 0px; }
      .search #content #main article:hover header h2 a {
        color: #333; }
      .search #content #main article:hover section a {
        color: #2199e8; }
      .search #content #main article:hover section p {
        color: #333; }

/************
CONTACT PAGE
************/
.vc_custom_1473090187801, .vc_custom_1473093283761 {
  padding: 89px !important; }

.form h2 {
  margin-bottom: 0; }

.form #gform_wrapper_2 .gform_wrapper .top_label .gfield_label {
  display: none; }

.form #gform_wrapper_2 .gform_wrapper .gfield_error {
  border-top: 0px !important;
  border-bottom: 0px !important; }

.form #gform_wrapper_2 label {
  display: none !important; }

.form #gform_wrapper_2 [type='text'], .form #gform_wrapper_2 [type='password'], .form #gform_wrapper_2 [type='date'], .form #gform_wrapper_2 [type='datetime'], .form #gform_wrapper_2 [type='datetime-local'], .form #gform_wrapper_2 [type='month'], .form #gform_wrapper_2 [type='week'], .form #gform_wrapper_2 [type='email'], .form #gform_wrapper_2 [type='number'], .form #gform_wrapper_2 [type='search'], .form #gform_wrapper_2 [type='tel'], .form #gform_wrapper_2 [type='time'], .form #gform_wrapper_2 [type='url'], .form #gform_wrapper_2 [type='color'], .form #gform_wrapper_2 textarea {
  font-style: italic;
  height: 51px !important;
  border: 0px !important;
  margin: 0px 0 !important;
  font-size: 18px;
  color: #444 !important;
  background-color: #ebebeb !important;
  box-shadow: none !important;
  padding-left: 10px; }

.form #gform_wrapper_2 textarea {
  height: 128px !important; }

.form #gform_wrapper_2 .ginput_container {
  margin-top: 13px; }

.form #gform_wrapper_2 .message {
  padding-top: 1px !important; }

.form #gform_wrapper_2 ::-webkit-input-placeholder {
  color: #444; }

.form #gform_wrapper_2 :-moz-placeholder {
  /* Firefox 18- */
  color: #444; }

.form #gform_wrapper_2 ::-moz-placeholder {
  /* Firefox 19+ */
  color: #444; }

.form #gform_wrapper_2 :-ms-input-placeholder {
  color: #444; }

.form #gform_wrapper_2 .gform_footer {
  padding: 0em 0 0em 0;
  margin: 20px 0 0 0; }
  .form #gform_wrapper_2 .gform_footer .button {
    background: #444;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600; }

/********************
DONATE PAGE
********************/
.page-id-4143 .vc_row {
  margin-left: 0px !important;
  margin-right: 0px !important; }

.page-id-4143 .feat_img .breadcrumbs {
  float: right;
  font-weight: 600; }
  .page-id-4143 .feat_img .breadcrumbs li.item-home {
    display: inherit; }

.page-id-4143 h3 {
  text-transform: uppercase;
  font-weight: 600; }

.page-id-4143 .inner-padding {
  padding: 3rem 1rem !important; }

.page-id-4143 .padding-right-on {
  padding-right: 20px !important; }

.page-id-4143 i.fa.fa-map-marker {
  margin-top: -5px !important;
  height: 90px !important;
  position: relative !important;
  float: left !important;
  margin-right: 9px !important;
  font-style: normal;
  font-family: FontAwesome;
  font-size: 2rem; }

.page-id-4143 .fa-map-marker:before {
  content: "\f041"; }

.page-id-4143 .donation .gform_body .gform_fields .gfield .gfield_radio li {
  display: inline-block !important;
  margin: 0 10px 8px 0px !important; }
  .page-id-4143 .donation .gform_body .gform_fields .gfield .gfield_radio li input[type=radio] {
    display: none !important; }
    .page-id-4143 .donation .gform_body .gform_fields .gfield .gfield_radio li input[type=radio]:checked + label {
      background-image: none !important;
      color: #fff !important;
      outline: 0 !important;
      background-color: #212b44 !important;
      border-color: #212b44 !important;
      border-width: 1px !important; }
    .page-id-4143 .donation .gform_body .gform_fields .gfield .gfield_radio li input[type=radio] + label {
      display: table-cell;
      border: none !important;
      margin-left: 0.2em !important;
      background-color: #D5E5F9 !important;
      border-radius: 0px !important;
      color: #444 !important;
      text-decoration: none !important;
      letter-spacing: 1px !important;
      font-size: 14px !important;
      font-weight: 600 !important;
      text-transform: uppercase !important;
      vertical-align: top !important;
      padding: 1em 2.0em !important;
      border-color: #D5E5F9 !important;
      border-width: 1px !important;
      border-style: solid !important; }

.page-id-4143 .donation .gform_wrapper input.medium {
  background-color: #fff !important;
  border-color: #444 !important;
  border-width: 1px !important;
  border-style: solid !important;
  box-shadow: none; }

.page-id-4143 .donation .gform_wrapper .button, .page-id-4143 .donation .gform_wrapper .gform_button {
  text-transform: uppercase;
  font-size: 1.5em;
  font-weight: 600;
  background-color: #488feb !important; }
  .page-id-4143 .donation .gform_wrapper .button:hover, .page-id-4143 .donation .gform_wrapper .gform_button:hover {
    background-color: #0d0ba9 !important; }

.page-id-4143 .donation .gform_wrapper .ginput_container span {
  margin-bottom: 0px !important; }

.page-id-4143 .button-call-action .vc_btn3-container.vc_btn3-inline {
  width: 100%; }
  .page-id-4143 .button-call-action .vc_btn3-container.vc_btn3-inline:last-child {
    margin-bottom: 0px; }
  .page-id-4143 .button-call-action .vc_btn3-container.vc_btn3-inline .vc_general.vc_btn3 {
    width: 100%;
    text-transform: uppercase;
    font-weight: 600; }

/*********************
MAKE A PROMISE PAGE
*********************/
.make-a-promise {
  padding-left: 3rem;
  padding-right: 3rem; }
  .make-a-promise .hide-labels label {
    display: none !important; }
  .make-a-promise #gform_wrapper_5 {
    max-width: 100%;
    /*.story {
			    padding-top: 1px !important;
			}*/ }
    .make-a-promise #gform_wrapper_5 .gform_wrapper .top_label .gfield_label {
      display: none; }
    .make-a-promise #gform_wrapper_5 .gform_wrapper .gfield_error {
      border-top: 0px !important;
      border-bottom: 0px !important; }
    .make-a-promise #gform_wrapper_5 [type='text'], .make-a-promise #gform_wrapper_5 [type='password'], .make-a-promise #gform_wrapper_5 [type='date'], .make-a-promise #gform_wrapper_5 [type='datetime'], .make-a-promise #gform_wrapper_5 [type='datetime-local'], .make-a-promise #gform_wrapper_5 [type='month'], .make-a-promise #gform_wrapper_5 [type='week'], .make-a-promise #gform_wrapper_5 [type='email'], .make-a-promise #gform_wrapper_5 [type='number'], .make-a-promise #gform_wrapper_5 [type='search'], .make-a-promise #gform_wrapper_5 [type='tel'], .make-a-promise #gform_wrapper_5 [type='time'], .make-a-promise #gform_wrapper_5 [type='url'], .make-a-promise #gform_wrapper_5 [type='color'], .make-a-promise #gform_wrapper_5 textarea {
      font-style: italic;
      height: 51px !important;
      border: 0px !important;
      margin: 0px 0 !important;
      font-size: 18px;
      color: #444 !important;
      background-color: #ebebeb !important;
      box-shadow: none !important;
      padding-left: 10px; }
    .make-a-promise #gform_wrapper_5 textarea {
      height: 128px !important; }
    .make-a-promise #gform_wrapper_5 .ginput_container {
      margin-top: 13px; }
      .make-a-promise #gform_wrapper_5 .ginput_container input.medium, .make-a-promise #gform_wrapper_5 .ginput_container textarea.medium {
        width: 100% !important; }
    .make-a-promise #gform_wrapper_5 ::-webkit-input-placeholder {
      color: #444; }
    .make-a-promise #gform_wrapper_5 :-moz-placeholder {
      /* Firefox 18- */
      color: #444; }
    .make-a-promise #gform_wrapper_5 ::-moz-placeholder {
      /* Firefox 19+ */
      color: #444; }
    .make-a-promise #gform_wrapper_5 :-ms-input-placeholder {
      color: #444; }
    .make-a-promise #gform_wrapper_5 .gform_footer {
      padding: 0em 0 0em 0;
      margin: 20px 0 0 0; }
      .make-a-promise #gform_wrapper_5 .gform_footer .button {
        width: 100%;
        background: rgba(68, 68, 68, 0.5);
        text-transform: uppercase;
        font-size: 18px;
        font-weight: 600; }

.page-template-template-fill-width h1.page-title.epic {
  text-align: center; }

.page-template-template-fill-width .entry-content {
  padding: 3rem; }

/*********************
IMAGE GALLERY STYLES
*********************/
.gallery.gallery-columns-1 .gallery-item {
  float: left;
  width: 100%;
  text-align: center;
  margin: 0rem; }
  .gallery.gallery-columns-1 .gallery-item .gallery-icon {
    margin: 1rem; }

.gallery.gallery-columns-2 .gallery-item {
  float: left;
  width: 50%;
  text-align: center;
  margin: 0rem; }
  .gallery.gallery-columns-2 .gallery-item .gallery-icon {
    margin: 1rem; }

.gallery.gallery-columns-3 .gallery-item {
  float: left;
  width: 33.33333%;
  text-align: center;
  margin: 0rem; }
  .gallery.gallery-columns-3 .gallery-item .gallery-icon {
    margin: 1rem; }

.gallery.gallery-columns-4 .gallery-item {
  float: left;
  width: 25%;
  text-align: center;
  margin: 0rem; }
  .gallery.gallery-columns-4 .gallery-item .gallery-icon {
    margin: 1rem; }

.gallery.gallery-columns-5 .gallery-item {
  float: left;
  width: 20%;
  text-align: center;
  margin: 0rem; }
  .gallery.gallery-columns-5 .gallery-item .gallery-icon {
    margin: 1rem; }

.gallery.gallery-columns-6 .gallery-item {
  float: left;
  width: 16.66667%;
  text-align: center;
  margin: 0rem; }
  .gallery.gallery-columns-6 .gallery-item .gallery-icon {
    margin: 1rem; }

.gallery.gallery-columns-7 .gallery-item {
  float: left;
  width: 14.28571%;
  text-align: center;
  margin: 0rem; }
  .gallery.gallery-columns-7 .gallery-item .gallery-icon {
    margin: 1rem; }

.gallery.gallery-columns-8 .gallery-item {
  float: left;
  width: 12.5%;
  text-align: center;
  margin: 0rem; }
  .gallery.gallery-columns-8 .gallery-item .gallery-icon {
    margin: 1rem; }

.gallery.gallery-columns-9 .gallery-item {
  float: left;
  width: 11.11111%;
  text-align: center;
  margin: 0rem; }
  .gallery.gallery-columns-9 .gallery-item .gallery-icon {
    margin: 1rem; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/********************
SEARCH BOX
********************/
.search-box {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important; }
  .search-box.yellow {
    background-color: #edb048 !important; }
    .search-box.yellow h2.widgettitle {
      display: none; }
    .search-box.yellow label span.screen-reader-text {
      display: none; }
    .search-box.yellow [type='search'] {
      box-shadow: none;
      border: 0px; }
      .search-box.yellow [type='search']::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        color: #444; }
      .search-box.yellow [type='search']::-moz-placeholder {
        /* Firefox 19+ */
        vertical-align: middle;
        color: #444; }
      .search-box.yellow [type='search']:-ms-input-placeholder {
        /* IE 10+ */
        color: #444; }
      .search-box.yellow [type='search']:-moz-placeholder {
        /* Firefox 18- */
        color: #444; }
    .search-box.yellow input.search-submit.button {
      text-transform: uppercase;
      width: 100%;
      margin: 0 0 0rem 0; }

/*********************
SIDEBARS &amp; ASIDES
*********************/
.widget ul {
  margin: 0; }
  .widget ul li {
    list-style: none; }

/*********************
RESOURCES PAGE STYLE
*********************/
.intro-text {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 3rem; }

.accordions-resources .vc_tta-icon {
  display: inline-block;
  opacity: 0.35;
  margin-right: 0rem; }

.accordions-resources .vc_tta-panel-body {
  background: rgba(255, 255, 255, 0.1) !important;
  padding-top: 2rem;
  padding-bottom: 2rem; }
  .accordions-resources .vc_tta-panel-body p {
    font-size: inherit;
    line-height: 1.6;
    margin-bottom: 0rem; }
  .accordions-resources .vc_tta-panel-body a {
    color: #fff;
    text-decoration: normal; }

.accordions-resources.vc_tta-style-flat .vc_tta-panel.vc_active .vc_tta-panel-heading {
  background: rgba(255, 255, 255, 0.1) !important; }

.accordions-resources.vc_tta-style-flat .vc_tta-panel .vc_tta-heading, .accordions-resources.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-heading {
  background: rgba(255, 255, 255, 0.1) !important; }

.accordions-resources.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-heading h4 {
  font-weight: 600 !important; }

.page-template-template-rest-website-w-h .column-1 {
  padding: 0 5.9rem !important; }
  .page-template-template-rest-website-w-h .column-1 .boxes-with-icons {
    width: 100% !important;
    float: left;
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-bottom: 20px !important; }

.industries-accordions .vc_tta-container {
  margin-bottom: 0px; }

.industries-accordions .vc_tta-color-white.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-heading {
  background-color: transparent !important; }

.industries-accordions .vc_tta-color-white.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-title &gt; a {
  color: #fff !important;
  font-weight: 700; }

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  margin-top: 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(51, 51, 51, 0.5)), url("/wp-content/uploads/2016/11/footer-color.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover; }
  .footer .footer-content {
    padding: 80px 0 36px 0;
    margin-left: 1rem !important;
    margin-right: 1rem !important; }
  .footer .menu &gt; li {
    display: block;
    width: 56%; }
    .footer .menu &gt; li a {
      color: #c3c3c3;
      text-transform: uppercase;
      font-weight: 600;
      padding: 0.4rem 1rem;
      line-height: 1; }
      .footer .menu &gt; li a:hover {
        color: #1c1c1c;
        background: rgba(255, 255, 255, 0.27); }
  .footer .menu .active &gt; a {
    color: #1c1c1c;
    background: rgba(255, 255, 255, 0.27); }
  .footer .logo-footer {
    position: relative; }
    .footer .logo-footer .wpb_single_image.vc_align_center {
      width: 100%;
      position: absolute;
      bottom: 0;
      padding-right: 28px; }
  .footer .slogan {
    position: relative; }
    .footer .slogan p {
      color: #c3c3c3;
      font-size: 30px;
      line-height: 33px; }
    .footer .slogan .wpb_content_element:last-child {
      width: 100%;
      position: absolute;
      bottom: 0;
      right: 15px;
      text-align: right; }
    .footer .slogan .social-media .fa {
      font-size: 2.5rem; }
  .footer .copyright {
    color: #777;
    padding-bottom: 5px;
    font-size: 14px;
    background: #333;
    text-align: center;
    line-height: 18px;
    padding-top: 5px;
    font-weight: 600; }
    .footer .copyright p {
      margin-top: 0px;
      margin-bottom: 0px; }

.fa.fa-facebook-square {
  margin-right: 25px; }

/*********************
BROWSER COMPATIBILITY
*********************/
body.page-template-template-browser-overload .header, body.page-template-template-browser-overload .footer {
  display: none; }

body.page-template-template-browser-overload #content {
  margin: 80px 0 0;
  text-align: center;
  color: #444; }
  body.page-template-template-browser-overload #content h1 {
    font-size: 4rem !important;
    font-weight: 600 !important;
    line-height: 4rem !important;
    margin-bottom: 0 !important; }
    body.page-template-template-browser-overload #content h1.page-title.epic {
      display: none; }
  body.page-template-template-browser-overload #content h2 {
    font-weight: 600 !important; }
  body.page-template-template-browser-overload #content a {
    color: #e27638; }

/* CSS for responsive iframe */
/* ========================= */
/* outer wrapper: set max-width &amp; max-height; max-height greater than padding-bottom % will be ineffective and height will = padding-bottom % of max-width */
#Iframe-Master-CC-and-Rs {
  max-width: 512px;
  max-height: 100%;
  overflow: hidden; }

/* inner wrapper: make responsive */
.responsive-wrapper {
  position: relative;
  height: 0;
  /* gets height from padding-bottom */
  /* put following styles (necessary for overflow and scrolling handling on mobile devices) inline in .responsive-wrapper around iframe because not stable in CSS:
    -webkit-overflow-scrolling: touch; overflow: auto; */ }

.responsive-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none; }

/* padding-bottom = h/w as % -- sets aspect ratio */
/* YouTube video aspect ratio */
.responsive-wrapper-wxh-572x612 {
  padding-bottom: 107%; }

/* general styles */
/* ============== */
.set-border {
  border: 5px inset #4f4f4f; }

.set-box-shadow {
  box-shadow: 4px 4px 14px #4f4f4f; }

.set-padding {
  padding: 40px; }

.set-margin {
  margin: 30px; }

.center-block-horiz {
  margin-left: auto !important;
  margin-right: auto !important; }

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

/*********************
HERO VIDEO STYLES
*********************/
.hero-video .responsive_video_overflow {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
  z-index: 0; }
  .hero-video .responsive_video_overflow video::-webkit-media-controls {
    display: none !important; }
  .hero-video .responsive_video_overflow video {
    width: 100%; }
  .hero-video .responsive_video_overflow .responsive_video_container {
    height: 500px; }
    .hero-video .responsive_video_overflow .responsive_video_container .responsive_video_overlay {
      overflow: hidden;
      position: absolute;
      left: 0px;
      top: 0px;
      width: 100%;
      height: 100%;
      z-index: 1;
      background-color: rgba(0, 0, 0, 0.25); }
    .hero-video .responsive_video_overflow .responsive_video_container .hero-content {
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1;
      -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=$percent);
      filter: progid:DXImageTransform.Microsoft.Alpha(opacity=$percent);
      filter: alpha(opacity=100);
      position: absolute;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 100%;
      z-index: 9; }
      .hero-video .responsive_video_overflow .responsive_video_container .hero-content .columns:first-child {
        display: table;
        height: 100%; }
        .hero-video .responsive_video_overflow .responsive_video_container .hero-content .columns:first-child &gt; .wpb_wrapper {
          display: table-cell;
          vertical-align: middle; }
      .hero-video .responsive_video_overflow .responsive_video_container .hero-content .hero-video-text-overlay {
        margin-bottom: 0; }
        .hero-video .responsive_video_overflow .responsive_video_container .hero-content .hero-video-text-overlay .wpb_text_column.wpb_content_element {
          width: 65%;
          margin: 0 auto; }
          .hero-video .responsive_video_overflow .responsive_video_container .hero-content .hero-video-text-overlay .wpb_text_column.wpb_content_element h1 {
            font-family: "kaleko105book";
            color: #FFF;
            line-height: 1;
            text-align: center;
            letter-spacing: .2em;
            text-transform: uppercase; }
          .hero-video .responsive_video_overflow .responsive_video_container .hero-content .hero-video-text-overlay .wpb_text_column.wpb_content_element h2 {
            text-transform: lowercase;
            font-family: 'Dancing Script', cursive;
            color: #fff; }
      .hero-video .responsive_video_overflow .responsive_video_container .hero-content .button {
        position: absolute !important;
        bottom: 0px;
        right: 0px; }

/*********************
POST CATEGORY SINGLE
*********************/
.archive.category #inner-content .taxonomy-description {
  width: 90%;
  float: left;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  margin: 0 auto;
  text-align: left;
  float: none !important;
  padding-bottom: 4rem; }
  @media screen and (min-width: 40em) {
    .archive.category #inner-content .taxonomy-description {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
  .archive.category #inner-content .taxonomy-description:last-child:not(:first-child) {
    float: right; }
  @media screen and (min-width: 40em) {
    .archive.category #inner-content .taxonomy-description {
      width: 75%;
      float: left;
      padding-left: 0.625rem;
      padding-right: 0.625rem; } }
  @media screen and (min-width: 40em) and (min-width: 40em) {
    .archive.category #inner-content .taxonomy-description {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
  @media screen and (min-width: 40em) {
      .archive.category #inner-content .taxonomy-description:last-child:not(:first-child) {
        float: right; } }
  @media screen and (min-width: 64em) {
    .archive.category #inner-content .taxonomy-description {
      width: 65%;
      float: left;
      padding-left: 0.625rem;
      padding-right: 0.625rem; } }
  @media screen and (min-width: 64em) and (min-width: 40em) {
    .archive.category #inner-content .taxonomy-description {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
  @media screen and (min-width: 64em) {
      .archive.category #inner-content .taxonomy-description:last-child:not(:first-child) {
        float: right; } }
  @media screen and (min-width: 75em) {
    .archive.category #inner-content .taxonomy-description {
      width: 55%;
      float: left;
      padding-left: 0.625rem;
      padding-right: 0.625rem; } }
  @media screen and (min-width: 75em) and (min-width: 40em) {
    .archive.category #inner-content .taxonomy-description {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
  @media screen and (min-width: 75em) {
      .archive.category #inner-content .taxonomy-description:last-child:not(:first-child) {
        float: right; } }

.archive.category #inner-content #main {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center; }

@media screen and (max-width: 320rem) {
  .off-canvas-wrapper {
    max-width: 1920px;
    margin: 0 auto;
    background: #fff; }
    .off-canvas-wrapper .off-canvas-content {
      box-shadow: none; }
  .row .clean-blue.column, .row .clean-blue.columns, .row .clean-blue.columns {
    margin-left: -10%;
    width: 39%; }
  .row-without-padding-side .featured-articles {
    width: 47%; }
  .kirby-brown-img {
    width: 24%; }
    .kirby-brown-img .kirby-brown-image img {
      max-width: 64%; }
  /**
	.feat_img {
		height: 1270px;
	}

	.row .clean-blue.column, .row .clean-blue.columns {
    margin-left: -8%;
    width: 37%;
	}

	.row-without-padding-side {
		h2 {
			padding-bottom:35%;
		}
		.featured-articles {
    	width: 47%;
    	}
	}

	.kirby-brown-img {
		.kirby-brown-image {
			img {
				max-width: 70%;
			}
		}
	}

	.footer {
		.footer-content {
    		padding: 100px 0 49px 0;
    	}
	}
	***/
  .page-template-template-rest-website-w-h .column-1 {
    padding: 0px 14.5% !important; } }

@media screen and (max-width: 256rem) {
  /**
	.feat_img {
		height: 1067px;
	}

	.row .clean-blue.column, .row .clean-blue.columns {
    margin-left: -9%;
    width: 37%;
	}

	.row-without-padding-side {
		h2 {
			padding-bottom:35%;
		}
		.featured-articles {
    	width: 50%;
    	}
	}

	.kirby-brown-img {
		width: 22%;

		.kirby-brown-image {
			img {
				max-width: 62%;
			}
		}
	}

	.footer {
		.footer-content {
    		padding: 100px 0 49px 0;
    	}
	}
	**/ }

@media screen and (max-width: 160rem) {
  /**
	.off-canvas-wrapper {
    width: 100%;
    margin: 0;
    background: #fff;
    	.off-canvas-content {
    		box-shadow: none;
    	}
	} 
	.row .clean-blue.column, .row .clean-blue.columns {
    margin-left: -10%;
    width: 39%;
	}

	.row-without-padding-side .featured-articles {
    width: 47%;
	}

	.kirby-brown-img {
		width: 24%;
		.kirby-brown-image {
			img {
				max-width: 64%;
			}
		}
	}

	.footer {
		.footer-content {
    		padding: 80px 0 33px 0;
    	}
	}
	**/ }

@media screen and (max-width: 120rem) {
  .off-canvas-wrapper {
    max-width: 100%; }
  .feat_img {
    height: 717px; }
  .row-without-padding-side h2 {
    padding-bottom: 25%;
    line-height: 36pt;
    font-size: 30pt; } }

@media screen and (max-width: 1700px) {
  .row .clean-blue.column, .row .clean-blue.columns, .row .clean-blue.columns {
    margin-left: -3%;
    width: 37%; }
  .row-without-padding-side h2 {
    line-height: 31pt;
    font-size: 25pt; }
  .row-without-padding-side .featured-articles {
    width: 42%; }
    .row-without-padding-side .featured-articles .vc_col-sm-7 {
      width: 48%; }
  .kirby-brown-img .kirby-brown-image img {
    max-width: 88%; }
  body.ie-11-or-newer .kirby-brown-img .kirby-brown-image img {
    max-width: 60%; }
  body.ie-10-or-below .kirby-brown-img .kirby-brown-image img {
    max-width: 60%; } }

@media screen and (max-width: 1691px) {
  .page-template-template-rest-website-w-h .columns .boxes-with-icons {
    width: 75%; }
  .page-template-template-rest-website-w-h .column-1 {
    padding: 0 11.9% !important; } }

@media screen and (max-width: 1487px) {
  .page-template-template-rest-website-w-h .columns .boxes-with-icons {
    width: 85%; }
  .page-template-template-rest-website-w-h .column-1 {
    padding: 0 6.9% !important; } }

@media screen and (max-width: 1443px) {
  .page-template-template-rest-website .ss-tab-top {
    font-size: 34px; } }

@media screen and (max-width: 90rem) {
  .row .clean-blue.column, .row .clean-blue.columns, .row .clean-blue.columns {
    margin-left: -3%;
    width: 37%; }
  .row-without-padding-side h2 {
    line-height: 26pt;
    font-size: 20pt; }
  .row-without-padding-side .featured-articles {
    width: 42%; }
  .kirby-brown-img .kirby-brown-image img {
    max-width: 95%; }
  body.ie-11-or-newer .kirby-brown-img .kirby-brown-image img {
    max-width: 52%; }
  body.ie-10-or-below .kirby-brown-img .kirby-brown-image img {
    max-width: 52%; } }

@media screen and (max-width: 1402px) {
  .page-template-template-rest-website-w-h .columns .boxes-with-icons {
    width: 90%; }
  .page-template-template-rest-website-w-h .column-1 {
    padding: 0 4% !important; } }

@media screen and (max-width: 1328px) {
  .page-template-template-rest-website-w-h .columns .boxes-with-icons {
    min-height: 155px; } }

@media screen and (max-width: 1265px) {
  .single-post .byline .column.author, .single-post .byline .author.columns {
    text-align: center;
    width: 25%; }
  .single-post .byline .author.columns {
    text-align: center;
    width: 25%; } }

@media screen and (max-width: 75rem) {
  .feat_img .slogan-header h1 {
    line-height: 43pt;
    font-size: 34pt; }
  .feat_img .slogan-header p {
    line-height: 26px;
    font-size: 23px; }
  .row .clean-blue.columns {
    padding: 20px 36px 0px; }
    .row .clean-blue.columns p {
      font-size: 15px;
      padding-bottom: 0.5rem; }
  .row .kirby-brown-img .kirby-brown-image img {
    max-width: 100%; }
  .group-photo-contain .vc_column-inner {
    background-size: contain !important; } }

@media screen and (max-width: 1178px) {
  .single-post .vc_custom_1471609035740 .vc_gitem-post-category-name {
    font-size: 17px;
    line-height: 20px; }
  #joints-related-posts .vc_grid-item.vc_clearfix.vc_col-sm-3 {
    width: 50%;
    margin-bottom: 30px; } }

@media screen and (max-width: 1173px) {
  .single-post .byline .column.author, .single-post .byline .author.columns {
    text-align: center;
    width: 27%; }
  .single-post .byline .author.columns {
    text-align: center;
    width: 27%; }
  .vc_custom_1473090187801, .vc_custom_1473093283761 {
    padding: 10% !important; } }

@media screen and (max-width: 1135px) {
  .newsletter .gform_wrapper ul li.gfield:first-child {
    line-height: 17px !important; } }

@media screen and (max-width: 1113px) {
  .featured-articles .vc_col-sm-4 {
    width: 35% !important; }
  .featured-articles .vc_gitem-post-data-source-post_title {
    font-size: 12pt; }
  .featured-articles .vc_gitem-post-data-source-post_date {
    font-size: 12pt; }
  .featured-articles .vc_gitem-post-category-name {
    font-size: 9.8pt; } }

@media screen and (max-width: 1100px) {
  .top-bar ul li {
    padding: 19px 10px; }
  .row .clean-blue.column, .row .clean-blue.columns, .row .clean-blue.columns {
    margin-left: -3%;
    width: 37%; }
  .row-without-padding-side .featured-articles {
    width: 40%; }
  .kirby-brown-img {
    width: 27%; }
    .kirby-brown-img .kirby-brown-image img {
      max-width: 100%; }
  .footer .menu &gt; li {
    width: 65%; } }

@media screen and (max-width: 1094px) {
  .single-post .byline .column.author, .single-post .byline .author.columns {
    text-align: center;
    width: 28%; }
  .single-post .byline .author.columns {
    text-align: center;
    width: 28%; } }

@media screen and (max-width: 1090px) {
  .page-template-template-rest-website-w-h .columns .boxes-with-icons {
    min-height: 179px; } }

@media screen and (max-width: 1058px) {
  .single-post .byline .column.author, .single-post .byline .author.columns {
    text-align: center;
    width: 29%; }
  .single-post .byline .author.columns {
    text-align: center;
    width: 29%; } }

@media screen and (max-width: 1038px) {
  .archive .vc_gitem-post-data-source-post_title, .category .vc_gitem-post-data-source-post_title {
    height: 100px; } }

@media screen and (max-width: 64rem) {
  .feat_img {
    height: 589px; }
    .feat_img .slogan-header h1 {
      line-height: 43pt;
      font-size: 34pt; }
  .row .vc_col-has-fill &gt; .vc_column-inner .wpb_wrapper .vc_btn3-container.vc_btn3-inline a {
    font-size: 12px;
    padding: 14px 15px; }
  .row .clean-blue.columns {
    margin-left: -6%;
    width: 36%;
    padding: 20px 33px 0px; }
    .row .clean-blue.columns p {
      font-size: 14px;
      padding-bottom: 0.5rem; }
    .row .clean-blue.columns .vc_btn3-container.vc_btn3-inline {
      margin-bottom: 20px; }
  .row-without-padding-side .kirby-brown-img {
    width: 31%; }
    .row-without-padding-side .kirby-brown-img .kirby-brown-image img {
      max-width: 100%; }
  .row-without-padding-side .featured-articles {
    width: 38%; }
    .row-without-padding-side .featured-articles .vc_gitem-row-position-top .vc_col-sm-2 {
      width: 30.666667%; }
    .row-without-padding-side .featured-articles .vc_gitem-row-position-top .vc_col-sm-4 .vc_gitem-post-data.vc_gitem-post-data-source-post_categories {
      display: none; }
    .row-without-padding-side .featured-articles .vc_gitem-row-position-middle .large-offset-2 {
      margin-left: 30%; }
    .row-without-padding-side .featured-articles .vc_gitem-row-position-bottom .vc_col-sm-4 {
      width: 20% !important;
      position: relative;
      top: -14px !important; }
      .row-without-padding-side .featured-articles .vc_gitem-row-position-bottom .vc_col-sm-4 .vc_btn3-container {
        margin-bottom: 1.74px; }
      .row-without-padding-side .featured-articles .vc_gitem-row-position-bottom .vc_col-sm-4 .vc_btn3.vc_btn3-size-lg {
        height: 85px;
        font-size: 58px;
        padding: 20px 5px;
        line-height: 0px; }
  .row-without-padding-side .vc_gitem-post-data-source-post_date {
    font-size: 13px;
    line-height: 12px; }
  .row-without-padding-side .vc_gitem-post-category-name {
    font-size: 14px !important;
    line-height: 14px; }
  .row-without-padding-side .vc_gitem-post-data-source-post_title {
    font-size: 15px;
    font-weight: 600; }
  .row-without-padding-side .kirby-brown-img .kirby-brown-image {
    margin-left: -20px;
    margin-top: 0px; }
  .newsletter {
    max-width: 103.5%; }
  .page-template-template-rest-website-w-h .columns .boxes-with-icons {
    min-height: 140px;
    float: none;
    width: 80%;
    margin: 0px auto 20px !important; }
    .page-template-template-rest-website-w-h .columns .boxes-with-icons.right {
      float: none; }
  .page-template-template-rest-website-w-h .column-1 {
    padding: 0 10% !important; }
  .page-id-4143 .button-call-action .vc_btn3-container.vc_btn3-inline:first-child {
    margin-top: 20px; }
  .height-consistency {
    min-height: 350px; }
    .height-consistency .vc_custom_1473712179115 {
      background-position: 50% 18% !important; } }

@media screen and (max-width: 1095px) {
  .top-bar ul li {
    font-size: 13pt; }
    .top-bar ul li ul {
      top: 55px !important; } }

@media screen and (max-width: 1025px) {
  .single-post .byline .column.author, .single-post .byline .author.columns {
    text-align: center;
    width: 33.3333%;
    margin: 0 auto; }
  .single-post .byline .author.columns {
    text-align: center;
    width: 33.3333%;
    margin: 0 auto; } }

@media screen and (max-width: 1023px) {
  .vc_column-inner.vc_custom_1491333375880 {
    margin-left: 0px !important;
    margin-bottom: 20px !important; }
  .vc_column-inner.vc_custom_1491333380435 {
    margin-left: 0px !important; } }

@media screen and (max-width: 925px) {
  .top-bar ul li {
    font-size: 12pt; }
    .top-bar ul li ul {
      top: 54px !important; }
  .feat_img .slogan-header h1 {
    line-height: 41pt;
    font-size: 31pt; }
  .feat_img .slogan-header p {
    line-height: 22px;
    font-size: 19px; }
  .row-without-padding-side .kirby-brown-img {
    width: 34%; }
  .row-without-padding-side .row .clean-blue.columns {
    padding: 20px 25px 0px; }
  .row-without-padding-side .featured-articles {
    width: 37%;
    padding-left: 1rem !important; }
  .footer .menu &gt; li {
    width: 100%; } }

@media screen and (max-width: 904px) {
  .row-without-padding-side .kirby-brown-img .kirby-brown-image {
    margin-left: -60px; }
  .newsletter .gform_wrapper ul li.gfield:first-child {
    font-size: 11pt; } }

@media screen and (max-width: 900px) {
  .page-template-template-rest-website .ss-tab-top {
    font-size: 29px; }
  .page-template-template-rest-website #board-directors .biography .name, .page-template-template-rest-website #staff .biography .name {
    margin-bottom: 0.25rem; }
  .page-template-template-rest-website #board-directors .biography .position, .page-template-template-rest-website #staff .biography .position {
    position: relative;
    top: 0px;
    right: 0px;
    margin-bottom: 0.5rem;
    text-align: left; } }

@media screen and (max-width: 879px) {
  .top-bar ul li {
    font-size: 11pt; }
    .top-bar ul li ul {
      top: 52px !important; }
  .feat_img .slogan-header h1 {
    line-height: 38pt;
    font-size: 28pt; }
  .feat_img .slogan-header p {
    line-height: 21px;
    font-size: 17px; }
  .row-without-padding-side .vc_gitem-post-data-source-post_title {
    font-size: 13px; }
  .row-without-padding-side .vc_gitem-row-position-bottom .vc_col-sm-4 {
    margin-left: 80%;
    top: -25px !important; }
    .row-without-padding-side .vc_gitem-row-position-bottom .vc_col-sm-4 .vc_btn3.vc_btn3-size-lg {
      height: 75px; } }

@media screen and (max-width: 844px) {
  .feat_img .slogan-header h1 {
    line-height: 35pt;
    font-size: 25pt; }
  .feat_img .slogan-header p {
    line-height: 20px;
    font-size: 16px; }
  .row .clean-blue.columns {
    padding: 20px 20px 0px; }
  .row-without-padding-side .featured-articles {
    width: 36%; }
  .newsletter .gform_wrapper ul li.gfield:first-child {
    font-size: 10pt; }
  .footer .slogan p {
    font-size: 25px;
    line-height: 30px; } }

@media screen and (max-width: 834px) {
  .row-without-padding-side .kirby-brown-img {
    width: 31%;
    margin-left: 0px; }
    .row-without-padding-side .kirby-brown-img h3 {
      font-size: 19pt;
      width: 100%; }
    .row-without-padding-side .kirby-brown-img .title-image-kirby {
      left: -2%; }
    .row-without-padding-side .kirby-brown-img .kirby-brown-image {
      bottom: 1px;
      margin-left: -20px; }
  .row-without-padding-side .clean-blue.columns {
    margin-left: -3%;
    width: 72%;
    padding: 20px 33px 0px; }
  .row-without-padding-side .featured-articles {
    width: 100%;
    padding: 20px 0px 0px 0px !important; }
    .row-without-padding-side .featured-articles .vc_gitem-row-position-top .vc_col-sm-2 {
      width: 16.66666667%; }
    .row-without-padding-side .featured-articles .vc_gitem-row-position-top .vc_col-sm-4 .vc_gitem-post-data-source-post_categories {
      display: inline-block !important;
      float: right;
      line-height: 8px;
      padding-right: 20%; }
    .row-without-padding-side .featured-articles .vc_gitem-row-position-middle .large-offset-2 {
      margin-left: 16.5%; } }

@media screen and (max-width: 828px) {
  .row-without-padding-side h2 {
    font-size: 19pt; } }

@media screen and (max-width: 819px) {
  .row .vc_col-has-fill &gt; .vc_column-inner .wpb_wrapper .vc_btn3-container.vc_btn3-inline a {
    padding: 14px 10px; }
  .top-bar ul li {
    font-size: 10pt; }
    .top-bar ul li ul {
      top: 50px !important; } }

@media screen and (max-width: 801px) {
  .feat_img .slogan-header h1 {
    line-height: 34pt;
    font-size: 24pt; }
  .feat_img .slogan-header p {
    line-height: 19px;
    font-size: 15px; }
  .newsletter .gform_wrapper ul li.gfield:last-child {
    width: 33.33333%; }
  .newsletter .gform_wrapper input[type=text] {
    font-size: 11pt; }
  .vc_custom_1473090187801, .vc_custom_1473093283761 {
    padding: 7% !important; } }

@media screen and (max-width: 799px) {
  .single-post .byline .column, .single-post .byline .columns {
    text-align: center;
    width: 100%;
    display: inline-block !important; }
    .single-post .byline .column.author, .single-post .byline .author.columns {
      text-align: center;
      width: 170px;
      margin: 30px auto 20px; }
    .single-post .byline .column.the-category, .single-post .byline .the-category.columns {
      text-align: center;
      display: inline-block; }
  .single-post .byline .author.columns {
    text-align: center;
    width: 33.33333%;
    margin: 0 auto; } }

@media screen and (max-width: 780px) {
  .feat_img .slogan-header {
    width: 50%; }
    .feat_img .slogan-header h1 {
      line-height: 30pt;
      font-size: 20pt; }
    .feat_img .slogan-header p {
      line-height: 19px;
      font-size: 15px; }
  .page-template-template-rest-website .feat_img .slogan-header p, .page-template-template-rest-website-w-h .feat_img .slogan-header p {
    font-size: 15px;
    line-height: 19px; }
  .page-template-template-rest-website .feat_img .breadcrumbs, .page-template-template-rest-website-w-h .feat_img .breadcrumbs {
    padding-right: 2.5rem; }
    .page-template-template-rest-website .feat_img .breadcrumbs li, .page-template-template-rest-website-w-h .feat_img .breadcrumbs li {
      font-size: 14.5px; }
  .newsletter .gform_wrapper ul li.gfield:first-child {
    font-size: 9pt;
    line-height: 19px !important; } }

@media screen and (max-width: 48rem) {
  .top-bar ul li {
    padding: 19px 6px;
    font-size: 9pt; }
    .top-bar ul li ul {
      top: 50px !important; }
  .vc_tta.vc_general .vc_tta-panel-title &gt; a {
    color: #fff !important;
    font-size: 29px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center; }
  .vc_tta-color-grey.vc_tta-style-flat.vc_tta-tabs .vc_tta-panels .vc_tta-panel-body {
    border-color: transparent !important;
    background-color: transparent !important; }
  .vc_tta-color-grey.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-heading {
    background-color: transparent !important; }
  .page-template-default .vc_custom_1471609035740 .vc_col-sm-6, .archive .vc_custom_1471609035740 .vc_col-sm-6, .category .vc_custom_1471609035740 .vc_col-sm-6 {
    width: 50%;
    float: left; }
  .vc_responsive .vc_grid-filter {
    display: inherit !important; }
  .single-post .vc_custom_1471609035740 .vc_gitem-post-data-source-post_title h4 {
    height: auto; }
  .single-post .vc_custom_1471609035740 .vc_gitem-post-category-name {
    font-size: 17px;
    line-height: 20px; }
  #joints-related-posts .vc_grid-item.vc_clearfix.vc_col-sm-3 {
    width: 100%;
    margin-bottom: 30px; }
  .page-template-template-rest-website-w-h #Events-contents .images-inside-accordions h2, .page-template-template-rest-website-w-h #Online-contents .images-inside-accordions h2, .page-template-template-rest-website-w-h #Print-media-content .images-inside-accordions h2 {
    font-size: 2rem;
    line-height: 1; }
  .page-template-template-rest-website-w-h #Events-contents .images-inside-accordions p, .page-template-template-rest-website-w-h #Online-contents .images-inside-accordions p, .page-template-template-rest-website-w-h #Print-media-content .images-inside-accordions p {
    font-size: 1.4rem;
    line-height: 1.2 !important;
    margin-top: 10px; } }

@media screen and (max-width: 736px) {
  .off-canvas-content, .off-canvas-content {
    box-shadow: none; }
  .feat_img .slogan-header h1 {
    line-height: 29pt;
    font-size: 19pt; }
  .feat_img .slogan-header p {
    line-height: 19px;
    font-size: 15px; }
  .row-without-padding-side h2 {
    font-size: 15pt;
    line-height: 21pt; }
  .row-without-padding-side .row .vc_col-has-fill &gt; .vc_column-inner .wpb_wrapper .vc_btn3-container.vc_btn3-inline a {
    font-size: 10px;
    padding: 14px 7px; }
  .row-without-padding-side .kirby-brown-img h3 {
    font-size: 17pt; }
  .row-without-padding-side .featured-articles .vc_column-inner {
    width: 100%; }
  .row-without-padding-side .featured-articles .vc_gitem_row .vc_gitem-col {
    padding: 0px; }
  .row-without-padding-side .featured-articles .vc_gitem-row-position-top .vc_col-sm-2 {
    width: 19.666667%; }
  .row-without-padding-side .featured-articles .vc_gitem-row-position-top .vc_col-sm-4 .vc_gitem-post-data-source-post_categories {
    padding-right: 5%; }
  .row-without-padding-side .featured-articles .vc_gitem-row-position-middle .large-offset-2 {
    margin-left: 19.5%; }
  .row-without-padding-side .featured-articles .vc_gitem-row-position-bottom .vc_col-sm-4 {
    top: -35px !important;
    margin-left: 92%; }
  .newsletter {
    max-width: 105.5%; }
    .newsletter .gform_wrapper ul li.gfield {
      width: 100%; }
      .newsletter .gform_wrapper ul li.gfield:first-child {
        padding-bottom: 15px;
        text-align: center;
        font-size: 13pt; }
      .newsletter .gform_wrapper ul li.gfield:last-child {
        width: 100%; }
    .newsletter .gform_wrapper .ginput_container {
      margin-bottom: 10px;
      width: 100% !important; }
      .newsletter .gform_wrapper .ginput_container input.large {
        width: 100% !important;
        text-align: center; }
    .newsletter .gform_footer {
      margin: 1em 0 !important; }
      .newsletter .gform_footer .button {
        width: 97% !important; }
  .footer .slogan .wpb_content_element {
    width: 80%;
    right: 28px; }
  .footer .slogan p {
    font-size: 17px;
    line-height: 24px; } }

@media screen and (max-width: 723px) {
  .page-template-template-rest-website .ss-tab-top {
    padding: 10px 10px !important;
    font-size: 25px; } }

@media screen and (max-width: 701px) {
  .feat_img .slogan-header {
    width: 50%;
    padding-top: 9rem; } }

@media screen and (max-width: 682px) {
  .row-without-padding-side .row .vc_col-has-fill &gt; .vc_column-inner .wpb_wrapper .vc_btn3-container.vc_btn3-inline a {
    font-size: 10px;
    padding: 14px 4px; } }

@media screen and (max-width: 663px) {
  .row-without-padding-side .row .vc_col-has-fill &gt; .vc_column-inner .wpb_wrapper .vc_btn3-container.vc_btn3-inline a {
    font-size: 9.5px;
    padding: 14px 4px; } }

@media screen and (max-width: 641px) {
  .row-without-padding-side .row .vc_col-has-fill &gt; .vc_column-inner .wpb_wrapper .vc_btn3-container.vc_btn3-inline a {
    font-size: 9px;
    padding: 14px 3px; } }

@media screen and (max-width: 40rem) {
  .off-canvas-wrapper {
    background: #e1e2e5; }
    .off-canvas-wrapper .off-canvas-content {
      box-shadow: 0 0 10px rgba(10, 10, 10, 0.5); }
  .top-bar ul li {
    padding: 19px 6px;
    font-size: 9pt; }
    .top-bar ul li ul {
      top: 50px !important; }
  .top-bar .top-bar-up img.logo {
    padding-top: 7px; }
  .feat_img {
    height: 660px; }
  .row-without-padding-side .columns {
    padding-right: 1rem; }
  .row-without-padding-side h2 {
    font-size: 20pt;
    padding-bottom: 25%;
    line-height: 26pt; }
  .row-without-padding-side .row .vc_col-has-fill &gt; .vc_column-inner .wpb_wrapper .vc_btn3-container.vc_btn3-inline a {
    font-size: 16px;
    padding: 14px 15px; }
  .row-without-padding-side .kirby-brown-img {
    width: 40%;
    margin-left: 0px; }
    .row-without-padding-side .kirby-brown-img h3 {
      font-size: 19pt;
      width: 100%; }
    .row-without-padding-side .kirby-brown-img .title-image-kirby {
      left: -2%; }
    .row-without-padding-side .kirby-brown-img .kirby-brown-image {
      bottom: 1px; }
  .row-without-padding-side .clean-blue.columns {
    margin-left: -3%;
    width: 63%;
    padding: 20px 25px 0px; }
    .row-without-padding-side .clean-blue.columns .vc_btn3-container.vc_btn3-inline {
      margin-bottom: 20px; }
  .row-without-padding-side .featured-articles {
    width: 100%;
    padding: 20px 0px 0px 0px !important; }
  .footer .slogan .wpb_content_element {
    width: 30%; }
  .height-consistency {
    height: 350px; }
    .height-consistency .vc_custom_1472147249779 {
      background-position: 100% 6% !important; }
    .height-consistency .vc_custom_1472147266673 {
      background-position: 100% 23% !important; } }

@media screen and (max-width: 639px) {
  .page-template-default .row .sidebar-blog {
    padding-left: 0px;
    margin-top: 25px; }
  .archive .vc_grid-item.vc_clearfix.vc_col-sm-6, .category .vc_grid-item.vc_clearfix.vc_col-sm-6 {
    padding-left: 0px !important;
    padding-right: 0px !important; }
  .page-id-4143 .padding-right-on {
    padding-right: 0px !important; } }

@media screen and (max-width: 568px) {
  .off-canvas-content, .off-canvas-content {
    box-shadow: none; }
  .row-without-padding-side .columns {
    padding-left: 1.9375rem;
    padding-right: 1.9375rem; }
    .row-without-padding-side .columns:last-child {
      padding-right: 1.9375rem; }
  .row-without-padding-side .featured-articles .vc_column-inner {
    width: 100%; }
    .row-without-padding-side .featured-articles .vc_column-inner .wpb_single_image img {
      max-width: 80%; }
    .row-without-padding-side .featured-articles .vc_column-inner .wpb_content_element {
      width: 103%; }
  .row-without-padding-side .featured-articles .vc_gitem_row .vc_gitem-col {
    padding: 0px; }
  .row-without-padding-side .featured-articles .vc_gitem-row-position-top .vc_col-sm-2 {
    width: 19.666667%; }
  .row-without-padding-side .featured-articles .vc_gitem-row-position-top .vc_col-sm-4 .vc_gitem-post-data-source-post_categories {
    padding-right: 20%; }
  .row-without-padding-side .featured-articles .vc_gitem-row-position-middle .large-offset-2 {
    margin-left: 19.5%; }
  .row-without-padding-side .featured-articles .vc_gitem-row-position-bottom .vc_col-sm-4 {
    top: -35px !important;
    margin-left: 86%; }
  .row-without-padding-side .clean-blue .columns {
    margin-left: 0%;
    width: 69%; }
  .columns {
    padding-left: 0rem;
    padding-right: 0rem; }
  .vc_row.newsletter {
    margin-left: 0px !important;
    margin-right: 0px !important; }
  .newsletter {
    max-width: 102.5%; }
  .footer .menu &gt; li {
    width: 100%;
    text-align: center; }
  .footer .logo-footer .wpb_single_image.vc_align_center {
    position: relative;
    padding: 20px 0;
    padding-right: 0; }
  .footer .slogan .wpb_content_element {
    position: relative;
    text-align: center;
    right: 0px;
    width: 100%; }
  .footer .slogan p {
    font-size: 30px;
    line-height: 33px; } }

@media screen and (max-width: 550px) {
  .feat_img {
    height: 717px; }
  .row-without-padding-side .kirby-brown-img {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important; }
    .row-without-padding-side .kirby-brown-img .kirby-brown-image {
      margin: 0 auto;
      position: relative;
      bottom: 0;
      text-align: center;
      float: none; }
  .row-without-padding-side .clean-blue.columns {
    margin-left: 0%;
    width: 100%; }
  .row-without-padding-side .columns {
    padding-left: 1.9375rem;
    padding-right: 1.9375rem; }
    .row-without-padding-side .columns:last-child {
      padding-right: 1.9375rem; }
  .row-without-padding-side .featured-articles .vc_column-inner {
    width: 100%; }
    .row-without-padding-side .featured-articles .vc_column-inner .wpb_single_image img {
      max-width: 80%; }
    .row-without-padding-side .featured-articles .vc_column-inner .wpb_content_element {
      width: 103%; }
  .row-without-padding-side .featured-articles .vc_gitem_row .vc_gitem-col {
    padding: 0px; }
  .feat_img .slogan-header {
    padding-top: 6rem; }
    .feat_img .slogan-header h1 {
      line-height: 26pt;
      font-size: 21pt; }
  .columns {
    padding-left: 0rem;
    padding-right: 0rem; }
  .vc_row.newsletter {
    margin-left: 0px !important;
    margin-right: 0px !important; }
  .newsletter .gform_wrapper ul li.gfield:first-child {
    padding-bottom: 15px;
    text-align: center; }
  .newsletter .gform_wrapper .ginput_container {
    margin-bottom: 10px;
    width: 100% !important; }
    .newsletter .gform_wrapper .ginput_container input.large {
      width: 100% !important;
      text-align: center; }
  .footer .menu &gt; li {
    width: 100%;
    text-align: center; }
  .footer .logo-footer .wpb_single_image.vc_align_center {
    position: relative;
    padding: 20px 0;
    padding-right: 0; }
  .footer .slogan .wpb_content_element {
    position: relative;
    text-align: center;
    right: 0px; } }

@media screen and (max-width: 540px) {
  .page-template-template-rest-website .feat_img .slogan-header, .page-template-template-rest-website-w-h .feat_img .slogan-header {
    width: 82%; }
    .page-template-template-rest-website .feat_img .slogan-header.breadcrumbssf, .page-template-template-rest-website-w-h .feat_img .slogan-header.breadcrumbssf {
      display: none; }
    .page-template-template-rest-website .feat_img .slogan-header h1, .page-template-template-rest-website-w-h .feat_img .slogan-header h1 {
      text-align: center;
      line-height: 40pt;
      font-size: 30pt; }
    .page-template-template-rest-website .feat_img .slogan-header p, .page-template-template-rest-website-w-h .feat_img .slogan-header p {
      text-align: center;
      font-size: 18px;
      line-height: 21px; }
  .page-template-template-rest-website-w-h .ss-tab-top {
    font-size: 30px; }
  .images-inside-accordions h2 {
    font-size: 28px;
    line-height: 33px; }
  .images-inside-accordions p {
    font-size: 22px; } }

@media screen and (max-width: 480px) {
  .page-template-template-rest-website-w-h .vc_custom_1473093283761 .ginput_container {
    margin-bottom: 10px;
    width: 100% !important; }
    .page-template-template-rest-website-w-h .vc_custom_1473093283761 .ginput_container input.medium, .page-template-template-rest-website-w-h .vc_custom_1473093283761 .ginput_container textarea.medium {
      width: 100% !important; }
  .page-template-template-rest-website-w-h .vc_custom_1473093283761 .gform_footer .button {
    width: 100% !important; }
  .tell-us-your-story #gform_wrapper_3 .ginput_container {
    width: 100% !important; }
  .tell-us-your-story #gform_wrapper_3 .gform_footer .button {
    width: 100% !important; } }

@media screen and (max-width: 450px) {
  .featured-articles .vc_gitem-row-position-bottom .vc_col-sm-4 {
    top: -59px !important;
    margin-left: 83%; }
    .featured-articles .vc_gitem-row-position-bottom .vc_col-sm-4 .vc_btn3.vc_btn3-size-lg {
      height: 70px; }
  .featured-articles .vc_gitem-row-position-top .vc_col-sm-4 .vc_gitem-post-data-source-post_categories {
    padding-right: 25%; }
  #tablepress-5 .column-2 {
    display: none; }
  #tablepress-2 .column-2 {
    font-size: 14px;
    display: none; }
  .newsletter .gform_footer .button {
    width: 96% !important; }
  .vc_btn3.vc_btn3-size-md.vc_btn3-icon-left:not(.vc_btn3-o-empty) {
    padding-left: 20px !important; }
  .page-id-4143 .donation .gform_wrapper .button, .page-id-4143 .donation .gform_wrapper .gform_button {
    font-size: 1.3em; } }

@media screen and (max-width: 400px) {
  .page-template-template-rest-website .columns .boxes-with-icons {
    width: 95%; } }

@media screen and (max-width: 20rem) {
  .off-canvas-content, .off-canvas-content {
    box-shadow: none; }
  .row-without-padding-side .kirby-brown-img {
    width: 100%; }
    .row-without-padding-side .kirby-brown-img .kirby-brown-image {
      position: relative;
      bottom: 0;
      text-align: center;
      float: none; }
  .row-without-padding-side .featured-articles h3 {
    width: 95%; }
  .row-without-padding-side .featured-articles .vc_column-inner .wpb_single_image img {
    max-width: 60%; }
  .row-without-padding-side .featured-articles .vc_btn3.vc_btn3-size-lg {
    top: -17px;
    font-size: 40px;
    padding: 20px 5px;
    line-height: 45px; } }

@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 3) {
  .top-bar ul li ul {
    top: 50px !important; }
  .vc_custom_1474661075731 {
    height: 678px; }
  .height-consistency {
    min-height: 350px;
    height: auto; }
  .row-without-padding-side h2 {
    font-size: 14pt;
    line-height: 20pt; }
  .row-without-padding-side .featured-articles .vc_gitem-row-position-middle .vc_col-sm-7 {
    width: 45%; }
  .row-without-padding-side .featured-articles .vc_gitem-row-position-bottom .vc_col-sm-4 .vc_btn3.vc_btn3-size-lg {
    line-height: 35px; }
  .row-without-padding-side .row .vc_col-has-fill &gt; .vc_column-inner .wpb_wrapper .vc_btn3-container.vc_btn3-inline a {
    font-size: 11px; }
  .newsletter .gform_wrapper .ginput_container {
    width: 97% !important; }
  .page-id-3763 .newsletter .gform_wrapper .ginput_container, .page-id-3764 .newsletter .gform_wrapper .ginput_container, .page-id-3806 .newsletter .gform_wrapper .ginput_container {
    width: 98.5% !important; }
  .page-template-template-rest-website-w-h .columns .boxes-with-icons .column .wpb_content_element, .page-template-template-rest-website-w-h .columns .boxes-with-icons .columns .wpb_content_element, .page-template-template-rest-website .columns .boxes-with-icons .column .wpb_content_element, .page-template-template-rest-website .columns .boxes-with-icons .columns .wpb_content_element {
    padding: 1rem; }
  .page-template-template-rest-website #board-directors .biography, .page-template-template-rest-website #board-directors .height-consistency, .page-template-template-rest-website #staff .biography, .page-template-template-rest-website #staff .height-consistency {
    width: 100%; }
  .archive .row .sidebar-blog h2.widgettitle, .category .row .sidebar-blog h2.widgettitle, .page-template-default .row .sidebar-blog h2.widgettitle {
    font-size: 25px; }
  .archive .row .sidebar-blog .widget_categories ul li a, .category .row .sidebar-blog .widget_categories ul li a, .page-template-default .row .sidebar-blog .widget_categories ul li a {
    font-size: 15px; }
  .archive .row .sidebar-blog .tagcloud a, .category .row .sidebar-blog .tagcloud a, .page-template-default .row .sidebar-blog .tagcloud a {
    font-size: 15px !important; }
  .vc_btn3.vc_btn3-size-md.vc_btn3-icon-left:not(.vc_btn3-o-empty) {
    padding-left: 20px !important; }
  .footer .slogan .wpb_content_element {
    width: 77%; } }

@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  .top-bar ul li ul {
    top: 50px !important; }
  .vc_custom_1474661075731 {
    height: 678px; }
  .height-consistency {
    min-height: 350px;
    height: auto; }
  .row-without-padding-side h2 {
    font-size: 14pt;
    line-height: 20pt; }
  .row-without-padding-side .featured-articles .vc_gitem-row-position-middle .vc_col-sm-7 {
    width: 45%; }
  .row-without-padding-side .featured-articles .vc_gitem-row-position-bottom .vc_col-sm-4 .vc_btn3.vc_btn3-size-lg {
    line-height: 35px; }
  .row-without-padding-side .row .vc_col-has-fill &gt; .vc_column-inner .wpb_wrapper .vc_btn3-container.vc_btn3-inline a {
    font-size: 10px;
    line-height: 10px; }
  .newsletter .gform_wrapper .ginput_container {
    width: 97% !important; }
  .page-id-3763 .newsletter .gform_wrapper .ginput_container, .page-id-3764 .newsletter .gform_wrapper .ginput_container, .page-id-3806 .newsletter .gform_wrapper .ginput_container {
    width: 98.5% !important; }
  .page-id-3834 .newsletter .gform_wrapper .ginput_container, .archive .newsletter .gform_wrapper .ginput_container, .tag .newsletter .gform_wrapper .ginput_container {
    width: 98% !important; }
  .page-template-template-rest-website-w-h .columns .boxes-with-icons .column .wpb_content_element, .page-template-template-rest-website-w-h .columns .boxes-with-icons .columns .wpb_content_element, .page-template-template-rest-website .columns .boxes-with-icons .column .wpb_content_element, .page-template-template-rest-website .columns .boxes-with-icons .columns .wpb_content_element {
    padding: 1rem; }
  .page-template-template-rest-website #board-directors .biography, .page-template-template-rest-website #board-directors .height-consistency, .page-template-template-rest-website #staff .biography, .page-template-template-rest-website #staff .height-consistency {
    width: 100%; }
  .archive .row .sidebar-blog h2.widgettitle, .category .row .sidebar-blog h2.widgettitle, .page-template-default .row .sidebar-blog h2.widgettitle {
    font-size: 25px; }
  .archive .row .sidebar-blog .widget_categories ul li a, .category .row .sidebar-blog .widget_categories ul li a, .page-template-default .row .sidebar-blog .widget_categories ul li a {
    font-size: 15px; }
  .archive .row .sidebar-blog .tagcloud a, .category .row .sidebar-blog .tagcloud a, .page-template-default .row .sidebar-blog .tagcloud a {
    font-size: 15px !important; }
  .vc_btn3.vc_btn3-size-md.vc_btn3-icon-left:not(.vc_btn3-o-empty) {
    padding-left: 20px !important; }
  .footer .slogan .wpb_content_element {
    width: 77%; } }

@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .row-without-padding-side .featured-articles .vc_gitem-row-position-bottom .vc_col-sm-4 .vc_btn3.vc_btn3-size-lg {
    padding: 20px 1px;
    line-height: 51px; }
  .page-template-template-rest-website .columns .boxes-with-icons {
    width: 90%; }
  .page-id-3763 .row .vc_col-has-fill &gt; .vc_column-inner {
    padding-left: 13px; }
  .page-template-template-rest-website-w-h .columns .boxes-with-icons .column .wpb_content_element, .page-template-template-rest-website-w-h .columns .boxes-with-icons .columns .wpb_content_element, .page-template-template-rest-website .columns .boxes-with-icons .column .wpb_content_element, .page-template-template-rest-website .columns .boxes-with-icons .columns .wpb_content_element {
    padding: 1rem 0.5rem; }
  .vc_column-inner.vc_custom_1470760720179 {
    padding-bottom: 30px; } }

@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  .vc_custom_1474661075731 {
    height: 678px; }
  .height-consistency {
    min-height: 350px;
    height: auto; }
  .row-without-padding-side h2 {
    font-size: 20pt !important;
    line-height: 26pt !important; }
  .row-without-padding-side .kirby-brown-img .kirby-brown-image {
    margin-left: -31px; }
  .row-without-padding-side .featured-articles .vc_gitem-row-position-middle .vc_col-sm-7 {
    width: 45%; }
  .row-without-padding-side .featured-articles .vc_gitem-row-position-bottom .vc_col-sm-4 .vc_btn3.vc_btn3-size-lg {
    line-height: 35px; }
  .row-without-padding-side .vc_column-inner.vc_custom_1468427456848 {
    height: auto !important; }
  .vc_column-inner.vc_custom_1470760720179 {
    padding-bottom: 30px; }
  .newsletter .gform_wrapper .ginput_container {
    width: 100% !important; }
  .page-id-3763 .newsletter .gform_wrapper .ginput_container, .page-id-3764 .newsletter .gform_wrapper .ginput_container, .page-id-3806 .newsletter .gform_wrapper .ginput_container {
    width: 99.7% !important; }
  .page-id-3834 .newsletter .gform_wrapper .ginput_container, .archive .newsletter .gform_wrapper .ginput_container, .tag .newsletter .gform_wrapper .ginput_container {
    width: 99.7% !important; }
  .page-template-template-rest-website-w-h .columns .boxes-with-icons .column .wpb_content_element, .page-template-template-rest-website-w-h .columns .boxes-with-icons .columns .wpb_content_element, .page-template-template-rest-website .columns .boxes-with-icons .column .wpb_content_element, .page-template-template-rest-website .columns .boxes-with-icons .columns .wpb_content_element {
    padding: 1rem; }
  .page-template-template-rest-website #board-directors .biography, .page-template-template-rest-website #board-directors .height-consistency, .page-template-template-rest-website #staff .biography, .page-template-template-rest-website #staff .height-consistency {
    width: 100%; }
  .archive .row .sidebar-blog h2.widgettitle, .category .row .sidebar-blog h2.widgettitle, .page-template-default .row .sidebar-blog h2.widgettitle {
    font-size: 25px; }
  .archive .row .sidebar-blog .widget_categories ul li a, .category .row .sidebar-blog .widget_categories ul li a, .page-template-default .row .sidebar-blog .widget_categories ul li a {
    font-size: 15px; }
  .archive .row .sidebar-blog .tagcloud a, .category .row .sidebar-blog .tagcloud a, .page-template-default .row .sidebar-blog .tagcloud a {
    font-size: 15px !important; }
  .vc_btn3.vc_btn3-size-md.vc_btn3-icon-left:not(.vc_btn3-o-empty) {
    padding-left: 20px !important; }
  .footer .slogan .wpb_content_element {
    width: 100% !important; } }

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .row-without-padding-side .featured-articles .vc_gitem-row-position-bottom .vc_col-sm-4 .vc_btn3.vc_btn3-size-lg {
    padding: 20px 1px;
    line-height: 51px; }
  .page-template-template-rest-website .columns .boxes-with-icons {
    width: 90%; }
  .page-id-3763 .row .vc_col-has-fill &gt; .vc_column-inner {
    padding-left: 13px; }
  .page-template-template-rest-website-w-h .columns .boxes-with-icons .column .wpb_content_element, .page-template-template-rest-website-w-h .columns .boxes-with-icons .columns .wpb_content_element, .page-template-template-rest-website .columns .boxes-with-icons .column .wpb_content_element, .page-template-template-rest-website .columns .boxes-with-icons .columns .wpb_content_element {
    padding: 1rem 0.5rem; }
  .vc_column-inner.vc_custom_1470760720179 {
    padding-bottom: 30px; }
  .make-a-promise .wpb_content_element {
    padding: 0 2rem !important; }
  .make-a-promise #gform_wrapper_5 {
    max-width: 80%;
    margin: 16px auto !important; }
  .make-a-promise canvas#input_5_5 {
    width: 248px !important; } }

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  .vc_custom_1474661075731 {
    height: 678px; }
  .height-consistency {
    min-height: 350px;
    height: auto; }
  .row-without-padding-side h2 {
    font-size: 20pt !important;
    line-height: 26pt !important; }
  .row-without-padding-side .kirby-brown-img .kirby-brown-image {
    margin-left: -31px; }
  .row-without-padding-side .featured-articles .vc_gitem-row-position-middle .vc_col-sm-7 {
    width: 45%; }
  .row-without-padding-side .featured-articles .vc_gitem-row-position-bottom .vc_col-sm-4 .vc_btn3.vc_btn3-size-lg {
    line-height: 35px; }
  .row-without-padding-side .vc_column-inner.vc_custom_1468427456848 {
    height: auto !important; }
  .vc_column-inner.vc_custom_1470760720179 {
    padding-bottom: 30px; }
  .newsletter .gform_wrapper .ginput_container {
    width: 100% !important; }
  .page-id-3763 .newsletter .gform_wrapper .ginput_container, .page-id-3764 .newsletter .gform_wrapper .ginput_container, .page-id-3806 .newsletter .gform_wrapper .ginput_container {
    width: 99.7% !important; }
  .page-id-3834 .newsletter .gform_wrapper .ginput_container, .archive .newsletter .gform_wrapper .ginput_container, .tag .newsletter .gform_wrapper .ginput_container {
    width: 99.7% !important; }
  .page-template-template-rest-website-w-h .columns .boxes-with-icons .column .wpb_content_element, .page-template-template-rest-website-w-h .columns .boxes-with-icons .columns .wpb_content_element, .page-template-template-rest-website .columns .boxes-with-icons .column .wpb_content_element, .page-template-template-rest-website .columns .boxes-with-icons .columns .wpb_content_element {
    padding: 1rem; }
  .page-template-template-rest-website #board-directors .biography, .page-template-template-rest-website #board-directors .height-consistency, .page-template-template-rest-website #staff .biography, .page-template-template-rest-website #staff .height-consistency {
    width: 100%; }
  .archive .row .sidebar-blog h2.widgettitle, .category .row .sidebar-blog h2.widgettitle, .page-template-default .row .sidebar-blog h2.widgettitle {
    font-size: 25px; }
  .archive .row .sidebar-blog .widget_categories ul li a, .category .row .sidebar-blog .widget_categories ul li a, .page-template-default .row .sidebar-blog .widget_categories ul li a {
    font-size: 15px; }
  .archive .row .sidebar-blog .tagcloud a, .category .row .sidebar-blog .tagcloud a, .page-template-default .row .sidebar-blog .tagcloud a {
    font-size: 15px !important; }
  .vc_btn3.vc_btn3-size-md.vc_btn3-icon-left:not(.vc_btn3-o-empty) {
    padding-left: 20px !important; }
  .footer .slogan .wpb_content_element {
    width: 100% !important; } }

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .row-without-padding-side .featured-articles .vc_gitem-row-position-top .vc_col-sm-4 .vc_gitem-post-data-source-post_categories {
    padding-right: 0%; }
  .row-without-padding-side .featured-articles .vc_gitem-row-position-middle .vc_col-sm-7 {
    width: 70%; }
  .row-without-padding-side .featured-articles .vc_gitem-row-position-bottom .vc_col-sm-4 {
    margin-left: 90%; }
    .row-without-padding-side .featured-articles .vc_gitem-row-position-bottom .vc_col-sm-4 .vc_btn3.vc_btn3-size-lg {
      line-height: 29px; }
  .vc_row-o-equal-height.vc_row-o-content-middle .column, .vc_row-o-equal-height.vc_row-o-content-middle .columns, .vc_row-o-equal-height.vc_row-o-content-middle .columns {
    -webkit-flex-wrap: wrap;
    display: -webkit-flex; }
  .feat_img .slogan-header {
    padding-top: 11rem !important; }
    .feat_img .slogan-header h1 {
      line-height: 31pt;
      font-size: 26pt; }
  .archive .row .blog-articles, .category .row .blog-articles, .page-template-default .row .blog-articles {
    width: 100%; }
  .archive .row .sidebar-blog, .category .row .sidebar-blog, .page-template-default .row .sidebar-blog {
    width: 100%;
    margin-top: 50px;
    padding-left: 0px; }
  .archive .columns, .category .columns {
    width: 100%; }
  .newsletter .gform_wrapper ul li.gfield {
    width: 100%; }
    .newsletter .gform_wrapper ul li.gfield:first-child {
      font-size: 16pt;
      line-height: 22px !important; }
    .newsletter .gform_wrapper ul li.gfield:last-child {
      width: 100%; }
  .newsletter .gform_wrapper .ginput_container input.large {
    width: 98% !important;
    text-align: center; }
  .newsletter .page-id-40 .newsletter .gform_wrapper .ginput_container, .newsletter .page-id-3763 .newsletter .gform_wrapper .ginput_container, .newsletter .page-id-3764 .newsletter .gform_wrapper .ginput_container, .newsletter .page-id-3806 .newsletter .gform_wrapper .ginput_container {
    width: 98% !important; }
  .newsletter .page-id-3834 .newsletter .gform_wrapper .ginput_container, .newsletter .archive .newsletter .gform_wrapper .ginput_container, .newsletter .tag .newsletter .gform_wrapper .ginput_container {
    width: 98% !important; }
  .newsletter .gform_footer {
    margin: 1em 0 !important; }
    .newsletter .gform_footer .button {
      width: 98% !important; } }

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  .page-template-template-rest-website-w-h .columns .boxes-with-icons {
    min-height: 179px;
    float: right;
    margin: 0px 10px 20px !important; }
    .page-template-template-rest-website-w-h .columns .boxes-with-icons.right {
      float: left; }
  .vc_row-o-equal-height.vc_row-o-content-middle .column, .vc_row-o-equal-height.vc_row-o-content-middle .columns, .vc_row-o-equal-height.vc_row-o-content-middle .columns {
    -webkit-flex-wrap: wrap;
    display: -webkit-flex; } }

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .row-without-padding-side .featured-articles .vc_gitem-row-position-top .vc_col-sm-4 .vc_gitem-post-data-source-post_categories {
    padding-right: 0%; }
  .row-without-padding-side .featured-articles .vc_gitem-row-position-middle .vc_col-sm-7 {
    width: 70%; }
  .row-without-padding-side .featured-articles .vc_gitem-row-position-bottom .vc_col-sm-4 {
    margin-left: 90%; }
    .row-without-padding-side .featured-articles .vc_gitem-row-position-bottom .vc_col-sm-4 .vc_btn3.vc_btn3-size-lg {
      line-height: 29px; }
  .vc_row-o-equal-height.vc_row-o-content-middle .column, .vc_row-o-equal-height.vc_row-o-content-middle .columns, .vc_row-o-equal-height.vc_row-o-content-middle .columns {
    -webkit-flex-wrap: wrap;
    display: -webkit-flex; }
  .feat_img .slogan-header {
    padding-top: 11rem !important; }
    .feat_img .slogan-header h1 {
      line-height: 31pt;
      font-size: 26pt; }
  .archive .row .blog-articles, .category .row .blog-articles, .page-template-default .row .blog-articles {
    width: 100%; }
  .archive .row .sidebar-blog, .category .row .sidebar-blog, .page-template-default .row .sidebar-blog {
    width: 100%;
    margin-top: 50px;
    padding-left: 0px; }
  .archive .columns, .category .columns {
    width: 100%; }
  .newsletter .gform_wrapper ul li.gfield {
    width: 100%; }
    .newsletter .gform_wrapper ul li.gfield:first-child {
      font-size: 16pt;
      line-height: 22px !important; }
    .newsletter .gform_wrapper ul li.gfield:last-child {
      width: 100%; }
  .newsletter .gform_wrapper .ginput_container input.large {
    width: 98% !important;
    text-align: center; }
  .newsletter .page-id-40 .newsletter .gform_wrapper .ginput_container, .newsletter .page-id-3763 .newsletter .gform_wrapper .ginput_container, .newsletter .page-id-3764 .newsletter .gform_wrapper .ginput_container, .newsletter .page-id-3806 .newsletter .gform_wrapper .ginput_container {
    width: 98% !important; }
  .newsletter .page-id-3834 .newsletter .gform_wrapper .ginput_container, .newsletter .archive .newsletter .gform_wrapper .ginput_container, .newsletter .tag .newsletter .gform_wrapper .ginput_container {
    width: 98% !important; }
  .newsletter .gform_footer {
    margin: 1em 0 !important; }
    .newsletter .gform_footer .button {
      width: 98% !important; } }

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .off-canvas-content, .off-canvas-content {
    box-shadow: none; }
  .top-bar ul li {
    padding: 19px 5px;
    font-size: 13pt; }
  .feat_img .slogan-header {
    padding-top: 4rem; }
  .row .vc_col-has-fill &gt; .vc_column-inner .wpb_wrapper .vc_btn3-container.vc_btn3-inline a {
    font-size: 11px; }
  .row-without-padding-side .kirby-brown-img {
    width: 50%;
    margin-left: 0px; }
    .row-without-padding-side .kirby-brown-img .kirby-brown-image {
      bottom: -60px; }
  .row-without-padding-side .clean-blue.columns {
    margin-left: 0%;
    width: 50%; }
  .row-without-padding-side .featured-articles {
    width: 92%; }
  .newsletter {
    max-width: 105.5%; }
    .newsletter .gform_wrapper ul li.gfield:first-child {
      padding-bottom: 15px;
      text-align: center; }
    .newsletter .gform_wrapper .ginput_container {
      width: 100% !important;
      margin-bottom: 10px; }
      .newsletter .gform_wrapper .ginput_container input.large {
        width: 98% !important;
        text-align: center; }
    .newsletter .gform_footer {
      margin: 1em 0 !important; }
      .newsletter .gform_footer .button {
        width: 97% !important; }
  .footer .slogan .wpb_content_element {
    width: 70%;
    right: 28px; }
  .footer .slogan p {
    font-size: 17px;
    line-height: 24px; } }

@media only screen and (min-device-width: 360px) and (max-device-width: 640px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 4) {
  .row-without-padding-side .featured-articles .vc_gitem-row-position-middle .vc_col-sm-7 {
    width: 45%; }
  .row-without-padding-side .featured-articles .vc_gitem-row-position-bottom .vc_col-sm-4 .vc_btn3.vc_btn3-size-lg {
    line-height: 34px; }
  .vc_column-inner.vc_custom_1470760720179 {
    padding-bottom: 30px; } }

@media only screen and (min-device-width: 360px) and (max-device-width: 640px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 4) {
  .vc_custom_1474661075731 {
    height: 608px; }
  .height-consistency {
    min-height: 350px;
    height: auto; }
  .row-without-padding-side h2 {
    font-size: 14pt;
    line-height: 20pt; }
  .row-without-padding-side .vc_column-inner.vc_custom_1468427456848 {
    height: 204.64px; }
  .row-without-padding-side .row .vc_col-has-fill &gt; .vc_column-inner .wpb_wrapper .vc_btn3-container.vc_btn3-inline a {
    font-size: 13px; }
  .page-template-template-rest-website-w-h .columns .boxes-with-icons .column .wpb_content_element, .page-template-template-rest-website-w-h .columns .boxes-with-icons .columns .wpb_content_element, .page-template-template-rest-website .columns .boxes-with-icons .column .wpb_content_element, .page-template-template-rest-website .columns .boxes-with-icons .columns .wpb_content_element {
    padding: 1rem; }
  .page-template-template-rest-website #board-directors .biography, .page-template-template-rest-website #board-directors .height-consistency, .page-template-template-rest-website #staff .biography, .page-template-template-rest-website #staff .height-consistency {
    width: 100%; }
  .archive .row .sidebar-blog h2.widgettitle, .category .row .sidebar-blog h2.widgettitle, .page-template-default .row .sidebar-blog h2.widgettitle {
    font-size: 25px; }
  .archive .row .sidebar-blog .widget_categories ul li a, .category .row .sidebar-blog .widget_categories ul li a, .page-template-default .row .sidebar-blog .widget_categories ul li a {
    font-size: 15px; }
  .archive .row .sidebar-blog .tagcloud a, .category .row .sidebar-blog .tagcloud a, .page-template-default .row .sidebar-blog .tagcloud a {
    font-size: 15px !important; }
  .vc_btn3.vc_btn3-size-md.vc_btn3-icon-left:not(.vc_btn3-o-empty) {
    padding-left: 20px !important; }
  .footer .slogan .wpb_content_element {
    width: 77%; } }

@media only screen and (min-device-width: 360px) and (max-device-width: 640px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 3) {
  .row-without-padding-side .featured-articles .vc_gitem-row-position-middle .vc_col-sm-7 {
    width: 45%; }
  .row-without-padding-side .featured-articles .vc_gitem-row-position-bottom .vc_col-sm-4 .vc_btn3.vc_btn3-size-lg {
    line-height: 34px; }
  .vc_column-inner.vc_custom_1470760720179 {
    padding-bottom: 30px; } }

@media only screen and (min-device-width: 360px) and (max-device-width: 640px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 3) {
  .vc_custom_1474661075731 {
    height: 608px; }
  .height-consistency {
    min-height: 350px;
    height: auto; }
  .row-without-padding-side h2 {
    font-size: 14pt;
    line-height: 20pt; }
  .row-without-padding-side .vc_column-inner.vc_custom_1468427456848 {
    height: 204.64px; }
  .row-without-padding-side .row .vc_col-has-fill &gt; .vc_column-inner .wpb_wrapper .vc_btn3-container.vc_btn3-inline a {
    font-size: 13px; }
  .page-template-template-rest-website-w-h .columns .boxes-with-icons .column .wpb_content_element, .page-template-template-rest-website-w-h .columns .boxes-with-icons .columns .wpb_content_element, .page-template-template-rest-website .columns .boxes-with-icons .column .wpb_content_element, .page-template-template-rest-website .columns .boxes-with-icons .columns .wpb_content_element {
    padding: 1rem; }
  .page-template-template-rest-website #board-directors .biography, .page-template-template-rest-website #board-directors .height-consistency, .page-template-template-rest-website #staff .biography, .page-template-template-rest-website #staff .height-consistency {
    width: 100%; }
  .archive .row .sidebar-blog h2.widgettitle, .category .row .sidebar-blog h2.widgettitle, .page-template-default .row .sidebar-blog h2.widgettitle {
    font-size: 25px; }
  .archive .row .sidebar-blog .widget_categories ul li a, .category .row .sidebar-blog .widget_categories ul li a, .page-template-default .row .sidebar-blog .widget_categories ul li a {
    font-size: 15px; }
  .archive .row .sidebar-blog .tagcloud a, .category .row .sidebar-blog .tagcloud a, .page-template-default .row .sidebar-blog .tagcloud a {
    font-size: 15px !important; }
  .vc_btn3.vc_btn3-size-md.vc_btn3-icon-left:not(.vc_btn3-o-empty) {
    padding-left: 20px !important; }
  .footer .slogan .wpb_content_element {
    width: 77%; } }

@media only screen and (min-device-width: 320px) and (max-device-width: 640px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 3) {
  .row-without-padding-side .featured-articles .vc_gitem-row-position-middle .vc_col-sm-7 {
    width: 45%; }
  .row-without-padding-side .featured-articles .vc_gitem-row-position-bottom .vc_col-sm-4 .vc_btn3.vc_btn3-size-lg {
    line-height: 51px;
    font-size: 55px;
    padding: 20px 1px; }
  .vc_column-inner.vc_custom_1470760720179 {
    padding-bottom: 30px; } }

@media only screen and (min-device-width: 320px) and (max-device-width: 640px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 3) {
  .vc_custom_1474661075731 {
    height: 608px; }
  .height-consistency {
    min-height: 350px;
    height: auto; }
  .row-without-padding-side h2 {
    font-size: 14pt;
    line-height: 20pt; }
  .row-without-padding-side .vc_column-inner.vc_custom_1468427456848 {
    height: 204.64px; }
  .row-without-padding-side .row .vc_col-has-fill &gt; .vc_column-inner .wpb_wrapper .vc_btn3-container.vc_btn3-inline a {
    font-size: 13px; }
  .page-template-template-rest-website-w-h .columns .boxes-with-icons .column .wpb_content_element, .page-template-template-rest-website-w-h .columns .boxes-with-icons .columns .wpb_content_element, .page-template-template-rest-website .columns .boxes-with-icons .column .wpb_content_element, .page-template-template-rest-website .columns .boxes-with-icons .columns .wpb_content_element {
    padding: 1rem; }
  .page-template-template-rest-website #board-directors .biography, .page-template-template-rest-website #board-directors .height-consistency, .page-template-template-rest-website #staff .biography, .page-template-template-rest-website #staff .height-consistency {
    width: 100%; }
  .archive .row .sidebar-blog h2.widgettitle, .category .row .sidebar-blog h2.widgettitle, .page-template-default .row .sidebar-blog h2.widgettitle {
    font-size: 25px; }
  .archive .row .sidebar-blog .widget_categories ul li a, .category .row .sidebar-blog .widget_categories ul li a, .page-template-default .row .sidebar-blog .widget_categories ul li a {
    font-size: 15px; }
  .archive .row .sidebar-blog .tagcloud a, .category .row .sidebar-blog .tagcloud a, .page-template-default .row .sidebar-blog .tagcloud a {
    font-size: 15px !important; }
  .vc_btn3.vc_btn3-size-md.vc_btn3-icon-left:not(.vc_btn3-o-empty) {
    padding-left: 20px !important; }
  .footer .slogan .wpb_content_element {
    width: 77%; } }

@media only screen and (min-device-width: 360px) and (max-device-width: 640px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .row-without-padding-side .featured-articles .vc_gitem-row-position-middle .vc_col-sm-7 {
    width: 45%; }
  .row-without-padding-side .featured-articles .vc_gitem-row-position-bottom .vc_col-sm-4 .vc_btn3.vc_btn3-size-lg {
    line-height: 34px; }
  .vc_column-inner.vc_custom_1470760720179 {
    padding-bottom: 30px; } }

@media only screen and (min-device-width: 360px) and (max-device-width: 640px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  .vc_custom_1474661075731 {
    height: 608px; }
  .height-consistency {
    min-height: 350px;
    height: auto; }
  .row-without-padding-side h2 {
    font-size: 14pt;
    line-height: 20pt; }
  .row-without-padding-side .vc_column-inner.vc_custom_1468427456848 {
    height: 204.64px; }
  .row-without-padding-side .row .vc_col-has-fill &gt; .vc_column-inner .wpb_wrapper .vc_btn3-container.vc_btn3-inline a {
    font-size: 13px; }
  .page-template-template-rest-website-w-h .columns .boxes-with-icons .column .wpb_content_element, .page-template-template-rest-website-w-h .columns .boxes-with-icons .columns .wpb_content_element, .page-template-template-rest-website .columns .boxes-with-icons .column .wpb_content_element, .page-template-template-rest-website .columns .boxes-with-icons .columns .wpb_content_element {
    padding: 1rem; }
  .page-template-template-rest-website #board-directors .biography, .page-template-template-rest-website #board-directors .height-consistency, .page-template-template-rest-website #staff .biography, .page-template-template-rest-website #staff .height-consistency {
    width: 100%; }
  .archive .row .sidebar-blog h2.widgettitle, .category .row .sidebar-blog h2.widgettitle, .page-template-default .row .sidebar-blog h2.widgettitle {
    font-size: 25px; }
  .archive .row .sidebar-blog .widget_categories ul li a, .category .row .sidebar-blog .widget_categories ul li a, .page-template-default .row .sidebar-blog .widget_categories ul li a {
    font-size: 15px; }
  .archive .row .sidebar-blog .tagcloud a, .category .row .sidebar-blog .tagcloud a, .page-template-default .row .sidebar-blog .tagcloud a {
    font-size: 15px !important; }
  .vc_btn3.vc_btn3-size-md.vc_btn3-icon-left:not(.vc_btn3-o-empty) {
    padding-left: 20px !important; }
  .footer .slogan .wpb_content_element {
    width: 77%; } }

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

Stylesheet: Retina Screens &amp; 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; } }
</pre></body></html>